赞
踩
需要去千问的官网申请你自己的api key ,替换下面的。
#!pip install langchain langchainhub dashscope from langchain_core.prompts import ChatPromptTemplate from langchain.chains import LLMChain from langchain_community.llms import Tongyi from langchain import hub import os prompt1 = ChatPromptTemplate.from_template("""{input} """ ) os.environ["DASHSCOPE_API_KEY"] = "sk-cc1c8314fdbd43ceaf26ec1824d5dd3b" llm = Tongyi() chain_one = LLMChain( llm=llm, prompt=prompt1, verbose=False ) print(chain_one.invoke("深圳1998年的情况介绍")) print(chain_one.invoke("HTML入门")) print(chain_one.invoke("什么是深度学习"))
Copyright © 2003-2013 www.wpsshop.cn 版权所有,并保留所有权利。