rig-core 0.35.0

An opinionated library for building LLM powered applications.
Documentation
//! Cohere integration tests.
//!
//! Run the full provider target with:
//! `cargo test -p rig-core --test cohere`
//!
//! Run all ignored provider-backed tests serially with:
//! `cargo test -p rig-core --test cohere -- --ignored --test-threads=1`
//!
//! Use `--test-threads=1` because these ignored tests talk to real model
//! backends, and running them concurrently creates avoidable rate-limit,
//! quota, and load-related flakiness.
//!
//! Run a single ignored smoke test with:
//! `cargo test -p rig-core --test cohere cohere::agent::completion_smoke -- --ignored`

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

#[path = "cohere/mod.rs"]
mod cohere;