-
Notifications
You must be signed in to change notification settings - Fork 3.5k
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
Merged
Merged
Changes from all commits
Commits
Show all changes
8 commits
Select commit
Hold shift + click to select a range
6020f64
Add 9 Arize LLM observability skills
jimbobbennett a8e3a88
Add 3 Phoenix AI observability skills
jimbobbennett f2a0e9f
Ignoring intentional bad spelling
jimbobbennett d18e2c8
Fix CI: remove .DS_Store from generated skills README and add codespe…
jimbobbennett cc1ad7c
Add arize-ax and phoenix plugins
jimbobbennett 8c00819
Fix skill folder structures to match source repos
jimbobbennett 3a1bc21
Fixing file locations
jimbobbennett 9ffd927
Fixing readme
jimbobbennett File filter
Filter by extension
Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
There are no files selected for viewing
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| 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/" | ||
| ] | ||
| } | ||
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| 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. | |
Oops, something went wrong.
Oops, something went wrong.
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
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.