objectiveai-sdk 2.0.6

ObjectiveAI SDK, definitions, and utilities
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
use schemars::JsonSchema;
use serde::{Deserialize, Serialize};

/// Emitted mid-stream by long-running `*/create` commands once a log
/// id has been allocated and the log file is available. Replaces the
/// prior `"Logs ID: ..."` plaintext sentinel.
///
/// Wire: `{"type":"notification","log_stream_ready":"<id>"}`.
#[derive(Serialize, Deserialize, Debug, Clone, JsonSchema)]
#[schemars(rename = "cli.output.notification.LogStreamReady")]
pub struct LogStreamReady {
    pub log_stream_ready: String,
}