UNPKG

@promptbook/azure-openai

Version:

Promptbook: Run AI apps in plain human language across multiple models and platforms

17 lines (16 loc) 1.09 kB
import { BOOK_LANGUAGE_VERSION, PROMPTBOOK_ENGINE_VERSION } from '../version'; import { compilePipelineOnRemoteServer } from '../conversion/compilePipelineOnRemoteServer'; import { RemoteLlmExecutionTools } from '../llm-providers/remote/RemoteLlmExecutionTools'; import { preparePipelineOnRemoteServer } from '../prepare/preparePipelineOnRemoteServer'; import type { Identification } from '../remote-server/socket-types/_subtypes/Identification'; import type { ApplicationModeIdentification } from '../remote-server/socket-types/_subtypes/Identification'; import type { AnonymousModeIdentification } from '../remote-server/socket-types/_subtypes/Identification'; import type { RemoteClientOptions } from '../remote-server/types/RemoteClientOptions'; export { BOOK_LANGUAGE_VERSION, PROMPTBOOK_ENGINE_VERSION }; export { compilePipelineOnRemoteServer }; export { RemoteLlmExecutionTools }; export { preparePipelineOnRemoteServer }; export type { Identification }; export type { ApplicationModeIdentification }; export type { AnonymousModeIdentification }; export type { RemoteClientOptions };