UNPKG

@promptbook/utils

Version:

Promptbook: Turn your company's scattered knowledge into AI ready books

12 lines (11 loc) 350 B
import type { CommonToolsOptions } from '../../execution/CommonToolsOptions'; import type { string_agent_url } from '../../types/typeAliases'; /** * Options for creating a Remote Agent */ export type RemoteAgentOptions = Omit<CommonToolsOptions, 'teacherAgent'> & { /** * Url of the remote agent */ agentUrl: string_agent_url; };