langium-ai-tools 3.0.0 → 3.2.0
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.
- package/README.md +9 -3
- package/package.json +2 -2
package/README.md
CHANGED
|
@@ -22,12 +22,18 @@ LLMs (and transformers in general), are evolving quite rapidly. With this approa
|
|
|
22
22
|
|
|
23
23
|
## Installation
|
|
24
24
|
|
|
25
|
-
|
|
25
|
+
Langium AI tools tracks tightly with Langium releases. If you're using Langium 3.X or 4.X in your project, you'll want to install the corresponding version of Langium AI Tools that matches it.
|
|
26
26
|
|
|
27
|
-
```
|
|
28
|
-
|
|
27
|
+
```bash
|
|
28
|
+
# if you're using Langium 4.1.X
|
|
29
|
+
npm i --save langium@^4.1.0
|
|
30
|
+
|
|
31
|
+
# or 3.5.X
|
|
32
|
+
npm i --save langium@^3.5.0
|
|
29
33
|
```
|
|
30
34
|
|
|
35
|
+
The same goes for the 3.X line as well. We don't actively support Langium 2.X or earlier.
|
|
36
|
+
|
|
31
37
|
## Usage
|
|
32
38
|
|
|
33
39
|
### Splitting
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "langium-ai-tools",
|
|
3
|
-
"version": "3.
|
|
3
|
+
"version": "3.2.0",
|
|
4
4
|
"description": "Tooling for building AI Applications that leverage Langium DSLs",
|
|
5
5
|
"repository": {
|
|
6
6
|
"type": "git",
|
|
@@ -46,7 +46,7 @@
|
|
|
46
46
|
],
|
|
47
47
|
"license": "MIT",
|
|
48
48
|
"dependencies": {
|
|
49
|
-
"langium": "~3.
|
|
49
|
+
"langium": "~3.2.0",
|
|
50
50
|
"levenshtein-edit-distance": "^3.0.1"
|
|
51
51
|
},
|
|
52
52
|
"volta": {
|