@promptbook/remote-server 0.34.1 → 0.35.1

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
@@ -59,7 +59,7 @@ function __generator(thisArg, body) {
59
59
  /**
60
60
  * The version of the Promptbook library
61
61
  */
62
- var PTBK_VERSION = '0.34.0';
62
+ var PTBK_VERSION = '0.35.0';
63
63
 
64
64
  /**
65
65
  * Remote server is a proxy server that uses its execution tools internally and exposes the executor interface externally.
@@ -6,5 +6,6 @@ import type { ExecutionReportStringOptions } from './ExecutionReportStringOption
6
6
  */
7
7
  export declare function executionReportJsonToString(executionReportJson: ExecutionReportJson, options?: Partial<ExecutionReportStringOptions>): ExecutionReportString;
8
8
  /**
9
+ * TODO: Add mermaid chart for every report
9
10
  * TODO: [🧠] Allow to filter out some parts of the report by options
10
11
  */
@@ -0,0 +1,10 @@
1
+ import type { string_markdown, string_name } from '../../types/typeAliases';
2
+ /**
3
+ * Add or modify an auto-generated section in a markdown file
4
+ *
5
+ * @private within the library
6
+ */
7
+ export declare function addAutoGeneratedSection(content: string_markdown, options: {
8
+ sectionName: string_name;
9
+ sectionContent: string_markdown;
10
+ }): string_markdown;
@@ -35,3 +35,7 @@ type CreateMarkdownChartOptions = {
35
35
  */
36
36
  export declare function createMarkdownChart(options: CreateMarkdownChartOptions): string_markdown;
37
37
  export {};
38
+ /**
39
+ * TODO: Maybe use Mermain Gant Diagrams
40
+ * @see https://jojozhuang.github.io/tutorial/mermaid-cheat-sheet/
41
+ */
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@promptbook/remote-server",
3
- "version": "0.34.1",
3
+ "version": "0.35.1",
4
4
  "description": "Library to supercharge your use of large language models",
5
5
  "private": false,
6
6
  "sideEffects": false,
@@ -38,7 +38,7 @@
38
38
  "spacetrim": "0.11.0"
39
39
  },
40
40
  "peerDependencies": {
41
- "@promptbook/core": "0.34.1"
41
+ "@promptbook/core": "0.35.1"
42
42
  },
43
43
  "main": "./umd/index.umd.js",
44
44
  "module": "./esm/index.es.js",
package/umd/index.umd.js CHANGED
@@ -66,7 +66,7 @@
66
66
  /**
67
67
  * The version of the Promptbook library
68
68
  */
69
- var PTBK_VERSION = '0.34.0';
69
+ var PTBK_VERSION = '0.35.0';
70
70
 
71
71
  /**
72
72
  * Remote server is a proxy server that uses its execution tools internally and exposes the executor interface externally.
@@ -6,5 +6,6 @@ import type { ExecutionReportStringOptions } from './ExecutionReportStringOption
6
6
  */
7
7
  export declare function executionReportJsonToString(executionReportJson: ExecutionReportJson, options?: Partial<ExecutionReportStringOptions>): ExecutionReportString;
8
8
  /**
9
+ * TODO: Add mermaid chart for every report
9
10
  * TODO: [🧠] Allow to filter out some parts of the report by options
10
11
  */
@@ -0,0 +1,10 @@
1
+ import type { string_markdown, string_name } from '../../types/typeAliases';
2
+ /**
3
+ * Add or modify an auto-generated section in a markdown file
4
+ *
5
+ * @private within the library
6
+ */
7
+ export declare function addAutoGeneratedSection(content: string_markdown, options: {
8
+ sectionName: string_name;
9
+ sectionContent: string_markdown;
10
+ }): string_markdown;
@@ -35,3 +35,7 @@ type CreateMarkdownChartOptions = {
35
35
  */
36
36
  export declare function createMarkdownChart(options: CreateMarkdownChartOptions): string_markdown;
37
37
  export {};
38
+ /**
39
+ * TODO: Maybe use Mermain Gant Diagrams
40
+ * @see https://jojozhuang.github.io/tutorial/mermaid-cheat-sheet/
41
+ */