You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: src/Serval/src/Serval.Client/Client.g.cs
+21-9Lines changed: 21 additions & 9 deletions
Original file line number
Diff line number
Diff line change
@@ -2186,7 +2186,7 @@ public partial interface ITranslationEngineTypesClient
2186
2186
2187
2187
/// <param name="cancellationToken">A cancellation token that can be used by other objects or threads to receive notice of cancellation.</param>
2188
2188
/// <summary>
2189
-
/// Get information regarding a language for a given engine type
2189
+
/// Get information regarding a language for a given engine type.
2190
2190
/// </summary>
2191
2191
/// <remarks>
2192
2192
/// This endpoint exists primarily to support `nmt` model-training since `echo` and `smt-transfer` engines support all languages equally. Given a language tag, it provides the ISO 639-3 code that the tag maps to internally
@@ -2199,9 +2199,9 @@ public partial interface ITranslationEngineTypesClient
2199
2199
/// <br/>* **`isNative`**: Whether the base translation model supports this language without fine-tuning.
2200
2200
/// <br/>* **`internalCode`**: The translation model's internal language code. See more details about how the language tag is mapped to an internal code [here](https://github.com/sillsdev/serval/wiki/FLORES%E2%80%90200-Language-Code-Resolution-for-NMT-Engine).
2201
2201
/// </remarks>
2202
-
/// <param name="engineType">A valid engine type: nmt, echo, or smt-transfer</param>
2202
+
/// <param name="engineType">A valid engine type: nmt, echo, or smt-transfer.</param>
2203
2203
/// <param name="language">The language to retrieve information on.</param>
2204
-
/// <returns>Language information for the specified engine type</returns>
2204
+
/// <returns>Language information for the specified engine type.</returns>
2205
2205
/// <exception cref="ServalApiException">A server side error occurred.</exception>
/// <param name="cancellationToken">A cancellation token that can be used by other objects or threads to receive notice of cancellation.</param>
2268
2268
/// <summary>
2269
-
/// Get information regarding a language for a given engine type
2269
+
/// Get information regarding a language for a given engine type.
2270
2270
/// </summary>
2271
2271
/// <remarks>
2272
2272
/// This endpoint exists primarily to support `nmt` model-training since `echo` and `smt-transfer` engines support all languages equally. Given a language tag, it provides the ISO 639-3 code that the tag maps to internally
@@ -2279,9 +2279,9 @@ public string BaseUrl
2279
2279
/// <br/>* **`isNative`**: Whether the base translation model supports this language without fine-tuning.
2280
2280
/// <br/>* **`internalCode`**: The translation model's internal language code. See more details about how the language tag is mapped to an internal code [here](https://github.com/sillsdev/serval/wiki/FLORES%E2%80%90200-Language-Code-Resolution-for-NMT-Engine).
2281
2281
/// </remarks>
2282
-
/// <param name="engineType">A valid engine type: nmt, echo, or smt-transfer</param>
2282
+
/// <param name="engineType">A valid engine type: nmt, echo, or smt-transfer.</param>
2283
2283
/// <param name="language">The language to retrieve information on.</param>
2284
-
/// <returns>Language information for the specified engine type</returns>
2284
+
/// <returns>Language information for the specified engine type.</returns>
2285
2285
/// <exception cref="ServalApiException">A server side error occurred.</exception>
/// Get information regarding a language for a given engine type
41
+
/// Get information regarding a language for a given engine type.
42
42
/// </summary>
43
43
/// <remarks>
44
44
/// This endpoint exists primarily to support `nmt` model-training since `echo` and `smt-transfer` engines support all languages equally. Given a language tag, it provides the ISO 639-3 code that the tag maps to internally
@@ -51,18 +51,22 @@ public partial class TranslationEngineTypesController
51
51
/// * **`isNative`**: Whether the base translation model supports this language without fine-tuning.
52
52
/// * **`internalCode`**: The translation model's internal language code. See more details about how the language tag is mapped to an internal code [here](https://github.com/sillsdev/serval/wiki/FLORES%E2%80%90200-Language-Code-Resolution-for-NMT-Engine).
53
53
/// </remarks>
54
-
/// <param name="engineType">A valid engine type: nmt, echo, or smt-transfer</param>
54
+
/// <param name="engineType">A valid engine type: nmt, echo, or smt-transfer.</param>
55
55
/// <param name="language">The language to retrieve information on.</param>
56
56
/// <param name="cancellationToken"></param>
57
-
/// <response code="200">Language information for the specified engine type</response>
58
-
/// <response code="401">The client is not authenticated</response>
59
-
/// <response code="403">The authenticated client cannot perform the operation</response>
60
-
/// <response code="405">The method is not supported</response>
57
+
/// <response code="200">Language information for the specified engine type.</response>
58
+
/// <response code="400">The language is not valid.</response>
59
+
/// <response code="401">The client is not authenticated.</response>
60
+
/// <response code="403">The authenticated client cannot perform the operation.</response>
61
+
/// <response code="404">The engine type is not valid.</response>
62
+
/// <response code="405">The method is not supported.</response>
0 commit comments