sombrax_agentic_core 0.1.1

SombraX Agentic Core (SAC) — a provider-agnostic Rust library for building LLM agents: content-modifying hooks, tool/MCP integration, and context optimization.
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
//! Ollama native provider (cloud + local).
//!
//! Speaks Ollama's own `/api/chat` protocol. A single provider serves both
//! local (`http://localhost:11434`, keyless) and cloud
//! (`https://ollama.com`, `OLLAMA_API_KEY` Bearer) usage — the wire format
//! is identical.

mod client;
mod types;

pub use client::*;
pub use types::*;