@fleek-platform/agents-ui
Version:
The Fleek Platform Agents UI provides a simple interface for deploying, monitoring, and configuring your agents––making management straightforward
13 lines (12 loc) • 341 B
TypeScript
type UseAgentUpdateArgs = {
accessToken?: string;
agentId: string;
};
export declare const useAgentUpdate: ({ agentId, accessToken, }: UseAgentUpdateArgs) => {
updateAgent: ({ payload }: {
payload: string;
}) => Promise<import("@base/api").AiAgent | undefined>;
loading: boolean;
error: string;
};
export {};