LLM Extra Response
| 35 | |
| 36 | |
| 37 | class LLMExtra(BaseModel): |
| 38 | """LLM Extra Response""" |
| 39 | model_config = ConfigDict(arbitrary_types_allowed=True, extra="allow") |
| 40 | |
| 41 | file_path: Optional[str] = Field(default=None, description="The file path of the content") |
| 42 | data: Optional[Dict[str, Any]] = Field(default=None, description="The data of the content") |
| 43 | parsed_model: Optional[BaseModel] = Field(default=None, description="The parsed model of the content") |
| 44 | |
| 45 | class LLMResponse(BaseModel): |
| 46 | """ |
no outgoing calls
no test coverage detected