TruthLens-Backend / schemas /request.py
Gargi Monga
Deploy backend
c8b1fd7
Raw
History Blame Contribute Delete
208 Bytes
from pydantic import BaseModel, HttpUrl
from typing import Optional
class VerificationRequest(BaseModel):
"""
Request received from frontend.
"""
text: str
url: Optional[HttpUrl] = None