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

10 lines (9 loc) 393 B
import { type AiAgentStatus } from '@base/api'; type UseAgentStatusArgs = { agentId?: string; refetchInterval?: number | false; agentStatus?: AiAgentStatus; enabled?: boolean; }; export declare const useAgentStatus: ({ agentId, refetchInterval, agentStatus, enabled, }: UseAgentStatusArgs) => import("@tanstack/react-query").UseQueryResult<"true" | "false", Error>; export {};