File size: 309 Bytes
62151d3
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
from pydantic import BaseModel


class TranscriptAnalysisResponse(BaseModel):
    id: str
    summary: str
    action_items: list[str]


class BatchTranscriptAnalysisRequest(BaseModel):
    transcripts: list[str]


class BatchTranscriptAnalysisResponse(BaseModel):
    items: list[TranscriptAnalysisResponse]