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
//! MiniMax provider module (Anthropic-compatible API).
//!
//! Provides access to MiniMax M2.x models via the Anthropic Messages API.

pub mod client;
pub mod types;

pub use client::{MinimaxClient, MinimaxClientBuilder, MinimaxCompletionModel};
pub use types::*;