Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
11 changes: 11 additions & 0 deletions python/packages/core/AGENTS.md
Original file line number Diff line number Diff line change
Expand Up @@ -217,6 +217,17 @@ agent_framework/
hosts remain responsible for authorizing and tenant-scoping access to any shared checkpoint adapter.
- **Orchestrators**: `SequentialOrchestrator`, `ConcurrentOrchestrator`, `GroupChatOrchestrator`, `MagenticOrchestrator`, `HandoffOrchestrator`

## Evaluation (`_evaluation.py`)

- Core owns provider-neutral evaluation types, local evaluators and checks, `EvalItem` construction, and the
`evaluate_agent` / `evaluate_workflow` orchestration functions.
- Provider packages own their service-specific evaluator implementations and wire serialization. Core evaluation
code must not emit a provider's request schema. The deprecated `AgentEvalConverter` remains as a temporary
compatibility shim for released Foundry packages whose declared core range still imports it; new code must not use
the shim.
- Core orchestration builds `EvalItem` instances through private helpers; callers needing manual control construct
the public `EvalItem` directly.

## Built-in Providers

### OpenAI (`openai/`)
Expand Down
Loading
Loading