@digipair/skill-chatbot 0.7.2 → 0.8.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/index.cjs2.js +30143 -34645
- package/index.esm2.js +30144 -34646
- package/package.json +1 -1
- package/schema.json +29 -17
- /package/{src → libs/skill-chatbot/src}/index.d.ts +0 -0
- /package/{src → libs/skill-chatbot/src}/lib/skill-chatbot.d.ts +0 -0
package/package.json
CHANGED
package/schema.json
CHANGED
@@ -28,7 +28,7 @@
|
|
28
28
|
"schema": {
|
29
29
|
"type": "array",
|
30
30
|
"items": {
|
31
|
-
"$ref": "https://
|
31
|
+
"$ref": "https://schemas.digipair.ai/pinsSettings"
|
32
32
|
}
|
33
33
|
}
|
34
34
|
},
|
@@ -55,27 +55,27 @@
|
|
55
55
|
}
|
56
56
|
},
|
57
57
|
{
|
58
|
-
"name": "
|
58
|
+
"name": "model",
|
59
|
+
"summary": "Modèle LLM",
|
59
60
|
"required": false,
|
60
|
-
"description": "
|
61
|
+
"description": "Modèle LLM à charger",
|
61
62
|
"schema": {
|
62
|
-
"type": "
|
63
|
-
|
64
|
-
|
65
|
-
|
66
|
-
"name": "temperature",
|
67
|
-
"required": false,
|
68
|
-
"description": "Temperature du model LLM",
|
69
|
-
"schema": {
|
70
|
-
"type": "number"
|
63
|
+
"type": "array",
|
64
|
+
"items": {
|
65
|
+
"$ref": "https://schemas.digipair.ai/pinsSettings"
|
66
|
+
}
|
71
67
|
}
|
72
68
|
},
|
73
69
|
{
|
74
|
-
"name": "
|
70
|
+
"name": "embeddings",
|
71
|
+
"summary": "Modèle d'embeddings",
|
75
72
|
"required": false,
|
76
|
-
"description": "
|
73
|
+
"description": "Modèle d'embeddings à charger",
|
77
74
|
"schema": {
|
78
|
-
"type": "
|
75
|
+
"type": "array",
|
76
|
+
"items": {
|
77
|
+
"$ref": "https://schemas.digipair.ai/pinsSettings"
|
78
|
+
}
|
79
79
|
}
|
80
80
|
},
|
81
81
|
{
|
@@ -146,6 +146,18 @@
|
|
146
146
|
"summary": "Rechercher dans la conversation",
|
147
147
|
"description": "Rechercher des données dans l'historique de conversation",
|
148
148
|
"parameters": [
|
149
|
+
{
|
150
|
+
"name": "embeddings",
|
151
|
+
"summary": "Modèle d'embeddings",
|
152
|
+
"required": false,
|
153
|
+
"description": "Modèle d'embeddings à charger",
|
154
|
+
"schema": {
|
155
|
+
"type": "array",
|
156
|
+
"items": {
|
157
|
+
"$ref": "https://schemas.digipair.ai/pinsSettings"
|
158
|
+
}
|
159
|
+
}
|
160
|
+
},
|
149
161
|
{
|
150
162
|
"name": "limit",
|
151
163
|
"required": false,
|
@@ -344,7 +356,7 @@
|
|
344
356
|
"inputs": {
|
345
357
|
"type": "array",
|
346
358
|
"items": {
|
347
|
-
"$ref": "https://
|
359
|
+
"$ref": "https://schemas.digipair.ai/pinsSettings"
|
348
360
|
}
|
349
361
|
}
|
350
362
|
},
|
@@ -380,7 +392,7 @@
|
|
380
392
|
"schema": {
|
381
393
|
"type": "array",
|
382
394
|
"items": {
|
383
|
-
"$ref": "https://
|
395
|
+
"$ref": "https://schemas.digipair.ai/pinsSettings"
|
384
396
|
}
|
385
397
|
}
|
386
398
|
}
|
File without changes
|
File without changes
|