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;
13
14#[cfg(feature = "http")]
15mod http;
16
17#[cfg(feature = "http")]
18pub use http::*;