llmkit 0.1.3

Production-grade LLM client - 100+ providers, 11,000+ models. Pure Rust.
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
//! Video generation providers.
//!
//! This module provides access to AI video generation services.

#[cfg(feature = "runware")]
pub mod runware;

pub mod diffusion_router;

// Re-exports

#[cfg(feature = "runware")]
pub use runware::RunwareProvider;

pub use diffusion_router::DiffusionRouterProvider;