edgequake-llm 0.5.1

Multi-provider LLM abstraction library with caching, rate limiting, and cost tracking
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
//! Image generation provider implementations.

mod gcp;

pub mod fal;
pub mod gemini;
pub mod mock;
pub mod vertexai;

pub use fal::FalImageGen;
pub use gemini::GeminiImageGenProvider;
pub use mock::MockImageGenProvider;
pub use vertexai::VertexAIImageGen;