gglib_core/contracts/http/hf.rs
1//! Hugging Face API route constants.
2
3/// Search/browse HF models endpoint.
4pub const SEARCH_PATH: &str = "/api/hf/search";
5
6/// Get available quantizations for a model.
7/// Use with format!() to interpolate `model_id`.
8pub const QUANTIZATIONS_PATH: &str = "/api/hf/quantizations";
9
10/// Check tool support for a model.
11/// Use with format!() to interpolate `model_id`.
12pub const TOOL_SUPPORT_PATH: &str = "/api/hf/tool-support";