Skip to main content
Open In ColabOpen on GitHub

腾讯混元

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

See for 更多资讯.

from langchain_community.chat_models import ChatHunyuan
from langchain_core.messages import 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.")