llms-py 3.0.0b3__tar.gz → 3.0.0b4__tar.gz
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_py-3.0.0b3/llms_py.egg-info → llms_py-3.0.0b4}/PKG-INFO +1 -1
- {llms_py-3.0.0b3 → llms_py-3.0.0b4}/llms/__pycache__/main.cpython-314.pyc +0 -0
- {llms_py-3.0.0b3 → llms_py-3.0.0b4}/llms/main.py +1 -1
- {llms_py-3.0.0b3 → llms_py-3.0.0b4}/llms/ui/ai.mjs +1 -1
- llms_py-3.0.0b4/llms/ui/app.css +5000 -0
- {llms_py-3.0.0b3 → llms_py-3.0.0b4}/llms/ui/modules/chat/ChatBody.mjs +4 -3
- {llms_py-3.0.0b3 → llms_py-3.0.0b4}/llms/ui/modules/chat/index.mjs +3 -1
- {llms_py-3.0.0b3 → llms_py-3.0.0b4/llms_py.egg-info}/PKG-INFO +1 -1
- {llms_py-3.0.0b3 → llms_py-3.0.0b4}/pyproject.toml +1 -1
- {llms_py-3.0.0b3 → llms_py-3.0.0b4}/setup.py +1 -1
- llms_py-3.0.0b3/llms/ui/app.css +0 -2
- {llms_py-3.0.0b3 → llms_py-3.0.0b4}/LICENSE +0 -0
- {llms_py-3.0.0b3 → llms_py-3.0.0b4}/MANIFEST.in +0 -0
- {llms_py-3.0.0b3 → llms_py-3.0.0b4}/README.md +0 -0
- {llms_py-3.0.0b3 → llms_py-3.0.0b4}/llms/__init__.py +0 -0
- {llms_py-3.0.0b3 → llms_py-3.0.0b4}/llms/__main__.py +0 -0
- {llms_py-3.0.0b3 → llms_py-3.0.0b4}/llms/__pycache__/__init__.cpython-312.pyc +0 -0
- {llms_py-3.0.0b3 → llms_py-3.0.0b4}/llms/__pycache__/__init__.cpython-313.pyc +0 -0
- {llms_py-3.0.0b3 → llms_py-3.0.0b4}/llms/__pycache__/__init__.cpython-314.pyc +0 -0
- {llms_py-3.0.0b3 → llms_py-3.0.0b4}/llms/__pycache__/__main__.cpython-312.pyc +0 -0
- {llms_py-3.0.0b3 → llms_py-3.0.0b4}/llms/__pycache__/__main__.cpython-314.pyc +0 -0
- {llms_py-3.0.0b3 → llms_py-3.0.0b4}/llms/__pycache__/llms.cpython-312.pyc +0 -0
- {llms_py-3.0.0b3 → llms_py-3.0.0b4}/llms/__pycache__/main.cpython-312.pyc +0 -0
- {llms_py-3.0.0b3 → llms_py-3.0.0b4}/llms/__pycache__/main.cpython-313.pyc +0 -0
- {llms_py-3.0.0b3 → llms_py-3.0.0b4}/llms/__pycache__/plugins.cpython-314.pyc +0 -0
- {llms_py-3.0.0b3 → llms_py-3.0.0b4}/llms/index.html +0 -0
- {llms_py-3.0.0b3 → llms_py-3.0.0b4}/llms/llms.json +0 -0
- {llms_py-3.0.0b3 → llms_py-3.0.0b4}/llms/providers/__pycache__/anthropic.cpython-314.pyc +0 -0
- {llms_py-3.0.0b3 → llms_py-3.0.0b4}/llms/providers/__pycache__/chutes.cpython-314.pyc +0 -0
- {llms_py-3.0.0b3 → llms_py-3.0.0b4}/llms/providers/__pycache__/google.cpython-314.pyc +0 -0
- {llms_py-3.0.0b3 → llms_py-3.0.0b4}/llms/providers/__pycache__/nvidia.cpython-314.pyc +0 -0
- {llms_py-3.0.0b3 → llms_py-3.0.0b4}/llms/providers/__pycache__/openai.cpython-314.pyc +0 -0
- {llms_py-3.0.0b3 → llms_py-3.0.0b4}/llms/providers/__pycache__/openrouter.cpython-314.pyc +0 -0
- {llms_py-3.0.0b3 → llms_py-3.0.0b4}/llms/providers/anthropic.py +0 -0
- {llms_py-3.0.0b3 → llms_py-3.0.0b4}/llms/providers/chutes.py +0 -0
- {llms_py-3.0.0b3 → llms_py-3.0.0b4}/llms/providers/google.py +0 -0
- {llms_py-3.0.0b3 → llms_py-3.0.0b4}/llms/providers/nvidia.py +0 -0
- {llms_py-3.0.0b3 → llms_py-3.0.0b4}/llms/providers/openai.py +0 -0
- {llms_py-3.0.0b3 → llms_py-3.0.0b4}/llms/providers/openrouter.py +0 -0
- {llms_py-3.0.0b3 → llms_py-3.0.0b4}/llms/providers-extra.json +0 -0
- {llms_py-3.0.0b3 → llms_py-3.0.0b4}/llms/providers.json +0 -0
- {llms_py-3.0.0b3 → llms_py-3.0.0b4}/llms/ui/App.mjs +0 -0
- {llms_py-3.0.0b3 → llms_py-3.0.0b4}/llms/ui/ctx.mjs +0 -0
- {llms_py-3.0.0b3 → llms_py-3.0.0b4}/llms/ui/fav.svg +0 -0
- {llms_py-3.0.0b3 → llms_py-3.0.0b4}/llms/ui/index.mjs +0 -0
- {llms_py-3.0.0b3 → llms_py-3.0.0b4}/llms/ui/lib/chart.js +0 -0
- {llms_py-3.0.0b3 → llms_py-3.0.0b4}/llms/ui/lib/charts.mjs +0 -0
- {llms_py-3.0.0b3 → llms_py-3.0.0b4}/llms/ui/lib/color.js +0 -0
- {llms_py-3.0.0b3 → llms_py-3.0.0b4}/llms/ui/lib/highlight.min.mjs +0 -0
- {llms_py-3.0.0b3 → llms_py-3.0.0b4}/llms/ui/lib/idb.min.mjs +0 -0
- {llms_py-3.0.0b3 → llms_py-3.0.0b4}/llms/ui/lib/marked.min.mjs +0 -0
- {llms_py-3.0.0b3 → llms_py-3.0.0b4}/llms/ui/lib/servicestack-client.mjs +0 -0
- {llms_py-3.0.0b3 → llms_py-3.0.0b4}/llms/ui/lib/servicestack-vue.mjs +0 -0
- {llms_py-3.0.0b3 → llms_py-3.0.0b4}/llms/ui/lib/vue-router.min.mjs +0 -0
- {llms_py-3.0.0b3 → llms_py-3.0.0b4}/llms/ui/lib/vue.min.mjs +0 -0
- {llms_py-3.0.0b3 → llms_py-3.0.0b4}/llms/ui/lib/vue.mjs +0 -0
- {llms_py-3.0.0b3 → llms_py-3.0.0b4}/llms/ui/markdown.mjs +0 -0
- {llms_py-3.0.0b3 → llms_py-3.0.0b4}/llms/ui/modules/analytics.mjs +0 -0
- {llms_py-3.0.0b3 → llms_py-3.0.0b4}/llms/ui/modules/chat/SettingsDialog.mjs +0 -0
- {llms_py-3.0.0b3 → llms_py-3.0.0b4}/llms/ui/modules/layout.mjs +0 -0
- {llms_py-3.0.0b3 → llms_py-3.0.0b4}/llms/ui/modules/model-selector.mjs +0 -0
- {llms_py-3.0.0b3 → llms_py-3.0.0b4}/llms/ui/modules/threads/Recents.mjs +0 -0
- {llms_py-3.0.0b3 → llms_py-3.0.0b4}/llms/ui/modules/threads/index.mjs +0 -0
- {llms_py-3.0.0b3 → llms_py-3.0.0b4}/llms/ui/modules/threads/threadStore.mjs +0 -0
- {llms_py-3.0.0b3 → llms_py-3.0.0b4}/llms/ui/tailwind.input.css +0 -0
- {llms_py-3.0.0b3 → llms_py-3.0.0b4}/llms/ui/typography.css +0 -0
- {llms_py-3.0.0b3 → llms_py-3.0.0b4}/llms/ui/utils.mjs +0 -0
- {llms_py-3.0.0b3 → llms_py-3.0.0b4}/llms_py.egg-info/SOURCES.txt +0 -0
- {llms_py-3.0.0b3 → llms_py-3.0.0b4}/llms_py.egg-info/dependency_links.txt +0 -0
- {llms_py-3.0.0b3 → llms_py-3.0.0b4}/llms_py.egg-info/entry_points.txt +0 -0
- {llms_py-3.0.0b3 → llms_py-3.0.0b4}/llms_py.egg-info/not-zip-safe +0 -0
- {llms_py-3.0.0b3 → llms_py-3.0.0b4}/llms_py.egg-info/requires.txt +0 -0
- {llms_py-3.0.0b3 → llms_py-3.0.0b4}/llms_py.egg-info/top_level.txt +0 -0
- {llms_py-3.0.0b3 → llms_py-3.0.0b4}/requirements.txt +0 -0
- {llms_py-3.0.0b3 → llms_py-3.0.0b4}/setup.cfg +0 -0
- {llms_py-3.0.0b3 → llms_py-3.0.0b4}/tests/test_async.py +0 -0
- {llms_py-3.0.0b3 → llms_py-3.0.0b4}/tests/test_config.py +0 -0
- {llms_py-3.0.0b3 → llms_py-3.0.0b4}/tests/test_integration.py +0 -0
- {llms_py-3.0.0b3 → llms_py-3.0.0b4}/tests/test_provider_checks.py +0 -0
- {llms_py-3.0.0b3 → llms_py-3.0.0b4}/tests/test_provider_config.py +0 -0
- {llms_py-3.0.0b3 → llms_py-3.0.0b4}/tests/test_utils.py +0 -0
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
Metadata-Version: 2.4
|
|
2
2
|
Name: llms-py
|
|
3
|
-
Version: 3.0.
|
|
3
|
+
Version: 3.0.0b4
|
|
4
4
|
Summary: A lightweight CLI tool and OpenAI-compatible server for querying multiple Large Language Model (LLM) providers
|
|
5
5
|
Home-page: https://github.com/ServiceStack/llms
|
|
6
6
|
Author: ServiceStack
|
|
Binary file
|