UNPKG

@fleek-platform/agents-ui

Version:

The Fleek Platform Agents UI provides a simple interface for deploying, monitoring, and configuring your agents––making management straightforward

7 lines (6 loc) 298 B
import type { AiAgent, AiAgentStatus } from '@base/api'; export declare const isAgentActive: (status?: AiAgentStatus) => status is "Running" | "Created"; export declare const findAgent: (agents?: AiAgent[], { status, id }?: { status?: AiAgentStatus; id?: string; }) => AiAgent | undefined;