bstraehle commited on
Commit
1a8951a
·
1 Parent(s): a98c542

Update app.py

Browse files
Files changed (1) hide show
  1. app.py +4 -4
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
- print("===>" + OPENWEATHERMAP_API_KEY)
55
- tools = load_tools(["openweathermap-api"], llm)
56
 
57
- agent = initialize_agent(tools + [time],
 
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, CA?", AGENT_ON]],
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()