ibagur commited on
Commit
47ecc15
1 Parent(s): fb76c41

use gpt-3.5

Browse files
Files changed (1) hide show
  1. app.py +2 -2
app.py CHANGED
@@ -22,8 +22,8 @@ os.environ["OPENAI_API_KEY"] = "sk-cswpdmt5ZvPlDWyTRhNlT3BlbkFJoctMAweaIdBHKpID9
22
  flag_chroma = True
23
 
24
  # Define the LLM chat model
25
- #model = 'gpt-3.5-turbo'
26
- model = 'gpt-4'
27
  temperature = 0
28
  llm = ChatOpenAI(temperature=temperature, model=model)
29
 
 
22
  flag_chroma = True
23
 
24
  # Define the LLM chat model
25
+ model = 'gpt-3.5-turbo'
26
+ #model = 'gpt-4'
27
  temperature = 0
28
  llm = ChatOpenAI(temperature=temperature, model=model)
29