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) 278 B
import type { Plan } from '@base/api'; export declare const getAgentPlan: (plans: Plan[]) => Plan | undefined; export declare const useAgentPlan: () => { data: Plan | undefined; isPending: boolean; refetch: () => Promise<{ data: Plan | undefined; }>; };