chipp 0.3.0

Rust client for the Chipp.ai API - OpenAI-compatible chat completions with streaming support
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
//! Unit tests for chipp-rs SDK
//!
//! Tests are organized by functionality:
//! - client_new_tests: ChippClient::new() constructor tests
//! - chat_tests: ChippClient::chat() method tests
//! - streaming_tests: ChippClient::chat_stream() method tests
//! - security_tests: Security-critical behavior tests (API key redaction, etc.)

mod chat_tests;
mod client_health_tests;
mod client_new_tests;
mod config_tests;
mod security_tests;
mod streaming_tests;
mod types_tests;