@fleek-platform/agents-ui
Version:
The Fleek Platform Agents UI provides a simple interface for deploying, monitoring, and configuring your agents––making management straightforward
14 lines (13 loc) • 545 B
TypeScript
import { type AiAgent } from '@base/api';
import { type UseMutationOptions } from '@tanstack/react-query';
type CreateAgentPayload = {
characterfile: string;
name?: string;
avatar?: string;
frameworkVersion?: string;
};
type MutationOptions = UseMutationOptions<AiAgent, Error, CreateAgentPayload, unknown>;
export declare const useCreateAgentDraft: ({ onSuccess, }?: {
onSuccess?: MutationOptions["onSuccess"];
}) => import("@tanstack/react-query").UseMutationResult<AiAgent, Error, CreateAgentPayload, unknown>;
export {};