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

12 lines (11 loc) 335 B
import type { Plan } from '@base/api'; export declare const getAgentPlan: (plans: Plan[], planName: string) => Plan | undefined; export declare const useAgentPlan: ({ planName }: { planName: string; }) => { data: Plan | undefined; isPending: boolean; refetch: () => Promise<{ data: Plan | undefined; }>; };