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

10 lines (9 loc) 243 B
import type React from 'react'; import type { AiAgent } from '@base/api'; type AgentChatProps = { agent?: AiAgent; accessToken?: string; isLoggedIn?: boolean; }; export declare const AgentChat: React.FC<AgentChatProps>; export {};