We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent c04b082 commit ab6162aCopy full SHA for ab6162a
api/llm.py
@@ -20,7 +20,7 @@ class ChatGPT:
20
21
def __init__(self):
22
self.prompt = Prompt()
23
- self.model = os.getenv("OPENAI_MODEL", default="gpt-4o")
+ self.model = os.getenv("OPENAI_MODEL", default="gpt-4o-mini")
24
self.temperature = float(os.getenv("OPENAI_TEMPERATURE", default=0))
25
self.max_tokens = int(os.getenv("OPENAI_MAX_TOKENS", default=600))
26
0 commit comments