gzhu-biyesheji/schema/dataset.py

9 lines
177 B
Python

from pydantic import BaseModel, RootModel
from typing import List
class QAPair(BaseModel):
question: str
response: str
class QAArray(RootModel):
root: List[QAPair]