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) 316 B
import type { Message } from '@langchain/langgraph-sdk'; interface UseFleekAgentChatHistoryResult { historyMessages: Message[]; isHistoryLoaded: boolean; reloadHistory: () => void; error: Error | null; } export declare const useFleekAgentChatHistory: () => UseFleekAgentChatHistoryResult; export {};