dwb2023 commited on
Commit
4e4e497
β€’
1 Parent(s): 5bc1eea

Update app.py

Browse files

update model to gpt4o so that we can try to use the app to get langchain integration working!

Files changed (1) hide show
  1. app.py +1 -1
app.py CHANGED
@@ -21,7 +21,7 @@ Think through your response step by step.
21
  @cl.on_chat_start # marks a function that will be executed at the start of a user session
22
  async def start_chat():
23
  settings = {
24
- "model": "gpt-3.5-turbo-0125",
25
  "temperature": 0,
26
  "max_tokens": 500,
27
  "top_p": 1,
 
21
  @cl.on_chat_start # marks a function that will be executed at the start of a user session
22
  async def start_chat():
23
  settings = {
24
+ "model": "gpt-4o",
25
  "temperature": 0,
26
  "max_tokens": 500,
27
  "top_p": 1,