Fixes bug in agent manager:

model "model" does not exist.
This commit is contained in:
Torantulino
2023-03-30 10:54:01 +01:00
parent e9df13e810
commit ef60a3127e

View File

@@ -12,7 +12,7 @@ def create_agent(task, prompt, model):
# Start GTP3 instance
response = openai.ChatCompletion.create(
model="model",
model=model,
messages=messages,
)