spec-ai 0.6.12

A framework for building AI agents with structured outputs, policy enforcement, and execution tracking
Documentation
pub mod mock;

#[cfg(feature = "openai")]
pub mod openai;

#[cfg(feature = "anthropic")]
pub mod anthropic;

#[cfg(feature = "ollama")]
pub mod ollama;

#[cfg(feature = "mlx")]
pub mod mlx;

#[cfg(feature = "lmstudio")]
pub mod lmstudio;

pub use mock::MockProvider;

#[cfg(feature = "openai")]
pub use openai::OpenAIProvider;

#[cfg(feature = "mlx")]
pub use mlx::MLXProvider;

#[cfg(feature = "lmstudio")]
pub use lmstudio::LMStudioProvider;

#[cfg(feature = "anthropic")]
pub use anthropic::AnthropicProvider;

#[cfg(feature = "ollama")]
pub use ollama::OllamaProvider;