oskardotid commited on
Commit
0f61629
·
1 Parent(s): 724afc4

Fixing the GPT model reference

Browse files
Files changed (1) hide show
  1. app.py +2 -2
app.py CHANGED
@@ -22,9 +22,9 @@ Think through your response step by step.
22
  @cl.on_chat_start # marks a function that will be executed at the start of a user session
23
  async def start_chat():
24
  settings = {
25
- "model": "gpt-3.5-turbo",
26
  "temperature": 0,
27
- "max_tokens": 500,
28
  "top_p": 1,
29
  "frequency_penalty": 0,
30
  "presence_penalty": 0,
 
22
  @cl.on_chat_start # marks a function that will be executed at the start of a user session
23
  async def start_chat():
24
  settings = {
25
+ "model": "gpt-4-1106-preview",
26
  "temperature": 0,
27
+ "max_tokens": 4000,
28
  "top_p": 1,
29
  "frequency_penalty": 0,
30
  "presence_penalty": 0,