2026-05-12 15:05:56 +00:00
|
|
|
// GENERATED CODE! DO NOT MODIFY BY HAND!
|
|
|
|
|
|
|
|
|
|
// This file was generated by [ts-rs](https://github.com/Aleph-Alpha/ts-rs). Do not edit this file manually.
|
|
|
|
|
import type { ImageDetail } from "./ImageDetail";
|
|
|
|
|
|
|
|
|
|
/**
|
|
|
|
|
* Responses API compatible content items that can be returned by a tool call.
|
|
|
|
|
* This is a subset of ContentItem with the types we support as function call outputs.
|
|
|
|
|
*/
|
2026-05-21 22:01:21 +00:00
|
|
|
export type FunctionCallOutputContentItem = { "type": "input_text", text: string, } | { "type": "input_image", image_url: string, detail?: ImageDetail, } | { "type": "encrypted_content", encrypted_content: string, };
|