diff --git a/docs/docs/README.md b/docs/docs/README.md index cc274edb..76a30f18 100644 --- a/docs/docs/README.md +++ b/docs/docs/README.md @@ -15,15 +15,15 @@ features: - title: 更丰富的内置工具 details: Builtin工具,例如侧重头条、抖音搜索的web_search等;MCP工具,例如飞书Lark、数据湖LAS、优解PromptPilot等 - title: 更灵活的功能扩展 - details: 提供Agent各类组件的基础实现,通过插件方式灵活扩展 + details: 提供Agent各类组件的基础实现,通过插件方式灵活扩展。 - title: 更完备的观测和评估管理 - details: 运行时数据通过OpenTelemetry协议无缝衔接APMPlus、Cozeloop, TLS;运行时数据生成测试数据集文件,可直接在本地和Cozeloop中进行评估测试。 + details: 运行时数据通过OpenTelemetry协议无缝衔接APMPlus、Cozeloop、TLS;运行时数据生成测试数据集文件,可直接在本地和Cozeloop中进行评估测试。 - title: 更强大的知识和记忆管理 details: 知识库支持火山引擎各类现有数据库,例如关系型数据库、键值数据库、VikingDB知识库,记忆库等。 - title: 更科学的结果评测 details: 提供不确定性Tools(例如搜索类)场景下的测评解决方案,弥补传统仅根据输入输出进行评测而导致评测结果不符合预期的问题。 - title: 更友好的最佳实践 - details: 贴近实际工业场景金融、客服、商业分析等的Samples,例如各类数据库、数据湖查询、搜索、长短器记忆、知识库构建。 + details: 贴近实际工业场景金融、客服、商业分析等的示例,例如各类数据库、数据湖查询、搜索、长短期记忆、知识库构建。 footer: Apache 2.0 Licensed | Copyright © 2025-present Beijing Volcano Engine Technology Co., Ltd. --- diff --git a/docs/docs/tracing.md b/docs/docs/tracing.md index 2ec57ab5..26f71b34 100644 --- a/docs/docs/tracing.md +++ b/docs/docs/tracing.md @@ -1,6 +1,6 @@ # 可观测 -VeADK中的可观测(Tracing)能力能够记录运行时关键节点的信息,并且支持无缝上报至火山引擎云平台(例如CozeLoop、APMPlus等)。 +VeADK中的可观测(Tracing)能力能够记录运行时关键节点的信息,并且支持无缝上报至火山引擎云平台(例如CozeLoop、APMPlus、TLS等)。 ## 本地观测 @@ -24,13 +24,17 @@ print(f"Tracing file path: {tracer._trace_file_path}") - CozeLoop平台:`CozeLoopExporter` - APMPlus平台: `APMPlusExporter` +- TLS平台:`TLSExporter` 使用方法如下: ```python from veadk.tracing.telemetry.opentelemetry_tracer import OpentelemetryTracer +from veadk.tracing.telemetry.exporters.cozeloop_exporter import CozeloopExporter +from veadk.tracing.telemetry.exporters.apmplus_exporter import APMPlusExporter +from veadk.tracing.telemetry.exporters.tls_exporter import TLSExporter -exporters = [CozeloopExporter(), APMPlusExporter()] +exporters = [CozeloopExporter(), APMPlusExporter(), TLSExporter()] tracer = OpentelemetryTracer(exporters=exporters) agent = Agent(tracers=[tracer])