@promptbook/remote-server 0.41.105 → 0.41.107

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/esm/index.es.js CHANGED
@@ -89,7 +89,7 @@ var PromptbookExecutionError = /** @class */ (function (_super) {
89
89
  /**
90
90
  * The version of the Promptbook library
91
91
  */
92
- var PROMPTBOOK_VERSION = '0.41.104';
92
+ var PROMPTBOOK_VERSION = '0.41.106';
93
93
 
94
94
  /**
95
95
  * Remote server is a proxy server that uses its execution tools internally and exposes the executor interface externally.
@@ -0,0 +1,8 @@
1
+ import { prettifyPromptbookStringCli } from '../conversion/prettify/prettifyPromptbookStringCli';
2
+ /**
3
+ * Hidden utilities which should not be used by external consumers.
4
+ */
5
+ declare const __: {
6
+ prettifyPromptbookStringCli: typeof prettifyPromptbookStringCli;
7
+ };
8
+ export { __ };
@@ -1,5 +1,4 @@
1
1
  import { prettifyPromptbookString } from '../conversion/prettify/prettifyPromptbookString';
2
- import { prettifyPromptbookStringCli } from '../conversion/prettify/prettifyPromptbookStringCli';
3
2
  import { parseNumber } from '../conversion/utils/parseNumber';
4
3
  import { assertsExecutionSuccessful } from '../execution/assertsExecutionSuccessful';
5
4
  import { ExecutionReportStringOptions, ExecutionReportStringOptionsDefaults } from '../types/execution-report/ExecutionReportStringOptions';
@@ -23,13 +22,7 @@ import { removeQuotes } from '../utils/removeQuotes';
23
22
  import { trimCodeBlock } from '../utils/trimCodeBlock';
24
23
  import { trimEndOfCodeBlock } from '../utils/trimEndOfCodeBlock';
25
24
  import { unwrapResult } from '../utils/unwrapResult';
26
- /**
27
- * Hidden utilities which should not be used by external consumers.
28
- */
29
- declare const __: {
30
- prettifyPromptbookStringCli: typeof prettifyPromptbookStringCli;
31
- };
32
- export { __, assertsExecutionSuccessful, countCharacters, countLines, countPages, countParagraphs, countSentences, CountUtils, countWords, executionReportJsonToString, ExecutionReportStringOptions, ExecutionReportStringOptionsDefaults, extractAllBlocksFromMarkdown, // <- [🌻]
25
+ export { assertsExecutionSuccessful, countCharacters, countLines, countPages, countParagraphs, countSentences, CountUtils, countWords, executionReportJsonToString, ExecutionReportStringOptions, ExecutionReportStringOptionsDefaults, extractAllBlocksFromMarkdown, // <- [🌻]
33
26
  extractAllListItemsFromMarkdown, extractBlock, // <- [🌻]
34
27
  extractOneBlockFromMarkdown, isValidJsonString, parseNumber, // <- [🌻]
35
28
  prettifyPromptbookString, removeContentComments, removeEmojis, removeMarkdownFormatting, removeQuotes, trimCodeBlock, trimEndOfCodeBlock, unwrapResult, };
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@promptbook/remote-server",
3
- "version": "0.41.105",
3
+ "version": "0.41.107",
4
4
  "description": "Library to supercharge your use of large language models",
5
5
  "private": false,
6
6
  "sideEffects": false,
@@ -39,7 +39,7 @@
39
39
  "spacetrim": "0.11.2"
40
40
  },
41
41
  "peerDependencies": {
42
- "@promptbook/core": "0.41.105"
42
+ "@promptbook/core": "0.41.107"
43
43
  },
44
44
  "main": "./umd/index.umd.js",
45
45
  "module": "./esm/index.es.js",
package/umd/index.umd.js CHANGED
@@ -96,7 +96,7 @@
96
96
  /**
97
97
  * The version of the Promptbook library
98
98
  */
99
- var PROMPTBOOK_VERSION = '0.41.104';
99
+ var PROMPTBOOK_VERSION = '0.41.106';
100
100
 
101
101
  /**
102
102
  * Remote server is a proxy server that uses its execution tools internally and exposes the executor interface externally.
@@ -0,0 +1,8 @@
1
+ import { prettifyPromptbookStringCli } from '../conversion/prettify/prettifyPromptbookStringCli';
2
+ /**
3
+ * Hidden utilities which should not be used by external consumers.
4
+ */
5
+ declare const __: {
6
+ prettifyPromptbookStringCli: typeof prettifyPromptbookStringCli;
7
+ };
8
+ export { __ };
@@ -1,5 +1,4 @@
1
1
  import { prettifyPromptbookString } from '../conversion/prettify/prettifyPromptbookString';
2
- import { prettifyPromptbookStringCli } from '../conversion/prettify/prettifyPromptbookStringCli';
3
2
  import { parseNumber } from '../conversion/utils/parseNumber';
4
3
  import { assertsExecutionSuccessful } from '../execution/assertsExecutionSuccessful';
5
4
  import { ExecutionReportStringOptions, ExecutionReportStringOptionsDefaults } from '../types/execution-report/ExecutionReportStringOptions';
@@ -23,13 +22,7 @@ import { removeQuotes } from '../utils/removeQuotes';
23
22
  import { trimCodeBlock } from '../utils/trimCodeBlock';
24
23
  import { trimEndOfCodeBlock } from '../utils/trimEndOfCodeBlock';
25
24
  import { unwrapResult } from '../utils/unwrapResult';
26
- /**
27
- * Hidden utilities which should not be used by external consumers.
28
- */
29
- declare const __: {
30
- prettifyPromptbookStringCli: typeof prettifyPromptbookStringCli;
31
- };
32
- export { __, assertsExecutionSuccessful, countCharacters, countLines, countPages, countParagraphs, countSentences, CountUtils, countWords, executionReportJsonToString, ExecutionReportStringOptions, ExecutionReportStringOptionsDefaults, extractAllBlocksFromMarkdown, // <- [🌻]
25
+ export { assertsExecutionSuccessful, countCharacters, countLines, countPages, countParagraphs, countSentences, CountUtils, countWords, executionReportJsonToString, ExecutionReportStringOptions, ExecutionReportStringOptionsDefaults, extractAllBlocksFromMarkdown, // <- [🌻]
33
26
  extractAllListItemsFromMarkdown, extractBlock, // <- [🌻]
34
27
  extractOneBlockFromMarkdown, isValidJsonString, parseNumber, // <- [🌻]
35
28
  prettifyPromptbookString, removeContentComments, removeEmojis, removeMarkdownFormatting, removeQuotes, trimCodeBlock, trimEndOfCodeBlock, unwrapResult, };