File size: 262 Bytes
20b15f3
 
 
 
 
 
 
 
 
 
1
2
3
4
5
6
7
8
9
10
11
from typing import List, Literal, Optional

from pydantic import BaseModel


class SearchStatusResponse(BaseModel):
    job_id: str
    status: Literal["running", "done", "error"]
    clustered_papers: Optional[List[dict]] = None
    error: Optional[str] = None