objectiveai-sdk 2.0.6

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

/// Wire shape for `<scope> instructions get` (and the global
/// `instructions get`). The body is the instruction text the user is
/// meant to follow plus the generated instructions ID line.
#[derive(Serialize, Deserialize, Debug, Clone, JsonSchema)]
#[schemars(rename = "cli.output.notification.Instructions")]
pub struct Instructions {
    pub instructions: String,
}