llms-py 2.0.3__tar.gz → 2.0.4__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-2.0.3/llms_py.egg-info → llms_py-2.0.4}/PKG-INFO +1 -1
- {llms_py-2.0.3 → llms_py-2.0.4}/llms.py +2 -2
- {llms_py-2.0.3 → llms_py-2.0.4/llms_py.egg-info}/PKG-INFO +1 -1
- {llms_py-2.0.3 → llms_py-2.0.4}/pyproject.toml +1 -1
- {llms_py-2.0.3 → llms_py-2.0.4}/setup.py +1 -1
- {llms_py-2.0.3 → llms_py-2.0.4}/LICENSE +0 -0
- {llms_py-2.0.3 → llms_py-2.0.4}/MANIFEST.in +0 -0
- {llms_py-2.0.3 → llms_py-2.0.4}/README.md +0 -0
- {llms_py-2.0.3 → llms_py-2.0.4}/index.html +0 -0
- {llms_py-2.0.3 → llms_py-2.0.4}/llms.json +0 -0
- {llms_py-2.0.3 → llms_py-2.0.4}/llms_py.egg-info/SOURCES.txt +0 -0
- {llms_py-2.0.3 → llms_py-2.0.4}/llms_py.egg-info/dependency_links.txt +0 -0
- {llms_py-2.0.3 → llms_py-2.0.4}/llms_py.egg-info/entry_points.txt +0 -0
- {llms_py-2.0.3 → llms_py-2.0.4}/llms_py.egg-info/not-zip-safe +0 -0
- {llms_py-2.0.3 → llms_py-2.0.4}/llms_py.egg-info/requires.txt +0 -0
- {llms_py-2.0.3 → llms_py-2.0.4}/llms_py.egg-info/top_level.txt +0 -0
- {llms_py-2.0.3 → llms_py-2.0.4}/requirements.txt +0 -0
- {llms_py-2.0.3 → llms_py-2.0.4}/setup.cfg +0 -0
- {llms_py-2.0.3 → llms_py-2.0.4}/ui/App.mjs +0 -0
- {llms_py-2.0.3 → llms_py-2.0.4}/ui/ChatPrompt.mjs +0 -0
- {llms_py-2.0.3 → llms_py-2.0.4}/ui/Main.mjs +0 -0
- {llms_py-2.0.3 → llms_py-2.0.4}/ui/Recents.mjs +0 -0
- {llms_py-2.0.3 → llms_py-2.0.4}/ui/Sidebar.mjs +0 -0
- {llms_py-2.0.3 → llms_py-2.0.4}/ui/app.css +0 -0
- {llms_py-2.0.3 → llms_py-2.0.4}/ui/fav.svg +0 -0
- {llms_py-2.0.3 → llms_py-2.0.4}/ui/lib/highlight.min.mjs +0 -0
- {llms_py-2.0.3 → llms_py-2.0.4}/ui/lib/idb.min.mjs +0 -0
- {llms_py-2.0.3 → llms_py-2.0.4}/ui/lib/marked.min.mjs +0 -0
- {llms_py-2.0.3 → llms_py-2.0.4}/ui/lib/servicestack-client.min.mjs +0 -0
- {llms_py-2.0.3 → llms_py-2.0.4}/ui/lib/servicestack-vue.min.mjs +0 -0
- {llms_py-2.0.3 → llms_py-2.0.4}/ui/lib/vue-router.min.mjs +0 -0
- {llms_py-2.0.3 → llms_py-2.0.4}/ui/lib/vue.min.mjs +0 -0
- {llms_py-2.0.3 → llms_py-2.0.4}/ui/lib/vue.mjs +0 -0
- {llms_py-2.0.3 → llms_py-2.0.4}/ui/markdown.mjs +0 -0
- {llms_py-2.0.3 → llms_py-2.0.4}/ui/tailwind.input.css +0 -0
- {llms_py-2.0.3 → llms_py-2.0.4}/ui/threadStore.mjs +0 -0
- {llms_py-2.0.3 → llms_py-2.0.4}/ui/typography.css +0 -0
- {llms_py-2.0.3 → llms_py-2.0.4}/ui/utils.mjs +0 -0
- {llms_py-2.0.3 → llms_py-2.0.4}/ui.json +0 -0
|
@@ -19,7 +19,7 @@ from aiohttp import web
|
|
|
19
19
|
from pathlib import Path
|
|
20
20
|
from importlib import resources # Py≥3.9 (pip install importlib_resources for 3.7/3.8)
|
|
21
21
|
|
|
22
|
-
VERSION = "2.0.
|
|
22
|
+
VERSION = "2.0.4"
|
|
23
23
|
g_config_path = None
|
|
24
24
|
g_ui_path = None
|
|
25
25
|
g_config = None
|
|
@@ -829,7 +829,7 @@ def main():
|
|
|
829
829
|
|
|
830
830
|
try:
|
|
831
831
|
from importlib.resources import files
|
|
832
|
-
_ROOT = files("llms")
|
|
832
|
+
_ROOT = files("llms-py")
|
|
833
833
|
_log(f"RESOURCE ROOT: {_ROOT}")
|
|
834
834
|
except ModuleNotFoundError:
|
|
835
835
|
# package not installed
|
|
@@ -4,7 +4,7 @@ build-backend = "setuptools.build_meta"
|
|
|
4
4
|
|
|
5
5
|
[project]
|
|
6
6
|
name = "llms-py"
|
|
7
|
-
version = "2.0.
|
|
7
|
+
version = "2.0.4"
|
|
8
8
|
description = "A lightweight CLI tool and OpenAI-compatible server for querying multiple Large Language Model (LLM) providers"
|
|
9
9
|
readme = "README.md"
|
|
10
10
|
license = "BSD-3-Clause"
|
|
@@ -16,7 +16,7 @@ with open(os.path.join(this_directory, "requirements.txt"), encoding="utf-8") as
|
|
|
16
16
|
|
|
17
17
|
setup(
|
|
18
18
|
name="llms-py",
|
|
19
|
-
version="2.0.
|
|
19
|
+
version="2.0.4",
|
|
20
20
|
author="ServiceStack",
|
|
21
21
|
author_email="team@servicestack.net",
|
|
22
22
|
description="A lightweight CLI tool and OpenAI-compatible server for querying multiple Large Language Model (LLM) providers",
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|