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

Fixes #208 #231

Merged
merged 1 commit into from
Dec 5, 2023
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
4 changes: 4 additions & 0 deletions src/Serval.Client/Client.g.cs
Original file line number Diff line number Diff line change
Expand Up @@ -1014,6 +1014,8 @@ public partial interface ITranslationEnginesClient
/// <br/>in the textIds parameter. If the engine does not support pretranslation, these fields have no effect.
/// <br/>
/// <br/>Similarly, specify the corpora and textIds to train on. If no train_on field is provided, all corpora will be used.
/// <br/>Paratext projects can be filtered by book for training and pretranslating. This filtering follows the original versification.
/// <br/>To filter, use the 3 character code for the book of the Bible in the textID while building. See [here](https://github.com/sillsdev/serval/wiki/Versification-in-Serval) for more information.
/// <br/>
/// <br/>The `"options"` parameter of the build config provides the ability to pass build configuration parameters as a JSON object.
/// <br/>A typical use case would be to set `"options"` to `{"max_steps":10}` in order to configure the maximum
Expand Down Expand Up @@ -2917,6 +2919,8 @@ public string BaseUrl
/// <br/>in the textIds parameter. If the engine does not support pretranslation, these fields have no effect.
/// <br/>
/// <br/>Similarly, specify the corpora and textIds to train on. If no train_on field is provided, all corpora will be used.
/// <br/>Paratext projects can be filtered by book for training and pretranslating. This filtering follows the original versification.
/// <br/>To filter, use the 3 character code for the book of the Bible in the textID while building. See [here](https://github.com/sillsdev/serval/wiki/Versification-in-Serval) for more information.
/// <br/>
/// <br/>The `"options"` parameter of the build config provides the ability to pass build configuration parameters as a JSON object.
/// <br/>A typical use case would be to set `"options"` to `{"max_steps":10}` in order to configure the maximum
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -773,6 +773,8 @@ CancellationToken cancellationToken
/// in the textIds parameter. If the engine does not support pretranslation, these fields have no effect.
///
/// Similarly, specify the corpora and textIds to train on. If no train_on field is provided, all corpora will be used.
/// Paratext projects can be filtered by book for training and pretranslating. This filtering follows the original versification.
/// To filter, use the 3 character code for the book of the Bible in the textID while building. See [here](https://github.com/sillsdev/serval/wiki/Versification-in-Serval) for more information.
///
/// The `"options"` parameter of the build config provides the ability to pass build configuration parameters as a JSON object.
/// A typical use case would be to set `"options"` to `{"max_steps":10}` in order to configure the maximum
Expand Down
Loading