Skip to main content

objectiveai_api/functions/
mod.rs

1//! Function operations.
2//!
3//! Functions are composable scoring pipelines that combine vector completions
4//! and other functions to produce scores.
5
6mod client;
7/// Function execution client and types.
8pub mod executions;
9mod flat_task_profile;
10/// Fetcher for Function definitions from GitHub.
11pub mod function_fetcher;
12/// Fetcher for Profile definitions from GitHub.
13pub mod profile_fetcher;
14/// Profile operations.
15pub mod profiles;
16/// Client for listing functions and getting usage statistics.
17pub mod retrieval_client;
18
19pub use client::*;
20pub use flat_task_profile::*;