pi-omlx-picker 0.2.1 → 0.2.2
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/.assets/demo.gif +0 -0
- package/.assets/demo.tape +31 -0
- package/README.md +19 -7
- package/package.json +1 -1
package/.assets/demo.gif
ADDED
|
Binary file
|
|
@@ -0,0 +1,31 @@
|
|
|
1
|
+
Output demo.gif
|
|
2
|
+
|
|
3
|
+
# Visual Settings
|
|
4
|
+
Set FontSize 15
|
|
5
|
+
Set Width 900
|
|
6
|
+
Set Height 500
|
|
7
|
+
Set Padding 20
|
|
8
|
+
Set Theme "Catppuccin Mocha"
|
|
9
|
+
Set WindowBar Colorful
|
|
10
|
+
|
|
11
|
+
Sleep 1s
|
|
12
|
+
|
|
13
|
+
Type "pi"
|
|
14
|
+
Enter
|
|
15
|
+
Sleep 1.5s
|
|
16
|
+
|
|
17
|
+
Type "/mo"
|
|
18
|
+
Sleep 1.5s
|
|
19
|
+
|
|
20
|
+
Enter
|
|
21
|
+
Sleep 1.5s
|
|
22
|
+
|
|
23
|
+
Down
|
|
24
|
+
Sleep 500ms
|
|
25
|
+
Down
|
|
26
|
+
Sleep 500ms
|
|
27
|
+
Up
|
|
28
|
+
Sleep 500ms
|
|
29
|
+
|
|
30
|
+
Enter
|
|
31
|
+
Sleep 3s
|
package/README.md
CHANGED
|
@@ -1,19 +1,31 @@
|
|
|
1
1
|
# Pi OMLX Picker
|
|
2
2
|
|
|
3
|
-
|
|
3
|
+
> Seamlessly integrate your local [oMLX](https://github.com/jundot/omlx) models into Pi.
|
|
4
4
|
|
|
5
|
-
|
|
5
|
+
This extension discovers models from a local OMLX server and registers them as native Pi providers. Switch between your local and remote models effortlessly using Pi's built-in `/model` command.
|
|
6
|
+
|
|
7
|
+

|
|
8
|
+
|
|
9
|
+
## ✨ Features
|
|
10
|
+
|
|
11
|
+
* **Zero-Friction Discovery:** Automatically fetches and registers available OMLX models on startup.
|
|
12
|
+
* **Native Integration:** Models show up in the standard `/model` menu—no custom commands needed for chat.
|
|
13
|
+
* **Smart Overrides:** Applies per-request thinking controls based on each model's `thinkingDefault` metadata.
|
|
14
|
+
|
|
15
|
+
## 📦 Installation
|
|
6
16
|
|
|
7
17
|
```sh
|
|
8
18
|
pi install npm:pi-omlx-picker
|
|
9
19
|
```
|
|
10
20
|
|
|
11
|
-
##
|
|
21
|
+
## 🚀 Quick Start
|
|
12
22
|
|
|
13
|
-
Run `/omlx-login` in Pi
|
|
23
|
+
1. Run `/omlx-login` in Pi.
|
|
24
|
+
2. Paste your OMLX base URL and API key when prompted.
|
|
25
|
+
3. Type `/model` to see and select your OMLX models.
|
|
14
26
|
|
|
15
|
-
|
|
27
|
+
Re-run `/omlx-login` to update credentials.
|
|
16
28
|
|
|
17
|
-
##
|
|
29
|
+
## ⚙️ Configuration
|
|
18
30
|
|
|
19
|
-
|
|
31
|
+
Env-var overrides, model metadata overlay, and stream timeout knobs are documented in [docs/CONFIGURATION.md](./docs/CONFIGURATION.md).
|