Rafuwhwhs commited on
Commit
f83eb7e
·
verified ·
1 Parent(s): d8eadd2

Update app.py

Browse files
Files changed (1) hide show
  1. app.py +1 -1
app.py CHANGED
@@ -3,7 +3,7 @@ from typing import List, Tuple, Dict, Generator
3
  from langchain.llms import OpenAI
4
  import gradio as gr
5
 
6
- model_name = "gpt-4o"
7
  LLM = OpenAI(model_name=model_name, temperature=0.1)
8
 
9
  def create_history_messages(history: List[Tuple[str, str]]) -> List[dict]:
 
3
  from langchain.llms import OpenAI
4
  import gradio as gr
5
 
6
+ model_name = "gpt-3.5-turbo"
7
  LLM = OpenAI(model_name=model_name, temperature=0.1)
8
 
9
  def create_history_messages(history: List[Tuple[str, str]]) -> List[dict]: