fogot a comma...
Browse files
app.py
CHANGED
|
@@ -22,8 +22,8 @@ def CustomChatGPT(message, history):
|
|
| 22 |
|
| 23 |
response = openai.ChatCompletion.create(
|
| 24 |
model = "gpt-3.5-turbo",
|
| 25 |
-
messages = history_openai_format
|
| 26 |
-
temperature = 1.0
|
| 27 |
stream=True
|
| 28 |
)
|
| 29 |
|
|
|
|
| 22 |
|
| 23 |
response = openai.ChatCompletion.create(
|
| 24 |
model = "gpt-3.5-turbo",
|
| 25 |
+
messages = history_openai_format,
|
| 26 |
+
temperature = 1.0,
|
| 27 |
stream=True
|
| 28 |
)
|
| 29 |
|