generaltranslation 1.1.1 → 1.1.3

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (2) hide show
  1. package/index.js +1 -0
  2. package/package.json +1 -1
package/index.js CHANGED
@@ -21,6 +21,7 @@ class GT {
21
21
  getLanguageName = getLanguageName; // e.g. 'en' => 'English'
22
22
  getLanguageCode = getLanguageCode; // e.g. 'English' => 'en'
23
23
 
24
+ // Model information functions
24
25
  getModelList = getModelList; // returns array of supported model names
25
26
  getModelLanguages = getModelLanguages; // e.g. 'mistral-7b' => ['en']
26
27
  isLanguageSupported = isLanguageSupported; // e.g. ('mistral-7b', 'en') => true
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "generaltranslation",
3
- "version": "1.1.1",
3
+ "version": "1.1.3",
4
4
  "description": "A language toolkit for AI developers",
5
5
  "main": "index.js",
6
6
  "scripts": {