limit-llm 0.0.46

Multi-provider LLM client for Rust with streaming support. Supports Anthropic Claude, OpenAI, and z.ai.
Documentation
1
2
3
4
5
6
7
use limit_llm::ProviderResponseChunk;

#[test]
fn test_reasoning_delta_variant() {
    let chunk = ProviderResponseChunk::ReasoningDelta("test reasoning".to_string());
    assert!(matches!(chunk, ProviderResponseChunk::ReasoningDelta(_)));
}