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

8 lines (7 loc) 444 B
import { type AiAgentStatus } from '../api'; export interface UseAgentLogsProps { agentId?: string; agentStatus?: AiAgentStatus; initialHeight?: number; } export declare const useAgentLogs: ({ agentId, agentStatus }: UseAgentLogsProps) => import("@tanstack/react-query").UseInfiniteQueryResult<import("@tanstack/react-query").InfiniteData<import("../api").PaginatedResponse<import("../api").AgentLog> | undefined, unknown>, Error>;