generated from tryAGI/SdkTemplate
-
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #6 from tryAGI/bot/update-openapi_202409171521
feat:@coderabbitai
- Loading branch information
Showing
7 changed files
with
272 additions
and
44 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
74 changes: 74 additions & 0 deletions
74
src/libs/Jina/Generated/Jina.Models.TextEmbeddingInputTask.g.cs
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,74 @@ | ||
|
||
#nullable enable | ||
|
||
namespace Jina | ||
{ | ||
/// <summary> | ||
/// Used to convey intended downstream application to help the model produce better embeddings. Must be one of the following values:<br/> | ||
/// - "retrieval.query": Specifies the given text is a query in a search or retrieval setting.<br/> | ||
/// - "retrieval.passage": Specifies the given text is a document in a search or retrieval setting.<br/> | ||
/// - "text-matching": Specifies the given text is used for Semantic Textual Similarity.<br/> | ||
/// - "classification": Specifies that the embedding is used for classification.<br/> | ||
/// - "separation": Specifies that the embedding is used for clustering. | ||
/// </summary> | ||
public enum TextEmbeddingInputTask | ||
{ | ||
/// <summary> | ||
/// | ||
/// </summary> | ||
RetrievalQuery, | ||
/// <summary> | ||
/// | ||
/// </summary> | ||
RetrievalPassage, | ||
/// <summary> | ||
/// | ||
/// </summary> | ||
TextMatching, | ||
/// <summary> | ||
/// | ||
/// </summary> | ||
Classification, | ||
/// <summary> | ||
/// | ||
/// </summary> | ||
Separation, | ||
} | ||
|
||
/// <summary> | ||
/// Enum extensions to do fast conversions without the reflection. | ||
/// </summary> | ||
public static class TextEmbeddingInputTaskExtensions | ||
{ | ||
/// <summary> | ||
/// Converts an enum to a string. | ||
/// </summary> | ||
public static string ToValueString(this TextEmbeddingInputTask value) | ||
{ | ||
return value switch | ||
{ | ||
TextEmbeddingInputTask.RetrievalQuery => "retrieval.query", | ||
TextEmbeddingInputTask.RetrievalPassage => "retrieval.passage", | ||
TextEmbeddingInputTask.TextMatching => "text-matching", | ||
TextEmbeddingInputTask.Classification => "classification", | ||
TextEmbeddingInputTask.Separation => "separation", | ||
_ => throw new global::System.ArgumentOutOfRangeException(nameof(value), value, null), | ||
}; | ||
} | ||
/// <summary> | ||
/// Converts an string to a enum. | ||
/// </summary> | ||
public static TextEmbeddingInputTask? ToEnum(string value) | ||
{ | ||
return value switch | ||
{ | ||
"retrieval.query" => TextEmbeddingInputTask.RetrievalQuery, | ||
"retrieval.passage" => TextEmbeddingInputTask.RetrievalPassage, | ||
"text-matching" => TextEmbeddingInputTask.TextMatching, | ||
"classification" => TextEmbeddingInputTask.Classification, | ||
"separation" => TextEmbeddingInputTask.Separation, | ||
_ => null, | ||
}; | ||
} | ||
} | ||
} |
49 changes: 49 additions & 0 deletions
49
src/libs/Jina/Generated/JsonConverters.TextEmbeddingInputTask.g.cs
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,49 @@ | ||
#nullable enable | ||
|
||
namespace Jina.JsonConverters | ||
{ | ||
/// <inheritdoc /> | ||
public sealed class TextEmbeddingInputTaskJsonConverter : global::System.Text.Json.Serialization.JsonConverter<global::Jina.TextEmbeddingInputTask> | ||
{ | ||
/// <inheritdoc /> | ||
public override global::Jina.TextEmbeddingInputTask Read( | ||
ref global::System.Text.Json.Utf8JsonReader reader, | ||
global::System.Type typeToConvert, | ||
global::System.Text.Json.JsonSerializerOptions options) | ||
{ | ||
switch (reader.TokenType) | ||
{ | ||
case global::System.Text.Json.JsonTokenType.String: | ||
{ | ||
var stringValue = reader.GetString(); | ||
if (stringValue != null) | ||
{ | ||
return global::Jina.TextEmbeddingInputTaskExtensions.ToEnum(stringValue) ?? default; | ||
} | ||
|
||
break; | ||
} | ||
case global::System.Text.Json.JsonTokenType.Number: | ||
{ | ||
var numValue = reader.GetInt32(); | ||
return (global::Jina.TextEmbeddingInputTask)numValue; | ||
} | ||
default: | ||
throw new global::System.ArgumentOutOfRangeException(nameof(reader)); | ||
} | ||
|
||
return default; | ||
} | ||
|
||
/// <inheritdoc /> | ||
public override void Write( | ||
global::System.Text.Json.Utf8JsonWriter writer, | ||
global::Jina.TextEmbeddingInputTask value, | ||
global::System.Text.Json.JsonSerializerOptions options) | ||
{ | ||
writer = writer ?? throw new global::System.ArgumentNullException(nameof(writer)); | ||
|
||
writer.WriteStringValue(global::Jina.TextEmbeddingInputTaskExtensions.ToValueString(value)); | ||
} | ||
} | ||
} |
56 changes: 56 additions & 0 deletions
56
src/libs/Jina/Generated/JsonConverters.TextEmbeddingInputTaskNullable.g.cs
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,56 @@ | ||
#nullable enable | ||
|
||
namespace Jina.JsonConverters | ||
{ | ||
/// <inheritdoc /> | ||
public sealed class TextEmbeddingInputTaskNullableJsonConverter : global::System.Text.Json.Serialization.JsonConverter<global::Jina.TextEmbeddingInputTask?> | ||
{ | ||
/// <inheritdoc /> | ||
public override global::Jina.TextEmbeddingInputTask? Read( | ||
ref global::System.Text.Json.Utf8JsonReader reader, | ||
global::System.Type typeToConvert, | ||
global::System.Text.Json.JsonSerializerOptions options) | ||
{ | ||
switch (reader.TokenType) | ||
{ | ||
case global::System.Text.Json.JsonTokenType.String: | ||
{ | ||
var stringValue = reader.GetString(); | ||
if (stringValue != null) | ||
{ | ||
return global::Jina.TextEmbeddingInputTaskExtensions.ToEnum(stringValue); | ||
} | ||
|
||
break; | ||
} | ||
case global::System.Text.Json.JsonTokenType.Number: | ||
{ | ||
var numValue = reader.GetInt32(); | ||
return (global::Jina.TextEmbeddingInputTask)numValue; | ||
} | ||
default: | ||
throw new global::System.ArgumentOutOfRangeException(nameof(reader)); | ||
} | ||
|
||
return default; | ||
} | ||
|
||
/// <inheritdoc /> | ||
public override void Write( | ||
global::System.Text.Json.Utf8JsonWriter writer, | ||
global::Jina.TextEmbeddingInputTask? value, | ||
global::System.Text.Json.JsonSerializerOptions options) | ||
{ | ||
writer = writer ?? throw new global::System.ArgumentNullException(nameof(writer)); | ||
|
||
if (value == null) | ||
{ | ||
writer.WriteNullValue(); | ||
} | ||
else | ||
{ | ||
writer.WriteStringValue(global::Jina.TextEmbeddingInputTaskExtensions.ToValueString(value.Value)); | ||
} | ||
} | ||
} | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.