File size: 245 Bytes
2f73fd7 | 1 2 3 4 5 6 7 8 9 10 11 | from pydantic import BaseModel
from typing import List
class RequestModel(BaseModel):
originId: int
source: str
class TextSimilarityRequest(BaseModel):
imageInfo: RequestModel
keyTexts: List[str]
similarityThreshold: float |