agent-config
Installation
SKILL.md
Agent Configuration (Blueprints)
Externalize tunable parameters into managed, version-controlled configs.
| Concept | Description |
|---|---|
| Config Dataclass | Subclass of opik.AgentConfig with typed fields, no defaults |
| Blueprint | Immutable snapshot of a config version |
| Environment Tag | Label (dev/staging/prod) pointing to a Blueprint |
| MaskID | Temporary override for A/B testing (used by Optimizer) |
Define and Publish
from typing import Annotated
import opik