Skip to content
Open
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
2 changes: 1 addition & 1 deletion runagent-csharp/RunAgent.csproj
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@
<Nullable>enable</Nullable>
<ImplicitUsings>enable</ImplicitUsings>
<PackageId>RunAgent</PackageId>
<Version>0.1.48</Version>
<Version>0.1.49</Version>
<Authors>RunAgent Team</Authors>
<Company>RunAgent</Company>
<Description>C# SDK for RunAgent - Secured, reliable AI agent deployment at scale. Run your stack. Let us run your agents.</Description>
Expand Down
2 changes: 1 addition & 1 deletion runagent-csharp/src/Client/RestClient.cs
Original file line number Diff line number Diff line change
Expand Up @@ -39,7 +39,7 @@ public RestClient(string baseUrl, string? apiKey, bool isLocal)

// Set User-Agent header
_httpClient.DefaultRequestHeaders.UserAgent.Add(
new ProductInfoHeaderValue("RunAgent-CSharp", "0.1.47")
new ProductInfoHeaderValue("RunAgent-CSharp", "0.1.49")
);

// Set Authorization header for remote calls
Expand Down