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
1 change: 0 additions & 1 deletion src/libs/AI21/Generated/AI21..JsonSerializerContext.g.cs
Original file line number Diff line number Diff line change
Expand Up @@ -72,7 +72,6 @@ namespace AI21
typeof(global::AI21.JsonConverters.AnyOfJsonConverter<global::System.Collections.Generic.IList<global::System.Guid>, global::System.Collections.Generic.IList<string>>),
typeof(global::AI21.JsonConverters.AnyOfJsonConverter<global::AI21.ChatStreamingFirstDelta, global::AI21.ChatStreamingContentDelta, global::AI21.ChatStreamingToolCallsFirstDelta, global::AI21.ChatStreamingToolCallsDelta>),
typeof(global::AI21.JsonConverters.AnyOfJsonConverter<string, global::System.Collections.Generic.IList<string>>),
typeof(global::AI21.JsonConverters.AnyOfJsonConverter<string, object>),
typeof(global::AI21.JsonConverters.AnyOfJsonConverter<global::System.Collections.Generic.IList<global::AI21.Message>, string>),
typeof(global::AI21.JsonConverters.AnyOfJsonConverter<string, int?>),
typeof(global::AI21.JsonConverters.AnyOfJsonConverter<global::AI21.ChatCompletion, global::System.Collections.Generic.IList<global::AI21.ChatCompletionVllmStreamingMessage>>),
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -81,8 +81,6 @@ public partial interface IJambaCompleteClient
/// <param name="mockResponse"></param>
/// <param name="documents"></param>
/// <param name="responseFormat"></param>
/// <param name="guidedJson"></param>
/// <param name="guidedDecodingBackend"></param>
/// <param name="cancellationToken">The token to cancel the operation with</param>
/// <exception cref="global::System.InvalidOperationException"></exception>
global::System.Threading.Tasks.Task<global::AI21.AnyOf<global::AI21.ChatCompletion, global::System.Collections.Generic.IList<global::AI21.ChatCompletionVllmStreamingMessage>>> V1ChatCompleteAsync(
Expand All @@ -98,8 +96,6 @@ public partial interface IJambaCompleteClient
global::AI21.MockResponseConfig? mockResponse = default,
global::System.Collections.Generic.IList<global::AI21.DocumentSchema>? documents = default,
global::AI21.ResponseFormat? responseFormat = default,
global::AI21.AnyOf<string, object>? guidedJson = default,
string? guidedDecodingBackend = default,
global::System.Threading.CancellationToken cancellationToken = default);
}
}
Original file line number Diff line number Diff line change
Expand Up @@ -269,8 +269,6 @@ partial void ProcessV1ChatCompleteResponseContent(
/// <param name="mockResponse"></param>
/// <param name="documents"></param>
/// <param name="responseFormat"></param>
/// <param name="guidedJson"></param>
/// <param name="guidedDecodingBackend"></param>
/// <param name="cancellationToken">The token to cancel the operation with</param>
/// <exception cref="global::System.InvalidOperationException"></exception>
public async global::System.Threading.Tasks.Task<global::AI21.AnyOf<global::AI21.ChatCompletion, global::System.Collections.Generic.IList<global::AI21.ChatCompletionVllmStreamingMessage>>> V1ChatCompleteAsync(
Expand All @@ -286,8 +284,6 @@ partial void ProcessV1ChatCompleteResponseContent(
global::AI21.MockResponseConfig? mockResponse = default,
global::System.Collections.Generic.IList<global::AI21.DocumentSchema>? documents = default,
global::AI21.ResponseFormat? responseFormat = default,
global::AI21.AnyOf<string, object>? guidedJson = default,
string? guidedDecodingBackend = default,
global::System.Threading.CancellationToken cancellationToken = default)
{
var __request = new global::AI21.ChatRequest
Expand All @@ -304,8 +300,6 @@ partial void ProcessV1ChatCompleteResponseContent(
MockResponse = mockResponse,
Documents = documents,
ResponseFormat = responseFormat,
GuidedJson = guidedJson,
GuidedDecodingBackend = guidedDecodingBackend,
};

return await V1ChatCompleteAsync(
Expand Down
Loading
Loading