能力标签
Phoenix LLM可观测性平台
🛠
AI工具

Phoenix LLM可观测性平台

基于 Python · 开源 AI 工具,GitHub 社区精选
英文名:phoenix
⭐ 9.6k Stars 🍴 864 Forks 💻 Python 📄 NOASSERTION 🏷 AI 8.5分
8.5AI 综合评分
AI监控可观测性Prompt模板Agent管理性能评估
✦ AI Skill Hub 推荐

经 AI Skill Hub 精选评估,Phoenix LLM可观测性平台 获评「强烈推荐」。已获得 9.6k 颗 GitHub Star,这款AI工具在功能完整性、社区活跃度和易用性方面表现出色,AI 评分 8.5 分,适合有一定技术背景的用户使用。

📚 深度解析

Phoenix LLM可观测性平台 是一款基于 Python 的开源工具,在 GitHub 上收获 10k+ Star,是AI监控、可观测性、Prompt模板、Agent管理领域中的优质开源项目。开源工具的最大优势在于代码完全透明,你可以审计每一行代码的安全性,也可以根据自身需求进行二次开发和定制。

**为什么要使用开源工具而非商业 SaaS?**
对于个人开发者和有隐私需求的用户,本地部署的开源工具意味着数据不离本机,不受第三方服务商的数据政策约束。同时,开源工具通常没有使用次数限制和月度费用,一次安装即可长期使用,对于高频使用场景的总拥有成本(TCO)远低于订阅制商业工具。

**安装与环境准备**
Phoenix LLM可观测性平台 依赖 Python 运行环境。建议通过 pyenv(Python)或 nvm(Node.js)管理 Python 版本,避免全局环境污染。对于新手用户,推荐先创建虚拟环境(python -m venv venv && source venv/bin/activate),再安装依赖,这样即使出现问题也可以随时删除虚拟环境重新开始,不影响系统稳定性。

**社区与维护**
GitHub Issue 和 Discussion 是获取帮助的最快渠道。在提问前建议先检查 Closed Issues(已关闭的问题),大多数常见问题都已有解答。遇到 Bug 时,提供 pip list 的输出、完整错误堆栈和最小可复现示例,能显著提高开发者响应速度。AI Skill Hub 将持续追踪 Phoenix LLM可观测性平台 的版本更新,及时通知重要功能变化。

📋 工具概览

Phoenix LLM可观测性平台 是一款基于 Python 开发的开源工具,专注于 AI监控、可观测性、Prompt模板 等核心功能。作为 GitHub 开源项目,它拥有活跃的社区支持和持续的版本迭代,代码完全透明可审计,支持本地部署以保护数据隐私。无论是个人使用还是集成到企业工作流,都能提供稳定可靠的解决方案。

GitHub Stars
⭐ 9.6k
开发语言
Python
支持平台
Windows / macOS / Linux
维护状态
持续维护,定期更新
开源协议
NOASSERTION
AI 综合评分
8.5 分
工具类型
AI工具
Forks
864

📖 中文文档

以下内容由 AI Skill Hub 根据项目信息自动整理,如需查看完整原始文档请访问底部「原始来源」。

Phoenix LLM可观测性平台 是一款基于 Python 开发的开源工具,专注于 AI监控、可观测性、Prompt模板 等核心功能。作为 GitHub 开源项目,它拥有活跃的社区支持和持续的版本迭代,代码完全透明可审计,支持本地部署以保护数据隐私。无论是个人使用还是集成到企业工作流,都能提供稳定可靠的解决方案。

📌 核心特色
  • 开源免费,支持本地部署,数据完全自主可控
  • 活跃的 GitHub 开源社区,持续迭代更新
  • 提供详细文档和使用示例,新手友好
  • 支持自定义配置,灵活适配不同使用环境
  • 可作为基础组件集成进现有技术栈或进行二次开发
🎯 主要使用场景
  • 本地部署运行,保护数据隐私,满足合规要求
  • 自定义集成到现有系统,扩展技术栈能力
  • 作为开源基础组件进行商业化二次开发
以下安装命令基于项目开发语言和类型自动生成,实际以官方 README 为准。
安装命令
# 方式一:pip 安装(推荐)
pip install phoenix

# 方式二:虚拟环境安装(推荐生产环境)
python -m venv .venv
source .venv/bin/activate  # Windows: .venv\Scripts\activate
pip install phoenix

# 方式三:从源码安装(获取最新功能)
git clone https://github.com/Arize-ai/phoenix
cd phoenix
pip install -e .

# 验证安装
python -c "import phoenix; print('安装成功')"
📋 安装步骤说明
  1. 访问 GitHub 仓库页面
  2. 按照 README 文档完成依赖安装
  3. 根据系统环境完成初始化配置
  4. 参考官方示例或文档开始使用
  5. 遇到问题可在 GitHub Issues 中查找解答
以下用法示例由 AI Skill Hub 整理,涵盖最常见的使用场景。
常用命令 / 代码示例
# 命令行使用
phoenix --help

# 基本用法
phoenix input_file -o output_file

# Python 代码中调用
import phoenix

# 示例
result = phoenix.process("input")
print(result)
以下配置示例基于典型使用场景生成,具体参数请参照官方文档调整。
配置示例
# phoenix 配置文件示例(config.yml)
app:
  name: "phoenix"
  debug: false
  log_level: "INFO"

# 运行时指定配置文件
phoenix --config config.yml

# 或通过环境变量配置
export PHOENIX_API_KEY="your-key"
export PHOENIX_OUTPUT_DIR="./output"
📑 README 深度解析 真实文档 完整度 28/100 查看 GitHub 原文 →
以下内容由系统直接从 GitHub README 解析整理,保留代码块、表格与列表结构。

简介

<p align="center"> <a target="_blank" href="https://phoenix.arize.com" style="background:none"> <img alt="phoenix banner" src="https://github.com/Arize-ai/phoenix-assets/blob/main/images/socal/github-large-banner-phoenix-v2.jpg?raw=true" width="auto" height="auto"></img> </a> <br/> <br/> <a href="https://arize.com/docs/phoenix/"> <img src="https://img.shields.io/static/v1?message=Docs&logo=data:image/png;base64,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&labelColor=grey&color=blue&logoColor=white&label=%20"/> </a> <a target="_blank" href="https://join.slack.com/t/arize-ai/shared_invite/zt-3r07iavnk-ammtATWSlF0pSrd1DsMW7g"> <img src="https://img.shields.io/static/v1?message=Community&logo=slack&labelColor=grey&color=blue&logoColor=white&label=%20"/> </a> <a target="_blank" href="https://bsky.app/profile/arize-phoenix.bsky.social"> <img src="https://img.shields.io/badge/-phoenix-blue.svg?color=blue&labelColor=gray&logo=bluesky"> </a> <a target="_blank" href="https://x.com/ArizePhoenix"> <img src="https://img.shields.io/badge/-ArizePhoenix-blue.svg?color=blue&labelColor=gray&logo=x"> </a> <a target="_blank" href="https://www.linkedin.com/showcase/113218220"> <img src="https://img.shields.io/badge/-ArizePhoenix-blue.svg?color=blue&labelColor=gray&logo=linkedin"> </a> <a target="_blank" href="https://pypi.org/project/arize-phoenix/"> <img src="https://img.shields.io/pypi/v/arize-phoenix?color=blue"> </a> <a target="_blank" href="https://anaconda.org/conda-forge/arize-phoenix"> <img src="https://img.shields.io/conda/vn/conda-forge/arize-phoenix.svg?color=blue"> </a> <a target="_blank" href="https://pypi.org/project/arize-phoenix/"> <img src="https://img.shields.io/pypi/pyversions/arize-phoenix"> </a> <a target="_blank" href="https://hub.docker.com/r/arizephoenix/phoenix/tags"> <img src="https://img.shields.io/docker/v/arizephoenix/phoenix?sort=semver&logo=docker&label=image&color=blue"> </a> <a target="_blank" href="https://hub.docker.com/r/arizephoenix/phoenix-helm"> <img src="https://img.shields.io/badge/Helm-blue?style=flat&logo=helm&labelColor=grey"/> </a> <a target="_blank" href="https://github.com/Arize-ai/phoenix/tree/main/js/packages/phoenix-mcp"> <img src="https://badge.mcpx.dev?status=on" title="MCP Enabled"/> </a> <a href="cursor://anysphere.cursor-deeplink/mcp/install?name=phoenix&config=eyJjb21tYW5kIjoibnB4IC15IEBhcml6ZWFpL3Bob2VuaXgtbWNwQGxhdGVzdCAtLWJhc2VVcmwgaHR0cHM6Ly9teS1waG9lbml4LmNvbSAtLWFwaUtleSB5b3VyLWFwaS1rZXkifQ%3D%3D"><img src="https://cursor.com/deeplink/mcp-install-dark.svg" alt="Add Arize Phoenix MCP server to Cursor" height=20 /></a> <img referrerpolicy="no-referrer-when-downgrade" src="https://static.scarf.sh/a.png?x-pxid=8e8e8b34-7900-43fa-a38f-1f070bd48c64&page=README.md" /> </p>

Phoenix is an open-source AI observability platform designed for experimentation, evaluation, and troubleshooting. It provides:

  • Tracing - Trace your LLM application's runtime using OpenTelemetry-based instrumentation.
  • Evaluation - Leverage LLMs to benchmark your application's performance using response and retrieval evals.
  • Datasets - Create versioned datasets of examples for experimentation, evaluation, and fine-tuning.
  • Experiments - Track and evaluate changes to prompts, LLMs, and retrieval.
  • Playground- Optimize prompts, compare models, adjust parameters, and replay traced LLM calls.
  • Prompt Management- Manage and test prompt changes systematically using version control, tagging, and experimentation.

Phoenix is vendor and language agnostic with out-of-the-box support for popular frameworks (OpenAI Agents SDK, Claude Agent SDK, LangGraph, Vercel AI SDK, Mastra, CrewAI, LlamaIndex, DSPy) and LLM providers (OpenAI, Anthropic, Google GenAI, Google ADK, AWS Bedrock, OpenRouter, LiteLLM, and more). For details on auto-instrumentation, check out the OpenInference project.

Phoenix runs practically anywhere, including your local machine, a Jupyter notebook, a containerized deployment, or in the cloud.

Installation

Install Phoenix via pip or conda

pip install arize-phoenix

Phoenix container images are available via Docker Hub and can be deployed using Docker or Kubernetes. Arize AI also provides cloud instances at app.phoenix.arize.com.

Packages

The arize-phoenix package includes the entire Phoenix platform. However, if you have deployed the Phoenix platform, there are lightweight Python sub-packages and TypeScript packages that can be used in conjunction with the platform.

Python Subpackages

PackageVersion & DocsDescription
[arize-phoenix-otel](https://github.com/Arize-ai/phoenix/tree/main/packages/phoenix-otel)[![PyPI Version](https://img.shields.io/pypi/v/arize-phoenix-otel)](https://pypi.org/project/arize-phoenix-otel/) [![Docs](https://img.shields.io/badge/docs-blue?logo=readthedocs&logoColor=white)](https://arize-phoenix.readthedocs.io/projects/otel/en/latest/index.html)Provides a lightweight wrapper around OpenTelemetry primitives with Phoenix-aware defaults
[arize-phoenix-client](https://github.com/Arize-ai/phoenix/tree/main/packages/phoenix-client)[![PyPI Version](https://img.shields.io/pypi/v/arize-phoenix-client)](https://pypi.org/project/arize-phoenix-client/) [![Docs](https://img.shields.io/badge/docs-blue?logo=readthedocs&logoColor=white)](https://arize-phoenix.readthedocs.io/projects/client/en/latest/index.html)Lightweight client for interacting with the Phoenix server via its OpenAPI REST interface
[arize-phoenix-evals](https://github.com/Arize-ai/phoenix/tree/main/packages/phoenix-evals)[![PyPI Version](https://img.shields.io/pypi/v/arize-phoenix-evals)](https://pypi.org/project/arize-phoenix-evals/) [![Docs](https://img.shields.io/badge/docs-blue?logo=readthedocs&logoColor=white)](https://arize-phoenix.readthedocs.io/projects/evals/en/latest/index.html)Tooling to evaluate LLM applications including RAG relevance, answer relevance, and more

TypeScript Subpackages

PackageVersion & DocsDescription
[@arizeai/phoenix-otel](https://github.com/Arize-ai/phoenix/tree/main/js/packages/phoenix-otel)[![NPM Version](https://img.shields.io/npm/v/%40arizeai%2Fphoenix-otel)](https://www.npmjs.com/package/@arizeai/phoenix-otel) [![Docs](https://img.shields.io/badge/docs-blue?logo=typescript&logoColor=white)](https://arize-ai.github.io/phoenix/)Provides a lightweight wrapper around OpenTelemetry primitives with Phoenix-aware defaults
[@arizeai/phoenix-client](https://github.com/Arize-ai/phoenix/tree/main/js/packages/phoenix-client)[![NPM Version](https://img.shields.io/npm/v/%40arizeai%2Fphoenix-client)](https://www.npmjs.com/package/@arizeai/phoenix-client) [![Docs](https://img.shields.io/badge/docs-blue?logo=typescript&logoColor=white)](https://arize-ai.github.io/phoenix/)Client for the Arize Phoenix API
[@arizeai/phoenix-evals](https://github.com/Arize-ai/phoenix/tree/main/js/packages/phoenix-evals)[![NPM Version](https://img.shields.io/npm/v/%40arizeai%2Fphoenix-evals)](https://www.npmjs.com/package/@arizeai/phoenix-evals) [![Docs](https://img.shields.io/badge/docs-blue?logo=typescript&logoColor=white)](https://arize-ai.github.io/phoenix/)TypeScript evaluation library for LLM applications (alpha release)
[@arizeai/phoenix-mcp](https://github.com/Arize-ai/phoenix/tree/main/js/packages/phoenix-mcp)[![NPM Version](https://img.shields.io/npm/v/%40arizeai%2Fphoenix-mcp)](https://www.npmjs.com/package/@arizeai/phoenix-mcp) [![Docs](https://img.shields.io/badge/docs-blue?logo=markdown&logoColor=white)](./js/packages/phoenix-mcp/README.md)MCP server implementation for Arize Phoenix providing unified interface to Phoenix's capabilities
[@arizeai/phoenix-cli](https://github.com/Arize-ai/phoenix/tree/main/js/packages/phoenix-cli)[![NPM Version](https://img.shields.io/npm/v/%40arizeai%2Fphoenix-cli)](https://www.npmjs.com/package/@arizeai/phoenix-cli) [![Docs](https://img.shields.io/badge/docs-blue?logo=typescript&logoColor=white)](https://arize.com/docs/phoenix/sdk-api-reference/typescript/arizeai-phoenix-cli)CLI for fetching traces, datasets, and experiments for use with Claude Code, Cursor, and other coding agents

Tracing Integrations

Phoenix is built on top of OpenTelemetry and is vendor, language, and framework agnostic. For details about tracing integrations and example applications, see the OpenInference project.

Python Integrations <div class="rdm-tbl-wrap"><table class="rdm-tbl"><thead><tr><th></th><th>Integration</th><th>Package</th><th>Version</th></tr></thead><tbody><tr><td>&lt;picture&gt;&lt;source media=&quot;(prefers-color-scheme: dark)&quot; srcset=&quot;https://unpkg.com/@lobehub/icons-static-png@latest/dark/openai.png&quot;&gt;&lt;img height=&quot;14&quot; src=&quot;https://unpkg.com/@lobehub/icons-static-png@latest/light/openai.png&quot;&gt;&lt;/picture&gt;</td><td>OpenAI</td><td>openinference-instrumentation-openai</td><td>PyPI Version</td></tr><tr><td>&lt;picture&gt;&lt;source media=&quot;(prefers-color-scheme: dark)&quot; srcset=&quot;https://unpkg.com/@lobehub/icons-static-png@latest/dark/openai.png&quot;&gt;&lt;img height=&quot;14&quot; src=&quot;https://unpkg.com/@lobehub/icons-static-png@latest/light/openai.png&quot;&gt;&lt;/picture&gt;</td><td>OpenAI Agents</td><td>openinference-instrumentation-openai-agents</td><td>PyPI Version</td></tr><tr><td>&lt;img src=&quot;https://unpkg.com/@lobehub/icons-static-png@latest/dark/llamaindex-color.png&quot; height=&quot;14&quot;&gt;</td><td>LlamaIndex</td><td>openinference-instrumentation-llama-index</td><td>PyPI Version</td></tr><tr><td></td><td>DSPy</td><td>openinference-instrumentation-dspy</td><td>PyPI Version</td></tr><tr><td>&lt;img src=&quot;https://unpkg.com/@lobehub/icons-static-png@latest/dark/bedrock-color.png&quot; height=&quot;14&quot;&gt;</td><td>AWS Bedrock</td><td>openinference-instrumentation-bedrock</td><td>PyPI Version</td></tr><tr><td>&lt;img src=&quot;https://unpkg.com/@lobehub/icons-static-png@latest/dark/langchain-color.png&quot; height=&quot;14&quot;&gt;</td><td>LangChain</td><td>openinference-instrumentation-langchain</td><td>PyPI Version</td></tr><tr><td>&lt;img src=&quot;https://unpkg.com/@lobehub/icons-static-png@latest/dark/mistral-color.png&quot; height=&quot;14&quot;&gt;</td><td>MistralAI</td><td>openinference-instrumentation-mistralai</td><td>PyPI Version</td></tr><tr><td>&lt;img src=&quot;https://unpkg.com/@lobehub/icons-static-png@latest/dark/google-color.png&quot; height=&quot;14&quot;&gt;</td><td>Google GenAI</td><td>openinference-instrumentation-google-genai</td><td>PyPI Version</td></tr><tr><td>&lt;img src=&quot;https://unpkg.com/@lobehub/icons-static-png@latest/dark/google-color.png&quot; height=&quot;14&quot;&gt;</td><td>Google ADK</td><td>openinference-instrumentation-google-adk</td><td>PyPI Version</td></tr><tr><td></td><td>Guardrails</td><td>openinference-instrumentation-guardrails</td><td>PyPI Version</td></tr><tr><td>&lt;img src=&quot;https://unpkg.com/@lobehub/icons-static-png@latest/dark/vertexai-color.png&quot; height=&quot;14&quot;&gt;</td><td>VertexAI</td><td>openinference-instrumentation-vertexai</td><td>PyPI Version</td></tr><tr><td>&lt;img src=&quot;https://unpkg.com/@lobehub/icons-static-png@latest/dark/crewai-color.png&quot; height=&quot;14&quot;&gt;</td><td>CrewAI</td><td>openinference-instrumentation-crewai</td><td>PyPI Version</td></tr><tr><td></td><td>Haystack</td><td>openinference-instrumentation-haystack</td><td>PyPI Version</td></tr><tr><td></td><td>LiteLLM</td><td>openinference-instrumentation-litellm</td><td>PyPI Version</td></tr><tr><td>&lt;picture&gt;&lt;source media=&quot;(prefers-color-scheme: dark)&quot; srcset=&quot;https://unpkg.com/@lobehub/icons-static-png@latest/dark/groq.png&quot;&gt;&lt;img height=&quot;14&quot; src=&quot;https://unpkg.com/@lobehub/icons-static-png@latest/light/groq.png&quot;&gt;&lt;/picture&gt;</td><td>Groq</td><td>openinference-instrumentation-groq</td><td>PyPI Version</td></tr><tr><td></td><td>Instructor</td><td>openinference-instrumentation-instructor</td><td>PyPI Version</td></tr><tr><td>&lt;picture&gt;&lt;source media=&quot;(prefers-color-scheme: dark)&quot; srcset=&quot;https://unpkg.com/@lobehub/icons-static-png@latest/dark/anthropic.png&quot;&gt;&lt;img height=&quot;14&quot; src=&quot;https://unpkg.com/@lobehub/icons-static-png@latest/light/anthropic.png&quot;&gt;&lt;/picture&gt;</td><td>Anthropic</td><td>openinference-instrumentation-anthropic</td><td>PyPI Version</td></tr><tr><td>&lt;img src=&quot;https://unpkg.com/@lobehub/icons-static-png@latest/dark/huggingface-color.png&quot; height=&quot;14&quot;&gt;</td><td>Smolagents</td><td>openinference-instrumentation-smolagents</td><td>PyPI Version</td></tr><tr><td></td><td>Agno</td><td>openinference-instrumentation-agno</td><td>PyPI Version</td></tr><tr><td>&lt;picture&gt;&lt;source media=&quot;(prefers-color-scheme: dark)&quot; srcset=&quot;https://unpkg.com/@lobehub/icons-static-png@latest/dark/mcp.png&quot;&gt;&lt;img height=&quot;14&quot; src=&quot;https://unpkg.com/@lobehub/icons-static-png@latest/light/mcp.png&quot;&gt;&lt;/picture&gt;</td><td>MCP</td><td>openinference-instrumentation-mcp</td><td>PyPI Version</td></tr><tr><td>&lt;img src=&quot;https://unpkg.com/@lobehub/icons-static-png@latest/dark/pydanticai-color.png&quot; height=&quot;14&quot;&gt;</td><td>Pydantic AI</td><td>openinference-instrumentation-pydantic-ai</td><td>PyPI Version</td></tr><tr><td></td><td>Autogen AgentChat</td><td>openinference-instrumentation-autogen-agentchat</td><td>PyPI Version</td></tr><tr><td></td><td>Portkey</td><td>openinference-instrumentation-portkey</td><td>PyPI Version</td></tr><tr><td></td><td>Agent Spec</td><td>openinference-instrumentation-agentspec</td><td>PyPI Version</td></tr><tr><td>&lt;img src=&quot;https://unpkg.com/@lobehub/icons-static-png@latest/dark/claude-color.png&quot; height=&quot;14&quot;&gt;</td><td>Claude Agent SDK</td><td>openinference-instrumentation-claude-agent-sdk</td><td>PyPI Version</td></tr></tbody></table></div>

JavaScript Integrations

IntegrationPackageVersion
<picture><source media="(prefers-color-scheme: dark)" srcset="https://unpkg.com/@lobehub/icons-static-png@latest/dark/openai.png"><img height="14" src="https://unpkg.com/@lobehub/icons-static-png@latest/light/openai.png"></picture>[OpenAI](https://arize.com/docs/phoenix/tracing/integrations-tracing/openai-node-sdk)@arizeai/openinference-instrumentation-openai[![NPM Version](https://img.shields.io/npm/v/@arizeai/openinference-instrumentation-openai.svg)](https://www.npmjs.com/package/@arizeai/openinference-instrumentation-openai)
<img src="https://unpkg.com/@lobehub/icons-static-png@latest/dark/langchain-color.png" height="14">[LangChain.js](https://arize.com/docs/phoenix/tracing/integrations-tracing/langchain)@arizeai/openinference-instrumentation-langchain[![NPM Version](https://img.shields.io/npm/v/@arizeai/openinference-instrumentation-langchain.svg)](https://www.npmjs.com/package/@arizeai/openinference-instrumentation-langchain)
<picture><source media="(prefers-color-scheme: dark)" srcset="https://unpkg.com/@lobehub/icons-static-png@latest/dark/vercel.png"><img height="14" src="https://unpkg.com/@lobehub/icons-static-png@latest/light/vercel.png"></picture>[Vercel AI SDK](https://arize.com/docs/phoenix/tracing/integrations-tracing/vercel-ai-sdk)@arizeai/openinference-vercel[![NPM Version](https://img.shields.io/npm/v/@arizeai/openinference-vercel)](https://www.npmjs.com/package/@arizeai/openinference-vercel)
[BeeAI](https://arize.com/docs/phoenix/tracing/integrations-tracing/beeai)@arizeai/openinference-instrumentation-beeai[![NPM Version](https://img.shields.io/npm/v/@arizeai/openinference-vercel)](https://www.npmjs.com/package/@arizeai/openinference-instrumentation-beeai)
<img src="https://unpkg.com/@lobehub/icons-static-png@latest/dark/claude-color.png" height="14">[Claude Agent SDK](https://arize.com/docs/phoenix/integrations/typescript/claude-agent-sdk)@arizeai/openinference-instrumentation-claude-agent-sdk[![NPM Version](https://img.shields.io/npm/v/@arizeai%2Fopeninference-instrumentation-claude-agent-sdk.svg)](https://www.npmjs.com/package/@arizeai/openinference-instrumentation-claude-agent-sdk)
<picture><source media="(prefers-color-scheme: dark)" srcset="https://unpkg.com/@lobehub/icons-static-png@latest/dark/mastra.png"><img height="14" src="https://unpkg.com/@lobehub/icons-static-png@latest/light/mastra.png"></picture>[Mastra](https://arize.com/docs/phoenix/integrations/typescript/mastra)@mastra/arize[![NPM Version](https://img.shields.io/npm/v/@mastra/arize.svg)](https://www.npmjs.com/package/@mastra/arize)
<picture><source media="(prefers-color-scheme: dark)" srcset="https://unpkg.com/@lobehub/icons-static-png@latest/dark/mcp.png"><img height="14" src="https://unpkg.com/@lobehub/icons-static-png@latest/light/mcp.png"></picture>[MCP](https://arize.com/docs/phoenix/integrations/typescript/mcp)@arizeai/openinference-instrumentation-mcp[![NPM Version](https://img.shields.io/npm/v/@arizeai%2Fopeninference-instrumentation-mcp.svg)](https://www.npmjs.com/package/@arizeai/openinference-instrumentation-mcp)

Java Integrations

IntegrationPackageVersion
<img src="https://unpkg.com/@lobehub/icons-static-png@latest/dark/langchain-color.png" height="14">[LangChain4j](https://github.com/Arize-ai/openinference/tree/main/java/instrumentation/openinference-instrumentation-langchain4j)openinference-instrumentation-langchain4j[![Maven Central](https://img.shields.io/maven-central/v/com.arize/openinference-instrumentation-langchain4j.svg)](https://central.sonatype.com/artifact/com.arize/openinference-instrumentation-langchain4j)
SpringAIopeninference-instrumentation-springAI[![Maven Central](https://img.shields.io/maven-central/v/com.arize/openinference-instrumentation-springAI.svg)](https://central.sonatype.com/artifact/com.arize/openinference-instrumentation-springAI)
<img src="https://avatars.githubusercontent.com/u/151681568" height="16">[Arconia](https://docs.arconia.io/arconia/latest/observability/semantic-conventions/openinference/) for Spring AIio.arconia:arconia-openinference-semantic-conventions[![Maven Central](https://img.shields.io/maven-central/v/io.arconia/arconia-openinference-ai-semantic-conventions.svg)](https://central.sonatype.com/artifact/io.arconia/arconia-openinference-ai-semantic-conventions)
🎯 aiskill88 AI 点评 A 级 2026-05-20

Phoenix是成熟的AI可观测解决方案,功能完整、社区活跃。适合生产级AI应用,具有良好的可维护性和扩展性。

📚 实用指南(长尾问题)
适合谁
  • 构建多智能体协作系统的 Agent 开发者
最佳实践
  • Agent 任务先做 dry-run 验证工具调用链,再开启自主执行
常见错误
  • API key 直接提交到 git 仓库(请用 .env 并加入 .gitignore)
  • Python 依赖冲突:建议用 venv / uv 隔离环境
部署方案
  • 云端托管:可放在 Vercel / Railway / Fly.io 等 PaaS 平台
相关搜索
phoenix 中文教程phoenix 安装报错怎么办phoenix Agent 工作流phoenix 与同类工具对比phoenix 最佳实践phoenix 适合谁用

⚡ 核心功能

👥 适合谁
  • 构建多智能体协作系统的 Agent 开发者
⭐ 最佳实践
  • Agent 任务先做 dry-run 验证工具调用链,再开启自主执行
⚠️ 常见错误
  • API key 直接提交到 git 仓库(请用 .env 并加入 .gitignore)
  • Python 依赖冲突:建议用 venv / uv 隔离环境

👥 适合人群

AI 技术爱好者研究人员和学生开发者和工程师技术创业者

🎯 使用场景

  • 本地部署运行,保护数据隐私,满足合规要求
  • 自定义集成到现有系统,扩展技术栈能力
  • 作为开源基础组件进行商业化二次开发

⚖️ 优点与不足

✅ 优点
  • +GitHub 9.6k Star,社区高度认可
  • +完全开源免费,无授权费用
  • +本地部署,数据完全自主可控
  • +开发者社区支持,遇问题可查可问
⚠️ 不足
  • 安装和初始配置可能需要一定技术基础
  • 功能完整性通常不如成熟商业产品
  • 技术支持主要依赖开源社区,响应速度不稳定
⚠️ 使用须知

该工具使用 NOASSERTION 协议,商用场景请仔细阅读协议条款,必要时咨询法律意见。

AI Skill Hub 为第三方内容聚合平台,本页面信息基于公开数据整理,不对工具功能和质量作任何法律背书。

建议在沙箱或测试环境中充分验证后,再部署至生产环境,并做好必要的安全评估。

📄 License 说明

📄 NOASSERTION — 请查阅原始协议条款了解具体使用限制。

🔗 相关工具推荐

📚 相关教程推荐
📰 相关 AI 新闻
🍿 AI 圈相关吃瓜
🗺️ 相关解决方案
🧩 你可能还需要
基于当前 Skill 的能力图谱,自动补全的工具组合

❓ 常见问题 FAQ

支持OpenAI、Anthropic等主流LLM,同时支持本地模型接入
💡 AI Skill Hub 点评

AI Skill Hub 点评:Phoenix LLM可观测性平台 的核心功能完整,质量优秀。对于AI爱好者来说,这是一个值得纳入个人工具库的选择。建议先在非生产环境试用,再逐步推广。

📚 深入学习 Phoenix LLM可观测性平台
查看分步骤安装教程和完整使用指南,快速上手这款工具
🌐 原始信息
原始名称 phoenix
原始描述 开源Prompt模板:AI Observability & Evaluation。⭐9.6k · Python
Topics AI监控可观测性Prompt模板Agent管理性能评估
GitHub https://github.com/Arize-ai/phoenix
License NOASSERTION
语言 Python
🔗 原始来源
🐙 GitHub 仓库  https://github.com/Arize-ai/phoenix 🌐 官方网站  https://arize.com/docs/phoenix

收录时间:2026-05-13 · 更新时间:2026-05-30 · License:NOASSERTION · AI Skill Hub 不对第三方内容的准确性作法律背书。

📺 订阅 AI Skill Hub Daily Telegram 频道
每天 8 条精选 AI Skill、MCP、Agent 与自动化工具推送
加入频道 →