You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: docs/cli/README.md
+49Lines changed: 49 additions & 0 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -18,6 +18,22 @@ locallab start
18
18
locallab chat
19
19
```
20
20
21
+
### 🤖 Model Management Quick Start
22
+
23
+
```bash
24
+
# Discover available models
25
+
locallab models discover
26
+
27
+
# Download a model for faster startup
28
+
locallab models download microsoft/phi-2
29
+
30
+
# List your cached models
31
+
locallab models list
32
+
33
+
# Get detailed model information
34
+
locallab models info microsoft/phi-2
35
+
```
36
+
21
37
## 📋 Available Commands
22
38
23
39
### Core Commands
@@ -43,6 +59,39 @@ locallab chat
43
59
|`locallab logs`| View server logs |[CLI Guide](../guides/cli.md#view-logs)|
44
60
|`locallab version`| Show version information |[CLI Guide](../guides/cli.md#version)|
45
61
62
+
## 🤖 Model Management
63
+
64
+
LocalLab includes comprehensive model management capabilities to help you download, organize, and manage AI models locally. This allows for faster server startup and offline usage.
0 commit comments