File tree Expand file tree Collapse file tree 5 files changed +8
-9
lines changed Expand file tree Collapse file tree 5 files changed +8
-9
lines changed Original file line number Diff line number Diff line change 20
20
)
21
21
from .sync_client import SyncLocalLabClient
22
22
23
- __version__ = "1.0.4 "
23
+ __version__ = "1.0.5 "
24
24
__author__ = "Utkarsh"
25
25
__email__ = "utkarshweb2023@gmail.com"
26
26
Original file line number Diff line number Diff line change @@ -4,7 +4,7 @@ build-backend = "setuptools.build_meta"
4
4
5
5
[project ]
6
6
name = " locallab-client"
7
- version = " 1.0.4 "
7
+ version = " 1.0.5 "
8
8
description = " Python client for LocalLab - A local LLM server"
9
9
readme = " README.md"
10
10
authors = [
Original file line number Diff line number Diff line change 2
2
3
3
setup (
4
4
name = "locallab-client" ,
5
- version = "1.0.4 " ,
5
+ version = "1.0.5 " ,
6
6
author = "Utkarsh" ,
7
7
author_email = "utkarshweb2023@gmail.com" ,
8
8
description = "Python client for LocalLab - A local LLM server" ,
9
9
long_description = open ("README.md" ).read (),
10
10
long_description_content_type = "text/markdown" ,
11
- url = "https://github.com/yourusername/locallab " ,
11
+ url = "https://github.com/UtkarshTheDev/LocalLab " ,
12
12
packages = find_packages (),
13
13
install_requires = [
14
14
"aiohttp>=3.8.0" ,
15
15
"websockets>=10.0" ,
16
16
"pydantic>=2.0.0" ,
17
+ "asyncio>=3.4.3" ,
18
+ "nest-asyncio>=1.5.1" ,
17
19
],
18
20
python_requires = ">=3.7" ,
19
21
classifiers = [
Original file line number Diff line number Diff line change 2
2
LocalLab - A lightweight AI inference server for running LLMs locally
3
3
"""
4
4
5
- __version__ = "0.4.48"
5
+ __version__ = "0.5.0" # Updated to match setup.py
6
6
7
7
# Only import what's necessary initially, lazy-load the rest
8
8
from .logger import get_logger
11
11
from .server import start_server , cli
12
12
13
13
# 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
17
14
# from .config import MODEL_REGISTRY, DEFAULT_MODEL
18
15
# from .model_manager import ModelManager
19
16
# from .core.app import app
Original file line number Diff line number Diff line change 5
5
6
6
setup (
7
7
name = "locallab" ,
8
- version = "0.4.49 " ,
8
+ version = "0.5.0 " ,
9
9
packages = find_packages (include = ["locallab" , "locallab.*" ]),
10
10
install_requires = [
11
11
"fastapi>=0.95.0,<1.0.0" ,
You can’t perform that action at this time.
0 commit comments