pschofield2 commited on
Commit
dc363fb
·
verified ·
1 Parent(s): f7d0a84

Update app.py

Browse files
Files changed (1) hide show
  1. app.py +1 -1
app.py CHANGED
@@ -191,7 +191,7 @@ def run_gpt_model(prompt: str, api_key: str) -> str:
191
  response = openai_client.chat.completions.create(
192
  model="gpt-4o", # or another model
193
  prompt=prompt,
194
- messages = [system,user]
195
  max_tokens=1500,
196
  temperature=0.7,
197
  stream=True,
 
191
  response = openai_client.chat.completions.create(
192
  model="gpt-4o", # or another model
193
  prompt=prompt,
194
+ messages = [system,user],
195
  max_tokens=1500,
196
  temperature=0.7,
197
  stream=True,