mirror of
https://github.com/murashit/codex-panel.git
synced 2026-07-22 17:30:31 +00:00
10 lines
594 B
TypeScript
10 lines
594 B
TypeScript
// 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.
|
|
*/
|
|
export type FunctionCallOutputContentItem = { "type": "input_text", text: string, } | { "type": "input_image", image_url: string, detail?: ImageDetail, } | { "type": "encrypted_content", encrypted_content: string, };
|