@fleek-platform/agents-ui
Version:
The Fleek Platform Agents UI provides a simple interface for deploying, monitoring, and configuring your agents––making management straightforward
15 lines (14 loc) • 420 B
TypeScript
import type React from 'react';
import type { AiAgent } from '@base/api';
import { type FormVersion } from '@utils/elizaVersionHelpers';
type AgentChatProps = {
agent?: AiAgent;
status: 'true' | 'false' | undefined;
error: Error | null;
isReady: boolean;
agentIsActive: boolean;
version: FormVersion;
retry: () => void;
};
export declare const AgentChat: React.FC<AgentChatProps>;
export {};