Skip to main content
Open In ColabOpen on GitHub

Dappier AI

Dappier:通过动态、实时数据模型为AI提供动力

Dappier 提供了一个前沿平台,使开发者能够立即访问涵盖新闻、娱乐、金融、市场数据、天气等领域的各种实时数据模型。通过我们预先训练好的数据模型,您可以增强您的AI应用程序,确保它们提供精确、最新的响应,并减少错误。

Dappier数据模型帮助您利用来自世界领先品牌的可靠、最新内容构建下一代LLM应用程序。通过简单的API,释放您的创造力,并通过可操作的专有数据增强任何GPT应用程序或AI工作流程。通过来自可信来源的专有数据增强您的AI,是确保无论问题如何都能提供事实、最新响应并减少幻觉的最佳方式。

为开发者,由开发者设计 Dappier 以开发者为设计核心,简化了从数据集成到货币化的旅程,提供了清晰、直接的路径来部署您的AI模型并从中获利。体验新互联网货币化基础设施的未来,请访问https://dappier.com/

本示例介绍了如何使用LangChain与Dappier AI模型进行交互


要使用我们的Dappier AI数据模型之一,您需要一个API密钥。请访问Dappier平台(https://platform.dappier.com/)登录并在您的个人资料中创建一个API密钥。

您可以在API参考中找到更多详细信息:https://docs.dappier.com/introduction

要使用我们的Dappier聊天模型,您可以在初始化类时通过名为dappier_api_key的参数直接传递密钥,或将其设置为环境变量。

export DAPPIER_API_KEY="..."
from langchain_community.chat_models.dappier import ChatDappierAI
from langchain_core.messages import HumanMessage
API Reference:ChatDappierAI | HumanMessage
chat = ChatDappierAI(
dappier_endpoint="https://api.dappier.com/app/datamodelconversation",
dappier_model="dm_01hpsxyfm2fwdt2zet9cg6fdxt",
dappier_api_key="...",
)
messages = [HumanMessage(content="Who won the super bowl in 2024?")]
chat.invoke(messages)
AIMessage(content='Hey there! The Kansas City Chiefs won Super Bowl LVIII in 2024. They beat the San Francisco 49ers in overtime with a final score of 25-22. It was quite the game! 🏈')
await chat.ainvoke(messages)
AIMessage(content='The Kansas City Chiefs won Super Bowl LVIII in 2024! 🏈')

这个页面有帮助吗?