@promptbook/markitdown 0.104.0-11 → 0.104.0-12

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 (24) hide show
  1. package/esm/index.es.js +3 -3
  2. package/esm/index.es.js.map +1 -1
  3. package/esm/typings/src/_packages/types.index.d.ts +2 -0
  4. package/esm/typings/src/book-2.0/agent-source/AgentBasicInformation.d.ts +1 -0
  5. package/esm/typings/src/book-2.0/agent-source/AgentModelRequirements.d.ts +5 -0
  6. package/esm/typings/src/book-2.0/agent-source/createAgentModelRequirements.tools.test.d.ts +1 -0
  7. package/esm/typings/src/commitments/META/META_DESCRIPTION.d.ts +41 -0
  8. package/esm/typings/src/commitments/USE_SEARCH_ENGINE/USE_SEARCH_ENGINE.d.ts +2 -2
  9. package/esm/typings/src/llm-providers/_common/register/$provideLlmToolsForTestingAndScriptsAndPlayground.d.ts +1 -1
  10. package/esm/typings/src/llm-providers/_common/register/$provideLlmToolsForWizardOrCli.d.ts +1 -1
  11. package/esm/typings/src/llm-providers/_common/utils/count-total-usage/LlmExecutionToolsWithTotalUsage.d.ts +1 -1
  12. package/esm/typings/src/llm-providers/_common/utils/count-total-usage/limitTotalUsage.d.ts +1 -1
  13. package/esm/typings/src/llm-providers/_multiple/getSingleLlmExecutionTools.d.ts +1 -1
  14. package/esm/typings/src/llm-providers/_multiple/joinLlmExecutionTools.d.ts +1 -1
  15. package/esm/typings/src/llm-providers/openai/utils/mapToolsToOpenAi.d.ts +8 -0
  16. package/esm/typings/src/search-engines/SearchResult.d.ts +4 -4
  17. package/esm/typings/src/search-engines/bing/BingSearchEngine.d.ts +1 -1
  18. package/esm/typings/src/search-engines/dummy/DummySearchEngine.d.ts +1 -1
  19. package/esm/typings/src/types/LlmToolDefinition.d.ts +20 -0
  20. package/esm/typings/src/types/ModelRequirements.d.ts +13 -0
  21. package/esm/typings/src/version.d.ts +1 -1
  22. package/package.json +2 -2
  23. package/umd/index.umd.js +3 -3
  24. package/umd/index.umd.js.map +1 -1
package/esm/index.es.js CHANGED
@@ -24,7 +24,7 @@ const BOOK_LANGUAGE_VERSION = '2.0.0';
24
24
  * @generated
25
25
  * @see https://github.com/webgptorg/promptbook
26
26
  */
27
- const PROMPTBOOK_ENGINE_VERSION = '0.104.0-11';
27
+ const PROMPTBOOK_ENGINE_VERSION = '0.104.0-12';
28
28
  /**
29
29
  * TODO: string_promptbook_version should be constrained to the all versions of Promptbook engine
30
30
  * Note: [💞] Ignore a discrepancy between file name and entity name
@@ -4129,7 +4129,7 @@ function joinLlmExecutionTools(title, ...llmExecutionTools) {
4129
4129
  }
4130
4130
  /**
4131
4131
  * TODO: [🙆] `getSingleLlmExecutionTools` vs `joinLlmExecutionTools` - explain difference or pick one
4132
- * TODO: [👷‍♂️] @@@ Manual about construction of llmTools
4132
+ * TODO: [👷‍♂️] Write a comprehensive manual about how to construct and use LLM execution tools in Promptbook
4133
4133
  */
4134
4134
 
4135
4135
  /**
@@ -4146,7 +4146,7 @@ function getSingleLlmExecutionTools(oneOrMoreLlmExecutionTools) {
4146
4146
  }
4147
4147
  /**
4148
4148
  * TODO: [🙆] `getSingleLlmExecutionTools` vs `joinLlmExecutionTools` - explain difference or pick one
4149
- * TODO: [👷‍♂️] @@@ Manual about construction of llmTools
4149
+ * TODO: [👷‍♂️] Write a comprehensive manual about how to construct and use LLM execution tools in Promptbook
4150
4150
  */
4151
4151
 
4152
4152
  /**