From e784c180b3d3930475b6507ea721de50358a505f Mon Sep 17 00:00:00 2001 From: "github-actions[bot]" Date: Mon, 11 May 2026 02:43:15 +0000 Subject: [PATCH] feat: Updated OpenAPI spec --- .../tryAGI.Humanloop.AgentsClient.g.cs | 21 +++++++++++++++++++ .../tryAGI.Humanloop.DatasetsClient.g.cs | 21 +++++++++++++++++++ .../tryAGI.Humanloop.DirectoriesClient.g.cs | 21 +++++++++++++++++++ .../tryAGI.Humanloop.EvaluationsClient.g.cs | 21 +++++++++++++++++++ .../tryAGI.Humanloop.EvaluatorsClient.g.cs | 21 +++++++++++++++++++ .../tryAGI.Humanloop.FilesClient.g.cs | 21 +++++++++++++++++++ .../tryAGI.Humanloop.FlowsClient.g.cs | 21 +++++++++++++++++++ .../tryAGI.Humanloop.HumanloopClient.g.cs | 21 +++++++++++++++++++ .../tryAGI.Humanloop.LogsClient.g.cs | 21 +++++++++++++++++++ .../tryAGI.Humanloop.PromptsClient.g.cs | 21 +++++++++++++++++++ .../tryAGI.Humanloop.ToolsClient.g.cs | 21 +++++++++++++++++++ 11 files changed, 231 insertions(+) diff --git a/src/libs/Humanloop/Generated/tryAGI.Humanloop.AgentsClient.g.cs b/src/libs/Humanloop/Generated/tryAGI.Humanloop.AgentsClient.g.cs index d91ba6c..b6bac18 100644 --- a/src/libs/Humanloop/Generated/tryAGI.Humanloop.AgentsClient.g.cs +++ b/src/libs/Humanloop/Generated/tryAGI.Humanloop.AgentsClient.g.cs @@ -61,6 +61,27 @@ public AgentsClient( { } + /// + /// Creates a new instance of the AgentsClient with explicit options but no base URL override. + /// Skips passing baseUri so the default base URL from the OpenAPI spec applies. + /// + /// The HttpClient instance. If not provided, a new one will be created. + /// The authorizations to use for the requests. + /// Client-wide request defaults such as headers, query parameters, retries, and timeout. + /// Dispose the HttpClient when the instance is disposed. True by default. + public AgentsClient( + global::System.Net.Http.HttpClient? httpClient, + global::System.Collections.Generic.List? authorizations, + global::tryAGI.Humanloop.AutoSDKClientOptions? options, + bool disposeHttpClient = true) : this( + httpClient, + baseUri: null, + authorizations, + options, + disposeHttpClient: disposeHttpClient) + { + } + /// /// Creates a new instance of the AgentsClient. /// If no httpClient is provided, a new one will be created. diff --git a/src/libs/Humanloop/Generated/tryAGI.Humanloop.DatasetsClient.g.cs b/src/libs/Humanloop/Generated/tryAGI.Humanloop.DatasetsClient.g.cs index 1a7475b..39fc556 100644 --- a/src/libs/Humanloop/Generated/tryAGI.Humanloop.DatasetsClient.g.cs +++ b/src/libs/Humanloop/Generated/tryAGI.Humanloop.DatasetsClient.g.cs @@ -61,6 +61,27 @@ public DatasetsClient( { } + /// + /// Creates a new instance of the DatasetsClient with explicit options but no base URL override. + /// Skips passing baseUri so the default base URL from the OpenAPI spec applies. + /// + /// The HttpClient instance. If not provided, a new one will be created. + /// The authorizations to use for the requests. + /// Client-wide request defaults such as headers, query parameters, retries, and timeout. + /// Dispose the HttpClient when the instance is disposed. True by default. + public DatasetsClient( + global::System.Net.Http.HttpClient? httpClient, + global::System.Collections.Generic.List? authorizations, + global::tryAGI.Humanloop.AutoSDKClientOptions? options, + bool disposeHttpClient = true) : this( + httpClient, + baseUri: null, + authorizations, + options, + disposeHttpClient: disposeHttpClient) + { + } + /// /// Creates a new instance of the DatasetsClient. /// If no httpClient is provided, a new one will be created. diff --git a/src/libs/Humanloop/Generated/tryAGI.Humanloop.DirectoriesClient.g.cs b/src/libs/Humanloop/Generated/tryAGI.Humanloop.DirectoriesClient.g.cs index 9866df6..0019de9 100644 --- a/src/libs/Humanloop/Generated/tryAGI.Humanloop.DirectoriesClient.g.cs +++ b/src/libs/Humanloop/Generated/tryAGI.Humanloop.DirectoriesClient.g.cs @@ -61,6 +61,27 @@ public DirectoriesClient( { } + /// + /// Creates a new instance of the DirectoriesClient with explicit options but no base URL override. + /// Skips passing baseUri so the default base URL from the OpenAPI spec applies. + /// + /// The HttpClient instance. If not provided, a new one will be created. + /// The authorizations to use for the requests. + /// Client-wide request defaults such as headers, query parameters, retries, and timeout. + /// Dispose the HttpClient when the instance is disposed. True by default. + public DirectoriesClient( + global::System.Net.Http.HttpClient? httpClient, + global::System.Collections.Generic.List? authorizations, + global::tryAGI.Humanloop.AutoSDKClientOptions? options, + bool disposeHttpClient = true) : this( + httpClient, + baseUri: null, + authorizations, + options, + disposeHttpClient: disposeHttpClient) + { + } + /// /// Creates a new instance of the DirectoriesClient. /// If no httpClient is provided, a new one will be created. diff --git a/src/libs/Humanloop/Generated/tryAGI.Humanloop.EvaluationsClient.g.cs b/src/libs/Humanloop/Generated/tryAGI.Humanloop.EvaluationsClient.g.cs index ee70f1d..b7b92c2 100644 --- a/src/libs/Humanloop/Generated/tryAGI.Humanloop.EvaluationsClient.g.cs +++ b/src/libs/Humanloop/Generated/tryAGI.Humanloop.EvaluationsClient.g.cs @@ -61,6 +61,27 @@ public EvaluationsClient( { } + /// + /// Creates a new instance of the EvaluationsClient with explicit options but no base URL override. + /// Skips passing baseUri so the default base URL from the OpenAPI spec applies. + /// + /// The HttpClient instance. If not provided, a new one will be created. + /// The authorizations to use for the requests. + /// Client-wide request defaults such as headers, query parameters, retries, and timeout. + /// Dispose the HttpClient when the instance is disposed. True by default. + public EvaluationsClient( + global::System.Net.Http.HttpClient? httpClient, + global::System.Collections.Generic.List? authorizations, + global::tryAGI.Humanloop.AutoSDKClientOptions? options, + bool disposeHttpClient = true) : this( + httpClient, + baseUri: null, + authorizations, + options, + disposeHttpClient: disposeHttpClient) + { + } + /// /// Creates a new instance of the EvaluationsClient. /// If no httpClient is provided, a new one will be created. diff --git a/src/libs/Humanloop/Generated/tryAGI.Humanloop.EvaluatorsClient.g.cs b/src/libs/Humanloop/Generated/tryAGI.Humanloop.EvaluatorsClient.g.cs index fe2cfe0..85d4cf8 100644 --- a/src/libs/Humanloop/Generated/tryAGI.Humanloop.EvaluatorsClient.g.cs +++ b/src/libs/Humanloop/Generated/tryAGI.Humanloop.EvaluatorsClient.g.cs @@ -61,6 +61,27 @@ public EvaluatorsClient( { } + /// + /// Creates a new instance of the EvaluatorsClient with explicit options but no base URL override. + /// Skips passing baseUri so the default base URL from the OpenAPI spec applies. + /// + /// The HttpClient instance. If not provided, a new one will be created. + /// The authorizations to use for the requests. + /// Client-wide request defaults such as headers, query parameters, retries, and timeout. + /// Dispose the HttpClient when the instance is disposed. True by default. + public EvaluatorsClient( + global::System.Net.Http.HttpClient? httpClient, + global::System.Collections.Generic.List? authorizations, + global::tryAGI.Humanloop.AutoSDKClientOptions? options, + bool disposeHttpClient = true) : this( + httpClient, + baseUri: null, + authorizations, + options, + disposeHttpClient: disposeHttpClient) + { + } + /// /// Creates a new instance of the EvaluatorsClient. /// If no httpClient is provided, a new one will be created. diff --git a/src/libs/Humanloop/Generated/tryAGI.Humanloop.FilesClient.g.cs b/src/libs/Humanloop/Generated/tryAGI.Humanloop.FilesClient.g.cs index 289c9dc..672ea55 100644 --- a/src/libs/Humanloop/Generated/tryAGI.Humanloop.FilesClient.g.cs +++ b/src/libs/Humanloop/Generated/tryAGI.Humanloop.FilesClient.g.cs @@ -61,6 +61,27 @@ public FilesClient( { } + /// + /// Creates a new instance of the FilesClient with explicit options but no base URL override. + /// Skips passing baseUri so the default base URL from the OpenAPI spec applies. + /// + /// The HttpClient instance. If not provided, a new one will be created. + /// The authorizations to use for the requests. + /// Client-wide request defaults such as headers, query parameters, retries, and timeout. + /// Dispose the HttpClient when the instance is disposed. True by default. + public FilesClient( + global::System.Net.Http.HttpClient? httpClient, + global::System.Collections.Generic.List? authorizations, + global::tryAGI.Humanloop.AutoSDKClientOptions? options, + bool disposeHttpClient = true) : this( + httpClient, + baseUri: null, + authorizations, + options, + disposeHttpClient: disposeHttpClient) + { + } + /// /// Creates a new instance of the FilesClient. /// If no httpClient is provided, a new one will be created. diff --git a/src/libs/Humanloop/Generated/tryAGI.Humanloop.FlowsClient.g.cs b/src/libs/Humanloop/Generated/tryAGI.Humanloop.FlowsClient.g.cs index fab9c69..3ee8bc4 100644 --- a/src/libs/Humanloop/Generated/tryAGI.Humanloop.FlowsClient.g.cs +++ b/src/libs/Humanloop/Generated/tryAGI.Humanloop.FlowsClient.g.cs @@ -61,6 +61,27 @@ public FlowsClient( { } + /// + /// Creates a new instance of the FlowsClient with explicit options but no base URL override. + /// Skips passing baseUri so the default base URL from the OpenAPI spec applies. + /// + /// The HttpClient instance. If not provided, a new one will be created. + /// The authorizations to use for the requests. + /// Client-wide request defaults such as headers, query parameters, retries, and timeout. + /// Dispose the HttpClient when the instance is disposed. True by default. + public FlowsClient( + global::System.Net.Http.HttpClient? httpClient, + global::System.Collections.Generic.List? authorizations, + global::tryAGI.Humanloop.AutoSDKClientOptions? options, + bool disposeHttpClient = true) : this( + httpClient, + baseUri: null, + authorizations, + options, + disposeHttpClient: disposeHttpClient) + { + } + /// /// Creates a new instance of the FlowsClient. /// If no httpClient is provided, a new one will be created. diff --git a/src/libs/Humanloop/Generated/tryAGI.Humanloop.HumanloopClient.g.cs b/src/libs/Humanloop/Generated/tryAGI.Humanloop.HumanloopClient.g.cs index 84ef1a9..d94d41e 100644 --- a/src/libs/Humanloop/Generated/tryAGI.Humanloop.HumanloopClient.g.cs +++ b/src/libs/Humanloop/Generated/tryAGI.Humanloop.HumanloopClient.g.cs @@ -154,6 +154,27 @@ public HumanloopClient( { } + /// + /// Creates a new instance of the HumanloopClient with explicit options but no base URL override. + /// Skips passing baseUri so the default base URL from the OpenAPI spec applies. + /// + /// The HttpClient instance. If not provided, a new one will be created. + /// The authorizations to use for the requests. + /// Client-wide request defaults such as headers, query parameters, retries, and timeout. + /// Dispose the HttpClient when the instance is disposed. True by default. + public HumanloopClient( + global::System.Net.Http.HttpClient? httpClient, + global::System.Collections.Generic.List? authorizations, + global::tryAGI.Humanloop.AutoSDKClientOptions? options, + bool disposeHttpClient = true) : this( + httpClient, + baseUri: null, + authorizations, + options, + disposeHttpClient: disposeHttpClient) + { + } + /// /// Creates a new instance of the HumanloopClient. /// If no httpClient is provided, a new one will be created. diff --git a/src/libs/Humanloop/Generated/tryAGI.Humanloop.LogsClient.g.cs b/src/libs/Humanloop/Generated/tryAGI.Humanloop.LogsClient.g.cs index e4348de..c4b2c74 100644 --- a/src/libs/Humanloop/Generated/tryAGI.Humanloop.LogsClient.g.cs +++ b/src/libs/Humanloop/Generated/tryAGI.Humanloop.LogsClient.g.cs @@ -61,6 +61,27 @@ public LogsClient( { } + /// + /// Creates a new instance of the LogsClient with explicit options but no base URL override. + /// Skips passing baseUri so the default base URL from the OpenAPI spec applies. + /// + /// The HttpClient instance. If not provided, a new one will be created. + /// The authorizations to use for the requests. + /// Client-wide request defaults such as headers, query parameters, retries, and timeout. + /// Dispose the HttpClient when the instance is disposed. True by default. + public LogsClient( + global::System.Net.Http.HttpClient? httpClient, + global::System.Collections.Generic.List? authorizations, + global::tryAGI.Humanloop.AutoSDKClientOptions? options, + bool disposeHttpClient = true) : this( + httpClient, + baseUri: null, + authorizations, + options, + disposeHttpClient: disposeHttpClient) + { + } + /// /// Creates a new instance of the LogsClient. /// If no httpClient is provided, a new one will be created. diff --git a/src/libs/Humanloop/Generated/tryAGI.Humanloop.PromptsClient.g.cs b/src/libs/Humanloop/Generated/tryAGI.Humanloop.PromptsClient.g.cs index f1353cb..065d2bc 100644 --- a/src/libs/Humanloop/Generated/tryAGI.Humanloop.PromptsClient.g.cs +++ b/src/libs/Humanloop/Generated/tryAGI.Humanloop.PromptsClient.g.cs @@ -61,6 +61,27 @@ public PromptsClient( { } + /// + /// Creates a new instance of the PromptsClient with explicit options but no base URL override. + /// Skips passing baseUri so the default base URL from the OpenAPI spec applies. + /// + /// The HttpClient instance. If not provided, a new one will be created. + /// The authorizations to use for the requests. + /// Client-wide request defaults such as headers, query parameters, retries, and timeout. + /// Dispose the HttpClient when the instance is disposed. True by default. + public PromptsClient( + global::System.Net.Http.HttpClient? httpClient, + global::System.Collections.Generic.List? authorizations, + global::tryAGI.Humanloop.AutoSDKClientOptions? options, + bool disposeHttpClient = true) : this( + httpClient, + baseUri: null, + authorizations, + options, + disposeHttpClient: disposeHttpClient) + { + } + /// /// Creates a new instance of the PromptsClient. /// If no httpClient is provided, a new one will be created. diff --git a/src/libs/Humanloop/Generated/tryAGI.Humanloop.ToolsClient.g.cs b/src/libs/Humanloop/Generated/tryAGI.Humanloop.ToolsClient.g.cs index 63aceee..8d62c85 100644 --- a/src/libs/Humanloop/Generated/tryAGI.Humanloop.ToolsClient.g.cs +++ b/src/libs/Humanloop/Generated/tryAGI.Humanloop.ToolsClient.g.cs @@ -61,6 +61,27 @@ public ToolsClient( { } + /// + /// Creates a new instance of the ToolsClient with explicit options but no base URL override. + /// Skips passing baseUri so the default base URL from the OpenAPI spec applies. + /// + /// The HttpClient instance. If not provided, a new one will be created. + /// The authorizations to use for the requests. + /// Client-wide request defaults such as headers, query parameters, retries, and timeout. + /// Dispose the HttpClient when the instance is disposed. True by default. + public ToolsClient( + global::System.Net.Http.HttpClient? httpClient, + global::System.Collections.Generic.List? authorizations, + global::tryAGI.Humanloop.AutoSDKClientOptions? options, + bool disposeHttpClient = true) : this( + httpClient, + baseUri: null, + authorizations, + options, + disposeHttpClient: disposeHttpClient) + { + } + /// /// Creates a new instance of the ToolsClient. /// If no httpClient is provided, a new one will be created.