Skip to main content

objectiveai_cli_sdk/output/notification/agents/
mod.rs

1mod completions;
2
3pub use completions::*;
4
5use serde::{Deserialize, Serialize};
6
7/// Result of `agents get`.
8///
9/// Wire: `{"type":"notification","agent":{...GetAgentResponse...}}`.
10#[derive(Serialize, Deserialize, Debug, Clone)]
11pub struct Agent {
12    pub agent: objectiveai_sdk::agent::response::GetAgentResponse,
13}