Skip to content

Commit 131ca14

Browse files
committed
Updated package v3.6
1 parent 3024093 commit 131ca14

File tree

3 files changed

+8
-5
lines changed

3 files changed

+8
-5
lines changed

locallab/__init__.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
LocalLab: Run LLMs locally with a friendly API similar to OpenAI
33
"""
44

5-
__version__ = "0.3.5"
5+
__version__ = "0.3.6"
66

77
from typing import Dict, Any, Optional
88

locallab/config.py

Lines changed: 6 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -338,9 +338,12 @@ def estimate_model_requirements(model_id: str) -> Optional[Dict[str, Any]]:
338338

339339
return requirements
340340
except Exception as e:
341-
logging.error(f"Error estimating requirements for {
342-
model_id}: {str(e)}")
343-
return None
341+
342+
logging.error(
343+
f"Error estimating requirements for {model_id}: {str(e)}"
344+
)
345+
346+
return None
344347

345348

346349
# Add custom model if specified

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.3.5",
8+
version="0.3.6",
99
packages=find_packages(include=["locallab", "locallab.*"]),
1010
install_requires=[
1111
"fastapi>=0.95.0,<1.0.0",

0 commit comments

Comments
 (0)