当前位置:   article > 正文

langchain使用openchat 3.5的模型演示_openchat-3.5

openchat-3.5

以下的HUGGINGFACEHUB_API_TOKEN 需要自己去huggingface 网站申请 。

from langchain.chains import LLMChain
from langchain_core.prompts import ChatPromptTemplate
from langchain import hub
from langchain_community.llms import HuggingFaceHub 
from langchain_community.llms import HuggingFaceTextGenInference
from langchain_community.chat_models.huggingface import ChatHuggingFace
import os
os.environ["HUGGINGFACEHUB_API_TOKEN"] = "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"
prompt = ChatPromptTemplate.from_template("""{input}
"""
    )
    
llm = HuggingFaceHub(
    repo_id="openchat/openchat-3.5-0106",  
    task="text-generation", 
    model_kwargs={"temperature":0.1, "max_length":500}
)


chain = LLMChain(llm=llm,prompt=prompt,verbose=True)
print(chain.invoke("where is shenzhen"))





  • 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
声明:本文内容由网友自发贡献,不代表【wpsshop博客】立场,版权归原作者所有,本站不承担相应法律责任。如您发现有侵权的内容,请联系我们。转载请注明出处:https://www.wpsshop.cn/w/知新_RL/article/detail/922160
推荐阅读
相关标签
  

闽ICP备14008679号