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
//! Provider-neutral runner contracts for SIM model fabrics.
//!
//! This crate defines the shared in-process objects used by SIM model runners:
//!
//! - [`ModelRequest`] for normalized task and transcript input
//! - [`ModelResponse`] for final content and usage output
//! - [`ModelEvent`] and [`ModelEventSink`] for streaming progress
//! - [`ModelCard`] and [`ModelBid`] for routing and selection
//! - [`ModelRunner`] for executable runner implementations
//!
//! Higher-level crates install concrete runners, policies, markets, and
//! agent-model adapters on top of these contracts.
/// Cookbook recipes embedded from this crate's `recipes/` directory.
pub static RECIPES: EmbeddedDir =
include!;
pub use ;
pub use effective_ceiling;
pub use ;
pub use ;
pub use shape_to_grammar;
pub use ;
pub use ;
pub use terminal_model_content;