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) 328 B
import type { Message } from '@langchain/langgraph-sdk'; import type { MessageTuple } from '../types'; export declare function useRawMessageStream(): { tuples: MessageTuple<string>[]; loading: boolean; error: Error | null; isGeneratingImage: boolean; sendMessage: (userMessage: Message) => Promise<void>; };