jblocher commited on
Commit
da67fbd
·
1 Parent(s): 17028e5

fogot a comma...

Browse files
Files changed (1) hide show
  1. app.py +2 -2
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