Update app.py
Browse files
app.py
CHANGED
@@ -62,7 +62,7 @@ def gpt(history, prompt, temp=0.0, stream=True):
|
|
62 |
if bot:
|
63 |
hist += [{"role": "assistant", "content": bot}]
|
64 |
return openai.ChatCompletion.create(
|
65 |
-
deployment_id="
|
66 |
messages=hist,
|
67 |
temperature=temp,
|
68 |
stream=stream,
|
|
|
62 |
if bot:
|
63 |
hist += [{"role": "assistant", "content": bot}]
|
64 |
return openai.ChatCompletion.create(
|
65 |
+
deployment_id="gpt-35-turbo-16k",
|
66 |
messages=hist,
|
67 |
temperature=temp,
|
68 |
stream=stream,
|