edgequake-llm 0.10.0

Multi-provider LLM abstraction library with caching, rate limiting, and cost tracking
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
//! Per-provider discovery implementations.
//!
//! Each provider maps its native API response or static catalog
//! into `Vec<DiscoveredModel>`. Zero heuristics — capabilities
//! come from API responses, cited docs, or explicit "unknown".

pub mod anthropic;
#[cfg(feature = "bedrock")]
pub mod bedrock;
pub mod gemini;
pub mod lmstudio;
pub mod mistral;
pub mod nvidia;
pub mod ollama;
pub mod openai;
pub mod openai_compat;
pub mod openrouter;
pub mod xai;