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

11 lines (10 loc) 280 B
import type React from 'react'; import type { AiAgent } from '@base/api'; type AgentUpdateProps = { accessToken?: string; agent: AiAgent; characterFile: string; refetchAgents: () => void; }; export declare const AgentUpdate: React.FC<AgentUpdateProps>; export {};