Beta
Explore
Marketplace
Neural Labs
Playground
Wallet
Docs
Omeck – AI Model by Tafar | AlphaNeural AI
You can deploy this model and start earning money today!
Tafar
/
Omeck
like
0
climate
conversational
en
fr
es
fka/awesome-chatgpt-prompts
afl-3.0
us
Views
No views yet
Model card
Files and Versions
Community
API
Deploy
import requests
API_URL = "
https://api-inference.huggingface.co/models/openai/whisper-large-v3
" headers = {"Authorization": "Bearer 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"}
def query(filename): with open(filename, "rb") as f: data = f.read() response = requests.post(API_URL, headers=headers, data=data) return response.json()
output = query("sample1.flac")