Spaces:
Sleeping
Sleeping
File size: 400 Bytes
01ad777 |
1 2 3 4 5 6 7 8 9 10 11 12 |
from datetime import datetime
from typing import List
from typing import Optional
from pydantic import BaseModel
from pydantic import Field
class ClassifyRequest(BaseModel):
"""Text Summarize request model."""
text: str = Field(..., description="The text you want to summarize", examples=["αα£α± α ααα α΅αα«α ααα α¨α¦ααα± ααα₯α΅ α ααα«α ..."])
|