clex_llm 0.4.0

Generates clex from input format and constraints in natural language using LLM.
Documentation
1
2
3
4
5
6
7
pub fn is_gemini_quota_error(body: &str) -> bool {
    let lower = body.to_lowercase();
    body.contains("\"code\": 429")
        || body.contains("RESOURCE_EXHAUSTED")
        || lower.contains("rate limit")
        || lower.contains("quota")
}