llm-kernel 0.2.5

Foundation library for Rust AI-native apps — provider catalog, LLM client, MCP server, search, telemetry, and safety
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
//! Dynamic model discovery from remote sources.
//!
//! Fetches model listings from [models.dev](https://github.com/anomalyco/models.dev),
//! Ollama instances, and OpenAI-compatible endpoints. Results are cached locally.

pub mod models_dev;
pub mod ollama;
pub mod openai_compat;

pub use models_dev::{ModelEntry, ModelLimits, ModelsDevPayload, fetch_and_cache, load_cache};
pub use ollama::fetch_ollama_models;
pub use openai_compat::fetch_openai_compatible_models;