@promptbook/remote-client
Version:
Promptbook: Turn your company's scattered knowledge into AI ready books
12 lines (11 loc) • 328 B
TypeScript
import type { CommonToolsOptions } from '../../execution/CommonToolsOptions';
import type { string_agent_url } from '../../types/typeAliases';
/**
* Options for creating a Remote Agent
*/
export type RemoteAgentOptions = CommonToolsOptions & {
/**
* Url of the remote agent
*/
agentUrl: string_agent_url;
};