everruns 0.17.26

Build and run durable AI agents in Rust — the application-facing entrypoint to the Everruns agentic framework
Documentation
1
2
3
4
5
6
7
8
9
//! Real LLM provider configuration for the facade.
//!
//! Each provider lives behind its own cargo feature so the default facade build
//! stays fully offline — no provider crate, no Reqwest edge. Enable the `openai`
//! feature to configure OpenAI-backed models through
//! [`openai::OpenAI`].

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