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.
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
- Pi extension that discovers models from a local [OMLX](https://github.com/Open-Model-Lookup-Exchange) server and registers them as a native Pi provider. Switch models with Pi's built-in `/model` command.
3
+ > Seamlessly integrate your local [oMLX](https://github.com/jundot/omlx) models into Pi.
4
4
 
5
- ## Install
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
+ ![Pi OMLX Picker Demo](./.assets/demo.gif)
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
- ## Configure
21
+ ## 🚀 Quick Start
12
22
 
13
- Run `/omlx-login` in Pi and paste your OMLX base URL and API key. That's it. Re-run `/omlx-login` to change credentials.
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
- Env-var overrides, model metadata overlay, and stream timeout knobs are documented in [docs/CONFIGURATION.md](./docs/CONFIGURATION.md).
27
+ Re-run `/omlx-login` to update credentials.
16
28
 
17
- ## How it works
29
+ ## ⚙️ Configuration
18
30
 
19
- On startup, the extension fetches available models from OMLX, merges local `model_settings.json` metadata, and registers an `omlx` provider in Pi. Thinking controls are applied per-request based on each model's `thinkingDefault`.
31
+ Env-var overrides, model metadata overlay, and stream timeout knobs are documented in [docs/CONFIGURATION.md](./docs/CONFIGURATION.md).
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "pi-omlx-picker",
3
- "version": "0.2.1",
3
+ "version": "0.2.2",
4
4
  "type": "module",
5
5
  "description": "Pi extension that discovers models from a local OMLX server and registers them as a native Pi provider.",
6
6
  "license": "MIT",