229 lines
7.4 KiB
Rust
229 lines
7.4 KiB
Rust
use serde::Deserialize;
|
|
use serde::Serialize;
|
|
use ts_rs::TS;
|
|
|
|
/// Top-level JSONL events emitted by codex exec
|
|
#[derive(Debug, Clone, Serialize, Deserialize, PartialEq, Eq, TS)]
|
|
#[serde(tag = "type")]
|
|
pub enum ThreadEvent {
|
|
/// Emitted when a new thread is started as the first event.
|
|
#[serde(rename = "thread.started")]
|
|
ThreadStarted(ThreadStartedEvent),
|
|
/// Emitted when a turn is started by sending a new prompt to the model.
|
|
/// A turn encompasses all events that happen while agent is processing the prompt.
|
|
#[serde(rename = "turn.started")]
|
|
TurnStarted(TurnStartedEvent),
|
|
/// Emitted when a turn is completed. Typically right after the assistant's response.
|
|
#[serde(rename = "turn.completed")]
|
|
TurnCompleted(TurnCompletedEvent),
|
|
/// Indicates that a turn failed with an error.
|
|
#[serde(rename = "turn.failed")]
|
|
TurnFailed(TurnFailedEvent),
|
|
/// Emitted when a new item is added to the thread. Typically the item will be in an "in progress" state.
|
|
#[serde(rename = "item.started")]
|
|
ItemStarted(ItemStartedEvent),
|
|
/// Emitted when an item is updated.
|
|
#[serde(rename = "item.updated")]
|
|
ItemUpdated(ItemUpdatedEvent),
|
|
/// Signals that an item has reached a terminal state—either success or failure.
|
|
#[serde(rename = "item.completed")]
|
|
ItemCompleted(ItemCompletedEvent),
|
|
/// Represents an unrecoverable error emitted directly by the event stream.
|
|
#[serde(rename = "error")]
|
|
Error(ThreadErrorEvent),
|
|
}
|
|
|
|
#[derive(Debug, Clone, Serialize, Deserialize, PartialEq, Eq, TS)]
|
|
pub struct ThreadStartedEvent {
|
|
/// The identified of the new thread. Can be used to resume the thread later.
|
|
pub thread_id: String,
|
|
}
|
|
|
|
#[derive(Debug, Clone, Serialize, Deserialize, PartialEq, Eq, TS, Default)]
|
|
|
|
pub struct TurnStartedEvent {}
|
|
|
|
#[derive(Debug, Clone, Serialize, Deserialize, PartialEq, Eq, TS)]
|
|
pub struct TurnCompletedEvent {
|
|
pub usage: Usage,
|
|
}
|
|
|
|
#[derive(Debug, Clone, Serialize, Deserialize, PartialEq, Eq, TS)]
|
|
pub struct TurnFailedEvent {
|
|
pub error: ThreadErrorEvent,
|
|
}
|
|
|
|
/// Describes the usage of tokens during a turn.
|
|
#[derive(Debug, Clone, Serialize, Deserialize, PartialEq, Eq, TS, Default)]
|
|
pub struct Usage {
|
|
/// The number of input tokens used during the turn.
|
|
pub input_tokens: u64,
|
|
/// The number of cached input tokens used during the turn.
|
|
pub cached_input_tokens: u64,
|
|
/// The number of output tokens used during the turn.
|
|
pub output_tokens: u64,
|
|
}
|
|
|
|
#[derive(Debug, Clone, Serialize, Deserialize, PartialEq, Eq, TS)]
|
|
pub struct ItemStartedEvent {
|
|
pub item: ThreadItem,
|
|
}
|
|
|
|
#[derive(Debug, Clone, Serialize, Deserialize, PartialEq, Eq, TS)]
|
|
pub struct ItemCompletedEvent {
|
|
pub item: ThreadItem,
|
|
}
|
|
|
|
#[derive(Debug, Clone, Serialize, Deserialize, PartialEq, Eq, TS)]
|
|
pub struct ItemUpdatedEvent {
|
|
pub item: ThreadItem,
|
|
}
|
|
|
|
/// Fatal error emitted by the stream.
|
|
#[derive(Debug, Clone, Serialize, Deserialize, PartialEq, Eq, TS)]
|
|
pub struct ThreadErrorEvent {
|
|
pub message: String,
|
|
}
|
|
|
|
/// Canonical representation of a thread item and its domain-specific payload.
|
|
#[derive(Debug, Clone, Serialize, Deserialize, PartialEq, Eq, TS)]
|
|
pub struct ThreadItem {
|
|
pub id: String,
|
|
#[serde(flatten)]
|
|
pub details: ThreadItemDetails,
|
|
}
|
|
|
|
/// Typed payloads for each supported thread item type.
|
|
#[derive(Debug, Clone, Serialize, Deserialize, PartialEq, Eq, TS)]
|
|
#[serde(tag = "type", rename_all = "snake_case")]
|
|
pub enum ThreadItemDetails {
|
|
/// Response from the agent.
|
|
/// Either a natural-language response or a JSON string when structured output is requested.
|
|
AgentMessage(AgentMessageItem),
|
|
/// Agent's reasoning summary.
|
|
Reasoning(ReasoningItem),
|
|
/// Tracks a command executed by the agent. The item starts when the command is
|
|
/// spawned, and completes when the process exits with an exit code.
|
|
CommandExecution(CommandExecutionItem),
|
|
/// Represents a set of file changes by the agent. The item is emitted only as a
|
|
/// completed event once the patch succeeds or fails.
|
|
FileChange(FileChangeItem),
|
|
/// Represents a call to an MCP tool. The item starts when the invocation is
|
|
/// dispatched and completes when the MCP server reports success or failure.
|
|
McpToolCall(McpToolCallItem),
|
|
/// Captures a web search request. It starts when the search is kicked off
|
|
/// and completes when results are returned to the agent.
|
|
WebSearch(WebSearchItem),
|
|
/// Tracks the agent's running to-do list. It starts when the plan is first
|
|
/// issued, updates as steps change state, and completes when the turn ends.
|
|
TodoList(TodoListItem),
|
|
/// Describes a non-fatal error surfaced as an item.
|
|
Error(ErrorItem),
|
|
}
|
|
|
|
/// Response from the agent.
|
|
/// Either a natural-language response or a JSON string when structured output is requested.
|
|
#[derive(Debug, Clone, Serialize, Deserialize, PartialEq, Eq, TS)]
|
|
pub struct AgentMessageItem {
|
|
pub text: String,
|
|
}
|
|
|
|
/// Agent's reasoning summary.
|
|
#[derive(Debug, Clone, Serialize, Deserialize, PartialEq, Eq, TS)]
|
|
pub struct ReasoningItem {
|
|
pub text: String,
|
|
}
|
|
|
|
/// The status of a command execution.
|
|
#[derive(Debug, Clone, Serialize, Deserialize, PartialEq, Eq, Default, TS)]
|
|
#[serde(rename_all = "snake_case")]
|
|
pub enum CommandExecutionStatus {
|
|
#[default]
|
|
InProgress,
|
|
Completed,
|
|
Failed,
|
|
}
|
|
|
|
/// A command executed by the agent.
|
|
#[derive(Debug, Clone, Serialize, Deserialize, PartialEq, Eq, TS)]
|
|
pub struct CommandExecutionItem {
|
|
pub command: String,
|
|
pub aggregated_output: String,
|
|
#[serde(skip_serializing_if = "Option::is_none")]
|
|
pub exit_code: Option<i32>,
|
|
pub status: CommandExecutionStatus,
|
|
}
|
|
|
|
/// A set of file changes by the agent.
|
|
#[derive(Debug, Clone, Serialize, Deserialize, PartialEq, Eq, TS)]
|
|
pub struct FileUpdateChange {
|
|
pub path: String,
|
|
pub kind: PatchChangeKind,
|
|
}
|
|
|
|
/// The status of a file change.
|
|
#[derive(Debug, Clone, Serialize, Deserialize, PartialEq, Eq, TS)]
|
|
#[serde(rename_all = "snake_case")]
|
|
pub enum PatchApplyStatus {
|
|
Completed,
|
|
Failed,
|
|
}
|
|
|
|
/// A set of file changes by the agent.
|
|
#[derive(Debug, Clone, Serialize, Deserialize, PartialEq, Eq, TS)]
|
|
pub struct FileChangeItem {
|
|
pub changes: Vec<FileUpdateChange>,
|
|
pub status: PatchApplyStatus,
|
|
}
|
|
|
|
/// Indicates the type of the file change.
|
|
#[derive(Debug, Clone, Serialize, Deserialize, PartialEq, Eq, TS)]
|
|
#[serde(rename_all = "snake_case")]
|
|
pub enum PatchChangeKind {
|
|
Add,
|
|
Delete,
|
|
Update,
|
|
}
|
|
|
|
/// The status of an MCP tool call.
|
|
#[derive(Debug, Clone, Serialize, Deserialize, PartialEq, Eq, Default, TS)]
|
|
#[serde(rename_all = "snake_case")]
|
|
pub enum McpToolCallStatus {
|
|
#[default]
|
|
InProgress,
|
|
Completed,
|
|
Failed,
|
|
}
|
|
|
|
/// A call to an MCP tool.
|
|
#[derive(Debug, Clone, Serialize, Deserialize, PartialEq, Eq, TS)]
|
|
pub struct McpToolCallItem {
|
|
pub server: String,
|
|
pub tool: String,
|
|
pub status: McpToolCallStatus,
|
|
}
|
|
|
|
/// A web search request.
|
|
#[derive(Debug, Clone, Serialize, Deserialize, PartialEq, Eq, TS)]
|
|
pub struct WebSearchItem {
|
|
pub query: String,
|
|
}
|
|
|
|
/// An error notification.
|
|
#[derive(Debug, Clone, Serialize, Deserialize, PartialEq, Eq, TS)]
|
|
pub struct ErrorItem {
|
|
pub message: String,
|
|
}
|
|
|
|
/// An item in agent's to-do list.
|
|
#[derive(Debug, Clone, Serialize, Deserialize, PartialEq, Eq, TS)]
|
|
pub struct TodoItem {
|
|
pub text: String,
|
|
pub completed: bool,
|
|
}
|
|
|
|
#[derive(Debug, Clone, Serialize, Deserialize, PartialEq, Eq, TS)]
|
|
pub struct TodoListItem {
|
|
pub items: Vec<TodoItem>,
|
|
}
|