@promptbook/openai 0.72.0-7 → 0.72.0-9
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/README.md +72 -64
- package/esm/index.es.js +99 -7
- package/esm/index.es.js.map +1 -1
- package/esm/typings/src/_packages/browser.index.d.ts +2 -0
- package/esm/typings/src/_packages/cli.index.d.ts +20 -0
- package/esm/typings/src/_packages/core.index.d.ts +20 -16
- package/esm/typings/src/_packages/documents.index.d.ts +8 -0
- package/esm/typings/src/_packages/legacy-documents.index.d.ts +8 -0
- package/esm/typings/src/_packages/markdown-utils.index.d.ts +6 -0
- package/esm/typings/src/_packages/node.index.d.ts +10 -4
- package/esm/typings/src/_packages/pdf.index.d.ts +8 -0
- package/esm/typings/src/_packages/types.index.d.ts +15 -5
- package/esm/typings/src/_packages/website-crawler.index.d.ts +8 -0
- package/esm/typings/src/collection/constructors/createCollectionFromDirectory.d.ts +5 -3
- package/esm/typings/src/config.d.ts +6 -0
- package/esm/typings/src/conversion/pipelineStringToJson.d.ts +3 -1
- package/esm/typings/src/dialogs/callback/CallbackInterfaceToolsOptions.d.ts +2 -2
- package/esm/typings/src/dialogs/simple-prompt/SimplePromptInterfaceTools.d.ts +3 -3
- package/esm/typings/src/execution/{CommonExecutionToolsOptions.d.ts → CommonToolsOptions.d.ts} +1 -1
- package/esm/typings/src/execution/ExecutionTools.d.ts +26 -6
- package/esm/typings/src/execution/FilesystemTools.d.ts +9 -0
- package/esm/typings/src/execution/createPipelineExecutor/10-executePipeline.d.ts +1 -1
- package/esm/typings/src/execution/createPipelineExecutor/20-executeTemplate.d.ts +1 -6
- package/esm/typings/src/execution/createPipelineExecutor/40-executeAttempts.d.ts +1 -6
- package/esm/typings/src/execution/translation/automatic-translate/translateMessages.d.ts +1 -0
- package/esm/typings/src/execution/utils/$provideExecutionToolsForNode.d.ts +13 -0
- package/esm/typings/src/llm-providers/_common/{$llmToolsMetadataRegister.d.ts → register/$llmToolsMetadataRegister.d.ts} +4 -1
- package/esm/typings/src/llm-providers/_common/{$llmToolsRegister.d.ts → register/$llmToolsRegister.d.ts} +5 -2
- package/esm/typings/src/llm-providers/_common/{createLlmToolsFromConfigurationFromEnv.d.ts → register/$provideLlmToolsConfigurationFromEnv.d.ts} +3 -3
- package/esm/typings/src/llm-providers/_common/{getLlmToolsForCli.d.ts → register/$provideLlmToolsForCli.d.ts} +4 -11
- package/esm/typings/src/llm-providers/_common/{getLlmToolsForTestingAndScriptsAndPlayground.d.ts → register/$provideLlmToolsForTestingAndScriptsAndPlayground.d.ts} +4 -3
- package/esm/typings/src/llm-providers/_common/{createLlmToolsFromEnv.d.ts → register/$provideLlmToolsFromEnv.d.ts} +6 -5
- package/esm/typings/src/llm-providers/_common/{$registeredLlmToolsMessage.d.ts → register/$registeredLlmToolsMessage.d.ts} +5 -2
- package/esm/typings/src/llm-providers/_common/{LlmToolsConfiguration.d.ts → register/LlmToolsConfiguration.d.ts} +5 -4
- package/esm/typings/src/llm-providers/_common/{LlmToolsMetadata.d.ts → register/LlmToolsMetadata.d.ts} +5 -4
- package/esm/typings/src/llm-providers/_common/{LlmToolsOptions.d.ts → register/LlmToolsOptions.d.ts} +4 -1
- package/esm/typings/src/llm-providers/_common/{createLlmToolsFromConfiguration.d.ts → register/createLlmToolsFromConfiguration.d.ts} +5 -4
- package/esm/typings/src/llm-providers/anthropic-claude/AnthropicClaudeExecutionToolsOptions.d.ts +3 -3
- package/esm/typings/src/llm-providers/anthropic-claude/register-configuration.d.ts +4 -3
- package/esm/typings/src/llm-providers/anthropic-claude/register-constructor.d.ts +4 -3
- package/esm/typings/src/llm-providers/azure-openai/AzureOpenAiExecutionToolsOptions.d.ts +2 -2
- package/esm/typings/src/llm-providers/azure-openai/register-configuration.d.ts +4 -3
- package/esm/typings/src/llm-providers/azure-openai/register-constructor.d.ts +4 -3
- package/esm/typings/src/llm-providers/mocked/MockedEchoLlmExecutionTools.d.ts +3 -3
- package/esm/typings/src/llm-providers/mocked/MockedFackedLlmExecutionTools.d.ts +3 -3
- package/esm/typings/src/llm-providers/multiple/MultipleLlmExecutionTools.d.ts +1 -0
- package/esm/typings/src/llm-providers/openai/OpenAiExecutionToolsOptions.d.ts +2 -2
- package/esm/typings/src/llm-providers/openai/register-configuration.d.ts +5 -4
- package/esm/typings/src/llm-providers/openai/register-constructor.d.ts +5 -4
- package/esm/typings/src/llm-providers/remote/interfaces/PromptbookServer_ListModels_Request.d.ts +1 -1
- package/esm/typings/src/llm-providers/remote/interfaces/PromptbookServer_Prompt_Request.d.ts +1 -1
- package/esm/typings/src/llm-providers/remote/interfaces/RemoteLlmExecutionToolsOptions.d.ts +3 -3
- package/esm/typings/src/llm-providers/remote/interfaces/RemoteServerOptions.d.ts +2 -2
- package/esm/typings/src/personas/preparePersona.d.ts +2 -1
- package/esm/typings/src/prepare/PrepareAndScrapeOptions.d.ts +8 -7
- package/esm/typings/src/prepare/preparePipeline.d.ts +2 -1
- package/esm/typings/src/prepare/prepareTemplates.d.ts +2 -1
- package/esm/typings/src/scrapers/_common/Converter.d.ts +4 -10
- package/esm/typings/src/scrapers/_common/Scraper.d.ts +4 -9
- package/esm/typings/src/scrapers/_common/prepareKnowledgePieces.d.ts +2 -1
- package/esm/typings/src/scrapers/_common/register/$provideFilesystemForNode.d.ts +11 -0
- package/esm/typings/src/scrapers/_common/register/$provideScrapersForBrowser.d.ts +12 -0
- package/esm/typings/src/scrapers/_common/register/$provideScrapersForNode.d.ts +15 -0
- package/esm/typings/src/scrapers/_common/register/$registeredScrapersMessage.d.ts +12 -0
- package/esm/typings/src/scrapers/_common/register/$scrapersMetadataRegister.d.ts +13 -0
- package/esm/typings/src/scrapers/_common/register/$scrapersRegister.d.ts +13 -0
- package/esm/typings/src/scrapers/_common/register/ScraperAndConverterMetadata.d.ts +41 -0
- package/esm/typings/src/scrapers/_common/register/ScraperConstructor.d.ts +12 -0
- package/esm/typings/src/scrapers/_common/utils/getScraperIntermediateSource.d.ts +1 -0
- package/esm/typings/src/scrapers/_common/utils/makeKnowledgeSourceHandler.d.ts +2 -1
- package/esm/typings/src/scrapers/document/{documentScraper.d.ts → DocumentScraper.d.ts} +18 -12
- package/esm/typings/src/scrapers/document/createDocumentScraper.d.ts +20 -0
- package/esm/typings/src/scrapers/document/register-constructor.d.ts +13 -0
- package/esm/typings/src/scrapers/document/register-metadata.d.ts +24 -0
- package/esm/typings/src/scrapers/document-legacy/{legacyDocumentScraper.d.ts → LegacyDocumentScraper.d.ts} +18 -12
- package/esm/typings/src/scrapers/document-legacy/createLegacyDocumentScraper.d.ts +20 -0
- package/esm/typings/src/scrapers/document-legacy/register-constructor.d.ts +13 -0
- package/esm/typings/src/scrapers/document-legacy/register-metadata.d.ts +24 -0
- package/esm/typings/src/scrapers/markdown/MarkdownScraper.d.ts +29 -0
- package/esm/typings/src/scrapers/markdown/createMarkdownScraper.d.ts +20 -0
- package/esm/typings/src/scrapers/markdown/register-constructor.d.ts +13 -0
- package/esm/typings/src/scrapers/markdown/register-metadata.d.ts +24 -0
- package/esm/typings/src/scrapers/pdf/PdfScraper.d.ts +40 -0
- package/esm/typings/src/scrapers/pdf/createPdfScraper.d.ts +20 -0
- package/esm/typings/src/scrapers/pdf/register-constructor.d.ts +13 -0
- package/esm/typings/src/scrapers/pdf/register-metadata.d.ts +24 -0
- package/esm/typings/src/scrapers/website/{websiteScraper.d.ts → WebsiteScraper.d.ts} +18 -14
- package/esm/typings/src/scrapers/website/createWebsiteScraper.d.ts +20 -0
- package/esm/typings/src/scrapers/website/register-constructor.d.ts +13 -0
- package/esm/typings/src/scrapers/website/register-metadata.d.ts +24 -0
- package/esm/typings/src/scripting/javascript/JavascriptExecutionToolsOptions.d.ts +2 -2
- package/esm/typings/src/scripting/python/PythonExecutionTools.d.ts +3 -3
- package/esm/typings/src/scripting/typescript/TypescriptExecutionTools.d.ts +3 -3
- package/esm/typings/src/storage/file-cache-storage/FileCacheStorage.d.ts +5 -3
- package/esm/typings/src/storage/{utils → memory/utils}/PrefixStorage.d.ts +1 -1
- package/esm/typings/src/storage/{utils → memory/utils}/makePromptbookStorageFromWebStorage.d.ts +1 -1
- package/esm/typings/src/types/typeAliases.d.ts +7 -0
- package/esm/typings/src/utils/$Register.d.ts +19 -6
- package/esm/typings/src/utils/execCommand/$execCommand.d.ts +1 -1
- package/esm/typings/src/utils/execCommand/$execCommands.d.ts +1 -1
- package/esm/typings/src/utils/files/isDirectoryExisting.d.ts +14 -0
- package/esm/typings/src/utils/files/isFileExisting.d.ts +13 -0
- package/esm/typings/src/utils/files/{$listAllFiles.d.ts → listAllFiles.d.ts} +3 -4
- package/package.json +2 -2
- package/umd/index.umd.js +99 -7
- package/umd/index.umd.js.map +1 -1
- package/esm/typings/src/scrapers/index.d.ts +0 -7
- package/esm/typings/src/scrapers/markdown/markdownScraper.d.ts +0 -29
- package/esm/typings/src/scrapers/pdf/pdfScraper.d.ts +0 -35
- package/esm/typings/src/utils/files/$isDirectoryExisting.d.ts +0 -15
- package/esm/typings/src/utils/files/$isFileExisting.d.ts +0 -14
- /package/esm/typings/src/scrapers/document/{documentScraper.test.d.ts → DocumentScraper.test.d.ts} +0 -0
- /package/esm/typings/src/scrapers/document-legacy/{legacyDocumentScraper.test.d.ts → LegacyDocumentScraper.test.d.ts} +0 -0
- /package/esm/typings/src/scrapers/markdown/{markdownScraper.test.d.ts → MarkdownScraper.test.d.ts} +0 -0
- /package/esm/typings/src/scrapers/website/{websiteScraper.test.d.ts → WebsiteScraper.test.d.ts} +0 -0
- /package/esm/typings/src/utils/files/{$isDirectoryExisting.test.d.ts → isDirectoryExisting.test.d.ts} +0 -0
- /package/esm/typings/src/utils/files/{$isFileExisting.test.d.ts → isFileExisting.test.d.ts} +0 -0
- /package/esm/typings/src/utils/files/{$listAllFiles.test.d.ts → listAllFiles.test.d.ts} +0 -0
|
@@ -0,0 +1,24 @@
|
|
|
1
|
+
import type { Registration } from '../../utils/$Register';
|
|
2
|
+
/**
|
|
3
|
+
* Metadata of the scraper
|
|
4
|
+
*
|
|
5
|
+
* @private within the scraper directory
|
|
6
|
+
*/
|
|
7
|
+
export declare const websiteScraperMetadata: import("type-fest/source/readonly-deep").ReadonlyObjectDeep<{
|
|
8
|
+
title: string;
|
|
9
|
+
packageName: string;
|
|
10
|
+
className: string;
|
|
11
|
+
mimeTypes: string[];
|
|
12
|
+
documentationUrl: "https://github.com/webgptorg/promptbook/discussions/@@";
|
|
13
|
+
isAvilableInBrowser: false;
|
|
14
|
+
requiredExecutables: string[];
|
|
15
|
+
}>;
|
|
16
|
+
/**
|
|
17
|
+
* Registration of known scraper metadata
|
|
18
|
+
*
|
|
19
|
+
* Warning: This is not useful for the end user, it is just a side effect of the mechanism that handles all available known scrapers
|
|
20
|
+
*
|
|
21
|
+
* @public exported from `@promptbook/core`
|
|
22
|
+
* @public exported from `@promptbook/cli`
|
|
23
|
+
*/
|
|
24
|
+
export declare const _WebsiteScraperMetadataRegistration: Registration;
|
|
@@ -1,10 +1,10 @@
|
|
|
1
1
|
import type { Promisable } from 'type-fest';
|
|
2
|
-
import type {
|
|
2
|
+
import type { CommonToolsOptions } from '../../execution/CommonToolsOptions';
|
|
3
3
|
import type { string_postprocessing_function_name } from '../../types/typeAliases';
|
|
4
4
|
/**
|
|
5
5
|
* Options for `JavascriptExecutionTools`
|
|
6
6
|
*/
|
|
7
|
-
export type JavascriptExecutionToolsOptions =
|
|
7
|
+
export type JavascriptExecutionToolsOptions = CommonToolsOptions & {
|
|
8
8
|
/**
|
|
9
9
|
* Functions to be executed in the JavaScript evaluation.
|
|
10
10
|
*
|
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
import type {
|
|
1
|
+
import type { CommonToolsOptions } from '../../execution/CommonToolsOptions';
|
|
2
2
|
import type { ScriptExecutionTools } from '../../execution/ScriptExecutionTools';
|
|
3
3
|
import type { ScriptExecutionToolsExecuteOptions } from '../../execution/ScriptExecutionTools';
|
|
4
4
|
/**
|
|
@@ -9,8 +9,8 @@ import type { ScriptExecutionToolsExecuteOptions } from '../../execution/ScriptE
|
|
|
9
9
|
* @private still in development
|
|
10
10
|
*/
|
|
11
11
|
export declare class PythonExecutionTools implements ScriptExecutionTools {
|
|
12
|
-
protected readonly options:
|
|
13
|
-
constructor(options?:
|
|
12
|
+
protected readonly options: CommonToolsOptions;
|
|
13
|
+
constructor(options?: CommonToolsOptions);
|
|
14
14
|
/**
|
|
15
15
|
* Executes a Python
|
|
16
16
|
*/
|
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
import type {
|
|
1
|
+
import type { CommonToolsOptions } from '../../execution/CommonToolsOptions';
|
|
2
2
|
import type { ScriptExecutionTools } from '../../execution/ScriptExecutionTools';
|
|
3
3
|
import type { ScriptExecutionToolsExecuteOptions } from '../../execution/ScriptExecutionTools';
|
|
4
4
|
/**
|
|
@@ -9,8 +9,8 @@ import type { ScriptExecutionToolsExecuteOptions } from '../../execution/ScriptE
|
|
|
9
9
|
* @private still in development
|
|
10
10
|
*/
|
|
11
11
|
export declare class TypescriptExecutionTools implements ScriptExecutionTools {
|
|
12
|
-
protected readonly options:
|
|
13
|
-
constructor(options?:
|
|
12
|
+
protected readonly options: CommonToolsOptions;
|
|
13
|
+
constructor(options?: CommonToolsOptions);
|
|
14
14
|
/**
|
|
15
15
|
* Executes a TypeScript
|
|
16
16
|
*/
|
|
@@ -1,3 +1,4 @@
|
|
|
1
|
+
import type { ExecutionTools } from '../../execution/ExecutionTools';
|
|
1
2
|
import type { PromptbookStorage } from '../_common/PromptbookStorage';
|
|
2
3
|
import type { FileCacheStorageOptions } from './FileCacheStorageOptions';
|
|
3
4
|
/**
|
|
@@ -6,8 +7,9 @@ import type { FileCacheStorageOptions } from './FileCacheStorageOptions';
|
|
|
6
7
|
* @public exported from `@promptbook/node`
|
|
7
8
|
*/
|
|
8
9
|
export declare class FileCacheStorage<TItem> implements PromptbookStorage<TItem> {
|
|
9
|
-
protected readonly
|
|
10
|
-
|
|
10
|
+
protected readonly tools: Required<Pick<ExecutionTools, 'fs'>>;
|
|
11
|
+
private readonly options;
|
|
12
|
+
constructor(tools: Required<Pick<ExecutionTools, 'fs'>>, options: FileCacheStorageOptions);
|
|
11
13
|
/**
|
|
12
14
|
* @@@
|
|
13
15
|
*/
|
|
@@ -27,5 +29,5 @@ export declare class FileCacheStorage<TItem> implements PromptbookStorage<TItem>
|
|
|
27
29
|
}
|
|
28
30
|
/**
|
|
29
31
|
* TODO: [🌗] Maybe some checkers, not all valid JSONs are desired and valid values
|
|
30
|
-
* Note: [🟢] Code in this file should never be
|
|
32
|
+
* Note: [🟢] Code in this file should never be never released in packages that could be imported into browser environment
|
|
31
33
|
*/
|
|
@@ -1,5 +1,5 @@
|
|
|
1
1
|
import type { Promisable } from 'type-fest';
|
|
2
|
-
import type { PromptbookStorage } from '
|
|
2
|
+
import type { PromptbookStorage } from '../../_common/PromptbookStorage';
|
|
3
3
|
/**
|
|
4
4
|
* This class behaves like LocalStorage but separates keys by prefix
|
|
5
5
|
*
|
|
@@ -331,6 +331,13 @@ export type string_href = string;
|
|
|
331
331
|
* For example `"https://collboard.com/9SeSQTupmQHwuSrLi.png?width=1200&height=630"`
|
|
332
332
|
*/
|
|
333
333
|
export type string_url_image = string;
|
|
334
|
+
/**
|
|
335
|
+
* Semantic helper
|
|
336
|
+
*
|
|
337
|
+
* For example `"C:/Users/me/AppData/Local/Pandoc/pandoc.exe"`
|
|
338
|
+
* For example `"C:/Program Files/LibreOffice/program/swriter.exe"`
|
|
339
|
+
*/
|
|
340
|
+
export type string_executable_path = string;
|
|
334
341
|
/**
|
|
335
342
|
* Semantic helper
|
|
336
343
|
*
|
|
@@ -1,14 +1,27 @@
|
|
|
1
|
-
import type
|
|
1
|
+
import { type IDestroyable } from 'destroyable';
|
|
2
|
+
import type { string_name } from '../types/typeAliases';
|
|
2
3
|
import type { TODO_string } from './organization/TODO_string';
|
|
4
|
+
/**
|
|
5
|
+
* @@@
|
|
6
|
+
*/
|
|
3
7
|
export type Registered = {
|
|
4
8
|
/**
|
|
5
9
|
* @@@
|
|
6
10
|
*/
|
|
7
|
-
packageName: TODO_string;
|
|
11
|
+
readonly packageName: TODO_string;
|
|
12
|
+
/**
|
|
13
|
+
* @@@
|
|
14
|
+
*/
|
|
15
|
+
readonly className: TODO_string;
|
|
16
|
+
};
|
|
17
|
+
/**
|
|
18
|
+
* @@@
|
|
19
|
+
*/
|
|
20
|
+
export type Registration = Registered & IDestroyable & {
|
|
8
21
|
/**
|
|
9
22
|
* @@@
|
|
10
23
|
*/
|
|
11
|
-
|
|
24
|
+
readonly registerName: string_name;
|
|
12
25
|
};
|
|
13
26
|
/**
|
|
14
27
|
* Register is @@@
|
|
@@ -18,9 +31,9 @@ export type Registered = {
|
|
|
18
31
|
* @private internal utility, exported are only signleton instances of this class
|
|
19
32
|
*/
|
|
20
33
|
export declare class $Register<TRegistered extends Registered> {
|
|
21
|
-
private readonly
|
|
34
|
+
private readonly registerName;
|
|
22
35
|
private readonly storage;
|
|
23
|
-
constructor(
|
|
36
|
+
constructor(registerName: string_name);
|
|
24
37
|
list(): Array<TRegistered>;
|
|
25
|
-
register(registered: TRegistered):
|
|
38
|
+
register(registered: TRegistered): Registration;
|
|
26
39
|
}
|
|
@@ -10,5 +10,5 @@ import type { IExecCommandOptions } from './IExecCommandOptions';
|
|
|
10
10
|
*/
|
|
11
11
|
export declare function $execCommand(options: IExecCommandOptions): Promise<string>;
|
|
12
12
|
/**
|
|
13
|
-
* Note: [🟢
|
|
13
|
+
* Note: [🟢] Code in this file should never be never released in packages that could be imported into browser environment
|
|
14
14
|
*/
|
|
@@ -13,5 +13,5 @@ export declare function $execCommands({ commands, cwd, crashOnError, }: {
|
|
|
13
13
|
readonly crashOnError?: boolean;
|
|
14
14
|
}): Promise<void>;
|
|
15
15
|
/**
|
|
16
|
-
* Note: [🟢
|
|
16
|
+
* Note: [🟢] Code in this file should never be never released in packages that could be imported into browser environment
|
|
17
17
|
*/
|
|
@@ -0,0 +1,14 @@
|
|
|
1
|
+
import type { FilesystemTools } from '../../execution/FilesystemTools';
|
|
2
|
+
import type { string_dirname } from '../../types/typeAliases';
|
|
3
|
+
/**
|
|
4
|
+
* Checks if the directory exists
|
|
5
|
+
*
|
|
6
|
+
* @private within the repository
|
|
7
|
+
*/
|
|
8
|
+
export declare function isDirectoryExisting(directoryPath: string_dirname, fs: FilesystemTools): Promise<boolean>;
|
|
9
|
+
/**
|
|
10
|
+
* Note: Not [~🟢~] because it is not directly dependent on `fs
|
|
11
|
+
* TODO: [🐠] This can be a validator - with variants that return true/false and variants that throw errors with meaningless messages
|
|
12
|
+
* TODO: [🧠][📂] "directory" vs "folder"
|
|
13
|
+
* TODO: [🖇] What about symlinks?
|
|
14
|
+
*/
|
|
@@ -0,0 +1,13 @@
|
|
|
1
|
+
import type { FilesystemTools } from '../../execution/FilesystemTools';
|
|
2
|
+
import type { string_filename } from '../../types/typeAliases';
|
|
3
|
+
/**
|
|
4
|
+
* Checks if the file exists
|
|
5
|
+
*
|
|
6
|
+
* @private within the repository
|
|
7
|
+
*/
|
|
8
|
+
export declare function isFileExisting(filename: string_filename, fs: FilesystemTools): Promise<boolean>;
|
|
9
|
+
/**
|
|
10
|
+
* Note: Not [~🟢~] because it is not directly dependent on `fs
|
|
11
|
+
* TODO: [🐠] This can be a validator - with variants that return true/false and variants that throw errors with meaningless messages
|
|
12
|
+
* TODO: [🖇] What about symlinks?
|
|
13
|
+
*/
|
|
@@ -1,18 +1,17 @@
|
|
|
1
|
+
import type { FilesystemTools } from '../../execution/FilesystemTools';
|
|
1
2
|
import type { string_dirname } from '../../types/typeAliases';
|
|
2
3
|
import type { string_filename } from '../../types/typeAliases';
|
|
3
4
|
/**
|
|
4
5
|
* Reads all files in the directory
|
|
5
6
|
*
|
|
6
|
-
* Note: `$` is used to indicate that this function is not a pure function - it looks at the filesystem
|
|
7
|
-
*
|
|
8
7
|
* @param path
|
|
9
8
|
* @param isRecursive
|
|
10
9
|
* @returns List of all files in the directory
|
|
11
10
|
* @private internal function of `createCollectionFromDirectory`
|
|
12
11
|
*/
|
|
13
|
-
export declare function
|
|
12
|
+
export declare function listAllFiles(path: string_dirname, isRecursive: boolean, fs: FilesystemTools): Promise<Array<string_filename>>;
|
|
14
13
|
/**
|
|
15
14
|
* TODO: [😶] Unite floder listing
|
|
16
|
-
* Note:
|
|
15
|
+
* Note: Not [~🟢~] because it is not directly dependent on `fs
|
|
17
16
|
* TODO: [🖇] What about symlinks?
|
|
18
17
|
*/
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@promptbook/openai",
|
|
3
|
-
"version": "0.72.0-
|
|
3
|
+
"version": "0.72.0-9",
|
|
4
4
|
"description": "Supercharge your use of large language models",
|
|
5
5
|
"private": false,
|
|
6
6
|
"sideEffects": false,
|
|
@@ -51,7 +51,7 @@
|
|
|
51
51
|
"module": "./esm/index.es.js",
|
|
52
52
|
"typings": "./esm/typings/src/_packages/openai.index.d.ts",
|
|
53
53
|
"peerDependencies": {
|
|
54
|
-
"@promptbook/core": "0.72.0-
|
|
54
|
+
"@promptbook/core": "0.72.0-9"
|
|
55
55
|
},
|
|
56
56
|
"dependencies": {
|
|
57
57
|
"colors": "1.4.0",
|
package/umd/index.umd.js
CHANGED
|
@@ -14,7 +14,7 @@
|
|
|
14
14
|
/**
|
|
15
15
|
* The version of the Promptbook library
|
|
16
16
|
*/
|
|
17
|
-
var PROMPTBOOK_VERSION = '0.72.0-
|
|
17
|
+
var PROMPTBOOK_VERSION = '0.72.0-8';
|
|
18
18
|
// TODO: [main] !!!! List here all the versions and annotate + put into script
|
|
19
19
|
|
|
20
20
|
/*! *****************************************************************************
|
|
@@ -2000,6 +2000,85 @@
|
|
|
2000
2000
|
return Function('return this')();
|
|
2001
2001
|
}
|
|
2002
2002
|
|
|
2003
|
+
/**
|
|
2004
|
+
* @@@
|
|
2005
|
+
*
|
|
2006
|
+
* @param text @@@
|
|
2007
|
+
* @returns @@@
|
|
2008
|
+
* @example 'HELLO_WORLD'
|
|
2009
|
+
* @example 'I_LOVE_PROMPTBOOK'
|
|
2010
|
+
* @public exported from `@promptbook/utils`
|
|
2011
|
+
*/
|
|
2012
|
+
function normalizeTo_SCREAMING_CASE(text) {
|
|
2013
|
+
var e_1, _a;
|
|
2014
|
+
var charType;
|
|
2015
|
+
var lastCharType = 'OTHER';
|
|
2016
|
+
var normalizedName = '';
|
|
2017
|
+
try {
|
|
2018
|
+
for (var text_1 = __values(text), text_1_1 = text_1.next(); !text_1_1.done; text_1_1 = text_1.next()) {
|
|
2019
|
+
var char = text_1_1.value;
|
|
2020
|
+
var normalizedChar = void 0;
|
|
2021
|
+
if (/^[a-z]$/.test(char)) {
|
|
2022
|
+
charType = 'LOWERCASE';
|
|
2023
|
+
normalizedChar = char.toUpperCase();
|
|
2024
|
+
}
|
|
2025
|
+
else if (/^[A-Z]$/.test(char)) {
|
|
2026
|
+
charType = 'UPPERCASE';
|
|
2027
|
+
normalizedChar = char;
|
|
2028
|
+
}
|
|
2029
|
+
else if (/^[0-9]$/.test(char)) {
|
|
2030
|
+
charType = 'NUMBER';
|
|
2031
|
+
normalizedChar = char;
|
|
2032
|
+
}
|
|
2033
|
+
else {
|
|
2034
|
+
charType = 'OTHER';
|
|
2035
|
+
normalizedChar = '_';
|
|
2036
|
+
}
|
|
2037
|
+
if (charType !== lastCharType &&
|
|
2038
|
+
!(lastCharType === 'UPPERCASE' && charType === 'LOWERCASE') &&
|
|
2039
|
+
!(lastCharType === 'NUMBER') &&
|
|
2040
|
+
!(charType === 'NUMBER')) {
|
|
2041
|
+
normalizedName += '_';
|
|
2042
|
+
}
|
|
2043
|
+
normalizedName += normalizedChar;
|
|
2044
|
+
lastCharType = charType;
|
|
2045
|
+
}
|
|
2046
|
+
}
|
|
2047
|
+
catch (e_1_1) { e_1 = { error: e_1_1 }; }
|
|
2048
|
+
finally {
|
|
2049
|
+
try {
|
|
2050
|
+
if (text_1_1 && !text_1_1.done && (_a = text_1.return)) _a.call(text_1);
|
|
2051
|
+
}
|
|
2052
|
+
finally { if (e_1) throw e_1.error; }
|
|
2053
|
+
}
|
|
2054
|
+
normalizedName = normalizedName.replace(/_+/g, '_');
|
|
2055
|
+
normalizedName = normalizedName.replace(/_?\/_?/g, '/');
|
|
2056
|
+
normalizedName = normalizedName.replace(/^_/, '');
|
|
2057
|
+
normalizedName = normalizedName.replace(/_$/, '');
|
|
2058
|
+
return normalizedName;
|
|
2059
|
+
}
|
|
2060
|
+
/**
|
|
2061
|
+
* TODO: Tests
|
|
2062
|
+
* > expect(encodeRoutePath({ uriId: 'VtG7sR9rRJqwNEdM2', name: 'Moje tabule' })).toEqual('/VtG7sR9rRJqwNEdM2/Moje tabule');
|
|
2063
|
+
* > expect(encodeRoutePath({ uriId: 'VtG7sR9rRJqwNEdM2', name: 'ěščřžžýáíúů' })).toEqual('/VtG7sR9rRJqwNEdM2/escrzyaieuu');
|
|
2064
|
+
* > expect(encodeRoutePath({ uriId: 'VtG7sR9rRJqwNEdM2', name: ' ahoj ' })).toEqual('/VtG7sR9rRJqwNEdM2/ahoj');
|
|
2065
|
+
* > expect(encodeRoutePath({ uriId: 'VtG7sR9rRJqwNEdM2', name: ' ahoj_ahojAhoj ahoj ' })).toEqual('/VtG7sR9rRJqwNEdM2/ahoj-ahoj-ahoj-ahoj');
|
|
2066
|
+
* TODO: [🌺] Use some intermediate util splitWords
|
|
2067
|
+
*/
|
|
2068
|
+
|
|
2069
|
+
/**
|
|
2070
|
+
* @@@
|
|
2071
|
+
*
|
|
2072
|
+
* @param text @@@
|
|
2073
|
+
* @returns @@@
|
|
2074
|
+
* @example 'hello_world'
|
|
2075
|
+
* @example 'i_love_promptbook'
|
|
2076
|
+
* @public exported from `@promptbook/utils`
|
|
2077
|
+
*/
|
|
2078
|
+
function normalizeTo_snake_case(text) {
|
|
2079
|
+
return normalizeTo_SCREAMING_CASE(text).toLowerCase();
|
|
2080
|
+
}
|
|
2081
|
+
|
|
2003
2082
|
/**
|
|
2004
2083
|
* Register is @@@
|
|
2005
2084
|
*
|
|
@@ -2008,9 +2087,9 @@
|
|
|
2008
2087
|
* @private internal utility, exported are only signleton instances of this class
|
|
2009
2088
|
*/
|
|
2010
2089
|
var $Register = /** @class */ (function () {
|
|
2011
|
-
function $Register(
|
|
2012
|
-
this.
|
|
2013
|
-
storageName = "_promptbook_".concat(
|
|
2090
|
+
function $Register(registerName) {
|
|
2091
|
+
this.registerName = registerName;
|
|
2092
|
+
var storageName = "_promptbook_".concat(normalizeTo_snake_case(registerName));
|
|
2014
2093
|
var globalScope = $getGlobalScope();
|
|
2015
2094
|
if (globalScope[storageName] === undefined) {
|
|
2016
2095
|
globalScope[storageName] = [];
|
|
@@ -2025,7 +2104,6 @@
|
|
|
2025
2104
|
return this.storage;
|
|
2026
2105
|
};
|
|
2027
2106
|
$Register.prototype.register = function (registered) {
|
|
2028
|
-
// <- TODO: What to return here
|
|
2029
2107
|
var packageName = registered.packageName, className = registered.className;
|
|
2030
2108
|
var existingRegistrationIndex = this.storage.findIndex(function (item) { return item.packageName === packageName && item.className === className; });
|
|
2031
2109
|
var existingRegistration = this.storage[existingRegistrationIndex];
|
|
@@ -2035,6 +2113,17 @@
|
|
|
2035
2113
|
else {
|
|
2036
2114
|
this.storage[existingRegistrationIndex] = registered;
|
|
2037
2115
|
}
|
|
2116
|
+
return {
|
|
2117
|
+
registerName: this.registerName,
|
|
2118
|
+
packageName: packageName,
|
|
2119
|
+
className: className,
|
|
2120
|
+
get isDestroyed() {
|
|
2121
|
+
return false;
|
|
2122
|
+
},
|
|
2123
|
+
destroy: function () {
|
|
2124
|
+
throw new NotYetImplementedError("Registration to ".concat(this.registerName, " is permanent in this version of Promptbook"));
|
|
2125
|
+
},
|
|
2126
|
+
};
|
|
2038
2127
|
};
|
|
2039
2128
|
return $Register;
|
|
2040
2129
|
}());
|
|
@@ -2047,11 +2136,14 @@
|
|
|
2047
2136
|
* @public exported from `@promptbook/core`
|
|
2048
2137
|
*/
|
|
2049
2138
|
var $llmToolsRegister = new $Register('llm_execution_tools_constructors');
|
|
2139
|
+
/**
|
|
2140
|
+
* TODO: [®] DRY Register logic
|
|
2141
|
+
*/
|
|
2050
2142
|
|
|
2051
2143
|
/**
|
|
2052
|
-
*
|
|
2144
|
+
* Registration of LLM provider
|
|
2053
2145
|
*
|
|
2054
|
-
*
|
|
2146
|
+
* Warning: This is not useful for the end user, it is just a side effect of the mechanism that handles all available LLM tools
|
|
2055
2147
|
*
|
|
2056
2148
|
* @public exported from `@promptbook/openai`
|
|
2057
2149
|
* @public exported from `@promptbook/cli`
|