Skip to main content

objectiveai_sdk/agent/mock/
continuation.rs

1use schemars::JsonSchema;
2use serde::{Deserialize, Serialize};
3
4#[derive(Debug, Clone, PartialEq, Serialize, Deserialize, JsonSchema)]
5#[schemars(rename = "agent.mock.Continuation")]
6pub struct Continuation {
7    pub upstream: super::Upstream,
8    pub messages: Vec<super::super::completions::message::Message>,
9    pub mcp_sessions: indexmap::IndexMap<String, String>,
10}