Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

feat:@coderabbitai #24

Merged
merged 1 commit into from
Aug 26, 2024
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
Original file line number Diff line number Diff line change
Expand Up @@ -13,14 +13,14 @@
/// Default Value: true
/// </summary>
[global::System.Text.Json.Serialization.JsonPropertyName("use_cache")]
public global::HuggingFace.GenerateTextRequestOptionsUseCache? UseCache { get; set; }
public global::HuggingFace.GenerateTextRequestOptionsUseCache? UseCache { get; set; } = true;

Check failure on line 16 in src/libs/HuggingFace/Generated/HuggingFace.Models.GenerateTextRequestOptions.g.cs

View workflow job for this annotation

GitHub Actions / Test / Build, test and publish

Cannot implicitly convert type 'bool' to 'HuggingFace.GenerateTextRequestOptionsUseCache'

Check failure on line 16 in src/libs/HuggingFace/Generated/HuggingFace.Models.GenerateTextRequestOptions.g.cs

View workflow job for this annotation

GitHub Actions / Test / Build, test and publish

Cannot implicitly convert type 'bool' to 'HuggingFace.GenerateTextRequestOptionsUseCache'

Check failure on line 16 in src/libs/HuggingFace/Generated/HuggingFace.Models.GenerateTextRequestOptions.g.cs

View workflow job for this annotation

GitHub Actions / Test / Build, test and publish

Cannot implicitly convert type 'bool' to 'HuggingFace.GenerateTextRequestOptionsUseCache'

/// <summary>
/// If the model is not ready, wait for it instead of receiving 503. It limits the number of requests required to get your inference done. It is advised to only set this flag to true after receiving a 503 error as it will limit hanging in your application to known places.<br/>
/// Default Value: false
/// </summary>
[global::System.Text.Json.Serialization.JsonPropertyName("wait_for_model")]
public global::HuggingFace.GenerateTextRequestOptionsWaitForModel? WaitForModel { get; set; }
public global::HuggingFace.GenerateTextRequestOptionsWaitForModel? WaitForModel { get; set; } = false;

Check failure on line 23 in src/libs/HuggingFace/Generated/HuggingFace.Models.GenerateTextRequestOptions.g.cs

View workflow job for this annotation

GitHub Actions / Test / Build, test and publish

Cannot implicitly convert type 'bool' to 'HuggingFace.GenerateTextRequestOptionsWaitForModel'

Check failure on line 23 in src/libs/HuggingFace/Generated/HuggingFace.Models.GenerateTextRequestOptions.g.cs

View workflow job for this annotation

GitHub Actions / Test / Build, test and publish

Cannot implicitly convert type 'bool' to 'HuggingFace.GenerateTextRequestOptionsWaitForModel'

Check failure on line 23 in src/libs/HuggingFace/Generated/HuggingFace.Models.GenerateTextRequestOptions.g.cs

View workflow job for this annotation

GitHub Actions / Test / Build, test and publish

Cannot implicitly convert type 'bool' to 'HuggingFace.GenerateTextRequestOptionsWaitForModel'

/// <summary>
/// Additional properties that are not explicitly defined in the schema
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -61,7 +61,7 @@
/// Default Value: true
/// </summary>
[global::System.Text.Json.Serialization.JsonPropertyName("return_full_text")]
public global::HuggingFace.GenerateTextRequestParametersReturnFullText? ReturnFullText { get; set; }
public global::HuggingFace.GenerateTextRequestParametersReturnFullText? ReturnFullText { get; set; } = true;

Check failure on line 64 in src/libs/HuggingFace/Generated/HuggingFace.Models.GenerateTextRequestParameters.g.cs

View workflow job for this annotation

GitHub Actions / Test / Build, test and publish

Cannot implicitly convert type 'bool' to 'HuggingFace.GenerateTextRequestParametersReturnFullText'

Check failure on line 64 in src/libs/HuggingFace/Generated/HuggingFace.Models.GenerateTextRequestParameters.g.cs

View workflow job for this annotation

GitHub Actions / Test / Build, test and publish

Cannot implicitly convert type 'bool' to 'HuggingFace.GenerateTextRequestParametersReturnFullText'

/// <summary>
/// The number of proposition you want to be returned.<br/>
Expand All @@ -76,7 +76,7 @@
/// Default Value: true
/// </summary>
[global::System.Text.Json.Serialization.JsonPropertyName("do_sample")]
public global::HuggingFace.GenerateTextRequestParametersDoSample? DoSample { get; set; }
public global::HuggingFace.GenerateTextRequestParametersDoSample? DoSample { get; set; } = true;

Check failure on line 79 in src/libs/HuggingFace/Generated/HuggingFace.Models.GenerateTextRequestParameters.g.cs

View workflow job for this annotation

GitHub Actions / Test / Build, test and publish

Cannot implicitly convert type 'bool' to 'HuggingFace.GenerateTextRequestParametersDoSample'

Check failure on line 79 in src/libs/HuggingFace/Generated/HuggingFace.Models.GenerateTextRequestParameters.g.cs

View workflow job for this annotation

GitHub Actions / Test / Build, test and publish

Cannot implicitly convert type 'bool' to 'HuggingFace.GenerateTextRequestParametersDoSample'

/// <summary>
/// Additional properties that are not explicitly defined in the schema
Expand Down