All models
Audiov1.0.0
GPT-4o Transcribe
Speech-to-text with GPT-4o, stronger on accents and noise
2 inputsTEXTSTRUCTURED
Demo coming soon
Demo coming soon
Output
Fill in the inputs and run the node to see its output here.
Run it from your code
The same node, called by id from any surface. Every tab pins gpt-4o-transcribe and passes the ports below. Full guide.
import { BlitClient } from "@blitflow/sdk";
const { runNode } = new BlitClient({ apiKey: process.env.BLITFLOW_TOKEN });
const { outputs } = await runNode("gpt-4o-transcribe", {
audio: { ref: "https://..." },
language: { value: "en" },
});# Install once, then sign in
npm install -g blitflow
blitflow login
blitflow node gpt-4o-transcribe \
-i audio=@https://... \
-i language="en"{
"name": "runs_node",
"arguments": {
"node": "gpt-4o-transcribe",
"inputs": {
"audio": {
"ref": "https://..."
},
"language": {
"value": "en"
}
}
}
}curl https://studio.blitflow.com/api/v1/runs/node \
-H "Authorization: Bearer $BLITFLOW_TOKEN" \
-H "Content-Type: application/json" \
-d '{"node":"gpt-4o-transcribe","inputs":{"audio":{"ref":"https://..."},"language":{"value":"en"}}}'Schema
Inputs
| audio* | AUDIO | ||
| language | TEXT | en |
Outputs
| text | TEXT | ||
| segments | STRUCTURED |