objectiveai-sdk 2.2.1

ObjectiveAI SDK, definitions, and utilities
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
//! Function execution request and response types.
//!
//! Function executions run a Function with a Profile against provided input
//! data. Supports four combinations of remote/inline Functions and Profiles:
//!
//! - Remote Function + Remote Profile (reference both by remote/owner/repository)
//! - Remote Function + Inline Profile
//! - Inline Function + Remote Profile
//! - Inline Function + Inline Profile

pub mod request;
pub mod response;

#[cfg(feature = "http")]
mod http;

#[cfg(feature = "http")]
pub use http::*;