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

11 lines (10 loc) 447 B
import { type FleekAgentThread } from '@base/api'; import { type QueryObserverResult } from '@tanstack/react-query'; export interface UseFleekAgentThreadsResult { threads?: FleekAgentThread[]; threadsPending: boolean; threadsError?: string; threadsRefetching: boolean; refetchThreads: () => Promise<QueryObserverResult<FleekAgentThread[], Error>>; } export declare const useFleekAgentThreads: () => UseFleekAgentThreadsResult;