Win3.Agent.Client 1.0.10

dotnet add package Win3.Agent.Client --version 1.0.10
                    
NuGet\Install-Package Win3.Agent.Client -Version 1.0.10
                    
This command is intended to be used within the Package Manager Console in Visual Studio, as it uses the NuGet module's version of Install-Package.
<PackageReference Include="Win3.Agent.Client" Version="1.0.10" />
                    
For projects that support PackageReference, copy this XML node into the project file to reference the package.
<PackageVersion Include="Win3.Agent.Client" Version="1.0.10" />
                    
Directory.Packages.props
<PackageReference Include="Win3.Agent.Client" />
                    
Project file
For projects that support Central Package Management (CPM), copy this XML node into the solution Directory.Packages.props file to version the package.
paket add Win3.Agent.Client --version 1.0.10
                    
#r "nuget: Win3.Agent.Client, 1.0.10"
                    
#r directive can be used in F# Interactive and Polyglot Notebooks. Copy this into the interactive tool or source code of the script to reference the package.
#:package Win3.Agent.Client@1.0.10
                    
#:package directive can be used in C# file-based apps starting in .NET 10 preview 4. Copy this into a .cs file before any lines of code to reference the package.
#addin nuget:?package=Win3.Agent.Client&version=1.0.10
                    
Install as a Cake Addin
#tool nuget:?package=Win3.Agent.Client&version=1.0.10
                    
Install as a Cake Tool

Created with Openapi Generator

<a id="cli"></a>

Creating the library

Create a config.yaml file similar to what is below, then run the following powershell command to generate the library java -jar "<path>/openapi-generator/modules/openapi-generator-cli/target/openapi-generator-cli.jar" generate -c config.yaml

generatorName: csharp
inputSpec: src/openapi/index.yml
outputDir: out

# https://openapi-generator.tech/docs/generators/csharp
additionalProperties:
  packageGuid: '{3603CC2D-92BA-4B68-839D-89B98B07ED42}'

# https://openapi-generator.tech/docs/integrations/#github-integration
# gitHost:
# gitUserId:
# gitRepoId:

# https://openapi-generator.tech/docs/globals
# globalProperties:

# https://openapi-generator.tech/docs/customization/#inline-schema-naming
# inlineSchemaOptions:

# https://openapi-generator.tech/docs/customization/#name-mapping
# modelNameMappings:
# nameMappings:

# https://openapi-generator.tech/docs/customization/#openapi-normalizer
# openapiNormalizer:

# templateDir: https://openapi-generator.tech/docs/templating/#modifying-templates

# releaseNote:

<a id="usage"></a>

Using the library in your project

using Microsoft.Extensions.Hosting;
using Microsoft.Extensions.DependencyInjection;
using Win3.Agent.Client.Api;
using Win3.Agent.Client.Client;
using Win3.Agent.Client.Model;
using Org.OpenAPITools.Extensions;

namespace YourProject
{
    public class Program
    {
        public static async Task Main(string[] args)
        {
            var host = CreateHostBuilder(args).Build();
            var api = host.Services.GetRequiredService<IConversationApi>();
            IEnsureConversationApiResponse apiResponse = await api.EnsureConversationAsync("todo");
            Conversation? model = apiResponse.Ok();
        }

        public static IHostBuilder CreateHostBuilder(string[] args) => Host.CreateDefaultBuilder(args)
          .ConfigureApi((context, services, options) =>
          {
              options.ConfigureJsonOptions((jsonOptions) =>
              {
                  // your custom converters if any
              });

              options.AddApiHttpClients(client =>
              {
                  // client configuration
              }, builder =>
              {
                  builder
                      .AddRetryPolicy(2)
                      .AddTimeoutPolicy(TimeSpan.FromSeconds(5))
                      .AddCircuitBreakerPolicy(10, TimeSpan.FromSeconds(30));
                      // add whatever middleware you prefer
                  }
              );
          });
    }
}

<a id="questions"></a>

Questions

  • What about HttpRequest failures and retries? Configure Polly in the IHttpClientBuilder
  • How are tokens used? Tokens are provided by a TokenProvider class. The default is RateLimitProvider which will perform client side rate limiting. Other providers can be used with the UseProvider method.
  • Does an HttpRequest throw an error when the server response is not Ok? It depends how you made the request. If the return type is ApiResponse<T> no error will be thrown, though the Content property will be null. StatusCode and ReasonPhrase will contain information about the error. If the return type is T, then it will throw. If the return type is TOrDefault, it will return null.
  • How do I validate requests and process responses? Use the provided On and After partial methods in the api classes.

Api Information

  • appName: Agent API
  • appVersion: 1.0.10
  • appDescription: API for agent framework

Build

This C# SDK is automatically generated by the OpenAPI Generator project.

  • SDK version: 1.0.10
  • Generator version: 7.17.0
  • Build package: org.openapitools.codegen.languages.CSharpClientCodegen
Product Compatible and additional computed target framework versions.
.NET net8.0 is compatible.  net8.0-android was computed.  net8.0-browser was computed.  net8.0-ios was computed.  net8.0-maccatalyst was computed.  net8.0-macos was computed.  net8.0-tvos was computed.  net8.0-windows was computed.  net9.0 was computed.  net9.0-android was computed.  net9.0-browser was computed.  net9.0-ios was computed.  net9.0-maccatalyst was computed.  net9.0-macos was computed.  net9.0-tvos was computed.  net9.0-windows was computed.  net10.0 was computed.  net10.0-android was computed.  net10.0-browser was computed.  net10.0-ios was computed.  net10.0-maccatalyst was computed.  net10.0-macos was computed.  net10.0-tvos was computed.  net10.0-windows was computed. 
Compatible target framework(s)
Included target framework(s) (in package)
Learn more about Target Frameworks and .NET Standard.

NuGet packages

This package is not used by any NuGet packages.

GitHub repositories

This package is not used by any popular GitHub repositories.

Version Downloads Last Updated
1.0.10 173 12/20/2025
1.0.9 151 12/20/2025
1.0.7 128 12/20/2025
1.0.6 306 12/18/2025
1.0.5 282 12/17/2025
1.0.4 266 12/15/2025

Minor update