llm-connector 0.1.0

A lightweight Rust library for protocol adaptation across multiple LLM providers. Focuses solely on converting between different LLM provider APIs and providing a unified OpenAI-compatible interface.
Documentation
1
2
3
4
5
6
7
//! Provider implementations for different LLM services

mod base;

// Re-export the Provider trait and utilities
pub use base::Provider;
pub use base::utils;