ChatGPT language generator and translator
Project description
Conlang GPT
Conlang GPT is a command line tool for creating, modifying and using constructed languages, powered by ChatGPT
Features
:warning: This tool is in early development. It is not ready for production use. Regardless, anyone who's generating fake languages in a business context should carefully consider their life choices, but this is fine because it's open source.
Feature | Status |
---|---|
Automatically generate specifications for written or spoken languages | :sparkles: Alpha |
Automatically or manually improve language specs iteratively | :sparkles: Alpha |
Translate any text to or from the generated languages | :sparkles: Alpha |
Generate vocabulary lazily | :sparkles: Alpha |
Automatically update vocabulary when language specs change | :sparkles: Alpha |
Support for all of OpenAI's chat models | :sparkles: Alpha |
Installation
pip install conlang-gpt
Anatomy of a Language
Languages are represented as two files:
- Guide: The purpose of the language guide is to describe how to use the language, including rules related to grammar and phonetics.
- Dictionary: The dictionary contains the vocabulary for the language. It is built up lazily as more and more text is translated.
Commands
Overview
Conlang GPT provides several commands:
$ conlang --help
Usage: conlang [OPTIONS] COMMAND [ARGS]...
Options:
--help Show this message and exit.
Commands:
create Create a constructed language.
improve Automatically improve the language.
modify Make specific changes to the language.
translate Translate text to or from a constructed language.
Before running any of them, set the OPENAI_API_KEY
environment variable (keep the space in front to exclude the command from your history):
export OPENAI_API_KEY=sk...
conlang create
Creates the first draft of a guide for a new language and writes it to a file.
$ conlang create --help
Usage: conlang create [OPTIONS]
Create a constructed language.
Options:
--design-goals TEXT
--guide TEXT
--model TEXT OpenAI model to use. Defaults to gpt-3.5-turbo.
--help Show this message and exit.
conlang improve
Attempts to automatically improve the language guide and dictionary. The resulting guide and dictionary are saved to the original input files.
$ conlang improve --help
Usage: conlang improve [OPTIONS]
Automatically improve the language.
Options:
--guide TEXT
--dictionary TEXT Enter the filename of the dictionary to use in
'example' mode.
--max-iterations INTEGER Max number of revisions to perform. Defaults
to 5.
--similarity-threshold FLOAT Maximum similarity between two words to be
considered the same. Defaults to 0.98.
--model TEXT OpenAI model to use. Defaults to
gpt-3.5-turbo.
--help Show this message and exit.
conlang modify
Makes a specific change to the language and updates the guide and dictionary.
$ conlang modify --help
Usage: conlang modify [OPTIONS]
Make specific changes to the language.
Options:
--guide TEXT
--dictionary TEXT Enter the filename of the dictionary to use in
'example' mode.
--changes TEXT
--similarity-threshold FLOAT Maximum similarity between two words to be
considered the same. Defaults to 0.98.
--model TEXT OpenAI model to use. Defaults to
gpt-3.5-turbo.
--help Show this message and exit.
conlang translate
Translates text between any language ChatGPT was trained on to and from the conlang. The language of the input text is automatically detected and used to dermine which language to translate to. If any problems are encountered while translating, the guide and dictionary will be repeatedly fixed until --max-improvements
is reached.
$ conlang translate --help
Usage: conlang translate [OPTIONS]
Translate text to or from a constructed language.
Options:
--guide TEXT
--dictionary TEXT
--text TEXT
--max-improvements INTEGER Max number of relevant improvements to make to
the guide and dictionary. Defaults to 5.
--similarity-threshold FLOAT Maximum similarity between two words to be
considered the same. Defaults to 0.98.
--model TEXT OpenAI model to use
--embedding-model TEXT OpenAI model to use for word embeddings
--help Show this message and exit.
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
Built Distribution
File details
Details for the file conlang_gpt-0.4.0.tar.gz
.
File metadata
- Download URL: conlang_gpt-0.4.0.tar.gz
- Upload date:
- Size: 12.2 kB
- Tags: Source
- Uploaded using Trusted Publishing? No
- Uploaded via: poetry/1.6.1 CPython/3.9.6 Darwin/22.6.0
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | 6007185c2bcdec023e69e2ad505713d93114d1e34bdd213e18c634e15a0f34f2 |
|
MD5 | ff8d3942e2bb1a593fd2e876e4d71fa7 |
|
BLAKE2b-256 | c4b3f414c9e4cee5e8745946bcf947e0a7bb9377135688dc2b6b150346656138 |
File details
Details for the file conlang_gpt-0.4.0-py3-none-any.whl
.
File metadata
- Download URL: conlang_gpt-0.4.0-py3-none-any.whl
- Upload date:
- Size: 14.9 kB
- Tags: Python 3
- Uploaded using Trusted Publishing? No
- Uploaded via: poetry/1.6.1 CPython/3.9.6 Darwin/22.6.0
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | 555626c7bed10b0122a7997f05db5202cce2aacbef283d0cedd409348cbffbe3 |
|
MD5 | 4b0978f96a0a1cbe332eaba0ca7e3bf7 |
|
BLAKE2b-256 | 665dcb93a831fa13857d99da15b8d3d593cab3735895691ea4d07f4e484c2879 |