@promptbook/remote-server 0.112.0-22 → 0.112.0-24

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 (43) hide show
  1. package/esm/index.es.js +2 -1
  2. package/esm/index.es.js.map +1 -1
  3. package/esm/src/_packages/components.index.d.ts +6 -0
  4. package/esm/src/_packages/types.index.d.ts +6 -0
  5. package/esm/src/book-components/Chat/Chat/ChatMessageItem.d.ts +4 -0
  6. package/esm/src/book-components/Chat/Chat/ChatMessageItem.test.d.ts +2 -0
  7. package/esm/src/book-components/Chat/Chat/ChatMessageList.d.ts +4 -0
  8. package/esm/src/book-components/Chat/Chat/ChatProps.d.ts +14 -2
  9. package/esm/src/book-components/Chat/Chat/ChatRatingModal.d.ts +5 -0
  10. package/esm/src/book-components/Chat/SourceChip/SourceChip.d.ts +5 -1
  11. package/esm/src/book-components/Chat/hooks/useChatRatings.d.ts +5 -1
  12. package/esm/src/book-components/Chat/types/ChatMessage.d.ts +54 -0
  13. package/esm/src/book-components/Chat/utils/createCitationFootnoteRenderModel.d.ts +53 -0
  14. package/esm/src/book-components/Chat/utils/createCitationFootnoteRenderModel.test.d.ts +1 -0
  15. package/esm/src/cli/$runPromptbookCli.d.ts +9 -0
  16. package/esm/src/cli/cli-commands/coder/init.d.ts +14 -0
  17. package/esm/src/cli/cli-commands/coder.d.ts +1 -0
  18. package/esm/src/cli/main.d.ts +2 -2
  19. package/esm/src/cli/test/ptbk.d.ts +1 -1
  20. package/esm/src/commitments/_common/toolRuntimeContext.d.ts +4 -0
  21. package/esm/src/version.d.ts +1 -1
  22. package/package.json +2 -2
  23. package/umd/index.umd.js +2 -1
  24. package/umd/index.umd.js.map +1 -1
  25. package/umd/src/_packages/components.index.d.ts +6 -0
  26. package/umd/src/_packages/types.index.d.ts +6 -0
  27. package/umd/src/book-components/Chat/Chat/ChatMessageItem.d.ts +4 -0
  28. package/umd/src/book-components/Chat/Chat/ChatMessageItem.test.d.ts +2 -0
  29. package/umd/src/book-components/Chat/Chat/ChatMessageList.d.ts +4 -0
  30. package/umd/src/book-components/Chat/Chat/ChatProps.d.ts +14 -2
  31. package/umd/src/book-components/Chat/Chat/ChatRatingModal.d.ts +5 -0
  32. package/umd/src/book-components/Chat/SourceChip/SourceChip.d.ts +5 -1
  33. package/umd/src/book-components/Chat/hooks/useChatRatings.d.ts +5 -1
  34. package/umd/src/book-components/Chat/types/ChatMessage.d.ts +54 -0
  35. package/umd/src/book-components/Chat/utils/createCitationFootnoteRenderModel.d.ts +53 -0
  36. package/umd/src/book-components/Chat/utils/createCitationFootnoteRenderModel.test.d.ts +1 -0
  37. package/umd/src/cli/$runPromptbookCli.d.ts +9 -0
  38. package/umd/src/cli/cli-commands/coder/init.d.ts +14 -0
  39. package/umd/src/cli/cli-commands/coder.d.ts +1 -0
  40. package/umd/src/cli/main.d.ts +2 -2
  41. package/umd/src/cli/test/ptbk.d.ts +1 -1
  42. package/umd/src/commitments/_common/toolRuntimeContext.d.ts +4 -0
  43. package/umd/src/version.d.ts +1 -1
package/esm/index.es.js CHANGED
@@ -40,7 +40,7 @@ const BOOK_LANGUAGE_VERSION = '2.0.0';
40
40
  * @generated
41
41
  * @see https://github.com/webgptorg/promptbook
42
42
  */
43
- const PROMPTBOOK_ENGINE_VERSION = '0.112.0-22';
43
+ const PROMPTBOOK_ENGINE_VERSION = '0.112.0-24';
44
44
  /**
45
45
  * TODO: string_promptbook_version should be constrained to the all versions of Promptbook engine
46
46
  * Note: [💞] Ignore a discrepancy between file name and entity name
@@ -29393,6 +29393,7 @@ class OpenAiAgentKitExecutionTools extends OpenAiVectorStoreHandler {
29393
29393
  };
29394
29394
  const streamResult = await run(agentForRun, inputItems, {
29395
29395
  stream: true,
29396
+ maxTurns: 200,
29396
29397
  context: {
29397
29398
  parameters: prompt.parameters,
29398
29399
  onToolProgress: onProgress,