Skip to main content

objectiveai_sdk/laboratories/executions/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 = "laboratories.executions.response.streaming.Object")]
6pub enum Object {
7    #[serde(rename = "laboratory.execution.chunk")]
8    LaboratoryExecutionChunk,
9}