chained / app.py
Chris4K's picture
Update app.py
b82e92c
raw
history blame
463 Bytes
# https://chat.lmsys.org/?leaderboard
import langchain
# https://huggingface.co/spaces/joyson072/LLm-Langchain/blob/main/app.py
from langchain.llms import HuggingFaceHub
# https://colab.research.google.com/drive/1hrS6_g14EcOD4ezwSGlGX2zxJegX5uNX#scrollTo=NUwUR9U7qkld
llm_hf = HuggingFaceHub(
repo_id="OpenAssistant/oasst-sft-4-pythia-12b-epoch-3.5",
model_kwargs={"temperature":0.9 }
)
text = "Why did the chicken cross the road?"
print(llm_hf(text))