Hugging Face
Models
Datasets
Spaces
Community
Docs
Enterprise
Pricing
Log In
Sign Up
Spaces:
NLP-Debater-Project
/
FastAPI-Backend-Models
like
2
Running
App
Files
Files
Community
Fetching metadata from the HF Docker repository...
91ae7d9
FastAPI-Backend-Models
/
models
/
stt.py
malek-messaoudii
Update chat voice part
a71355d
9 days ago
raw
Copy download link
history
blame
Safe
229 Bytes
from
pydantic
import
BaseModel
class
STTResponse
(
BaseModel
):
text:
str
class
Config
:
json_schema_extra = {
"example"
: {
"text"
:
"Hello, how are you today?"
}
}