kernex-providers 0.3.0

AI backend providers for Kernex (Claude Code, Anthropic, OpenAI, Ollama, OpenRouter, Gemini, MCP)
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
//! kernex-providers: AI backend implementations and tool execution.
//!
//! Provides 6 AI providers (Claude Code CLI, Anthropic, OpenAI, Ollama,
//! OpenRouter, Gemini), a shared tool executor with sandbox enforcement,
//! and an MCP client for external tool integration.

pub mod anthropic;
pub mod claude_code;
pub mod gemini;
pub mod http_retry;
pub(crate) mod mcp_client;
pub mod ollama;
pub mod openai;
pub mod openrouter;
pub(crate) mod tools;