UNPKG

@reliverse/rse-sdk

Version:

@reliverse/rse-sdk without cli. @reliverse/rse-sdk allows you to create new plugins for @reliverse/rse CLI, interact with reliverse.org, and even extend your own CLI functionality (you may also try @reliverse/dler-sdk for this case).

6 lines (5 loc) 233 B
import type { AIAgentOptions } from "./ai-types"; /** * Invokes a specific agent based on provided options. */ export declare function aiAgenticTool({ config, agent, isKeyEnsured, memory, target, }: AIAgentOptions): Promise<void>;