@promptbook/remote-server
Version:
Promptbook: Create persistent AI agents that turn your company's scattered knowledge into action
16 lines (15 loc) • 508 B
TypeScript
import type { CommonToolsOptions } from '../../execution/CommonToolsOptions';
import type { string_agent_url } from '../../types/string_agent_url';
/**
* Options for creating a Remote Agent
*/
export type RemoteAgentOptions = Omit<CommonToolsOptions, 'teacherAgent'> & {
/**
* Url of the remote agent
*/
agentUrl: string_agent_url;
/**
* Additional HTTP headers sent to the remote agent profile, chat, and voice endpoints.
*/
requestHeaders?: Record<string, string>;
};