Skip to content

apollo-code


apollo-code / provider-kit/src / ContentPart

Type Alias: ContentPart

ContentPart = { text: string; type: "text"; } | { signature?: string; text: string; type: "thinking"; } | { mime: string; source: AttachmentRef; type: "image"; } | { filename: string; mime: string; source: AttachmentRef; type: "file"; } | { id: string; input: JsonValue; name: string; type: "tool_use"; } | { content: ContentPart[]; isError?: boolean; toolUseId: string; type: "tool_result"; }