@promptbook/remote-server 0.112.0-104 → 0.112.0-105
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 +9 -11
- package/esm/index.es.js.map +1 -1
- package/esm/src/book-components/BookEditor/BookEditor.d.ts +5 -4
- package/esm/src/book-components/BookEditor/BookEditorTheme.d.ts +24 -0
- package/esm/src/book-components/BookEditor/useBookEditorMonacoLanguage.d.ts +1 -6
- package/esm/src/book-components/BookEditor/useBookEditorMonacoLifecycle.d.ts +1 -4
- package/esm/src/book-components/BookEditor/useBookEditorMonacoStyles.d.ts +2 -1
- package/esm/src/cli/cli-commands/agent-folder/agentProjectPaths.d.ts +6 -0
- package/esm/src/version.d.ts +1 -1
- package/package.json +2 -2
- package/umd/index.umd.js +9 -11
- package/umd/index.umd.js.map +1 -1
- package/umd/src/book-components/BookEditor/BookEditor.d.ts +5 -4
- package/umd/src/book-components/BookEditor/BookEditorTheme.d.ts +24 -0
- package/umd/src/book-components/BookEditor/useBookEditorMonacoLanguage.d.ts +1 -6
- package/umd/src/book-components/BookEditor/useBookEditorMonacoLifecycle.d.ts +1 -4
- package/umd/src/book-components/BookEditor/useBookEditorMonacoStyles.d.ts +2 -1
- package/umd/src/cli/cli-commands/agent-folder/agentProjectPaths.d.ts +6 -0
- package/umd/src/version.d.ts +1 -1
|
@@ -6,6 +6,7 @@ import type { number_positive } from '../../types/number_positive';
|
|
|
6
6
|
import type { string_knowledge_source_content } from '../../types/string_knowledge_source_content';
|
|
7
7
|
import type { string_css_value } from '../../types/string_markdown';
|
|
8
8
|
import type { HoistedMenuItem } from '../_common/MenuHoisting/MenuHoistingContext';
|
|
9
|
+
import type { BookEditorTheme } from './BookEditorTheme';
|
|
9
10
|
/**
|
|
10
11
|
* Monaco diagnostic shown inside `BookEditor`.
|
|
11
12
|
*
|
|
@@ -94,14 +95,14 @@ export type BookEditorProps = {
|
|
|
94
95
|
*/
|
|
95
96
|
readonly style?: CSSProperties;
|
|
96
97
|
/**
|
|
97
|
-
* Resolved
|
|
98
|
+
* Resolved host application theme.
|
|
98
99
|
*
|
|
99
|
-
*
|
|
100
|
-
*
|
|
100
|
+
* `<BookEditor/>` accepts this for integration compatibility, but the notebook
|
|
101
|
+
* editor itself is intentionally rendered as light paper in every app theme.
|
|
101
102
|
*
|
|
102
103
|
* @default 'LIGHT'
|
|
103
104
|
*/
|
|
104
|
-
readonly theme?:
|
|
105
|
+
readonly theme?: BookEditorTheme;
|
|
105
106
|
/**
|
|
106
107
|
* Height of the `BookEditor` component
|
|
107
108
|
*
|
|
@@ -0,0 +1,24 @@
|
|
|
1
|
+
/**
|
|
2
|
+
* Visual theme accepted by `<BookEditor/>` integrations.
|
|
3
|
+
*
|
|
4
|
+
* @private internal type of `BookEditor`
|
|
5
|
+
*/
|
|
6
|
+
export type BookEditorTheme = 'LIGHT' | 'DARK';
|
|
7
|
+
/**
|
|
8
|
+
* Theme used for the actual notebook editor surface.
|
|
9
|
+
*
|
|
10
|
+
* The host application can still pass its resolved app theme, but book sources
|
|
11
|
+
* are intentionally rendered as light paper in both light and dark app modes.
|
|
12
|
+
*
|
|
13
|
+
* @private internal constant of `BookEditor`
|
|
14
|
+
*/
|
|
15
|
+
export declare const BOOK_EDITOR_RENDER_THEME = "LIGHT";
|
|
16
|
+
/**
|
|
17
|
+
* Resolves an app-level theme into the visual theme used by `<BookEditor/>`.
|
|
18
|
+
*
|
|
19
|
+
* @param hostTheme - Resolved theme from the embedding application.
|
|
20
|
+
* @returns Light theme used by the Book editor surface.
|
|
21
|
+
*
|
|
22
|
+
* @private internal utility of `BookEditor`
|
|
23
|
+
*/
|
|
24
|
+
export declare function resolveBookEditorRenderTheme(hostTheme?: BookEditorTheme): BookEditorTheme;
|
|
@@ -1,14 +1,9 @@
|
|
|
1
1
|
import type { editor } from 'monaco-editor';
|
|
2
|
+
import type { BookEditorTheme } from './BookEditorTheme';
|
|
2
3
|
/**
|
|
3
4
|
* Type describing monaco editor.
|
|
4
5
|
*/
|
|
5
6
|
type MonacoEditor = typeof import('monaco-editor');
|
|
6
|
-
/**
|
|
7
|
-
* Resolved visual theme supported by the Book editor.
|
|
8
|
-
*
|
|
9
|
-
* @private function of BookEditorMonaco
|
|
10
|
-
*/
|
|
11
|
-
type BookEditorTheme = 'LIGHT' | 'DARK';
|
|
12
7
|
/**
|
|
13
8
|
* Props for use book editor monaco language.
|
|
14
9
|
*/
|
|
@@ -1,12 +1,9 @@
|
|
|
1
1
|
import type { editor } from 'monaco-editor';
|
|
2
|
+
import type { BookEditorTheme } from './BookEditorTheme';
|
|
2
3
|
/**
|
|
3
4
|
* Type describing monaco editor.
|
|
4
5
|
*/
|
|
5
6
|
type MonacoEditor = typeof import('monaco-editor');
|
|
6
|
-
/**
|
|
7
|
-
* Resolved visual theme supported by the Book editor.
|
|
8
|
-
*/
|
|
9
|
-
type BookEditorTheme = 'LIGHT' | 'DARK';
|
|
10
7
|
/**
|
|
11
8
|
* Props for use book editor monaco lifecycle.
|
|
12
9
|
*/
|
|
@@ -1,3 +1,4 @@
|
|
|
1
|
+
import type { BookEditorTheme } from './BookEditorTheme';
|
|
1
2
|
/**
|
|
2
3
|
* Props for use book editor monaco styles.
|
|
3
4
|
*/
|
|
@@ -7,7 +8,7 @@ type UseBookEditorMonacoStylesProps = {
|
|
|
7
8
|
readonly scaledContentPaddingLeft: number;
|
|
8
9
|
readonly scaledVerticalLineLeft: number;
|
|
9
10
|
readonly zoomLevel: number;
|
|
10
|
-
readonly theme:
|
|
11
|
+
readonly theme: BookEditorTheme;
|
|
11
12
|
};
|
|
12
13
|
/**
|
|
13
14
|
* Injects notebook-inspired styling that is unique per `BookEditorMonaco` instance.
|
|
@@ -28,6 +28,12 @@ export declare const AGENT_QUEUED_MESSAGES_DIRECTORY_PATH: string;
|
|
|
28
28
|
* @private internal utility of `ptbk agent-folder`
|
|
29
29
|
*/
|
|
30
30
|
export declare const AGENT_FINISHED_MESSAGES_DIRECTORY_PATH: string;
|
|
31
|
+
/**
|
|
32
|
+
* Relative path to messages that the agent runner stopped retrying.
|
|
33
|
+
*
|
|
34
|
+
* @private internal utility of `ptbk agent-folder`
|
|
35
|
+
*/
|
|
36
|
+
export declare const AGENT_FAILED_MESSAGES_DIRECTORY_PATH: string;
|
|
31
37
|
/**
|
|
32
38
|
* Relative path to generated local agent documentation initialized by `ptbk agent-folder init`.
|
|
33
39
|
*
|
package/esm/src/version.d.ts
CHANGED
|
@@ -15,7 +15,7 @@ export declare const BOOK_LANGUAGE_VERSION: string_semantic_version;
|
|
|
15
15
|
export declare const PROMPTBOOK_ENGINE_VERSION: string_promptbook_version;
|
|
16
16
|
/**
|
|
17
17
|
* Represents the version string of the Promptbook engine.
|
|
18
|
-
* It follows semantic versioning (e.g., `0.112.0-
|
|
18
|
+
* It follows semantic versioning (e.g., `0.112.0-104`).
|
|
19
19
|
*
|
|
20
20
|
* @generated
|
|
21
21
|
*/
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@promptbook/remote-server",
|
|
3
|
-
"version": "0.112.0-
|
|
3
|
+
"version": "0.112.0-105",
|
|
4
4
|
"description": "Promptbook: Create persistent AI agents that turn your company's scattered knowledge into action",
|
|
5
5
|
"private": false,
|
|
6
6
|
"sideEffects": false,
|
|
@@ -99,7 +99,7 @@
|
|
|
99
99
|
"types": "./esm/src/_packages/remote-server.index.d.ts",
|
|
100
100
|
"typings": "./esm/src/_packages/remote-server.index.d.ts",
|
|
101
101
|
"peerDependencies": {
|
|
102
|
-
"@promptbook/core": "0.112.0-
|
|
102
|
+
"@promptbook/core": "0.112.0-105"
|
|
103
103
|
},
|
|
104
104
|
"dependencies": {
|
|
105
105
|
"@mozilla/readability": "0.6.0",
|
package/umd/index.umd.js
CHANGED
|
@@ -50,7 +50,7 @@
|
|
|
50
50
|
* @generated
|
|
51
51
|
* @see https://github.com/webgptorg/promptbook
|
|
52
52
|
*/
|
|
53
|
-
const PROMPTBOOK_ENGINE_VERSION = '0.112.0-
|
|
53
|
+
const PROMPTBOOK_ENGINE_VERSION = '0.112.0-105';
|
|
54
54
|
/**
|
|
55
55
|
* TODO: string_promptbook_version should be constrained to the all versions of Promptbook engine
|
|
56
56
|
* Note: [💞] Ignore a discrepancy between file name and entity name
|
|
@@ -17033,10 +17033,7 @@
|
|
|
17033
17033
|
Math.max(0, Math.cos(effectiveLongitude)) * 0.1 +
|
|
17034
17034
|
lowerBlend * tentacleInfluence.core * (0.1 + tentacleInfluence.depthScale * 0.06) -
|
|
17035
17035
|
Math.max(0, -Math.cos(effectiveLongitude)) * 0.05;
|
|
17036
|
-
const tentacleTubeRadius = lowerBlend *
|
|
17037
|
-
tentacleInfluence.core *
|
|
17038
|
-
(0.11 + tipBlend * 0.06 + tentacleInfluence.widthScale * 0.025) *
|
|
17039
|
-
radiusX;
|
|
17036
|
+
const tentacleTubeRadius = lowerBlend * tentacleInfluence.core * (0.11 + tipBlend * 0.06 + tentacleInfluence.widthScale * 0.025) * radiusX;
|
|
17040
17037
|
const planarRadiusX = cosineLatitude * radiusX * horizontalScale + tentacleTubeRadius;
|
|
17041
17038
|
const planarRadiusZ = cosineLatitude * radiusZ * depthScale + tentacleTubeRadius * 0.72;
|
|
17042
17039
|
const lowerDrop = lowerBlend *
|
|
@@ -17047,8 +17044,7 @@
|
|
|
17047
17044
|
tentacleInfluence.lengthScale * 0.22 +
|
|
17048
17045
|
(morphologyProfile.tentacles.flowLengthScale - 1) * 0.08));
|
|
17049
17046
|
return {
|
|
17050
|
-
x: Math.sin(effectiveLongitude) * planarRadiusX +
|
|
17051
|
-
tentacleWave * radiusX * (0.052 + tipBlend * 0.05),
|
|
17047
|
+
x: Math.sin(effectiveLongitude) * planarRadiusX + tentacleWave * radiusX * (0.052 + tipBlend * 0.05),
|
|
17052
17048
|
y: Math.sin(latitude) * radiusY * (1 + upperBlend * 0.12) -
|
|
17053
17049
|
upperBlend * radiusY * 0.1 +
|
|
17054
17050
|
lowerDrop +
|
|
@@ -17122,8 +17118,11 @@
|
|
|
17122
17118
|
*/
|
|
17123
17119
|
function resolveContinuousLobeWave(options, longitude) {
|
|
17124
17120
|
const { morphologyProfile, animationPhase, timeMs } = options;
|
|
17125
|
-
return (Math.cos(longitude * OCTOPUS_TENTACLE_COUNT +
|
|
17126
|
-
|
|
17121
|
+
return ((Math.cos(longitude * OCTOPUS_TENTACLE_COUNT +
|
|
17122
|
+
animationPhase +
|
|
17123
|
+
timeMs / (980 + morphologyProfile.body.lobeCount * 18)) +
|
|
17124
|
+
1) /
|
|
17125
|
+
2);
|
|
17127
17126
|
}
|
|
17128
17127
|
/**
|
|
17129
17128
|
* Resolves one base fill tone for a patch on the continuous octopus mesh.
|
|
@@ -17187,8 +17186,7 @@
|
|
|
17187
17186
|
for (let sampleIndex = 0; sampleIndex < 8; sampleIndex++) {
|
|
17188
17187
|
const progress = sampleIndex / 7;
|
|
17189
17188
|
const latitude = -0.46 + progress * 0.74;
|
|
17190
|
-
const longitude = baseLongitude +
|
|
17191
|
-
Math.sin(timeMs / 1160 + animationPhase + currentIndex * 0.7 + progress * 2) * 0.035;
|
|
17189
|
+
const longitude = baseLongitude + Math.sin(timeMs / 1160 + animationPhase + currentIndex * 0.7 + progress * 2) * 0.035;
|
|
17192
17190
|
const scenePoint = transformScenePoint(sampleContinuousOctopusSurfacePoint(surfaceOptions, latitude, longitude), center, rotationX, rotationY);
|
|
17193
17191
|
if (scenePoint.z > center.z - size * 0.016) {
|
|
17194
17192
|
projectedPoints.push(projectScenePoint(scenePoint, size, sceneCenterX, sceneCenterY));
|