objectiveai-sdk 2.0.6

ObjectiveAI SDK, definitions, and utilities
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
//! Request types for agent completions.
//!
//! - [`AgentCompletionCreateParams`] - The main request structure
//! - [`AgentCompletionNotifyParams`] - Inject a user message into a running completion
//! - [`Message`] - Agent messages (system, user, assistant, tool, developer)
//! - [`ResponseFormat`] - Output format constraints (text, JSON, JSON schema)
//! - [`Provider`] - Provider routing preferences

mod agent_completion_create_params;
mod agent_completion_notify_params;
mod provider;
mod response_format;

pub use agent_completion_create_params::*;
pub use agent_completion_notify_params::*;
pub use provider::*;
pub use response_format::*;