Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Original file line number Diff line number Diff line change
Expand Up @@ -5,6 +5,7 @@ namespace tryAGI.OpenAI
{
/// <summary>
/// Specify additional output data to include in the model response. Currently supported values are:<br/>
/// - `web_search_call.results`: Include the search results of the web search tool call.<br/>
/// - `web_search_call.action.sources`: Include the sources of the web search tool call.<br/>
/// - `code_interpreter_call.outputs`: Includes the outputs of python code execution in code interpreter tool call items.<br/>
/// - `computer_call_output.output.image_url`: Include image urls from the computer call output.<br/>
Expand Down Expand Up @@ -44,7 +45,7 @@ public enum IncludeEnum
/// </summary>
WebSearchCallActionSources,
/// <summary>
///
/// Include the search results of the web search tool call.
/// </summary>
WebSearchCallResults,
}
Expand Down
3 changes: 3 additions & 0 deletions src/libs/tryAGI.OpenAI/openapi.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -74257,6 +74257,9 @@ components:
Specify additional output data to include in the model response.
Currently supported values are:

- `web_search_call.results`: Include the search results of the web
search tool call.

- `web_search_call.action.sources`: Include the sources of the web
search tool call.

Expand Down