Baichuan LLM
Baichuan Inc. (https://www.baichuan-ai.com/) is a Chinese startup in the era of AGI, dedicated to addressing fundamental human needs: Efficiency, Health, and Happiness.
##Installing the langchain packages needed to use the integration
%pip install -qU langchain-community
Prerequisiteโ
An API key is required to access Baichuan LLM API. Visit https://platform.baichuan-ai.com/ to get your API key.
Use Baichuan LLMโ
import os
os.environ["BAICHUAN_API_KEY"] = "YOUR_API_KEY"
from langchain_community.llms import BaichuanLLM
# Load the model
llm = BaichuanLLM()
res = llm.invoke("What's your name?")
print(res)
API Reference:BaichuanLLM
res = llm.generate(prompts=["ไฝ ๅฅฝ๏ผ"])
res
for res in llm.stream("Who won the second world war?"):
print(res)
import asyncio
async def run_aio_stream():
async for res in llm.astream("Write a poem about the sun."):
print(res)
asyncio.run(run_aio_stream())
Relatedโ
- LLM conceptual guide
- LLM how-to guides