Deploy on Banana for fast, affordable, and easy deployment of Whisper Largev2. Get results fast with our user-friendly interface, unbeatable pricing and speed. Click the button above to deploy this model now!


Readme


INPUT

{
  "mp3BytesString": "<BASE64_STRING>"
}

OUTPUT

{
  "text": "That's one small step for man, one giant leap for mankind."
}

CODE SNIPPETS


import banana_dev as banana

model_inputs = {
  "mp3BytesString": "<BASE64_STRING>"
}

api_key = "YOUR_API_KEY"
model_key = "YOUR_MODEL_KEY"

# Run the model
out = banana.run(api_key, model_key, model_inputs)

logo