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

13 lines (12 loc) 472 B
import { type GetBillingReturn } from './useBilling'; import type { AiAgent } from '@base/api'; export declare const computeCanDeployAgent: (billing: GetBillingReturn, agents: AiAgent[], tee?: boolean) => boolean; export declare const useCanDeployAgent: () => { canDeployTeeAgent: boolean; canDeployStandardAgent: boolean; isPending: boolean; refetch: () => Promise<{ canDeployTeeAgent: boolean; canDeployStandardAgent: boolean; }>; };