Skip to main content

objectiveai_sdk/functions/profiles/computations/response/streaming/
object.rs

1use serde::{Deserialize, Serialize};
2use schemars::JsonSchema;
3
4#[derive(Debug, Clone, Copy, PartialEq, Serialize, Deserialize, JsonSchema, arbitrary::Arbitrary)]
5#[schemars(rename = "functions.profiles.computations.response.streaming.Object")]
6pub enum Object {
7    #[serde(rename = "function.profile.computation.chunk")]
8    FunctionProfileComputationChunk,
9}