Hugging Face
Models
Datasets
Spaces
Posts
Docs
Enterprise
Pricing
Log In
Sign Up
Spaces:
pythonitalia
/
realtime-transcription
like
1
Build error
App
Files
Files
Community
Fetching metadata from the HF Docker repository...
1ba4a0c
realtime-transcription
/
server
/
src
/
main.py
rrevo
http
1ba4a0c
about 1 year ago
raw
Copy download link
history
blame
224 Bytes
from
typing
import
Union
from
fastapi
import
FastAPI
app = FastAPI()
@app.get(
"/"
)
def
read_root
():
return
{
"status"
:
"ok"
}
@app.post(
"/transcribe"
)
def
transcribe
(
audio:
bytes
):
return
{
"transcribe"
:
"hello"
}