A tiny GPT CLI tool. You can chat with the GPT model developped by OpenAI and save the conversation as json.
Assuming you have an environment variable with key named OPENAI_API_KEY
.
If you don't have a OpenAI API key visit here, generate one and add it as an environment variable
export OPENAI_API_KEY=<YOUR-OPENAI-API-KEY>
You can install the package using pip:
$ pip install oregpt
Once you have installed oregpt, you can run it by typing:
$ oregpt
You can specify the place of conversation log
,
style (color etc)
and
the model supported in /v1/chat/completions endpoint provided by OpenAI
in ~/.oregpt/config.yml
❯ cat ~/.oregpt/config.yml
log: /tmp/oregpt/
openai:
model: gpt-3.5-turbo
# You can also specify OpenAI's API key here
# api_key: <your-api-key>
character:
user:
name: Me
style: "#00BEFE"
assistant:
name: AI
style: "#87CEEB"
system:
name: System
style: "#cc0000"