6 lines
90 B
Python
6 lines
90 B
Python
from pydantic import BaseModel
|
|
|
|
|
|
class Match(BaseModel):
|
|
phrase: str
|
|
score: float
|