mirror of
https://github.com/github/awesome-copilot.git
synced 2026-04-11 02:35:55 +00:00
* Add 9 Arize LLM observability skills Add skills for Arize AI platform covering trace export, instrumentation, datasets, experiments, evaluators, AI provider integrations, annotations, prompt optimization, and deep linking to the Arize UI. Co-Authored-By: Claude Opus 4.6 (1M context) <noreply@anthropic.com> * Add 3 Phoenix AI observability skills Add skills for Phoenix (Arize open-source) covering CLI debugging, LLM evaluation workflows, and OpenInference tracing/instrumentation. Co-Authored-By: Claude Opus 4.6 (1M context) <noreply@anthropic.com> * Ignoring intentional bad spelling * Fix CI: remove .DS_Store from generated skills README and add codespell ignore Remove .DS_Store artifact from winmd-api-search asset listing in generated README.skills.md so it matches the CI Linux build output. Add queston to codespell ignore list (intentional misspelling example in arize-dataset skill). Co-Authored-By: Claude Opus 4.6 (1M context) <noreply@anthropic.com> * Add arize-ax and phoenix plugins Bundle the 9 Arize skills into an arize-ax plugin and the 3 Phoenix skills into a phoenix plugin for easier installation as single packages. Co-Authored-By: Claude Opus 4.6 (1M context) <noreply@anthropic.com> * Fix skill folder structures to match source repos Move arize supporting files from references/ to root level and rename phoenix references/ to rules/ to exactly match the original source repository folder structures. Co-Authored-By: Claude Opus 4.6 (1M context) <noreply@anthropic.com> * Fixing file locations * Fixing readme --------- Co-authored-by: Claude Opus 4.6 (1M context) <noreply@anthropic.com>
79 lines
1.6 KiB
Markdown
79 lines
1.6 KiB
Markdown
# Experiments: Running Experiments in Python
|
|
|
|
Execute experiments with `run_experiment`.
|
|
|
|
## Basic Usage
|
|
|
|
```python
|
|
from phoenix.client import Client
|
|
from phoenix.client.experiments import run_experiment
|
|
|
|
client = Client()
|
|
dataset = client.datasets.get_dataset(name="qa-test-v1")
|
|
|
|
def my_task(example):
|
|
return call_llm(example.input["question"])
|
|
|
|
def exact_match(output, expected):
|
|
return 1.0 if output.strip().lower() == expected["answer"].strip().lower() else 0.0
|
|
|
|
experiment = run_experiment(
|
|
dataset=dataset,
|
|
task=my_task,
|
|
evaluators=[exact_match],
|
|
experiment_name="qa-experiment-v1",
|
|
)
|
|
```
|
|
|
|
## Task Functions
|
|
|
|
```python
|
|
# Basic task
|
|
def task(example):
|
|
return call_llm(example.input["question"])
|
|
|
|
# With context (RAG)
|
|
def rag_task(example):
|
|
return call_llm(f"Context: {example.input['context']}\nQ: {example.input['question']}")
|
|
```
|
|
|
|
## Evaluator Parameters
|
|
|
|
| Parameter | Access |
|
|
| --------- | ------ |
|
|
| `output` | Task output |
|
|
| `expected` | Example expected output |
|
|
| `input` | Example input |
|
|
| `metadata` | Example metadata |
|
|
|
|
## Options
|
|
|
|
```python
|
|
experiment = run_experiment(
|
|
dataset=dataset,
|
|
task=my_task,
|
|
evaluators=evaluators,
|
|
experiment_name="my-experiment",
|
|
dry_run=3, # Test with 3 examples
|
|
repetitions=3, # Run each example 3 times
|
|
)
|
|
```
|
|
|
|
## Results
|
|
|
|
```python
|
|
print(experiment.aggregate_scores)
|
|
# {'accuracy': 0.85, 'faithfulness': 0.92}
|
|
|
|
for run in experiment.runs:
|
|
print(run.output, run.scores)
|
|
```
|
|
|
|
## Add Evaluations Later
|
|
|
|
```python
|
|
from phoenix.client.experiments import evaluate_experiment
|
|
|
|
evaluate_experiment(experiment=experiment, evaluators=[new_evaluator])
|
|
```
|