当前位置:   article > 正文

TavilySearchResults和AgentExecutor的使用

tavily

以下llm使用的是ChatGLM。目前测试tongyi是报错的。

# !pip install -U langchain
# !pip install -U langchainhub
# !pip install -U langchain_openai
# !pip install -U dashscope

from langchain.chains import LLMChain
from langchain_community.llms import Tongyi
from langchain_community.tools.tavily_search import TavilySearchResults

import ChatGLM
from langchain.agents import AgentExecutor, create_structured_chat_agent, load_tools, create_react_agent

from langchain import hub
import os
from langchain.prompts import PromptTemplate
os.environ["DASHSCOPE_API_KEY"] = "sk-cc1c8314fdbd43ceaf26ec1824d5dd3b"
os.environ["SERPAPI_API_KEY"] = "9675cecd56acf05b5a881e6241b01dfd15aaf194"
os.environ["TAVILY_API_KEY"] = "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"

from langchain_community.utilities import SerpAPIWrapper
from langchain_community.tools import DuckDuckGoSearchRun
llm = ChatGLM.ChatGLM_LLM()
from langchain_core.output_parsers import StrOutputParser
from langchain_core.prompts import ChatPromptTemplate
from langchain_openai import ChatOpenAI
search = TavilySearchResults()
tools = [search]
prompt = hub.pull("hwchase17/react")
agent = create_react_agent(llm, tools, prompt)
agent_executor = AgentExecutor(
    agent=agent, tools=tools,verbose=True
)
output = agent_executor.invoke({"input": "2023年底中国大陆上映了哪些电影"})
print(output["output"])














  • 1
  • 2
  • 3
  • 4
  • 5
  • 6
  • 7
  • 8
  • 9
  • 10
  • 11
  • 12
  • 13
  • 14
  • 15
  • 16
  • 17
  • 18
  • 19
  • 20
  • 21
  • 22
  • 23
  • 24
  • 25
  • 26
  • 27
  • 28
  • 29
  • 30
  • 31
  • 32
  • 33
  • 34
  • 35
  • 36
  • 37
  • 38
  • 39
  • 40
  • 41
  • 42
  • 43
  • 44
  • 45
  • 46
  • 47
  • 48
声明:本文内容由网友自发贡献,不代表【wpsshop博客】立场,版权归原作者所有,本站不承担相应法律责任。如您发现有侵权的内容,请联系我们。转载请注明出处:https://www.wpsshop.cn/w/笔触狂放9/article/detail/425294
推荐阅读
相关标签
  

闽ICP备14008679号