Hugging Face
Models
Datasets
Spaces
Posts
Docs
Solutions
Pricing
Log In
Sign Up
Spaces:
imrnh
/
docker-whisper-large-v3
like
1
Runtime error
App
Files
Files
Community
1a77602
docker-whisper-large-v3
/
app.py
imrnh
Update app.py
1a77602
12 months ago
raw
Copy download link
history
blame
Safe
189 Bytes
from
fastapi
import
FastAPI
import
gradio
as
gr
app = FastAPI()
gr.load(
"models/openai/whisper-large-v3"
).launch()
@app.get(
"/"
)
def
fastapi_endpoint
():
return
{
"api"
:
"This is api"
}