@@ -240,7 +236,7 @@ Note that we do not include examples for our client libraries in every single se
Please note that newlines will split sentences when split_sentences=1. We recommend cleaning files so they don't contain breaking sentences or setting the parameter split_sentences to nonewlines.
- Please note that this value will be ignored when using next-gen models (model_type_used=quality_optimized) and a value of:
+ Please note that this value may be overridden by the translation engine. When overridden, a value of:
0 will be used if tag_handling is not enabled
nonewlines will be used if tag_handling is enabled
diff --git a/docs/learning-how-tos/examples-and-guides/translation-beginners-guide.mdx b/docs/learning-how-tos/examples-and-guides/translation-beginners-guide.mdx
index 4c1670b3..48337845 100644
--- a/docs/learning-how-tos/examples-and-guides/translation-beginners-guide.mdx
+++ b/docs/learning-how-tos/examples-and-guides/translation-beginners-guide.mdx
@@ -817,11 +817,9 @@ Naturally, the API tries to provide excellent translation quality and low latenc
If you omit the `model_type`, the API normally defaults to `latency_optimized`.
-### Special cases
+### Notes
-* If your request omits the `source_lang`, the API will use next-generation models to ensure the best possible language detection.
-* [tag handling v2](/docs/xml-and-html-handling/tag-handling-v2#whats-new-in-v2) uses next-generation models. It is compatible with all `model_type` values.
-* For some languages, like Thai, the API uses the same model, regardless of requested `model_type`. This behavior may change as our models evolve.
+* All features and language pairs are compatible with all `model_type` values.
## Limits
diff --git a/docs/xml-and-html-handling/html.mdx b/docs/xml-and-html-handling/html.mdx
index c4de23e3..2699a7f3 100644
--- a/docs/xml-and-html-handling/html.mdx
+++ b/docs/xml-and-html-handling/html.mdx
@@ -20,7 +20,7 @@ The default value for the `split_sentences` parameter for all requests where `ta
The default value `split_sentences` for text translations where `tag_handling` is not set to `html` is `1`, meaning the translation engine splits on punctuation and on newlines.
-Please note that for next-gen models, the parameter `split_sentences`passed by the user is ignored and a value of `nonewlines`is used for maximum translation quality.
+Please note that when using HTML tag handling, the `split_sentences` parameter defaults to `nonewlines` for maximum translation quality.
### Disable translation of elements
diff --git a/docs/xml-and-html-handling/structured-content.mdx b/docs/xml-and-html-handling/structured-content.mdx
index 363f2f0a..89cca58a 100644
--- a/docs/xml-and-html-handling/structured-content.mdx
+++ b/docs/xml-and-html-handling/structured-content.mdx
@@ -5,9 +5,7 @@ description: "Learn how to work with structured XML content with the DeepL API."
When enabling `tag_handling` by setting it to `xml`, the DeepL API is able to process structured XML content. This includes whole XML files, as the following example shows.
-Please note that for XML structured content in classic models, we set the parameter `split_sentences` to `nonewlines` to make sure that newlines do not alter the results. The response is beautified for better readability.
-
-Please note that for next-gen models, the parameter `split_sentences`passed by the user is ignored and a value of `nonewlines`is used for maximum translation quality.
+Please note that for XML structured content, the `split_sentences` parameter is set to `nonewlines` to ensure that newlines do not alter the results. The response is beautified for better readability.
Parameters and corresponding results:
diff --git a/docs/xml-and-html-handling/tag-handling-v2.mdx b/docs/xml-and-html-handling/tag-handling-v2.mdx
index 2bb2be4e..4a2fd366 100644
--- a/docs/xml-and-html-handling/tag-handling-v2.mdx
+++ b/docs/xml-and-html-handling/tag-handling-v2.mdx
@@ -175,7 +175,7 @@ A: Yes, simply set `tag_handling_version: v1` in your API requests.
**Q: Does v2 work with all DeepL API features?**
-A: Tag handling v2 works with all standard API features including glossaries and formality settings. However, it currently only supports the `quality_optimized` model type.
+A: Tag handling v2 works with all standard API features and `model_type`s.
**Q: Is HTML also strictly parsed?**