genai 0.6.0

Multi-AI Providers Library for Rust. (OpenAI, Gemini, Anthropic, Ollama, AWS Bedrock, Vertex, Groq, DeepSeek, GitHub Copilot and many more)
Documentation
//! Some support utilities for the tests
//! Note: Must be imported in each test file

#![allow(unused)] // For test support

// region:    --- Modules

mod asserts;
mod data;
mod helpers;
mod seeders;
mod test_error;
pub mod yakbak;

pub use asserts::*;
pub use helpers::*;
pub use seeders::*;
pub use test_error::*;

pub mod common_tests;

// endregion: --- Modules