octolib 0.4.2

Self-sufficient AI provider library with multi-provider support, embedding models, model validation, and cost tracking
Documentation
// Copyright 2025 Muvon Un Limited
//
// Licensed under the Apache License, Version 2.0 (the "License");
// you may not use this file except in compliance with the License.
// You may obtain a copy of the License at
//
//     http://www.apache.org/licenses/LICENSE-2.0
//
// Unless required by applicable law or agreed to in writing, software
// distributed under the License is distributed on an "AS IS" BASIS,
// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
// See the License for the specific language governing permissions and
// limitations under the License.

//! AI provider implementations

pub mod amazon;
pub mod anthropic;
pub mod cloudflare;
pub mod deepseek;
pub mod google;
pub mod minimax;
pub mod openai;
pub mod openrouter;
pub mod zai;

// Re-export provider implementations
pub use amazon::AmazonBedrockProvider;
pub use anthropic::AnthropicProvider;
pub use cloudflare::CloudflareWorkersAiProvider;
pub use deepseek::DeepSeekProvider;
pub use google::GoogleVertexProvider;
pub use minimax::MinimaxProvider;
pub use openai::OpenAiProvider;
pub use openrouter::OpenRouterProvider;
pub use zai::ZaiProvider;