1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
//! # agentoven-core
//!
//! Core SDK library for AgentOven — the enterprise agent control plane.
//!
//! This crate provides the building blocks for:
//! - Defining and registering agents (recipes)
//! - Connecting to the AgentOven control plane
//! - Model routing across providers
//! - Observability via OpenTelemetry
//! - Multi-agent workflow orchestration
//!
//! ## Quick Start
//!
//! ```rust,no_run
//! use agentoven_core::{Agent, Ingredient, AgentOvenClient};
//!
//! #[tokio::main]
//! async fn main() -> anyhow::Result<()> {
//! let client = AgentOvenClient::new("http://localhost:8080")?;
//!
//! let agent = Agent::builder("summarizer")
//! .version("1.0.0")
//! .description("Summarizes documents with citations")
//! .ingredient(Ingredient::model("gpt-4o").provider("azure-openai"))
//! .ingredient(Ingredient::model("claude-sonnet").provider("anthropic").role("fallback"))
//! .ingredient(Ingredient::tool("doc-reader").protocol("mcp"))
//! .build();
//!
//! client.register(&agent).await?;
//! client.bake(&agent, "production").await?;
//! Ok(())
//! }
//! ```
// Re-exports
pub use ;
pub use AgentOvenClient;
pub use AgentOvenConfig;
pub use ;
pub use ;
pub use ;
// Re-export a2a-ao types for convenience
pub use a2a_ao;