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: README.md
+3-7Lines changed: 3 additions & 7 deletions
Original file line number
Diff line number
Diff line change
@@ -4,7 +4,7 @@
4
4
5
5

6
6
7
-
Current LanguageTool version: **6.4**
7
+
Current LanguageTool version: **6.5**
8
8
9
9
This is a Python wrapper for [LanguageTool](https://languagetool.org). LanguageTool is open-source grammar tool, also known as the spellchecker for OpenOffice. This library allows you to make to detect grammar errors and spelling mistakes through a Python script or through a command-line interface.
10
10
@@ -193,7 +193,6 @@ Here's a full list of configuration options. See the LanguageTool [HTTPServerCon
193
193
```
194
194
'maxTextLength' - maximum text length, longer texts will cause an error (optional)
195
195
'maxTextHardLength' - maximum text length, applies even to users with a special secret 'token' parameter (optional)
196
-
'secretTokenKey' - secret JWT token key, if set by user and valid, maxTextLength can be increased by the user (optional)
197
196
'maxCheckTimeMillis' - maximum time in milliseconds allowed per check (optional)
198
197
'maxErrorsPerWordRate' - checking will stop with error if there are more rules matches per word (optional)
199
198
'maxSpellingSuggestions' - only this many spelling errors will have suggestions for performance reasons (optional,
@@ -205,17 +204,14 @@ Here's a full list of configuration options. See the LanguageTool [HTTPServerCon
205
204
'requestLimitInBytes' - maximum aggregated size of requests per requestLimitPeriodInSeconds (optional)
206
205
'timeoutRequestLimit' - maximum number of timeout request (optional)
207
206
'requestLimitPeriodInSeconds' - time period to which requestLimit and timeoutRequestLimit applies (optional)
208
-
'languageModel' - a directory with '1grams', '2grams', '3grams' sub directories which contain a Lucene index
207
+
'languageModel' - a directory with '1grams', '2grams', '3grams' sub directories per language which contain a Lucene index
209
208
each with ngram occurrence counts; activates the confusion rule if supported (optional)
210
-
'word2vecModel' - a directory with word2vec data (optional), see
0 commit comments