@promptbook/types 0.67.0-0 → 0.67.0-2

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.
@@ -90,7 +90,6 @@ export type CommonPromptResult = {
90
90
  readonly rawResponse: TODO_object;
91
91
  };
92
92
  /**
93
- * TODO: !!!!!! [🚉] Check each provider that rawResponse is fully serializable as JSON
94
93
  * TODO: [🧠] Maybe timing more accurate then seconds?
95
94
  * TODO: [🧠] Should here be link to the prompt?
96
95
  * TODO: [🧠] Maybe type `rawResponse` properly - not onject but OpenAI.result.whatever
@@ -9,6 +9,7 @@ import type { string_persona_description } from '../types/typeAliases';
9
9
  */
10
10
  export declare function preparePersona(personaDescription: string_persona_description, options: PrepareOptions): Promise<PersonaPreparedJson['modelRequirements']>;
11
11
  /**
12
+ * TODO: [🔃] !!!!! If the persona was prepared with different version or different set of models, prepare it once again
12
13
  * TODO: [🏢] !! Check validity of `modelName` in pipeline
13
14
  * TODO: [🏢] !! Check validity of `systemMessage` in pipeline
14
15
  * TODO: [🏢] !! Check validity of `temperature` in pipeline
@@ -6,6 +6,7 @@ import type { PipelineJson } from '../types/PipelineJson/PipelineJson';
6
6
  */
7
7
  export declare function isPipelinePrepared(pipeline: PipelineJson): boolean;
8
8
  /**
9
+ * TODO: [🔃] !!!!! If the pipeline was prepared with different version or different set of models, prepare it once again
9
10
  * TODO: [🐠] Maybe base this on `makeValidator`
10
11
  * TODO: [🧊] Pipeline can be partially prepared, this should return true ONLY if fully prepared
11
12
  * TODO: [🧿] Maybe do same process with same granularity and subfinctions as `preparePipeline`
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@promptbook/types",
3
- "version": "0.67.0-0",
3
+ "version": "0.67.0-2",
4
4
  "description": "Supercharge your use of large language models",
5
5
  "private": false,
6
6
  "sideEffects": false,
@@ -45,6 +45,6 @@
45
45
  ],
46
46
  "typings": "./esm/typings/src/_packages/types.index.d.ts",
47
47
  "peerDependencies": {
48
- "@promptbook/core": "0.67.0-0"
48
+ "@promptbook/core": "0.67.0-2"
49
49
  }
50
50
  }