hey-chatgpt-cli
hey-chatgpt-cli copied to clipboard
Needs settings to specify model, max tokens, etc.
It seems like the parameters sent to the OpenAI API are hard-coded:
response = openai.ChatCompletion.create(
model="gpt-3.5-turbo",
messages=messages,
temperature=0,
max_tokens=1000,
stream=True
)
hey needs a config file or option flags to set these parameters by the user.