Spaces:
Running
Running
Update app.py
Browse files
app.py
CHANGED
@@ -51,10 +51,10 @@ def invoke(openai_api_key, prompt, agent_option):
|
|
51 |
handle_parsing_errors = True,
|
52 |
verbose = True)
|
53 |
else:
|
54 |
-
|
55 |
-
tools = load_tools(["openweathermap-api"], llm)
|
56 |
|
57 |
-
agent = initialize_agent(tools +
|
|
|
58 |
llm,
|
59 |
agent = AgentType.CHAT_ZERO_SHOT_REACT_DESCRIPTION,
|
60 |
handle_parsing_errors = True,
|
@@ -83,7 +83,7 @@ demo = gr.Interface(fn = invoke,
|
|
83 |
title = "Generative AI - LLM & Agent",
|
84 |
description = description,
|
85 |
examples = [["sk-", "What is today's date?", AGENT_ON],
|
86 |
-
["sk-", "What is the weather in Irvine,
|
87 |
cache_examples = False)
|
88 |
|
89 |
demo.launch()
|
|
|
51 |
handle_parsing_errors = True,
|
52 |
verbose = True)
|
53 |
else:
|
54 |
+
tools = load_tools(["openweathermap-api"])
|
|
|
55 |
|
56 |
+
agent = initialize_agent(tools + # built-in
|
57 |
+
[time], # custom
|
58 |
llm,
|
59 |
agent = AgentType.CHAT_ZERO_SHOT_REACT_DESCRIPTION,
|
60 |
handle_parsing_errors = True,
|
|
|
83 |
title = "Generative AI - LLM & Agent",
|
84 |
description = description,
|
85 |
examples = [["sk-", "What is today's date?", AGENT_ON],
|
86 |
+
["sk-", "What is the weather in Irvine, California? Answer in metric and imperial system.", AGENT_ON]],
|
87 |
cache_examples = False)
|
88 |
|
89 |
demo.launch()
|