File size: 346 Bytes
fea1bd1 |
1 2 3 4 5 6 7 8 9 10 11 12 13 14 |
# agent_structs.py
# -*- coding: utf-8 -*-
"""
Este arquivo define as estruturas de dados (dataclasses) usadas pelo agente.
"""
from dataclasses import dataclass
@dataclass
class Task:
"""Representa uma tarefa identificada para o agente executar."""
task_type: str
summary: str
user_input: str
is_direct_command: bool = False |