llms-py 3.0.6__py3-none-any.whl → 3.0.8__py3-none-any.whl
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.
- llms/extensions/analytics/ui/index.mjs +1 -1
- llms/extensions/app/__init__.py +3 -1
- llms/extensions/app/ui/Recents.mjs +1 -1
- llms/extensions/app/ui/threadStore.mjs +4 -3
- llms/extensions/core_tools/__init__.py +14 -12
- llms/extensions/providers/__init__.py +2 -0
- llms/extensions/providers/anthropic.py +1 -1
- llms/extensions/providers/chutes.py +7 -9
- llms/extensions/providers/google.py +3 -3
- llms/extensions/providers/nvidia.py +9 -11
- llms/extensions/providers/openai.py +1 -3
- llms/extensions/providers/zai.py +182 -0
- llms/extensions/tools/__init__.py +140 -1
- llms/extensions/tools/ui/index.mjs +552 -50
- llms/llms.json +14 -2
- llms/main.py +461 -99
- llms/providers-extra.json +38 -0
- llms/providers.json +1 -1
- llms/ui/App.mjs +1 -1
- llms/ui/ai.mjs +1 -1
- llms/ui/app.css +287 -18
- llms/ui/ctx.mjs +16 -3
- llms/ui/index.mjs +1 -1
- llms/ui/modules/chat/ChatBody.mjs +384 -107
- llms/ui/modules/chat/index.mjs +18 -4
- llms/ui/tailwind.input.css +54 -0
- llms/ui/utils.mjs +33 -4
- {llms_py-3.0.6.dist-info → llms_py-3.0.8.dist-info}/METADATA +1 -1
- {llms_py-3.0.6.dist-info → llms_py-3.0.8.dist-info}/RECORD +33 -32
- {llms_py-3.0.6.dist-info → llms_py-3.0.8.dist-info}/WHEEL +0 -0
- {llms_py-3.0.6.dist-info → llms_py-3.0.8.dist-info}/entry_points.txt +0 -0
- {llms_py-3.0.6.dist-info → llms_py-3.0.8.dist-info}/licenses/LICENSE +0 -0
- {llms_py-3.0.6.dist-info → llms_py-3.0.8.dist-info}/top_level.txt +0 -0
llms/llms.json
CHANGED
|
@@ -223,7 +223,13 @@
|
|
|
223
223
|
},
|
|
224
224
|
"zai-coding-plan": {
|
|
225
225
|
"enabled": true,
|
|
226
|
-
"temperature": 0.7
|
|
226
|
+
"temperature": 0.7,
|
|
227
|
+
"modalities": {
|
|
228
|
+
"image": {
|
|
229
|
+
"name": "Z.ai Image",
|
|
230
|
+
"npm": "zai/image"
|
|
231
|
+
}
|
|
232
|
+
}
|
|
227
233
|
},
|
|
228
234
|
"minimax": {
|
|
229
235
|
"enabled": true,
|
|
@@ -314,7 +320,13 @@
|
|
|
314
320
|
},
|
|
315
321
|
"zai": {
|
|
316
322
|
"enabled": true,
|
|
317
|
-
"temperature": 0.7
|
|
323
|
+
"temperature": 0.7,
|
|
324
|
+
"modalities": {
|
|
325
|
+
"image": {
|
|
326
|
+
"name": "Z.ai Image",
|
|
327
|
+
"npm": "zai/image"
|
|
328
|
+
}
|
|
329
|
+
}
|
|
318
330
|
},
|
|
319
331
|
"mistral": {
|
|
320
332
|
"enabled": true,
|