@promptbook/remote-client
Version:
Promptbook: Create persistent AI agents that turn your company's scattered knowledge into action
12 lines (11 loc) • 460 B
TypeScript
import { AzureOpenAiExecutionTools } from './AzureOpenAiExecutionTools';
import type { AzureOpenAiExecutionToolsOptions } from './AzureOpenAiExecutionToolsOptions';
/**
* Execution Tools for calling Azure OpenAI API
*
* @public exported from `@promptbook/azure-openai`
*/
export declare const createAzureOpenAiExecutionTools: ((options: AzureOpenAiExecutionToolsOptions) => AzureOpenAiExecutionTools) & {
packageName: string;
className: string;
};