zai-rs 0.6.0

Type-safe async Rust SDK for Zhipu AI (BigModel) APIs
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
//! Text-to-image generation.

/// Request builder and client for image generation.
mod data;
/// Supported image-model ids.
mod image_model;
/// Request body types.
mod image_request;
/// Response body types.
mod image_response;

pub use data::*;
pub use image_model::*;
pub use image_request::*;
pub use image_response::*;