当前位置:   article > 正文

使用Langchain访问阿里通义千问大模型_langchain 通义千问

langchain 通义千问

DASHSCOPE_API_KEY 需要自己去以下网站申请: https://help.aliyun.com/document_detail/611472.html?spm=a2c4g.2399481.0.0


from langchain.chains import LLMChain
from langchain_core.prompts import ChatPromptTemplate
from langchain_community.llms import Tongyi


import os
os.environ["DASHSCOPE_API_KEY"] = "sk-cc1c8314fdbd43ceaf26ec1824d5dd3b"
llm = Tongyi()
prompt = ChatPromptTemplate.from_template("""
{input} 
"""
    )
chain = LLMChain(llm=llm,prompt=prompt)
print(chain.invoke("帮我写一幅中国春节的对联"))


  • 1
  • 2
  • 3
  • 4
  • 5
  • 6
  • 7
  • 8
  • 9
  • 10
  • 11
  • 12
  • 13
  • 14
  • 15
  • 16
  • 17
声明:本文内容由网友自发贡献,不代表【wpsshop博客】立场,版权归原作者所有,本站不承担相应法律责任。如您发现有侵权的内容,请联系我们。转载请注明出处:https://www.wpsshop.cn/w/菜鸟追梦旅行/article/detail/524601
推荐阅读
相关标签
  

闽ICP备14008679号