@fleek-platform/agents-ui
Version:
The Fleek Platform Agents UI provides a simple interface for deploying, monitoring, and configuring your agents––making management straightforward
18 lines (17 loc) • 711 B
TypeScript
import { type AiAgent } from '@base/api';
export type RemoteAttestationProps = {
agent: AiAgent;
};
export declare const RemoteAttestation: ({ agent }: RemoteAttestationProps) => import("react/jsx-runtime").JSX.Element;
export type DeleteAgentProps = {
agentId: string;
agentName: string;
onAgentDeleted: (agentId: string) => void;
};
export declare const DeleteAgent: ({ agentId, agentName, onAgentDeleted, }: DeleteAgentProps) => import("react/jsx-runtime").JSX.Element;
type AdvancedProps = {
agent: AiAgent;
onAgentDeleted: (agentId: string) => void;
};
export declare const Advanced: ({ agent, onAgentDeleted }: AdvancedProps) => import("react/jsx-runtime").JSX.Element;
export {};