@promptbook/cli 0.63.0-9 → 0.63.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/README.md +45 -253
- package/esm/index.es.js +40 -5
- package/esm/index.es.js.map +1 -1
- package/esm/typings/promptbook-collection/index.d.ts +6 -6
- package/esm/typings/src/_packages/core.index.d.ts +4 -0
- package/esm/typings/src/_packages/types.index.d.ts +0 -2
- package/esm/typings/src/_packages/utils.index.d.ts +2 -0
- package/esm/typings/src/cli/cli-commands/make.d.ts +1 -0
- package/esm/typings/src/llm-providers/_common/createLlmToolsFromEnv.d.ts +1 -0
- package/esm/typings/src/llm-providers/_common/getLlmToolsForCli.d.ts +1 -0
- package/esm/typings/src/llm-providers/multiple/MultipleLlmExecutionTools.d.ts +1 -1
- package/esm/typings/src/types/ModelVariant.d.ts +1 -1
- package/esm/typings/src/types/PipelineJson/Expectations.d.ts +1 -1
- package/esm/typings/src/utils/clonePipeline.d.ts +13 -0
- package/package.json +1 -1
- package/umd/index.umd.js +40 -5
- package/umd/index.umd.js.map +1 -1
|
@@ -1,6 +1,7 @@
|
|
|
1
1
|
declare const _default: ({
|
|
2
|
-
title: string;
|
|
3
2
|
pipelineUrl: string;
|
|
3
|
+
sourceFile: string;
|
|
4
|
+
title: string;
|
|
4
5
|
promptbookVersion: string;
|
|
5
6
|
parameters: {
|
|
6
7
|
name: string;
|
|
@@ -78,10 +79,10 @@ declare const _default: ({
|
|
|
78
79
|
};
|
|
79
80
|
};
|
|
80
81
|
}[];
|
|
81
|
-
sourceFile: string;
|
|
82
82
|
} | {
|
|
83
|
-
title: string;
|
|
84
83
|
pipelineUrl: string;
|
|
84
|
+
sourceFile: string;
|
|
85
|
+
title: string;
|
|
85
86
|
promptbookVersion: string;
|
|
86
87
|
parameters: {
|
|
87
88
|
name: string;
|
|
@@ -165,10 +166,10 @@ declare const _default: ({
|
|
|
165
166
|
};
|
|
166
167
|
};
|
|
167
168
|
}[];
|
|
168
|
-
sourceFile: string;
|
|
169
169
|
} | {
|
|
170
|
-
title: string;
|
|
171
170
|
pipelineUrl: string;
|
|
171
|
+
sourceFile: string;
|
|
172
|
+
title: string;
|
|
172
173
|
promptbookVersion: string;
|
|
173
174
|
parameters: {
|
|
174
175
|
name: string;
|
|
@@ -247,6 +248,5 @@ declare const _default: ({
|
|
|
247
248
|
};
|
|
248
249
|
};
|
|
249
250
|
}[];
|
|
250
|
-
sourceFile: string;
|
|
251
251
|
})[];
|
|
252
252
|
export default _default;
|
|
@@ -59,6 +59,8 @@ import { PrefixStorage } from '../storage/utils/PrefixStorage';
|
|
|
59
59
|
import { executionReportJsonToString } from '../types/execution-report/executionReportJsonToString';
|
|
60
60
|
import type { ExecutionReportStringOptions } from '../types/execution-report/ExecutionReportStringOptions';
|
|
61
61
|
import { ExecutionReportStringOptionsDefaults } from '../types/execution-report/ExecutionReportStringOptions';
|
|
62
|
+
import { MODEL_VARIANTS } from '../types/ModelVariant';
|
|
63
|
+
import { EXPECTATION_UNITS } from '../types/PipelineJson/Expectations';
|
|
62
64
|
export { PROMPTBOOK_VERSION };
|
|
63
65
|
export { collectionToJson };
|
|
64
66
|
export { createCollectionFromJson };
|
|
@@ -120,3 +122,5 @@ export { PrefixStorage };
|
|
|
120
122
|
export { executionReportJsonToString };
|
|
121
123
|
export type { ExecutionReportStringOptions };
|
|
122
124
|
export { ExecutionReportStringOptionsDefaults };
|
|
125
|
+
export { MODEL_VARIANTS };
|
|
126
|
+
export { EXPECTATION_UNITS };
|
|
@@ -1,4 +1,3 @@
|
|
|
1
|
-
import { PROMPTBOOK_VERSION } from '../version';
|
|
2
1
|
import type { PipelineCollection } from '../collection/PipelineCollection';
|
|
3
2
|
import type { Command } from '../commands/_common/types/Command';
|
|
4
3
|
import type { CommandParser } from '../commands/_common/types/CommandParser';
|
|
@@ -205,7 +204,6 @@ import type { string_snake_case } from '../utils/normalization/normalizeTo_snake
|
|
|
205
204
|
import type { really_any } from '../utils/organization/really_any';
|
|
206
205
|
import type { TODO_any } from '../utils/organization/TODO_any';
|
|
207
206
|
import type { string_promptbook_version } from '../version';
|
|
208
|
-
export { PROMPTBOOK_VERSION };
|
|
209
207
|
export type { PipelineCollection };
|
|
210
208
|
export type { Command };
|
|
211
209
|
export type { CommandParser };
|
|
@@ -7,6 +7,7 @@ import { titleToName } from '../conversion/utils/titleToName';
|
|
|
7
7
|
import { forEachAsync } from '../execution/utils/forEachAsync';
|
|
8
8
|
import { isValidJsonString } from '../formats/json/utils/isValidJsonString';
|
|
9
9
|
import { extractBlock } from '../postprocessing/utils/extractBlock';
|
|
10
|
+
import { clonePipeline } from '../utils/clonePipeline';
|
|
10
11
|
import { $currentDate } from '../utils/currentDate';
|
|
11
12
|
import { deepClone } from '../utils/deepClone';
|
|
12
13
|
import { deepFreeze } from '../utils/deepFreeze';
|
|
@@ -74,6 +75,7 @@ export { titleToName };
|
|
|
74
75
|
export { forEachAsync };
|
|
75
76
|
export { isValidJsonString };
|
|
76
77
|
export { extractBlock };
|
|
78
|
+
export { clonePipeline };
|
|
77
79
|
export { $currentDate };
|
|
78
80
|
export { deepClone };
|
|
79
81
|
export { deepFreeze };
|
|
@@ -6,6 +6,7 @@ import type { Command as Program } from 'commander';
|
|
|
6
6
|
*/
|
|
7
7
|
export declare function initializeMakeCommand(program: Program): void;
|
|
8
8
|
/**
|
|
9
|
+
* TODO: [🥃] !!! Allow `ptbk make` without llm tools
|
|
9
10
|
* TODO: Maybe remove this command - "about" command should be enough?
|
|
10
11
|
* TODO: [0] DRY Javascript and typescript - Maybe make ONLY typescript and for javascript just remove types
|
|
11
12
|
* Note: [🟡] This code should never be published outside of `@promptbook/cli`
|
|
@@ -36,4 +36,5 @@ export declare function createLlmToolsFromEnv(options?: CreateLlmToolsFromEnvOpt
|
|
|
36
36
|
* TODO: [🧠] Maybe pass env as argument
|
|
37
37
|
* Note: [🟢] This code should never be published outside of `@promptbook/node` and `@promptbook/cli` and `@promptbook/cli`
|
|
38
38
|
* TODO: [👷♂️] @@@ Manual about construction of llmTools
|
|
39
|
+
* TODO: [🥃] Allow `ptbk make` without llm tools
|
|
39
40
|
*/
|
|
@@ -18,7 +18,7 @@ export declare class MultipleLlmExecutionTools implements LlmExecutionTools {
|
|
|
18
18
|
/**
|
|
19
19
|
* Array of execution tools in order of priority
|
|
20
20
|
*/
|
|
21
|
-
private llmExecutionTools;
|
|
21
|
+
private readonly llmExecutionTools;
|
|
22
22
|
/**
|
|
23
23
|
* Gets array of execution tools in order of priority
|
|
24
24
|
*/
|
|
@@ -10,6 +10,6 @@ export type ModelVariant = TupleToUnion<typeof MODEL_VARIANTS>;
|
|
|
10
10
|
/**
|
|
11
11
|
* @@@
|
|
12
12
|
*
|
|
13
|
-
* @
|
|
13
|
+
* @public exported from `@promptbook/core`
|
|
14
14
|
*/
|
|
15
15
|
export declare const MODEL_VARIANTS: readonly ["COMPLETION", "CHAT", "EMBEDDING"];
|
|
@@ -24,7 +24,7 @@ export type ExpectationUnit = TupleToUnion<typeof EXPECTATION_UNITS>;
|
|
|
24
24
|
* Units of text measurement
|
|
25
25
|
*
|
|
26
26
|
* @see https://github.com/webgptorg/promptbook/discussions/30
|
|
27
|
-
* @
|
|
27
|
+
* @public exported from `@promptbook/core`
|
|
28
28
|
*/
|
|
29
29
|
export declare const EXPECTATION_UNITS: readonly ["CHARACTERS", "WORDS", "SENTENCES", "LINES", "PARAGRAPHS", "PAGES"];
|
|
30
30
|
/**
|
|
@@ -0,0 +1,13 @@
|
|
|
1
|
+
import type { PipelineJson } from '../types/PipelineJson/PipelineJson';
|
|
2
|
+
/**
|
|
3
|
+
* @@@
|
|
4
|
+
*
|
|
5
|
+
* Note: It is usefull @@@
|
|
6
|
+
*
|
|
7
|
+
* @param pipeline
|
|
8
|
+
* @public exported from `@promptbook/utils`
|
|
9
|
+
*/
|
|
10
|
+
export declare function clonePipeline(pipeline: PipelineJson): PipelineJson;
|
|
11
|
+
/**
|
|
12
|
+
* TODO: [🍙] Make some standart order of json properties
|
|
13
|
+
*/
|
package/package.json
CHANGED
package/umd/index.umd.js
CHANGED
|
@@ -39,7 +39,7 @@
|
|
|
39
39
|
/**
|
|
40
40
|
* The version of the Promptbook library
|
|
41
41
|
*/
|
|
42
|
-
var PROMPTBOOK_VERSION = '0.63.0
|
|
42
|
+
var PROMPTBOOK_VERSION = '0.63.0';
|
|
43
43
|
// TODO: !!!! List here all the versions and annotate + put into script
|
|
44
44
|
|
|
45
45
|
/*! *****************************************************************************
|
|
@@ -860,7 +860,7 @@
|
|
|
860
860
|
});
|
|
861
861
|
}
|
|
862
862
|
|
|
863
|
-
var PipelineCollection = [{
|
|
863
|
+
var PipelineCollection = [{pipelineUrl:"https://promptbook.studio/promptbook/prepare-knowledge-from-markdown.ptbk.md",sourceFile:"./promptbook-collection/prepare-knowledge-from-markdown.ptbk.md",title:"Prepare Knowledge from Markdown",promptbookVersion:"0.63.0",parameters:[{name:"knowledgeContent",description:"Markdown document content",isInput:true,isOutput:false},{name:"knowledgePieces",description:"The knowledge JSON object",isInput:false,isOutput:true}],promptTemplates:[{blockType:"PROMPT_TEMPLATE",name:"knowledge",title:"Knowledge",modelRequirements:{modelVariant:"CHAT",modelName:"claude-3-opus-20240229"},content:"You are experienced data researcher, extract the important knowledge from the document.\n\n# Rules\n\n- Make pieces of information concise, clear, and easy to understand\n- One piece of information should be approximately 1 paragraph\n- Divide the paragraphs by markdown horizontal lines ---\n- Omit irrelevant information\n- Group redundant information\n- Write just extracted information, nothing else\n\n# The document\n\nTake information from this document:\n\n> {knowledgeContent}",dependentParameterNames:["knowledgeContent"],resultingParameterName:"knowledgePieces"}],knowledgeSources:[],knowledgePieces:[],personas:[],preparations:[{id:1,promptbookVersion:"0.63.0",usage:{price:{value:0},input:{tokensCount:{value:0},charactersCount:{value:0},wordsCount:{value:0},sentencesCount:{value:0},linesCount:{value:0},paragraphsCount:{value:0},pagesCount:{value:0}},output:{tokensCount:{value:0},charactersCount:{value:0},wordsCount:{value:0},sentencesCount:{value:0},linesCount:{value:0},paragraphsCount:{value:0},pagesCount:{value:0}}}}]},{pipelineUrl:"https://promptbook.studio/promptbook/prepare-knowledge-keywords.ptbk.md",sourceFile:"./promptbook-collection/prepare-knowledge-keywords.ptbk.md",title:"Prepare Keywords",promptbookVersion:"0.63.0",parameters:[{name:"knowledgePieceContent",description:"The content",isInput:true,isOutput:false},{name:"keywords",description:"Keywords separated by comma",isInput:false,isOutput:true}],promptTemplates:[{blockType:"PROMPT_TEMPLATE",name:"knowledge",title:"Knowledge",modelRequirements:{modelVariant:"CHAT",modelName:"claude-3-opus-20240229"},content:"You are experienced data researcher, detect the important keywords in the document.\n\n# Rules\n\n- Write just keywords separated by comma\n\n# The document\n\nTake information from this document:\n\n> {knowledgePieceContent}",dependentParameterNames:["knowledgePieceContent"],resultingParameterName:"keywords"}],knowledgeSources:[],knowledgePieces:[],personas:[],preparations:[{id:1,promptbookVersion:"0.63.0",usage:{price:{value:0},input:{tokensCount:{value:0},charactersCount:{value:0},wordsCount:{value:0},sentencesCount:{value:0},linesCount:{value:0},paragraphsCount:{value:0},pagesCount:{value:0}},output:{tokensCount:{value:0},charactersCount:{value:0},wordsCount:{value:0},sentencesCount:{value:0},linesCount:{value:0},paragraphsCount:{value:0},pagesCount:{value:0}}}}]},{pipelineUrl:"https://promptbook.studio/promptbook/prepare-knowledge-title.ptbk.md",sourceFile:"./promptbook-collection/prepare-knowledge-title.ptbk.md",title:"Prepare Title",promptbookVersion:"0.63.0",parameters:[{name:"knowledgePieceContent",description:"The content",isInput:true,isOutput:false},{name:"title",description:"The title of the document",isInput:false,isOutput:true}],promptTemplates:[{blockType:"PROMPT_TEMPLATE",name:"knowledge",title:"Knowledge",modelRequirements:{modelVariant:"CHAT",modelName:"claude-3-opus-20240229"},content:"You are experienced content creator, write best title for the document.\n\n# Rules\n\n- Write just title, nothing else\n- Title should be concise and clear\n- Write maximum 5 words for the title\n\n# The document\n\n> {knowledgePieceContent}",expectations:{words:{min:1,max:8}},dependentParameterNames:["knowledgePieceContent"],resultingParameterName:"title"}],knowledgeSources:[],knowledgePieces:[],personas:[],preparations:[{id:1,promptbookVersion:"0.63.0",usage:{price:{value:0},input:{tokensCount:{value:0},charactersCount:{value:0},wordsCount:{value:0},sentencesCount:{value:0},linesCount:{value:0},paragraphsCount:{value:0},pagesCount:{value:0}},output:{tokensCount:{value:0},charactersCount:{value:0},wordsCount:{value:0},sentencesCount:{value:0},linesCount:{value:0},paragraphsCount:{value:0},pagesCount:{value:0}}}}]},{pipelineUrl:"https://promptbook.studio/promptbook/prepare-persona.ptbk.md",sourceFile:"./promptbook-collection/prepare-persona.ptbk.md",title:"Prepare Keywords",promptbookVersion:"0.63.0",parameters:[{name:"availableModelNames",description:"List of available model names separated by comma (,)",isInput:true,isOutput:false},{name:"personaDescription",description:"Description of the persona",isInput:true,isOutput:false},{name:"modelRequirements",description:"Specific requirements for the model",isInput:false,isOutput:true}],promptTemplates:[{blockType:"PROMPT_TEMPLATE",name:"make-model-requirements",title:"Make modelRequirements",modelRequirements:{modelVariant:"CHAT",modelName:"gpt-4-turbo"},content:"You are experienced AI engineer, you need to create virtual assistant.\nWrite\n\n## Sample\n\n```json\n{\n\"modelName\": \"gpt-4o\",\n\"systemMessage\": \"You are experienced AI engineer and helpfull assistant.\",\n\"temperature\": 0.7\n}\n```\n\n## Instructions\n\n### Option `modelName`\n\nPick from the following models:\n\n- {availableModelNames}\n\n### Option `systemMessage`\n\nThe system message is used to communicate instructions or provide context to the model at the beginning of a conversation. It is displayed in a different format compared to user messages, helping the model understand its role in the conversation. The system message typically guides the model's behavior, sets the tone, or specifies desired output from the model. By utilizing the system message effectively, users can steer the model towards generating more accurate and relevant responses.\n\nFor example:\n\n> You are an experienced AI engineer and helpful assistant.\n\n> You are a friendly and knowledgeable chatbot.\n\n### Option `temperature`\n\nThe sampling temperature, between 0 and 1. Higher values like 0.8 will make the output more random, while lower values like 0.2 will make it more focused and deterministic. If set to 0, the model will use log probability to automatically increase the temperature until certain thresholds are hit.\n\nYou can pick a value between 0 and 2. For example:\n\n- `0.1`: Low temperature, extremely conservative and deterministic\n- `0.5`: Medium temperature, balanced between conservative and creative\n- `1.0`: High temperature, creative and bit random\n- `1.5`: Very high temperature, extremely creative and often chaotic and unpredictable\n- `2.0`: Maximum temperature, completely random and unpredictable, for some extreme creative use cases\n\n# The assistant\n\nTake this description of the persona:\n\n> {personaDescription}",expectFormat:"JSON",dependentParameterNames:["availableModelNames","personaDescription"],resultingParameterName:"modelRequirements"}],knowledgeSources:[],knowledgePieces:[],personas:[],preparations:[{id:1,promptbookVersion:"0.63.0",usage:{price:{value:0},input:{tokensCount:{value:0},charactersCount:{value:0},wordsCount:{value:0},sentencesCount:{value:0},linesCount:{value:0},paragraphsCount:{value:0},pagesCount:{value:0}},output:{tokensCount:{value:0},charactersCount:{value:0},wordsCount:{value:0},sentencesCount:{value:0},linesCount:{value:0},paragraphsCount:{value:0},pagesCount:{value:0}}}}]}];
|
|
864
864
|
|
|
865
865
|
/**
|
|
866
866
|
* This error indicates that the promptbook in a markdown format cannot be parsed into a valid promptbook object
|
|
@@ -2186,6 +2186,9 @@
|
|
|
2186
2186
|
.map(function (error, i) { return "".concat(i + 1, ") **").concat(error.name || 'Error', ":** ").concat(error.message); })
|
|
2187
2187
|
.join('\n')), "\n\n "); }));
|
|
2188
2188
|
}
|
|
2189
|
+
else if (this.llmExecutionTools.length === 0) {
|
|
2190
|
+
throw new PipelineExecutionError("You have not provided any `LlmExecutionTools`");
|
|
2191
|
+
}
|
|
2189
2192
|
else {
|
|
2190
2193
|
throw new PipelineExecutionError(spaceTrim__default["default"](function (block) { return "\n You have not provided any `LlmExecutionTools` that support model variant \"".concat(prompt.modelRequirements.modelVariant, "\n\n Available `LlmExecutionTools`:\n ").concat(block(_this.llmExecutionTools
|
|
2191
2194
|
.map(function (tools) { return "- ".concat(tools.title, " ").concat(tools.description || ''); })
|
|
@@ -3850,6 +3853,35 @@
|
|
|
3850
3853
|
* TODO: [🧠][🥜]
|
|
3851
3854
|
*/
|
|
3852
3855
|
|
|
3856
|
+
/**
|
|
3857
|
+
* @@@
|
|
3858
|
+
*
|
|
3859
|
+
* Note: It is usefull @@@
|
|
3860
|
+
*
|
|
3861
|
+
* @param pipeline
|
|
3862
|
+
* @public exported from `@promptbook/utils`
|
|
3863
|
+
*/
|
|
3864
|
+
function clonePipeline(pipeline) {
|
|
3865
|
+
// Note: Not using spread operator (...) because @@@
|
|
3866
|
+
var pipelineUrl = pipeline.pipelineUrl, sourceFile = pipeline.sourceFile, title = pipeline.title, promptbookVersion = pipeline.promptbookVersion, description = pipeline.description, parameters = pipeline.parameters, promptTemplates = pipeline.promptTemplates, knowledgeSources = pipeline.knowledgeSources, knowledgePieces = pipeline.knowledgePieces, personas = pipeline.personas, preparations = pipeline.preparations;
|
|
3867
|
+
return {
|
|
3868
|
+
pipelineUrl: pipelineUrl,
|
|
3869
|
+
sourceFile: sourceFile,
|
|
3870
|
+
title: title,
|
|
3871
|
+
promptbookVersion: promptbookVersion,
|
|
3872
|
+
description: description,
|
|
3873
|
+
parameters: parameters,
|
|
3874
|
+
promptTemplates: promptTemplates,
|
|
3875
|
+
knowledgeSources: knowledgeSources,
|
|
3876
|
+
knowledgePieces: knowledgePieces,
|
|
3877
|
+
personas: personas,
|
|
3878
|
+
preparations: preparations,
|
|
3879
|
+
};
|
|
3880
|
+
}
|
|
3881
|
+
/**
|
|
3882
|
+
* TODO: [🍙] Make some standart order of json properties
|
|
3883
|
+
*/
|
|
3884
|
+
|
|
3853
3885
|
/**
|
|
3854
3886
|
* Prepare pipeline from string (markdown) format to JSON format
|
|
3855
3887
|
*
|
|
@@ -3926,7 +3958,7 @@
|
|
|
3926
3958
|
// ----- /Templates preparation -----
|
|
3927
3959
|
// Note: Count total usage
|
|
3928
3960
|
currentPreparation.usage = llmToolsWithUsage.getTotalUsage();
|
|
3929
|
-
return [2 /*return*/, __assign(__assign({}, pipeline), { promptTemplates: promptTemplatesPrepared, knowledgeSources: knowledgeSourcesPrepared, knowledgePieces: knowledgePiecesPrepared, personas: preparedPersonas, preparations: preparations })];
|
|
3961
|
+
return [2 /*return*/, __assign(__assign({}, clonePipeline(pipeline)), { promptTemplates: promptTemplatesPrepared, knowledgeSources: knowledgeSourcesPrepared, knowledgePieces: knowledgePiecesPrepared, personas: preparedPersonas, preparations: preparations })];
|
|
3930
3962
|
}
|
|
3931
3963
|
});
|
|
3932
3964
|
});
|
|
@@ -4317,7 +4349,7 @@
|
|
|
4317
4349
|
* Units of text measurement
|
|
4318
4350
|
*
|
|
4319
4351
|
* @see https://github.com/webgptorg/promptbook/discussions/30
|
|
4320
|
-
* @
|
|
4352
|
+
* @public exported from `@promptbook/core`
|
|
4321
4353
|
*/
|
|
4322
4354
|
var EXPECTATION_UNITS = ['CHARACTERS', 'WORDS', 'SENTENCES', 'LINES', 'PARAGRAPHS', 'PAGES'];
|
|
4323
4355
|
/**
|
|
@@ -4557,7 +4589,7 @@
|
|
|
4557
4589
|
/**
|
|
4558
4590
|
* @@@
|
|
4559
4591
|
*
|
|
4560
|
-
* @
|
|
4592
|
+
* @public exported from `@promptbook/core`
|
|
4561
4593
|
*/
|
|
4562
4594
|
var MODEL_VARIANTS = ['COMPLETION', 'CHAT', 'EMBEDDING' /* <- TODO [🏳] */ /* <- [🤖] */];
|
|
4563
4595
|
|
|
@@ -7634,6 +7666,7 @@
|
|
|
7634
7666
|
* TODO: [🧠] Maybe pass env as argument
|
|
7635
7667
|
* Note: [🟢] This code should never be published outside of `@promptbook/node` and `@promptbook/cli` and `@promptbook/cli`
|
|
7636
7668
|
* TODO: [👷♂️] @@@ Manual about construction of llmTools
|
|
7669
|
+
* TODO: [🥃] Allow `ptbk make` without llm tools
|
|
7637
7670
|
*/
|
|
7638
7671
|
|
|
7639
7672
|
/**
|
|
@@ -7829,6 +7862,7 @@
|
|
|
7829
7862
|
/**
|
|
7830
7863
|
* Note: [🟡] This code should never be published outside of `@promptbook/cli`
|
|
7831
7864
|
* TODO: [👷♂️] @@@ Manual about construction of llmTools
|
|
7865
|
+
* TODO: [🥃] Allow `ptbk make` without llm tools
|
|
7832
7866
|
*/
|
|
7833
7867
|
|
|
7834
7868
|
/**
|
|
@@ -8015,6 +8049,7 @@
|
|
|
8015
8049
|
});
|
|
8016
8050
|
}
|
|
8017
8051
|
/**
|
|
8052
|
+
* TODO: [🥃] !!! Allow `ptbk make` without llm tools
|
|
8018
8053
|
* TODO: Maybe remove this command - "about" command should be enough?
|
|
8019
8054
|
* TODO: [0] DRY Javascript and typescript - Maybe make ONLY typescript and for javascript just remove types
|
|
8020
8055
|
* Note: [🟡] This code should never be published outside of `@promptbook/cli`
|