Skip to main content

Module id

Module id 

Source
Expand description

agents queue read id — fetch one piece of queued content by its prompt_contents.id.

agents queue list emits a content: ResponseContent field on each item (One(i64) or Many(Vec<i64>)) — the same shape RichContent decomposes to. This leaf takes one such id and returns the typed payload directly as a crate::agent::completions::message::RichContentPart, so the wire form for queue content is bit-identical to a rich-content part of the same kind. No fork between queue media and message media at the type level.

Modules§

request_schema
response_schema

Structs§

Args
Command
Request

Enums§

Path
Schema

Functions§

execute
execute_transform

Type Aliases§

Response
The typed payload of one prompt_contents.id. Aliased directly to the SDK RichContentPart so the wire shape matches rich-content parts exactly — tagged by type with text, image_url, input_audio, input_video, video_url, or file. Queue content production today never emits the input_video variant (the walker stores both InputVideo and VideoUrl parts as prompt_videos rows reading back as video_url), but the type stays unconstrained for forward compatibility.