Skip to main content

AI-based Character Name Generator

Project description

Namegiver: AI-based Character Name Generator

A lightweight, OpenAI-powered Python library for generating unique fictional character names based on user-provided prompts. Designed for writers, game developers, and world-builders.

Features

✅ AI-Generated Names – Distinctive names based on user descriptions.
✅ Ensures Name Distinctiveness – Avoids generating names too similar to previous ones.
✅ Supports CLI & API – Use from the terminal or integrate into Python projects.
✅ Economy Mode – Uses GPT-3.5 by default; switch to GPT-4 if needed.
✅ Token Usage Tracking – Monitor OpenAI API token consumption.

Installation

1. Install via pip

pip install namegiver

This will install the package and all its dependencies.

2. Set Up API Key

Create a .env file in your project directory:

OPENAI_API_KEY=your-api-key-here
ECONOMY_MODE=True

Alternatively, set it in your shell:

export OPENAI_API_KEY="your-api-key-here"
export ECONOMY_MODE="True"

Usage

1. Using the Python API

from namegiver import generate_unique_name, get_token_usage

past_names = ["Elwin", "Alvin", "Elvin"]

# Generate a unique name while avoiding past names
print(generate_unique_name("sci-fi bounty hunter", past_names))

# Show token usage
print("Token Usage Report:", get_token_usage())

2. Using the CLI

Generate a Name

namegen "medieval knight"

Example Output:

Sir Aldrin of Westmere

Specify Maximum Token Length

namegen "steampunk engineer" --max-tokens 5

Example Output:

Brasswick

Avoid Similar Names

namegen "elf warrior" --past-names Legolas Thranduil Elrond

Example Output:

Faerion

Check Token Usage

namegen --report

Example Output:

Token Usage Report: {'total_tokens_used': 50}

Configuration

Environment Variables

Variable Default Description
OPENAI_API_KEY (Required) Your OpenAI API key
ECONOMY_MODE True If True, uses gpt-3.5-turbo. Set to False for GPT-4

How It Works

  • The library queries OpenAI's LLM to generate a name.
  • If past_names is provided, it asks OpenAI to avoid those names.
  • After generation, the name is checked using Levenshtein distance to prevent near-duplicates.
  • If the generated name is too similar, the system regenerates up to 5 times.

Development

Run Locally

Clone the repo and install dependencies:

git clone https://github.com/yourusername/namegiver.git
cd namegiver
pip install -e .

Run Tests

Run the test suite with:

pytest tests/

Contributing

Contributions are welcome! Submit issues or pull requests.

License

This project is licensed under the MIT License.

Project details


Download files

Download the file for your platform. If you're not sure which to choose, learn more about installing packages.

Source Distribution

namegiver-0.1.3.tar.gz (6.6 kB view details)

Uploaded Source

Built Distribution

If you're not sure about the file name format, learn more about wheel file names.

namegiver-0.1.3-py3-none-any.whl (5.8 kB view details)

Uploaded Python 3

File details

Details for the file namegiver-0.1.3.tar.gz.

File metadata

  • Download URL: namegiver-0.1.3.tar.gz
  • Upload date:
  • Size: 6.6 kB
  • Tags: Source
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/6.1.0 CPython/3.13.1

File hashes

Hashes for namegiver-0.1.3.tar.gz
Algorithm Hash digest
SHA256 ec9ef50b0a0fd6a88ed4d18208fe4b420dc149de48d470ec8eac160b3c2c2aee
MD5 5383d832605cec6cb9a4478311c0b0fd
BLAKE2b-256 9ee34000f5f1d69581e80d08e19e23fe62a74f3debe163213a2fbf2af351e1a3

See more details on using hashes here.

File details

Details for the file namegiver-0.1.3-py3-none-any.whl.

File metadata

  • Download URL: namegiver-0.1.3-py3-none-any.whl
  • Upload date:
  • Size: 5.8 kB
  • Tags: Python 3
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/6.1.0 CPython/3.13.1

File hashes

Hashes for namegiver-0.1.3-py3-none-any.whl
Algorithm Hash digest
SHA256 fca1557378347d42f0cec81b2e004a32de0e1a179c5f63d4abc95b8ff896a5c8
MD5 5fb605ee2cbd01ed9e7895cf44be152c
BLAKE2b-256 190c43f6671b57687a654ae7a879e890e94d3fd2b227378411a5b41b608233fb

See more details on using hashes here.

Supported by

AWS Cloud computing and Security Sponsor Datadog Monitoring Depot Continuous Integration Fastly CDN Google Download Analytics Pingdom Monitoring Sentry Error logging StatusPage Status page