farhananis005 commited on
Commit
3a70a3d
1 Parent(s): 34c5ca8

Update app.py

Browse files
Files changed (1) hide show
  1. app.py +1 -1
app.py CHANGED
@@ -14,7 +14,7 @@ def create_agent():
14
 
15
  global agent
16
 
17
- llm = ChatOpenAI(model_name="gpt-3.5-turbo-16k")
18
  memory = ConversationSummaryBufferMemory(llm=llm, max_token_limit=1000)
19
  agent = ConversationChain(llm=llm, memory=memory, verbose=True)
20
 
 
14
 
15
  global agent
16
 
17
+ llm = ChatOpenAI(model_name="gpt-4o")
18
  memory = ConversationSummaryBufferMemory(llm=llm, max_token_limit=1000)
19
  agent = ConversationChain(llm=llm, memory=memory, verbose=True)
20