@promptbook/core 0.61.0-13 → 0.61.0-15

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.
Files changed (103) hide show
  1. package/esm/index.es.js +7 -11
  2. package/esm/index.es.js.map +1 -1
  3. package/esm/typings/src/_packages/types.index.d.ts +6 -3
  4. package/esm/typings/src/commands/MODEL/ModelCommand.d.ts +2 -2
  5. package/esm/typings/src/config.d.ts +4 -0
  6. package/esm/typings/src/conversion/utils/stringifyPipelineJson.d.ts +13 -0
  7. package/esm/typings/src/conversion/utils/stringifyPipelineJson.test.d.ts +1 -0
  8. package/esm/typings/src/conversion/validation/_importPipeline.d.ts +10 -1
  9. package/esm/typings/src/conversion/validation/validatePipeline.d.ts +1 -1
  10. package/esm/typings/src/execution/LlmExecutionTools.d.ts +7 -7
  11. package/esm/typings/src/execution/PipelineExecutor.d.ts +1 -1
  12. package/esm/typings/src/execution/PromptResult.d.ts +14 -56
  13. package/esm/typings/src/execution/PromptResultUsage.d.ts +26 -0
  14. package/esm/typings/src/execution/UncertainNumber.d.ts +18 -0
  15. package/esm/typings/src/execution/utils/addUsage.d.ts +1 -1
  16. package/esm/typings/src/execution/utils/computeUsageCounts.d.ts +1 -1
  17. package/esm/typings/src/execution/utils/uncertainNumber.d.ts +1 -1
  18. package/esm/typings/src/execution/utils/usageToWorktime.d.ts +2 -2
  19. package/esm/typings/src/llm-providers/_common/createLlmToolsFromEnv.d.ts +10 -2
  20. package/esm/typings/src/llm-providers/_common/getLlmToolsForTestingAndScriptsAndPlayground.d.ts +2 -1
  21. package/esm/typings/src/llm-providers/_common/utils/count-total-cost/LlmExecutionToolsWithTotalCost.d.ts +1 -1
  22. package/esm/typings/src/llm-providers/_common/utils/count-total-cost/limitTotalCost.d.ts +3 -3
  23. package/esm/typings/src/llm-providers/anthropic-claude/AnthropicClaudeExecutionTools.d.ts +2 -2
  24. package/esm/typings/src/llm-providers/azure-openai/AzureOpenAiExecutionTools.d.ts +4 -4
  25. package/esm/typings/src/llm-providers/mocked/MockedEchoLlmExecutionTools.d.ts +4 -4
  26. package/esm/typings/src/llm-providers/mocked/MockedFackedLlmExecutionTools.d.ts +6 -6
  27. package/esm/typings/src/llm-providers/multiple/MultipleLlmExecutionTools.d.ts +9 -7
  28. package/esm/typings/src/llm-providers/openai/OpenAiExecutionTools.d.ts +6 -6
  29. package/esm/typings/src/llm-providers/openai/computeOpenaiUsage.d.ts +1 -1
  30. package/esm/typings/src/llm-providers/remote/RemoteLlmExecutionTools.d.ts +9 -7
  31. package/esm/typings/src/scripting/javascript/utils/unknownToString.d.ts +2 -1
  32. package/esm/typings/src/types/ModelRequirements.d.ts +53 -14
  33. package/esm/typings/src/types/ModelVariant.d.ts +14 -0
  34. package/esm/typings/src/types/PipelineJson/PersonaJson.d.ts +2 -4
  35. package/esm/typings/src/types/PipelineJson/PreparationJson.d.ts +1 -1
  36. package/esm/typings/src/types/Prompt.d.ts +45 -1
  37. package/esm/typings/src/types/typeAliases.d.ts +11 -0
  38. package/esm/typings/src/utils/normalization/parseKeywords.d.ts +2 -1
  39. package/esm/typings/src/utils/organization/{TODO.d.ts → TODO_any.d.ts} +1 -1
  40. package/esm/typings/src/utils/organization/TODO_object.d.ts +6 -0
  41. package/esm/typings/src/utils/organization/TODO_unknown.d.ts +6 -0
  42. package/esm/typings/src/utils/organization/really_any.d.ts +1 -1
  43. package/esm/typings/src/utils/organization/really_unknown.d.ts +6 -0
  44. package/esm/typings/src/utils/validators/email/isValidEmail.d.ts +2 -1
  45. package/esm/typings/src/utils/validators/filePath/isValidFilePath.d.ts +2 -1
  46. package/esm/typings/src/utils/validators/javascriptName/isValidJavascriptName.d.ts +2 -1
  47. package/esm/typings/src/utils/validators/semanticVersion/isValidPromptbookVersion.d.ts +2 -1
  48. package/esm/typings/src/utils/validators/semanticVersion/isValidSemanticVersion.d.ts +2 -1
  49. package/esm/typings/src/utils/validators/url/isValidPipelineUrl.d.ts +2 -1
  50. package/esm/typings/src/utils/validators/url/isValidUrl.d.ts +2 -1
  51. package/esm/typings/src/utils/validators/uuid/isValidUuid.d.ts +2 -1
  52. package/package.json +1 -1
  53. package/umd/index.umd.js +7 -11
  54. package/umd/index.umd.js.map +1 -1
  55. package/umd/typings/src/_packages/types.index.d.ts +6 -3
  56. package/umd/typings/src/commands/MODEL/ModelCommand.d.ts +2 -2
  57. package/umd/typings/src/config.d.ts +4 -0
  58. package/umd/typings/src/conversion/utils/stringifyPipelineJson.d.ts +13 -0
  59. package/umd/typings/src/conversion/utils/stringifyPipelineJson.test.d.ts +1 -0
  60. package/umd/typings/src/conversion/validation/_importPipeline.d.ts +10 -1
  61. package/umd/typings/src/conversion/validation/validatePipeline.d.ts +1 -1
  62. package/umd/typings/src/execution/LlmExecutionTools.d.ts +7 -7
  63. package/umd/typings/src/execution/PipelineExecutor.d.ts +1 -1
  64. package/umd/typings/src/execution/PromptResult.d.ts +14 -56
  65. package/umd/typings/src/execution/PromptResultUsage.d.ts +26 -0
  66. package/umd/typings/src/execution/UncertainNumber.d.ts +18 -0
  67. package/umd/typings/src/execution/utils/addUsage.d.ts +1 -1
  68. package/umd/typings/src/execution/utils/computeUsageCounts.d.ts +1 -1
  69. package/umd/typings/src/execution/utils/uncertainNumber.d.ts +1 -1
  70. package/umd/typings/src/execution/utils/usageToWorktime.d.ts +2 -2
  71. package/umd/typings/src/llm-providers/_common/createLlmToolsFromEnv.d.ts +10 -2
  72. package/umd/typings/src/llm-providers/_common/getLlmToolsForTestingAndScriptsAndPlayground.d.ts +2 -1
  73. package/umd/typings/src/llm-providers/_common/utils/count-total-cost/LlmExecutionToolsWithTotalCost.d.ts +1 -1
  74. package/umd/typings/src/llm-providers/_common/utils/count-total-cost/limitTotalCost.d.ts +3 -3
  75. package/umd/typings/src/llm-providers/anthropic-claude/AnthropicClaudeExecutionTools.d.ts +2 -2
  76. package/umd/typings/src/llm-providers/azure-openai/AzureOpenAiExecutionTools.d.ts +4 -4
  77. package/umd/typings/src/llm-providers/mocked/MockedEchoLlmExecutionTools.d.ts +4 -4
  78. package/umd/typings/src/llm-providers/mocked/MockedFackedLlmExecutionTools.d.ts +6 -6
  79. package/umd/typings/src/llm-providers/multiple/MultipleLlmExecutionTools.d.ts +9 -7
  80. package/umd/typings/src/llm-providers/openai/OpenAiExecutionTools.d.ts +6 -6
  81. package/umd/typings/src/llm-providers/openai/computeOpenaiUsage.d.ts +1 -1
  82. package/umd/typings/src/llm-providers/remote/RemoteLlmExecutionTools.d.ts +9 -7
  83. package/umd/typings/src/scripting/javascript/utils/unknownToString.d.ts +2 -1
  84. package/umd/typings/src/types/ModelRequirements.d.ts +53 -14
  85. package/umd/typings/src/types/ModelVariant.d.ts +14 -0
  86. package/umd/typings/src/types/PipelineJson/PersonaJson.d.ts +2 -4
  87. package/umd/typings/src/types/PipelineJson/PreparationJson.d.ts +1 -1
  88. package/umd/typings/src/types/Prompt.d.ts +45 -1
  89. package/umd/typings/src/types/typeAliases.d.ts +11 -0
  90. package/umd/typings/src/utils/normalization/parseKeywords.d.ts +2 -1
  91. package/umd/typings/src/utils/organization/{TODO.d.ts → TODO_any.d.ts} +1 -1
  92. package/umd/typings/src/utils/organization/TODO_object.d.ts +6 -0
  93. package/umd/typings/src/utils/organization/TODO_unknown.d.ts +6 -0
  94. package/umd/typings/src/utils/organization/really_any.d.ts +1 -1
  95. package/umd/typings/src/utils/organization/really_unknown.d.ts +6 -0
  96. package/umd/typings/src/utils/validators/email/isValidEmail.d.ts +2 -1
  97. package/umd/typings/src/utils/validators/filePath/isValidFilePath.d.ts +2 -1
  98. package/umd/typings/src/utils/validators/javascriptName/isValidJavascriptName.d.ts +2 -1
  99. package/umd/typings/src/utils/validators/semanticVersion/isValidPromptbookVersion.d.ts +2 -1
  100. package/umd/typings/src/utils/validators/semanticVersion/isValidSemanticVersion.d.ts +2 -1
  101. package/umd/typings/src/utils/validators/url/isValidPipelineUrl.d.ts +2 -1
  102. package/umd/typings/src/utils/validators/url/isValidUrl.d.ts +2 -1
  103. package/umd/typings/src/utils/validators/uuid/isValidUuid.d.ts +2 -1
package/esm/index.es.js CHANGED
@@ -815,7 +815,7 @@ function validatePipeline(pipeline) {
815
815
  * > * It checks:
816
816
  * > * - it has a valid structure
817
817
  * > * - ...
818
- * > ex port function validatePipeline(promptbook: unknown): asserts promptbook is PipelineJson {
818
+ * > ex port function validatePipeline(promptbook: really_unknown): asserts promptbook is PipelineJson {
819
819
  */
820
820
  /**
821
821
  * TODO: [🧠][🐣] !!!! Validate that all samples match expectations
@@ -1359,7 +1359,7 @@ function forEachAsync(array, options, callbackfunction) {
1359
1359
  });
1360
1360
  }
1361
1361
 
1362
- var PipelineCollection = [{title:"Prepare Knowledge from Markdown",pipelineUrl:"https://promptbook.studio/promptbook/prepare-knowledge-from-markdown.ptbk.md",promptbookVersion:"0.61.0-12",parameters:[{name:"content",description:"Markdown document content",isInput:true,isOutput:false},{name:"knowledge",description:"The knowledge JSON object",isInput:false,isOutput:true}],promptTemplates:[{name:"knowledge",title:"Knowledge",dependentParameterNames:["content"],blockType:"PROMPT_TEMPLATE",personaName:null,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> {content}",resultingParameterName:"knowledge"}],knowledgeSources:[],knowledgePieces:[],personas:[],preparations:[{id:1,promptbookVersion:"0.61.0-12",modelUsage:{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}}}}],sourceFile:"./promptbook-collection/prepare-knowledge-from-markdown.ptbk.md"},{title:"Prepare Keywords",pipelineUrl:"https://promptbook.studio/promptbook/prepare-knowledge-keywords.ptbk.md",promptbookVersion:"0.61.0-12",parameters:[{name:"content",description:"The content",isInput:true,isOutput:false},{name:"keywords",description:"Keywords separated by comma",isInput:false,isOutput:true}],promptTemplates:[{name:"knowledge",title:"Knowledge",dependentParameterNames:["content"],blockType:"PROMPT_TEMPLATE",personaName:null,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> {content}",resultingParameterName:"keywords"}],knowledgeSources:[],knowledgePieces:[],personas:[],preparations:[{id:1,promptbookVersion:"0.61.0-12",modelUsage:{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}}}}],sourceFile:"./promptbook-collection/prepare-knowledge-keywords.ptbk.md"},{title:"Prepare Title",pipelineUrl:"https://promptbook.studio/promptbook/prepare-knowledge-title.ptbk.md",promptbookVersion:"0.61.0-12",parameters:[{name:"content",description:"The content",isInput:true,isOutput:false},{name:"title",description:"The title of the document",isInput:false,isOutput:true}],promptTemplates:[{name:"knowledge",title:"Knowledge",dependentParameterNames:["content"],blockType:"PROMPT_TEMPLATE",expectations:{words:{min:1,max:8}},personaName:null,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> {content}",resultingParameterName:"title"}],knowledgeSources:[],knowledgePieces:[],personas:[],preparations:[{id:1,promptbookVersion:"0.61.0-12",modelUsage:{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}}}}],sourceFile:"./promptbook-collection/prepare-knowledge-title.ptbk.md"},{title:"Prepare Keywords",pipelineUrl:"https://promptbook.studio/promptbook/prepare-persona.ptbk.md",promptbookVersion:"0.61.0-12",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:[{name:"make-model-requirements",title:"Make modelRequirements",dependentParameterNames:["availableModelNames","personaDescription"],blockType:"PROMPT_TEMPLATE",expectFormat:"JSON",personaName:null,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}",resultingParameterName:"modelRequirements"}],knowledgeSources:[],knowledgePieces:[],personas:[],preparations:[{id:1,promptbookVersion:"0.61.0-12",modelUsage:{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}}}}],sourceFile:"./promptbook-collection/prepare-persona.ptbk.md"}];
1362
+ var PipelineCollection = [{title:"Prepare Knowledge from Markdown",pipelineUrl:"https://promptbook.studio/promptbook/prepare-knowledge-from-markdown.ptbk.md",promptbookVersion:"0.61.0-14",parameters:[{name:"content",description:"Markdown document content",isInput:true,isOutput:false},{name:"knowledge",description:"The knowledge JSON object",isInput:false,isOutput:true}],promptTemplates:[{name:"knowledge",title:"Knowledge",dependentParameterNames:["content"],blockType:"PROMPT_TEMPLATE",personaName:null,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> {content}",resultingParameterName:"knowledge"}],knowledgeSources:[],knowledgePieces:[],personas:[],preparations:[{id:1,promptbookVersion:"0.61.0-14",modelUsage:{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}}}}],sourceFile:"./promptbook-collection/prepare-knowledge-from-markdown.ptbk.md"},{title:"Prepare Keywords",pipelineUrl:"https://promptbook.studio/promptbook/prepare-knowledge-keywords.ptbk.md",promptbookVersion:"0.61.0-14",parameters:[{name:"content",description:"The content",isInput:true,isOutput:false},{name:"keywords",description:"Keywords separated by comma",isInput:false,isOutput:true}],promptTemplates:[{name:"knowledge",title:"Knowledge",dependentParameterNames:["content"],blockType:"PROMPT_TEMPLATE",personaName:null,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> {content}",resultingParameterName:"keywords"}],knowledgeSources:[],knowledgePieces:[],personas:[],preparations:[{id:1,promptbookVersion:"0.61.0-14",modelUsage:{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}}}}],sourceFile:"./promptbook-collection/prepare-knowledge-keywords.ptbk.md"},{title:"Prepare Title",pipelineUrl:"https://promptbook.studio/promptbook/prepare-knowledge-title.ptbk.md",promptbookVersion:"0.61.0-14",parameters:[{name:"content",description:"The content",isInput:true,isOutput:false},{name:"title",description:"The title of the document",isInput:false,isOutput:true}],promptTemplates:[{name:"knowledge",title:"Knowledge",dependentParameterNames:["content"],blockType:"PROMPT_TEMPLATE",expectations:{words:{min:1,max:8}},personaName:null,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> {content}",resultingParameterName:"title"}],knowledgeSources:[],knowledgePieces:[],personas:[],preparations:[{id:1,promptbookVersion:"0.61.0-14",modelUsage:{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}}}}],sourceFile:"./promptbook-collection/prepare-knowledge-title.ptbk.md"},{title:"Prepare Keywords",pipelineUrl:"https://promptbook.studio/promptbook/prepare-persona.ptbk.md",promptbookVersion:"0.61.0-14",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:[{name:"make-model-requirements",title:"Make modelRequirements",dependentParameterNames:["availableModelNames","personaDescription"],blockType:"PROMPT_TEMPLATE",expectFormat:"JSON",personaName:null,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}",resultingParameterName:"modelRequirements"}],knowledgeSources:[],knowledgePieces:[],personas:[],preparations:[{id:1,promptbookVersion:"0.61.0-14",modelUsage:{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}}}}],sourceFile:"./promptbook-collection/prepare-persona.ptbk.md"}];
1363
1363
 
1364
1364
  var defaultDiacriticsRemovalMap = [
1365
1365
  {
@@ -2033,7 +2033,7 @@ function arrayableToArray(input) {
2033
2033
  /**
2034
2034
  * The version of the Promptbook library
2035
2035
  */
2036
- var PROMPTBOOK_VERSION = '0.61.0-12';
2036
+ var PROMPTBOOK_VERSION = '0.61.0-14';
2037
2037
  // TODO: !!!! List here all the versions and annotate + put into script
2038
2038
 
2039
2039
  /**
@@ -3705,16 +3705,12 @@ var jokerCommandParser = {
3705
3705
  },
3706
3706
  };
3707
3707
 
3708
- var MODEL_VARIANTS = ['COMPLETION', 'CHAT', 'EMBEDDING' /* <- TODO [🏳] */ /* <- [🤖] */];
3709
3708
  /**
3710
- * TODO: [🧠][🈁] `seed` should maybe be somewhere else (not in `ModelRequirements`) (simmilar that `user` identification is not here)
3711
- * TODO: [🧠][💱] Add more model options: `stop_token`, `logit_bias`, `logprobs` (`top_logprobs`), `top_k`, `top_p`, `presence_penalty`, `frequency_penalty`, `bestOf`, `logitBias`, `logitBiasType`,...
3712
- * [💱] Probbably keep using just `temperature` in Promptbook (not `top_k` and `top_p`)
3713
- * TODO: [🛠] Actions, instruments (and maybe knowledge) => Functions and tools
3714
- * TODO: Maybe figure out better word than "variant"
3715
- * TODO: Add here more requirement options like max context size, max tokens, etc.
3716
- * TODO: [💕][🧠] Just selecting gpt3 or gpt4 level of model
3709
+ * @@@
3710
+ *
3711
+ * @private for `ModelVariant` and `modelCommandParser`
3717
3712
  */
3713
+ var MODEL_VARIANTS = ['COMPLETION', 'CHAT', 'EMBEDDING' /* <- TODO [🏳] */ /* <- [🤖] */];
3718
3714
 
3719
3715
  /**
3720
3716
  * Parses the model command