dataclass.llmAIModels

Classes

class dataclass.llmAIModels.AgentNodeResponse

Structured output payload produced by AgentNode.

Inherits from:

BaseModel

Attributes:

reply: str = ''
provider: str
model: str
usage: dict[(str, Any)] = <ast.Call object at 0x0000017357222890>
output_type: str = 'text'
error: str | None = None
tool_function_names: list[str] = <ast.Call object at 0x0000017357220490>
output_validator_names: list[str] = <ast.Call object at 0x0000017357222F80>
class dataclass.llmAIModels.TableDataExtractorV2Response

Structured output payload for TableDataExtractorV2.

Inherits from:

BaseModel

Attributes:

rows: int
columns: list[str]
parse_error: str | None = None
agent_response: AgentNodeResponse | None = None