Update app.py
Browse files
app.py
CHANGED
@@ -86,7 +86,7 @@ chat_prompt = ChatPromptTemplate.from_messages([system_message_prompt, human_mes
|
|
86 |
|
87 |
# Set up main chatbot chain
|
88 |
def setup_chatbot_chain():
|
89 |
-
llm = ChatOpenAI(temperature=0.7, model_name="gpt-
|
90 |
return LLMChain(llm=llm, prompt=chat_prompt)
|
91 |
|
92 |
chatbot_chain = setup_chatbot_chain()
|
|
|
86 |
|
87 |
# Set up main chatbot chain
|
88 |
def setup_chatbot_chain():
|
89 |
+
llm = ChatOpenAI(temperature=0.7, model_name="gpt-4-turbo")
|
90 |
return LLMChain(llm=llm, prompt=chat_prompt)
|
91 |
|
92 |
chatbot_chain = setup_chatbot_chain()
|