@promptbook/cli 0.112.0-138 → 0.112.0-139

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/src/version.ts CHANGED
@@ -16,7 +16,7 @@ export const BOOK_LANGUAGE_VERSION: string_semantic_version = '2.0.0';
16
16
  * @generated
17
17
  * @see https://github.com/webgptorg/promptbook
18
18
  */
19
- export const PROMPTBOOK_ENGINE_VERSION: string_promptbook_version = '0.112.0-138';
19
+ export const PROMPTBOOK_ENGINE_VERSION: string_promptbook_version = '0.112.0-139';
20
20
 
21
21
  /**
22
22
  * Represents the version string of the Promptbook engine.
package/src/versions.txt CHANGED
@@ -1163,4 +1163,4 @@
1163
1163
  0.112.0-135
1164
1164
  0.112.0-136
1165
1165
  0.112.0-137
1166
- 0.112.0-138
1166
+ 0.112.0-139
package/umd/index.umd.js CHANGED
@@ -63,7 +63,7 @@
63
63
  * @generated
64
64
  * @see https://github.com/webgptorg/promptbook
65
65
  */
66
- const PROMPTBOOK_ENGINE_VERSION = '0.112.0-138';
66
+ const PROMPTBOOK_ENGINE_VERSION = '0.112.0-139';
67
67
  /**
68
68
  * TODO: string_promptbook_version should be constrained to the all versions of Promptbook engine
69
69
  * Note: [💞] Ignore a discrepancy between file name and entity name
@@ -1,23 +0,0 @@
1
- import { forTime } from 'waitasecond';
2
- import { just } from '../../../../../../src/utils/organization/just';
3
-
4
- /**
5
- * Handles get.
6
- */
7
- export async function GET() {
8
- const readableStream = new ReadableStream({
9
- async start(controller) {
10
- while (just(true)) {
11
- await forTime(100);
12
- controller.enqueue(new TextEncoder().encode('x'));
13
- }
14
-
15
- controller.close();
16
- },
17
- });
18
-
19
- return new Response(readableStream, {
20
- status: 200,
21
- headers: { 'Content-Type': 'text/plain' },
22
- });
23
- }