Share via


Includable Enum

Definition

Specify additional output data to include in the model response. Currently supported values are:

  • code_interpreter_call.outputs: Includes the outputs of python code execution in code interpreter tool call items.
  • computer_call_output.output.image_url: Include image urls from the computer call output.
  • file_search_call.results: Include the search results of the file search tool call.
  • message.input_image.image_url: Include image urls from the input message.
  • message.output_text.logprobs: Include logprobs with assistant messages.
  • reasoning.encrypted_content: Includes an encrypted version of reasoning tokens in reasoning item outputs. This enables reasoning items to be used in multi-turn conversations when using the Responses API statelessly (like when the store parameter is set to false, or when an organization is enrolled in the zero data retention program).
public enum Includable
type Includable = 
Public Enum Includable
Inheritance
Includable

Fields

Name Value Description
CodeInterpreterCallOutputs 0

code_interpreter_call.outputs.

ComputerCallOutputOutputImageUrl 1

computer_call_output.output.image_url.

FileSearchCallResults 2

file_search_call.results.

MessageInputImageImageUrl 3

message.input_image.image_url.

MessageOutputTextLogprobs 4

message.output_text.logprobs.

ReasoningEncryptedContent 5

reasoning.encrypted_content.

WebSearchCallResults 6

web_search_call.results.

WebSearchCallActionSources 7

web_search_call.action.sources.

MemorySearchCallResults 8

memory_search_call.results.

Applies to