Skip to content

Commit 5a33378

Browse files
committed
Fixed Versions Issue
1 parent 7fbae8b commit 5a33378

File tree

5 files changed

+8
-9
lines changed

5 files changed

+8
-9
lines changed

client/python_client/__init__.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -20,7 +20,7 @@
2020
)
2121
from .sync_client import SyncLocalLabClient
2222

23-
__version__ = "1.0.4"
23+
__version__ = "1.0.5"
2424
__author__ = "Utkarsh"
2525
__email__ = "utkarshweb2023@gmail.com"
2626

client/python_client/pyproject.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@ build-backend = "setuptools.build_meta"
44

55
[project]
66
name = "locallab-client"
7-
version = "1.0.4"
7+
version = "1.0.5"
88
description = "Python client for LocalLab - A local LLM server"
99
readme = "README.md"
1010
authors = [

client/python_client/setup.py

Lines changed: 4 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -2,18 +2,20 @@
22

33
setup(
44
name="locallab-client",
5-
version="1.0.4",
5+
version="1.0.5",
66
author="Utkarsh",
77
author_email="utkarshweb2023@gmail.com",
88
description="Python client for LocalLab - A local LLM server",
99
long_description=open("README.md").read(),
1010
long_description_content_type="text/markdown",
11-
url="https://github.com/yourusername/locallab",
11+
url="https://github.com/UtkarshTheDev/LocalLab",
1212
packages=find_packages(),
1313
install_requires=[
1414
"aiohttp>=3.8.0",
1515
"websockets>=10.0",
1616
"pydantic>=2.0.0",
17+
"asyncio>=3.4.3",
18+
"nest-asyncio>=1.5.1",
1719
],
1820
python_requires=">=3.7",
1921
classifiers=[

locallab/__init__.py

Lines changed: 1 addition & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
LocalLab - A lightweight AI inference server for running LLMs locally
33
"""
44

5-
__version__ = "0.4.48"
5+
__version__ = "0.5.0" # Updated to match setup.py
66

77
# Only import what's necessary initially, lazy-load the rest
88
from .logger import get_logger
@@ -11,9 +11,6 @@
1111
from .server import start_server, cli
1212

1313
# Other imports will be lazy-loaded when needed
14-
15-
# Don't import these by default to speed up CLI startup
16-
# They will be imported when needed
1714
# from .config import MODEL_REGISTRY, DEFAULT_MODEL
1815
# from .model_manager import ModelManager
1916
# from .core.app import app

setup.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@
55

66
setup(
77
name="locallab",
8-
version="0.4.49",
8+
version="0.5.0",
99
packages=find_packages(include=["locallab", "locallab.*"]),
1010
install_requires=[
1111
"fastapi>=0.95.0,<1.0.0",

0 commit comments

Comments
 (0)