diff --git a/backend/models.py b/backend/models.py index 98c00a1..00dbd39 100644 --- a/backend/models.py +++ b/backend/models.py @@ -14,6 +14,8 @@ class Agent(BaseModel): tokens_limit: int = 100000 budget_used: float = 0 budget_limit: float = 50 + account: str = "" + provider: str = "" class AgentUpdate(BaseModel): status: Literal["online", "offline", "busy"] diff --git a/frontend/src/components/agents/AgentCard.tsx b/frontend/src/components/agents/AgentCard.tsx index 493a36a..5934c1b 100644 --- a/frontend/src/components/agents/AgentCard.tsx +++ b/frontend/src/components/agents/AgentCard.tsx @@ -19,12 +19,22 @@ export function AgentCard({ agent }: { agent: any }) { > {/* Header */}