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 0x0000028E21710A30>
output_type: str = 'text'
error: str | None = None
tool_function_names: list[str] = <ast.Call object at 0x0000028E21710640>
output_validator_names: list[str] = <ast.Call object at 0x0000028E21713A60>
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