# 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="google/flan-t5-xl", model_kwargs={"temperature":0.9 } ) text = "Why did the chicken cross the road?" print(llm_hf(text))