objectiveai_sdk/functions/executions/mod.rs
1//! Function execution request and response types.
2//!
3//! Function executions run a Function with a Profile against provided input
4//! data. Supports four combinations of remote/inline Functions and Profiles:
5//!
6//! - Remote Function + Remote Profile (reference both by remote/owner/repository)
7//! - Remote Function + Inline Profile
8//! - Inline Function + Remote Profile
9//! - Inline Function + Inline Profile
10
11pub mod request;
12pub mod response;
13mod retry_token;
14
15pub use retry_token::*;
16
17#[cfg(feature = "http")]
18mod http;
19
20#[cfg(feature = "http")]
21pub use http::*;