-
Notifications
You must be signed in to change notification settings - Fork 3.2k
Add Arize and Phoenix LLM observability skills #1204
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
base: staged
Are you sure you want to change the base?
Changes from all commits
c6382d6
bcaf09f
a9d50a5
e7a25c3
968e1c2
6726b19
File filter
Filter by extension
Conversations
Jump to
Diff view
Diff view
There are no files selected for viewing
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| @@ -0,0 +1,32 @@ | ||
| { | ||
| "name": "arize-ax", | ||
| "description": "Arize AX platform skills for LLM observability, evaluation, and optimization. Includes trace export, instrumentation, datasets, experiments, evaluators, AI provider integrations, annotations, prompt optimization, and deep linking to the Arize UI.", | ||
| "version": "1.0.0", | ||
| "author": { | ||
| "name": "Arize AI" | ||
| }, | ||
| "repository": "https://github.com/github/awesome-copilot", | ||
| "license": "MIT", | ||
| "keywords": [ | ||
| "arize", | ||
| "llm", | ||
| "observability", | ||
| "tracing", | ||
| "evaluation", | ||
| "instrumentation", | ||
| "datasets", | ||
| "experiments", | ||
| "prompt-optimization" | ||
| ], | ||
| "skills": [ | ||
| "./skills/arize-ai-provider-integration/", | ||
| "./skills/arize-annotation/", | ||
| "./skills/arize-dataset/", | ||
| "./skills/arize-evaluator/", | ||
| "./skills/arize-experiment/", | ||
| "./skills/arize-instrumentation/", | ||
| "./skills/arize-link/", | ||
| "./skills/arize-prompt-optimization/", | ||
| "./skills/arize-trace/" | ||
| ] | ||
| } | ||
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| @@ -0,0 +1,26 @@ | ||
| # Arize AX Plugin | ||
|
|
||
| Arize AX platform skills for LLM observability, evaluation, and optimization. Includes trace export, instrumentation, datasets, experiments, evaluators, AI provider integrations, annotations, prompt optimization, and deep linking to the Arize UI. | ||
|
|
||
| ## Installation | ||
|
|
||
| ```bash | ||
| # Using Copilot CLI | ||
| copilot plugin install arize-ax@awesome-copilot | ||
| ``` | ||
|
|
||
| ## What's Included | ||
|
|
||
| ### Skills | ||
|
|
||
| | Skill | Description | | ||
| |-------|-------------| | ||
| | `arize-trace` | Export and analyze Arize traces and spans for debugging LLM applications using the ax CLI. | | ||
| | `arize-instrumentation` | Add Arize AX tracing to applications using a two-phase agent-assisted workflow. | | ||
| | `arize-dataset` | Create, manage, and query versioned evaluation datasets using the ax CLI. | | ||
| | `arize-experiment` | Run experiments against datasets and compare results using the ax CLI. | | ||
| | `arize-evaluator` | Create and run LLM-as-judge evaluators for automated scoring of spans and experiments. | | ||
| | `arize-ai-provider-integration` | Store and manage LLM provider credentials for use with evaluators. | | ||
| | `arize-annotation` | Create annotation configs and bulk-apply human feedback labels to spans. | | ||
| | `arize-prompt-optimization` | Optimize LLM prompts using production trace data, evaluations, and annotations. | | ||
| | `arize-link` | Generate deep links to the Arize UI for traces, spans, sessions, datasets, and more. | |
| Original file line number | Diff line number | Diff line change | ||||||||||||
|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|
| @@ -0,0 +1,25 @@ | ||||||||||||||
| { | ||||||||||||||
| "name": "phoenix", | ||||||||||||||
| "description": "Phoenix AI observability skills for LLM application debugging, evaluation, and tracing. Includes CLI debugging tools, LLM evaluation workflows, and OpenInference tracing instrumentation.", | ||||||||||||||
| "version": "1.0.0", | ||||||||||||||
| "author": { | ||||||||||||||
| "name": "Arize AI" | ||||||||||||||
| }, | ||||||||||||||
| "repository": "https://github.com/github/awesome-copilot", | ||||||||||||||
| "license": "MIT", | ||||||||||||||
| "keywords": [ | ||||||||||||||
| "phoenix", | ||||||||||||||
| "arize", | ||||||||||||||
| "llm", | ||||||||||||||
| "observability", | ||||||||||||||
| "tracing", | ||||||||||||||
| "evaluation", | ||||||||||||||
| "openinference", | ||||||||||||||
| "instrumentation" | ||||||||||||||
| ], | ||||||||||||||
| "skills": [ | ||||||||||||||
| "./skills/phoenix-cli/", | ||||||||||||||
| "./skills/phoenix-evals/", | ||||||||||||||
| "./skills/phoenix-tracing/" | ||||||||||||||
|
Comment on lines
+21
to
+23
|
||||||||||||||
| "./skills/phoenix-cli/", | |
| "./skills/phoenix-evals/", | |
| "./skills/phoenix-tracing/" | |
| "../../../skills/phoenix-cli/", | |
| "../../../skills/phoenix-evals/", | |
| "../../../skills/phoenix-tracing/" |
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| @@ -0,0 +1,20 @@ | ||
| # Phoenix Plugin | ||
|
|
||
| Phoenix AI observability skills for LLM application debugging, evaluation, and tracing. Includes CLI debugging tools, LLM evaluation workflows, and OpenInference tracing instrumentation. | ||
|
|
||
| ## Installation | ||
|
|
||
| ```bash | ||
| # Using Copilot CLI | ||
| copilot plugin install phoenix@awesome-copilot | ||
| ``` | ||
|
|
||
| ## What's Included | ||
|
|
||
| ### Skills | ||
|
|
||
| | Skill | Description | | ||
| |-------|-------------| | ||
| | `phoenix-cli` | Debug LLM applications using the Phoenix CLI. Fetch traces, analyze errors, review experiments, inspect datasets, and query the GraphQL API. | | ||
| | `phoenix-evals` | Build and run evaluators for AI/LLM applications using Phoenix. | | ||
| | `phoenix-tracing` | OpenInference semantic conventions and instrumentation for Phoenix AI observability. | |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
The plugin.json
skillsentries use paths like./skills/arize-trace/. Unless this plugin includes its ownskills/folder colocated with the plugin.json, these relative paths will point to non-existent locations. Please verify the expected resolution base for plugin item paths and adjust these skill paths accordingly so the plugin loads its skills.