rig-core 0.36.0

An opinionated library for building LLM powered applications.
Documentation
#![allow(
    clippy::expect_used,
    clippy::indexing_slicing,
    clippy::panic,
    clippy::unwrap_used,
    clippy::unreachable
)]

//! Core integration tests that are not provider-specific.
//!
//! Run the target with:
//! `cargo test -p rig-core --test core`
//!
//! Run a single test with:
//! `cargo test -p rig-core --test core core::prompt_response_messages::standard_prompt_returns_string`

#[path = "core/mod.rs"]
mod core;
#[path = "common/reasoning.rs"]
mod reasoning;