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
12
13
mod completions;

pub use completions::*;

use serde::{Deserialize, Serialize};

/// Result of `agents get`.
///
/// Wire: `{"type":"notification","agent":{...GetAgentResponse...}}`.
#[derive(Serialize, Deserialize, Debug, Clone)]
pub struct Agent {
    pub agent: objectiveai_sdk::agent::response::GetAgentResponse,
}