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

14 lines (13 loc) 428 B
import type { Plan } from '@base/api'; export declare const computeTeeFlagForPlan: (plan?: Plan) => boolean; export declare const useAgentPlans: () => { isPlansPending: boolean; refetchPlans: () => Promise<{ legacy: Plan | undefined; default: Plan | undefined; fan: Plan | undefined; }>; legacyPlan: Plan | undefined; standardPlan: Plan | undefined; fanPlan: Plan | undefined; };