Deployed 489b9d1 with MkDocs version: 1.3.0

This commit is contained in:
2022-07-13 10:59:32 +00:00
parent f5267b5a06
commit f673e05f40
41 changed files with 9356 additions and 5 deletions

View file

@ -0,0 +1,2 @@
from .evaluated_sentence import EvaluatedSentence
from .match import Match

File diff suppressed because one or more lines are too long

View file

@ -0,0 +1,11 @@
from typing import List
from pydantic import BaseModel
from .match import Match
class EvaluatedSentence(BaseModel):
score: float
text: str
explanation: List[Match]

File diff suppressed because one or more lines are too long

File diff suppressed because one or more lines are too long

View file

@ -0,0 +1,6 @@
from pydantic import BaseModel
class Match(BaseModel):
phrase: str
score: float