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
@@ -165,6 +170,11 @@ An extensible skill framework that gives her real-world capabilities. Weather, s
165
170
166
171
<divalign="center">
167
172
<imgsrc="docs/assets/architecture.png"alt="OpenHer Persona Engine Architecture"width="90%">
173
+
174
+
<br>
175
+
176
+
[](https://www.youtube.com/watch?v=9X8CnuJpc9M)
177
+
168
178
</div>
169
179
170
180
**The core insight:** no line of prompt describes her personality. The Critic perceives 8-dimensional context, 5 drives metabolize with real time, and the Genome Engine's random neural network fuses it all into 8 behavioral signals — what the LLM reads is not an instruction, but a living personality state. Different seeds → different people → emergent surprises.
@@ -295,19 +305,30 @@ python main.py
295
305
296
306
You should see:
297
307
```
298
-
INFO: Uvicorn running on http://0.0.0.0:8800
308
+
INFO: Uvicorn running on http://0.0.0.0:8000
299
309
✓ GenomeEngine loaded · 10 personas available
300
310
```
301
311
302
312
### 4. Launch the Desktop Client
303
313
314
+
**Recommended: Download pre-built app**
315
+
316
+
Download the latest `OpenHer.app.zip` from [GitHub Releases](https://github.com/kellyvv/OpenHer/releases), unzip and double-click to open.
317
+
318
+
> ⚠️ macOS may warn "unverified developer" on first launch — right-click → Open → Trust.
319
+
320
+
<details>
321
+
<summary>🔧 Developers: Build from source</summary>
322
+
304
323
```bash
305
324
cd desktop/OpenHer
306
325
chmod +x run.sh
307
326
./run.sh # Builds SwiftUI app and launches OpenHer.app
308
327
```
309
328
310
-
> Requires macOS 14.0+ and Xcode Command Line Tools (`xcode-select --install`).
329
+
Requires macOS 14.0+ and Xcode Command Line Tools (`xcode-select --install`).
330
+
331
+
</details>
311
332
312
333
### 5. Long-Term Memory (Optional)
313
334
@@ -332,6 +353,50 @@ Set in `.env`:
332
353
EVERMEMOS_BASE_URL=http://localhost:1995/api/v1
333
354
```
334
355
356
+
### 💬 WeChat Integration (Optional)
357
+
358
+
Connect OpenHer to WeChat via [wechat-to-anything](https://www.npmjs.com/package/wechat-to-anything) for the full text, voice, and photo experience.
359
+
360
+
**How it works:** A lightweight Python adapter (`wechat_adapter.py`) translates the OpenHer REST API into OpenAI-compatible format. `wechat-to-anything` handles WeChat message routing.
361
+
362
+
```
363
+
WeChat user ←→ wechat-to-anything ←→ wechat_adapter.py ←→ OpenHer
0 commit comments