MCPcopy Create free account
hub / github.com/SkyworkAI/DeepResearchAgent / LLMExtra

Class LLMExtra

src/model/types.py:37–43  ·  view source on GitHub ↗

LLM Extra Response

Source from the content-addressed store, hash-verified

35
36
37class 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
45class LLMResponse(BaseModel):
46 """

Callers 10

__call__Method · 0.90
_format_responseMethod · 0.90
__call__Method · 0.90
_format_responseMethod · 0.90
__call__Method · 0.90
_format_responseMethod · 0.90
__call__Method · 0.90
_format_responseMethod · 0.90
_format_responseMethod · 0.90
__call__Method · 0.90

Calls

no outgoing calls

Tested by

no test coverage detected