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: modules/ROOT/pages/tinymceai-limits.adoc
+1-1Lines changed: 1 addition & 1 deletion
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -15,7 +15,7 @@ TinyMCE AI implements various limits to ensure fair usage, optimal performance,
15
15
[[rate-limits]]
16
16
== Rate Limits
17
17
18
-
Rate limits control the frequency of API requests to prevent abuse and ensure service stability. The service implements limits on API requests, token usage, web search, and web scraping requests per minute. All rate limits are applied at both organization level (higher limits) and individual user level (lower limits) to ensure fair usage.
18
+
Rate limits control the frequency of requests to prevent abuse and ensure service stability. These limits apply to both plugin usage and direct API calls, as the plugin uses the API under the hood. The service implements limits on requests, token usage, web search, and web scraping requests per minute. All rate limits are applied at both organization level (higher limits) and individual user level (lower limits) to ensure fair usage.
19
19
20
20
NOTE: Specific rate limit values are subject to change and may vary based on the subscription tier. Contact support for current rate limit details for the environment.
Copy file name to clipboardExpand all lines: modules/ROOT/pages/tinymceai-models.adoc
+20-6Lines changed: 20 additions & 6 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -5,6 +5,8 @@
5
5
:description_short: AI model configuration
6
6
:keywords: AI, models, configuration, tinymceai
7
7
8
+
TinyMCE AI supports multiple AI models from different providers. Model selection and configuration can be done through the plugin UI or via the REST API. This page covers model capabilities, configuration options, and limitations that apply to both plugin and API usage.
9
+
8
10
[[recommended-agent-models]]
9
11
== Recommended: Agent Models
10
12
@@ -112,7 +114,13 @@ The agent model (`agent-1`) automatically selects the best underlying model base
112
114
* **Required capabilities** – Web search and reasoning require compatible models
113
115
* **Cost optimization** – Balances quality with cost efficiency
114
116
115
-
A model can also be specified directly in API requests for more control.
117
+
[[model-configuration]]
118
+
=== Model Configuration
119
+
120
+
Models can be configured in two ways:
121
+
122
+
* **Plugin Configuration** – Use `tinymceai_default_model`, `tinymceai_allow_model_selection`, and `tinymceai_allowed_models` options. See xref:tinymceai-chat.adoc#model-selection-configuration[Chat model configuration] for details.
123
+
* **API Configuration** – Specify the model directly in API requests for more control. See xref:tinymceai-models.adoc#api-examples[API Examples] below.
116
124
117
125
[[model-compatibility-versions]]
118
126
== Model Compatibility Versions
@@ -127,12 +135,15 @@ Compatibility versions allow TinyMCE AI to introduce new models and capabilities
127
135
[[checking-compatibility]]
128
136
=== Checking Compatibility
129
137
130
-
Check the `/v1/models` endpoint to see available models for the compatibility version. The API response includes model capabilities, limits, and availability.
138
+
To see available models for your compatibility version:
139
+
140
+
* **Via API** – Check the `/v1/models` endpoint. The API response includes model capabilities, limits, and availability.
141
+
* **Via Plugin** – Available models are shown in the model selection dropdown when `tinymceai_allow_model_selection` is enabled.
131
142
132
143
[[model-capabilities]]
133
144
== Model Capabilities
134
145
135
-
Different models support different capabilities. Check the model information endpoint to see which capabilities are available for each model.
146
+
Different models support different capabilities. Check the model information via the API endpoint or the plugin's model selection UI to see which capabilities are available for each model.
136
147
137
148
[[web-search]]
138
149
=== Web Search
@@ -149,9 +160,9 @@ Enable step-by-step reasoning to see the AI's problem-solving process. Some mode
149
160
* Reasoning is always active during inference.
150
161
* Reasoning cannot be turned off via the API.
151
162
152
-
To determine if a model has always-on reasoning, check the API response when listing models. Models with mandatory reasoning will indicate this in their capability structure.
163
+
To determine if a model has always-on reasoning, check the API response when listing models or refer to the model capabilities in the plugin UI. Models with mandatory reasoning will indicate this in their capability structure.
153
164
154
-
NOTE: Please observe, that model names such as `gpt-5`, `claude-4-sonnet`, etc. are examples. Actual available models depend on the service's compatibility version. Use the `/v1/models` endpoint to see current available models for the environment.
165
+
NOTE: Please observe, that model names such as `gpt-5`, `claude-4-sonnet`, etc. are examples. Actual available models depend on the service's compatibility version. Use the `/v1/models` API endpoint or check the plugin's model selection dropdown to see current available models for your environment.
155
166
156
167
[[web-scraping]]
157
168
=== Web Scraping
@@ -196,6 +207,8 @@ Models scheduled for removal will include a `removal` field with an ISO 8601 dat
196
207
[[api-examples]]
197
208
== API Examples
198
209
210
+
The following examples show how to configure models when using the REST API directly. For plugin configuration, see xref:tinymceai-chat.adoc#model-selection-configuration[Chat model configuration].
211
+
199
212
[[model-selection]]
200
213
=== Model Selection
201
214
@@ -293,6 +306,7 @@ For complete documentation on model endpoints, compatibility versions, and capab
293
306
[[related-features]]
294
307
== Related Features
295
308
296
-
* xref:tinymceai-chat.adoc[Chat] – Use models in interactive AI discussions.
309
+
* xref:tinymceai-chat.adoc[Chat] – Use models in interactive AI discussions and configure model selection.
297
310
* xref:tinymceai-review-plugin.adoc[Review] – Apply models to content analysis and improvement.
298
311
* xref:tinymceai-actions-plugin.adoc[Quick Actions] – Use models for content transformation tasks.
312
+
* xref:tinymceai.adoc[Plugin Reference] – Complete plugin configuration options including model settings.
0 commit comments