hey-chatgpt-cli icon indicating copy to clipboard operation
hey-chatgpt-cli copied to clipboard

Needs settings to specify model, max tokens, etc.

Open quinncomendant opened this issue 2 years ago • 0 comments

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.

quinncomendant avatar Mar 30 '23 21:03 quinncomendant