LocalLab: Run language models locally or in Google Collab with a friendly API
Project description
๐ LocalLab: Your Personal AI Lab
Run ChatGPT-like AI on your own computer! LocalLab is a server that runs AI models locally and makes them accessible from anywhere.
๐ค What is LocalLab?
LocalLab is like having your own personal ChatGPT that runs on your computer. Here's how it works:
- LocalLab Server: Runs on your computer and loads AI models
- Python Client: A separate package that connects to the server
- Access From Anywhere: Use your AI from any device with the ngrok feature
No complicated setup, no monthly fees, and your data stays private. Perfect for developers, students, researchers, or anyone who wants to experiment with AI.
๐ง How LocalLab Works (In Simple Terms)
Think of LocalLab as having two parts:
-
The Server (what you install with
pip install locallab)- This is like a mini-ChatGPT that runs on your computer
- It loads AI models and makes them available through a web server
- You start it with a simple command:
locallab start
-
The Client (what you install with
pip install locallab-client)- This is how your Python code talks to the server
- It's a separate package that connects to the server
- You use it in your code with:
client = SyncLocalLabClient("http://localhost:8000")
graph TD
A[Your Python Code] -->|Uses| B[LocalLab Client Package]
B -->|Connects to| C[LocalLab Server]
C -->|Runs| D[AI Models]
C -->|Optional| E[Ngrok for Remote Access]
style C fill:#f9f,stroke:#333,stroke-width:2px
style D fill:#bbf,stroke:#333,stroke-width:2px
The Magic Part: With the --use-ngrok option, you can access your AI from anywhere - your phone, another computer, or share with friends!
๐ฏ Key Features
๐ฆ Easy Setup ๐ Privacy First ๐ฎ Free GPU Access
๐ค Multiple Models ๐พ Memory Efficient ๐ Auto-Optimization
๐ Local or Colab โก Fast Response ๐ง Simple Server
๐ Access Anywhere ๐ Client Package ๐ก๏ธ Secure Tunneling
Two-Part System:
- LocalLab Server: Runs the AI models and exposes API endpoints
- LocalLab Client: A separate Python package (
pip install locallab-client) that connects to the server
Access From Anywhere: With built-in ngrok integration, you can securely access your LocalLab server from any device, anywhere in the world - perfect for teams, remote work, or accessing your models on the go.
๐ Two Ways to Run
-
On Your Computer (Local Mode)
๐ป Your Computer โโโ ๐ LocalLab Server โโโ ๐ค AI Model โโโ ๐ง Auto-optimization -
On Google Colab (Free GPU Mode)
โ๏ธ Google Colab โโโ ๐ฎ Free GPU โโโ ๐ LocalLab Server โโโ ๐ค AI Model โโโ โก GPU Acceleration
๐ฆ Installation & Setup
Windows Setup
-
Install Required Build Tools
- Install Microsoft C++ Build Tools
- Select "Desktop development with C++"
- Install CMake
- Add to PATH during installation
- Install Microsoft C++ Build Tools
-
Install Packages
pip install locallab locallab-client
-
Verify PATH
- If
locallabcommand isn't found, add Python Scripts to PATH:# Find Python location where python # This will show something like: C:\Users\YourName\AppData\Local\Programs\Python\Python311\python.exe
Adding to PATH in Windows:
- Press
Win + Xand select "System" - Click "Advanced system settings" on the right
- Click "Environment Variables" button
- Under "System variables", find and select "Path", then click "Edit"
- Click "New" and add your Python Scripts path (e.g.,
C:\Users\YourName\AppData\Local\Programs\Python\Python311\Scripts\) - Click "OK" on all dialogs
- Restart your command prompt
- Alternatively, use:
python -m locallab start
- If
๐ Having issues? See our Windows Troubleshooting Guide
Linux/Mac Setup
# Install both server and client packages
pip install locallab locallab-client
2. Configure the Server (Recommended)
# Run interactive configuration
locallab config
# This will help you set up:
# - Model selection
# - Memory optimizations
# - GPU settings
# - System resources
3. Start the Server
# Start with saved configuration
locallab start
# Or start with specific options
locallab start --model microsoft/phi-2 --quantize --quantize-type int8
๐ก Client Connection & Usage
After starting your LocalLab server (either locally or on Google Colab), you'll need to connect to it using the LocalLab client package. This is how your code interacts with the AI models running on the server.
Synchronous Client Usage (Easier for Beginners)
from locallab_client import SyncLocalLabClient
# Connect to server - choose ONE of these options:
# 1. For local server (default)
client = SyncLocalLabClient("http://localhost:8000")
# 2. For remote server via ngrok (when using Google Colab or --use-ngrok)
# client = SyncLocalLabClient("https://abc123.ngrok.app") # Replace with your ngrok URL
try:
print("Generating text...")
# Generate text
response = client.generate("Write a story")
print(response)
print("Streaming responses...")
# Stream responses
for token in client.stream_generate("Tell me a story"):
print(token, end="", flush=True)
print("Chat responses...")
# Chat with AI
response = client.chat([
{"role": "system", "content": "You are helpful."},
{"role": "user", "content": "Hello!"}
])
print(response.choices[0]["message"]["content"])
finally:
# Always close the client
client.close()
๐ก Important: When connecting to a server running on Google Colab or with ngrok enabled, always use the ngrok URL (https://abc123.ngrok.app) that was displayed when you started the server.
Asynchronous Client Usage (For Advanced Users)
import asyncio
from locallab_client import LocalLabClient
async def main():
# Connect to server - choose ONE of these options:
# 1. For local server (default)
client = LocalLabClient("http://localhost:8000")
# 2. For remote server via ngrok (when using Google Colab or --use-ngrok)
# client = LocalLabClient("https://abc123.ngrok.app") # Replace with your ngrok URL
try:
print("Generating text...")
# Generate text
response = await client.generate("Write a story")
print(response)
print("Streaming responses...")
# Stream responses
async for token in client.stream_generate("Tell me a story"):
print(token, end="", flush=True)
print("\nChatting with AI...")
# Chat with AI
response = await client.chat([
{"role": "system", "content": "You are helpful."},
{"role": "user", "content": "Hello!"}
])
# Extracting Content
content = response['choices'][0]['message']['content']
print(content)
finally:
# Always close the client
await client.close()
# Run the async function
asyncio.run(main())
๐ Google Colab Usage with Remote Access
Step 1: Set Up the Server on Google Colab
First, you'll set up the LocalLab server on Google Colab to use their free GPU:
# In your Colab notebook:
# 1. Install the server package
!pip install locallab
# 2. Configure with CLI (notice the ! prefix)
!locallab config
# 3. Start server with ngrok for remote access
!locallab start --use-ngrok
# The server will display a public URL like:
# ๐ Ngrok Public URL: https://abc123.ngrok.app
# COPY THIS URL - you'll need it to connect!
Step 2: Connect to Your Server
After setting up your server on Google Colab, you'll need to connect to it using the LocalLab client package. The server will display a ngrok URL that you'll use for the connection.
Using the Client Connection Examples
You can now use the client connection examples from the Client Connection & Usage section above.
Just make sure to:
- Use your ngrok URL instead of localhost
- Install the client package if needed
For example:
# In another cell in the same Colab notebook:
# 1. Install the client package
!pip install locallab-client
# 2. Import the client
from locallab_client import SyncLocalLabClient
# 3. Connect to your ngrok URL (replace with your actual URL from Step 1)
client = SyncLocalLabClient("https://abc123.ngrok.app") # โ REPLACE THIS with your URL!
# 4. Now you can use any of the client methods
response = client.generate("Write a poem about AI")
print(response)
# 5. Always close when done
client.close()
Access From Any Device
The power of using ngrok is that you can connect to your Colab server from anywhere:
# On your local computer, phone, or any device with Python:
pip install locallab-client
from locallab_client import SyncLocalLabClient
client = SyncLocalLabClient("https://abc123.ngrok.app") # โ REPLACE THIS with your URL!
response = client.generate("Hello from my device!")
print(response)
client.close()
๐ก Remote Access Tip: The ngrok URL lets you access your LocalLab server from any device - your phone, tablet, another computer, or share with teammates. See the Client Connection & Usage section above for more examples of what you can do with the client.
๐ป Requirements
Local Computer
- Python 3.8+
- 4GB RAM minimum (8GB+ recommended)
- GPU optional but recommended
- Internet connection for downloading models
Google Colab
- Just a Google account!
- Free tier works fine
๐ Features
- Easy Setup: Just pip install and run
- Multiple Models: Use any Hugging Face model
- Resource Efficient: Automatic optimization
- Privacy First: All local, no data sent to cloud
- Free GPU: Google Colab integration
- Flexible Client API: Both async and sync clients available
- Automatic Resource Management: Sessions close automatically
- Remote Access: Access your models from anywhere with ngrok integration
- Secure Tunneling: Share your models securely with teammates or access from mobile devices
- Client Libraries: Python libraries for both synchronous and asynchronous usage
๐ Client-Server Architecture
graph LR
A[Your Application] -->|Uses| B[LocalLab Client]
B -->|API Requests| C[LocalLab Server]
C -->|Runs| D[AI Models]
C -->|Optional| E[Ngrok Tunnel]
E -->|Remote Access| F[Any Device, Anywhere]
style E fill:#f9f,stroke:#333,stroke-width:2px
style F fill:#bbf,stroke:#333,stroke-width:2px
๐ Documentation
Getting Started
Advanced Topics
Deployment
๐ Need Help?
- Check FAQ
- Visit Troubleshooting
- Ask in Discussions
๐ Additional Resources
๐ Star Us!
If you find LocalLab helpful, please star our repository! It helps others discover the project.
Made with โค๏ธ by Utkarsh Tiwari GitHub โข Twitter โข LinkedIn
Project details
Release history Release notifications | RSS feed
Download files
Download the file for your platform. If you're not sure which to choose, learn more about installing packages.
Source Distribution
Built Distribution
Filter files by name, interpreter, ABI, and platform.
If you're not sure about the file name format, learn more about wheel file names.
Copy a direct link to the current filters
File details
Details for the file locallab-0.5.2.tar.gz.
File metadata
- Download URL: locallab-0.5.2.tar.gz
- Upload date:
- Size: 62.0 kB
- Tags: Source
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/6.1.0 CPython/3.9.22
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
b5a4bdb0bfb98db945b7a1d6cf1a885f43e1cd764d76df429b9fad2df3c0a7d7
|
|
| MD5 |
296ca1f753daf7870fae5ed40af1d113
|
|
| BLAKE2b-256 |
0e440469289a59185bfc1780948224af2cf1f8b383f3411417e1f58c42e6c954
|
File details
Details for the file locallab-0.5.2-py3-none-any.whl.
File metadata
- Download URL: locallab-0.5.2-py3-none-any.whl
- Upload date:
- Size: 63.3 kB
- Tags: Python 3
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/6.1.0 CPython/3.9.22
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
47d39bc081c497ed6bba87ac269582ea032b6614ce98d555898779657d703de3
|
|
| MD5 |
343447b853baeb1c3df352456d687e3c
|
|
| BLAKE2b-256 |
f822efeb6afd58e0e6ee2dd486ed77ef5c2b11250bb8a95e1aa79db8a23665e7
|