Conversation
Greptile SummaryThis PR documents the The changes are accurate and internally consistent: the note in
|
| Filename | Overview |
|---|---|
| client/src/nv_ingest_client/client/interface.py | Adds extract_audio_params entry to the extract() NumPy-style docstring; no logic changes. |
| docs/docs/extraction/audio.md | Adds segment_audio: True to both the local NIM and NVCF code examples, plus an explanatory note; content is correct and consistent. |
| docs/docs/extraction/nv-ingest-python-api.md | Adds missing extract_method="audio" and extract_audio_params to the audio code example, plus prose explaining segment_audio. |
| docs/docs/extraction/python-api-reference.md | Same corrections as nv-ingest-python-api.md: adds extract_method="audio", extract_audio_params, and explanatory prose. |
Flowchart
%%{init: {'theme': 'neutral'}}%%
flowchart TD
A[".extract with extract_audio_params"] --> B{Backend type?}
B -->|Parakeet ASR NIM| C{segment_audio=True?}
B -->|NVCF endpoint| C
B -->|HuggingFace fallback| D[Full transcript - segment_audio ignored]
C -->|Yes| E[One element per ASR segment]
C -->|No| F[Single transcript element]
Reviews (1): Last reviewed commit: "Add docs for segment_audio param" | Re-trigger Greptile
Description
closes #1772
Checklist