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.1.tar.gz (6.5 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.1-py3-none-any.whl (5.8 kB view details)

Uploaded Python 3

File details

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

File metadata

  • Download URL: namegiver-0.1.1.tar.gz
  • Upload date:
  • Size: 6.5 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.1.tar.gz
Algorithm Hash digest
SHA256 84a534e45519401d2bd9dae9c9707b14cd9603211d48fe5e150ccc1097149b32
MD5 368d79dfc09e9e401fb7f35ddea0304d
BLAKE2b-256 b597c7da8f6c6ab93130c318be51d4c65172c4b97966ade7dd43327c7a145c2d

See more details on using hashes here.

File details

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

File metadata

  • Download URL: namegiver-0.1.1-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.1-py3-none-any.whl
Algorithm Hash digest
SHA256 b2fa1b20e3d773a951593111554568d3400f9eda7107ddba8d265f42d4c3a7ce
MD5 29dde14139cbea0c114819ab9ddaf099
BLAKE2b-256 2faa9361f3b01a4aa1605680bc4f8fba239e11d96237d45e806b1843a204ca8d

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