Spaces:
Running
Running
Update app.py
Browse files
app.py
CHANGED
@@ -14,7 +14,7 @@ class ChatBot:
|
|
14 |
self.history.append({"role": "user", "content": prompt})
|
15 |
|
16 |
completion = self.client.chat.completions.create(
|
17 |
-
model="gpt-
|
18 |
messages=self.history
|
19 |
)
|
20 |
|
|
|
14 |
self.history.append({"role": "user", "content": prompt})
|
15 |
|
16 |
completion = self.client.chat.completions.create(
|
17 |
+
model="gpt-3.5-turbo", # NOTE: feel free to change it to gpt-4, or gpt-4o
|
18 |
messages=self.history
|
19 |
)
|
20 |
|