跳至主要内容

Datadog LLM 可观测性

危险

LLM 可观测性处于公开测试阶段,其 API 会发生变化。

使用 Datadog LLM 可观测性,您可以监控、排查和评估您的 LLM 驱动的应用程序,例如聊天机器人。您可以调查问题的根本原因,监控运行性能,并评估 LLM 应用程序的质量、隐私和安全性。

这是一个实验性的社区实现,未获得 Datadog 官方支持。它基于 Datadog LLM 可观测性 API

安装

npm install @langchain/community

使用

import { OpenAI } from "@langchain/openai";
import { DatadogLLMObsTracer } from "@langchain/community/experimental/callbacks/handlers/datadog";

/**
* This example demonstrates how to use the DatadogLLMObsTracer with the OpenAI model.
* It will produce a "llm" span with the input and output of the model inside the meta field.
*
* To run this example, you need to have a valid Datadog API key and OpenAI API key.
*/
export const run = async () => {
const model = new OpenAI({
model: "gpt-4",
temperature: 0.7,
maxTokens: 1000,
maxRetries: 5,
});

const res = await model.invoke(
"Question: What would be a good company name a company that makes colorful socks?\nAnswer:",
{
callbacks: [
new DatadogLLMObsTracer({
mlApp: "my-ml-app",
}),
],
}
);

console.log({ res });
};

API 参考


此页面是否有帮助?


您也可以留下详细的反馈 在 GitHub 上.