UNPKG

@promptbook/remote-server

Version:

Promptbook: Create persistent AI agents that turn your company's scattered knowledge into action

36 lines (35 loc) 1.4 kB
import type { Registration } from '../../utils/misc/$Register'; /** * Registration of LLM provider * * Warning: This is not useful for the end user, it is just a side effect of the mechanism that handles all available LLM tools * * @public exported from `@promptbook/openai` * @public exported from `@promptbook/wizard` * @public exported from `@promptbook/cli` */ export declare const _OpenAiRegistration: Registration; /** * Registration of the OpenAI Assistant provider * * Note: [🏐] Configurations registrations are done in register-constructor.ts BUT constructor register-constructor.ts * * @public exported from `@promptbook/openai` * @public exported from `@promptbook/wizard` * @public exported from `@promptbook/cli` */ export declare const _OpenAiAssistantRegistration: Registration; /** * Registration of the OpenAI Compatible provider * * Note: [🏐] Configurations registrations are done in register-constructor.ts BUT constructor register-constructor.ts * * @public exported from `@promptbook/openai` * @public exported from `@promptbook/wizard` * @public exported from `@promptbook/cli` */ export declare const _OpenAiCompatibleRegistration: Registration; /** * Note: OpenAiCompatibleExecutionTools is an abstract class and cannot be registered directly. * It serves as a base class for OpenAiExecutionTools and other compatible implementations. */