跳到主要内容
Open In ColabOpen on GitHub

腾讯混元

腾讯混元API (混元 API) 实现对话交流、内容生成、分析理解等功能,可广泛应用于智能客服、智能营销、角色扮演、广告文案、产品描述、剧本创作、简历生成、文章撰写、代码生成、数据分析、内容分析等多种场景。

参见更多信息了解更多详情。

from langchain_community.chat_models import ChatHunyuan
from langchain_core.messages import HumanMessage
API 参考:ChatHunyuan | HumanMessage
chat = ChatHunyuan(
hunyuan_app_id=111111111,
hunyuan_secret_id="YOUR_SECRET_ID",
hunyuan_secret_key="YOUR_SECRET_KEY",
)
chat(
[
HumanMessage(
content="You are a helpful assistant that translates English to French.Translate this sentence from English to French. I love programming."
)
]
)
AIMessage(content="J'aime programmer.")

结合流式传输使用 ChatHunyuan

chat = ChatHunyuan(
hunyuan_app_id="YOUR_APP_ID",
hunyuan_secret_id="YOUR_SECRET_ID",
hunyuan_secret_key="YOUR_SECRET_KEY",
streaming=True,
)
chat(
[
HumanMessage(
content="You are a helpful assistant that translates English to French.Translate this sentence from English to French. I love programming."
)
]
)
AIMessageChunk(content="J'aime programmer.")