plutoedge commited on
Commit
c11c9f6
·
verified ·
1 Parent(s): 24bd962

Upload README.md with huggingface_hub

Browse files
Files changed (1) hide show
  1. README.md +13 -1
README.md CHANGED
@@ -81,15 +81,27 @@ PLUTO_ACTION: {"type": "multi_trigger", "params": [
81
 
82
  ## Quickstart with Ollama
83
 
 
84
  ```bash
85
  # Install Ollama on Raspberry Pi
86
  curl -fsSL https://ollama.ai/install.sh | sh
87
 
88
- # Pull and run PlutoEdge directly from HuggingFace
89
  ollama pull hf.co/plutoedge/PlutoEdge-1.5B
90
  ollama run hf.co/plutoedge/PlutoEdge-1.5B
91
  ```
92
 
 
 
 
 
 
 
 
 
 
 
 
93
  Or use with [PlutoClaw](https://github.com/plutoedge-dev/plutoclaw) for full GPIO automation:
94
 
95
  ```bash
 
81
 
82
  ## Quickstart with Ollama
83
 
84
+ **Option 1 — Pull directly from HuggingFace:**
85
  ```bash
86
  # Install Ollama on Raspberry Pi
87
  curl -fsSL https://ollama.ai/install.sh | sh
88
 
89
+ # Pull and run PlutoEdge
90
  ollama pull hf.co/plutoedge/PlutoEdge-1.5B
91
  ollama run hf.co/plutoedge/PlutoEdge-1.5B
92
  ```
93
 
94
+ **Option 2 — Build from PlutoClaw repo (recommended for full GPIO automation):**
95
+ ```bash
96
+ # Install Ollama on Raspberry Pi
97
+ curl -fsSL https://ollama.ai/install.sh | sh
98
+
99
+ # Clone PlutoClaw and register PlutoEdge locally
100
+ git clone https://github.com/plutoedge-dev/plutoclaw.git
101
+ cd plutoclaw/models/PlutoEdge-1.5B-v4
102
+ ollama create plutoedge -f Modelfile
103
+ ```
104
+
105
  Or use with [PlutoClaw](https://github.com/plutoedge-dev/plutoclaw) for full GPIO automation:
106
 
107
  ```bash