aigent 0.7.1

A library, CLI, and Claude plugin for managing agent skill definitions
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
//! LLM provider implementations.
//!
//! Each module provides a struct implementing `LlmProvider` with a
//! `from_env()` constructor that reads API keys from environment variables.

/// Anthropic Claude API provider.
pub mod anthropic;
/// Google Gemini API provider.
pub mod google;
/// Ollama local model provider.
pub mod ollama;
/// OpenAI API provider.
pub mod openai;