Spaces:
Runtime error
Runtime error
Update app.py
Browse files
app.py
CHANGED
@@ -610,7 +610,7 @@ The form of Desired Outcome must be 'key1, key2, ...'. For example to get the na
|
|
610 |
),
|
611 |
]
|
612 |
|
613 |
-
llm_chain = LLMChain(llm=ChatOpenAI(model='gpt-
|
614 |
|
615 |
tool_names = [tool.name for tool in tools]
|
616 |
agent = LLMSingleActionAgent(
|
|
|
610 |
),
|
611 |
]
|
612 |
|
613 |
+
llm_chain = LLMChain(llm=ChatOpenAI(model='gpt-3.5-turbo', temperature=0.5, streaming=True), prompt=prompt, verbose=False,)
|
614 |
|
615 |
tool_names = [tool.name for tool in tools]
|
616 |
agent = LLMSingleActionAgent(
|