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

11 lines (10 loc) 379 B
import { type QueryObserverResult } from '@tanstack/react-query'; import { type AiAgent } from '../api'; export interface UseAgentsResult { agents?: AiAgent[]; agentsPending: boolean; agentsError?: string; agentsRefetching: boolean; refetchAgents: () => Promise<QueryObserverResult<AiAgent[], Error>>; } export declare const useAgents: () => UseAgentsResult;