33Base URL:
44
55``` text
6- http://127.0.0.1:8765
6+ http://127.0.0.1:5178
77```
88
99The FastAPI server is the stable integration layer. Germinator, plugins, Max patches,
@@ -64,25 +64,25 @@ complete route list lives in `docs/api_reference.md`.
6464Health:
6565
6666``` bash
67- curl http://127.0.0.1:8765 /health
67+ curl http://127.0.0.1:5178 /health
6868```
6969
7070Models:
7171
7272``` bash
73- curl http://127.0.0.1:8765 /models
73+ curl http://127.0.0.1:5178 /models
7474```
7575
7676Hugging Face access check for Python-provider weights:
7777
7878``` bash
79- curl " http://127.0.0.1:8765 /huggingface/status?check_models=true"
79+ curl " http://127.0.0.1:5178 /huggingface/status?check_models=true"
8080```
8181
8282Generate a new layer:
8383
8484``` bash
85- curl -X POST http://127.0.0.1:8765 /generate \
85+ curl -X POST http://127.0.0.1:5178 /generate \
8686 -H " content-type: application/json" \
8787 -d ' {
8888 "provider": "mock",
@@ -100,7 +100,7 @@ curl -X POST http://127.0.0.1:8765/generate \
100100Morph selected audio:
101101
102102``` bash
103- curl -X POST http://127.0.0.1:8765 /audio-to-audio \
103+ curl -X POST http://127.0.0.1:5178 /audio-to-audio \
104104 -H " content-type: application/json" \
105105 -d ' {
106106 "provider": "stable_audio_python",
@@ -117,7 +117,7 @@ curl -X POST http://127.0.0.1:8765/audio-to-audio \
117117Inpaint selected regions:
118118
119119``` bash
120- curl -X POST http://127.0.0.1:8765 /inpaint \
120+ curl -X POST http://127.0.0.1:5178 /inpaint \
121121 -H " content-type: application/json" \
122122 -d ' {
123123 "provider": "stable_audio_python",
@@ -134,7 +134,7 @@ curl -X POST http://127.0.0.1:8765/inpaint \
134134Continue a clip:
135135
136136``` bash
137- curl -X POST http://127.0.0.1:8765 /continue \
137+ curl -X POST http://127.0.0.1:5178 /continue \
138138 -H " content-type: application/json" \
139139 -d ' {
140140 "provider": "stable_audio_python",
@@ -151,7 +151,7 @@ curl -X POST http://127.0.0.1:8765/continue \
151151Submit an async render job:
152152
153153``` bash
154- curl -X POST http://127.0.0.1:8765 /jobs/submit \
154+ curl -X POST http://127.0.0.1:5178 /jobs/submit \
155155 -H " content-type: application/json" \
156156 -d ' {
157157 "mode": "text-to-audio",
@@ -168,14 +168,14 @@ curl -X POST http://127.0.0.1:8765/jobs/submit \
168168Load and control LoRA:
169169
170170``` bash
171- curl -X POST http://127.0.0.1:8765 /lora/load \
171+ curl -X POST http://127.0.0.1:5178 /lora/load \
172172 -H " content-type: application/json" \
173173 -d ' {
174174 "provider": "stable_audio_python",
175175 "paths": ["/path/to/your_style.safetensors"]
176176 }'
177177
178- curl -X POST http://127.0.0.1:8765 /lora/strength \
178+ curl -X POST http://127.0.0.1:5178 /lora/strength \
179179 -H " content-type: application/json" \
180180 -d ' {
181181 "provider": "stable_audio_python",
@@ -187,25 +187,25 @@ curl -X POST http://127.0.0.1:8765/lora/strength \
187187Job lookup:
188188
189189``` bash
190- curl http://127.0.0.1:8765 /jobs/JOB_ID
190+ curl http://127.0.0.1:5178 /jobs/JOB_ID
191191```
192192
193193Job event stream:
194194
195195``` text
196- ws://127.0.0.1:8765 /jobs/JOB_ID/events
196+ ws://127.0.0.1:5178 /jobs/JOB_ID/events
197197```
198198
199199Generated library:
200200
201201``` bash
202- curl http://127.0.0.1:8765 /library
202+ curl http://127.0.0.1:5178 /library
203203```
204204
205205Reveal a generated file in Finder on macOS:
206206
207207``` bash
208- curl -X POST http://127.0.0.1:8765 /files/reveal \
208+ curl -X POST http://127.0.0.1:5178 /files/reveal \
209209 -H " content-type: application/json" \
210210 -d ' {"path":"output/audio/ceramic_impact.wav"}'
211211```
0 commit comments