objectiveai-cli-sdk 2.0.5

Library surface for objectiveai-cli: structured JSON Lines output types.
Documentation
1
2
3
4
5
6
7
8
9
10
11
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)]
pub struct LogStreamReady {
    pub log_stream_ready: String,
}