UNPKG

@promptbook/azure-openai

Version:

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

91 lines (90 loc) 5.22 kB
import { BOOK_LANGUAGE_VERSION, PROMPTBOOK_ENGINE_VERSION } from '../version'; import { getParserForCommand } from '../commands/_common/getParserForCommand'; import { parseCommand } from '../commands/_common/parseCommand'; import type { CommandParser } from '../commands/_common/types/CommandParser'; import type { PipelineBothCommandParser } from '../commands/_common/types/CommandParser'; import type { PipelineHeadCommandParser } from '../commands/_common/types/CommandParser'; import type { PipelineTaskCommandParser } from '../commands/_common/types/CommandParser'; import type { CommandUsagePlace } from '../commands/_common/types/CommandUsagePlaces'; import type { BookVersionCommand } from '../commands/BOOK_VERSION/BookVersionCommand'; import { bookVersionCommandParser } from '../commands/BOOK_VERSION/bookVersionCommandParser'; import { expectCommandParser } from '../commands/EXPECT/expectCommandParser'; import type { ForeachCommand } from '../commands/FOREACH/ForeachCommand'; import { foreachCommandParser } from '../commands/FOREACH/foreachCommandParser'; import { formatCommandParser } from '../commands/FORMAT/formatCommandParser'; import type { FormfactorCommand } from '../commands/FORMFACTOR/FormfactorCommand'; import { formfactorCommandParser } from '../commands/FORMFACTOR/formfactorCommandParser'; import { COMMANDS } from '../commands/index'; import type { JokerCommand } from '../commands/JOKER/JokerCommand'; import { jokerCommandParser } from '../commands/JOKER/jokerCommandParser'; import type { KnowledgeCommand } from '../commands/KNOWLEDGE/KnowledgeCommand'; import { knowledgeCommandParser } from '../commands/KNOWLEDGE/knowledgeCommandParser'; import { knowledgeSourceContentToName } from '../commands/KNOWLEDGE/utils/knowledgeSourceContentToName'; import type { ModelCommand } from '../commands/MODEL/ModelCommand'; import { modelCommandParser } from '../commands/MODEL/modelCommandParser'; import type { ParameterCommand } from '../commands/PARAMETER/ParameterCommand'; import { parameterCommandParser } from '../commands/PARAMETER/parameterCommandParser'; import type { PersonaCommand } from '../commands/PERSONA/PersonaCommand'; import { personaCommandParser } from '../commands/PERSONA/personaCommandParser'; import type { PostprocessCommand } from '../commands/POSTPROCESS/PostprocessCommand'; import { postprocessCommandParser } from '../commands/POSTPROCESS/postprocessCommandParser'; import type { SectionCommand } from '../commands/SECTION/SectionCommand'; import { sectionCommandParser } from '../commands/SECTION/sectionCommandParser'; import type { UrlCommand } from '../commands/URL/UrlCommand'; import { urlCommandParser } from '../commands/URL/urlCommandParser'; import type { ActionCommand } from '../commands/X_ACTION/ActionCommand'; import { actionCommandParser } from '../commands/X_ACTION/actionCommandParser'; import type { InstrumentCommand } from '../commands/X_INSTRUMENT/InstrumentCommand'; import { instrumentCommandParser } from '../commands/X_INSTRUMENT/instrumentCommandParser'; import { addPipelineCommand } from '../utils/editable/edit-pipeline-string/addPipelineCommand'; import { deflatePipeline } from '../utils/editable/edit-pipeline-string/deflatePipeline'; import { removePipelineCommand } from '../utils/editable/edit-pipeline-string/removePipelineCommand'; import type { PipelineEditableSerialized } from '../utils/editable/types/PipelineEditableSerialized'; import { isFlatPipeline } from '../utils/editable/utils/isFlatPipeline'; import { renamePipelineParameter } from '../utils/editable/utils/renamePipelineParameter'; import { stringifyPipelineJson } from '../utils/editable/utils/stringifyPipelineJson'; export { BOOK_LANGUAGE_VERSION, PROMPTBOOK_ENGINE_VERSION }; export { getParserForCommand }; export { parseCommand }; export type { CommandParser }; export type { PipelineBothCommandParser }; export type { PipelineHeadCommandParser }; export type { PipelineTaskCommandParser }; export type { CommandUsagePlace }; export type { BookVersionCommand }; export { bookVersionCommandParser }; export { expectCommandParser }; export type { ForeachCommand }; export { foreachCommandParser }; export { formatCommandParser }; export type { FormfactorCommand }; export { formfactorCommandParser }; export { COMMANDS }; export type { JokerCommand }; export { jokerCommandParser }; export type { KnowledgeCommand }; export { knowledgeCommandParser }; export { knowledgeSourceContentToName }; export type { ModelCommand }; export { modelCommandParser }; export type { ParameterCommand }; export { parameterCommandParser }; export type { PersonaCommand }; export { personaCommandParser }; export type { PostprocessCommand }; export { postprocessCommandParser }; export type { SectionCommand }; export { sectionCommandParser }; export type { UrlCommand }; export { urlCommandParser }; export type { ActionCommand }; export { actionCommandParser }; export type { InstrumentCommand }; export { instrumentCommandParser }; export { addPipelineCommand }; export { deflatePipeline }; export { removePipelineCommand }; export type { PipelineEditableSerialized }; export { isFlatPipeline }; export { renamePipelineParameter }; export { stringifyPipelineJson };