Hugging Face
Models
Datasets
Spaces
Posts
Docs
Enterprise
Pricing
Log In
Sign Up
Spaces:
KTH
/
kth-qa
like
0
Runtime error
App
Files
Files
Community
Fetching metadata from the HF Docker repository...
main
kth-qa
/
schema.py
erseux
new huggingface structure
cc0bd0f
almost 2 years ago
raw
Copy download link
history
blame
contribute
delete
164 Bytes
from
typing
import
List
from
pydantic
import
BaseModel
class
Question
(
BaseModel
):
question:
str
class
Answer
(
BaseModel
):
answer:
str
urls:
List
[
str
]