Spaces:
Sleeping
Sleeping
use gpt-3.5
Browse files
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 |
-
|
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 |
|