Skip to content

Commit e5f2f39

Browse files
committed
Updated LocalLab v0.3.2 and Updated Docs
1 parent a67b4b1 commit e5f2f39

File tree

3 files changed

+5
-3
lines changed

3 files changed

+5
-3
lines changed

docs/README.md

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -48,6 +48,8 @@ docs/
4848
│ ├── troubleshooting.md # Solve common issues
4949
│ ├── advanced.md # Advanced usage
5050
│ └── contributing.md # Contribution guidelines
51+
│ └── environment_variables.md # Environment variables guidelines
52+
5153
5254
├── clients/ # Client library documentation
5355
│ ├── python/ # Python client guide
@@ -59,7 +61,7 @@ docs/
5961
│ └── production.md # Production setup
6062
6163
├── colab/ # Google Colab integration
62-
│ └── guide.ipynb # Interactive notebook
64+
│ └── locallab_colab_guide.ipynb # Interactive notebook
6365
6466
└── features/ # Feature documentation
6567
├── models.md # Model management

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.1"
5+
__version__ = "0.3.2"
66

77
from typing import Dict, Any, Optional
88
import logging

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

0 commit comments

Comments
 (0)