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
Checkpoint: in-flight signal listener, sonicfield bridge, floating panel & mic tap
Captures ~68 files of work-in-progress (new signal_listener/sonicfield/raw_audio
modules, macOS FloatingPanel + MicTapManager + FloatingListenerView, project meta
files) as a clean base before the hmm→oída rename.
Copy file name to clipboardExpand all lines: README.md
+44-17Lines changed: 44 additions & 17 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -50,16 +50,19 @@ New user-facing commands and UI copy use lowercase `hmm`.
50
50
51
51
## Quick Start
52
52
53
+
Prerequisites: Python 3.12+, `uv`, and `ffmpeg` for non-WAV uploads or browser
54
+
recordings.
55
+
53
56
Install dependencies:
54
57
55
58
```bash
56
-
uv sync
59
+
uv sync --extra dev
57
60
```
58
61
59
-
Run the daemon in development mode with the local stub engine:
62
+
Run the daemon (MOSS-Audio on Apple Silicon is the default profile):
60
63
61
64
```bash
62
-
uv run hmm --profile stub --host 127.0.0.1 --port 8765
65
+
uv run hmm --host 127.0.0.1 --port 8765# add --profile stub for a model-free dev run
63
66
```
64
67
65
68
Open the dashboard:
@@ -71,9 +74,10 @@ http://127.0.0.1:8765
71
74
Generate a normalized listening event:
72
75
73
76
```bash
77
+
uv run python -c "import numpy as np, soundfile as sf; t=np.arange(16000)/16000; sf.write('/tmp/hmm-tone.wav',(0.15*np.sin(2*np.pi*440*t)).astype('float32'),16000)"
0 commit comments