bstraehle commited on
Commit
976568a
·
1 Parent(s): 5f264bc

Update app.py

Browse files
Files changed (1) hide show
  1. app.py +18 -9
app.py CHANGED
@@ -2,7 +2,8 @@ import gradio as gr
2
  import os
3
 
4
  from datetime import date
5
- from langchain.agents import AgentType, initialize_agent, tool
 
6
  from langchain.chat_models import ChatOpenAI
7
  from langchain_community.tools.tavily_search import TavilySearchResults
8
 
@@ -52,15 +53,23 @@ def invoke(openai_api_key, prompt, agent_option):
52
 
53
  tools = [search]
54
 
55
- agent = initialize_agent(tools + [time],
56
- llm,
57
- agent = AgentType.CHAT_ZERO_SHOT_REACT_DESCRIPTION,
58
- handle_parsing_errors = True,
59
- verbose = True)
60
-
61
- completion = agent(prompt)
 
 
 
 
 
 
 
 
62
 
63
- output = completion["output"]
64
  except Exception as e:
65
  err_msg = e
66
 
 
2
  import os
3
 
4
  from datetime import date
5
+ from langchain import hub
6
+ from langchain.agents import AgentExecutor, AgentType, create_openai_functions_agent, initialize_agent, tool
7
  from langchain.chat_models import ChatOpenAI
8
  from langchain_community.tools.tavily_search import TavilySearchResults
9
 
 
53
 
54
  tools = [search]
55
 
56
+ #agent = initialize_agent(tools + [time],
57
+ # llm,
58
+ # agent = AgentType.CHAT_ZERO_SHOT_REACT_DESCRIPTION,
59
+ # handle_parsing_errors = True,
60
+ # verbose = True)
61
+
62
+ p = hub.pull("hwchase17/openai-functions-agent")
63
+
64
+ agent = create_openai_functions_agent(llm, tools, p)
65
+
66
+ agent_executor = AgentExecutor(agent = agent, tools = tools, verbose = True)
67
+
68
+ output = agent_executor.invoke({"input": prompt})
69
+
70
+ #completion = agent(prompt)
71
 
72
+ #output = completion["output"]
73
  except Exception as e:
74
  err_msg = e
75