@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) • 369 B
TypeScript
import type React from 'react';
import type { FleekAgent } from '../hooks/useFleekAgents';
export type FleekAgentsChatInterfaceProps = {
agent?: FleekAgent;
status: 'true' | 'false' | undefined;
error: Error | null;
isReady: boolean;
agentIsActive: boolean;
};
export declare const FleekAgentsChatInterface: React.FC<FleekAgentsChatInterfaceProps>;