@promptbook/openai 0.77.0-3 → 0.77.0-5

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
@@ -14,7 +14,7 @@ var BOOK_LANGUAGE_VERSION = '1.0.0';
14
14
  *
15
15
  * @see https://github.com/webgptorg/promptbook
16
16
  */
17
- var PROMPTBOOK_ENGINE_VERSION = '0.77.0-2';
17
+ var PROMPTBOOK_ENGINE_VERSION = '0.77.0-4';
18
18
  /**
19
19
  * TODO: string_promptbook_version should be constrained to the all versions of Promptbook engine
20
20
  * Note: [💞] Ignore a discrepancy between file name and entity name
@@ -10,6 +10,7 @@ import { forEachAsync } from '../execution/utils/forEachAsync';
10
10
  import { isValidJsonString } from '../formats/json/utils/isValidJsonString';
11
11
  import { $getCurrentDate } from '../utils/$getCurrentDate';
12
12
  import { $isRunningInBrowser } from '../utils/environment/$isRunningInBrowser';
13
+ import { $isRunningInJest } from '../utils/environment/$isRunningInJest';
13
14
  import { $isRunningInNode } from '../utils/environment/$isRunningInNode';
14
15
  import { $isRunningInWebWorker } from '../utils/environment/$isRunningInWebWorker';
15
16
  import { CHARACTERS_PER_STANDARD_LINE } from '../utils/expectation-counters/constants';
@@ -84,6 +85,7 @@ export { forEachAsync };
84
85
  export { isValidJsonString };
85
86
  export { $getCurrentDate };
86
87
  export { $isRunningInBrowser };
88
+ export { $isRunningInJest };
87
89
  export { $isRunningInNode };
88
90
  export { $isRunningInWebWorker };
89
91
  export { CHARACTERS_PER_STANDARD_LINE };
@@ -0,0 +1,11 @@
1
+ import type { Command as Program } from 'commander';
2
+ /**
3
+ * Initializes `list-models` command for Promptbook CLI utilities
4
+ *
5
+ * @private internal function of `promptbookCli`
6
+ */
7
+ export declare function initializeListModelsCommand(program: Program): void;
8
+ /**
9
+ * Note: [💞] Ignore a discrepancy between file name and entity name
10
+ * Note: [🟡] Code in this file should never be published outside of `@promptbook/cli`
11
+ */
@@ -7,6 +7,7 @@ import type { LlmToolsConfiguration } from './LlmToolsConfiguration';
7
7
  * It looks for environment variables:
8
8
  * - `process.env.OPENAI_API_KEY`
9
9
  * - `process.env.ANTHROPIC_CLAUDE_API_KEY`
10
+ * - ...
10
11
  *
11
12
  * @returns @@@
12
13
  * @public exported from `@promptbook/node`
@@ -10,6 +10,7 @@ import type { CreateLlmToolsFromConfigurationOptions } from './createLlmToolsFro
10
10
  * It looks for environment variables:
11
11
  * - `process.env.OPENAI_API_KEY`
12
12
  * - `process.env.ANTHROPIC_CLAUDE_API_KEY`
13
+ * - ...
13
14
  *
14
15
  * @returns @@@
15
16
  * @public exported from `@promptbook/node`
@@ -1,3 +1,4 @@
1
+ import type { string_SCREAMING_CASE } from '../../../utils/normalization/normalizeTo_SCREAMING_CASE';
1
2
  import type { string_name } from '../../../types/typeAliases';
2
3
  import type { string_title } from '../../../types/typeAliases';
3
4
  import type { Registered } from '../../../utils/$Register';
@@ -12,6 +13,10 @@ export type LlmToolsMetadata = Registered & {
12
13
  * @@@
13
14
  */
14
15
  readonly title: string_title;
16
+ /**
17
+ * @@@
18
+ */
19
+ readonly envVariables: ReadonlyArray<string_name & string_SCREAMING_CASE>;
15
20
  /**
16
21
  * @@@
17
22
  */
@@ -10,4 +10,4 @@ import type { Registration } from '../../utils/$Register';
10
10
  export declare const _AzureOpenAiMetadataRegistration: Registration;
11
11
  /**
12
12
  * Note: [💞] Ignore a discrepancy between file name and entity name
13
- */
13
+ */
@@ -19,4 +19,4 @@ export declare const _OpenAiMetadataRegistration: Registration;
19
19
  export declare const _OpenAiAssistantMetadataRegistration: Registration;
20
20
  /**
21
21
  * Note: [💞] Ignore a discrepancy between file name and entity name
22
- */
22
+ */
@@ -0,0 +1,8 @@
1
+ /**
2
+ * Detects if the code is running in jest environment
3
+ *
4
+ * Note: `$` is used to indicate that this function is not a pure function - it looks at the global object to determine the environment
5
+ *
6
+ * @public exported from `@promptbook/utils`
7
+ */
8
+ export declare const $isRunningInJest: Function;
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@promptbook/openai",
3
- "version": "0.77.0-3",
3
+ "version": "0.77.0-5",
4
4
  "description": "It's time for a paradigm shift. The future of software in plain English, French or Latin",
5
5
  "--note-0": " <- [🐊]",
6
6
  "private": false,
@@ -54,7 +54,7 @@
54
54
  "module": "./esm/index.es.js",
55
55
  "typings": "./esm/typings/src/_packages/openai.index.d.ts",
56
56
  "peerDependencies": {
57
- "@promptbook/core": "0.77.0-3"
57
+ "@promptbook/core": "0.77.0-5"
58
58
  },
59
59
  "dependencies": {
60
60
  "colors": "1.4.0",
package/umd/index.umd.js CHANGED
@@ -22,7 +22,7 @@
22
22
  *
23
23
  * @see https://github.com/webgptorg/promptbook
24
24
  */
25
- var PROMPTBOOK_ENGINE_VERSION = '0.77.0-2';
25
+ var PROMPTBOOK_ENGINE_VERSION = '0.77.0-4';
26
26
  /**
27
27
  * TODO: string_promptbook_version should be constrained to the all versions of Promptbook engine
28
28
  * Note: [💞] Ignore a discrepancy between file name and entity name