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 @@ -9,7 +9,7 @@ namespace tryAGI.OpenAI
public sealed partial class WebSearchActionOpenPage
{
/// <summary>
/// The action type.
/// The action type. Always `open_page`.
/// </summary>
[global::System.Text.Json.Serialization.JsonPropertyName("type")]
[global::System.Text.Json.Serialization.JsonConverter(typeof(global::tryAGI.OpenAI.JsonConverters.WebSearchActionOpenPageTypeJsonConverter))]
Expand All @@ -31,7 +31,7 @@ public sealed partial class WebSearchActionOpenPage
/// Initializes a new instance of the <see cref="WebSearchActionOpenPage" /> class.
/// </summary>
/// <param name="type">
/// The action type.
/// The action type. Always `open_page`.
/// </param>
/// <param name="url">
/// The URL opened by the model.
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@
namespace tryAGI.OpenAI
{
/// <summary>
/// The action type.
/// The action type. Always `open_page`.
/// </summary>
public enum WebSearchActionOpenPageType
{
Expand Down
2 changes: 1 addition & 1 deletion src/libs/tryAGI.OpenAI/openapi.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -75313,7 +75313,7 @@ components:
enum:
- open_page
description: |
The action type.
The action type. Always `open_page`.
x-stainless-const: true
url:
description: |
Expand Down
Loading