Closed ChristianWeyer closed 1 year ago
It might because you don't have access to gpt-4
on OpenAI API. Try using gpt-3.5-turbo
by change line 118 of core/agents/llm.py.
model_name: str = "gpt-3.5-turbo"
I think I should make it to use env var so we can change it without changing the code.
How would one get access to gpt-4
via the API?
Ah... 🙂 https://openai.com/waitlist/gpt-4-api
yes, the waitlist ... 🥲 is it working with gpt-3.5 though?
Yes!
The following call
http POST http://localhost:8000/command key=1 files:=\[\] query="Hey there!"
produces this:
Am I missing some config, maybe?