File size: 391 Bytes
82faa1d
4ef7965
82faa1d
 
4ef7965
82faa1d
 
 
 
 
4ef7965
82faa1d
1
2
3
4
5
6
7
8
9
10
11
12
import requests

API_URL = "https://api-inference.huggingface.co/models/Sanyam0605/whisper-large-v2-hi"
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")