rig-core 0.35.0

An opinionated library for building LLM powered applications.
Documentation
//! Hugging Face integration tests.
//!
//! Run the full provider target with:
//! `cargo test -p rig-core --test huggingface`
//!
//! Run all ignored provider-backed tests serially with:
//! `cargo test -p rig-core --test huggingface -- --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 huggingface huggingface::agent::completion_smoke -- --ignored`

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

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