@promptbook/browser 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.
- package/esm/index.es.js +2 -1
- package/esm/index.es.js.map +1 -1
- package/esm/src/_packages/components.index.d.ts +6 -0
- package/esm/src/_packages/types.index.d.ts +6 -0
- package/esm/src/book-components/Chat/Chat/ChatMessageItem.d.ts +4 -0
- package/esm/src/book-components/Chat/Chat/ChatMessageItem.test.d.ts +2 -0
- package/esm/src/book-components/Chat/Chat/ChatMessageList.d.ts +4 -0
- package/esm/src/book-components/Chat/Chat/ChatProps.d.ts +14 -2
- package/esm/src/book-components/Chat/Chat/ChatRatingModal.d.ts +5 -0
- package/esm/src/book-components/Chat/SourceChip/SourceChip.d.ts +5 -1
- package/esm/src/book-components/Chat/hooks/useChatRatings.d.ts +5 -1
- package/esm/src/book-components/Chat/types/ChatMessage.d.ts +54 -0
- package/esm/src/book-components/Chat/utils/createCitationFootnoteRenderModel.d.ts +53 -0
- package/esm/src/book-components/Chat/utils/createCitationFootnoteRenderModel.test.d.ts +1 -0
- package/esm/src/cli/$runPromptbookCli.d.ts +9 -0
- package/esm/src/cli/cli-commands/coder/init.d.ts +14 -0
- package/esm/src/cli/cli-commands/coder.d.ts +1 -0
- package/esm/src/cli/main.d.ts +2 -2
- package/esm/src/cli/test/ptbk.d.ts +1 -1
- package/esm/src/commitments/_common/toolRuntimeContext.d.ts +4 -0
- package/esm/src/version.d.ts +1 -1
- package/package.json +2 -2
- package/umd/index.umd.js +2 -1
- package/umd/index.umd.js.map +1 -1
- package/umd/src/_packages/components.index.d.ts +6 -0
- package/umd/src/_packages/types.index.d.ts +6 -0
- package/umd/src/book-components/Chat/Chat/ChatMessageItem.d.ts +4 -0
- package/umd/src/book-components/Chat/Chat/ChatMessageItem.test.d.ts +2 -0
- package/umd/src/book-components/Chat/Chat/ChatMessageList.d.ts +4 -0
- package/umd/src/book-components/Chat/Chat/ChatProps.d.ts +14 -2
- package/umd/src/book-components/Chat/Chat/ChatRatingModal.d.ts +5 -0
- package/umd/src/book-components/Chat/SourceChip/SourceChip.d.ts +5 -1
- package/umd/src/book-components/Chat/hooks/useChatRatings.d.ts +5 -1
- package/umd/src/book-components/Chat/types/ChatMessage.d.ts +54 -0
- package/umd/src/book-components/Chat/utils/createCitationFootnoteRenderModel.d.ts +53 -0
- package/umd/src/book-components/Chat/utils/createCitationFootnoteRenderModel.test.d.ts +1 -0
- package/umd/src/cli/$runPromptbookCli.d.ts +9 -0
- package/umd/src/cli/cli-commands/coder/init.d.ts +14 -0
- package/umd/src/cli/cli-commands/coder.d.ts +1 -0
- package/umd/src/cli/main.d.ts +2 -2
- package/umd/src/cli/test/ptbk.d.ts +1 -1
- package/umd/src/commitments/_common/toolRuntimeContext.d.ts +4 -0
- package/umd/src/version.d.ts +1 -1
package/esm/index.es.js
CHANGED
|
@@ -29,7 +29,7 @@ const BOOK_LANGUAGE_VERSION = '2.0.0';
|
|
|
29
29
|
* @generated
|
|
30
30
|
* @see https://github.com/webgptorg/promptbook
|
|
31
31
|
*/
|
|
32
|
-
const PROMPTBOOK_ENGINE_VERSION = '0.112.0-
|
|
32
|
+
const PROMPTBOOK_ENGINE_VERSION = '0.112.0-24';
|
|
33
33
|
/**
|
|
34
34
|
* TODO: string_promptbook_version should be constrained to the all versions of Promptbook engine
|
|
35
35
|
* Note: [💞] Ignore a discrepancy between file name and entity name
|
|
@@ -26837,6 +26837,7 @@ class OpenAiAgentKitExecutionTools extends OpenAiVectorStoreHandler {
|
|
|
26837
26837
|
};
|
|
26838
26838
|
const streamResult = await run(agentForRun, inputItems, {
|
|
26839
26839
|
stream: true,
|
|
26840
|
+
maxTurns: 200,
|
|
26840
26841
|
context: {
|
|
26841
26842
|
parameters: prompt.parameters,
|
|
26842
26843
|
onToolProgress: onProgress,
|