YanTianlong commited on
Commit
888fdee
·
1 Parent(s): f7bbebe

Record segmented node smoke tests

Browse files
Files changed (2) hide show
  1. docs/todo.md +2 -0
  2. docs/work-log.md +59 -0
docs/todo.md CHANGED
@@ -98,6 +98,8 @@ from scaffold to a working Gradio app.
98
  - [ ] Start Space and confirm Gradio loads.
99
  - [ ] Start ComfyUI from the Space process.
100
  - [ ] Submit a minimal prompt to ComfyUI and receive a response.
 
 
101
  - [ ] Run a tiny TTS-only workflow.
102
  - [ ] Run a short ASR-only workflow.
103
  - [ ] Run SRT split -> VoxCPM -> SRT merge.
 
98
  - [ ] Start Space and confirm Gradio loads.
99
  - [ ] Start ComfyUI from the Space process.
100
  - [ ] Submit a minimal prompt to ComfyUI and receive a response.
101
+ - [x] Run a DeepSeek LLM node smoke test.
102
+ - [x] Run a MelBand RoFormer smoke test.
103
  - [ ] Run a tiny TTS-only workflow.
104
  - [ ] Run a short ASR-only workflow.
105
  - [ ] Run SRT split -> VoxCPM -> SRT merge.
docs/work-log.md CHANGED
@@ -282,6 +282,65 @@ Output reported by ComfyUI:
282
  audio/api_smoke_voicegate_00001.mp3
283
  ```
284
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
285
  ## Secrets and API Keys
286
 
287
  `DEEPSEEK_API_KEY` should be stored only as a Hugging Face Space Secret.
 
282
  audio/api_smoke_voicegate_00001.mp3
283
  ```
284
 
285
+ ## Segmented Workflow Smoke Tests
286
+
287
+ ### DeepSeek LLM Node
288
+
289
+ On 2026-06-05, `RH_LLMAPI_NODE` was tested through ComfyUI in Dev Mode using
290
+ the Space `DEEPSEEK_API_KEY` secret. The key was not printed.
291
+
292
+ Minimal workflow:
293
+
294
+ ```text
295
+ RH_LLMAPI_NODE -> easy showAnything
296
+ ```
297
+
298
+ Prompt:
299
+
300
+ ```text
301
+ Translate to Simplified Chinese: VoiceGate smoke test.
302
+ ```
303
+
304
+ Result:
305
+
306
+ ```text
307
+ status_str: success
308
+ output: VoiceGate 冒烟测试。
309
+ ```
310
+
311
+ This confirms the RunningHub LLM node can read the Space secret and call the
312
+ DeepSeek-compatible API endpoint.
313
+
314
+ ### MelBand RoFormer
315
+
316
+ On 2026-06-05, `MelBandRoFormerModelLoader` and `MelBandRoFormerSampler` were
317
+ tested through ComfyUI in CPU mode.
318
+
319
+ Input:
320
+
321
+ ```text
322
+ 1 second synthetic 440 Hz WAV generated with ffmpeg
323
+ ```
324
+
325
+ Minimal workflow:
326
+
327
+ ```text
328
+ LoadAudio -> MelBandRoFormerModelLoader -> MelBandRoFormerSampler
329
+ -> SaveAudioMP3(vocals)
330
+ -> SaveAudioMP3(instruments)
331
+ ```
332
+
333
+ Result:
334
+
335
+ ```text
336
+ status_str: success
337
+ audio/melband_smoke_vocals_00001.mp3
338
+ audio/melband_smoke_instruments_00001.mp3
339
+ ```
340
+
341
+ CPU-mode runtime for the 1 second smoke input was about 51 seconds. Real runs
342
+ should execute inside a `@spaces.GPU` function.
343
+
344
  ## Secrets and API Keys
345
 
346
  `DEEPSEEK_API_KEY` should be stored only as a Hugging Face Space Secret.