agy-bridge 0.10.0

Async Rust bridge and native runtime for the Google Antigravity SDK
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
//! Multimodal content types for chat input (text, image, document, audio, video).

#[cfg(feature = "python")]
mod serialization;
mod types;

pub mod media;

pub use media::*;
#[cfg(feature = "python")]
pub(crate) use serialization::content_to_json;
pub use types::*;