From d893c6a9e7796dc0baf39e2d167b19d4e691fe86 Mon Sep 17 00:00:00 2001 From: Matthew Lipski Date: Wed, 21 May 2025 18:37:59 +0200 Subject: [PATCH 01/34] Added toggle heading --- examples/01-basic/04-default-blocks/App.tsx | 18 +++ .../CollapsableHeadingBlockContent.ts | 111 ++++++++++++++++++ packages/core/src/blocks/defaultBlocks.ts | 2 + packages/core/src/editor/Block.css | 59 +++++++++- .../src/components/SideMenu/SideMenu.tsx | 5 +- packages/react/src/editor/styles.css | 9 +- 6 files changed, 195 insertions(+), 9 deletions(-) create mode 100644 packages/core/src/blocks/CollapsableHeadingBlockContent/CollapsableHeadingBlockContent.ts diff --git a/examples/01-basic/04-default-blocks/App.tsx b/examples/01-basic/04-default-blocks/App.tsx index 992a52d217..faa8f877ac 100644 --- a/examples/01-basic/04-default-blocks/App.tsx +++ b/examples/01-basic/04-default-blocks/App.tsx @@ -11,6 +11,24 @@ export default function App() { type: "paragraph", content: "Welcome to this demo!", }, + { + type: "collapsableHeading", + content: "Collapsable Heading", + children: [ + { + type: "paragraph", + content: "Child 1", + }, + { + type: "paragraph", + content: "Child 2", + }, + { + type: "paragraph", + content: "Child 3", + }, + ], + }, { type: "paragraph", }, diff --git a/packages/core/src/blocks/CollapsableHeadingBlockContent/CollapsableHeadingBlockContent.ts b/packages/core/src/blocks/CollapsableHeadingBlockContent/CollapsableHeadingBlockContent.ts new file mode 100644 index 0000000000..0cfa73a315 --- /dev/null +++ b/packages/core/src/blocks/CollapsableHeadingBlockContent/CollapsableHeadingBlockContent.ts @@ -0,0 +1,111 @@ +import { + BlockConfig, + BlockFromConfig, + createBlockSpec, + PropSchema, +} from "../../schema/index.js"; + +import { defaultProps } from "../defaultProps.js"; +import { BlockNoteEditor } from "../../editor/BlockNoteEditor.js"; + +export const collapsableHeadingPropSchema = { + ...defaultProps, + level: { default: 1, values: [1, 2, 3] as const }, + collapsed: { default: false }, +} satisfies PropSchema; + +export const collapsableHeadingBlockConfig = { + type: "collapsableHeading" as const, + propSchema: collapsableHeadingPropSchema, + content: "inline", + isFileBlock: false, +} satisfies BlockConfig; + +export const collapsableHeadingRender = ( + block: BlockFromConfig, + editor: BlockNoteEditor, +) => { + const collapseButton = document.createElement("button"); + collapseButton.className = "bn-collapse-button"; + collapseButton.innerHTML = + ''; + const onClick = () => { + editor.updateBlock(block, { + props: { + collapsed: !block.props.collapsed, + }, + }); + }; + collapseButton.addEventListener("mousedown", onClick); + + const heading = document.createElement(`h${block.props.level}`); + + const collapseWrapper = document.createElement("div"); + collapseWrapper.className = "bn-collapse-wrapper"; + collapseWrapper.appendChild(collapseButton); + collapseWrapper.appendChild(heading); + + const addBlockButton = document.createElement("button"); + addBlockButton.className = "bn-collapse-add-block-button"; + addBlockButton.textContent = "Empty toggle. Click to add a block."; + const onClick2 = () => { + editor.transact(() => { + const updatedBlock = editor.updateBlock(block, { + children: [ + { + type: "paragraph", + }, + ], + }); + editor.setTextCursorPosition(updatedBlock.children[0].id, "end"); + editor.focus(); + }); + }; + addBlockButton.addEventListener("mousedown", (event) => { + event.preventDefault(); + }); + addBlockButton.addEventListener("click", onClick2); + + const dom = document.createElement("div"); + dom.appendChild(collapseWrapper); + + if (!block.props.collapsed && block.children.length === 0) { + dom.appendChild(addBlockButton); + } + + // Hack to force a re-render if the block has changed from having children to + // not having children or vice versa. + const d = editor.onChange(() => { + const actualBlock = editor.getBlock(block); + if (!actualBlock) { + return; + } + + if ( + (block.children.length === 0 && actualBlock.children.length > 0) || + (block.children.length > 0 && actualBlock.children.length === 0) + ) { + collapseWrapper.setAttribute("data-force-update", "true"); + collapseWrapper.removeAttribute("data-force-update"); + } + }); + + return { + dom, + contentDOM: heading, + destroy: () => { + collapseButton.removeEventListener("mousedown", onClick); + if (addBlockButton) { + addBlockButton.removeEventListener("mousedown", onClick2); + } + d?.(); + }, + }; +}; + +export const CollapsableHeadingBlock = createBlockSpec( + collapsableHeadingBlockConfig, + { + render: collapsableHeadingRender, + }, +); diff --git a/packages/core/src/blocks/defaultBlocks.ts b/packages/core/src/blocks/defaultBlocks.ts index 5e6deeb46c..13c4a7ae02 100644 --- a/packages/core/src/blocks/defaultBlocks.ts +++ b/packages/core/src/blocks/defaultBlocks.ts @@ -32,6 +32,7 @@ import { Paragraph } from "./ParagraphBlockContent/ParagraphBlockContent.js"; import { Quote } from "./QuoteBlockContent/QuoteBlockContent.js"; import { Table } from "./TableBlockContent/TableBlockContent.js"; import { VideoBlock } from "./VideoBlockContent/VideoBlockContent.js"; +import { CollapsableHeadingBlock } from "./CollapsableHeadingBlockContent/CollapsableHeadingBlockContent.js"; export const defaultBlockSpecs = { paragraph: Paragraph, @@ -46,6 +47,7 @@ export const defaultBlockSpecs = { image: ImageBlock, video: VideoBlock, audio: AudioBlock, + collapsableHeading: CollapsableHeadingBlock, } satisfies BlockSpecs; export const defaultBlockSchema = getBlockSchemaFromSpecs(defaultBlockSpecs); diff --git a/packages/core/src/editor/Block.css b/packages/core/src/editor/Block.css index 40196d8611..b39d22369f 100644 --- a/packages/core/src/editor/Block.css +++ b/packages/core/src/editor/Block.css @@ -125,13 +125,16 @@ NESTED BLOCKS } /* HEADINGS*/ -[data-content-type="heading"] { +[data-content-type="heading"], +[data-content-type="collapsableHeading"] { --level: 3em; } -[data-content-type="heading"][data-level="2"] { +[data-content-type="heading"][data-level="2"], +[data-content-type="collapsableHeading"][data-level="2"] { --level: 2em; } -[data-content-type="heading"][data-level="3"] { +[data-content-type="heading"][data-level="3"], +[data-content-type="collapsableHeading"][data-level="3"] { --level: 1.3em; } @@ -145,14 +148,20 @@ NESTED BLOCKS --prev-level: 1.3em; } -.bn-block-outer[data-prev-type="heading"] > .bn-block > .bn-block-content { +.bn-block-outer[data-prev-type="heading"] > .bn-block > .bn-block-content, +.bn-block-outer[data-prev-type="collapsableHeading"] + > .bn-block + > .bn-block-content { font-size: var(--prev-level); font-weight: bold; } .bn-block-outer:not([data-prev-type]) > .bn-block - > .bn-block-content[data-content-type="heading"] { + > .bn-block-content[data-content-type="heading"], +.bn-block-outer:not([data-prev-type]) + > .bn-block + > .bn-block-content[data-content-type="collapsableHeading"] { font-size: var(--level); font-weight: bold; } @@ -427,6 +436,46 @@ NESTED BLOCKS width: 100%; } +.bn-block:has(> .bn-block-content[data-collapsed="true"]) > .bn-block-group { + display: none; +} + +.bn-collapse-wrapper { + display: flex; + align-items: center; +} + +.bn-collapse-button, +.bn-collapse-add-block-button { + cursor: pointer; + display: flex; + align-items: center; + padding: 0; + border-radius: var; + background: none; + border: none; + color: var(--bn-colors-editor-text); + user-select: none; +} + +.bn-collapse-add-block-button { + font-size: 16px; + color: var(--bn-colors-side-menu); + font-weight: normal; + margin-left: 1.5em; + padding: 2px; +} + +.bn-collapse-button:hover, +.bn-collapse-add-block-button:hover { + background-color: var(--bn-colors-hovered-background); +} + +.bn-block-content:not([data-collapsed="true"]) .bn-collapse-button { + transform: rotate(90deg); + transition: transform 0.2s; +} + /* Block-specific styles */ [data-content-type="audio"] > .bn-file-block-content-wrapper, .bn-audio { diff --git a/packages/react/src/components/SideMenu/SideMenu.tsx b/packages/react/src/components/SideMenu/SideMenu.tsx index adb6d326c9..1b532eea78 100644 --- a/packages/react/src/components/SideMenu/SideMenu.tsx +++ b/packages/react/src/components/SideMenu/SideMenu.tsx @@ -36,7 +36,10 @@ export const SideMenu = < "data-block-type": props.block.type, }; - if (props.block.type === "heading") { + if ( + props.block.type === "heading" || + props.block.type === "collapsableHeading" + ) { attrs["data-level"] = (props.block.props as any).level.toString(); } diff --git a/packages/react/src/editor/styles.css b/packages/react/src/editor/styles.css index 901a46d639..0ac5a23153 100644 --- a/packages/react/src/editor/styles.css +++ b/packages/react/src/editor/styles.css @@ -216,15 +216,18 @@ height: 30px; } -.bn-side-menu[data-block-type="heading"][data-level="1"] { +.bn-side-menu[data-block-type="heading"][data-level="1"], +.bn-side-menu[data-block-type="collapsableHeading"][data-level="1"] { height: 78px; } -.bn-side-menu[data-block-type="heading"][data-level="2"] { +.bn-side-menu[data-block-type="heading"][data-level="2"], +.bn-side-menu[data-block-type="collapsableHeading"][data-level="2"] { height: 54px; } -.bn-side-menu[data-block-type="heading"][data-level="3"] { +.bn-side-menu[data-block-type="heading"][data-level="3"], +.bn-side-menu[data-block-type="collapsableHeading"][data-level="3"] { height: 37px; } From d77eca59e09dc90ed601263fac0b53a3ae2e53d1 Mon Sep 17 00:00:00 2001 From: Matthew Lipski Date: Wed, 21 May 2025 23:35:23 +0200 Subject: [PATCH 02/34] Changed collapsible heading to toggle and added react implementation --- examples/01-basic/04-default-blocks/App.tsx | 13 +- .../CollapsableHeadingBlockContent.ts | 111 ---------------- .../ToggleBlockContent/ToggleBlockContent.ts | 124 ++++++++++++++++++ packages/core/src/blocks/defaultBlocks.ts | 2 - packages/core/src/editor/Block.css | 54 ++++---- packages/core/src/index.ts | 1 + .../ToggleBlockContent/ToggleBlockContent.tsx | 79 +++++++++++ .../src/components/SideMenu/SideMenu.tsx | 5 +- packages/react/src/editor/styles.css | 9 +- packages/react/src/index.ts | 1 + 10 files changed, 247 insertions(+), 152 deletions(-) delete mode 100644 packages/core/src/blocks/CollapsableHeadingBlockContent/CollapsableHeadingBlockContent.ts create mode 100644 packages/core/src/blocks/ToggleBlockContent/ToggleBlockContent.ts create mode 100644 packages/react/src/blocks/ToggleBlockContent/ToggleBlockContent.tsx diff --git a/examples/01-basic/04-default-blocks/App.tsx b/examples/01-basic/04-default-blocks/App.tsx index faa8f877ac..672f41f75b 100644 --- a/examples/01-basic/04-default-blocks/App.tsx +++ b/examples/01-basic/04-default-blocks/App.tsx @@ -1,19 +1,26 @@ +import { BlockNoteSchema, defaultBlockSpecs } from "@blocknote/core"; import "@blocknote/core/fonts/inter.css"; import { BlockNoteView } from "@blocknote/mantine"; import "@blocknote/mantine/style.css"; -import { useCreateBlockNote } from "@blocknote/react"; +import { ToggleBlock, useCreateBlockNote } from "@blocknote/react"; export default function App() { // Creates a new editor instance. const editor = useCreateBlockNote({ + schema: BlockNoteSchema.create({ + blockSpecs: { + ...defaultBlockSpecs, + toggle: ToggleBlock, + }, + }), initialContent: [ { type: "paragraph", content: "Welcome to this demo!", }, { - type: "collapsableHeading", - content: "Collapsable Heading", + type: "toggle", + content: "Toggle", children: [ { type: "paragraph", diff --git a/packages/core/src/blocks/CollapsableHeadingBlockContent/CollapsableHeadingBlockContent.ts b/packages/core/src/blocks/CollapsableHeadingBlockContent/CollapsableHeadingBlockContent.ts deleted file mode 100644 index 0cfa73a315..0000000000 --- a/packages/core/src/blocks/CollapsableHeadingBlockContent/CollapsableHeadingBlockContent.ts +++ /dev/null @@ -1,111 +0,0 @@ -import { - BlockConfig, - BlockFromConfig, - createBlockSpec, - PropSchema, -} from "../../schema/index.js"; - -import { defaultProps } from "../defaultProps.js"; -import { BlockNoteEditor } from "../../editor/BlockNoteEditor.js"; - -export const collapsableHeadingPropSchema = { - ...defaultProps, - level: { default: 1, values: [1, 2, 3] as const }, - collapsed: { default: false }, -} satisfies PropSchema; - -export const collapsableHeadingBlockConfig = { - type: "collapsableHeading" as const, - propSchema: collapsableHeadingPropSchema, - content: "inline", - isFileBlock: false, -} satisfies BlockConfig; - -export const collapsableHeadingRender = ( - block: BlockFromConfig, - editor: BlockNoteEditor, -) => { - const collapseButton = document.createElement("button"); - collapseButton.className = "bn-collapse-button"; - collapseButton.innerHTML = - ''; - const onClick = () => { - editor.updateBlock(block, { - props: { - collapsed: !block.props.collapsed, - }, - }); - }; - collapseButton.addEventListener("mousedown", onClick); - - const heading = document.createElement(`h${block.props.level}`); - - const collapseWrapper = document.createElement("div"); - collapseWrapper.className = "bn-collapse-wrapper"; - collapseWrapper.appendChild(collapseButton); - collapseWrapper.appendChild(heading); - - const addBlockButton = document.createElement("button"); - addBlockButton.className = "bn-collapse-add-block-button"; - addBlockButton.textContent = "Empty toggle. Click to add a block."; - const onClick2 = () => { - editor.transact(() => { - const updatedBlock = editor.updateBlock(block, { - children: [ - { - type: "paragraph", - }, - ], - }); - editor.setTextCursorPosition(updatedBlock.children[0].id, "end"); - editor.focus(); - }); - }; - addBlockButton.addEventListener("mousedown", (event) => { - event.preventDefault(); - }); - addBlockButton.addEventListener("click", onClick2); - - const dom = document.createElement("div"); - dom.appendChild(collapseWrapper); - - if (!block.props.collapsed && block.children.length === 0) { - dom.appendChild(addBlockButton); - } - - // Hack to force a re-render if the block has changed from having children to - // not having children or vice versa. - const d = editor.onChange(() => { - const actualBlock = editor.getBlock(block); - if (!actualBlock) { - return; - } - - if ( - (block.children.length === 0 && actualBlock.children.length > 0) || - (block.children.length > 0 && actualBlock.children.length === 0) - ) { - collapseWrapper.setAttribute("data-force-update", "true"); - collapseWrapper.removeAttribute("data-force-update"); - } - }); - - return { - dom, - contentDOM: heading, - destroy: () => { - collapseButton.removeEventListener("mousedown", onClick); - if (addBlockButton) { - addBlockButton.removeEventListener("mousedown", onClick2); - } - d?.(); - }, - }; -}; - -export const CollapsableHeadingBlock = createBlockSpec( - collapsableHeadingBlockConfig, - { - render: collapsableHeadingRender, - }, -); diff --git a/packages/core/src/blocks/ToggleBlockContent/ToggleBlockContent.ts b/packages/core/src/blocks/ToggleBlockContent/ToggleBlockContent.ts new file mode 100644 index 0000000000..25f8e5dc9e --- /dev/null +++ b/packages/core/src/blocks/ToggleBlockContent/ToggleBlockContent.ts @@ -0,0 +1,124 @@ +import { + BlockConfig, + BlockFromConfig, + createBlockSpec, + PropSchema, +} from "../../schema/index.js"; + +import { defaultProps } from "../defaultProps.js"; +import { BlockNoteEditor } from "../../editor/BlockNoteEditor.js"; + +export const togglePropSchema = { + ...defaultProps, +} satisfies PropSchema; + +export const toggleBlockConfig = { + type: "toggle" as const, + propSchema: togglePropSchema, + content: "inline", +} satisfies BlockConfig; + +export const toggleBlockRender = ( + block: BlockFromConfig, + editor: BlockNoteEditor, +) => { + const dom = document.createElement("div"); + + const toggleWrapper = document.createElement("div"); + toggleWrapper.className = "bn-toggle-wrapper"; + toggleWrapper.setAttribute("data-show-children", "true"); + + const toggleButton = document.createElement("button"); + toggleButton.className = "bn-toggle-button"; + toggleButton.innerHTML = + ''; + const toggleButtonMouseDown = (event: MouseEvent) => event.preventDefault(); + toggleButton.addEventListener("mousedown", toggleButtonMouseDown); + const toggleButtonOnClick = () => { + if (toggleWrapper.getAttribute("data-show-children") === "true") { + toggleWrapper.setAttribute("data-show-children", "false"); + } else { + toggleWrapper.setAttribute("data-show-children", "true"); + } + }; + toggleButton.addEventListener("click", toggleButtonOnClick); + + const contentDOM = document.createElement("p"); + + toggleWrapper.appendChild(toggleButton); + toggleWrapper.appendChild(contentDOM); + + const toggleAddBlockButton = document.createElement("button"); + toggleAddBlockButton.className = "bn-toggle-add-block-button"; + toggleAddBlockButton.textContent = "Empty toggle. Click to add a block."; + const toggleAddBlockButtonMouseDown = (event: MouseEvent) => + event.preventDefault(); + toggleAddBlockButton.addEventListener( + "mousedown", + toggleAddBlockButtonMouseDown, + ); + const toggleAddBlockButtonOnClick = () => { + editor.transact(() => { + const updatedBlock = editor.updateBlock(block, { + // Single empty block with default type. + children: [{}], + }); + editor.setTextCursorPosition(updatedBlock.children[0].id, "end"); + editor.focus(); + }); + }; + toggleAddBlockButton.addEventListener("click", toggleAddBlockButtonOnClick); + + dom.appendChild(toggleWrapper); + if ( + block.children.length === 0 && + toggleWrapper.getAttribute("data-show-children") === "true" + ) { + dom.appendChild(toggleAddBlockButton); + } + + // Hack to force a re-render if the block has changed from having children to + // not having children or vice versa. + const onEditorChange = editor.onChange(() => { + const actualBlock = editor.getBlock(block); + if (!actualBlock) { + return; + } + + if ( + actualBlock.children.length === 0 && + toggleAddBlockButton.parentElement === null + ) { + dom.appendChild(toggleAddBlockButton); + } + + if ( + actualBlock.children.length > 0 && + toggleAddBlockButton.parentElement === dom + ) { + dom.removeChild(toggleAddBlockButton); + } + }); + + return { + dom, + contentDOM, + destroy: () => { + toggleButton.removeEventListener("mousedown", toggleButtonMouseDown); + toggleButton.removeEventListener("click", toggleButtonOnClick); + toggleAddBlockButton.removeEventListener( + "mousedown", + toggleAddBlockButtonMouseDown, + ); + toggleAddBlockButton.removeEventListener( + "click", + toggleAddBlockButtonOnClick, + ); + onEditorChange?.(); + }, + }; +}; + +export const ToggleBlock = createBlockSpec(toggleBlockConfig, { + render: toggleBlockRender, +}); diff --git a/packages/core/src/blocks/defaultBlocks.ts b/packages/core/src/blocks/defaultBlocks.ts index 13c4a7ae02..5e6deeb46c 100644 --- a/packages/core/src/blocks/defaultBlocks.ts +++ b/packages/core/src/blocks/defaultBlocks.ts @@ -32,7 +32,6 @@ import { Paragraph } from "./ParagraphBlockContent/ParagraphBlockContent.js"; import { Quote } from "./QuoteBlockContent/QuoteBlockContent.js"; import { Table } from "./TableBlockContent/TableBlockContent.js"; import { VideoBlock } from "./VideoBlockContent/VideoBlockContent.js"; -import { CollapsableHeadingBlock } from "./CollapsableHeadingBlockContent/CollapsableHeadingBlockContent.js"; export const defaultBlockSpecs = { paragraph: Paragraph, @@ -47,7 +46,6 @@ export const defaultBlockSpecs = { image: ImageBlock, video: VideoBlock, audio: AudioBlock, - collapsableHeading: CollapsableHeadingBlock, } satisfies BlockSpecs; export const defaultBlockSchema = getBlockSchemaFromSpecs(defaultBlockSpecs); diff --git a/packages/core/src/editor/Block.css b/packages/core/src/editor/Block.css index b39d22369f..c96ba82771 100644 --- a/packages/core/src/editor/Block.css +++ b/packages/core/src/editor/Block.css @@ -125,16 +125,13 @@ NESTED BLOCKS } /* HEADINGS*/ -[data-content-type="heading"], -[data-content-type="collapsableHeading"] { +[data-content-type="heading"] { --level: 3em; } -[data-content-type="heading"][data-level="2"], -[data-content-type="collapsableHeading"][data-level="2"] { +[data-content-type="heading"][data-level="2"] { --level: 2em; } -[data-content-type="heading"][data-level="3"], -[data-content-type="collapsableHeading"][data-level="3"] { +[data-content-type="heading"][data-level="3"] { --level: 1.3em; } @@ -148,20 +145,14 @@ NESTED BLOCKS --prev-level: 1.3em; } -.bn-block-outer[data-prev-type="heading"] > .bn-block > .bn-block-content, -.bn-block-outer[data-prev-type="collapsableHeading"] - > .bn-block - > .bn-block-content { +.bn-block-outer[data-prev-type="heading"] > .bn-block > .bn-block-content { font-size: var(--prev-level); font-weight: bold; } .bn-block-outer:not([data-prev-type]) > .bn-block - > .bn-block-content[data-content-type="heading"], -.bn-block-outer:not([data-prev-type]) - > .bn-block - > .bn-block-content[data-content-type="collapsableHeading"] { + > .bn-block-content[data-content-type="heading"] { font-size: var(--level); font-weight: bold; } @@ -436,17 +427,28 @@ NESTED BLOCKS width: 100%; } -.bn-block:has(> .bn-block-content[data-collapsed="true"]) > .bn-block-group { +/* Toggle blocks */ +.bn-block:has( + > .bn-block-content > div > .bn-toggle-wrapper[data-show-children="false"] + ) + > .bn-block-group, +.bn-block:has( + > .react-renderer + > .bn-block-content + > div + > .bn-toggle-wrapper[data-show-children="false"] + ) + > .bn-block-group { display: none; } -.bn-collapse-wrapper { +.bn-toggle-wrapper { display: flex; align-items: center; } -.bn-collapse-button, -.bn-collapse-add-block-button { +.bn-toggle-button, +.bn-toggle-add-block-button { cursor: pointer; display: flex; align-items: center; @@ -454,11 +456,17 @@ NESTED BLOCKS border-radius: var; background: none; border: none; + border-radius: 4px; color: var(--bn-colors-editor-text); user-select: none; } -.bn-collapse-add-block-button { +.bn-toggle-button:hover, +.bn-toggle-add-block-button:hover { + background-color: var(--bn-colors-hovered-background); +} + +.bn-toggle-add-block-button { font-size: 16px; color: var(--bn-colors-side-menu); font-weight: normal; @@ -466,14 +474,8 @@ NESTED BLOCKS padding: 2px; } -.bn-collapse-button:hover, -.bn-collapse-add-block-button:hover { - background-color: var(--bn-colors-hovered-background); -} - -.bn-block-content:not([data-collapsed="true"]) .bn-collapse-button { +.bn-toggle-wrapper[data-show-children="true"] .bn-toggle-button { transform: rotate(90deg); - transition: transform 0.2s; } /* Block-specific styles */ diff --git a/packages/core/src/index.ts b/packages/core/src/index.ts index be7060c85d..eac14418b0 100644 --- a/packages/core/src/index.ts +++ b/packages/core/src/index.ts @@ -19,6 +19,7 @@ export * from "./blocks/ImageBlockContent/ImageBlockContent.js"; export * from "./blocks/PageBreakBlockContent/PageBreakBlockContent.js"; export * from "./blocks/PageBreakBlockContent/getPageBreakSlashMenuItems.js"; export * from "./blocks/PageBreakBlockContent/schema.js"; +export * from "./blocks/ToggleBlockContent/ToggleBlockContent.js"; export { EMPTY_CELL_HEIGHT, EMPTY_CELL_WIDTH, diff --git a/packages/react/src/blocks/ToggleBlockContent/ToggleBlockContent.tsx b/packages/react/src/blocks/ToggleBlockContent/ToggleBlockContent.tsx new file mode 100644 index 0000000000..11110752f7 --- /dev/null +++ b/packages/react/src/blocks/ToggleBlockContent/ToggleBlockContent.tsx @@ -0,0 +1,79 @@ +import { BlockConfig, defaultProps, PropSchema } from "@blocknote/core"; +import { useState } from "react"; + +import { + createReactBlockSpec, + ReactCustomBlockRenderProps, +} from "../../schema/ReactBlockSpec.js"; +import { useEditorChange } from "../../hooks/useEditorChange.js"; + +export const togglePropSchema = { + ...defaultProps, +} satisfies PropSchema; + +export const toggleBlockConfig = { + type: "toggle" as const, + propSchema: togglePropSchema, + content: "inline", +} satisfies BlockConfig; + +export const Toggle = ( + props: ReactCustomBlockRenderProps, +) => { + const { block, editor, contentRef } = props; + + const [showChildren, setShowChildren] = useState(true); + const [hasChildren, setHasChildren] = useState(block.children.length > 0); + + useEditorChange(() => { + const actualBlock = editor.getBlock(block); + + if (actualBlock?.children.length === 0) { + setHasChildren(false); + } else { + setHasChildren(true); + } + }); + + return ( +
+
+ +

+

+ {showChildren && !hasChildren && ( + + )} +
+ ); +}; + +export const ToggleBlock = createReactBlockSpec(toggleBlockConfig, { + render: Toggle, +}); diff --git a/packages/react/src/components/SideMenu/SideMenu.tsx b/packages/react/src/components/SideMenu/SideMenu.tsx index 1b532eea78..adb6d326c9 100644 --- a/packages/react/src/components/SideMenu/SideMenu.tsx +++ b/packages/react/src/components/SideMenu/SideMenu.tsx @@ -36,10 +36,7 @@ export const SideMenu = < "data-block-type": props.block.type, }; - if ( - props.block.type === "heading" || - props.block.type === "collapsableHeading" - ) { + if (props.block.type === "heading") { attrs["data-level"] = (props.block.props as any).level.toString(); } diff --git a/packages/react/src/editor/styles.css b/packages/react/src/editor/styles.css index 0ac5a23153..901a46d639 100644 --- a/packages/react/src/editor/styles.css +++ b/packages/react/src/editor/styles.css @@ -216,18 +216,15 @@ height: 30px; } -.bn-side-menu[data-block-type="heading"][data-level="1"], -.bn-side-menu[data-block-type="collapsableHeading"][data-level="1"] { +.bn-side-menu[data-block-type="heading"][data-level="1"] { height: 78px; } -.bn-side-menu[data-block-type="heading"][data-level="2"], -.bn-side-menu[data-block-type="collapsableHeading"][data-level="2"] { +.bn-side-menu[data-block-type="heading"][data-level="2"] { height: 54px; } -.bn-side-menu[data-block-type="heading"][data-level="3"], -.bn-side-menu[data-block-type="collapsableHeading"][data-level="3"] { +.bn-side-menu[data-block-type="heading"][data-level="3"] { height: 37px; } diff --git a/packages/react/src/index.ts b/packages/react/src/index.ts index 1d6c0a914e..0bff8fd943 100644 --- a/packages/react/src/index.ts +++ b/packages/react/src/index.ts @@ -16,6 +16,7 @@ export * from "./blocks/FileBlockContent/helpers/toExternalHTML/LinkWithCaption. export * from "./blocks/FileBlockContent/useResolveUrl.js"; export * from "./blocks/ImageBlockContent/ImageBlockContent.js"; export * from "./blocks/PageBreakBlockContent/getPageBreakReactSlashMenuItems.js"; +export * from "./blocks/ToggleBlockContent/ToggleBlockContent.js"; export * from "./blocks/VideoBlockContent/VideoBlockContent.js"; export * from "./components/FormattingToolbar/DefaultButtons/AddCommentButton.js"; From ec26e4dec511b0b37610886da709f913db295b32 Mon Sep 17 00:00:00 2001 From: Matthew Lipski Date: Wed, 21 May 2025 23:37:21 +0200 Subject: [PATCH 03/34] Removed duplicate code --- .../blocks/ToggleBlockContent/ToggleBlockContent.tsx | 12 +----------- 1 file changed, 1 insertion(+), 11 deletions(-) diff --git a/packages/react/src/blocks/ToggleBlockContent/ToggleBlockContent.tsx b/packages/react/src/blocks/ToggleBlockContent/ToggleBlockContent.tsx index 11110752f7..fdd3f952f8 100644 --- a/packages/react/src/blocks/ToggleBlockContent/ToggleBlockContent.tsx +++ b/packages/react/src/blocks/ToggleBlockContent/ToggleBlockContent.tsx @@ -1,4 +1,4 @@ -import { BlockConfig, defaultProps, PropSchema } from "@blocknote/core"; +import { toggleBlockConfig } from "@blocknote/core"; import { useState } from "react"; import { @@ -7,16 +7,6 @@ import { } from "../../schema/ReactBlockSpec.js"; import { useEditorChange } from "../../hooks/useEditorChange.js"; -export const togglePropSchema = { - ...defaultProps, -} satisfies PropSchema; - -export const toggleBlockConfig = { - type: "toggle" as const, - propSchema: togglePropSchema, - content: "inline", -} satisfies BlockConfig; - export const Toggle = ( props: ReactCustomBlockRenderProps, ) => { From 00fbdae02a8697cab323fc8dd5339136b6074a43 Mon Sep 17 00:00:00 2001 From: Matthew Lipski Date: Wed, 21 May 2025 23:49:50 +0200 Subject: [PATCH 04/34] Small changes --- examples/01-basic/04-default-blocks/App.tsx | 8 ++++++-- .../src/blocks/ToggleBlockContent/ToggleBlockContent.tsx | 6 +++--- 2 files changed, 9 insertions(+), 5 deletions(-) diff --git a/examples/01-basic/04-default-blocks/App.tsx b/examples/01-basic/04-default-blocks/App.tsx index 672f41f75b..01979e853f 100644 --- a/examples/01-basic/04-default-blocks/App.tsx +++ b/examples/01-basic/04-default-blocks/App.tsx @@ -2,7 +2,10 @@ import { BlockNoteSchema, defaultBlockSpecs } from "@blocknote/core"; import "@blocknote/core/fonts/inter.css"; import { BlockNoteView } from "@blocknote/mantine"; import "@blocknote/mantine/style.css"; -import { ToggleBlock, useCreateBlockNote } from "@blocknote/react"; +import { useCreateBlockNote } from "@blocknote/react"; + +// import { ToggleBlock } from "@blocknote/core"; +import { ReactToggleBlock } from "@blocknote/react"; export default function App() { // Creates a new editor instance. @@ -10,7 +13,8 @@ export default function App() { schema: BlockNoteSchema.create({ blockSpecs: { ...defaultBlockSpecs, - toggle: ToggleBlock, + // toggle: ToggleBlock, + toggle: ReactToggleBlock, }, }), initialContent: [ diff --git a/packages/react/src/blocks/ToggleBlockContent/ToggleBlockContent.tsx b/packages/react/src/blocks/ToggleBlockContent/ToggleBlockContent.tsx index fdd3f952f8..9898af197e 100644 --- a/packages/react/src/blocks/ToggleBlockContent/ToggleBlockContent.tsx +++ b/packages/react/src/blocks/ToggleBlockContent/ToggleBlockContent.tsx @@ -7,7 +7,7 @@ import { } from "../../schema/ReactBlockSpec.js"; import { useEditorChange } from "../../hooks/useEditorChange.js"; -export const Toggle = ( +export const ToggleBlock = ( props: ReactCustomBlockRenderProps, ) => { const { block, editor, contentRef } = props; @@ -64,6 +64,6 @@ export const Toggle = ( ); }; -export const ToggleBlock = createReactBlockSpec(toggleBlockConfig, { - render: Toggle, +export const ReactToggleBlock = createReactBlockSpec(toggleBlockConfig, { + render: ToggleBlock, }); From 9d148ae7a9a32aa051824b4ff023765de8a1ccad Mon Sep 17 00:00:00 2001 From: Matthew Lipski Date: Tue, 10 Jun 2025 15:54:39 +0200 Subject: [PATCH 05/34] Extracted toggle to separate component --- examples/01-basic/04-default-blocks/App.tsx | 29 ---------- .../06-togglable-blocks/.bnexample.json | 6 ++ .../06-togglable-blocks/App.tsx | 55 +++++++++++++++++++ .../06-togglable-blocks/README.md | 8 +++ .../06-togglable-blocks/Toggle.tsx | 19 +++++++ .../06-togglable-blocks/index.html | 14 +++++ .../06-togglable-blocks/main.tsx | 11 ++++ .../06-togglable-blocks/package.json | 27 +++++++++ .../06-togglable-blocks/tsconfig.json | 36 ++++++++++++ .../06-togglable-blocks/vite.config.ts | 32 +++++++++++ .../createToggleWrapper.ts} | 30 +--------- packages/core/src/index.ts | 2 +- .../ToggleWrapper.tsx} | 24 +++----- playground/src/examples.gen.tsx | 18 ++++++ pnpm-lock.yaml | 46 +++++++++++++--- 15 files changed, 277 insertions(+), 80 deletions(-) create mode 100644 examples/06-custom-schema/06-togglable-blocks/.bnexample.json create mode 100644 examples/06-custom-schema/06-togglable-blocks/App.tsx create mode 100644 examples/06-custom-schema/06-togglable-blocks/README.md create mode 100644 examples/06-custom-schema/06-togglable-blocks/Toggle.tsx create mode 100644 examples/06-custom-schema/06-togglable-blocks/index.html create mode 100644 examples/06-custom-schema/06-togglable-blocks/main.tsx create mode 100644 examples/06-custom-schema/06-togglable-blocks/package.json create mode 100644 examples/06-custom-schema/06-togglable-blocks/tsconfig.json create mode 100644 examples/06-custom-schema/06-togglable-blocks/vite.config.ts rename packages/core/src/blocks/{ToggleBlockContent/ToggleBlockContent.ts => ToggleWrapper/createToggleWrapper.ts} (82%) rename packages/react/src/blocks/{ToggleBlockContent/ToggleBlockContent.tsx => ToggleWrapper/ToggleWrapper.tsx} (74%) diff --git a/examples/01-basic/04-default-blocks/App.tsx b/examples/01-basic/04-default-blocks/App.tsx index 01979e853f..992a52d217 100644 --- a/examples/01-basic/04-default-blocks/App.tsx +++ b/examples/01-basic/04-default-blocks/App.tsx @@ -1,45 +1,16 @@ -import { BlockNoteSchema, defaultBlockSpecs } from "@blocknote/core"; import "@blocknote/core/fonts/inter.css"; import { BlockNoteView } from "@blocknote/mantine"; import "@blocknote/mantine/style.css"; import { useCreateBlockNote } from "@blocknote/react"; -// import { ToggleBlock } from "@blocknote/core"; -import { ReactToggleBlock } from "@blocknote/react"; - export default function App() { // Creates a new editor instance. const editor = useCreateBlockNote({ - schema: BlockNoteSchema.create({ - blockSpecs: { - ...defaultBlockSpecs, - // toggle: ToggleBlock, - toggle: ReactToggleBlock, - }, - }), initialContent: [ { type: "paragraph", content: "Welcome to this demo!", }, - { - type: "toggle", - content: "Toggle", - children: [ - { - type: "paragraph", - content: "Child 1", - }, - { - type: "paragraph", - content: "Child 2", - }, - { - type: "paragraph", - content: "Child 3", - }, - ], - }, { type: "paragraph", }, diff --git a/examples/06-custom-schema/06-togglable-blocks/.bnexample.json b/examples/06-custom-schema/06-togglable-blocks/.bnexample.json new file mode 100644 index 0000000000..6d4a02dd52 --- /dev/null +++ b/examples/06-custom-schema/06-togglable-blocks/.bnexample.json @@ -0,0 +1,6 @@ +{ + "playground": true, + "docs": true, + "author": "matthewlipski", + "tags": ["Basic"] +} diff --git a/examples/06-custom-schema/06-togglable-blocks/App.tsx b/examples/06-custom-schema/06-togglable-blocks/App.tsx new file mode 100644 index 0000000000..632ce364fd --- /dev/null +++ b/examples/06-custom-schema/06-togglable-blocks/App.tsx @@ -0,0 +1,55 @@ +import { BlockNoteSchema, defaultBlockSpecs } from "@blocknote/core"; +import "@blocknote/core/fonts/inter.css"; +import { BlockNoteView } from "@blocknote/mantine"; +import "@blocknote/mantine/style.css"; +import { useCreateBlockNote } from "@blocknote/react"; + +import { ToggleBlock } from "./Toggle.js"; + +// Our schema with block specs, which contain the configs and implementations for +// blocks that we want our editor to use. +const schema = BlockNoteSchema.create({ + blockSpecs: { + // Adds all default blocks. + ...defaultBlockSpecs, + // Adds the Alert block. + toggle: ToggleBlock, + }, +}); + +export default function App() { + // Creates a new editor instance. + const editor = useCreateBlockNote({ + schema, + initialContent: [ + { + type: "paragraph", + content: "Welcome to this demo!", + }, + { + type: "toggle", + content: "This is an example toggle", + children: [ + { + type: "paragraph", + content: "This is the first child of the toggle block.", + }, + { + type: "paragraph", + content: "This is the second child of the toggle block.", + }, + ], + }, + { + type: "paragraph", + content: "Click the '>' icon to show/hide its children", + }, + { + type: "paragraph", + }, + ], + }); + + // Renders the editor instance. + return ; +} diff --git a/examples/06-custom-schema/06-togglable-blocks/README.md b/examples/06-custom-schema/06-togglable-blocks/README.md new file mode 100644 index 0000000000..3ac23efae0 --- /dev/null +++ b/examples/06-custom-schema/06-togglable-blocks/README.md @@ -0,0 +1,8 @@ +# Togglable Blocks + +This example shows how to create blocks with a toggle button to show/hide their children. This is done using the use the `ToggleWrapper` component from `@blocknote/react`. + +**Relevant Docs:** + +- [Custom Blocks](/docs/custom-schemas/custom-blocks) +- [Editor Setup](/docs/editor-basics/setup) diff --git a/examples/06-custom-schema/06-togglable-blocks/Toggle.tsx b/examples/06-custom-schema/06-togglable-blocks/Toggle.tsx new file mode 100644 index 0000000000..68ab2c6b46 --- /dev/null +++ b/examples/06-custom-schema/06-togglable-blocks/Toggle.tsx @@ -0,0 +1,19 @@ +import { defaultProps } from "@blocknote/core"; +import { createReactBlockSpec, ToggleWrapper } from "@blocknote/react"; + +export const ToggleBlock = createReactBlockSpec( + { + type: "toggle", + propSchema: { + ...defaultProps, + }, + content: "inline", + }, + { + render: (props) => ( + +

+ + ), + }, +); diff --git a/examples/06-custom-schema/06-togglable-blocks/index.html b/examples/06-custom-schema/06-togglable-blocks/index.html new file mode 100644 index 0000000000..f98e3f20c4 --- /dev/null +++ b/examples/06-custom-schema/06-togglable-blocks/index.html @@ -0,0 +1,14 @@ + + + + + + Togglable Blocks + + +

+ + + diff --git a/examples/06-custom-schema/06-togglable-blocks/main.tsx b/examples/06-custom-schema/06-togglable-blocks/main.tsx new file mode 100644 index 0000000000..6284417d60 --- /dev/null +++ b/examples/06-custom-schema/06-togglable-blocks/main.tsx @@ -0,0 +1,11 @@ +// AUTO-GENERATED FILE, DO NOT EDIT DIRECTLY +import React from "react"; +import { createRoot } from "react-dom/client"; +import App from "./App.jsx"; + +const root = createRoot(document.getElementById("root")!); +root.render( + + + +); diff --git a/examples/06-custom-schema/06-togglable-blocks/package.json b/examples/06-custom-schema/06-togglable-blocks/package.json new file mode 100644 index 0000000000..f6bf82cac4 --- /dev/null +++ b/examples/06-custom-schema/06-togglable-blocks/package.json @@ -0,0 +1,27 @@ +{ + "name": "@blocknote/example-togglable-blocks", + "description": "AUTO-GENERATED FILE, DO NOT EDIT DIRECTLY", + "private": true, + "version": "0.12.4", + "scripts": { + "start": "vite", + "dev": "vite", + "build:prod": "tsc && vite build", + "preview": "vite preview" + }, + "dependencies": { + "@blocknote/core": "latest", + "@blocknote/react": "latest", + "@blocknote/ariakit": "latest", + "@blocknote/mantine": "latest", + "@blocknote/shadcn": "latest", + "react": "^18.3.1", + "react-dom": "^18.3.1" + }, + "devDependencies": { + "@types/react": "^18.0.25", + "@types/react-dom": "^18.0.9", + "@vitejs/plugin-react": "^4.3.1", + "vite": "^5.3.4" + } +} \ No newline at end of file diff --git a/examples/06-custom-schema/06-togglable-blocks/tsconfig.json b/examples/06-custom-schema/06-togglable-blocks/tsconfig.json new file mode 100644 index 0000000000..dbe3e6f62d --- /dev/null +++ b/examples/06-custom-schema/06-togglable-blocks/tsconfig.json @@ -0,0 +1,36 @@ +{ + "__comment": "AUTO-GENERATED FILE, DO NOT EDIT DIRECTLY", + "compilerOptions": { + "target": "ESNext", + "useDefineForClassFields": true, + "lib": [ + "DOM", + "DOM.Iterable", + "ESNext" + ], + "allowJs": false, + "skipLibCheck": true, + "esModuleInterop": false, + "allowSyntheticDefaultImports": true, + "strict": true, + "forceConsistentCasingInFileNames": true, + "module": "ESNext", + "moduleResolution": "bundler", + "resolveJsonModule": true, + "isolatedModules": true, + "noEmit": true, + "jsx": "react-jsx", + "composite": true + }, + "include": [ + "." + ], + "__ADD_FOR_LOCAL_DEV_references": [ + { + "path": "../../../packages/core/" + }, + { + "path": "../../../packages/react/" + } + ] +} \ No newline at end of file diff --git a/examples/06-custom-schema/06-togglable-blocks/vite.config.ts b/examples/06-custom-schema/06-togglable-blocks/vite.config.ts new file mode 100644 index 0000000000..f62ab20bc2 --- /dev/null +++ b/examples/06-custom-schema/06-togglable-blocks/vite.config.ts @@ -0,0 +1,32 @@ +// AUTO-GENERATED FILE, DO NOT EDIT DIRECTLY +import react from "@vitejs/plugin-react"; +import * as fs from "fs"; +import * as path from "path"; +import { defineConfig } from "vite"; +// import eslintPlugin from "vite-plugin-eslint"; +// https://vitejs.dev/config/ +export default defineConfig((conf) => ({ + plugins: [react()], + optimizeDeps: {}, + build: { + sourcemap: true, + }, + resolve: { + alias: + conf.command === "build" || + !fs.existsSync(path.resolve(__dirname, "../../packages/core/src")) + ? {} + : ({ + // Comment out the lines below to load a built version of blocknote + // or, keep as is to load live from sources with live reload working + "@blocknote/core": path.resolve( + __dirname, + "../../packages/core/src/" + ), + "@blocknote/react": path.resolve( + __dirname, + "../../packages/react/src/" + ), + } as any), + }, +})); diff --git a/packages/core/src/blocks/ToggleBlockContent/ToggleBlockContent.ts b/packages/core/src/blocks/ToggleWrapper/createToggleWrapper.ts similarity index 82% rename from packages/core/src/blocks/ToggleBlockContent/ToggleBlockContent.ts rename to packages/core/src/blocks/ToggleWrapper/createToggleWrapper.ts index 25f8e5dc9e..6835f4d8bd 100644 --- a/packages/core/src/blocks/ToggleBlockContent/ToggleBlockContent.ts +++ b/packages/core/src/blocks/ToggleWrapper/createToggleWrapper.ts @@ -1,25 +1,9 @@ -import { - BlockConfig, - BlockFromConfig, - createBlockSpec, - PropSchema, -} from "../../schema/index.js"; +import { BlockFromConfig } from "../../schema/index.js"; -import { defaultProps } from "../defaultProps.js"; import { BlockNoteEditor } from "../../editor/BlockNoteEditor.js"; -export const togglePropSchema = { - ...defaultProps, -} satisfies PropSchema; - -export const toggleBlockConfig = { - type: "toggle" as const, - propSchema: togglePropSchema, - content: "inline", -} satisfies BlockConfig; - -export const toggleBlockRender = ( - block: BlockFromConfig, +export const createToggleWrapper = ( + block: BlockFromConfig, editor: BlockNoteEditor, ) => { const dom = document.createElement("div"); @@ -43,10 +27,7 @@ export const toggleBlockRender = ( }; toggleButton.addEventListener("click", toggleButtonOnClick); - const contentDOM = document.createElement("p"); - toggleWrapper.appendChild(toggleButton); - toggleWrapper.appendChild(contentDOM); const toggleAddBlockButton = document.createElement("button"); toggleAddBlockButton.className = "bn-toggle-add-block-button"; @@ -102,7 +83,6 @@ export const toggleBlockRender = ( return { dom, - contentDOM, destroy: () => { toggleButton.removeEventListener("mousedown", toggleButtonMouseDown); toggleButton.removeEventListener("click", toggleButtonOnClick); @@ -118,7 +98,3 @@ export const toggleBlockRender = ( }, }; }; - -export const ToggleBlock = createBlockSpec(toggleBlockConfig, { - render: toggleBlockRender, -}); diff --git a/packages/core/src/index.ts b/packages/core/src/index.ts index eac14418b0..965c3af049 100644 --- a/packages/core/src/index.ts +++ b/packages/core/src/index.ts @@ -19,7 +19,7 @@ export * from "./blocks/ImageBlockContent/ImageBlockContent.js"; export * from "./blocks/PageBreakBlockContent/PageBreakBlockContent.js"; export * from "./blocks/PageBreakBlockContent/getPageBreakSlashMenuItems.js"; export * from "./blocks/PageBreakBlockContent/schema.js"; -export * from "./blocks/ToggleBlockContent/ToggleBlockContent.js"; +export * from "./blocks/ToggleWrapper/createToggleWrapper.js"; export { EMPTY_CELL_HEIGHT, EMPTY_CELL_WIDTH, diff --git a/packages/react/src/blocks/ToggleBlockContent/ToggleBlockContent.tsx b/packages/react/src/blocks/ToggleWrapper/ToggleWrapper.tsx similarity index 74% rename from packages/react/src/blocks/ToggleBlockContent/ToggleBlockContent.tsx rename to packages/react/src/blocks/ToggleWrapper/ToggleWrapper.tsx index 9898af197e..863064fd83 100644 --- a/packages/react/src/blocks/ToggleBlockContent/ToggleBlockContent.tsx +++ b/packages/react/src/blocks/ToggleWrapper/ToggleWrapper.tsx @@ -1,18 +1,16 @@ -import { toggleBlockConfig } from "@blocknote/core"; -import { useState } from "react"; +import { ReactNode, useState } from "react"; -import { - createReactBlockSpec, - ReactCustomBlockRenderProps, -} from "../../schema/ReactBlockSpec.js"; +import { ReactCustomBlockRenderProps } from "../../schema/ReactBlockSpec.js"; import { useEditorChange } from "../../hooks/useEditorChange.js"; -export const ToggleBlock = ( - props: ReactCustomBlockRenderProps, +export const ToggleWrapper = ( + props: Omit, "contentRef"> & { + children: ReactNode; + }, ) => { - const { block, editor, contentRef } = props; + const { block, editor, children } = props; - const [showChildren, setShowChildren] = useState(true); + const [showChildren, setShowChildren] = useState(false); const [hasChildren, setHasChildren] = useState(block.children.length > 0); useEditorChange(() => { @@ -43,7 +41,7 @@ export const ToggleBlock = ( -

+ {children} {showChildren && !hasChildren && ( diff --git a/packages/react/src/components/SuggestionMenu/getDefaultReactSlashMenuItems.tsx b/packages/react/src/components/SuggestionMenu/getDefaultReactSlashMenuItems.tsx index 8e9b71bc3e..6e3ba68766 100644 --- a/packages/react/src/components/SuggestionMenu/getDefaultReactSlashMenuItems.tsx +++ b/packages/react/src/components/SuggestionMenu/getDefaultReactSlashMenuItems.tsx @@ -28,6 +28,9 @@ const icons = { heading: RiH1, heading_2: RiH2, heading_3: RiH3, + toggle_heading: RiH1, + toggle_heading_2: RiH2, + toggle_heading_3: RiH3, quote: RiQuoteText, numbered_list: RiListOrdered, bullet_list: RiListUnordered, diff --git a/packages/xl-docx-exporter/src/docx/defaultSchema/blocks.ts b/packages/xl-docx-exporter/src/docx/defaultSchema/blocks.ts index ed28643e0e..645f182ce8 100644 --- a/packages/xl-docx-exporter/src/docx/defaultSchema/blocks.ts +++ b/packages/xl-docx-exporter/src/docx/defaultSchema/blocks.ts @@ -116,6 +116,13 @@ export const docxBlockMappingForDefaultSchema: BlockMapping< heading: `Heading${block.props.level}`, }); }, + toggleHeading: (block, exporter) => { + return new Paragraph({ + ...blockPropsToStyles(block.props, exporter.options.colors), + children: exporter.transformInlineContent(block.content), + heading: `Heading${block.props.level}`, + }); + }, quote: (block, exporter) => { return new Paragraph({ shading: { diff --git a/packages/xl-odt-exporter/src/odt/defaultSchema/blocks.tsx b/packages/xl-odt-exporter/src/odt/defaultSchema/blocks.tsx index 0e31bb4787..86694c1de0 100644 --- a/packages/xl-odt-exporter/src/odt/defaultSchema/blocks.tsx +++ b/packages/xl-odt-exporter/src/odt/defaultSchema/blocks.tsx @@ -207,6 +207,25 @@ export const odtBlockMappingForDefaultSchema: BlockMapping< ); }, + toggleHeading: (block, exporter, nestingLevel) => { + const customStyleName = createParagraphStyle( + exporter as ODTExporter, + block.props, + "Heading_20_" + block.props.level, + ); + const styleName = customStyleName; + + return ( + + {getTabs(nestingLevel)} + {exporter.transformInlineContent(block.content)} + + ); + }, + quote: (block, exporter, nestingLevel) => { const customStyleName = createParagraphStyle( exporter as ODTExporter, diff --git a/packages/xl-pdf-exporter/src/pdf/defaultSchema/blocks.tsx b/packages/xl-pdf-exporter/src/pdf/defaultSchema/blocks.tsx index 31e4c23323..65ac8a0c49 100644 --- a/packages/xl-pdf-exporter/src/pdf/defaultSchema/blocks.tsx +++ b/packages/xl-pdf-exporter/src/pdf/defaultSchema/blocks.tsx @@ -72,6 +72,20 @@ export const pdfBlockMappingForDefaultSchema: BlockMapping< ); }, + toggleHeading: (block, exporter) => { + const fontSizeEM = + block.props.level === 1 ? 2 : block.props.level === 2 ? 1.5 : 1.17; + return ( + + {exporter.transformInlineContent(block.content)} + + ); + }, quote: (block, exporter) => { return ( Date: Tue, 10 Jun 2025 22:54:34 +0200 Subject: [PATCH 08/34] Added translations --- packages/core/src/i18n/locales/ar.ts | 19 ++++++++++++++ packages/core/src/i18n/locales/de.ts | 19 ++++++++++++++ packages/core/src/i18n/locales/es.ts | 19 ++++++++++++++ packages/core/src/i18n/locales/fr.ts | 21 ++++++++++++++++ packages/core/src/i18n/locales/hr.ts | 19 ++++++++++++++ packages/core/src/i18n/locales/is.ts | 19 ++++++++++++++ packages/core/src/i18n/locales/it.ts | 19 ++++++++++++++ packages/core/src/i18n/locales/ja.ts | 19 ++++++++++++++ packages/core/src/i18n/locales/ko.ts | 19 ++++++++++++++ packages/core/src/i18n/locales/nl.ts | 19 ++++++++++++++ packages/core/src/i18n/locales/no.ts | 19 ++++++++++++++ packages/core/src/i18n/locales/pl.ts | 19 ++++++++++++++ packages/core/src/i18n/locales/pt.ts | 19 ++++++++++++++ packages/core/src/i18n/locales/ru.ts | 33 +++++++++++++++++++++++++ packages/core/src/i18n/locales/sk.ts | 19 ++++++++++++++ packages/core/src/i18n/locales/uk.ts | 19 ++++++++++++++ packages/core/src/i18n/locales/vi.ts | 19 ++++++++++++++ packages/core/src/i18n/locales/zh-tw.ts | 27 ++++++++++++++++++++ packages/core/src/i18n/locales/zh.ts | 27 ++++++++++++++++++++ 19 files changed, 393 insertions(+) diff --git a/packages/core/src/i18n/locales/ar.ts b/packages/core/src/i18n/locales/ar.ts index eff1bbed30..796d4c48aa 100644 --- a/packages/core/src/i18n/locales/ar.ts +++ b/packages/core/src/i18n/locales/ar.ts @@ -20,6 +20,24 @@ export const ar: Dictionary = { aliases: ["ع3", "عنوان3", "عنوان فرعي"], group: "العناوين", }, + toggle_heading: { + title: "عنوان قابل للطي 1", + subtext: "عنوان المستوى الأعلى قابل للطي", + aliases: ["ع", "عنوان1", "ع1", "قابل للطي"], + group: "العناوين", + }, + toggle_heading_2: { + title: "عنوان قابل للطي 2", + subtext: "عنوان الأقسام الرئيسية قابل للطي", + aliases: ["ع2", "عنوان2", "عنوان فرعي", "قابل للطي"], + group: "العناوين", + }, + toggle_heading_3: { + title: "عنوان قابل للطي 3", + subtext: "عنوان الأقسام الفرعية والعناوين المجموعة قابل للطي", + aliases: ["ع3", "عنوان3", "عنوان فرعي", "قابل للطي"], + group: "العناوين", + }, quote: { title: "اقتباس", subtext: "اقتباس أو مقتطف", @@ -118,6 +136,7 @@ export const ar: Dictionary = { placeholders: { default: "أدخل نصًا أو اكتب '/' للأوامر", heading: "عنوان", + toggleHeading: "عنوان قابل للطي", bulletListItem: "قائمة", numberedListItem: "قائمة", checkListItem: "قائمة", diff --git a/packages/core/src/i18n/locales/de.ts b/packages/core/src/i18n/locales/de.ts index 6d66713e2d..1d7c8c05e9 100644 --- a/packages/core/src/i18n/locales/de.ts +++ b/packages/core/src/i18n/locales/de.ts @@ -20,6 +20,24 @@ export const de: Dictionary = { aliases: ["h3", "überschrift3", "unterüberschrift"], group: "Überschriften", }, + toggle_heading: { + title: "Aufklappbare Überschrift 1", + subtext: "Aufklappbare Hauptebene Überschrift", + aliases: ["h", "überschrift1", "h1", "aufklappbar"], + group: "Überschriften", + }, + toggle_heading_2: { + title: "Aufklappbare Überschrift 2", + subtext: "Aufklappbare wichtige Abschnittsüberschrift", + aliases: ["h2", "überschrift2", "unterüberschrift", "aufklappbar"], + group: "Überschriften", + }, + toggle_heading_3: { + title: "Aufklappbare Überschrift 3", + subtext: "Aufklappbare Unterabschnitts- und Gruppenüberschrift", + aliases: ["h3", "überschrift3", "unterüberschrift", "aufklappbar"], + group: "Überschriften", + }, quote: { title: "Zitat", subtext: "Zitat oder Auszug", @@ -134,6 +152,7 @@ export const de: Dictionary = { placeholders: { default: "Text eingeben oder '/' für Befehle tippen", heading: "Überschrift", + toggleHeading: "Aufklappbare Überschrift", bulletListItem: "Liste", numberedListItem: "Liste", checkListItem: "Liste", diff --git a/packages/core/src/i18n/locales/es.ts b/packages/core/src/i18n/locales/es.ts index 4f23dc027c..779ebc9c75 100644 --- a/packages/core/src/i18n/locales/es.ts +++ b/packages/core/src/i18n/locales/es.ts @@ -20,6 +20,24 @@ export const es: Dictionary = { aliases: ["h3", "encabezado3", "subencabezado"], group: "Encabezados", }, + toggle_heading: { + title: "Encabezado Desplegable 1", + subtext: "Encabezado de primer nivel desplegable", + aliases: ["h", "encabezado1", "h1", "desplegable"], + group: "Encabezados", + }, + toggle_heading_2: { + title: "Encabezado Desplegable 2", + subtext: "Encabezado de sección principal desplegable", + aliases: ["h2", "encabezado2", "subencabezado", "desplegable"], + group: "Encabezados", + }, + toggle_heading_3: { + title: "Encabezado Desplegable 3", + subtext: "Encabezado de subsección y grupo desplegable", + aliases: ["h3", "encabezado3", "subencabezado", "desplegable"], + group: "Encabezados", + }, quote: { title: "Cita", subtext: "Cita o extracto", @@ -133,6 +151,7 @@ export const es: Dictionary = { placeholders: { default: "Escribe o teclea '/' para comandos", heading: "Encabezado", + toggleHeading: "Encabezado Desplegable", bulletListItem: "Lista", numberedListItem: "Lista", checkListItem: "Lista", diff --git a/packages/core/src/i18n/locales/fr.ts b/packages/core/src/i18n/locales/fr.ts index ba24ee8599..c7569975f7 100644 --- a/packages/core/src/i18n/locales/fr.ts +++ b/packages/core/src/i18n/locales/fr.ts @@ -21,6 +21,26 @@ export const fr: Dictionary = { aliases: ["h3", "titre3", "sous-titre"], group: "Titres", }, + toggle_heading: { + title: "Titre Déroulant 1", + subtext: "Titre déroulant de premier niveau", + aliases: ["h", "titre1", "h1", "déroulant"], + group: "Titres", + }, + toggle_heading_2: { + title: "Titre Déroulant 2", + subtext: + "Titre déroulant de deuxième niveau utilisé pour les sections clés", + aliases: ["h2", "titre2", "sous-titre", "déroulant"], + group: "Titres", + }, + toggle_heading_3: { + title: "Titre Déroulant 3", + subtext: + "Titre déroulant de troisième niveau utilisé pour les sous-sections et les titres de groupe", + aliases: ["h3", "titre3", "sous-titre", "déroulant"], + group: "Titres", + }, quote: { title: "Citation", subtext: "Citation ou extrait", @@ -157,6 +177,7 @@ export const fr: Dictionary = { default: "Entrez du texte ou tapez '/' pour faire apparaître les options de mise en page", heading: "Titre", + toggleHeading: "Titre Déroulant", bulletListItem: "Liste", numberedListItem: "Liste", checkListItem: "Liste", diff --git a/packages/core/src/i18n/locales/hr.ts b/packages/core/src/i18n/locales/hr.ts index d099696d8f..0ad2326571 100644 --- a/packages/core/src/i18n/locales/hr.ts +++ b/packages/core/src/i18n/locales/hr.ts @@ -20,6 +20,24 @@ export const hr: Dictionary = { aliases: ["h3", "naslov3", "podnaslov"], group: "Naslovi", }, + toggle_heading: { + title: "Proširivi Naslov 1", + subtext: "Proširivi glavni naslov", + aliases: ["h", "naslov1", "h1", "proširivi"], + group: "Naslovi", + }, + toggle_heading_2: { + title: "Proširivi Naslov 2", + subtext: "Proširivi naslov poglavlja", + aliases: ["h2", "naslov2", "podnaslov", "proširivi"], + group: "Naslovi", + }, + toggle_heading_3: { + title: "Proširivi Naslov 3", + subtext: "Proširivi naslov podpoglavlja", + aliases: ["h3", "naslov3", "podnaslov", "proširivi"], + group: "Naslovi", + }, quote: { title: "Citat", subtext: "Citat ili izvadak", @@ -146,6 +164,7 @@ export const hr: Dictionary = { placeholders: { default: "Unesi tekst ili upiši ‘/’ za naredbe", heading: "Naslov", + toggleHeading: "Proširivi Naslov", bulletListItem: "Lista", numberedListItem: "Lista", checkListItem: "Lista", diff --git a/packages/core/src/i18n/locales/is.ts b/packages/core/src/i18n/locales/is.ts index f307171012..b52b2ae091 100644 --- a/packages/core/src/i18n/locales/is.ts +++ b/packages/core/src/i18n/locales/is.ts @@ -20,6 +20,24 @@ export const is: Dictionary = { aliases: ["h3", "fyrirsogn3", "undirfyrirsogn"], group: "Fyrirsagnir", }, + toggle_heading: { + title: "Fellanleg Fyrirsögn 1", + subtext: "Fellanleg efsta fyrirsögn", + aliases: ["h", "fyrirsogn1", "h1", "fellanleg"], + group: "Fyrirsagnir", + }, + toggle_heading_2: { + title: "Fellanleg Fyrirsögn 2", + subtext: "Fellanleg fyrirsögn fyrir lykilhluta", + aliases: ["h2", "fyrirsogn2", "undirfyrirsogn", "fellanleg"], + group: "Fyrirsagnir", + }, + toggle_heading_3: { + title: "Fellanleg Fyrirsögn 3", + subtext: "Fellanleg fyrirsögn fyrir undirhluta og hópfyrirsagnir", + aliases: ["h3", "fyrirsogn3", "undirfyrirsogn", "fellanleg"], + group: "Fyrirsagnir", + }, quote: { title: "Tilvitnun", subtext: "Tilvitnun eða útdráttur", @@ -126,6 +144,7 @@ export const is: Dictionary = { placeholders: { default: "Sláðu inn texta eða skrifaðu '/' fyrir skipanir", heading: "Fyrirsögn", + toggleHeading: "Fellanleg Fyrirsögn", bulletListItem: "Listi", numberedListItem: "Listi", checkListItem: "Listi", diff --git a/packages/core/src/i18n/locales/it.ts b/packages/core/src/i18n/locales/it.ts index 5554317ddf..ec0eac5c43 100644 --- a/packages/core/src/i18n/locales/it.ts +++ b/packages/core/src/i18n/locales/it.ts @@ -20,6 +20,24 @@ export const it: Dictionary = { aliases: ["h3", "intestazione3", "sottotitolo"], group: "Intestazioni", }, + toggle_heading: { + title: "Intestazione Espandibile 1", + subtext: "Intestazione espandibile di primo livello", + aliases: ["h", "intestazione1", "h1", "espandibile"], + group: "Intestazioni", + }, + toggle_heading_2: { + title: "Intestazione Espandibile 2", + subtext: "Intestazione espandibile di sezione chiave", + aliases: ["h2", "intestazione2", "sottotitolo", "espandibile"], + group: "Intestazioni", + }, + toggle_heading_3: { + title: "Intestazione Espandibile 3", + subtext: "Intestazione espandibile di sottosezione e gruppo", + aliases: ["h3", "intestazione3", "sottotitolo", "espandibile"], + group: "Intestazioni", + }, quote: { title: "Citazione", subtext: "Citazione o estratto", @@ -134,6 +152,7 @@ export const it: Dictionary = { placeholders: { default: "Inserisci testo o digita '/' per i comandi", heading: "Intestazione", + toggleHeading: "Intestazione Espandibile", bulletListItem: "Elenco", numberedListItem: "Elenco", checkListItem: "Elenco", diff --git a/packages/core/src/i18n/locales/ja.ts b/packages/core/src/i18n/locales/ja.ts index 0d359a07c6..2158608d62 100644 --- a/packages/core/src/i18n/locales/ja.ts +++ b/packages/core/src/i18n/locales/ja.ts @@ -20,6 +20,24 @@ export const ja: Dictionary = { aliases: ["h3", "見出し3", "subheading", "小見出し"], group: "見出し", }, + toggle_heading: { + title: "折りたたみ見出し1", + subtext: "折りたたみ可能なトップレベルの見出し", + aliases: ["h", "見出し1", "h1", "大見出し", "折りたたみ"], + group: "見出し", + }, + toggle_heading_2: { + title: "折りたたみ見出し2", + subtext: "折りたたみ可能な重要なセクションの見出し", + aliases: ["h2", "見出し2", "subheading", "中見出し", "折りたたみ"], + group: "見出し", + }, + toggle_heading_3: { + title: "折りたたみ見出し3", + subtext: "折りたたみ可能なセクションやグループの見出し", + aliases: ["h3", "見出し3", "subheading", "小見出し", "折りたたみ"], + group: "見出し", + }, quote: { title: "引用", subtext: "引用または抜粋", @@ -153,6 +171,7 @@ export const ja: Dictionary = { placeholders: { default: "テキストを入力するか'/' を入力してコマンド選択", heading: "見出し", + toggleHeading: "折りたたみ見出し", bulletListItem: "リストを追加", numberedListItem: "リストを追加", checkListItem: "リストを追加", diff --git a/packages/core/src/i18n/locales/ko.ts b/packages/core/src/i18n/locales/ko.ts index f647d9d018..c9d10e0d1b 100644 --- a/packages/core/src/i18n/locales/ko.ts +++ b/packages/core/src/i18n/locales/ko.ts @@ -20,6 +20,24 @@ export const ko: Dictionary = { aliases: ["h3", "제목3", "subheading"], group: "제목", }, + toggle_heading: { + title: "접을 수 있는 제목1", + subtext: "접을 수 있는 섹션 제목(대)", + aliases: ["h", "제목1", "h1", "대제목", "접기"], + group: "제목", + }, + toggle_heading_2: { + title: "접을 수 있는 제목2", + subtext: "접을 수 있는 섹션 제목(중)", + aliases: ["h2", "제목2", "중제목", "접기"], + group: "제목", + }, + toggle_heading_3: { + title: "접을 수 있는 제목3", + subtext: "접을 수 있는 섹션 제목(소)", + aliases: ["h3", "제목3", "subheading", "접기"], + group: "제목", + }, quote: { title: "인용", subtext: "인용문 또는 발췌", @@ -146,6 +164,7 @@ export const ko: Dictionary = { placeholders: { default: "텍스트를 입력하거나 /를 입력하여 명령을 입력하세요.", heading: "제목", + toggleHeading: "접을 수 있는 제목", bulletListItem: "목록", numberedListItem: "목록", checkListItem: "목록", diff --git a/packages/core/src/i18n/locales/nl.ts b/packages/core/src/i18n/locales/nl.ts index 9e6f8d34bd..731736d984 100644 --- a/packages/core/src/i18n/locales/nl.ts +++ b/packages/core/src/i18n/locales/nl.ts @@ -20,6 +20,24 @@ export const nl: Dictionary = { aliases: ["h3", "kop3", "subkop"], group: "Koppen", }, + toggle_heading: { + title: "Inklapbare Kop 1", + subtext: "Inklapbare hoofdkop", + aliases: ["h", "kop1", "h1", "inklapbaar"], + group: "Koppen", + }, + toggle_heading_2: { + title: "Inklapbare Kop 2", + subtext: "Inklapbare kop voor belangrijke secties", + aliases: ["h2", "kop2", "subkop", "inklapbaar"], + group: "Koppen", + }, + toggle_heading_3: { + title: "Inklapbare Kop 3", + subtext: "Inklapbare kop voor subsecties en groepskoppen", + aliases: ["h3", "kop3", "subkop", "inklapbaar"], + group: "Koppen", + }, quote: { title: "Citaat", subtext: "Citaat of uittreksel", @@ -133,6 +151,7 @@ export const nl: Dictionary = { placeholders: { default: "Voer tekst in of type '/' voor commando's", heading: "Kop", + toggleHeading: "Inklapbare Kop", bulletListItem: "Lijst", numberedListItem: "Lijst", checkListItem: "Lijst", diff --git a/packages/core/src/i18n/locales/no.ts b/packages/core/src/i18n/locales/no.ts index 5eddd8705d..d907a7d66a 100644 --- a/packages/core/src/i18n/locales/no.ts +++ b/packages/core/src/i18n/locales/no.ts @@ -20,6 +20,24 @@ export const no: Dictionary = { aliases: ["h3", "overskrift3", "underoverskrift"], group: "Overskrifter", }, + toggle_heading: { + title: "Sammenleggbar Overskrift 1", + subtext: "Sammenleggbar toppnivåoverskrift", + aliases: ["h", "overskrift1", "h1", "sammenleggbar"], + group: "Overskrifter", + }, + toggle_heading_2: { + title: "Sammenleggbar Overskrift 2", + subtext: "Sammenleggbar hovedseksjonsoverskrift", + aliases: ["h2", "overskrift2", "underoverskrift", "sammenleggbar"], + group: "Overskrifter", + }, + toggle_heading_3: { + title: "Sammenleggbar Overskrift 3", + subtext: "Sammenleggbar underseksjon og gruppeoverskrift", + aliases: ["h3", "overskrift3", "underoverskrift", "sammenleggbar"], + group: "Overskrifter", + }, quote: { title: "Sitat", subtext: "Sitat eller utdrag", @@ -134,6 +152,7 @@ export const no: Dictionary = { placeholders: { default: "Skriv tekst eller skriv '/' for å vise kommandoer", heading: "Overskrift", + toggleHeading: "Sammenleggbar Overskrift", bulletListItem: "Liste", numberedListItem: "Liste", checkListItem: "Liste", diff --git a/packages/core/src/i18n/locales/pl.ts b/packages/core/src/i18n/locales/pl.ts index 490de484e8..165e28780f 100644 --- a/packages/core/src/i18n/locales/pl.ts +++ b/packages/core/src/i18n/locales/pl.ts @@ -20,6 +20,24 @@ export const pl: Dictionary = { aliases: ["h3", "naglowek3", "podnaglowek"], group: "Nagłówki", }, + toggle_heading: { + title: "Nagłówek rozwijany 1", + subtext: "Rozwijany nagłówek najwyższego poziomu", + aliases: ["h", "naglowek1", "h1", "rozwijany"], + group: "Nagłówki", + }, + toggle_heading_2: { + title: "Nagłówek rozwijany 2", + subtext: "Rozwijany nagłówek dla kluczowych sekcji", + aliases: ["h2", "naglowek2", "podnaglowek", "rozwijany"], + group: "Nagłówki", + }, + toggle_heading_3: { + title: "Nagłówek rozwijany 3", + subtext: "Rozwijany nagłówek dla podsekcji i grup", + aliases: ["h3", "naglowek3", "podnaglowek", "rozwijany"], + group: "Nagłówki", + }, quote: { title: "Cytat", subtext: "Cytat lub fragment", @@ -118,6 +136,7 @@ export const pl: Dictionary = { placeholders: { default: "Wprowadź tekst lub wpisz '/' aby użyć poleceń", heading: "Nagłówek", + toggleHeading: "Nagłówek rozwijany", bulletListItem: "Lista", numberedListItem: "Lista", checkListItem: "Lista", diff --git a/packages/core/src/i18n/locales/pt.ts b/packages/core/src/i18n/locales/pt.ts index 1272700eb2..289224f8ab 100644 --- a/packages/core/src/i18n/locales/pt.ts +++ b/packages/core/src/i18n/locales/pt.ts @@ -20,6 +20,24 @@ export const pt: Dictionary = { aliases: ["h3", "titulo3", "subtitulo"], group: "Títulos", }, + toggle_heading: { + title: "Título Expansível", + subtext: "Título expansível de nível superior", + aliases: ["h", "titulo1", "h1", "expansível"], + group: "Títulos", + }, + toggle_heading_2: { + title: "Título Expansível 2", + subtext: "Título expansível para seções principais", + aliases: ["h2", "titulo2", "subtitulo", "expansível"], + group: "Títulos", + }, + toggle_heading_3: { + title: "Título Expansível 3", + subtext: "Título expansível para subseções e títulos de grupo", + aliases: ["h3", "titulo3", "subtitulo", "expansível"], + group: "Títulos", + }, quote: { title: "Citação", subtext: "Citação ou trecho", @@ -125,6 +143,7 @@ export const pt: Dictionary = { placeholders: { default: "Digite texto ou use '/' para comandos", heading: "Título", + toggleHeading: "Título Expansível", bulletListItem: "Lista", numberedListItem: "Lista", checkListItem: "Lista", diff --git a/packages/core/src/i18n/locales/ru.ts b/packages/core/src/i18n/locales/ru.ts index b91b706157..c06dd807ee 100644 --- a/packages/core/src/i18n/locales/ru.ts +++ b/packages/core/src/i18n/locales/ru.ts @@ -20,6 +20,38 @@ export const ru: Dictionary = { aliases: ["h3", "heading3", "subheading", "заголовок3", "подзаголовок"], group: "Заголовки", }, + toggle_heading: { + title: "Разворачиваемый заголовок 1 уровня", + subtext: "Разворачиваемый заголовок верхнего уровня", + aliases: ["h", "heading1", "h1", "заголовок1", "разворачиваемый"], + group: "Заголовки", + }, + toggle_heading_2: { + title: "Разворачиваемый заголовок 2 уровня", + subtext: "Разворачиваемый заголовок для ключевых разделов", + aliases: [ + "h2", + "heading2", + "subheading", + "заголовок2", + "подзаголовок", + "разворачиваемый", + ], + group: "Заголовки", + }, + toggle_heading_3: { + title: "Разворачиваемый заголовок 3 уровня", + subtext: "Разворачиваемый заголовок для подразделов и групп", + aliases: [ + "h3", + "heading3", + "subheading", + "заголовок3", + "подзаголовок", + "разворачиваемый", + ], + group: "Заголовки", + }, quote: { title: "Цитата", subtext: "Цитата или отрывок", @@ -160,6 +192,7 @@ export const ru: Dictionary = { placeholders: { default: "Введите текст или введите «/» для команд", heading: "Заголовок", + toggleHeading: "Разворачиваемый заголовок", bulletListItem: "Список", numberedListItem: "Список", checkListItem: "Список", diff --git a/packages/core/src/i18n/locales/sk.ts b/packages/core/src/i18n/locales/sk.ts index e1e7117265..09627e5dd0 100644 --- a/packages/core/src/i18n/locales/sk.ts +++ b/packages/core/src/i18n/locales/sk.ts @@ -18,6 +18,24 @@ export const sk = { aliases: ["h3", "nadpis3", "podnadpis"], group: "Nadpisy", }, + toggle_heading: { + title: "Rozbaľovací Nadpis 1", + subtext: "Rozbaľovací nadpis najvyššej úrovne", + aliases: ["h", "nadpis1", "h1", "rozbaľovací"], + group: "Nadpisy", + }, + toggle_heading_2: { + title: "Rozbaľovací Nadpis 2", + subtext: "Rozbaľovací kľúčový nadpis sekcie", + aliases: ["h2", "nadpis2", "podnadpis", "rozbaľovací"], + group: "Nadpisy", + }, + toggle_heading_3: { + title: "Rozbaľovací Nadpis 3", + subtext: "Rozbaľovací nadpis podsekcie alebo skupiny", + aliases: ["h3", "nadpis3", "podnadpis", "rozbaľovací"], + group: "Nadpisy", + }, quote: { title: "Citát", subtext: "Citát alebo výňatok", @@ -132,6 +150,7 @@ export const sk = { placeholders: { default: "Zadajte text alebo napíšte '/' pre príkazy", heading: "Nadpis", + toggleHeading: "Rozbaľovací Nadpis", bulletListItem: "Zoznam", numberedListItem: "Zoznam", checkListItem: "Zoznam", diff --git a/packages/core/src/i18n/locales/uk.ts b/packages/core/src/i18n/locales/uk.ts index 5592d752c1..853a648aec 100644 --- a/packages/core/src/i18n/locales/uk.ts +++ b/packages/core/src/i18n/locales/uk.ts @@ -20,6 +20,24 @@ export const uk: Dictionary = { aliases: ["h3", "heading3", "subheading", "заголовок3"], group: "Заголовки", }, + toggle_heading: { + title: "Розгортаємий заголовок 1", + subtext: "Розгортаємий заголовок найвищого рівня", + aliases: ["h", "heading1", "h1", "заголовок1", "розгортаємий"], + group: "Заголовки", + }, + toggle_heading_2: { + title: "Розгортаємий заголовок 2", + subtext: "Розгортаємий основний заголовок розділу", + aliases: ["h2", "heading2", "subheading", "заголовок2", "розгортаємий"], + group: "Заголовки", + }, + toggle_heading_3: { + title: "Розгортаємий заголовок 3", + subtext: "Розгортаємий підзаголовок і груповий заголовок", + aliases: ["h3", "heading3", "subheading", "заголовок3", "розгортаємий"], + group: "Заголовки", + }, quote: { title: "Цитата", subtext: "Цитата або уривок", @@ -158,6 +176,7 @@ export const uk: Dictionary = { placeholders: { default: "Введіть текст або наберіть '/' для команд", heading: "Заголовок", + toggleHeading: "Розгортаємий заголовок", bulletListItem: "Список", numberedListItem: "Список", checkListItem: "Список", diff --git a/packages/core/src/i18n/locales/vi.ts b/packages/core/src/i18n/locales/vi.ts index afe16fd2cd..9291fcb972 100644 --- a/packages/core/src/i18n/locales/vi.ts +++ b/packages/core/src/i18n/locales/vi.ts @@ -20,6 +20,24 @@ export const vi: Dictionary = { aliases: ["h3", "tieude3", "tieudephu"], group: "Tiêu đề", }, + toggle_heading: { + title: "Tiêu đề có thể thu gọn H1", + subtext: "Tiêu đề cấp cao nhất có thể thu gọn", + aliases: ["h", "tieude1", "dd1", "thugon"], + group: "Tiêu đề", + }, + toggle_heading_2: { + title: "Tiêu đề có thể thu gọn H2", + subtext: "Tiêu đề cho các phần chính có thể thu gọn", + aliases: ["h2", "tieude2", "tieudephu", "thugon"], + group: "Tiêu đề", + }, + toggle_heading_3: { + title: "Tiêu đề có thể thu gọn H3", + subtext: "Tiêu đề cho phụ đề và tiêu đề nhóm có thể thu gọn", + aliases: ["h3", "tieude3", "tieudephu", "thugon"], + group: "Tiêu đề", + }, quote: { title: "Trích dẫn", subtext: "Trích dẫn hoặc đoạn trích", @@ -132,6 +150,7 @@ export const vi: Dictionary = { placeholders: { default: "Nhập văn bản hoặc gõ '/' để thêm định dạng", heading: "Tiêu đề", + toggleHeading: "Tiêu đề có thể thu gọn", bulletListItem: "Danh sách", numberedListItem: "Danh sách", checkListItem: "Danh sách", diff --git a/packages/core/src/i18n/locales/zh-tw.ts b/packages/core/src/i18n/locales/zh-tw.ts index e9556ae225..d5b1440a5e 100644 --- a/packages/core/src/i18n/locales/zh-tw.ts +++ b/packages/core/src/i18n/locales/zh-tw.ts @@ -20,6 +20,32 @@ export const zhTW: Dictionary = { aliases: ["h3", "heading3", "subheading", "標題", "三級標題"], group: "標題", }, + toggle_heading: { + title: "可摺疊一級標題", + subtext: "可摺疊的頂級標題", + aliases: ["h", "heading1", "h1", "標題", "一級標題", "摺疊"], + group: "標題", + }, + toggle_heading_2: { + title: "可摺疊二級標題", + subtext: "可摺疊的關鍵部分標題", + aliases: [ + "h2", + "heading2", + "subheading", + "標題", + "二級標題", + "副標題", + "摺疊", + ], + group: "標題", + }, + toggle_heading_3: { + title: "可摺疊三級標題", + subtext: "可摺疊的小節和分組標題", + aliases: ["h3", "heading3", "subheading", "標題", "三級標題", "摺疊"], + group: "標題", + }, quote: { title: "引用", subtext: "引用或摘錄", @@ -166,6 +192,7 @@ export const zhTW: Dictionary = { placeholders: { default: "輸入 '/' 以使用指令", heading: "標題", + toggleHeading: "可摺疊標題", bulletListItem: "列表", numberedListItem: "列表", checkListItem: "列表", diff --git a/packages/core/src/i18n/locales/zh.ts b/packages/core/src/i18n/locales/zh.ts index fff54c314c..6cb5dbe5b0 100644 --- a/packages/core/src/i18n/locales/zh.ts +++ b/packages/core/src/i18n/locales/zh.ts @@ -20,6 +20,32 @@ export const zh: Dictionary = { aliases: ["h3", "heading3", "subheading", "标题", "三级标题"], group: "标题", }, + toggle_heading: { + title: "可折叠一级标题", + subtext: "可折叠的顶级标题", + aliases: ["h", "heading1", "h1", "标题", "一级标题", "折叠"], + group: "标题", + }, + toggle_heading_2: { + title: "可折叠二级标题", + subtext: "可折叠的关键部分标题", + aliases: [ + "h2", + "heading2", + "subheading", + "标题", + "二级标题", + "副标题", + "折叠", + ], + group: "标题", + }, + toggle_heading_3: { + title: "可折叠三级标题", + subtext: "可折叠的小节和分组标题", + aliases: ["h3", "heading3", "subheading", "标题", "三级标题", "折叠"], + group: "标题", + }, quote: { title: "引用", subtext: "引用或摘录", @@ -166,6 +192,7 @@ export const zh: Dictionary = { placeholders: { default: "输入 '/' 以使用命令", heading: "标题", + toggleHeading: "可折叠标题", bulletListItem: "列表", numberedListItem: "列表", checkListItem: "列表", From cb159d6cc82b59dba9c603e0d003865b22eac4c3 Mon Sep 17 00:00:00 2001 From: Matthew Lipski Date: Tue, 10 Jun 2025 22:54:41 +0200 Subject: [PATCH 09/34] Typing fix --- .../core/src/blocks/ToggleWrapper/createToggleWrapper.ts | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/packages/core/src/blocks/ToggleWrapper/createToggleWrapper.ts b/packages/core/src/blocks/ToggleWrapper/createToggleWrapper.ts index b94b48221e..c8540b3c51 100644 --- a/packages/core/src/blocks/ToggleWrapper/createToggleWrapper.ts +++ b/packages/core/src/blocks/ToggleWrapper/createToggleWrapper.ts @@ -1,4 +1,4 @@ -import { NodeView } from "@tiptap/pm/view"; +import { ViewMutationRecord } from "@tiptap/pm/view"; import { BlockNoteEditor } from "../../editor/BlockNoteEditor.js"; import { BlockFromConfig } from "../../schema/index.js"; @@ -7,7 +7,7 @@ export const createToggleWrapper = ( block: BlockFromConfig, editor: BlockNoteEditor, contentDOM: HTMLElement, -): NodeView => { +) => { const dom = document.createElement("div"); const toggleWrapper = document.createElement("div"); @@ -87,7 +87,7 @@ export const createToggleWrapper = ( contentDOM, // Prevents re-renders when the toggle button is clicked. // TODO: Document what this actually does. - ignoreMutation: (mutation) => { + ignoreMutation: (mutation: ViewMutationRecord) => { if ( mutation instanceof MutationRecord && (mutation.type === "attributes" || mutation.type === "childList") From d7a6d7d317014d4985e559b30ce6d15d47f87e37 Mon Sep 17 00:00:00 2001 From: Matthew Lipski Date: Wed, 11 Jun 2025 10:43:28 +0200 Subject: [PATCH 10/34] Made heading custom block to extend for toggle heading --- .../HeadingBlockContent.ts | 340 ++++++++++-------- .../ToggleHeadingBlockContent.ts | 26 +- .../ToggleWrapper/createToggleWrapper.ts | 25 +- packages/core/src/schema/blocks/createSpec.ts | 4 +- 4 files changed, 224 insertions(+), 171 deletions(-) diff --git a/packages/core/src/blocks/HeadingBlockContent/HeadingBlockContent.ts b/packages/core/src/blocks/HeadingBlockContent/HeadingBlockContent.ts index 8299892a03..988c66038d 100644 --- a/packages/core/src/blocks/HeadingBlockContent/HeadingBlockContent.ts +++ b/packages/core/src/blocks/HeadingBlockContent/HeadingBlockContent.ts @@ -1,13 +1,9 @@ -import { InputRule } from "@tiptap/core"; -import { updateBlockCommand } from "../../api/blockManipulation/commands/updateBlock/updateBlock.js"; -import { getBlockInfoFromSelection } from "../../api/getBlockInfoFromPos.js"; import { + CustomBlockConfig, + CustomBlockImplementation, PropSchema, - createBlockSpecFromStronglyTypedTiptapNode, - createStronglyTypedTiptapNode, - propsToAttributes, + createBlockSpec, } from "../../schema/index.js"; -import { createDefaultBlockDOMOutputSpec } from "../defaultBlockHelpers.js"; import { defaultProps } from "../defaultProps.js"; export const headingPropSchema = { @@ -15,147 +11,189 @@ export const headingPropSchema = { level: { default: 1, values: [1, 2, 3] as const }, } satisfies PropSchema; -const HeadingBlockContent = createStronglyTypedTiptapNode({ - name: "heading", - content: "inline*", - group: "blockContent", - - addAttributes() { - return propsToAttributes(headingPropSchema); - }, - - addInputRules() { - return [ - ...[1, 2, 3].map((level) => { - // Creates a heading of appropriate level when starting with "#", "##", or "###". - return new InputRule({ - find: new RegExp(`^(#{${level}})\\s$`), - handler: ({ state, chain, range }) => { - const blockInfo = getBlockInfoFromSelection(state); - if ( - !blockInfo.isBlockContainer || - blockInfo.blockContent.node.type.spec.content !== "inline*" - ) { - return; - } - - chain() - .command( - updateBlockCommand(blockInfo.bnBlock.beforePos, { - type: "heading", - props: { - level: level as any, - }, - }), - ) - // Removes the "#" character(s) used to set the heading. - .deleteRange({ from: range.from, to: range.to }) - .run(); - }, - }); - }), - ]; - }, - - addKeyboardShortcuts() { - return { - "Mod-Alt-1": () => { - const blockInfo = getBlockInfoFromSelection(this.editor.state); - if ( - !blockInfo.isBlockContainer || - blockInfo.blockContent.node.type.spec.content !== "inline*" - ) { - return true; - } - - // call updateBlockCommand - return this.editor.commands.command( - updateBlockCommand(blockInfo.bnBlock.beforePos, { - type: "heading", - props: { - level: 1 as any, - }, - }), - ); - }, - "Mod-Alt-2": () => { - const blockInfo = getBlockInfoFromSelection(this.editor.state); - if ( - !blockInfo.isBlockContainer || - blockInfo.blockContent.node.type.spec.content !== "inline*" - ) { - return true; - } - - return this.editor.commands.command( - updateBlockCommand(blockInfo.bnBlock.beforePos, { - type: "heading", - props: { - level: 2 as any, - }, - }), - ); - }, - "Mod-Alt-3": () => { - const blockInfo = getBlockInfoFromSelection(this.editor.state); - if ( - !blockInfo.isBlockContainer || - blockInfo.blockContent.node.type.spec.content !== "inline*" - ) { - return true; - } - - return this.editor.commands.command( - updateBlockCommand(blockInfo.bnBlock.beforePos, { - type: "heading", - props: { - level: 3 as any, - }, - }), - ); - }, - }; - }, - parseHTML() { - return [ - // Parse from internal HTML. - { - tag: "div[data-content-type=" + this.name + "]", - contentElement: ".bn-inline-content", - }, - // Parse from external HTML. - { - tag: "h1", - attrs: { level: 1 }, - node: "heading", - }, - { - tag: "h2", - attrs: { level: 2 }, - node: "heading", - }, - { - tag: "h3", - attrs: { level: 3 }, - node: "heading", - }, - ]; - }, - - renderHTML({ node, HTMLAttributes }) { - return createDefaultBlockDOMOutputSpec( - this.name, - `h${node.attrs.level}`, - { - ...(this.options.domAttributes?.blockContent || {}), - ...HTMLAttributes, - }, - this.options.domAttributes?.inlineContent || {}, - ); - }, -}); - -export const Heading = createBlockSpecFromStronglyTypedTiptapNode( - HeadingBlockContent, - headingPropSchema, -); +export const headingConfig = { + type: "heading", + propSchema: headingPropSchema, + content: "inline", +} satisfies CustomBlockConfig; + +export const headingRender: CustomBlockImplementation< + typeof headingConfig, + any, + any +>["render"] = (block) => { + const dom = document.createElement(`h${block.props.level}`); + + return { + dom, + contentDOM: dom, + }; +}; + +export const headingParse: CustomBlockImplementation< + typeof headingConfig, + any, + any +>["parse"] = (element) => { + if (element.tagName === "H1") { + return { level: 1 }; + } else if (element.tagName === "H2") { + return { level: 2 }; + } else if (element.tagName === "H3") { + return { level: 3 }; + } + + return undefined; +}; + +export const headingImplementation = { + render: headingRender, + parse: headingParse, +} satisfies CustomBlockImplementation; + +export const Heading = createBlockSpec(headingConfig, headingImplementation); + +// const HeadingBlockContent = createStronglyTypedTiptapNode({ +// name: "heading", +// content: "inline*", +// group: "blockContent", + +// addAttributes() { +// return propsToAttributes(headingPropSchema); +// }, + +// addInputRules() { +// return [ +// ...[1, 2, 3].map((level) => { +// // Creates a heading of appropriate level when starting with "#", "##", or "###". +// return new InputRule({ +// find: new RegExp(`^(#{${level}})\\s$`), +// handler: ({ state, chain, range }) => { +// const blockInfo = getBlockInfoFromSelection(state); +// if ( +// !blockInfo.isBlockContainer || +// blockInfo.blockContent.node.type.spec.content !== "inline*" +// ) { +// return; +// } + +// chain() +// .command( +// updateBlockCommand(blockInfo.bnBlock.beforePos, { +// type: "heading", +// props: { +// level: level as any, +// }, +// }), +// ) +// // Removes the "#" character(s) used to set the heading. +// .deleteRange({ from: range.from, to: range.to }) +// .run(); +// }, +// }); +// }), +// ]; +// }, + +// addKeyboardShortcuts() { +// return { +// "Mod-Alt-1": () => { +// const blockInfo = getBlockInfoFromSelection(this.editor.state); +// if ( +// !blockInfo.isBlockContainer || +// blockInfo.blockContent.node.type.spec.content !== "inline*" +// ) { +// return true; +// } + +// // call updateBlockCommand +// return this.editor.commands.command( +// updateBlockCommand(blockInfo.bnBlock.beforePos, { +// type: "heading", +// props: { +// level: 1 as any, +// }, +// }), +// ); +// }, +// "Mod-Alt-2": () => { +// const blockInfo = getBlockInfoFromSelection(this.editor.state); +// if ( +// !blockInfo.isBlockContainer || +// blockInfo.blockContent.node.type.spec.content !== "inline*" +// ) { +// return true; +// } + +// return this.editor.commands.command( +// updateBlockCommand(blockInfo.bnBlock.beforePos, { +// type: "heading", +// props: { +// level: 2 as any, +// }, +// }), +// ); +// }, +// "Mod-Alt-3": () => { +// const blockInfo = getBlockInfoFromSelection(this.editor.state); +// if ( +// !blockInfo.isBlockContainer || +// blockInfo.blockContent.node.type.spec.content !== "inline*" +// ) { +// return true; +// } + +// return this.editor.commands.command( +// updateBlockCommand(blockInfo.bnBlock.beforePos, { +// type: "heading", +// props: { +// level: 3 as any, +// }, +// }), +// ); +// }, +// }; +// }, +// parseHTML() { +// return [ +// // Parse from internal HTML. +// { +// tag: "div[data-content-type=" + this.name + "]", +// contentElement: ".bn-inline-content", +// }, +// // Parse from external HTML. +// { +// tag: "h1", +// attrs: { level: 1 }, +// node: "heading", +// }, +// { +// tag: "h2", +// attrs: { level: 2 }, +// node: "heading", +// }, +// { +// tag: "h3", +// attrs: { level: 3 }, +// node: "heading", +// }, +// ]; +// }, + +// renderHTML({ node, HTMLAttributes }) { +// return createDefaultBlockDOMOutputSpec( +// this.name, +// `h${node.attrs.level}`, +// { +// ...(this.options.domAttributes?.blockContent || {}), +// ...HTMLAttributes, +// }, +// this.options.domAttributes?.inlineContent || {}, +// ); +// }, +// }); + +// export const Heading = createBlockSpecFromStronglyTypedTiptapNode( +// HeadingBlockContent, +// headingPropSchema, +// ); diff --git a/packages/core/src/blocks/ToggleHeadingBlockContent/ToggleHeadingBlockContent.ts b/packages/core/src/blocks/ToggleHeadingBlockContent/ToggleHeadingBlockContent.ts index 35c7ffbfec..7263c51ea6 100644 --- a/packages/core/src/blocks/ToggleHeadingBlockContent/ToggleHeadingBlockContent.ts +++ b/packages/core/src/blocks/ToggleHeadingBlockContent/ToggleHeadingBlockContent.ts @@ -1,22 +1,22 @@ import { createBlockSpec } from "../../schema/index.js"; -import { defaultProps } from "../defaultProps.js"; +import { + headingConfig, + headingImplementation, +} from "../HeadingBlockContent/HeadingBlockContent.js"; import { createToggleWrapper } from "../ToggleWrapper/createToggleWrapper.js"; export const ToggleHeading = createBlockSpec( { + ...headingConfig, type: "toggleHeading", - propSchema: { - ...defaultProps, - level: { default: 1, values: [1, 2, 3] as const }, - }, - content: "inline", - } as const, + }, { - render: (block, editor) => { - const contentDOM = document.createElement(`h${block.props.level}`); - const a = createToggleWrapper(block, editor, contentDOM); - - return a; - }, + ...headingImplementation, + render: (block, editor) => + createToggleWrapper( + block, + editor, + headingImplementation.render(block, editor), + ), }, ); diff --git a/packages/core/src/blocks/ToggleWrapper/createToggleWrapper.ts b/packages/core/src/blocks/ToggleWrapper/createToggleWrapper.ts index c8540b3c51..54f2df1498 100644 --- a/packages/core/src/blocks/ToggleWrapper/createToggleWrapper.ts +++ b/packages/core/src/blocks/ToggleWrapper/createToggleWrapper.ts @@ -6,8 +6,18 @@ import { BlockFromConfig } from "../../schema/index.js"; export const createToggleWrapper = ( block: BlockFromConfig, editor: BlockNoteEditor, - contentDOM: HTMLElement, -) => { + renderedElement: { + dom: HTMLElement; + contentDOM?: HTMLElement; + ignoreMutation?: (mutation: ViewMutationRecord) => boolean; + destroy?: () => void; + }, +): { + dom: HTMLElement; + contentDOM?: HTMLElement; + ignoreMutation?: (mutation: ViewMutationRecord) => boolean; + destroy?: () => void; +} => { const dom = document.createElement("div"); const toggleWrapper = document.createElement("div"); @@ -44,7 +54,7 @@ export const createToggleWrapper = ( toggleButton.addEventListener("click", toggleButtonOnClick); toggleWrapper.appendChild(toggleButton); - toggleWrapper.appendChild(contentDOM); + toggleWrapper.appendChild(renderedElement.dom); const toggleAddBlockButton = document.createElement("button"); toggleAddBlockButton.className = "bn-toggle-add-block-button"; @@ -84,14 +94,18 @@ export const createToggleWrapper = ( return { dom, - contentDOM, + contentDOM: renderedElement.contentDOM, // Prevents re-renders when the toggle button is clicked. // TODO: Document what this actually does. - ignoreMutation: (mutation: ViewMutationRecord) => { + ignoreMutation: (mutation) => { if ( mutation instanceof MutationRecord && (mutation.type === "attributes" || mutation.type === "childList") ) { + if (renderedElement.ignoreMutation) { + return renderedElement.ignoreMutation(mutation); + } + return true; } return false; @@ -108,6 +122,7 @@ export const createToggleWrapper = ( toggleAddBlockButtonOnClick, ); onEditorChange?.(); + renderedElement.destroy?.(); }, }; }; diff --git a/packages/core/src/schema/blocks/createSpec.ts b/packages/core/src/schema/blocks/createSpec.ts index 6744bc0b81..cbfbe84a68 100644 --- a/packages/core/src/schema/blocks/createSpec.ts +++ b/packages/core/src/schema/blocks/createSpec.ts @@ -1,6 +1,6 @@ import { Editor } from "@tiptap/core"; import { TagParseRule } from "@tiptap/pm/model"; -import { NodeView } from "@tiptap/pm/view"; +import { NodeView, ViewMutationRecord } from "@tiptap/pm/view"; import type { BlockNoteEditor } from "../../editor/BlockNoteEditor.js"; import { InlineContentSchema } from "../inlineContent/types.js"; import { StyleSchema } from "../styles/types.js"; @@ -44,7 +44,7 @@ export type CustomBlockImplementation< ) => { dom: HTMLElement; contentDOM?: HTMLElement; - ignoreMutation?: (mutation: MutationRecord) => boolean; + ignoreMutation?: (mutation: ViewMutationRecord) => boolean; destroy?: () => void; }; // Exports block to external HTML. If not defined, the output will be the same From a3a88f9eb8aa0820c8cef508b932fcf6e23355d3 Mon Sep 17 00:00:00 2001 From: Matthew Lipski Date: Wed, 11 Jun 2025 10:49:35 +0200 Subject: [PATCH 11/34] Small fix --- packages/core/src/schema/blocks/createSpec.ts | 1 + 1 file changed, 1 insertion(+) diff --git a/packages/core/src/schema/blocks/createSpec.ts b/packages/core/src/schema/blocks/createSpec.ts index cbfbe84a68..8a5bc3cb96 100644 --- a/packages/core/src/schema/blocks/createSpec.ts +++ b/packages/core/src/schema/blocks/createSpec.ts @@ -200,6 +200,7 @@ export function createBlockSpec< block.type, block.props, blockConfig.propSchema, + blockConfig.isFileBlock, blockContentDOMAttributes, ); From 2c12f1bcf7e9f2546c9e189d7d76f3725ad23f04 Mon Sep 17 00:00:00 2001 From: Matthew Lipski Date: Wed, 11 Jun 2025 11:35:55 +0200 Subject: [PATCH 12/34] Removed toggle heading block and added `isTogglable` prop to regular heading --- .../06-togglable-blocks/README.md | 2 +- .../HeadingBlockContent.ts | 17 +++++++++----- .../ToggleHeadingBlockContent.ts | 22 ------------------- .../core/src/blocks/defaultBlockTypeGuards.ts | 8 +++++-- packages/core/src/blocks/defaultBlocks.ts | 2 -- .../getDefaultSlashMenuItems.ts | 17 +++++--------- packages/core/src/i18n/locales/ar.ts | 1 - packages/core/src/i18n/locales/de.ts | 1 - packages/core/src/i18n/locales/en.ts | 1 - packages/core/src/i18n/locales/es.ts | 1 - packages/core/src/i18n/locales/fr.ts | 1 - packages/core/src/i18n/locales/hr.ts | 1 - packages/core/src/i18n/locales/is.ts | 1 - packages/core/src/i18n/locales/it.ts | 1 - packages/core/src/i18n/locales/ja.ts | 1 - packages/core/src/i18n/locales/ko.ts | 1 - packages/core/src/i18n/locales/nl.ts | 1 - packages/core/src/i18n/locales/no.ts | 1 - packages/core/src/i18n/locales/pl.ts | 1 - packages/core/src/i18n/locales/pt.ts | 1 - packages/core/src/i18n/locales/ru.ts | 1 - packages/core/src/i18n/locales/sk.ts | 1 - packages/core/src/i18n/locales/uk.ts | 1 - packages/core/src/i18n/locales/vi.ts | 1 - packages/core/src/i18n/locales/zh-tw.ts | 1 - packages/core/src/i18n/locales/zh.ts | 1 - .../src/context/ServerBlockNoteEditor.test.ts | 1 + .../src/docx/defaultSchema/blocks.ts | 7 ------ .../src/odt/defaultSchema/blocks.tsx | 19 ---------------- .../src/pdf/defaultSchema/blocks.tsx | 14 ------------ 30 files changed, 26 insertions(+), 103 deletions(-) delete mode 100644 packages/core/src/blocks/ToggleHeadingBlockContent/ToggleHeadingBlockContent.ts diff --git a/examples/06-custom-schema/06-togglable-blocks/README.md b/examples/06-custom-schema/06-togglable-blocks/README.md index 3ac23efae0..e8219a0d81 100644 --- a/examples/06-custom-schema/06-togglable-blocks/README.md +++ b/examples/06-custom-schema/06-togglable-blocks/README.md @@ -1,6 +1,6 @@ # Togglable Blocks -This example shows how to create blocks with a toggle button to show/hide their children. This is done using the use the `ToggleWrapper` component from `@blocknote/react`. +This example shows how to create blocks with a toggle button to show/hide their children, like with the default heading and list item blocks. This is done using the use the `ToggleWrapper` component from `@blocknote/react`. **Relevant Docs:** diff --git a/packages/core/src/blocks/HeadingBlockContent/HeadingBlockContent.ts b/packages/core/src/blocks/HeadingBlockContent/HeadingBlockContent.ts index 988c66038d..e0b985a8cf 100644 --- a/packages/core/src/blocks/HeadingBlockContent/HeadingBlockContent.ts +++ b/packages/core/src/blocks/HeadingBlockContent/HeadingBlockContent.ts @@ -5,29 +5,36 @@ import { createBlockSpec, } from "../../schema/index.js"; import { defaultProps } from "../defaultProps.js"; +import { createToggleWrapper } from "../ToggleWrapper/createToggleWrapper.js"; export const headingPropSchema = { ...defaultProps, level: { default: 1, values: [1, 2, 3] as const }, -} satisfies PropSchema; + isTogglable: { default: false }, +} as const satisfies PropSchema; export const headingConfig = { type: "heading", propSchema: headingPropSchema, content: "inline", -} satisfies CustomBlockConfig; +} as const satisfies CustomBlockConfig; export const headingRender: CustomBlockImplementation< typeof headingConfig, any, any ->["render"] = (block) => { +>["render"] = (block, editor) => { const dom = document.createElement(`h${block.props.level}`); - - return { + const renderedElement = { dom, contentDOM: dom, }; + + if (block.props.isTogglable) { + return createToggleWrapper(block, editor, renderedElement); + } + + return renderedElement; }; export const headingParse: CustomBlockImplementation< diff --git a/packages/core/src/blocks/ToggleHeadingBlockContent/ToggleHeadingBlockContent.ts b/packages/core/src/blocks/ToggleHeadingBlockContent/ToggleHeadingBlockContent.ts deleted file mode 100644 index 7263c51ea6..0000000000 --- a/packages/core/src/blocks/ToggleHeadingBlockContent/ToggleHeadingBlockContent.ts +++ /dev/null @@ -1,22 +0,0 @@ -import { createBlockSpec } from "../../schema/index.js"; -import { - headingConfig, - headingImplementation, -} from "../HeadingBlockContent/HeadingBlockContent.js"; -import { createToggleWrapper } from "../ToggleWrapper/createToggleWrapper.js"; - -export const ToggleHeading = createBlockSpec( - { - ...headingConfig, - type: "toggleHeading", - }, - { - ...headingImplementation, - render: (block, editor) => - createToggleWrapper( - block, - editor, - headingImplementation.render(block, editor), - ), - }, -); diff --git a/packages/core/src/blocks/defaultBlockTypeGuards.ts b/packages/core/src/blocks/defaultBlockTypeGuards.ts index 5db988da9a..d51dc67eab 100644 --- a/packages/core/src/blocks/defaultBlockTypeGuards.ts +++ b/packages/core/src/blocks/defaultBlockTypeGuards.ts @@ -24,7 +24,11 @@ export function checkDefaultBlockTypeInSchema< >( blockType: BlockType, editor: BlockNoteEditor, -): editor is BlockNoteEditor<{ Type: DefaultBlockSchema[BlockType] }, I, S> { +): editor is BlockNoteEditor< + { [K in BlockType]: DefaultBlockSchema[BlockType] }, + I, + S +> { return ( blockType in editor.schema.blockSchema && editor.schema.blockSchema[blockType] === defaultBlockSchema[blockType] @@ -40,7 +44,7 @@ export function checkDefaultInlineContentTypeInSchema< editor: BlockNoteEditor, ): editor is BlockNoteEditor< B, - { Type: DefaultInlineContentSchema[InlineContentType] }, + { [K in InlineContentType]: DefaultInlineContentSchema[InlineContentType] }, S > { return ( diff --git a/packages/core/src/blocks/defaultBlocks.ts b/packages/core/src/blocks/defaultBlocks.ts index c770bbafe3..5e6deeb46c 100644 --- a/packages/core/src/blocks/defaultBlocks.ts +++ b/packages/core/src/blocks/defaultBlocks.ts @@ -32,12 +32,10 @@ import { Paragraph } from "./ParagraphBlockContent/ParagraphBlockContent.js"; import { Quote } from "./QuoteBlockContent/QuoteBlockContent.js"; import { Table } from "./TableBlockContent/TableBlockContent.js"; import { VideoBlock } from "./VideoBlockContent/VideoBlockContent.js"; -import { ToggleHeading } from "./ToggleHeadingBlockContent/ToggleHeadingBlockContent.js"; export const defaultBlockSpecs = { paragraph: Paragraph, heading: Heading, - toggleHeading: ToggleHeading, quote: Quote, codeBlock: CodeBlock, bulletListItem: BulletListItem, diff --git a/packages/core/src/extensions/SuggestionMenu/getDefaultSlashMenuItems.ts b/packages/core/src/extensions/SuggestionMenu/getDefaultSlashMenuItems.ts index e522ca7cd5..04d5c7a665 100644 --- a/packages/core/src/extensions/SuggestionMenu/getDefaultSlashMenuItems.ts +++ b/packages/core/src/extensions/SuggestionMenu/getDefaultSlashMenuItems.ts @@ -122,16 +122,11 @@ export function getDefaultSlashMenuItems< key: "heading_3", ...editor.dictionary.slash_menu.heading_3, }, - ); - } - - if (checkDefaultBlockTypeInSchema("toggleHeading", editor)) { - items.push( { onItemClick: () => { insertOrUpdateBlock(editor, { - type: "toggleHeading", - props: { level: 1 }, + type: "heading", + props: { level: 1, isTogglable: true }, }); }, key: "toggle_heading", @@ -140,8 +135,8 @@ export function getDefaultSlashMenuItems< { onItemClick: () => { insertOrUpdateBlock(editor, { - type: "toggleHeading", - props: { level: 2 }, + type: "heading", + props: { level: 2, isTogglable: true }, }); }, @@ -151,8 +146,8 @@ export function getDefaultSlashMenuItems< { onItemClick: () => { insertOrUpdateBlock(editor, { - type: "toggleHeading", - props: { level: 3 }, + type: "heading", + props: { level: 3, isTogglable: true }, }); }, key: "toggle_heading_3", diff --git a/packages/core/src/i18n/locales/ar.ts b/packages/core/src/i18n/locales/ar.ts index 796d4c48aa..2be0aecd0f 100644 --- a/packages/core/src/i18n/locales/ar.ts +++ b/packages/core/src/i18n/locales/ar.ts @@ -136,7 +136,6 @@ export const ar: Dictionary = { placeholders: { default: "أدخل نصًا أو اكتب '/' للأوامر", heading: "عنوان", - toggleHeading: "عنوان قابل للطي", bulletListItem: "قائمة", numberedListItem: "قائمة", checkListItem: "قائمة", diff --git a/packages/core/src/i18n/locales/de.ts b/packages/core/src/i18n/locales/de.ts index 1d7c8c05e9..6f5b896dea 100644 --- a/packages/core/src/i18n/locales/de.ts +++ b/packages/core/src/i18n/locales/de.ts @@ -152,7 +152,6 @@ export const de: Dictionary = { placeholders: { default: "Text eingeben oder '/' für Befehle tippen", heading: "Überschrift", - toggleHeading: "Aufklappbare Überschrift", bulletListItem: "Liste", numberedListItem: "Liste", checkListItem: "Liste", diff --git a/packages/core/src/i18n/locales/en.ts b/packages/core/src/i18n/locales/en.ts index be09d85df9..f33bf08e38 100644 --- a/packages/core/src/i18n/locales/en.ts +++ b/packages/core/src/i18n/locales/en.ts @@ -150,7 +150,6 @@ export const en = { placeholders: { default: "Enter text or type '/' for commands", heading: "Heading", - toggleHeading: "Toggle Heading", bulletListItem: "List", numberedListItem: "List", checkListItem: "List", diff --git a/packages/core/src/i18n/locales/es.ts b/packages/core/src/i18n/locales/es.ts index 779ebc9c75..4bd62b2c51 100644 --- a/packages/core/src/i18n/locales/es.ts +++ b/packages/core/src/i18n/locales/es.ts @@ -151,7 +151,6 @@ export const es: Dictionary = { placeholders: { default: "Escribe o teclea '/' para comandos", heading: "Encabezado", - toggleHeading: "Encabezado Desplegable", bulletListItem: "Lista", numberedListItem: "Lista", checkListItem: "Lista", diff --git a/packages/core/src/i18n/locales/fr.ts b/packages/core/src/i18n/locales/fr.ts index c7569975f7..a220225ac7 100644 --- a/packages/core/src/i18n/locales/fr.ts +++ b/packages/core/src/i18n/locales/fr.ts @@ -177,7 +177,6 @@ export const fr: Dictionary = { default: "Entrez du texte ou tapez '/' pour faire apparaître les options de mise en page", heading: "Titre", - toggleHeading: "Titre Déroulant", bulletListItem: "Liste", numberedListItem: "Liste", checkListItem: "Liste", diff --git a/packages/core/src/i18n/locales/hr.ts b/packages/core/src/i18n/locales/hr.ts index 0ad2326571..933e0b47fc 100644 --- a/packages/core/src/i18n/locales/hr.ts +++ b/packages/core/src/i18n/locales/hr.ts @@ -164,7 +164,6 @@ export const hr: Dictionary = { placeholders: { default: "Unesi tekst ili upiši ‘/’ za naredbe", heading: "Naslov", - toggleHeading: "Proširivi Naslov", bulletListItem: "Lista", numberedListItem: "Lista", checkListItem: "Lista", diff --git a/packages/core/src/i18n/locales/is.ts b/packages/core/src/i18n/locales/is.ts index b52b2ae091..ca89b0bd73 100644 --- a/packages/core/src/i18n/locales/is.ts +++ b/packages/core/src/i18n/locales/is.ts @@ -144,7 +144,6 @@ export const is: Dictionary = { placeholders: { default: "Sláðu inn texta eða skrifaðu '/' fyrir skipanir", heading: "Fyrirsögn", - toggleHeading: "Fellanleg Fyrirsögn", bulletListItem: "Listi", numberedListItem: "Listi", checkListItem: "Listi", diff --git a/packages/core/src/i18n/locales/it.ts b/packages/core/src/i18n/locales/it.ts index ec0eac5c43..90875881ed 100644 --- a/packages/core/src/i18n/locales/it.ts +++ b/packages/core/src/i18n/locales/it.ts @@ -152,7 +152,6 @@ export const it: Dictionary = { placeholders: { default: "Inserisci testo o digita '/' per i comandi", heading: "Intestazione", - toggleHeading: "Intestazione Espandibile", bulletListItem: "Elenco", numberedListItem: "Elenco", checkListItem: "Elenco", diff --git a/packages/core/src/i18n/locales/ja.ts b/packages/core/src/i18n/locales/ja.ts index 2158608d62..8251861ff8 100644 --- a/packages/core/src/i18n/locales/ja.ts +++ b/packages/core/src/i18n/locales/ja.ts @@ -171,7 +171,6 @@ export const ja: Dictionary = { placeholders: { default: "テキストを入力するか'/' を入力してコマンド選択", heading: "見出し", - toggleHeading: "折りたたみ見出し", bulletListItem: "リストを追加", numberedListItem: "リストを追加", checkListItem: "リストを追加", diff --git a/packages/core/src/i18n/locales/ko.ts b/packages/core/src/i18n/locales/ko.ts index c9d10e0d1b..a6a903c345 100644 --- a/packages/core/src/i18n/locales/ko.ts +++ b/packages/core/src/i18n/locales/ko.ts @@ -164,7 +164,6 @@ export const ko: Dictionary = { placeholders: { default: "텍스트를 입력하거나 /를 입력하여 명령을 입력하세요.", heading: "제목", - toggleHeading: "접을 수 있는 제목", bulletListItem: "목록", numberedListItem: "목록", checkListItem: "목록", diff --git a/packages/core/src/i18n/locales/nl.ts b/packages/core/src/i18n/locales/nl.ts index 731736d984..c6b7fc0ec3 100644 --- a/packages/core/src/i18n/locales/nl.ts +++ b/packages/core/src/i18n/locales/nl.ts @@ -151,7 +151,6 @@ export const nl: Dictionary = { placeholders: { default: "Voer tekst in of type '/' voor commando's", heading: "Kop", - toggleHeading: "Inklapbare Kop", bulletListItem: "Lijst", numberedListItem: "Lijst", checkListItem: "Lijst", diff --git a/packages/core/src/i18n/locales/no.ts b/packages/core/src/i18n/locales/no.ts index d907a7d66a..8b53081c48 100644 --- a/packages/core/src/i18n/locales/no.ts +++ b/packages/core/src/i18n/locales/no.ts @@ -152,7 +152,6 @@ export const no: Dictionary = { placeholders: { default: "Skriv tekst eller skriv '/' for å vise kommandoer", heading: "Overskrift", - toggleHeading: "Sammenleggbar Overskrift", bulletListItem: "Liste", numberedListItem: "Liste", checkListItem: "Liste", diff --git a/packages/core/src/i18n/locales/pl.ts b/packages/core/src/i18n/locales/pl.ts index 165e28780f..d1a0355baa 100644 --- a/packages/core/src/i18n/locales/pl.ts +++ b/packages/core/src/i18n/locales/pl.ts @@ -136,7 +136,6 @@ export const pl: Dictionary = { placeholders: { default: "Wprowadź tekst lub wpisz '/' aby użyć poleceń", heading: "Nagłówek", - toggleHeading: "Nagłówek rozwijany", bulletListItem: "Lista", numberedListItem: "Lista", checkListItem: "Lista", diff --git a/packages/core/src/i18n/locales/pt.ts b/packages/core/src/i18n/locales/pt.ts index 289224f8ab..724abbc6e9 100644 --- a/packages/core/src/i18n/locales/pt.ts +++ b/packages/core/src/i18n/locales/pt.ts @@ -143,7 +143,6 @@ export const pt: Dictionary = { placeholders: { default: "Digite texto ou use '/' para comandos", heading: "Título", - toggleHeading: "Título Expansível", bulletListItem: "Lista", numberedListItem: "Lista", checkListItem: "Lista", diff --git a/packages/core/src/i18n/locales/ru.ts b/packages/core/src/i18n/locales/ru.ts index c06dd807ee..b31b5bfdfe 100644 --- a/packages/core/src/i18n/locales/ru.ts +++ b/packages/core/src/i18n/locales/ru.ts @@ -192,7 +192,6 @@ export const ru: Dictionary = { placeholders: { default: "Введите текст или введите «/» для команд", heading: "Заголовок", - toggleHeading: "Разворачиваемый заголовок", bulletListItem: "Список", numberedListItem: "Список", checkListItem: "Список", diff --git a/packages/core/src/i18n/locales/sk.ts b/packages/core/src/i18n/locales/sk.ts index 09627e5dd0..785c4a33a9 100644 --- a/packages/core/src/i18n/locales/sk.ts +++ b/packages/core/src/i18n/locales/sk.ts @@ -150,7 +150,6 @@ export const sk = { placeholders: { default: "Zadajte text alebo napíšte '/' pre príkazy", heading: "Nadpis", - toggleHeading: "Rozbaľovací Nadpis", bulletListItem: "Zoznam", numberedListItem: "Zoznam", checkListItem: "Zoznam", diff --git a/packages/core/src/i18n/locales/uk.ts b/packages/core/src/i18n/locales/uk.ts index 853a648aec..e65b386be8 100644 --- a/packages/core/src/i18n/locales/uk.ts +++ b/packages/core/src/i18n/locales/uk.ts @@ -176,7 +176,6 @@ export const uk: Dictionary = { placeholders: { default: "Введіть текст або наберіть '/' для команд", heading: "Заголовок", - toggleHeading: "Розгортаємий заголовок", bulletListItem: "Список", numberedListItem: "Список", checkListItem: "Список", diff --git a/packages/core/src/i18n/locales/vi.ts b/packages/core/src/i18n/locales/vi.ts index 9291fcb972..a66423cc87 100644 --- a/packages/core/src/i18n/locales/vi.ts +++ b/packages/core/src/i18n/locales/vi.ts @@ -150,7 +150,6 @@ export const vi: Dictionary = { placeholders: { default: "Nhập văn bản hoặc gõ '/' để thêm định dạng", heading: "Tiêu đề", - toggleHeading: "Tiêu đề có thể thu gọn", bulletListItem: "Danh sách", numberedListItem: "Danh sách", checkListItem: "Danh sách", diff --git a/packages/core/src/i18n/locales/zh-tw.ts b/packages/core/src/i18n/locales/zh-tw.ts index d5b1440a5e..3b84493c9f 100644 --- a/packages/core/src/i18n/locales/zh-tw.ts +++ b/packages/core/src/i18n/locales/zh-tw.ts @@ -192,7 +192,6 @@ export const zhTW: Dictionary = { placeholders: { default: "輸入 '/' 以使用指令", heading: "標題", - toggleHeading: "可摺疊標題", bulletListItem: "列表", numberedListItem: "列表", checkListItem: "列表", diff --git a/packages/core/src/i18n/locales/zh.ts b/packages/core/src/i18n/locales/zh.ts index 6cb5dbe5b0..dc47d7ecb4 100644 --- a/packages/core/src/i18n/locales/zh.ts +++ b/packages/core/src/i18n/locales/zh.ts @@ -192,7 +192,6 @@ export const zh: Dictionary = { placeholders: { default: "输入 '/' 以使用命令", heading: "标题", - toggleHeading: "可折叠标题", bulletListItem: "列表", numberedListItem: "列表", checkListItem: "列表", diff --git a/packages/server-util/src/context/ServerBlockNoteEditor.test.ts b/packages/server-util/src/context/ServerBlockNoteEditor.test.ts index 530dca2a92..97ff414804 100644 --- a/packages/server-util/src/context/ServerBlockNoteEditor.test.ts +++ b/packages/server-util/src/context/ServerBlockNoteEditor.test.ts @@ -15,6 +15,7 @@ describe("Test ServerBlockNoteEditor", () => { textColor: "yellow", textAlignment: "right", level: 2, + isTogglable: false, }, content: [ { diff --git a/packages/xl-docx-exporter/src/docx/defaultSchema/blocks.ts b/packages/xl-docx-exporter/src/docx/defaultSchema/blocks.ts index 645f182ce8..ed28643e0e 100644 --- a/packages/xl-docx-exporter/src/docx/defaultSchema/blocks.ts +++ b/packages/xl-docx-exporter/src/docx/defaultSchema/blocks.ts @@ -116,13 +116,6 @@ export const docxBlockMappingForDefaultSchema: BlockMapping< heading: `Heading${block.props.level}`, }); }, - toggleHeading: (block, exporter) => { - return new Paragraph({ - ...blockPropsToStyles(block.props, exporter.options.colors), - children: exporter.transformInlineContent(block.content), - heading: `Heading${block.props.level}`, - }); - }, quote: (block, exporter) => { return new Paragraph({ shading: { diff --git a/packages/xl-odt-exporter/src/odt/defaultSchema/blocks.tsx b/packages/xl-odt-exporter/src/odt/defaultSchema/blocks.tsx index 86694c1de0..0e31bb4787 100644 --- a/packages/xl-odt-exporter/src/odt/defaultSchema/blocks.tsx +++ b/packages/xl-odt-exporter/src/odt/defaultSchema/blocks.tsx @@ -207,25 +207,6 @@ export const odtBlockMappingForDefaultSchema: BlockMapping< ); }, - toggleHeading: (block, exporter, nestingLevel) => { - const customStyleName = createParagraphStyle( - exporter as ODTExporter, - block.props, - "Heading_20_" + block.props.level, - ); - const styleName = customStyleName; - - return ( - - {getTabs(nestingLevel)} - {exporter.transformInlineContent(block.content)} - - ); - }, - quote: (block, exporter, nestingLevel) => { const customStyleName = createParagraphStyle( exporter as ODTExporter, diff --git a/packages/xl-pdf-exporter/src/pdf/defaultSchema/blocks.tsx b/packages/xl-pdf-exporter/src/pdf/defaultSchema/blocks.tsx index 65ac8a0c49..31e4c23323 100644 --- a/packages/xl-pdf-exporter/src/pdf/defaultSchema/blocks.tsx +++ b/packages/xl-pdf-exporter/src/pdf/defaultSchema/blocks.tsx @@ -72,20 +72,6 @@ export const pdfBlockMappingForDefaultSchema: BlockMapping< ); }, - toggleHeading: (block, exporter) => { - const fontSizeEM = - block.props.level === 1 ? 2 : block.props.level === 2 ? 1.5 : 1.17; - return ( - - {exporter.transformInlineContent(block.content)} - - ); - }, quote: (block, exporter) => { return ( Date: Wed, 11 Jun 2025 12:34:07 +0200 Subject: [PATCH 13/34] Slightly changed how the toggle wrapper works --- .../06-togglable-blocks/App.tsx | 2 +- .../06-togglable-blocks/Toggle.tsx | 8 +++++++ .../HeadingBlockContent.ts | 11 +++------- .../ToggleWrapper/createToggleWrapper.ts | 18 +++++++++++++++- .../blocks/ToggleWrapper/ToggleWrapper.tsx | 21 ++++++++++++++++++- 5 files changed, 49 insertions(+), 11 deletions(-) diff --git a/examples/06-custom-schema/06-togglable-blocks/App.tsx b/examples/06-custom-schema/06-togglable-blocks/App.tsx index 632ce364fd..b98c7fae69 100644 --- a/examples/06-custom-schema/06-togglable-blocks/App.tsx +++ b/examples/06-custom-schema/06-togglable-blocks/App.tsx @@ -12,7 +12,7 @@ const schema = BlockNoteSchema.create({ blockSpecs: { // Adds all default blocks. ...defaultBlockSpecs, - // Adds the Alert block. + // Adds the Toggle block. toggle: ToggleBlock, }, }); diff --git a/examples/06-custom-schema/06-togglable-blocks/Toggle.tsx b/examples/06-custom-schema/06-togglable-blocks/Toggle.tsx index 68ab2c6b46..41aae6f3d5 100644 --- a/examples/06-custom-schema/06-togglable-blocks/Toggle.tsx +++ b/examples/06-custom-schema/06-togglable-blocks/Toggle.tsx @@ -1,16 +1,24 @@ import { defaultProps } from "@blocknote/core"; import { createReactBlockSpec, ToggleWrapper } from "@blocknote/react"; +// The Toggle block that we want to add to our editor. export const ToggleBlock = createReactBlockSpec( { type: "toggle", propSchema: { ...defaultProps, + // We add an `isTogglable` prop which defaults to true. Otherwise, the + // `ToggleWrapper` component will only render its children. + isTogglable: { default: true }, }, content: "inline", }, { render: (props) => ( + // The `ToggleWrapper` component checks if the block has the + // `isTogglable` prop set to true. It then renders a button on the left + // which toggles the visibility of the block's children. It also adds + // a button to add child blocks if there are none.

diff --git a/packages/core/src/blocks/HeadingBlockContent/HeadingBlockContent.ts b/packages/core/src/blocks/HeadingBlockContent/HeadingBlockContent.ts index e0b985a8cf..e21ccf90c7 100644 --- a/packages/core/src/blocks/HeadingBlockContent/HeadingBlockContent.ts +++ b/packages/core/src/blocks/HeadingBlockContent/HeadingBlockContent.ts @@ -25,16 +25,11 @@ export const headingRender: CustomBlockImplementation< any >["render"] = (block, editor) => { const dom = document.createElement(`h${block.props.level}`); - const renderedElement = { + + return createToggleWrapper(block, editor, { dom, contentDOM: dom, - }; - - if (block.props.isTogglable) { - return createToggleWrapper(block, editor, renderedElement); - } - - return renderedElement; + }); }; export const headingParse: CustomBlockImplementation< diff --git a/packages/core/src/blocks/ToggleWrapper/createToggleWrapper.ts b/packages/core/src/blocks/ToggleWrapper/createToggleWrapper.ts index 54f2df1498..2d9016b684 100644 --- a/packages/core/src/blocks/ToggleWrapper/createToggleWrapper.ts +++ b/packages/core/src/blocks/ToggleWrapper/createToggleWrapper.ts @@ -4,7 +4,19 @@ import { BlockNoteEditor } from "../../editor/BlockNoteEditor.js"; import { BlockFromConfig } from "../../schema/index.js"; export const createToggleWrapper = ( - block: BlockFromConfig, + block: BlockFromConfig< + { + type: any; + readonly propSchema: { + isTogglable: { + default: boolean; + }; + }; + content: any; + }, + any, + any + >, editor: BlockNoteEditor, renderedElement: { dom: HTMLElement; @@ -18,6 +30,10 @@ export const createToggleWrapper = ( ignoreMutation?: (mutation: ViewMutationRecord) => boolean; destroy?: () => void; } => { + if (!block.props.isTogglable) { + return renderedElement; + } + const dom = document.createElement("div"); const toggleWrapper = document.createElement("div"); diff --git a/packages/react/src/blocks/ToggleWrapper/ToggleWrapper.tsx b/packages/react/src/blocks/ToggleWrapper/ToggleWrapper.tsx index 7562c0e6a5..82e26ed367 100644 --- a/packages/react/src/blocks/ToggleWrapper/ToggleWrapper.tsx +++ b/packages/react/src/blocks/ToggleWrapper/ToggleWrapper.tsx @@ -4,7 +4,22 @@ import { ReactCustomBlockRenderProps } from "../../schema/ReactBlockSpec.js"; import { useEditorChange } from "../../hooks/useEditorChange.js"; export const ToggleWrapper = ( - props: Omit, "contentRef"> & { + props: Omit< + ReactCustomBlockRenderProps< + { + type: any; + readonly propSchema: { + isTogglable: { + default: boolean; + }; + }; + content: any; + }, + any, + any + >, + "contentRef" + > & { children: ReactNode; }, ) => { @@ -23,6 +38,10 @@ export const ToggleWrapper = ( } }); + if (!block.props.isTogglable) { + return children; + } + return (

From 9378ef072354a366f00fc07b704e62e7f64b5263 Mon Sep 17 00:00:00 2001 From: Matthew Lipski Date: Wed, 11 Jun 2025 12:54:55 +0200 Subject: [PATCH 14/34] Changed heading block to again use `createStronglyTypedTiptapNode` instead of `createBlockSpec` --- .../HeadingBlockContent.ts | 375 +++++++++--------- 1 file changed, 186 insertions(+), 189 deletions(-) diff --git a/packages/core/src/blocks/HeadingBlockContent/HeadingBlockContent.ts b/packages/core/src/blocks/HeadingBlockContent/HeadingBlockContent.ts index e21ccf90c7..bf296f87a0 100644 --- a/packages/core/src/blocks/HeadingBlockContent/HeadingBlockContent.ts +++ b/packages/core/src/blocks/HeadingBlockContent/HeadingBlockContent.ts @@ -1,9 +1,15 @@ +import { InputRule } from "@tiptap/core"; + +import { updateBlockCommand } from "../../api/blockManipulation/commands/updateBlock/updateBlock.js"; +import { getBlockInfoFromSelection } from "../../api/getBlockInfoFromPos.js"; import { - CustomBlockConfig, - CustomBlockImplementation, PropSchema, - createBlockSpec, + createBlockSpecFromStronglyTypedTiptapNode, + createStronglyTypedTiptapNode, + getBlockFromPos, + propsToAttributes, } from "../../schema/index.js"; +import { createDefaultBlockDOMOutputSpec } from "../defaultBlockHelpers.js"; import { defaultProps } from "../defaultProps.js"; import { createToggleWrapper } from "../ToggleWrapper/createToggleWrapper.js"; @@ -13,189 +19,180 @@ export const headingPropSchema = { isTogglable: { default: false }, } as const satisfies PropSchema; -export const headingConfig = { - type: "heading", - propSchema: headingPropSchema, - content: "inline", -} as const satisfies CustomBlockConfig; - -export const headingRender: CustomBlockImplementation< - typeof headingConfig, - any, - any ->["render"] = (block, editor) => { - const dom = document.createElement(`h${block.props.level}`); - - return createToggleWrapper(block, editor, { - dom, - contentDOM: dom, - }); -}; - -export const headingParse: CustomBlockImplementation< - typeof headingConfig, - any, - any ->["parse"] = (element) => { - if (element.tagName === "H1") { - return { level: 1 }; - } else if (element.tagName === "H2") { - return { level: 2 }; - } else if (element.tagName === "H3") { - return { level: 3 }; - } - - return undefined; -}; - -export const headingImplementation = { - render: headingRender, - parse: headingParse, -} satisfies CustomBlockImplementation; - -export const Heading = createBlockSpec(headingConfig, headingImplementation); - -// const HeadingBlockContent = createStronglyTypedTiptapNode({ -// name: "heading", -// content: "inline*", -// group: "blockContent", - -// addAttributes() { -// return propsToAttributes(headingPropSchema); -// }, - -// addInputRules() { -// return [ -// ...[1, 2, 3].map((level) => { -// // Creates a heading of appropriate level when starting with "#", "##", or "###". -// return new InputRule({ -// find: new RegExp(`^(#{${level}})\\s$`), -// handler: ({ state, chain, range }) => { -// const blockInfo = getBlockInfoFromSelection(state); -// if ( -// !blockInfo.isBlockContainer || -// blockInfo.blockContent.node.type.spec.content !== "inline*" -// ) { -// return; -// } - -// chain() -// .command( -// updateBlockCommand(blockInfo.bnBlock.beforePos, { -// type: "heading", -// props: { -// level: level as any, -// }, -// }), -// ) -// // Removes the "#" character(s) used to set the heading. -// .deleteRange({ from: range.from, to: range.to }) -// .run(); -// }, -// }); -// }), -// ]; -// }, - -// addKeyboardShortcuts() { -// return { -// "Mod-Alt-1": () => { -// const blockInfo = getBlockInfoFromSelection(this.editor.state); -// if ( -// !blockInfo.isBlockContainer || -// blockInfo.blockContent.node.type.spec.content !== "inline*" -// ) { -// return true; -// } - -// // call updateBlockCommand -// return this.editor.commands.command( -// updateBlockCommand(blockInfo.bnBlock.beforePos, { -// type: "heading", -// props: { -// level: 1 as any, -// }, -// }), -// ); -// }, -// "Mod-Alt-2": () => { -// const blockInfo = getBlockInfoFromSelection(this.editor.state); -// if ( -// !blockInfo.isBlockContainer || -// blockInfo.blockContent.node.type.spec.content !== "inline*" -// ) { -// return true; -// } - -// return this.editor.commands.command( -// updateBlockCommand(blockInfo.bnBlock.beforePos, { -// type: "heading", -// props: { -// level: 2 as any, -// }, -// }), -// ); -// }, -// "Mod-Alt-3": () => { -// const blockInfo = getBlockInfoFromSelection(this.editor.state); -// if ( -// !blockInfo.isBlockContainer || -// blockInfo.blockContent.node.type.spec.content !== "inline*" -// ) { -// return true; -// } - -// return this.editor.commands.command( -// updateBlockCommand(blockInfo.bnBlock.beforePos, { -// type: "heading", -// props: { -// level: 3 as any, -// }, -// }), -// ); -// }, -// }; -// }, -// parseHTML() { -// return [ -// // Parse from internal HTML. -// { -// tag: "div[data-content-type=" + this.name + "]", -// contentElement: ".bn-inline-content", -// }, -// // Parse from external HTML. -// { -// tag: "h1", -// attrs: { level: 1 }, -// node: "heading", -// }, -// { -// tag: "h2", -// attrs: { level: 2 }, -// node: "heading", -// }, -// { -// tag: "h3", -// attrs: { level: 3 }, -// node: "heading", -// }, -// ]; -// }, - -// renderHTML({ node, HTMLAttributes }) { -// return createDefaultBlockDOMOutputSpec( -// this.name, -// `h${node.attrs.level}`, -// { -// ...(this.options.domAttributes?.blockContent || {}), -// ...HTMLAttributes, -// }, -// this.options.domAttributes?.inlineContent || {}, -// ); -// }, -// }); - -// export const Heading = createBlockSpecFromStronglyTypedTiptapNode( -// HeadingBlockContent, -// headingPropSchema, -// ); +const HeadingBlockContent = createStronglyTypedTiptapNode({ + name: "heading", + content: "inline*", + group: "blockContent", + + addAttributes() { + return propsToAttributes(headingPropSchema); + }, + + addInputRules() { + return [ + ...[1, 2, 3].map((level) => { + // Creates a heading of appropriate level when starting with "#", "##", or "###". + return new InputRule({ + find: new RegExp(`^(#{${level}})\\s$`), + handler: ({ state, chain, range }) => { + const blockInfo = getBlockInfoFromSelection(state); + if ( + !blockInfo.isBlockContainer || + blockInfo.blockContent.node.type.spec.content !== "inline*" + ) { + return; + } + + chain() + .command( + updateBlockCommand(blockInfo.bnBlock.beforePos, { + type: "heading", + props: { + level: level as any, + }, + }), + ) + // Removes the "#" character(s) used to set the heading. + .deleteRange({ from: range.from, to: range.to }) + .run(); + }, + }); + }), + ]; + }, + + addKeyboardShortcuts() { + return { + "Mod-Alt-1": () => { + const blockInfo = getBlockInfoFromSelection(this.editor.state); + if ( + !blockInfo.isBlockContainer || + blockInfo.blockContent.node.type.spec.content !== "inline*" + ) { + return true; + } + + // call updateBlockCommand + return this.editor.commands.command( + updateBlockCommand(blockInfo.bnBlock.beforePos, { + type: "heading", + props: { + level: 1 as any, + }, + }), + ); + }, + "Mod-Alt-2": () => { + const blockInfo = getBlockInfoFromSelection(this.editor.state); + if ( + !blockInfo.isBlockContainer || + blockInfo.blockContent.node.type.spec.content !== "inline*" + ) { + return true; + } + + return this.editor.commands.command( + updateBlockCommand(blockInfo.bnBlock.beforePos, { + type: "heading", + props: { + level: 2 as any, + }, + }), + ); + }, + "Mod-Alt-3": () => { + const blockInfo = getBlockInfoFromSelection(this.editor.state); + if ( + !blockInfo.isBlockContainer || + blockInfo.blockContent.node.type.spec.content !== "inline*" + ) { + return true; + } + + return this.editor.commands.command( + updateBlockCommand(blockInfo.bnBlock.beforePos, { + type: "heading", + props: { + level: 3 as any, + }, + }), + ); + }, + }; + }, + parseHTML() { + return [ + // Parse from internal HTML. + { + tag: "div[data-content-type=" + this.name + "]", + contentElement: ".bn-inline-content", + }, + // Parse from external HTML. + { + tag: "h1", + attrs: { level: 1 }, + node: "heading", + }, + { + tag: "h2", + attrs: { level: 2 }, + node: "heading", + }, + { + tag: "h3", + attrs: { level: 3 }, + node: "heading", + }, + ]; + }, + + renderHTML({ node, HTMLAttributes }) { + return createDefaultBlockDOMOutputSpec( + this.name, + `h${node.attrs.level}`, + { + ...(this.options.domAttributes?.blockContent || {}), + ...HTMLAttributes, + }, + this.options.domAttributes?.inlineContent || {}, + ); + }, + + addNodeView() { + return ({ node, HTMLAttributes, getPos }) => { + const renderedElement = createDefaultBlockDOMOutputSpec( + this.name, + `h${node.attrs.level}`, + { + ...(this.options.domAttributes?.blockContent || {}), + ...HTMLAttributes, + }, + this.options.domAttributes?.inlineContent || {}, + ); + + const contentDOM = renderedElement.contentDOM; + const contentDOMParentElement = contentDOM.parentElement!; + + const editor = this.options.editor; + const block = getBlockFromPos(getPos, editor, this.editor, this.name); + + const toggleWrapper = createToggleWrapper(block as any, editor, { + dom: contentDOM, + contentDOM, + }); + contentDOMParentElement.appendChild(toggleWrapper.dom); + + return { + dom: renderedElement.dom, + contentDOM: toggleWrapper.contentDOM, + ignoreMutation: toggleWrapper.ignoreMutation, + destroy: toggleWrapper.destroy, + }; + }; + }, +}); + +export const Heading = createBlockSpecFromStronglyTypedTiptapNode( + HeadingBlockContent, + headingPropSchema, +); From c603d4ce7576c13446fa1619ab83729a30575373 Mon Sep 17 00:00:00 2001 From: Matthew Lipski Date: Wed, 11 Jun 2025 18:15:14 +0200 Subject: [PATCH 15/34] Added toggle list item default block --- examples/01-basic/04-default-blocks/App.tsx | 5 + .../06-togglable-blocks/README.md | 2 +- .../06-togglable-blocks/Toggle.tsx | 10 +- .../ListItemKeyboardShortcuts.ts | 1 + .../ToggleListItemBlockContent.ts | 105 ++++++++++++++++++ .../ToggleWrapper/createToggleWrapper.ts | 16 +-- packages/core/src/blocks/defaultBlocks.ts | 2 + .../getDefaultSlashMenuItems.ts | 13 +++ packages/core/src/i18n/locales/ar.ts | 7 ++ packages/core/src/i18n/locales/de.ts | 13 +++ packages/core/src/i18n/locales/en.ts | 7 ++ packages/core/src/i18n/locales/es.ts | 7 ++ packages/core/src/i18n/locales/fr.ts | 13 +++ packages/core/src/i18n/locales/hr.ts | 7 ++ packages/core/src/i18n/locales/is.ts | 7 ++ packages/core/src/i18n/locales/it.ts | 7 ++ packages/core/src/i18n/locales/ja.ts | 7 ++ packages/core/src/i18n/locales/ko.ts | 7 ++ packages/core/src/i18n/locales/nl.ts | 7 ++ packages/core/src/i18n/locales/no.ts | 7 ++ packages/core/src/i18n/locales/pl.ts | 13 +++ packages/core/src/i18n/locales/pt.ts | 7 ++ packages/core/src/i18n/locales/ru.ts | 12 ++ packages/core/src/i18n/locales/sk.ts | 7 ++ packages/core/src/i18n/locales/uk.ts | 7 ++ packages/core/src/i18n/locales/vi.ts | 7 ++ packages/core/src/i18n/locales/zh-tw.ts | 7 ++ packages/core/src/i18n/locales/zh.ts | 7 ++ .../blocks/ToggleWrapper/ToggleWrapper.tsx | 19 +--- .../getDefaultReactSlashMenuItems.tsx | 2 + .../src/docx/defaultSchema/blocks.ts | 11 ++ .../src/odt/defaultSchema/blocks.tsx | 7 ++ .../src/pdf/defaultSchema/blocks.tsx | 8 ++ .../xl-pdf-exporter/src/pdf/util/listItem.tsx | 13 +++ 34 files changed, 338 insertions(+), 39 deletions(-) create mode 100644 packages/core/src/blocks/ListItemBlockContent/ToggleListItemBlockContent/ToggleListItemBlockContent.ts diff --git a/examples/01-basic/04-default-blocks/App.tsx b/examples/01-basic/04-default-blocks/App.tsx index 992a52d217..63a28ff584 100644 --- a/examples/01-basic/04-default-blocks/App.tsx +++ b/examples/01-basic/04-default-blocks/App.tsx @@ -32,6 +32,11 @@ export default function App() { type: "heading", content: "Heading", }, + { + type: "heading", + props: { isTogglable: true }, + content: "Toggle Heading", + }, { type: "quote", content: "Quote", diff --git a/examples/06-custom-schema/06-togglable-blocks/README.md b/examples/06-custom-schema/06-togglable-blocks/README.md index e8219a0d81..aff02fb6b1 100644 --- a/examples/06-custom-schema/06-togglable-blocks/README.md +++ b/examples/06-custom-schema/06-togglable-blocks/README.md @@ -1,6 +1,6 @@ # Togglable Blocks -This example shows how to create blocks with a toggle button to show/hide their children, like with the default heading and list item blocks. This is done using the use the `ToggleWrapper` component from `@blocknote/react`. +This example shows how to create blocks with a toggle button to show/hide their children, like with the default toggle heading and list item blocks. This is done using the use the `ToggleWrapper` component from `@blocknote/react`. **Relevant Docs:** diff --git a/examples/06-custom-schema/06-togglable-blocks/Toggle.tsx b/examples/06-custom-schema/06-togglable-blocks/Toggle.tsx index 41aae6f3d5..a3028a10f2 100644 --- a/examples/06-custom-schema/06-togglable-blocks/Toggle.tsx +++ b/examples/06-custom-schema/06-togglable-blocks/Toggle.tsx @@ -7,18 +7,14 @@ export const ToggleBlock = createReactBlockSpec( type: "toggle", propSchema: { ...defaultProps, - // We add an `isTogglable` prop which defaults to true. Otherwise, the - // `ToggleWrapper` component will only render its children. - isTogglable: { default: true }, }, content: "inline", }, { render: (props) => ( - // The `ToggleWrapper` component checks if the block has the - // `isTogglable` prop set to true. It then renders a button on the left - // which toggles the visibility of the block's children. It also adds - // a button to add child blocks if there are none. + // The `ToggleWrapper` component renders a button on the left which + // toggles the visibility of the block's children. It also adds a button + // to add child blocks if there are none.

diff --git a/packages/core/src/blocks/ListItemBlockContent/ListItemKeyboardShortcuts.ts b/packages/core/src/blocks/ListItemBlockContent/ListItemKeyboardShortcuts.ts index f901206c10..eb71c2f7ab 100644 --- a/packages/core/src/blocks/ListItemBlockContent/ListItemKeyboardShortcuts.ts +++ b/packages/core/src/blocks/ListItemBlockContent/ListItemKeyboardShortcuts.ts @@ -18,6 +18,7 @@ export const handleEnter = (editor: BlockNoteEditor) => { if ( !( + blockContent.node.type.name === "toggleListItem" || blockContent.node.type.name === "bulletListItem" || blockContent.node.type.name === "numberedListItem" || blockContent.node.type.name === "checkListItem" diff --git a/packages/core/src/blocks/ListItemBlockContent/ToggleListItemBlockContent/ToggleListItemBlockContent.ts b/packages/core/src/blocks/ListItemBlockContent/ToggleListItemBlockContent/ToggleListItemBlockContent.ts new file mode 100644 index 0000000000..54c0befa3a --- /dev/null +++ b/packages/core/src/blocks/ListItemBlockContent/ToggleListItemBlockContent/ToggleListItemBlockContent.ts @@ -0,0 +1,105 @@ +import { updateBlockCommand } from "../../../api/blockManipulation/commands/updateBlock/updateBlock.js"; +import { getBlockInfoFromSelection } from "../../../api/getBlockInfoFromPos.js"; +import { + PropSchema, + createBlockSpecFromStronglyTypedTiptapNode, + createStronglyTypedTiptapNode, + getBlockFromPos, +} from "../../../schema/index.js"; +import { createDefaultBlockDOMOutputSpec } from "../../defaultBlockHelpers.js"; +import { defaultProps } from "../../defaultProps.js"; +import { createToggleWrapper } from "../../ToggleWrapper/createToggleWrapper.js"; +import { handleEnter } from "../ListItemKeyboardShortcuts.js"; + +export const toggleListItemPropSchema = { + ...defaultProps, +} satisfies PropSchema; + +const ToggleListItemBlockContent = createStronglyTypedTiptapNode({ + name: "toggleListItem", + content: "inline*", + group: "blockContent", + priority: 90, + + addKeyboardShortcuts() { + return { + Enter: () => handleEnter(this.options.editor), + "Mod-Shift-6": () => { + const blockInfo = getBlockInfoFromSelection(this.editor.state); + if ( + !blockInfo.isBlockContainer || + blockInfo.blockContent.node.type.spec.content !== "inline*" + ) { + return true; + } + + return this.editor.commands.command( + updateBlockCommand(blockInfo.bnBlock.beforePos, { + type: "toggleListItem", + props: {}, + }), + ); + }, + }; + }, + + parseHTML() { + return [ + // Parse from internal HTML. + { + tag: "div[data-content-type=" + this.name + "]", + contentElement: ".bn-inline-content", + }, + ]; + }, + + renderHTML({ HTMLAttributes }) { + return createDefaultBlockDOMOutputSpec( + this.name, + "p", + { + ...(this.options.domAttributes?.blockContent || {}), + ...HTMLAttributes, + }, + this.options.domAttributes?.inlineContent || {}, + ); + }, + + addNodeView() { + return ({ HTMLAttributes, getPos }) => { + const renderedElement = createDefaultBlockDOMOutputSpec( + this.name, + "p", + { + ...(this.options.domAttributes?.blockContent || {}), + ...HTMLAttributes, + }, + this.options.domAttributes?.inlineContent || {}, + ); + + const contentDOM = renderedElement.contentDOM; + const contentDOMParentElement = contentDOM.parentElement!; + + const editor = this.options.editor; + const block = getBlockFromPos(getPos, editor, this.editor, this.name); + + const toggleWrapper = createToggleWrapper(block as any, editor, { + dom: contentDOM, + contentDOM, + }); + contentDOMParentElement.appendChild(toggleWrapper.dom); + + return { + dom: renderedElement.dom, + contentDOM: toggleWrapper.contentDOM, + ignoreMutation: toggleWrapper.ignoreMutation, + destroy: toggleWrapper.destroy, + }; + }; + }, +}); + +export const ToggleListItem = createBlockSpecFromStronglyTypedTiptapNode( + ToggleListItemBlockContent, + toggleListItemPropSchema, +); diff --git a/packages/core/src/blocks/ToggleWrapper/createToggleWrapper.ts b/packages/core/src/blocks/ToggleWrapper/createToggleWrapper.ts index 2d9016b684..80f15ee443 100644 --- a/packages/core/src/blocks/ToggleWrapper/createToggleWrapper.ts +++ b/packages/core/src/blocks/ToggleWrapper/createToggleWrapper.ts @@ -4,19 +4,7 @@ import { BlockNoteEditor } from "../../editor/BlockNoteEditor.js"; import { BlockFromConfig } from "../../schema/index.js"; export const createToggleWrapper = ( - block: BlockFromConfig< - { - type: any; - readonly propSchema: { - isTogglable: { - default: boolean; - }; - }; - content: any; - }, - any, - any - >, + block: BlockFromConfig, editor: BlockNoteEditor, renderedElement: { dom: HTMLElement; @@ -30,7 +18,7 @@ export const createToggleWrapper = ( ignoreMutation?: (mutation: ViewMutationRecord) => boolean; destroy?: () => void; } => { - if (!block.props.isTogglable) { + if ("isTogglable" in block.props && !block.props.isTogglable) { return renderedElement; } diff --git a/packages/core/src/blocks/defaultBlocks.ts b/packages/core/src/blocks/defaultBlocks.ts index 5e6deeb46c..5c1c74da3e 100644 --- a/packages/core/src/blocks/defaultBlocks.ts +++ b/packages/core/src/blocks/defaultBlocks.ts @@ -25,6 +25,7 @@ import { CodeBlock } from "./CodeBlockContent/CodeBlockContent.js"; import { FileBlock } from "./FileBlockContent/FileBlockContent.js"; import { Heading } from "./HeadingBlockContent/HeadingBlockContent.js"; import { ImageBlock } from "./ImageBlockContent/ImageBlockContent.js"; +import { ToggleListItem } from "./ListItemBlockContent/ToggleListItemBlockContent/ToggleListItemBlockContent.js"; import { BulletListItem } from "./ListItemBlockContent/BulletListItemBlockContent/BulletListItemBlockContent.js"; import { CheckListItem } from "./ListItemBlockContent/CheckListItemBlockContent/CheckListItemBlockContent.js"; import { NumberedListItem } from "./ListItemBlockContent/NumberedListItemBlockContent/NumberedListItemBlockContent.js"; @@ -38,6 +39,7 @@ export const defaultBlockSpecs = { heading: Heading, quote: Quote, codeBlock: CodeBlock, + toggleListItem: ToggleListItem, bulletListItem: BulletListItem, numberedListItem: NumberedListItem, checkListItem: CheckListItem, diff --git a/packages/core/src/extensions/SuggestionMenu/getDefaultSlashMenuItems.ts b/packages/core/src/extensions/SuggestionMenu/getDefaultSlashMenuItems.ts index 04d5c7a665..00bd1ab9c1 100644 --- a/packages/core/src/extensions/SuggestionMenu/getDefaultSlashMenuItems.ts +++ b/packages/core/src/extensions/SuggestionMenu/getDefaultSlashMenuItems.ts @@ -168,6 +168,19 @@ export function getDefaultSlashMenuItems< }); } + if (checkDefaultBlockTypeInSchema("toggleListItem", editor)) { + items.push({ + onItemClick: () => { + insertOrUpdateBlock(editor, { + type: "toggleListItem", + }); + }, + badge: formatKeyboardShortcut("Mod-Shift-6"), + key: "toggle_list", + ...editor.dictionary.slash_menu.toggle_list, + }); + } + if (checkDefaultBlockTypeInSchema("numberedListItem", editor)) { items.push({ onItemClick: () => { diff --git a/packages/core/src/i18n/locales/ar.ts b/packages/core/src/i18n/locales/ar.ts index 2be0aecd0f..fdce933413 100644 --- a/packages/core/src/i18n/locales/ar.ts +++ b/packages/core/src/i18n/locales/ar.ts @@ -70,6 +70,12 @@ export const ar: Dictionary = { ], group: "الكتل الأساسية", }, + toggle_list: { + title: "قائمة قابلة للطي", + subtext: "قائمة بعناصر فرعية قابلة للإخفاء", + aliases: ["عناصر قائمة", "قائمة", "قائمة قابلة للطي", "قائمة منسدلة"], + group: "الكتل الأساسية", + }, paragraph: { title: "فقرة", subtext: "تستخدم لنص الوثيقة الأساسي", @@ -136,6 +142,7 @@ export const ar: Dictionary = { placeholders: { default: "أدخل نصًا أو اكتب '/' للأوامر", heading: "عنوان", + toggleList: "قائمة", bulletListItem: "قائمة", numberedListItem: "قائمة", checkListItem: "قائمة", diff --git a/packages/core/src/i18n/locales/de.ts b/packages/core/src/i18n/locales/de.ts index 6f5b896dea..c97944cd33 100644 --- a/packages/core/src/i18n/locales/de.ts +++ b/packages/core/src/i18n/locales/de.ts @@ -70,6 +70,18 @@ export const de: Dictionary = { ], group: "Grundlegende Blöcke", }, + toggle_list: { + title: "Aufklappbare Liste", + subtext: "Liste mit ausblendbare Unterpunkten", + aliases: [ + "li", + "liste", + "aufklappbareListe", + "aufklappbare liste", + "einklappbare liste", + ], + group: "Grundlegende Blöcke", + }, paragraph: { title: "Absatz", subtext: "Der Hauptteil Ihres Dokuments", @@ -152,6 +164,7 @@ export const de: Dictionary = { placeholders: { default: "Text eingeben oder '/' für Befehle tippen", heading: "Überschrift", + toggleList: "Liste", bulletListItem: "Liste", numberedListItem: "Liste", checkListItem: "Liste", diff --git a/packages/core/src/i18n/locales/en.ts b/packages/core/src/i18n/locales/en.ts index f33bf08e38..a448f00740 100644 --- a/packages/core/src/i18n/locales/en.ts +++ b/packages/core/src/i18n/locales/en.ts @@ -42,6 +42,12 @@ export const en = { aliases: ["quotation", "blockquote", "bq"], group: "Basic blocks", }, + toggle_list: { + title: "Toggle List", + subtext: "List with hidable sub-items", + aliases: ["li", "list", "toggleList", "toggle list", "collapsable list"], + group: "Basic blocks", + }, numbered_list: { title: "Numbered List", subtext: "List with ordered items", @@ -150,6 +156,7 @@ export const en = { placeholders: { default: "Enter text or type '/' for commands", heading: "Heading", + toggleList: "List", bulletListItem: "List", numberedListItem: "List", checkListItem: "List", diff --git a/packages/core/src/i18n/locales/es.ts b/packages/core/src/i18n/locales/es.ts index 4bd62b2c51..d1ed7af421 100644 --- a/packages/core/src/i18n/locales/es.ts +++ b/packages/core/src/i18n/locales/es.ts @@ -69,6 +69,12 @@ export const es: Dictionary = { ], group: "Bloques básicos", }, + toggle_list: { + title: "Lista Desplegable", + subtext: "Lista con subelementos ocultables", + aliases: ["li", "lista", "lista desplegable", "lista colapsable"], + group: "Bloques básicos", + }, paragraph: { title: "Párrafo", subtext: "El cuerpo de tu documento", @@ -151,6 +157,7 @@ export const es: Dictionary = { placeholders: { default: "Escribe o teclea '/' para comandos", heading: "Encabezado", + toggleList: "Lista", bulletListItem: "Lista", numberedListItem: "Lista", checkListItem: "Lista", diff --git a/packages/core/src/i18n/locales/fr.ts b/packages/core/src/i18n/locales/fr.ts index a220225ac7..9686f7faaa 100644 --- a/packages/core/src/i18n/locales/fr.ts +++ b/packages/core/src/i18n/locales/fr.ts @@ -85,6 +85,18 @@ export const fr: Dictionary = { ], group: "Blocs de base", }, + toggle_list: { + title: "Liste déroulante", + subtext: "Liste avec des sous-éléments masquables", + aliases: [ + "li", + "liste", + "liste déroulante", + "liste pliable", + "liste escamotable", + ], + group: "Blocs de base", + }, paragraph: { title: "Paragraphe", subtext: "Utilisé pour le corps de votre document", @@ -177,6 +189,7 @@ export const fr: Dictionary = { default: "Entrez du texte ou tapez '/' pour faire apparaître les options de mise en page", heading: "Titre", + toggleList: "Liste", bulletListItem: "Liste", numberedListItem: "Liste", checkListItem: "Liste", diff --git a/packages/core/src/i18n/locales/hr.ts b/packages/core/src/i18n/locales/hr.ts index 933e0b47fc..1ba0552a5d 100644 --- a/packages/core/src/i18n/locales/hr.ts +++ b/packages/core/src/i18n/locales/hr.ts @@ -82,6 +82,12 @@ export const hr: Dictionary = { ], group: "Osnovni blokovi", }, + toggle_list: { + title: "Proširivi popis", + subtext: "Popis sa skrivenim podstavkama", + aliases: ["stavkaPopisa", "popis", "proširivi popis", "sklopivi popis"], + group: "Osnovni blokovi", + }, paragraph: { title: "Normalan tekst", subtext: "Tekst paragrafa", @@ -164,6 +170,7 @@ export const hr: Dictionary = { placeholders: { default: "Unesi tekst ili upiši ‘/’ za naredbe", heading: "Naslov", + toggleList: "Lista", bulletListItem: "Lista", numberedListItem: "Lista", checkListItem: "Lista", diff --git a/packages/core/src/i18n/locales/is.ts b/packages/core/src/i18n/locales/is.ts index ca89b0bd73..56e8b19016 100644 --- a/packages/core/src/i18n/locales/is.ts +++ b/packages/core/src/i18n/locales/is.ts @@ -62,6 +62,12 @@ export const is: Dictionary = { aliases: ["ul", "li", "listi", "athugunarlisti", "merktur listi"], group: "Grunnblokkar", }, + toggle_list: { + title: "Fellanlegur listi", + subtext: "Listi með földum undirliðum", + aliases: ["li", "listi", "fellanlegur listi", "samfellanlegur listi"], + group: "Grunnblokkar", + }, paragraph: { title: "Málsgrein", subtext: "Notað fyrir meginmál skjalsins", @@ -144,6 +150,7 @@ export const is: Dictionary = { placeholders: { default: "Sláðu inn texta eða skrifaðu '/' fyrir skipanir", heading: "Fyrirsögn", + toggleList: "Listi", bulletListItem: "Listi", numberedListItem: "Listi", checkListItem: "Listi", diff --git a/packages/core/src/i18n/locales/it.ts b/packages/core/src/i18n/locales/it.ts index 90875881ed..41ca89a342 100644 --- a/packages/core/src/i18n/locales/it.ts +++ b/packages/core/src/i18n/locales/it.ts @@ -70,6 +70,12 @@ export const it: Dictionary = { ], group: "Blocchi Base", }, + toggle_list: { + title: "Elenco Espandibile", + subtext: "Elenco con elementi nascondibili", + aliases: ["li", "elenco", "elenco espandibile", "elenco collassabile"], + group: "Blocchi Base", + }, paragraph: { title: "Paragrafo", subtext: "Il corpo del tuo documento", @@ -152,6 +158,7 @@ export const it: Dictionary = { placeholders: { default: "Inserisci testo o digita '/' per i comandi", heading: "Intestazione", + toggleList: "Elenco", bulletListItem: "Elenco", numberedListItem: "Elenco", checkListItem: "Elenco", diff --git a/packages/core/src/i18n/locales/ja.ts b/packages/core/src/i18n/locales/ja.ts index 8251861ff8..15df35c80f 100644 --- a/packages/core/src/i18n/locales/ja.ts +++ b/packages/core/src/i18n/locales/ja.ts @@ -86,6 +86,12 @@ export const ja: Dictionary = { ], group: "基本ブロック", }, + toggle_list: { + title: "折りたたみリスト", + subtext: "サブ項目を非表示にできるリスト", + aliases: ["li", "リスト", "折りたたみリスト", "トグルリスト"], + group: "基本ブロック", + }, paragraph: { title: "標準テキスト", subtext: "本文に使用", @@ -171,6 +177,7 @@ export const ja: Dictionary = { placeholders: { default: "テキストを入力するか'/' を入力してコマンド選択", heading: "見出し", + toggleList: "リストを追加", bulletListItem: "リストを追加", numberedListItem: "リストを追加", checkListItem: "リストを追加", diff --git a/packages/core/src/i18n/locales/ko.ts b/packages/core/src/i18n/locales/ko.ts index a6a903c345..3c01f24ee1 100644 --- a/packages/core/src/i18n/locales/ko.ts +++ b/packages/core/src/i18n/locales/ko.ts @@ -70,6 +70,12 @@ export const ko: Dictionary = { ], group: "기본 블록", }, + toggle_list: { + title: "접을 수 있는 목록", + subtext: "숨길 수 있는 하위 항목이 있는 목록", + aliases: ["li", "목록", "접을 수 있는 목록", "토글 목록"], + group: "기본 블록", + }, paragraph: { title: "본문", subtext: "일반 텍스트", @@ -164,6 +170,7 @@ export const ko: Dictionary = { placeholders: { default: "텍스트를 입력하거나 /를 입력하여 명령을 입력하세요.", heading: "제목", + toggleList: "목록", bulletListItem: "목록", numberedListItem: "목록", checkListItem: "목록", diff --git a/packages/core/src/i18n/locales/nl.ts b/packages/core/src/i18n/locales/nl.ts index c6b7fc0ec3..0889ce552e 100644 --- a/packages/core/src/i18n/locales/nl.ts +++ b/packages/core/src/i18n/locales/nl.ts @@ -62,6 +62,12 @@ export const nl: Dictionary = { aliases: ["ul", "li", "lijst", "aangevinkte lijst", "selectievakje"], group: "Basisblokken", }, + toggle_list: { + title: "Inklapbare Lijst", + subtext: "Lijst met verbergbare sub-items", + aliases: ["li", "lijst", "inklapbare lijst", "uitklapbare lijst"], + group: "Basisblokken", + }, paragraph: { title: "Paragraaf", subtext: "Gebruikt voor de hoofdtekst van uw document", @@ -151,6 +157,7 @@ export const nl: Dictionary = { placeholders: { default: "Voer tekst in of type '/' voor commando's", heading: "Kop", + toggleList: "Lijst", bulletListItem: "Lijst", numberedListItem: "Lijst", checkListItem: "Lijst", diff --git a/packages/core/src/i18n/locales/no.ts b/packages/core/src/i18n/locales/no.ts index 8b53081c48..2346b5bc2d 100644 --- a/packages/core/src/i18n/locales/no.ts +++ b/packages/core/src/i18n/locales/no.ts @@ -70,6 +70,12 @@ export const no: Dictionary = { ], group: "Grunnleggende blokker", }, + toggle_list: { + title: "Sammenleggbar liste", + subtext: "Liste med skjulbare underpunkter", + aliases: ["li", "liste", "sammenleggbar liste", "skjulbar liste"], + group: "Grunnleggende blokker", + }, paragraph: { title: "Avsnitt", subtext: "Hoveddelen av dokumentet ditt", @@ -152,6 +158,7 @@ export const no: Dictionary = { placeholders: { default: "Skriv tekst eller skriv '/' for å vise kommandoer", heading: "Overskrift", + toggleList: "Liste", bulletListItem: "Liste", numberedListItem: "Liste", checkListItem: "Liste", diff --git a/packages/core/src/i18n/locales/pl.ts b/packages/core/src/i18n/locales/pl.ts index d1a0355baa..2faf99303c 100644 --- a/packages/core/src/i18n/locales/pl.ts +++ b/packages/core/src/i18n/locales/pl.ts @@ -62,6 +62,18 @@ export const pl: Dictionary = { aliases: ["ul", "li", "lista", "lista z polami wyboru", "pole wyboru"], group: "Podstawowe bloki", }, + toggle_list: { + title: "Lista rozwijana", + subtext: "Lista z elementami, które można ukryć", + aliases: [ + "li", + "lista", + "lista rozwijana", + "lista rozwijalna", + "lista składana", + ], + group: "Podstawowe bloki", + }, paragraph: { title: "Akapit", subtext: "Używany dla treści dokumentu", @@ -136,6 +148,7 @@ export const pl: Dictionary = { placeholders: { default: "Wprowadź tekst lub wpisz '/' aby użyć poleceń", heading: "Nagłówek", + toggleList: "Lista", bulletListItem: "Lista", numberedListItem: "Lista", checkListItem: "Lista", diff --git a/packages/core/src/i18n/locales/pt.ts b/packages/core/src/i18n/locales/pt.ts index 724abbc6e9..d1c124e41b 100644 --- a/packages/core/src/i18n/locales/pt.ts +++ b/packages/core/src/i18n/locales/pt.ts @@ -69,6 +69,12 @@ export const pt: Dictionary = { ], group: "Blocos básicos", }, + toggle_list: { + title: "Lista expansível", + subtext: "Lista com subitens ocultáveis", + aliases: ["li", "lista", "lista expansível", "lista recolhível"], + group: "Blocos básicos", + }, paragraph: { title: "Parágrafo", subtext: "Usado para o corpo do seu documento", @@ -143,6 +149,7 @@ export const pt: Dictionary = { placeholders: { default: "Digite texto ou use '/' para comandos", heading: "Título", + toggleList: "Lista", bulletListItem: "Lista", numberedListItem: "Lista", checkListItem: "Lista", diff --git a/packages/core/src/i18n/locales/ru.ts b/packages/core/src/i18n/locales/ru.ts index b31b5bfdfe..1f583e2037 100644 --- a/packages/core/src/i18n/locales/ru.ts +++ b/packages/core/src/i18n/locales/ru.ts @@ -101,6 +101,17 @@ export const ru: Dictionary = { ], group: "Базовые блоки", }, + toggle_list: { + title: "Разворачиваемый список", + subtext: "Список со скрываемыми элементами", + aliases: [ + "li", + "список", + "разворачиваемый список", + "сворачиваемый список", + ], + group: "Базовые блоки", + }, paragraph: { title: "Параграф", subtext: "Основной текст", @@ -192,6 +203,7 @@ export const ru: Dictionary = { placeholders: { default: "Введите текст или введите «/» для команд", heading: "Заголовок", + toggleList: "Список", bulletListItem: "Список", numberedListItem: "Список", checkListItem: "Список", diff --git a/packages/core/src/i18n/locales/sk.ts b/packages/core/src/i18n/locales/sk.ts index 785c4a33a9..0d81690e91 100644 --- a/packages/core/src/i18n/locales/sk.ts +++ b/packages/core/src/i18n/locales/sk.ts @@ -68,6 +68,12 @@ export const sk = { ], group: "Základné bloky", }, + toggle_list: { + title: "Rozbaľovací zoznam", + subtext: "Zoznam so skrývateľnými položkami", + aliases: ["li", "zoznam", "rozbaľovací zoznam", "zabaliteľný zoznam"], + group: "Základné bloky", + }, paragraph: { title: "Odstavec", subtext: "Telo dokumentu", @@ -150,6 +156,7 @@ export const sk = { placeholders: { default: "Zadajte text alebo napíšte '/' pre príkazy", heading: "Nadpis", + toggleList: "Zoznam", bulletListItem: "Zoznam", numberedListItem: "Zoznam", checkListItem: "Zoznam", diff --git a/packages/core/src/i18n/locales/uk.ts b/packages/core/src/i18n/locales/uk.ts index e65b386be8..fde33573c3 100644 --- a/packages/core/src/i18n/locales/uk.ts +++ b/packages/core/src/i18n/locales/uk.ts @@ -88,6 +88,12 @@ export const uk: Dictionary = { ], group: "Базові блоки", }, + toggle_list: { + title: "Розгортаємий список", + subtext: "Список із прихованими підпунктами", + aliases: ["li", "список", "розгортаємий список", "складений список"], + group: "Базові блоки", + }, paragraph: { title: "Параграф", subtext: "Основний текст документа", @@ -176,6 +182,7 @@ export const uk: Dictionary = { placeholders: { default: "Введіть текст або наберіть '/' для команд", heading: "Заголовок", + toggleList: "Список", bulletListItem: "Список", numberedListItem: "Список", checkListItem: "Список", diff --git a/packages/core/src/i18n/locales/vi.ts b/packages/core/src/i18n/locales/vi.ts index a66423cc87..f14f9a6054 100644 --- a/packages/core/src/i18n/locales/vi.ts +++ b/packages/core/src/i18n/locales/vi.ts @@ -69,6 +69,12 @@ export const vi: Dictionary = { ], group: "Khối cơ bản", }, + toggle_list: { + title: "Danh sách có thể thu gọn", + subtext: "Danh sách với các mục con có thể ẩn", + aliases: ["li", "danh sach", "danh sach thu gon", "danh sach co the an"], + group: "Khối cơ bản", + }, paragraph: { title: "Đoạn văn", subtext: "Sử dụng cho nội dung chính của tài liệu", @@ -150,6 +156,7 @@ export const vi: Dictionary = { placeholders: { default: "Nhập văn bản hoặc gõ '/' để thêm định dạng", heading: "Tiêu đề", + toggleList: "Danh sách", bulletListItem: "Danh sách", numberedListItem: "Danh sách", checkListItem: "Danh sách", diff --git a/packages/core/src/i18n/locales/zh-tw.ts b/packages/core/src/i18n/locales/zh-tw.ts index 3b84493c9f..cf26bc3021 100644 --- a/packages/core/src/i18n/locales/zh-tw.ts +++ b/packages/core/src/i18n/locales/zh-tw.ts @@ -95,6 +95,12 @@ export const zhTW: Dictionary = { ], group: "基礎", }, + toggle_list: { + title: "可摺疊列表", + subtext: "帶有可隱藏子項的列表", + aliases: ["li", "列表", "可摺疊列表", "摺疊列表"], + group: "基礎", + }, paragraph: { title: "段落", subtext: "用於文件正文", @@ -192,6 +198,7 @@ export const zhTW: Dictionary = { placeholders: { default: "輸入 '/' 以使用指令", heading: "標題", + toggleList: "列表", bulletListItem: "列表", numberedListItem: "列表", checkListItem: "列表", diff --git a/packages/core/src/i18n/locales/zh.ts b/packages/core/src/i18n/locales/zh.ts index dc47d7ecb4..eef45fb06e 100644 --- a/packages/core/src/i18n/locales/zh.ts +++ b/packages/core/src/i18n/locales/zh.ts @@ -95,6 +95,12 @@ export const zh: Dictionary = { ], group: "基础", }, + toggle_list: { + title: "可折叠列表", + subtext: "带有可隐藏子项的列表", + aliases: ["li", "列表", "可折叠列表", "折叠列表"], + group: "基础", + }, paragraph: { title: "段落", subtext: "用于文档正文", @@ -192,6 +198,7 @@ export const zh: Dictionary = { placeholders: { default: "输入 '/' 以使用命令", heading: "标题", + toggleList: "列表", bulletListItem: "列表", numberedListItem: "列表", checkListItem: "列表", diff --git a/packages/react/src/blocks/ToggleWrapper/ToggleWrapper.tsx b/packages/react/src/blocks/ToggleWrapper/ToggleWrapper.tsx index 82e26ed367..6f8758b322 100644 --- a/packages/react/src/blocks/ToggleWrapper/ToggleWrapper.tsx +++ b/packages/react/src/blocks/ToggleWrapper/ToggleWrapper.tsx @@ -4,22 +4,7 @@ import { ReactCustomBlockRenderProps } from "../../schema/ReactBlockSpec.js"; import { useEditorChange } from "../../hooks/useEditorChange.js"; export const ToggleWrapper = ( - props: Omit< - ReactCustomBlockRenderProps< - { - type: any; - readonly propSchema: { - isTogglable: { - default: boolean; - }; - }; - content: any; - }, - any, - any - >, - "contentRef" - > & { + props: Omit, "contentRef"> & { children: ReactNode; }, ) => { @@ -38,7 +23,7 @@ export const ToggleWrapper = ( } }); - if (!block.props.isTogglable) { + if ("isTogglable" in block.props && !block.props.isTogglable) { return children; } diff --git a/packages/react/src/components/SuggestionMenu/getDefaultReactSlashMenuItems.tsx b/packages/react/src/components/SuggestionMenu/getDefaultReactSlashMenuItems.tsx index 6e3ba68766..2392286276 100644 --- a/packages/react/src/components/SuggestionMenu/getDefaultReactSlashMenuItems.tsx +++ b/packages/react/src/components/SuggestionMenu/getDefaultReactSlashMenuItems.tsx @@ -16,6 +16,7 @@ import { RiListCheck3, RiListOrdered, RiListUnordered, + RiPlayList2Fill, RiTable2, RiText, RiVolumeUpFill, @@ -32,6 +33,7 @@ const icons = { toggle_heading_2: RiH2, toggle_heading_3: RiH3, quote: RiQuoteText, + toggle_list: RiPlayList2Fill, numbered_list: RiListOrdered, bullet_list: RiListUnordered, check_list: RiListCheck3, diff --git a/packages/xl-docx-exporter/src/docx/defaultSchema/blocks.ts b/packages/xl-docx-exporter/src/docx/defaultSchema/blocks.ts index ed28643e0e..7d5cce4c1c 100644 --- a/packages/xl-docx-exporter/src/docx/defaultSchema/blocks.ts +++ b/packages/xl-docx-exporter/src/docx/defaultSchema/blocks.ts @@ -77,6 +77,17 @@ export const docxBlockMappingForDefaultSchema: BlockMapping< }, }); }, + toggleListItem: (block, exporter) => { + return new Paragraph({ + ...blockPropsToStyles(block.props, exporter.options.colors), + children: [ + new TextRun({ + children: ["> "], + }), + ...exporter.transformInlineContent(block.content), + ], + }); + }, numberedListItem: (block, exporter, nestingLevel) => { return new Paragraph({ ...blockPropsToStyles(block.props, exporter.options.colors), diff --git a/packages/xl-odt-exporter/src/odt/defaultSchema/blocks.tsx b/packages/xl-odt-exporter/src/odt/defaultSchema/blocks.tsx index 0e31bb4787..fab2516523 100644 --- a/packages/xl-odt-exporter/src/odt/defaultSchema/blocks.tsx +++ b/packages/xl-odt-exporter/src/odt/defaultSchema/blocks.tsx @@ -241,6 +241,13 @@ export const odtBlockMappingForDefaultSchema: BlockMapping< * * (LibreOffice does nicely wrap the list items in the same list element) */ + toggleListItem: (block, exporter) => ( + + {"> "} + {exporter.transformInlineContent(block.content)} + + ), + bulletListItem: (block, exporter, nestingLevel) => { const styleName = createParagraphStyle( exporter as ODTExporter, diff --git a/packages/xl-pdf-exporter/src/pdf/defaultSchema/blocks.tsx b/packages/xl-pdf-exporter/src/pdf/defaultSchema/blocks.tsx index 31e4c23323..1bc9d70826 100644 --- a/packages/xl-pdf-exporter/src/pdf/defaultSchema/blocks.tsx +++ b/packages/xl-pdf-exporter/src/pdf/defaultSchema/blocks.tsx @@ -10,6 +10,7 @@ import { BULLET_MARKER, CHECK_MARKER_CHECKED, CHECK_MARKER_UNCHECKED, + CHEVRON_MARKER, ListItem, } from "../util/listItem.js"; import { Table } from "../util/table/Table.js"; @@ -28,6 +29,13 @@ export const pdfBlockMappingForDefaultSchema: BlockMapping< // const style = blocknoteDefaultPropsToReactPDFStyle(block.props); return {exporter.transformInlineContent(block.content)}; }, + toggleListItem: (block, exporter) => { + return ( + + {exporter.transformInlineContent(block.content)} + + ); + }, bulletListItem: (block, exporter) => { // const style = t(block.props); return ( diff --git a/packages/xl-pdf-exporter/src/pdf/util/listItem.tsx b/packages/xl-pdf-exporter/src/pdf/util/listItem.tsx index 7def29ce58..5809be29d5 100644 --- a/packages/xl-pdf-exporter/src/pdf/util/listItem.tsx +++ b/packages/xl-pdf-exporter/src/pdf/util/listItem.tsx @@ -19,6 +19,19 @@ const styles = StyleSheet.create({ export const BULLET_MARKER = "\u2022"; +// https://fonts.google.com/icons?selected=Material+Symbols+Rounded:chevron_right:FILL@0;wght@700;GRAD@0;opsz@24&icon.query=chevron&icon.style=Rounded&icon.size=24&icon.color=%23e8eaed +export const CHEVRON_MARKER = ( + + + +); + // https://fonts.google.com/icons?selected=Material+Symbols+Outlined:check_box_outline_blank:FILL@0;wght@400;GRAD@0;opsz@24&icon.size=24&icon.color=undefined export const CHECK_MARKER_UNCHECKED = ( Date: Wed, 11 Jun 2025 18:23:21 +0200 Subject: [PATCH 16/34] Updated lock file --- pnpm-lock.yaml | 48 +++++++++++++++++++++++++++++++++++++++++------- 1 file changed, 41 insertions(+), 7 deletions(-) diff --git a/pnpm-lock.yaml b/pnpm-lock.yaml index 4852cc9bf9..b41dd3bca1 100644 --- a/pnpm-lock.yaml +++ b/pnpm-lock.yaml @@ -2342,10 +2342,10 @@ importers: version: 18.3.5(@types/react@18.3.20) '@vitejs/plugin-react': specifier: ^4.3.1 - version: 4.3.4(vite@5.4.15(@types/node@22.14.1)(terser@5.39.0)) + version: 4.4.1(vite@5.4.15(@types/node@22.14.1)(lightningcss@1.30.1)(terser@5.39.2)) vite: specifier: ^5.3.4 - version: 5.4.15(@types/node@22.14.1)(terser@5.39.0) + version: 5.4.15(@types/node@22.14.1)(lightningcss@1.30.1)(terser@5.39.2) examples/06-custom-schema/react-custom-blocks: dependencies: @@ -4398,7 +4398,7 @@ importers: version: link:../packages/shadcn '@playwright/experimental-ct-react': specifier: 1.51.1 - version: 1.51.1(@types/node@20.17.28)(lightningcss@1.30.1)(terser@5.39.2)(vite@5.4.15(@types/node@20.17.28)(lightningcss@1.30.1)(terser@5.39.2)) + version: 1.51.1(@types/node@20.17.28)(jiti@2.4.2)(lightningcss@1.30.1)(terser@5.39.2)(tsx@4.19.3)(vite@5.4.15(@types/node@20.17.28)(lightningcss@1.30.1)(terser@5.39.2))(yaml@2.7.0) '@playwright/test': specifier: 1.51.1 version: 1.51.1 @@ -17986,13 +17986,14 @@ snapshots: '@pkgjs/parseargs@0.11.0': optional: true - '@playwright/experimental-ct-core@1.51.1(@types/node@20.17.28)(lightningcss@1.30.1)(terser@5.39.2)': + '@playwright/experimental-ct-core@1.51.1(@types/node@20.17.28)(jiti@2.4.2)(lightningcss@1.30.1)(terser@5.39.2)(tsx@4.19.3)(yaml@2.7.0)': dependencies: playwright: 1.51.1 playwright-core: 1.51.1 - vite: 5.4.15(@types/node@20.17.28)(lightningcss@1.30.1)(terser@5.39.2) + vite: 6.3.5(@types/node@20.17.28)(jiti@2.4.2)(lightningcss@1.30.1)(terser@5.39.2)(tsx@4.19.3)(yaml@2.7.0) transitivePeerDependencies: - '@types/node' + - jiti - less - lightningcss - sass @@ -18000,13 +18001,16 @@ snapshots: - stylus - sugarss - terser + - tsx + - yaml - '@playwright/experimental-ct-react@1.51.1(@types/node@20.17.28)(lightningcss@1.30.1)(terser@5.39.2)(vite@5.4.15(@types/node@20.17.28)(lightningcss@1.30.1)(terser@5.39.2))': + '@playwright/experimental-ct-react@1.51.1(@types/node@20.17.28)(jiti@2.4.2)(lightningcss@1.30.1)(terser@5.39.2)(tsx@4.19.3)(vite@5.4.15(@types/node@20.17.28)(lightningcss@1.30.1)(terser@5.39.2))(yaml@2.7.0)': dependencies: - '@playwright/experimental-ct-core': 1.51.1(@types/node@20.17.28)(lightningcss@1.30.1)(terser@5.39.2) + '@playwright/experimental-ct-core': 1.51.1(@types/node@20.17.28)(jiti@2.4.2)(lightningcss@1.30.1)(terser@5.39.2)(tsx@4.19.3)(yaml@2.7.0) '@vitejs/plugin-react': 4.4.1(vite@5.4.15(@types/node@20.17.28)(lightningcss@1.30.1)(terser@5.39.2)) transitivePeerDependencies: - '@types/node' + - jiti - less - lightningcss - sass @@ -18015,7 +18019,9 @@ snapshots: - sugarss - supports-color - terser + - tsx - vite + - yaml '@playwright/test@1.51.1': dependencies: @@ -20096,6 +20102,17 @@ snapshots: transitivePeerDependencies: - supports-color + '@vitejs/plugin-react@4.4.1(vite@5.4.15(@types/node@22.14.1)(lightningcss@1.30.1)(terser@5.39.2))': + dependencies: + '@babel/core': 7.26.10 + '@babel/plugin-transform-react-jsx-self': 7.25.9(@babel/core@7.26.10) + '@babel/plugin-transform-react-jsx-source': 7.25.9(@babel/core@7.26.10) + '@types/babel__core': 7.20.5 + react-refresh: 0.17.0 + vite: 5.4.15(@types/node@22.14.1)(lightningcss@1.30.1)(terser@5.39.2) + transitivePeerDependencies: + - supports-color + '@vitejs/plugin-react@4.4.1(vite@6.3.5(@types/node@22.14.1)(jiti@2.4.2)(lightningcss@1.30.1)(terser@5.39.2)(tsx@4.19.3)(yaml@2.7.0))': dependencies: '@babel/core': 7.26.10 @@ -27053,6 +27070,23 @@ snapshots: lightningcss: 1.30.1 terser: 5.39.2 + vite@6.3.5(@types/node@20.17.28)(jiti@2.4.2)(lightningcss@1.30.1)(terser@5.39.2)(tsx@4.19.3)(yaml@2.7.0): + dependencies: + esbuild: 0.25.1 + fdir: 6.4.4(picomatch@4.0.2) + picomatch: 4.0.2 + postcss: 8.5.3 + rollup: 4.37.0 + tinyglobby: 0.2.13 + optionalDependencies: + '@types/node': 20.17.28 + fsevents: 2.3.3 + jiti: 2.4.2 + lightningcss: 1.30.1 + terser: 5.39.2 + tsx: 4.19.3 + yaml: 2.7.0 + vite@6.3.5(@types/node@22.14.1)(jiti@2.4.2)(lightningcss@1.30.1)(terser@5.39.2)(tsx@4.19.3)(yaml@2.7.0): dependencies: esbuild: 0.25.1 From 9b27b94af34dda7c774ccfd6fd2e18e8742e2287 Mon Sep 17 00:00:00 2001 From: Matthew Lipski Date: Wed, 11 Jun 2025 18:26:24 +0200 Subject: [PATCH 17/34] Updated unit tests --- .../__snapshots__/insertBlocks.test.ts.snap | 18 + .../__snapshots__/mergeBlocks.test.ts.snap | 10 + .../__snapshots__/moveBlocks.test.ts.snap | 40 ++ .../__snapshots__/replaceBlocks.test.ts.snap | 23 + .../__snapshots__/splitBlock.test.ts.snap | 13 + .../__snapshots__/updateBlock.test.ts.snap | 50 ++ .../core/src/editor/BlockNoteEditor.test.ts | 1 + .../ServerBlockNoteEditor.test.ts.snap | 2 + .../schemaToJSONSchema.test.ts.snap | 5 + .../__snapshots__/agent.test.ts.snap | 35 +- .../__snapshots__/changeset.test.ts.snap | 2 + .../__snapshots__/nodes/complex/misc.json | 1 + .../__snapshots__/html/basicBlockTypes.json | 3 + .../__snapshots__/html/deepNestedContent.json | 3 + .../parse/__snapshots__/html/googleDocs.json | 3 + .../parse/__snapshots__/html/notion.json | 3 + .../html/paragraphHeadingListItem.json | 1 + .../parse/__snapshots__/markdown/basic.json | 1 + .../parse/__snapshots__/markdown/complex.json | 3 + .../__snapshots__/markdown/issue226case1.json | 1 + .../parse/__snapshots__/markdown/nested.json | 1 + .../__snapshots__/end/basic.txt | 544 +++++++++--------- .../__snapshots__/start/basic.txt | 364 ++++++------ 23 files changed, 661 insertions(+), 466 deletions(-) diff --git a/packages/core/src/api/blockManipulation/commands/insertBlocks/__snapshots__/insertBlocks.test.ts.snap b/packages/core/src/api/blockManipulation/commands/insertBlocks/__snapshots__/insertBlocks.test.ts.snap index 3a53ef0fc2..6681f1c203 100644 --- a/packages/core/src/api/blockManipulation/commands/insertBlocks/__snapshots__/insertBlocks.test.ts.snap +++ b/packages/core/src/api/blockManipulation/commands/insertBlocks/__snapshots__/insertBlocks.test.ts.snap @@ -307,6 +307,7 @@ exports[`Test insertBlocks > Insert multiple blocks after 2`] = ` "id": "heading-0", "props": { "backgroundColor": "default", + "isTogglable": false, "level": 1, "textAlignment": "left", "textColor": "default", @@ -653,6 +654,7 @@ exports[`Test insertBlocks > Insert multiple blocks after 2`] = ` "id": "heading-with-everything", "props": { "backgroundColor": "red", + "isTogglable": false, "level": 2, "textAlignment": "center", "textColor": "red", @@ -980,6 +982,7 @@ exports[`Test insertBlocks > Insert multiple blocks before 2`] = ` "id": "heading-0", "props": { "backgroundColor": "default", + "isTogglable": false, "level": 1, "textAlignment": "left", "textColor": "default", @@ -1326,6 +1329,7 @@ exports[`Test insertBlocks > Insert multiple blocks before 2`] = ` "id": "heading-with-everything", "props": { "backgroundColor": "red", + "isTogglable": false, "level": 2, "textAlignment": "center", "textColor": "red", @@ -1573,6 +1577,7 @@ exports[`Test insertBlocks > Insert single basic block after 2`] = ` "id": "heading-0", "props": { "backgroundColor": "default", + "isTogglable": false, "level": 1, "textAlignment": "left", "textColor": "default", @@ -1919,6 +1924,7 @@ exports[`Test insertBlocks > Insert single basic block after 2`] = ` "id": "heading-with-everything", "props": { "backgroundColor": "red", + "isTogglable": false, "level": 2, "textAlignment": "center", "textColor": "red", @@ -2178,6 +2184,7 @@ exports[`Test insertBlocks > Insert single basic block before (without type) 2`] "id": "heading-0", "props": { "backgroundColor": "default", + "isTogglable": false, "level": 1, "textAlignment": "left", "textColor": "default", @@ -2524,6 +2531,7 @@ exports[`Test insertBlocks > Insert single basic block before (without type) 2`] "id": "heading-with-everything", "props": { "backgroundColor": "red", + "isTogglable": false, "level": 2, "textAlignment": "center", "textColor": "red", @@ -2771,6 +2779,7 @@ exports[`Test insertBlocks > Insert single basic block before 2`] = ` "id": "heading-0", "props": { "backgroundColor": "default", + "isTogglable": false, "level": 1, "textAlignment": "left", "textColor": "default", @@ -3117,6 +3126,7 @@ exports[`Test insertBlocks > Insert single basic block before 2`] = ` "id": "heading-with-everything", "props": { "backgroundColor": "red", + "isTogglable": false, "level": 2, "textAlignment": "center", "textColor": "red", @@ -3201,6 +3211,7 @@ exports[`Test insertBlocks > Insert single complex block after 1`] = ` "id": "inserted-heading-with-everything", "props": { "backgroundColor": "red", + "isTogglable": false, "level": 2, "textAlignment": "center", "textColor": "red", @@ -3291,6 +3302,7 @@ exports[`Test insertBlocks > Insert single complex block after 2`] = ` "id": "inserted-heading-with-everything", "props": { "backgroundColor": "red", + "isTogglable": false, "level": 2, "textAlignment": "center", "textColor": "red", @@ -3478,6 +3490,7 @@ exports[`Test insertBlocks > Insert single complex block after 2`] = ` "id": "heading-0", "props": { "backgroundColor": "default", + "isTogglable": false, "level": 1, "textAlignment": "left", "textColor": "default", @@ -3824,6 +3837,7 @@ exports[`Test insertBlocks > Insert single complex block after 2`] = ` "id": "heading-with-everything", "props": { "backgroundColor": "red", + "isTogglable": false, "level": 2, "textAlignment": "center", "textColor": "red", @@ -3908,6 +3922,7 @@ exports[`Test insertBlocks > Insert single complex block before 1`] = ` "id": "inserted-heading-with-everything", "props": { "backgroundColor": "red", + "isTogglable": false, "level": 2, "textAlignment": "center", "textColor": "red", @@ -3981,6 +3996,7 @@ exports[`Test insertBlocks > Insert single complex block before 2`] = ` "id": "inserted-heading-with-everything", "props": { "backgroundColor": "red", + "isTogglable": false, "level": 2, "textAlignment": "center", "textColor": "red", @@ -4185,6 +4201,7 @@ exports[`Test insertBlocks > Insert single complex block before 2`] = ` "id": "heading-0", "props": { "backgroundColor": "default", + "isTogglable": false, "level": 1, "textAlignment": "left", "textColor": "default", @@ -4531,6 +4548,7 @@ exports[`Test insertBlocks > Insert single complex block before 2`] = ` "id": "heading-with-everything", "props": { "backgroundColor": "red", + "isTogglable": false, "level": 2, "textAlignment": "center", "textColor": "red", diff --git a/packages/core/src/api/blockManipulation/commands/mergeBlocks/__snapshots__/mergeBlocks.test.ts.snap b/packages/core/src/api/blockManipulation/commands/mergeBlocks/__snapshots__/mergeBlocks.test.ts.snap index 1c8df9a1c2..175059d7d1 100644 --- a/packages/core/src/api/blockManipulation/commands/mergeBlocks/__snapshots__/mergeBlocks.test.ts.snap +++ b/packages/core/src/api/blockManipulation/commands/mergeBlocks/__snapshots__/mergeBlocks.test.ts.snap @@ -183,6 +183,7 @@ exports[`Test mergeBlocks > Basic 1`] = ` "id": "heading-0", "props": { "backgroundColor": "default", + "isTogglable": false, "level": 1, "textAlignment": "left", "textColor": "default", @@ -529,6 +530,7 @@ exports[`Test mergeBlocks > Basic 1`] = ` "id": "heading-with-everything", "props": { "backgroundColor": "red", + "isTogglable": false, "level": 2, "textAlignment": "center", "textColor": "red", @@ -749,6 +751,7 @@ exports[`Test mergeBlocks > Blocks have different types 1`] = ` "id": "heading-0", "props": { "backgroundColor": "default", + "isTogglable": false, "level": 1, "textAlignment": "left", "textColor": "default", @@ -1078,6 +1081,7 @@ exports[`Test mergeBlocks > Blocks have different types 1`] = ` "id": "heading-with-everything", "props": { "backgroundColor": "red", + "isTogglable": false, "level": 2, "textAlignment": "center", "textColor": "red", @@ -1281,6 +1285,7 @@ exports[`Test mergeBlocks > First block has children 1`] = ` "id": "heading-0", "props": { "backgroundColor": "default", + "isTogglable": false, "level": 1, "textAlignment": "left", "textColor": "default", @@ -1627,6 +1632,7 @@ exports[`Test mergeBlocks > First block has children 1`] = ` "id": "heading-with-everything", "props": { "backgroundColor": "red", + "isTogglable": false, "level": 2, "textAlignment": "center", "textColor": "red", @@ -1829,6 +1835,7 @@ exports[`Test mergeBlocks > Second block has children 1`] = ` "id": "heading-0", "props": { "backgroundColor": "default", + "isTogglable": false, "level": 1, "textAlignment": "left", "textColor": "default", @@ -2175,6 +2182,7 @@ exports[`Test mergeBlocks > Second block has children 1`] = ` "id": "heading-with-everything", "props": { "backgroundColor": "red", + "isTogglable": false, "level": 2, "textAlignment": "center", "textColor": "red", @@ -2395,6 +2403,7 @@ exports[`Test mergeBlocks > Second block is empty 1`] = ` "id": "heading-0", "props": { "backgroundColor": "default", + "isTogglable": false, "level": 1, "textAlignment": "left", "textColor": "default", @@ -2730,6 +2739,7 @@ exports[`Test mergeBlocks > Second block is empty 1`] = ` "id": "heading-with-everything", "props": { "backgroundColor": "red", + "isTogglable": false, "level": 2, "textAlignment": "center", "textColor": "red", diff --git a/packages/core/src/api/blockManipulation/commands/moveBlocks/__snapshots__/moveBlocks.test.ts.snap b/packages/core/src/api/blockManipulation/commands/moveBlocks/__snapshots__/moveBlocks.test.ts.snap index b2d429c343..efe9278694 100644 --- a/packages/core/src/api/blockManipulation/commands/moveBlocks/__snapshots__/moveBlocks.test.ts.snap +++ b/packages/core/src/api/blockManipulation/commands/moveBlocks/__snapshots__/moveBlocks.test.ts.snap @@ -200,6 +200,7 @@ exports[`Test moveBlocksDown > Basic 1`] = ` "id": "heading-0", "props": { "backgroundColor": "default", + "isTogglable": false, "level": 1, "textAlignment": "left", "textColor": "default", @@ -546,6 +547,7 @@ exports[`Test moveBlocksDown > Basic 1`] = ` "id": "heading-with-everything", "props": { "backgroundColor": "red", + "isTogglable": false, "level": 2, "textAlignment": "center", "textColor": "red", @@ -766,6 +768,7 @@ exports[`Test moveBlocksDown > Into children 1`] = ` "id": "heading-0", "props": { "backgroundColor": "default", + "isTogglable": false, "level": 1, "textAlignment": "left", "textColor": "default", @@ -1112,6 +1115,7 @@ exports[`Test moveBlocksDown > Into children 1`] = ` "id": "heading-with-everything", "props": { "backgroundColor": "red", + "isTogglable": false, "level": 2, "textAlignment": "center", "textColor": "red", @@ -1332,6 +1336,7 @@ exports[`Test moveBlocksDown > Last block 1`] = ` "id": "heading-0", "props": { "backgroundColor": "default", + "isTogglable": false, "level": 1, "textAlignment": "left", "textColor": "default", @@ -1678,6 +1683,7 @@ exports[`Test moveBlocksDown > Last block 1`] = ` "id": "heading-with-everything", "props": { "backgroundColor": "red", + "isTogglable": false, "level": 2, "textAlignment": "center", "textColor": "red", @@ -1898,6 +1904,7 @@ exports[`Test moveBlocksDown > Multiple blocks 1`] = ` "id": "heading-0", "props": { "backgroundColor": "default", + "isTogglable": false, "level": 1, "textAlignment": "left", "textColor": "default", @@ -2244,6 +2251,7 @@ exports[`Test moveBlocksDown > Multiple blocks 1`] = ` "id": "heading-with-everything", "props": { "backgroundColor": "red", + "isTogglable": false, "level": 2, "textAlignment": "center", "textColor": "red", @@ -2464,6 +2472,7 @@ exports[`Test moveBlocksDown > Multiple blocks ending in block with children 1`] "id": "heading-0", "props": { "backgroundColor": "default", + "isTogglable": false, "level": 1, "textAlignment": "left", "textColor": "default", @@ -2810,6 +2819,7 @@ exports[`Test moveBlocksDown > Multiple blocks ending in block with children 1`] "id": "heading-with-everything", "props": { "backgroundColor": "red", + "isTogglable": false, "level": 2, "textAlignment": "center", "textColor": "red", @@ -3030,6 +3040,7 @@ exports[`Test moveBlocksDown > Multiple blocks ending in nested block 1`] = ` "id": "heading-0", "props": { "backgroundColor": "default", + "isTogglable": false, "level": 1, "textAlignment": "left", "textColor": "default", @@ -3376,6 +3387,7 @@ exports[`Test moveBlocksDown > Multiple blocks ending in nested block 1`] = ` "id": "heading-with-everything", "props": { "backgroundColor": "red", + "isTogglable": false, "level": 2, "textAlignment": "center", "textColor": "red", @@ -3606,6 +3618,7 @@ exports[`Test moveBlocksDown > Multiple blocks starting and ending in nested blo "id": "heading-0", "props": { "backgroundColor": "default", + "isTogglable": false, "level": 1, "textAlignment": "left", "textColor": "default", @@ -3952,6 +3965,7 @@ exports[`Test moveBlocksDown > Multiple blocks starting and ending in nested blo "id": "heading-with-everything", "props": { "backgroundColor": "red", + "isTogglable": false, "level": 2, "textAlignment": "center", "textColor": "red", @@ -4172,6 +4186,7 @@ exports[`Test moveBlocksDown > Multiple blocks starting in block with children 1 "id": "heading-0", "props": { "backgroundColor": "default", + "isTogglable": false, "level": 1, "textAlignment": "left", "textColor": "default", @@ -4518,6 +4533,7 @@ exports[`Test moveBlocksDown > Multiple blocks starting in block with children 1 "id": "heading-with-everything", "props": { "backgroundColor": "red", + "isTogglable": false, "level": 2, "textAlignment": "center", "textColor": "red", @@ -4737,6 +4753,7 @@ exports[`Test moveBlocksDown > Multiple blocks starting in nested block 1`] = ` "id": "heading-0", "props": { "backgroundColor": "default", + "isTogglable": false, "level": 1, "textAlignment": "left", "textColor": "default", @@ -5083,6 +5100,7 @@ exports[`Test moveBlocksDown > Multiple blocks starting in nested block 1`] = ` "id": "heading-with-everything", "props": { "backgroundColor": "red", + "isTogglable": false, "level": 2, "textAlignment": "center", "textColor": "red", @@ -5303,6 +5321,7 @@ exports[`Test moveBlocksDown > Out of children 1`] = ` "id": "heading-0", "props": { "backgroundColor": "default", + "isTogglable": false, "level": 1, "textAlignment": "left", "textColor": "default", @@ -5613,6 +5632,7 @@ exports[`Test moveBlocksDown > Out of children 1`] = ` "id": "heading-with-everything", "props": { "backgroundColor": "red", + "isTogglable": false, "level": 2, "textAlignment": "center", "textColor": "red", @@ -5868,6 +5888,7 @@ exports[`Test moveBlocksUp > Basic 1`] = ` "id": "heading-0", "props": { "backgroundColor": "default", + "isTogglable": false, "level": 1, "textAlignment": "left", "textColor": "default", @@ -6214,6 +6235,7 @@ exports[`Test moveBlocksUp > Basic 1`] = ` "id": "heading-with-everything", "props": { "backgroundColor": "red", + "isTogglable": false, "level": 2, "textAlignment": "center", "textColor": "red", @@ -6434,6 +6456,7 @@ exports[`Test moveBlocksUp > First block 1`] = ` "id": "heading-0", "props": { "backgroundColor": "default", + "isTogglable": false, "level": 1, "textAlignment": "left", "textColor": "default", @@ -6780,6 +6803,7 @@ exports[`Test moveBlocksUp > First block 1`] = ` "id": "heading-with-everything", "props": { "backgroundColor": "red", + "isTogglable": false, "level": 2, "textAlignment": "center", "textColor": "red", @@ -7000,6 +7024,7 @@ exports[`Test moveBlocksUp > Into children 1`] = ` "id": "heading-0", "props": { "backgroundColor": "default", + "isTogglable": false, "level": 1, "textAlignment": "left", "textColor": "default", @@ -7346,6 +7371,7 @@ exports[`Test moveBlocksUp > Into children 1`] = ` "id": "heading-with-everything", "props": { "backgroundColor": "red", + "isTogglable": false, "level": 2, "textAlignment": "center", "textColor": "red", @@ -7566,6 +7592,7 @@ exports[`Test moveBlocksUp > Multiple blocks 1`] = ` "id": "heading-0", "props": { "backgroundColor": "default", + "isTogglable": false, "level": 1, "textAlignment": "left", "textColor": "default", @@ -7912,6 +7939,7 @@ exports[`Test moveBlocksUp > Multiple blocks 1`] = ` "id": "heading-with-everything", "props": { "backgroundColor": "red", + "isTogglable": false, "level": 2, "textAlignment": "center", "textColor": "red", @@ -8132,6 +8160,7 @@ exports[`Test moveBlocksUp > Multiple blocks ending in block with children 1`] = "id": "heading-0", "props": { "backgroundColor": "default", + "isTogglable": false, "level": 1, "textAlignment": "left", "textColor": "default", @@ -8478,6 +8507,7 @@ exports[`Test moveBlocksUp > Multiple blocks ending in block with children 1`] = "id": "heading-with-everything", "props": { "backgroundColor": "red", + "isTogglable": false, "level": 2, "textAlignment": "center", "textColor": "red", @@ -8698,6 +8728,7 @@ exports[`Test moveBlocksUp > Multiple blocks ending in nested block 1`] = ` "id": "heading-0", "props": { "backgroundColor": "default", + "isTogglable": false, "level": 1, "textAlignment": "left", "textColor": "default", @@ -9044,6 +9075,7 @@ exports[`Test moveBlocksUp > Multiple blocks ending in nested block 1`] = ` "id": "heading-with-everything", "props": { "backgroundColor": "red", + "isTogglable": false, "level": 2, "textAlignment": "center", "textColor": "red", @@ -9246,6 +9278,7 @@ exports[`Test moveBlocksUp > Multiple blocks starting and ending in nested block "id": "heading-0", "props": { "backgroundColor": "default", + "isTogglable": false, "level": 1, "textAlignment": "left", "textColor": "default", @@ -9592,6 +9625,7 @@ exports[`Test moveBlocksUp > Multiple blocks starting and ending in nested block "id": "heading-with-everything", "props": { "backgroundColor": "red", + "isTogglable": false, "level": 2, "textAlignment": "center", "textColor": "red", @@ -9829,6 +9863,7 @@ exports[`Test moveBlocksUp > Multiple blocks starting in block with children 1`] "id": "heading-0", "props": { "backgroundColor": "default", + "isTogglable": false, "level": 1, "textAlignment": "left", "textColor": "default", @@ -10175,6 +10210,7 @@ exports[`Test moveBlocksUp > Multiple blocks starting in block with children 1`] "id": "heading-with-everything", "props": { "backgroundColor": "red", + "isTogglable": false, "level": 2, "textAlignment": "center", "textColor": "red", @@ -10394,6 +10430,7 @@ exports[`Test moveBlocksUp > Multiple blocks starting in nested block 1`] = ` "id": "heading-0", "props": { "backgroundColor": "default", + "isTogglable": false, "level": 1, "textAlignment": "left", "textColor": "default", @@ -10740,6 +10777,7 @@ exports[`Test moveBlocksUp > Multiple blocks starting in nested block 1`] = ` "id": "heading-with-everything", "props": { "backgroundColor": "red", + "isTogglable": false, "level": 2, "textAlignment": "center", "textColor": "red", @@ -10960,6 +10998,7 @@ exports[`Test moveBlocksUp > Out of children 1`] = ` "id": "heading-0", "props": { "backgroundColor": "default", + "isTogglable": false, "level": 1, "textAlignment": "left", "textColor": "default", @@ -11305,6 +11344,7 @@ exports[`Test moveBlocksUp > Out of children 1`] = ` "id": "heading-with-everything", "props": { "backgroundColor": "red", + "isTogglable": false, "level": 2, "textAlignment": "center", "textColor": "red", diff --git a/packages/core/src/api/blockManipulation/commands/replaceBlocks/__snapshots__/replaceBlocks.test.ts.snap b/packages/core/src/api/blockManipulation/commands/replaceBlocks/__snapshots__/replaceBlocks.test.ts.snap index 04e9a71328..94c09c5d21 100644 --- a/packages/core/src/api/blockManipulation/commands/replaceBlocks/__snapshots__/replaceBlocks.test.ts.snap +++ b/packages/core/src/api/blockManipulation/commands/replaceBlocks/__snapshots__/replaceBlocks.test.ts.snap @@ -113,6 +113,7 @@ exports[`Test replaceBlocks > Remove multiple consecutive blocks 1`] = ` "id": "heading-0", "props": { "backgroundColor": "default", + "isTogglable": false, "level": 1, "textAlignment": "left", "textColor": "default", @@ -459,6 +460,7 @@ exports[`Test replaceBlocks > Remove multiple consecutive blocks 1`] = ` "id": "heading-with-everything", "props": { "backgroundColor": "red", + "isTogglable": false, "level": 2, "textAlignment": "center", "textColor": "red", @@ -662,6 +664,7 @@ exports[`Test replaceBlocks > Remove multiple non-consecutive blocks 1`] = ` "id": "heading-0", "props": { "backgroundColor": "default", + "isTogglable": false, "level": 1, "textAlignment": "left", "textColor": "default", @@ -958,6 +961,7 @@ exports[`Test replaceBlocks > Remove single block 1`] = ` "id": "heading-0", "props": { "backgroundColor": "default", + "isTogglable": false, "level": 1, "textAlignment": "left", "textColor": "default", @@ -1304,6 +1308,7 @@ exports[`Test replaceBlocks > Remove single block 1`] = ` "id": "heading-with-everything", "props": { "backgroundColor": "red", + "isTogglable": false, "level": 2, "textAlignment": "center", "textColor": "red", @@ -1488,6 +1493,7 @@ exports[`Test replaceBlocks > Replace multiple consecutive blocks with multiple "id": "heading-0", "props": { "backgroundColor": "default", + "isTogglable": false, "level": 1, "textAlignment": "left", "textColor": "default", @@ -1834,6 +1840,7 @@ exports[`Test replaceBlocks > Replace multiple consecutive blocks with multiple "id": "heading-with-everything", "props": { "backgroundColor": "red", + "isTogglable": false, "level": 2, "textAlignment": "center", "textColor": "red", @@ -1978,6 +1985,7 @@ exports[`Test replaceBlocks > Replace multiple consecutive blocks with single ba "id": "heading-0", "props": { "backgroundColor": "default", + "isTogglable": false, "level": 1, "textAlignment": "left", "textColor": "default", @@ -2324,6 +2332,7 @@ exports[`Test replaceBlocks > Replace multiple consecutive blocks with single ba "id": "heading-with-everything", "props": { "backgroundColor": "red", + "isTogglable": false, "level": 2, "textAlignment": "center", "textColor": "red", @@ -2408,6 +2417,7 @@ exports[`Test replaceBlocks > Replace multiple consecutive blocks with single co "id": "inserted-heading-with-everything", "props": { "backgroundColor": "red", + "isTogglable": false, "level": 2, "textAlignment": "center", "textColor": "red", @@ -2525,6 +2535,7 @@ exports[`Test replaceBlocks > Replace multiple consecutive blocks with single co "id": "heading-0", "props": { "backgroundColor": "default", + "isTogglable": false, "level": 1, "textAlignment": "left", "textColor": "default", @@ -2871,6 +2882,7 @@ exports[`Test replaceBlocks > Replace multiple consecutive blocks with single co "id": "heading-with-everything", "props": { "backgroundColor": "red", + "isTogglable": false, "level": 2, "textAlignment": "center", "textColor": "red", @@ -3125,6 +3137,7 @@ exports[`Test replaceBlocks > Replace multiple non-consecutive blocks with multi "id": "heading-0", "props": { "backgroundColor": "default", + "isTogglable": false, "level": 1, "textAlignment": "left", "textColor": "default", @@ -3432,6 +3445,7 @@ exports[`Test replaceBlocks > Replace multiple non-consecutive blocks with singl "id": "heading-0", "props": { "backgroundColor": "default", + "isTogglable": false, "level": 1, "textAlignment": "left", "textColor": "default", @@ -3609,6 +3623,7 @@ exports[`Test replaceBlocks > Replace multiple non-consecutive blocks with singl "id": "inserted-heading-with-everything", "props": { "backgroundColor": "red", + "isTogglable": false, "level": 2, "textAlignment": "center", "textColor": "red", @@ -3796,6 +3811,7 @@ exports[`Test replaceBlocks > Replace multiple non-consecutive blocks with singl "id": "heading-0", "props": { "backgroundColor": "default", + "isTogglable": false, "level": 1, "textAlignment": "left", "textColor": "default", @@ -4143,6 +4159,7 @@ exports[`Test replaceBlocks > Replace single block with multiple 1`] = ` "id": "heading-0", "props": { "backgroundColor": "default", + "isTogglable": false, "level": 1, "textAlignment": "left", "textColor": "default", @@ -4489,6 +4506,7 @@ exports[`Test replaceBlocks > Replace single block with multiple 1`] = ` "id": "heading-with-everything", "props": { "backgroundColor": "red", + "isTogglable": false, "level": 2, "textAlignment": "center", "textColor": "red", @@ -4703,6 +4721,7 @@ exports[`Test replaceBlocks > Replace single block with single basic 1`] = ` "id": "heading-0", "props": { "backgroundColor": "default", + "isTogglable": false, "level": 1, "textAlignment": "left", "textColor": "default", @@ -5049,6 +5068,7 @@ exports[`Test replaceBlocks > Replace single block with single basic 1`] = ` "id": "heading-with-everything", "props": { "backgroundColor": "red", + "isTogglable": false, "level": 2, "textAlignment": "center", "textColor": "red", @@ -5133,6 +5153,7 @@ exports[`Test replaceBlocks > Replace single block with single complex 1`] = ` "id": "inserted-heading-with-everything", "props": { "backgroundColor": "red", + "isTogglable": false, "level": 2, "textAlignment": "center", "textColor": "red", @@ -5320,6 +5341,7 @@ exports[`Test replaceBlocks > Replace single block with single complex 1`] = ` "id": "heading-0", "props": { "backgroundColor": "default", + "isTogglable": false, "level": 1, "textAlignment": "left", "textColor": "default", @@ -5666,6 +5688,7 @@ exports[`Test replaceBlocks > Replace single block with single complex 1`] = ` "id": "heading-with-everything", "props": { "backgroundColor": "red", + "isTogglable": false, "level": 2, "textAlignment": "center", "textColor": "red", diff --git a/packages/core/src/api/blockManipulation/commands/splitBlock/__snapshots__/splitBlock.test.ts.snap b/packages/core/src/api/blockManipulation/commands/splitBlock/__snapshots__/splitBlock.test.ts.snap index b6adcef363..35b88656b0 100644 --- a/packages/core/src/api/blockManipulation/commands/splitBlock/__snapshots__/splitBlock.test.ts.snap +++ b/packages/core/src/api/blockManipulation/commands/splitBlock/__snapshots__/splitBlock.test.ts.snap @@ -217,6 +217,7 @@ exports[`Test splitBlocks > Basic 1`] = ` "id": "heading-0", "props": { "backgroundColor": "default", + "isTogglable": false, "level": 1, "textAlignment": "left", "textColor": "default", @@ -563,6 +564,7 @@ exports[`Test splitBlocks > Basic 1`] = ` "id": "heading-with-everything", "props": { "backgroundColor": "red", + "isTogglable": false, "level": 2, "textAlignment": "center", "textColor": "red", @@ -800,6 +802,7 @@ exports[`Test splitBlocks > Block has children 1`] = ` "id": "heading-0", "props": { "backgroundColor": "default", + "isTogglable": false, "level": 1, "textAlignment": "left", "textColor": "default", @@ -1146,6 +1149,7 @@ exports[`Test splitBlocks > Block has children 1`] = ` "id": "heading-with-everything", "props": { "backgroundColor": "red", + "isTogglable": false, "level": 2, "textAlignment": "center", "textColor": "red", @@ -1383,6 +1387,7 @@ exports[`Test splitBlocks > Don't keep props 1`] = ` "id": "heading-0", "props": { "backgroundColor": "default", + "isTogglable": false, "level": 1, "textAlignment": "left", "textColor": "default", @@ -1729,6 +1734,7 @@ exports[`Test splitBlocks > Don't keep props 1`] = ` "id": "heading-with-everything", "props": { "backgroundColor": "red", + "isTogglable": false, "level": 2, "textAlignment": "center", "textColor": "red", @@ -1949,6 +1955,7 @@ exports[`Test splitBlocks > Don't keep type 1`] = ` "id": "heading-0", "props": { "backgroundColor": "default", + "isTogglable": false, "level": 1, "textAlignment": "left", "textColor": "default", @@ -2312,6 +2319,7 @@ exports[`Test splitBlocks > Don't keep type 1`] = ` "id": "heading-with-everything", "props": { "backgroundColor": "red", + "isTogglable": false, "level": 2, "textAlignment": "center", "textColor": "red", @@ -2543,6 +2551,7 @@ exports[`Test splitBlocks > End of content 1`] = ` "id": "heading-0", "props": { "backgroundColor": "default", + "isTogglable": false, "level": 1, "textAlignment": "left", "textColor": "default", @@ -2889,6 +2898,7 @@ exports[`Test splitBlocks > End of content 1`] = ` "id": "heading-with-everything", "props": { "backgroundColor": "red", + "isTogglable": false, "level": 2, "textAlignment": "center", "textColor": "red", @@ -3109,6 +3119,7 @@ exports[`Test splitBlocks > Keep type 1`] = ` "id": "heading-0", "props": { "backgroundColor": "default", + "isTogglable": false, "level": 1, "textAlignment": "left", "textColor": "default", @@ -3127,6 +3138,7 @@ exports[`Test splitBlocks > Keep type 1`] = ` "id": "0", "props": { "backgroundColor": "default", + "isTogglable": false, "level": 1, "textAlignment": "left", "textColor": "default", @@ -3473,6 +3485,7 @@ exports[`Test splitBlocks > Keep type 1`] = ` "id": "heading-with-everything", "props": { "backgroundColor": "red", + "isTogglable": false, "level": 2, "textAlignment": "center", "textColor": "red", diff --git a/packages/core/src/api/blockManipulation/commands/updateBlock/__snapshots__/updateBlock.test.ts.snap b/packages/core/src/api/blockManipulation/commands/updateBlock/__snapshots__/updateBlock.test.ts.snap index 87d1cedfce..8c88b66d2f 100644 --- a/packages/core/src/api/blockManipulation/commands/updateBlock/__snapshots__/updateBlock.test.ts.snap +++ b/packages/core/src/api/blockManipulation/commands/updateBlock/__snapshots__/updateBlock.test.ts.snap @@ -63,6 +63,7 @@ exports[`Test updateBlock > Revert all props 1`] = ` "id": "heading-with-everything", "props": { "backgroundColor": "default", + "isTogglable": false, "level": 1, "textAlignment": "left", "textColor": "default", @@ -271,6 +272,7 @@ exports[`Test updateBlock > Revert all props 2`] = ` "id": "heading-0", "props": { "backgroundColor": "default", + "isTogglable": false, "level": 1, "textAlignment": "left", "textColor": "default", @@ -617,6 +619,7 @@ exports[`Test updateBlock > Revert all props 2`] = ` "id": "heading-with-everything", "props": { "backgroundColor": "default", + "isTogglable": false, "level": 1, "textAlignment": "left", "textColor": "default", @@ -700,6 +703,7 @@ exports[`Test updateBlock > Revert single prop 1`] = ` "id": "heading-with-everything", "props": { "backgroundColor": "red", + "isTogglable": false, "level": 1, "textAlignment": "center", "textColor": "red", @@ -908,6 +912,7 @@ exports[`Test updateBlock > Revert single prop 2`] = ` "id": "heading-0", "props": { "backgroundColor": "default", + "isTogglable": false, "level": 1, "textAlignment": "left", "textColor": "default", @@ -1254,6 +1259,7 @@ exports[`Test updateBlock > Revert single prop 2`] = ` "id": "heading-with-everything", "props": { "backgroundColor": "red", + "isTogglable": false, "level": 1, "textAlignment": "center", "textColor": "red", @@ -1337,6 +1343,7 @@ exports[`Test updateBlock > Update all props 1`] = ` "id": "heading-with-everything", "props": { "backgroundColor": "blue", + "isTogglable": false, "level": 3, "textAlignment": "right", "textColor": "blue", @@ -1545,6 +1552,7 @@ exports[`Test updateBlock > Update all props 2`] = ` "id": "heading-0", "props": { "backgroundColor": "default", + "isTogglable": false, "level": 1, "textAlignment": "left", "textColor": "default", @@ -1891,6 +1899,7 @@ exports[`Test updateBlock > Update all props 2`] = ` "id": "heading-with-everything", "props": { "backgroundColor": "blue", + "isTogglable": false, "level": 3, "textAlignment": "right", "textColor": "blue", @@ -1974,6 +1983,7 @@ exports[`Test updateBlock > Update children 1`] = ` "id": "heading-with-everything", "props": { "backgroundColor": "red", + "isTogglable": false, "level": 2, "textAlignment": "center", "textColor": "red", @@ -2182,6 +2192,7 @@ exports[`Test updateBlock > Update children 2`] = ` "id": "heading-0", "props": { "backgroundColor": "default", + "isTogglable": false, "level": 1, "textAlignment": "left", "textColor": "default", @@ -2528,6 +2539,7 @@ exports[`Test updateBlock > Update children 2`] = ` "id": "heading-with-everything", "props": { "backgroundColor": "red", + "isTogglable": false, "level": 2, "textAlignment": "center", "textColor": "red", @@ -2762,6 +2774,7 @@ exports[`Test updateBlock > Update inline content to no content 2`] = ` "id": "heading-0", "props": { "backgroundColor": "default", + "isTogglable": false, "level": 1, "textAlignment": "left", "textColor": "default", @@ -3108,6 +3121,7 @@ exports[`Test updateBlock > Update inline content to no content 2`] = ` "id": "heading-with-everything", "props": { "backgroundColor": "red", + "isTogglable": false, "level": 2, "textAlignment": "center", "textColor": "red", @@ -3684,6 +3698,7 @@ exports[`Test updateBlock > Update inline content to table content 2`] = ` "id": "heading-0", "props": { "backgroundColor": "default", + "isTogglable": false, "level": 1, "textAlignment": "left", "textColor": "default", @@ -4030,6 +4045,7 @@ exports[`Test updateBlock > Update inline content to table content 2`] = ` "id": "heading-with-everything", "props": { "backgroundColor": "red", + "isTogglable": false, "level": 2, "textAlignment": "center", "textColor": "red", @@ -4264,6 +4280,7 @@ exports[`Test updateBlock > Update no content to empty inline content 2`] = ` "id": "heading-0", "props": { "backgroundColor": "default", + "isTogglable": false, "level": 1, "textAlignment": "left", "textColor": "default", @@ -4607,6 +4624,7 @@ exports[`Test updateBlock > Update no content to empty inline content 2`] = ` "id": "heading-with-everything", "props": { "backgroundColor": "red", + "isTogglable": false, "level": 2, "textAlignment": "center", "textColor": "red", @@ -4845,6 +4863,7 @@ exports[`Test updateBlock > Update no content to empty table content 2`] = ` "id": "heading-0", "props": { "backgroundColor": "default", + "isTogglable": false, "level": 1, "textAlignment": "left", "textColor": "default", @@ -5188,6 +5207,7 @@ exports[`Test updateBlock > Update no content to empty table content 2`] = ` "id": "heading-with-everything", "props": { "backgroundColor": "red", + "isTogglable": false, "level": 2, "textAlignment": "center", "textColor": "red", @@ -5428,6 +5448,7 @@ exports[`Test updateBlock > Update no content to inline content 2`] = ` "id": "heading-0", "props": { "backgroundColor": "default", + "isTogglable": false, "level": 1, "textAlignment": "left", "textColor": "default", @@ -5777,6 +5798,7 @@ exports[`Test updateBlock > Update no content to inline content 2`] = ` "id": "heading-with-everything", "props": { "backgroundColor": "red", + "isTogglable": false, "level": 2, "textAlignment": "center", "textColor": "red", @@ -6185,6 +6207,7 @@ exports[`Test updateBlock > Update no content to table content 2`] = ` "id": "heading-0", "props": { "backgroundColor": "default", + "isTogglable": false, "level": 1, "textAlignment": "left", "textColor": "default", @@ -6702,6 +6725,7 @@ exports[`Test updateBlock > Update no content to table content 2`] = ` "id": "heading-with-everything", "props": { "backgroundColor": "red", + "isTogglable": false, "level": 2, "textAlignment": "center", "textColor": "red", @@ -6922,6 +6946,7 @@ exports[`Test updateBlock > Update partial (offset start + end) 1`] = ` "id": "heading-0", "props": { "backgroundColor": "default", + "isTogglable": false, "level": 1, "textAlignment": "left", "textColor": "default", @@ -7268,6 +7293,7 @@ exports[`Test updateBlock > Update partial (offset start + end) 1`] = ` "id": "heading-with-everything", "props": { "backgroundColor": "red", + "isTogglable": false, "level": 2, "textAlignment": "center", "textColor": "red", @@ -7488,6 +7514,7 @@ exports[`Test updateBlock > Update partial (offset start) 1`] = ` "id": "heading-0", "props": { "backgroundColor": "default", + "isTogglable": false, "level": 1, "textAlignment": "left", "textColor": "default", @@ -7827,6 +7854,7 @@ exports[`Test updateBlock > Update partial (offset start) 1`] = ` "id": "heading-with-everything", "props": { "backgroundColor": "red", + "isTogglable": false, "level": 2, "textAlignment": "center", "textColor": "red", @@ -8047,6 +8075,7 @@ exports[`Test updateBlock > Update partial (props + offset end) 1`] = ` "id": "heading-0", "props": { "backgroundColor": "default", + "isTogglable": false, "level": 1, "textAlignment": "left", "textColor": "default", @@ -8386,6 +8415,7 @@ exports[`Test updateBlock > Update partial (props + offset end) 1`] = ` "id": "heading-with-everything", "props": { "backgroundColor": "red", + "isTogglable": false, "level": 1, "textAlignment": "center", "textColor": "red", @@ -8606,6 +8636,7 @@ exports[`Test updateBlock > Update partial (table cell) 1`] = ` "id": "heading-0", "props": { "backgroundColor": "default", + "isTogglable": false, "level": 1, "textAlignment": "left", "textColor": "default", @@ -8952,6 +8983,7 @@ exports[`Test updateBlock > Update partial (table cell) 1`] = ` "id": "heading-with-everything", "props": { "backgroundColor": "red", + "isTogglable": false, "level": 2, "textAlignment": "center", "textColor": "red", @@ -9172,6 +9204,7 @@ exports[`Test updateBlock > Update partial (table row) 1`] = ` "id": "heading-0", "props": { "backgroundColor": "default", + "isTogglable": false, "level": 1, "textAlignment": "left", "textColor": "default", @@ -9518,6 +9551,7 @@ exports[`Test updateBlock > Update partial (table row) 1`] = ` "id": "heading-with-everything", "props": { "backgroundColor": "red", + "isTogglable": false, "level": 2, "textAlignment": "center", "textColor": "red", @@ -9601,6 +9635,7 @@ exports[`Test updateBlock > Update single prop 1`] = ` "id": "heading-with-everything", "props": { "backgroundColor": "red", + "isTogglable": false, "level": 3, "textAlignment": "center", "textColor": "red", @@ -9809,6 +9844,7 @@ exports[`Test updateBlock > Update single prop 2`] = ` "id": "heading-0", "props": { "backgroundColor": "default", + "isTogglable": false, "level": 1, "textAlignment": "left", "textColor": "default", @@ -10155,6 +10191,7 @@ exports[`Test updateBlock > Update single prop 2`] = ` "id": "heading-with-everything", "props": { "backgroundColor": "red", + "isTogglable": false, "level": 3, "textAlignment": "center", "textColor": "red", @@ -10389,6 +10426,7 @@ exports[`Test updateBlock > Update table content to empty inline content 2`] = ` "id": "heading-0", "props": { "backgroundColor": "default", + "isTogglable": false, "level": 1, "textAlignment": "left", "textColor": "default", @@ -10561,6 +10599,7 @@ exports[`Test updateBlock > Update table content to empty inline content 2`] = ` "id": "heading-with-everything", "props": { "backgroundColor": "red", + "isTogglable": false, "level": 2, "textAlignment": "center", "textColor": "red", @@ -10801,6 +10840,7 @@ exports[`Test updateBlock > Update table content to inline content 2`] = ` "id": "heading-0", "props": { "backgroundColor": "default", + "isTogglable": false, "level": 1, "textAlignment": "left", "textColor": "default", @@ -10979,6 +11019,7 @@ exports[`Test updateBlock > Update table content to inline content 2`] = ` "id": "heading-with-everything", "props": { "backgroundColor": "red", + "isTogglable": false, "level": 2, "textAlignment": "center", "textColor": "red", @@ -11216,6 +11257,7 @@ exports[`Test updateBlock > Update table content to no content 2`] = ` "id": "heading-0", "props": { "backgroundColor": "default", + "isTogglable": false, "level": 1, "textAlignment": "left", "textColor": "default", @@ -11391,6 +11433,7 @@ exports[`Test updateBlock > Update table content to no content 2`] = ` "id": "heading-with-everything", "props": { "backgroundColor": "red", + "isTogglable": false, "level": 2, "textAlignment": "center", "textColor": "red", @@ -11681,6 +11724,7 @@ exports[`Test updateBlock > Update type 2`] = ` "id": "heading-0", "props": { "backgroundColor": "default", + "isTogglable": false, "level": 1, "textAlignment": "left", "textColor": "default", @@ -12095,6 +12139,7 @@ exports[`Test updateBlock > Update with plain content 1`] = ` "id": "heading-with-everything", "props": { "backgroundColor": "red", + "isTogglable": false, "level": 2, "textAlignment": "center", "textColor": "red", @@ -12303,6 +12348,7 @@ exports[`Test updateBlock > Update with plain content 2`] = ` "id": "heading-0", "props": { "backgroundColor": "default", + "isTogglable": false, "level": 1, "textAlignment": "left", "textColor": "default", @@ -12635,6 +12681,7 @@ exports[`Test updateBlock > Update with plain content 2`] = ` "id": "heading-with-everything", "props": { "backgroundColor": "red", + "isTogglable": false, "level": 2, "textAlignment": "center", "textColor": "red", @@ -12718,6 +12765,7 @@ exports[`Test updateBlock > Update with styled content 1`] = ` "id": "heading-with-everything", "props": { "backgroundColor": "red", + "isTogglable": false, "level": 2, "textAlignment": "center", "textColor": "red", @@ -12926,6 +12974,7 @@ exports[`Test updateBlock > Update with styled content 2`] = ` "id": "heading-0", "props": { "backgroundColor": "default", + "isTogglable": false, "level": 1, "textAlignment": "left", "textColor": "default", @@ -13272,6 +13321,7 @@ exports[`Test updateBlock > Update with styled content 2`] = ` "id": "heading-with-everything", "props": { "backgroundColor": "red", + "isTogglable": false, "level": 2, "textAlignment": "center", "textColor": "red", diff --git a/packages/core/src/editor/BlockNoteEditor.test.ts b/packages/core/src/editor/BlockNoteEditor.test.ts index 1a2f061c98..d329fd17d4 100644 --- a/packages/core/src/editor/BlockNoteEditor.test.ts +++ b/packages/core/src/editor/BlockNoteEditor.test.ts @@ -52,6 +52,7 @@ it("immediately replaces doc", async () => { "id": "2", "props": { "backgroundColor": "default", + "isTogglable": false, "level": 1, "textAlignment": "left", "textColor": "default", diff --git a/packages/server-util/src/context/__snapshots__/ServerBlockNoteEditor.test.ts.snap b/packages/server-util/src/context/__snapshots__/ServerBlockNoteEditor.test.ts.snap index 5cf46c5d02..0e74d9d2c0 100644 --- a/packages/server-util/src/context/__snapshots__/ServerBlockNoteEditor.test.ts.snap +++ b/packages/server-util/src/context/__snapshots__/ServerBlockNoteEditor.test.ts.snap @@ -29,6 +29,7 @@ exports[`Test ServerBlockNoteEditor > converts to and from HTML (blocksToHTMLLos "id": "0", "props": { "backgroundColor": "default", + "isTogglable": false, "level": 2, "textAlignment": "right", "textColor": "default", @@ -168,6 +169,7 @@ exports[`Test ServerBlockNoteEditor > converts to and from markdown (blocksToMar "id": "0", "props": { "backgroundColor": "default", + "isTogglable": false, "level": 2, "textAlignment": "left", "textColor": "default", diff --git a/packages/xl-ai/src/api/schema/__snapshots__/schemaToJSONSchema.test.ts.snap b/packages/xl-ai/src/api/schema/__snapshots__/schemaToJSONSchema.test.ts.snap index 818662b135..8bb72716ec 100644 --- a/packages/xl-ai/src/api/schema/__snapshots__/schemaToJSONSchema.test.ts.snap +++ b/packages/xl-ai/src/api/schema/__snapshots__/schemaToJSONSchema.test.ts.snap @@ -20,6 +20,7 @@ exports[`creates json schema 1`] = ` "enum": [ "paragraph", "quote", + "toggleListItem", "bulletListItem", "numberedListItem", ], @@ -40,6 +41,10 @@ exports[`creates json schema 1`] = ` "props": { "additionalProperties": false, "properties": { + "isTogglable": { + "enum": undefined, + "type": "boolean", + }, "level": { "enum": [ 1, diff --git a/packages/xl-ai/src/prosemirror/__snapshots__/agent.test.ts.snap b/packages/xl-ai/src/prosemirror/__snapshots__/agent.test.ts.snap index 25dd9c3495..b10e9d2e4b 100644 --- a/packages/xl-ai/src/prosemirror/__snapshots__/agent.test.ts.snap +++ b/packages/xl-ai/src/prosemirror/__snapshots__/agent.test.ts.snap @@ -222,23 +222,23 @@ exports[`agentStepToTr > Update > update block prop and content 1`] = ` exports[`agentStepToTr > Update > update block type 1`] = ` [ - "R {"type":"doc","content":[{"type":"blockGroup","content":[{"type":"blockContainer","attrs":{"id":"ref1","textColor":"default","backgroundColor":"default"},"content":[{"type":"heading","attrs":{"textAlignment":"left","level":1},"content":[{"type":"text","text":"Hello, world!"}],"marks":[{"type":"modification","attrs":{"id":null,"type":"nodeType","attrName":null,"previousValue":"paragraph","newValue":"heading"}},{"type":"modification","attrs":{"id":null,"type":"attr","attrName":"level","previousValue":null,"newValue":1}}]}]},{"type":"blockContainer","attrs":{"id":"ref2","textColor":"default","backgroundColor":"default"},"content":[{"type":"paragraph","attrs":{"textAlignment":"left"},"content":[{"type":"text","text":"Hello, "},{"type":"mention","attrs":{"user":"John Doe"}},{"type":"text","text":"! "},{"type":"text","marks":[{"type":"bold"}],"text":"How are you doing?"},{"type":"text","text":" "},{"type":"text","marks":[{"type":"textColor","attrs":{"stringValue":"blue"}}],"text":"This text is blue!"}]}]},{"type":"blockContainer","attrs":{"id":"ref3","textColor":"default","backgroundColor":"default"},"content":[{"type":"paragraph","attrs":{"textAlignment":"left"},"content":[{"type":"text","text":"Hello, world! "},{"type":"text","marks":[{"type":"bold"}],"text":"Bold text. "},{"type":"text","marks":[{"type":"link","attrs":{"href":"https://www.google.com","target":"_blank","rel":"noopener noreferrer nofollow","class":null}}],"text":"Link."}]}]}]}]}", + "R {"type":"doc","content":[{"type":"blockGroup","content":[{"type":"blockContainer","attrs":{"id":"ref1","textColor":"default","backgroundColor":"default"},"content":[{"type":"heading","attrs":{"textAlignment":"left","level":1,"isTogglable":false},"content":[{"type":"text","text":"Hello, world!"}],"marks":[{"type":"modification","attrs":{"id":null,"type":"nodeType","attrName":null,"previousValue":"paragraph","newValue":"heading"}},{"type":"modification","attrs":{"id":null,"type":"attr","attrName":"level","previousValue":null,"newValue":1}},{"type":"modification","attrs":{"id":null,"type":"attr","attrName":"isTogglable","previousValue":null,"newValue":false}}]}]},{"type":"blockContainer","attrs":{"id":"ref2","textColor":"default","backgroundColor":"default"},"content":[{"type":"paragraph","attrs":{"textAlignment":"left"},"content":[{"type":"text","text":"Hello, "},{"type":"mention","attrs":{"user":"John Doe"}},{"type":"text","text":"! "},{"type":"text","marks":[{"type":"bold"}],"text":"How are you doing?"},{"type":"text","text":" "},{"type":"text","marks":[{"type":"textColor","attrs":{"stringValue":"blue"}}],"text":"This text is blue!"}]}]},{"type":"blockContainer","attrs":{"id":"ref3","textColor":"default","backgroundColor":"default"},"content":[{"type":"paragraph","attrs":{"textAlignment":"left"},"content":[{"type":"text","text":"Hello, world! "},{"type":"text","marks":[{"type":"bold"}],"text":"Bold text. "},{"type":"text","marks":[{"type":"link","attrs":{"href":"https://www.google.com","target":"_blank","rel":"noopener noreferrer nofollow","class":null}}],"text":"Link."}]}]}]}]}", ] `; exports[`agentStepToTr > Update > update block type and content 1`] = ` [ - "R {"type":"doc","content":[{"type":"blockGroup","content":[{"type":"blockContainer","attrs":{"id":"ref1","textColor":"default","backgroundColor":"default"},"content":[{"type":"heading","attrs":{"textAlignment":"left","level":1},"content":[{"type":"text","text":"Hello, world!"}],"marks":[{"type":"modification","attrs":{"id":null,"type":"nodeType","attrName":null,"previousValue":"paragraph","newValue":"heading"}},{"type":"modification","attrs":{"id":null,"type":"attr","attrName":"level","previousValue":null,"newValue":1}}]}]},{"type":"blockContainer","attrs":{"id":"ref2","textColor":"default","backgroundColor":"default"},"content":[{"type":"paragraph","attrs":{"textAlignment":"left"},"content":[{"type":"text","text":"Hello, "},{"type":"mention","attrs":{"user":"John Doe"}},{"type":"text","text":"! "},{"type":"text","marks":[{"type":"bold"}],"text":"How are you doing?"},{"type":"text","text":" "},{"type":"text","marks":[{"type":"textColor","attrs":{"stringValue":"blue"}}],"text":"This text is blue!"}]}]},{"type":"blockContainer","attrs":{"id":"ref3","textColor":"default","backgroundColor":"default"},"content":[{"type":"paragraph","attrs":{"textAlignment":"left"},"content":[{"type":"text","text":"Hello, world! "},{"type":"text","marks":[{"type":"bold"}],"text":"Bold text. "},{"type":"text","marks":[{"type":"link","attrs":{"href":"https://www.google.com","target":"_blank","rel":"noopener noreferrer nofollow","class":null}}],"text":"Link."}]}]}]}]}", - "S {"type":"doc","content":[{"type":"blockGroup","content":[{"type":"blockContainer","attrs":{"id":"ref1","textColor":"default","backgroundColor":"default"},"content":[{"type":"heading","attrs":{"textAlignment":"left","level":1},"content":[{"type":"text","text":"Hello, world!"}],"marks":[{"type":"modification","attrs":{"id":null,"type":"nodeType","attrName":null,"previousValue":"paragraph","newValue":"heading"}},{"type":"modification","attrs":{"id":null,"type":"attr","attrName":"level","previousValue":null,"newValue":1}}]}]},{"type":"blockContainer","attrs":{"id":"ref2","textColor":"default","backgroundColor":"default"},"content":[{"type":"paragraph","attrs":{"textAlignment":"left"},"content":[{"type":"text","text":"Hello, "},{"type":"mention","attrs":{"user":"John Doe"}},{"type":"text","text":"! "},{"type":"text","marks":[{"type":"bold"}],"text":"How are you doing?"},{"type":"text","text":" "},{"type":"text","marks":[{"type":"textColor","attrs":{"stringValue":"blue"}}],"text":"This text is blue!"}]}]},{"type":"blockContainer","attrs":{"id":"ref3","textColor":"default","backgroundColor":"default"},"content":[{"type":"paragraph","attrs":{"textAlignment":"left"},"content":[{"type":"text","text":"Hello, world! "},{"type":"text","marks":[{"type":"bold"}],"text":"Bold text. "},{"type":"text","marks":[{"type":"link","attrs":{"href":"https://www.google.com","target":"_blank","rel":"noopener noreferrer nofollow","class":null}}],"text":"Link."}]}]}]}]}", - "R {"type":"doc","content":[{"type":"blockGroup","content":[{"type":"blockContainer","attrs":{"id":"ref1","textColor":"default","backgroundColor":"default"},"content":[{"type":"heading","attrs":{"textAlignment":"left","level":1},"content":[{"type":"text","marks":[{"type":"deletion","attrs":{"id":null}}],"text":"Hello"},{"type":"text","marks":[{"type":"insertion","attrs":{"id":null}}],"text":"W"},{"type":"text","text":", world!"}],"marks":[{"type":"modification","attrs":{"id":null,"type":"nodeType","attrName":null,"previousValue":"paragraph","newValue":"heading"}},{"type":"modification","attrs":{"id":null,"type":"attr","attrName":"level","previousValue":null,"newValue":1}}]}]},{"type":"blockContainer","attrs":{"id":"ref2","textColor":"default","backgroundColor":"default"},"content":[{"type":"paragraph","attrs":{"textAlignment":"left"},"content":[{"type":"text","text":"Hello, "},{"type":"mention","attrs":{"user":"John Doe"}},{"type":"text","text":"! "},{"type":"text","marks":[{"type":"bold"}],"text":"How are you doing?"},{"type":"text","text":" "},{"type":"text","marks":[{"type":"textColor","attrs":{"stringValue":"blue"}}],"text":"This text is blue!"}]}]},{"type":"blockContainer","attrs":{"id":"ref3","textColor":"default","backgroundColor":"default"},"content":[{"type":"paragraph","attrs":{"textAlignment":"left"},"content":[{"type":"text","text":"Hello, world! "},{"type":"text","marks":[{"type":"bold"}],"text":"Bold text. "},{"type":"text","marks":[{"type":"link","attrs":{"href":"https://www.google.com","target":"_blank","rel":"noopener noreferrer nofollow","class":null}}],"text":"Link."}]}]}]}]}", - "I {"type":"doc","content":[{"type":"blockGroup","content":[{"type":"blockContainer","attrs":{"id":"ref1","textColor":"default","backgroundColor":"default"},"content":[{"type":"heading","attrs":{"textAlignment":"left","level":1},"content":[{"type":"text","marks":[{"type":"deletion","attrs":{"id":null}}],"text":"Hello"},{"type":"text","marks":[{"type":"insertion","attrs":{"id":null}}],"text":"Wh"},{"type":"text","text":", world!"}],"marks":[{"type":"modification","attrs":{"id":null,"type":"nodeType","attrName":null,"previousValue":"paragraph","newValue":"heading"}},{"type":"modification","attrs":{"id":null,"type":"attr","attrName":"level","previousValue":null,"newValue":1}}]}]},{"type":"blockContainer","attrs":{"id":"ref2","textColor":"default","backgroundColor":"default"},"content":[{"type":"paragraph","attrs":{"textAlignment":"left"},"content":[{"type":"text","text":"Hello, "},{"type":"mention","attrs":{"user":"John Doe"}},{"type":"text","text":"! "},{"type":"text","marks":[{"type":"bold"}],"text":"How are you doing?"},{"type":"text","text":" "},{"type":"text","marks":[{"type":"textColor","attrs":{"stringValue":"blue"}}],"text":"This text is blue!"}]}]},{"type":"blockContainer","attrs":{"id":"ref3","textColor":"default","backgroundColor":"default"},"content":[{"type":"paragraph","attrs":{"textAlignment":"left"},"content":[{"type":"text","text":"Hello, world! "},{"type":"text","marks":[{"type":"bold"}],"text":"Bold text. "},{"type":"text","marks":[{"type":"link","attrs":{"href":"https://www.google.com","target":"_blank","rel":"noopener noreferrer nofollow","class":null}}],"text":"Link."}]}]}]}]}", - "I {"type":"doc","content":[{"type":"blockGroup","content":[{"type":"blockContainer","attrs":{"id":"ref1","textColor":"default","backgroundColor":"default"},"content":[{"type":"heading","attrs":{"textAlignment":"left","level":1},"content":[{"type":"text","marks":[{"type":"deletion","attrs":{"id":null}}],"text":"Hello"},{"type":"text","marks":[{"type":"insertion","attrs":{"id":null}}],"text":"Wha"},{"type":"text","text":", world!"}],"marks":[{"type":"modification","attrs":{"id":null,"type":"nodeType","attrName":null,"previousValue":"paragraph","newValue":"heading"}},{"type":"modification","attrs":{"id":null,"type":"attr","attrName":"level","previousValue":null,"newValue":1}}]}]},{"type":"blockContainer","attrs":{"id":"ref2","textColor":"default","backgroundColor":"default"},"content":[{"type":"paragraph","attrs":{"textAlignment":"left"},"content":[{"type":"text","text":"Hello, "},{"type":"mention","attrs":{"user":"John Doe"}},{"type":"text","text":"! "},{"type":"text","marks":[{"type":"bold"}],"text":"How are you doing?"},{"type":"text","text":" "},{"type":"text","marks":[{"type":"textColor","attrs":{"stringValue":"blue"}}],"text":"This text is blue!"}]}]},{"type":"blockContainer","attrs":{"id":"ref3","textColor":"default","backgroundColor":"default"},"content":[{"type":"paragraph","attrs":{"textAlignment":"left"},"content":[{"type":"text","text":"Hello, world! "},{"type":"text","marks":[{"type":"bold"}],"text":"Bold text. "},{"type":"text","marks":[{"type":"link","attrs":{"href":"https://www.google.com","target":"_blank","rel":"noopener noreferrer nofollow","class":null}}],"text":"Link."}]}]}]}]}", - "I {"type":"doc","content":[{"type":"blockGroup","content":[{"type":"blockContainer","attrs":{"id":"ref1","textColor":"default","backgroundColor":"default"},"content":[{"type":"heading","attrs":{"textAlignment":"left","level":1},"content":[{"type":"text","marks":[{"type":"deletion","attrs":{"id":null}}],"text":"Hello"},{"type":"text","marks":[{"type":"insertion","attrs":{"id":null}}],"text":"What"},{"type":"text","text":", world!"}],"marks":[{"type":"modification","attrs":{"id":null,"type":"nodeType","attrName":null,"previousValue":"paragraph","newValue":"heading"}},{"type":"modification","attrs":{"id":null,"type":"attr","attrName":"level","previousValue":null,"newValue":1}}]}]},{"type":"blockContainer","attrs":{"id":"ref2","textColor":"default","backgroundColor":"default"},"content":[{"type":"paragraph","attrs":{"textAlignment":"left"},"content":[{"type":"text","text":"Hello, "},{"type":"mention","attrs":{"user":"John Doe"}},{"type":"text","text":"! "},{"type":"text","marks":[{"type":"bold"}],"text":"How are you doing?"},{"type":"text","text":" "},{"type":"text","marks":[{"type":"textColor","attrs":{"stringValue":"blue"}}],"text":"This text is blue!"}]}]},{"type":"blockContainer","attrs":{"id":"ref3","textColor":"default","backgroundColor":"default"},"content":[{"type":"paragraph","attrs":{"textAlignment":"left"},"content":[{"type":"text","text":"Hello, world! "},{"type":"text","marks":[{"type":"bold"}],"text":"Bold text. "},{"type":"text","marks":[{"type":"link","attrs":{"href":"https://www.google.com","target":"_blank","rel":"noopener noreferrer nofollow","class":null}}],"text":"Link."}]}]}]}]}", - "I {"type":"doc","content":[{"type":"blockGroup","content":[{"type":"blockContainer","attrs":{"id":"ref1","textColor":"default","backgroundColor":"default"},"content":[{"type":"heading","attrs":{"textAlignment":"left","level":1},"content":[{"type":"text","marks":[{"type":"deletion","attrs":{"id":null}}],"text":"Hello"},{"type":"text","marks":[{"type":"insertion","attrs":{"id":null}}],"text":"What'"},{"type":"text","text":", world!"}],"marks":[{"type":"modification","attrs":{"id":null,"type":"nodeType","attrName":null,"previousValue":"paragraph","newValue":"heading"}},{"type":"modification","attrs":{"id":null,"type":"attr","attrName":"level","previousValue":null,"newValue":1}}]}]},{"type":"blockContainer","attrs":{"id":"ref2","textColor":"default","backgroundColor":"default"},"content":[{"type":"paragraph","attrs":{"textAlignment":"left"},"content":[{"type":"text","text":"Hello, "},{"type":"mention","attrs":{"user":"John Doe"}},{"type":"text","text":"! "},{"type":"text","marks":[{"type":"bold"}],"text":"How are you doing?"},{"type":"text","text":" "},{"type":"text","marks":[{"type":"textColor","attrs":{"stringValue":"blue"}}],"text":"This text is blue!"}]}]},{"type":"blockContainer","attrs":{"id":"ref3","textColor":"default","backgroundColor":"default"},"content":[{"type":"paragraph","attrs":{"textAlignment":"left"},"content":[{"type":"text","text":"Hello, world! "},{"type":"text","marks":[{"type":"bold"}],"text":"Bold text. "},{"type":"text","marks":[{"type":"link","attrs":{"href":"https://www.google.com","target":"_blank","rel":"noopener noreferrer nofollow","class":null}}],"text":"Link."}]}]}]}]}", - "I {"type":"doc","content":[{"type":"blockGroup","content":[{"type":"blockContainer","attrs":{"id":"ref1","textColor":"default","backgroundColor":"default"},"content":[{"type":"heading","attrs":{"textAlignment":"left","level":1},"content":[{"type":"text","marks":[{"type":"deletion","attrs":{"id":null}}],"text":"Hello"},{"type":"text","marks":[{"type":"insertion","attrs":{"id":null}}],"text":"What's"},{"type":"text","text":", world!"}],"marks":[{"type":"modification","attrs":{"id":null,"type":"nodeType","attrName":null,"previousValue":"paragraph","newValue":"heading"}},{"type":"modification","attrs":{"id":null,"type":"attr","attrName":"level","previousValue":null,"newValue":1}}]}]},{"type":"blockContainer","attrs":{"id":"ref2","textColor":"default","backgroundColor":"default"},"content":[{"type":"paragraph","attrs":{"textAlignment":"left"},"content":[{"type":"text","text":"Hello, "},{"type":"mention","attrs":{"user":"John Doe"}},{"type":"text","text":"! "},{"type":"text","marks":[{"type":"bold"}],"text":"How are you doing?"},{"type":"text","text":" "},{"type":"text","marks":[{"type":"textColor","attrs":{"stringValue":"blue"}}],"text":"This text is blue!"}]}]},{"type":"blockContainer","attrs":{"id":"ref3","textColor":"default","backgroundColor":"default"},"content":[{"type":"paragraph","attrs":{"textAlignment":"left"},"content":[{"type":"text","text":"Hello, world! "},{"type":"text","marks":[{"type":"bold"}],"text":"Bold text. "},{"type":"text","marks":[{"type":"link","attrs":{"href":"https://www.google.com","target":"_blank","rel":"noopener noreferrer nofollow","class":null}}],"text":"Link."}]}]}]}]}", - "I {"type":"doc","content":[{"type":"blockGroup","content":[{"type":"blockContainer","attrs":{"id":"ref1","textColor":"default","backgroundColor":"default"},"content":[{"type":"heading","attrs":{"textAlignment":"left","level":1},"content":[{"type":"text","marks":[{"type":"deletion","attrs":{"id":null}}],"text":"Hello"},{"type":"text","marks":[{"type":"insertion","attrs":{"id":null}}],"text":"What's "},{"type":"text","text":", world!"}],"marks":[{"type":"modification","attrs":{"id":null,"type":"nodeType","attrName":null,"previousValue":"paragraph","newValue":"heading"}},{"type":"modification","attrs":{"id":null,"type":"attr","attrName":"level","previousValue":null,"newValue":1}}]}]},{"type":"blockContainer","attrs":{"id":"ref2","textColor":"default","backgroundColor":"default"},"content":[{"type":"paragraph","attrs":{"textAlignment":"left"},"content":[{"type":"text","text":"Hello, "},{"type":"mention","attrs":{"user":"John Doe"}},{"type":"text","text":"! "},{"type":"text","marks":[{"type":"bold"}],"text":"How are you doing?"},{"type":"text","text":" "},{"type":"text","marks":[{"type":"textColor","attrs":{"stringValue":"blue"}}],"text":"This text is blue!"}]}]},{"type":"blockContainer","attrs":{"id":"ref3","textColor":"default","backgroundColor":"default"},"content":[{"type":"paragraph","attrs":{"textAlignment":"left"},"content":[{"type":"text","text":"Hello, world! "},{"type":"text","marks":[{"type":"bold"}],"text":"Bold text. "},{"type":"text","marks":[{"type":"link","attrs":{"href":"https://www.google.com","target":"_blank","rel":"noopener noreferrer nofollow","class":null}}],"text":"Link."}]}]}]}]}", - "I {"type":"doc","content":[{"type":"blockGroup","content":[{"type":"blockContainer","attrs":{"id":"ref1","textColor":"default","backgroundColor":"default"},"content":[{"type":"heading","attrs":{"textAlignment":"left","level":1},"content":[{"type":"text","marks":[{"type":"deletion","attrs":{"id":null}}],"text":"Hello"},{"type":"text","marks":[{"type":"insertion","attrs":{"id":null}}],"text":"What's u"},{"type":"text","text":", world!"}],"marks":[{"type":"modification","attrs":{"id":null,"type":"nodeType","attrName":null,"previousValue":"paragraph","newValue":"heading"}},{"type":"modification","attrs":{"id":null,"type":"attr","attrName":"level","previousValue":null,"newValue":1}}]}]},{"type":"blockContainer","attrs":{"id":"ref2","textColor":"default","backgroundColor":"default"},"content":[{"type":"paragraph","attrs":{"textAlignment":"left"},"content":[{"type":"text","text":"Hello, "},{"type":"mention","attrs":{"user":"John Doe"}},{"type":"text","text":"! "},{"type":"text","marks":[{"type":"bold"}],"text":"How are you doing?"},{"type":"text","text":" "},{"type":"text","marks":[{"type":"textColor","attrs":{"stringValue":"blue"}}],"text":"This text is blue!"}]}]},{"type":"blockContainer","attrs":{"id":"ref3","textColor":"default","backgroundColor":"default"},"content":[{"type":"paragraph","attrs":{"textAlignment":"left"},"content":[{"type":"text","text":"Hello, world! "},{"type":"text","marks":[{"type":"bold"}],"text":"Bold text. "},{"type":"text","marks":[{"type":"link","attrs":{"href":"https://www.google.com","target":"_blank","rel":"noopener noreferrer nofollow","class":null}}],"text":"Link."}]}]}]}]}", - "I {"type":"doc","content":[{"type":"blockGroup","content":[{"type":"blockContainer","attrs":{"id":"ref1","textColor":"default","backgroundColor":"default"},"content":[{"type":"heading","attrs":{"textAlignment":"left","level":1},"content":[{"type":"text","marks":[{"type":"deletion","attrs":{"id":null}}],"text":"Hello"},{"type":"text","marks":[{"type":"insertion","attrs":{"id":null}}],"text":"What's up"},{"type":"text","text":", world!"}],"marks":[{"type":"modification","attrs":{"id":null,"type":"nodeType","attrName":null,"previousValue":"paragraph","newValue":"heading"}},{"type":"modification","attrs":{"id":null,"type":"attr","attrName":"level","previousValue":null,"newValue":1}}]}]},{"type":"blockContainer","attrs":{"id":"ref2","textColor":"default","backgroundColor":"default"},"content":[{"type":"paragraph","attrs":{"textAlignment":"left"},"content":[{"type":"text","text":"Hello, "},{"type":"mention","attrs":{"user":"John Doe"}},{"type":"text","text":"! "},{"type":"text","marks":[{"type":"bold"}],"text":"How are you doing?"},{"type":"text","text":" "},{"type":"text","marks":[{"type":"textColor","attrs":{"stringValue":"blue"}}],"text":"This text is blue!"}]}]},{"type":"blockContainer","attrs":{"id":"ref3","textColor":"default","backgroundColor":"default"},"content":[{"type":"paragraph","attrs":{"textAlignment":"left"},"content":[{"type":"text","text":"Hello, world! "},{"type":"text","marks":[{"type":"bold"}],"text":"Bold text. "},{"type":"text","marks":[{"type":"link","attrs":{"href":"https://www.google.com","target":"_blank","rel":"noopener noreferrer nofollow","class":null}}],"text":"Link."}]}]}]}]}", + "R {"type":"doc","content":[{"type":"blockGroup","content":[{"type":"blockContainer","attrs":{"id":"ref1","textColor":"default","backgroundColor":"default"},"content":[{"type":"heading","attrs":{"textAlignment":"left","level":1,"isTogglable":false},"content":[{"type":"text","text":"Hello, world!"}],"marks":[{"type":"modification","attrs":{"id":null,"type":"nodeType","attrName":null,"previousValue":"paragraph","newValue":"heading"}},{"type":"modification","attrs":{"id":null,"type":"attr","attrName":"level","previousValue":null,"newValue":1}},{"type":"modification","attrs":{"id":null,"type":"attr","attrName":"isTogglable","previousValue":null,"newValue":false}}]}]},{"type":"blockContainer","attrs":{"id":"ref2","textColor":"default","backgroundColor":"default"},"content":[{"type":"paragraph","attrs":{"textAlignment":"left"},"content":[{"type":"text","text":"Hello, "},{"type":"mention","attrs":{"user":"John Doe"}},{"type":"text","text":"! "},{"type":"text","marks":[{"type":"bold"}],"text":"How are you doing?"},{"type":"text","text":" "},{"type":"text","marks":[{"type":"textColor","attrs":{"stringValue":"blue"}}],"text":"This text is blue!"}]}]},{"type":"blockContainer","attrs":{"id":"ref3","textColor":"default","backgroundColor":"default"},"content":[{"type":"paragraph","attrs":{"textAlignment":"left"},"content":[{"type":"text","text":"Hello, world! "},{"type":"text","marks":[{"type":"bold"}],"text":"Bold text. "},{"type":"text","marks":[{"type":"link","attrs":{"href":"https://www.google.com","target":"_blank","rel":"noopener noreferrer nofollow","class":null}}],"text":"Link."}]}]}]}]}", + "S {"type":"doc","content":[{"type":"blockGroup","content":[{"type":"blockContainer","attrs":{"id":"ref1","textColor":"default","backgroundColor":"default"},"content":[{"type":"heading","attrs":{"textAlignment":"left","level":1,"isTogglable":false},"content":[{"type":"text","text":"Hello, world!"}],"marks":[{"type":"modification","attrs":{"id":null,"type":"nodeType","attrName":null,"previousValue":"paragraph","newValue":"heading"}},{"type":"modification","attrs":{"id":null,"type":"attr","attrName":"level","previousValue":null,"newValue":1}},{"type":"modification","attrs":{"id":null,"type":"attr","attrName":"isTogglable","previousValue":null,"newValue":false}}]}]},{"type":"blockContainer","attrs":{"id":"ref2","textColor":"default","backgroundColor":"default"},"content":[{"type":"paragraph","attrs":{"textAlignment":"left"},"content":[{"type":"text","text":"Hello, "},{"type":"mention","attrs":{"user":"John Doe"}},{"type":"text","text":"! "},{"type":"text","marks":[{"type":"bold"}],"text":"How are you doing?"},{"type":"text","text":" "},{"type":"text","marks":[{"type":"textColor","attrs":{"stringValue":"blue"}}],"text":"This text is blue!"}]}]},{"type":"blockContainer","attrs":{"id":"ref3","textColor":"default","backgroundColor":"default"},"content":[{"type":"paragraph","attrs":{"textAlignment":"left"},"content":[{"type":"text","text":"Hello, world! "},{"type":"text","marks":[{"type":"bold"}],"text":"Bold text. "},{"type":"text","marks":[{"type":"link","attrs":{"href":"https://www.google.com","target":"_blank","rel":"noopener noreferrer nofollow","class":null}}],"text":"Link."}]}]}]}]}", + "R {"type":"doc","content":[{"type":"blockGroup","content":[{"type":"blockContainer","attrs":{"id":"ref1","textColor":"default","backgroundColor":"default"},"content":[{"type":"heading","attrs":{"textAlignment":"left","level":1,"isTogglable":false},"content":[{"type":"text","marks":[{"type":"deletion","attrs":{"id":null}}],"text":"Hello"},{"type":"text","marks":[{"type":"insertion","attrs":{"id":null}}],"text":"W"},{"type":"text","text":", world!"}],"marks":[{"type":"modification","attrs":{"id":null,"type":"nodeType","attrName":null,"previousValue":"paragraph","newValue":"heading"}},{"type":"modification","attrs":{"id":null,"type":"attr","attrName":"level","previousValue":null,"newValue":1}},{"type":"modification","attrs":{"id":null,"type":"attr","attrName":"isTogglable","previousValue":null,"newValue":false}}]}]},{"type":"blockContainer","attrs":{"id":"ref2","textColor":"default","backgroundColor":"default"},"content":[{"type":"paragraph","attrs":{"textAlignment":"left"},"content":[{"type":"text","text":"Hello, "},{"type":"mention","attrs":{"user":"John Doe"}},{"type":"text","text":"! "},{"type":"text","marks":[{"type":"bold"}],"text":"How are you doing?"},{"type":"text","text":" "},{"type":"text","marks":[{"type":"textColor","attrs":{"stringValue":"blue"}}],"text":"This text is blue!"}]}]},{"type":"blockContainer","attrs":{"id":"ref3","textColor":"default","backgroundColor":"default"},"content":[{"type":"paragraph","attrs":{"textAlignment":"left"},"content":[{"type":"text","text":"Hello, world! "},{"type":"text","marks":[{"type":"bold"}],"text":"Bold text. "},{"type":"text","marks":[{"type":"link","attrs":{"href":"https://www.google.com","target":"_blank","rel":"noopener noreferrer nofollow","class":null}}],"text":"Link."}]}]}]}]}", + "I {"type":"doc","content":[{"type":"blockGroup","content":[{"type":"blockContainer","attrs":{"id":"ref1","textColor":"default","backgroundColor":"default"},"content":[{"type":"heading","attrs":{"textAlignment":"left","level":1,"isTogglable":false},"content":[{"type":"text","marks":[{"type":"deletion","attrs":{"id":null}}],"text":"Hello"},{"type":"text","marks":[{"type":"insertion","attrs":{"id":null}}],"text":"Wh"},{"type":"text","text":", world!"}],"marks":[{"type":"modification","attrs":{"id":null,"type":"nodeType","attrName":null,"previousValue":"paragraph","newValue":"heading"}},{"type":"modification","attrs":{"id":null,"type":"attr","attrName":"level","previousValue":null,"newValue":1}},{"type":"modification","attrs":{"id":null,"type":"attr","attrName":"isTogglable","previousValue":null,"newValue":false}}]}]},{"type":"blockContainer","attrs":{"id":"ref2","textColor":"default","backgroundColor":"default"},"content":[{"type":"paragraph","attrs":{"textAlignment":"left"},"content":[{"type":"text","text":"Hello, "},{"type":"mention","attrs":{"user":"John Doe"}},{"type":"text","text":"! "},{"type":"text","marks":[{"type":"bold"}],"text":"How are you doing?"},{"type":"text","text":" "},{"type":"text","marks":[{"type":"textColor","attrs":{"stringValue":"blue"}}],"text":"This text is blue!"}]}]},{"type":"blockContainer","attrs":{"id":"ref3","textColor":"default","backgroundColor":"default"},"content":[{"type":"paragraph","attrs":{"textAlignment":"left"},"content":[{"type":"text","text":"Hello, world! "},{"type":"text","marks":[{"type":"bold"}],"text":"Bold text. "},{"type":"text","marks":[{"type":"link","attrs":{"href":"https://www.google.com","target":"_blank","rel":"noopener noreferrer nofollow","class":null}}],"text":"Link."}]}]}]}]}", + "I {"type":"doc","content":[{"type":"blockGroup","content":[{"type":"blockContainer","attrs":{"id":"ref1","textColor":"default","backgroundColor":"default"},"content":[{"type":"heading","attrs":{"textAlignment":"left","level":1,"isTogglable":false},"content":[{"type":"text","marks":[{"type":"deletion","attrs":{"id":null}}],"text":"Hello"},{"type":"text","marks":[{"type":"insertion","attrs":{"id":null}}],"text":"Wha"},{"type":"text","text":", world!"}],"marks":[{"type":"modification","attrs":{"id":null,"type":"nodeType","attrName":null,"previousValue":"paragraph","newValue":"heading"}},{"type":"modification","attrs":{"id":null,"type":"attr","attrName":"level","previousValue":null,"newValue":1}},{"type":"modification","attrs":{"id":null,"type":"attr","attrName":"isTogglable","previousValue":null,"newValue":false}}]}]},{"type":"blockContainer","attrs":{"id":"ref2","textColor":"default","backgroundColor":"default"},"content":[{"type":"paragraph","attrs":{"textAlignment":"left"},"content":[{"type":"text","text":"Hello, "},{"type":"mention","attrs":{"user":"John Doe"}},{"type":"text","text":"! "},{"type":"text","marks":[{"type":"bold"}],"text":"How are you doing?"},{"type":"text","text":" "},{"type":"text","marks":[{"type":"textColor","attrs":{"stringValue":"blue"}}],"text":"This text is blue!"}]}]},{"type":"blockContainer","attrs":{"id":"ref3","textColor":"default","backgroundColor":"default"},"content":[{"type":"paragraph","attrs":{"textAlignment":"left"},"content":[{"type":"text","text":"Hello, world! "},{"type":"text","marks":[{"type":"bold"}],"text":"Bold text. "},{"type":"text","marks":[{"type":"link","attrs":{"href":"https://www.google.com","target":"_blank","rel":"noopener noreferrer nofollow","class":null}}],"text":"Link."}]}]}]}]}", + "I {"type":"doc","content":[{"type":"blockGroup","content":[{"type":"blockContainer","attrs":{"id":"ref1","textColor":"default","backgroundColor":"default"},"content":[{"type":"heading","attrs":{"textAlignment":"left","level":1,"isTogglable":false},"content":[{"type":"text","marks":[{"type":"deletion","attrs":{"id":null}}],"text":"Hello"},{"type":"text","marks":[{"type":"insertion","attrs":{"id":null}}],"text":"What"},{"type":"text","text":", world!"}],"marks":[{"type":"modification","attrs":{"id":null,"type":"nodeType","attrName":null,"previousValue":"paragraph","newValue":"heading"}},{"type":"modification","attrs":{"id":null,"type":"attr","attrName":"level","previousValue":null,"newValue":1}},{"type":"modification","attrs":{"id":null,"type":"attr","attrName":"isTogglable","previousValue":null,"newValue":false}}]}]},{"type":"blockContainer","attrs":{"id":"ref2","textColor":"default","backgroundColor":"default"},"content":[{"type":"paragraph","attrs":{"textAlignment":"left"},"content":[{"type":"text","text":"Hello, "},{"type":"mention","attrs":{"user":"John Doe"}},{"type":"text","text":"! "},{"type":"text","marks":[{"type":"bold"}],"text":"How are you doing?"},{"type":"text","text":" "},{"type":"text","marks":[{"type":"textColor","attrs":{"stringValue":"blue"}}],"text":"This text is blue!"}]}]},{"type":"blockContainer","attrs":{"id":"ref3","textColor":"default","backgroundColor":"default"},"content":[{"type":"paragraph","attrs":{"textAlignment":"left"},"content":[{"type":"text","text":"Hello, world! "},{"type":"text","marks":[{"type":"bold"}],"text":"Bold text. "},{"type":"text","marks":[{"type":"link","attrs":{"href":"https://www.google.com","target":"_blank","rel":"noopener noreferrer nofollow","class":null}}],"text":"Link."}]}]}]}]}", + "I {"type":"doc","content":[{"type":"blockGroup","content":[{"type":"blockContainer","attrs":{"id":"ref1","textColor":"default","backgroundColor":"default"},"content":[{"type":"heading","attrs":{"textAlignment":"left","level":1,"isTogglable":false},"content":[{"type":"text","marks":[{"type":"deletion","attrs":{"id":null}}],"text":"Hello"},{"type":"text","marks":[{"type":"insertion","attrs":{"id":null}}],"text":"What'"},{"type":"text","text":", world!"}],"marks":[{"type":"modification","attrs":{"id":null,"type":"nodeType","attrName":null,"previousValue":"paragraph","newValue":"heading"}},{"type":"modification","attrs":{"id":null,"type":"attr","attrName":"level","previousValue":null,"newValue":1}},{"type":"modification","attrs":{"id":null,"type":"attr","attrName":"isTogglable","previousValue":null,"newValue":false}}]}]},{"type":"blockContainer","attrs":{"id":"ref2","textColor":"default","backgroundColor":"default"},"content":[{"type":"paragraph","attrs":{"textAlignment":"left"},"content":[{"type":"text","text":"Hello, "},{"type":"mention","attrs":{"user":"John Doe"}},{"type":"text","text":"! "},{"type":"text","marks":[{"type":"bold"}],"text":"How are you doing?"},{"type":"text","text":" "},{"type":"text","marks":[{"type":"textColor","attrs":{"stringValue":"blue"}}],"text":"This text is blue!"}]}]},{"type":"blockContainer","attrs":{"id":"ref3","textColor":"default","backgroundColor":"default"},"content":[{"type":"paragraph","attrs":{"textAlignment":"left"},"content":[{"type":"text","text":"Hello, world! "},{"type":"text","marks":[{"type":"bold"}],"text":"Bold text. "},{"type":"text","marks":[{"type":"link","attrs":{"href":"https://www.google.com","target":"_blank","rel":"noopener noreferrer nofollow","class":null}}],"text":"Link."}]}]}]}]}", + "I {"type":"doc","content":[{"type":"blockGroup","content":[{"type":"blockContainer","attrs":{"id":"ref1","textColor":"default","backgroundColor":"default"},"content":[{"type":"heading","attrs":{"textAlignment":"left","level":1,"isTogglable":false},"content":[{"type":"text","marks":[{"type":"deletion","attrs":{"id":null}}],"text":"Hello"},{"type":"text","marks":[{"type":"insertion","attrs":{"id":null}}],"text":"What's"},{"type":"text","text":", world!"}],"marks":[{"type":"modification","attrs":{"id":null,"type":"nodeType","attrName":null,"previousValue":"paragraph","newValue":"heading"}},{"type":"modification","attrs":{"id":null,"type":"attr","attrName":"level","previousValue":null,"newValue":1}},{"type":"modification","attrs":{"id":null,"type":"attr","attrName":"isTogglable","previousValue":null,"newValue":false}}]}]},{"type":"blockContainer","attrs":{"id":"ref2","textColor":"default","backgroundColor":"default"},"content":[{"type":"paragraph","attrs":{"textAlignment":"left"},"content":[{"type":"text","text":"Hello, "},{"type":"mention","attrs":{"user":"John Doe"}},{"type":"text","text":"! "},{"type":"text","marks":[{"type":"bold"}],"text":"How are you doing?"},{"type":"text","text":" "},{"type":"text","marks":[{"type":"textColor","attrs":{"stringValue":"blue"}}],"text":"This text is blue!"}]}]},{"type":"blockContainer","attrs":{"id":"ref3","textColor":"default","backgroundColor":"default"},"content":[{"type":"paragraph","attrs":{"textAlignment":"left"},"content":[{"type":"text","text":"Hello, world! "},{"type":"text","marks":[{"type":"bold"}],"text":"Bold text. "},{"type":"text","marks":[{"type":"link","attrs":{"href":"https://www.google.com","target":"_blank","rel":"noopener noreferrer nofollow","class":null}}],"text":"Link."}]}]}]}]}", + "I {"type":"doc","content":[{"type":"blockGroup","content":[{"type":"blockContainer","attrs":{"id":"ref1","textColor":"default","backgroundColor":"default"},"content":[{"type":"heading","attrs":{"textAlignment":"left","level":1,"isTogglable":false},"content":[{"type":"text","marks":[{"type":"deletion","attrs":{"id":null}}],"text":"Hello"},{"type":"text","marks":[{"type":"insertion","attrs":{"id":null}}],"text":"What's "},{"type":"text","text":", world!"}],"marks":[{"type":"modification","attrs":{"id":null,"type":"nodeType","attrName":null,"previousValue":"paragraph","newValue":"heading"}},{"type":"modification","attrs":{"id":null,"type":"attr","attrName":"level","previousValue":null,"newValue":1}},{"type":"modification","attrs":{"id":null,"type":"attr","attrName":"isTogglable","previousValue":null,"newValue":false}}]}]},{"type":"blockContainer","attrs":{"id":"ref2","textColor":"default","backgroundColor":"default"},"content":[{"type":"paragraph","attrs":{"textAlignment":"left"},"content":[{"type":"text","text":"Hello, "},{"type":"mention","attrs":{"user":"John Doe"}},{"type":"text","text":"! "},{"type":"text","marks":[{"type":"bold"}],"text":"How are you doing?"},{"type":"text","text":" "},{"type":"text","marks":[{"type":"textColor","attrs":{"stringValue":"blue"}}],"text":"This text is blue!"}]}]},{"type":"blockContainer","attrs":{"id":"ref3","textColor":"default","backgroundColor":"default"},"content":[{"type":"paragraph","attrs":{"textAlignment":"left"},"content":[{"type":"text","text":"Hello, world! "},{"type":"text","marks":[{"type":"bold"}],"text":"Bold text. "},{"type":"text","marks":[{"type":"link","attrs":{"href":"https://www.google.com","target":"_blank","rel":"noopener noreferrer nofollow","class":null}}],"text":"Link."}]}]}]}]}", + "I {"type":"doc","content":[{"type":"blockGroup","content":[{"type":"blockContainer","attrs":{"id":"ref1","textColor":"default","backgroundColor":"default"},"content":[{"type":"heading","attrs":{"textAlignment":"left","level":1,"isTogglable":false},"content":[{"type":"text","marks":[{"type":"deletion","attrs":{"id":null}}],"text":"Hello"},{"type":"text","marks":[{"type":"insertion","attrs":{"id":null}}],"text":"What's u"},{"type":"text","text":", world!"}],"marks":[{"type":"modification","attrs":{"id":null,"type":"nodeType","attrName":null,"previousValue":"paragraph","newValue":"heading"}},{"type":"modification","attrs":{"id":null,"type":"attr","attrName":"level","previousValue":null,"newValue":1}},{"type":"modification","attrs":{"id":null,"type":"attr","attrName":"isTogglable","previousValue":null,"newValue":false}}]}]},{"type":"blockContainer","attrs":{"id":"ref2","textColor":"default","backgroundColor":"default"},"content":[{"type":"paragraph","attrs":{"textAlignment":"left"},"content":[{"type":"text","text":"Hello, "},{"type":"mention","attrs":{"user":"John Doe"}},{"type":"text","text":"! "},{"type":"text","marks":[{"type":"bold"}],"text":"How are you doing?"},{"type":"text","text":" "},{"type":"text","marks":[{"type":"textColor","attrs":{"stringValue":"blue"}}],"text":"This text is blue!"}]}]},{"type":"blockContainer","attrs":{"id":"ref3","textColor":"default","backgroundColor":"default"},"content":[{"type":"paragraph","attrs":{"textAlignment":"left"},"content":[{"type":"text","text":"Hello, world! "},{"type":"text","marks":[{"type":"bold"}],"text":"Bold text. "},{"type":"text","marks":[{"type":"link","attrs":{"href":"https://www.google.com","target":"_blank","rel":"noopener noreferrer nofollow","class":null}}],"text":"Link."}]}]}]}]}", + "I {"type":"doc","content":[{"type":"blockGroup","content":[{"type":"blockContainer","attrs":{"id":"ref1","textColor":"default","backgroundColor":"default"},"content":[{"type":"heading","attrs":{"textAlignment":"left","level":1,"isTogglable":false},"content":[{"type":"text","marks":[{"type":"deletion","attrs":{"id":null}}],"text":"Hello"},{"type":"text","marks":[{"type":"insertion","attrs":{"id":null}}],"text":"What's up"},{"type":"text","text":", world!"}],"marks":[{"type":"modification","attrs":{"id":null,"type":"nodeType","attrName":null,"previousValue":"paragraph","newValue":"heading"}},{"type":"modification","attrs":{"id":null,"type":"attr","attrName":"level","previousValue":null,"newValue":1}},{"type":"modification","attrs":{"id":null,"type":"attr","attrName":"isTogglable","previousValue":null,"newValue":false}}]}]},{"type":"blockContainer","attrs":{"id":"ref2","textColor":"default","backgroundColor":"default"},"content":[{"type":"paragraph","attrs":{"textAlignment":"left"},"content":[{"type":"text","text":"Hello, "},{"type":"mention","attrs":{"user":"John Doe"}},{"type":"text","text":"! "},{"type":"text","marks":[{"type":"bold"}],"text":"How are you doing?"},{"type":"text","text":" "},{"type":"text","marks":[{"type":"textColor","attrs":{"stringValue":"blue"}}],"text":"This text is blue!"}]}]},{"type":"blockContainer","attrs":{"id":"ref3","textColor":"default","backgroundColor":"default"},"content":[{"type":"paragraph","attrs":{"textAlignment":"left"},"content":[{"type":"text","text":"Hello, world! "},{"type":"text","marks":[{"type":"bold"}],"text":"Bold text. "},{"type":"text","marks":[{"type":"link","attrs":{"href":"https://www.google.com","target":"_blank","rel":"noopener noreferrer nofollow","class":null}}],"text":"Link."}]}]}]}]}", ] `; @@ -571,6 +571,7 @@ exports[`getStepsAsAgent > node type change 1`] = ` "content": [ { "attrs": { + "isTogglable": false, "level": 1, "textAlignment": "left", }, @@ -595,6 +596,16 @@ exports[`getStepsAsAgent > node type change 1`] = ` }, "type": "modification", }, + { + "attrs": { + "attrName": "isTogglable", + "id": null, + "newValue": false, + "previousValue": null, + "type": "attr", + }, + "type": "modification", + }, ], "type": "heading", }, diff --git a/packages/xl-ai/src/prosemirror/__snapshots__/changeset.test.ts.snap b/packages/xl-ai/src/prosemirror/__snapshots__/changeset.test.ts.snap index bfa1c99dc9..813311516b 100644 --- a/packages/xl-ai/src/prosemirror/__snapshots__/changeset.test.ts.snap +++ b/packages/xl-ai/src/prosemirror/__snapshots__/changeset.test.ts.snap @@ -971,6 +971,7 @@ exports[`update block type 1`] = ` "content": [ { "attrs": { + "isTogglable": false, "level": 1, "textAlignment": "left", }, @@ -1007,6 +1008,7 @@ exports[`update block type and content 1`] = ` "content": [ { "attrs": { + "isTogglable": false, "level": 1, "textAlignment": "left", }, diff --git a/tests/src/unit/core/formatConversion/export/__snapshots__/nodes/complex/misc.json b/tests/src/unit/core/formatConversion/export/__snapshots__/nodes/complex/misc.json index 85f484ec68..89ff22827f 100644 --- a/tests/src/unit/core/formatConversion/export/__snapshots__/nodes/complex/misc.json +++ b/tests/src/unit/core/formatConversion/export/__snapshots__/nodes/complex/misc.json @@ -8,6 +8,7 @@ "content": [ { "attrs": { + "isTogglable": false, "level": 2, "textAlignment": "right", }, diff --git a/tests/src/unit/core/formatConversion/parse/__snapshots__/html/basicBlockTypes.json b/tests/src/unit/core/formatConversion/parse/__snapshots__/html/basicBlockTypes.json index 6bc7199977..181d13da7e 100644 --- a/tests/src/unit/core/formatConversion/parse/__snapshots__/html/basicBlockTypes.json +++ b/tests/src/unit/core/formatConversion/parse/__snapshots__/html/basicBlockTypes.json @@ -11,6 +11,7 @@ "id": "1", "props": { "backgroundColor": "default", + "isTogglable": false, "level": 1, "textAlignment": "left", "textColor": "default", @@ -29,6 +30,7 @@ "id": "2", "props": { "backgroundColor": "default", + "isTogglable": false, "level": 2, "textAlignment": "left", "textColor": "default", @@ -47,6 +49,7 @@ "id": "3", "props": { "backgroundColor": "default", + "isTogglable": false, "level": 3, "textAlignment": "left", "textColor": "default", diff --git a/tests/src/unit/core/formatConversion/parse/__snapshots__/html/deepNestedContent.json b/tests/src/unit/core/formatConversion/parse/__snapshots__/html/deepNestedContent.json index 48a4125142..948ad9c3d5 100644 --- a/tests/src/unit/core/formatConversion/parse/__snapshots__/html/deepNestedContent.json +++ b/tests/src/unit/core/formatConversion/parse/__snapshots__/html/deepNestedContent.json @@ -79,6 +79,7 @@ "id": "5", "props": { "backgroundColor": "default", + "isTogglable": false, "level": 1, "textAlignment": "left", "textColor": "default", @@ -97,6 +98,7 @@ "id": "6", "props": { "backgroundColor": "default", + "isTogglable": false, "level": 2, "textAlignment": "left", "textColor": "default", @@ -115,6 +117,7 @@ "id": "7", "props": { "backgroundColor": "default", + "isTogglable": false, "level": 3, "textAlignment": "left", "textColor": "default", diff --git a/tests/src/unit/core/formatConversion/parse/__snapshots__/html/googleDocs.json b/tests/src/unit/core/formatConversion/parse/__snapshots__/html/googleDocs.json index 99d97889c5..916e8455b0 100644 --- a/tests/src/unit/core/formatConversion/parse/__snapshots__/html/googleDocs.json +++ b/tests/src/unit/core/formatConversion/parse/__snapshots__/html/googleDocs.json @@ -13,6 +13,7 @@ "id": "1", "props": { "backgroundColor": "default", + "isTogglable": false, "level": 1, "textAlignment": "left", "textColor": "default", @@ -33,6 +34,7 @@ "id": "2", "props": { "backgroundColor": "default", + "isTogglable": false, "level": 2, "textAlignment": "left", "textColor": "default", @@ -53,6 +55,7 @@ "id": "3", "props": { "backgroundColor": "default", + "isTogglable": false, "level": 3, "textAlignment": "left", "textColor": "default", diff --git a/tests/src/unit/core/formatConversion/parse/__snapshots__/html/notion.json b/tests/src/unit/core/formatConversion/parse/__snapshots__/html/notion.json index b1eb97dd2d..ec434f9b86 100644 --- a/tests/src/unit/core/formatConversion/parse/__snapshots__/html/notion.json +++ b/tests/src/unit/core/formatConversion/parse/__snapshots__/html/notion.json @@ -11,6 +11,7 @@ "id": "1", "props": { "backgroundColor": "default", + "isTogglable": false, "level": 1, "textAlignment": "left", "textColor": "default", @@ -29,6 +30,7 @@ "id": "2", "props": { "backgroundColor": "default", + "isTogglable": false, "level": 2, "textAlignment": "left", "textColor": "default", @@ -47,6 +49,7 @@ "id": "3", "props": { "backgroundColor": "default", + "isTogglable": false, "level": 3, "textAlignment": "left", "textColor": "default", diff --git a/tests/src/unit/core/formatConversion/parse/__snapshots__/html/paragraphHeadingListItem.json b/tests/src/unit/core/formatConversion/parse/__snapshots__/html/paragraphHeadingListItem.json index c113edba4c..e13e49e158 100644 --- a/tests/src/unit/core/formatConversion/parse/__snapshots__/html/paragraphHeadingListItem.json +++ b/tests/src/unit/core/formatConversion/parse/__snapshots__/html/paragraphHeadingListItem.json @@ -13,6 +13,7 @@ "id": "2", "props": { "backgroundColor": "default", + "isTogglable": false, "level": 1, "textAlignment": "left", "textColor": "default", diff --git a/tests/src/unit/core/formatConversion/parse/__snapshots__/markdown/basic.json b/tests/src/unit/core/formatConversion/parse/__snapshots__/markdown/basic.json index 632e74dcb7..5acc064534 100644 --- a/tests/src/unit/core/formatConversion/parse/__snapshots__/markdown/basic.json +++ b/tests/src/unit/core/formatConversion/parse/__snapshots__/markdown/basic.json @@ -11,6 +11,7 @@ "id": "1", "props": { "backgroundColor": "default", + "isTogglable": false, "level": 1, "textAlignment": "left", "textColor": "default", diff --git a/tests/src/unit/core/formatConversion/parse/__snapshots__/markdown/complex.json b/tests/src/unit/core/formatConversion/parse/__snapshots__/markdown/complex.json index 81ac21d79a..57998b7aca 100644 --- a/tests/src/unit/core/formatConversion/parse/__snapshots__/markdown/complex.json +++ b/tests/src/unit/core/formatConversion/parse/__snapshots__/markdown/complex.json @@ -11,6 +11,7 @@ "id": "1", "props": { "backgroundColor": "default", + "isTogglable": false, "level": 1, "textAlignment": "left", "textColor": "default", @@ -29,6 +30,7 @@ "id": "2", "props": { "backgroundColor": "default", + "isTogglable": false, "level": 2, "textAlignment": "left", "textColor": "default", @@ -47,6 +49,7 @@ "id": "3", "props": { "backgroundColor": "default", + "isTogglable": false, "level": 3, "textAlignment": "left", "textColor": "default", diff --git a/tests/src/unit/core/formatConversion/parse/__snapshots__/markdown/issue226case1.json b/tests/src/unit/core/formatConversion/parse/__snapshots__/markdown/issue226case1.json index 8ca8b088a3..016e326dba 100644 --- a/tests/src/unit/core/formatConversion/parse/__snapshots__/markdown/issue226case1.json +++ b/tests/src/unit/core/formatConversion/parse/__snapshots__/markdown/issue226case1.json @@ -62,6 +62,7 @@ "id": "4", "props": { "backgroundColor": "default", + "isTogglable": false, "level": 1, "textAlignment": "left", "textColor": "default", diff --git a/tests/src/unit/core/formatConversion/parse/__snapshots__/markdown/nested.json b/tests/src/unit/core/formatConversion/parse/__snapshots__/markdown/nested.json index df04f955b6..168f80d7da 100644 --- a/tests/src/unit/core/formatConversion/parse/__snapshots__/markdown/nested.json +++ b/tests/src/unit/core/formatConversion/parse/__snapshots__/markdown/nested.json @@ -11,6 +11,7 @@ "id": "1", "props": { "backgroundColor": "default", + "isTogglable": false, "level": 1, "textAlignment": "left", "textColor": "default", diff --git a/tests/src/unit/core/selection/incrementSelection/__snapshots__/end/basic.txt b/tests/src/unit/core/selection/incrementSelection/__snapshots__/end/basic.txt index 6775bc977e..5bfc894592 100644 --- a/tests/src/unit/core/selection/incrementSelection/__snapshots__/end/basic.txt +++ b/tests/src/unit/core/selection/incrementSelection/__snapshots__/end/basic.txt @@ -2,275 +2,275 @@ {"_meta":{"startPos":0,"endPos":0},"blocks":[]} {"_meta":{"startPos":0,"endPos":0},"blocks":[]} {"_meta":{"startPos":0,"endPos":0},"blocks":[]} -{"_meta":{"startPos":0,"endPos":4},"blocks":[{"id":"1","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"H","styles":{}}],"children":[]}],"blockCutAtEnd":"1"} -{"_meta":{"startPos":0,"endPos":5},"blocks":[{"id":"1","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"He","styles":{}}],"children":[]}],"blockCutAtEnd":"1"} -{"_meta":{"startPos":0,"endPos":6},"blocks":[{"id":"1","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"Hea","styles":{}}],"children":[]}],"blockCutAtEnd":"1"} -{"_meta":{"startPos":0,"endPos":7},"blocks":[{"id":"1","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"Head","styles":{}}],"children":[]}],"blockCutAtEnd":"1"} -{"_meta":{"startPos":0,"endPos":8},"blocks":[{"id":"1","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"Headi","styles":{}}],"children":[]}],"blockCutAtEnd":"1"} -{"_meta":{"startPos":0,"endPos":9},"blocks":[{"id":"1","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"Headin","styles":{}}],"children":[]}],"blockCutAtEnd":"1"} -{"_meta":{"startPos":0,"endPos":10},"blocks":[{"id":"1","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"Heading","styles":{}}],"children":[]}],"blockCutAtEnd":"1"} -{"_meta":{"startPos":0,"endPos":11},"blocks":[{"id":"1","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"Heading ","styles":{}}],"children":[]}],"blockCutAtEnd":"1"} -{"_meta":{"startPos":0,"endPos":13},"blocks":[{"id":"1","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"Heading 1","styles":{}}],"children":[]}]} -{"_meta":{"startPos":0,"endPos":13},"blocks":[{"id":"1","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"Heading 1","styles":{}}],"children":[]}]} -{"_meta":{"startPos":0,"endPos":13},"blocks":[{"id":"1","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"Heading 1","styles":{}}],"children":[]}]} -{"_meta":{"startPos":0,"endPos":13},"blocks":[{"id":"1","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"Heading 1","styles":{}}],"children":[]}]} -{"_meta":{"startPos":0,"endPos":13},"blocks":[{"id":"1","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"Heading 1","styles":{}}],"children":[]}]} -{"_meta":{"startPos":0,"endPos":17},"blocks":[{"id":"1","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"Heading 1","styles":{}}],"children":[{"id":"2","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"N","styles":{}}],"children":[]}]}],"blockCutAtEnd":"2"} -{"_meta":{"startPos":0,"endPos":18},"blocks":[{"id":"1","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"Heading 1","styles":{}}],"children":[{"id":"2","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Ne","styles":{}}],"children":[]}]}],"blockCutAtEnd":"2"} -{"_meta":{"startPos":0,"endPos":19},"blocks":[{"id":"1","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"Heading 1","styles":{}}],"children":[{"id":"2","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nes","styles":{}}],"children":[]}]}],"blockCutAtEnd":"2"} -{"_meta":{"startPos":0,"endPos":20},"blocks":[{"id":"1","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"Heading 1","styles":{}}],"children":[{"id":"2","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nest","styles":{}}],"children":[]}]}],"blockCutAtEnd":"2"} -{"_meta":{"startPos":0,"endPos":21},"blocks":[{"id":"1","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"Heading 1","styles":{}}],"children":[{"id":"2","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Neste","styles":{}}],"children":[]}]}],"blockCutAtEnd":"2"} -{"_meta":{"startPos":0,"endPos":22},"blocks":[{"id":"1","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"Heading 1","styles":{}}],"children":[{"id":"2","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested","styles":{}}],"children":[]}]}],"blockCutAtEnd":"2"} -{"_meta":{"startPos":0,"endPos":23},"blocks":[{"id":"1","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"Heading 1","styles":{}}],"children":[{"id":"2","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested ","styles":{}}],"children":[]}]}],"blockCutAtEnd":"2"} -{"_meta":{"startPos":0,"endPos":24},"blocks":[{"id":"1","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"Heading 1","styles":{}}],"children":[{"id":"2","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested P","styles":{}}],"children":[]}]}],"blockCutAtEnd":"2"} -{"_meta":{"startPos":0,"endPos":25},"blocks":[{"id":"1","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"Heading 1","styles":{}}],"children":[{"id":"2","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Pa","styles":{}}],"children":[]}]}],"blockCutAtEnd":"2"} -{"_meta":{"startPos":0,"endPos":26},"blocks":[{"id":"1","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"Heading 1","styles":{}}],"children":[{"id":"2","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Par","styles":{}}],"children":[]}]}],"blockCutAtEnd":"2"} -{"_meta":{"startPos":0,"endPos":27},"blocks":[{"id":"1","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"Heading 1","styles":{}}],"children":[{"id":"2","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Para","styles":{}}],"children":[]}]}],"blockCutAtEnd":"2"} -{"_meta":{"startPos":0,"endPos":28},"blocks":[{"id":"1","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"Heading 1","styles":{}}],"children":[{"id":"2","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Parag","styles":{}}],"children":[]}]}],"blockCutAtEnd":"2"} -{"_meta":{"startPos":0,"endPos":29},"blocks":[{"id":"1","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"Heading 1","styles":{}}],"children":[{"id":"2","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragr","styles":{}}],"children":[]}]}],"blockCutAtEnd":"2"} -{"_meta":{"startPos":0,"endPos":30},"blocks":[{"id":"1","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"Heading 1","styles":{}}],"children":[{"id":"2","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragra","styles":{}}],"children":[]}]}],"blockCutAtEnd":"2"} -{"_meta":{"startPos":0,"endPos":31},"blocks":[{"id":"1","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"Heading 1","styles":{}}],"children":[{"id":"2","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragrap","styles":{}}],"children":[]}]}],"blockCutAtEnd":"2"} -{"_meta":{"startPos":0,"endPos":32},"blocks":[{"id":"1","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"Heading 1","styles":{}}],"children":[{"id":"2","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph","styles":{}}],"children":[]}]}],"blockCutAtEnd":"2"} -{"_meta":{"startPos":0,"endPos":33},"blocks":[{"id":"1","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"Heading 1","styles":{}}],"children":[{"id":"2","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph ","styles":{}}],"children":[]}]}],"blockCutAtEnd":"2"} -{"_meta":{"startPos":0,"endPos":36},"blocks":[{"id":"1","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"Heading 1","styles":{}}],"children":[{"id":"2","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]}]}]} -{"_meta":{"startPos":0,"endPos":36},"blocks":[{"id":"1","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"Heading 1","styles":{}}],"children":[{"id":"2","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]}]}]} -{"_meta":{"startPos":0,"endPos":36},"blocks":[{"id":"1","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"Heading 1","styles":{}}],"children":[{"id":"2","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]}]}]} -{"_meta":{"startPos":0,"endPos":36},"blocks":[{"id":"1","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"Heading 1","styles":{}}],"children":[{"id":"2","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]}]}]} -{"_meta":{"startPos":0,"endPos":36},"blocks":[{"id":"1","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"Heading 1","styles":{}}],"children":[{"id":"2","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]}]}]} -{"_meta":{"startPos":0,"endPos":39},"blocks":[{"id":"1","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"Heading 1","styles":{}}],"children":[{"id":"2","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},{"id":"3","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"N","styles":{}}],"children":[]}]}],"blockCutAtEnd":"3"} -{"_meta":{"startPos":0,"endPos":40},"blocks":[{"id":"1","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"Heading 1","styles":{}}],"children":[{"id":"2","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},{"id":"3","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Ne","styles":{}}],"children":[]}]}],"blockCutAtEnd":"3"} -{"_meta":{"startPos":0,"endPos":41},"blocks":[{"id":"1","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"Heading 1","styles":{}}],"children":[{"id":"2","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},{"id":"3","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nes","styles":{}}],"children":[]}]}],"blockCutAtEnd":"3"} -{"_meta":{"startPos":0,"endPos":42},"blocks":[{"id":"1","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"Heading 1","styles":{}}],"children":[{"id":"2","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},{"id":"3","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nest","styles":{}}],"children":[]}]}],"blockCutAtEnd":"3"} -{"_meta":{"startPos":0,"endPos":43},"blocks":[{"id":"1","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"Heading 1","styles":{}}],"children":[{"id":"2","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},{"id":"3","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Neste","styles":{}}],"children":[]}]}],"blockCutAtEnd":"3"} -{"_meta":{"startPos":0,"endPos":44},"blocks":[{"id":"1","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"Heading 1","styles":{}}],"children":[{"id":"2","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},{"id":"3","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested","styles":{}}],"children":[]}]}],"blockCutAtEnd":"3"} -{"_meta":{"startPos":0,"endPos":45},"blocks":[{"id":"1","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"Heading 1","styles":{}}],"children":[{"id":"2","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},{"id":"3","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested ","styles":{}}],"children":[]}]}],"blockCutAtEnd":"3"} -{"_meta":{"startPos":0,"endPos":46},"blocks":[{"id":"1","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"Heading 1","styles":{}}],"children":[{"id":"2","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},{"id":"3","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested P","styles":{}}],"children":[]}]}],"blockCutAtEnd":"3"} -{"_meta":{"startPos":0,"endPos":47},"blocks":[{"id":"1","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"Heading 1","styles":{}}],"children":[{"id":"2","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},{"id":"3","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Pa","styles":{}}],"children":[]}]}],"blockCutAtEnd":"3"} -{"_meta":{"startPos":0,"endPos":48},"blocks":[{"id":"1","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"Heading 1","styles":{}}],"children":[{"id":"2","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},{"id":"3","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Par","styles":{}}],"children":[]}]}],"blockCutAtEnd":"3"} -{"_meta":{"startPos":0,"endPos":49},"blocks":[{"id":"1","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"Heading 1","styles":{}}],"children":[{"id":"2","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},{"id":"3","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Para","styles":{}}],"children":[]}]}],"blockCutAtEnd":"3"} -{"_meta":{"startPos":0,"endPos":50},"blocks":[{"id":"1","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"Heading 1","styles":{}}],"children":[{"id":"2","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},{"id":"3","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Parag","styles":{}}],"children":[]}]}],"blockCutAtEnd":"3"} -{"_meta":{"startPos":0,"endPos":51},"blocks":[{"id":"1","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"Heading 1","styles":{}}],"children":[{"id":"2","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},{"id":"3","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragr","styles":{}}],"children":[]}]}],"blockCutAtEnd":"3"} -{"_meta":{"startPos":0,"endPos":52},"blocks":[{"id":"1","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"Heading 1","styles":{}}],"children":[{"id":"2","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},{"id":"3","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragra","styles":{}}],"children":[]}]}],"blockCutAtEnd":"3"} -{"_meta":{"startPos":0,"endPos":53},"blocks":[{"id":"1","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"Heading 1","styles":{}}],"children":[{"id":"2","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},{"id":"3","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragrap","styles":{}}],"children":[]}]}],"blockCutAtEnd":"3"} -{"_meta":{"startPos":0,"endPos":54},"blocks":[{"id":"1","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"Heading 1","styles":{}}],"children":[{"id":"2","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},{"id":"3","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph","styles":{}}],"children":[]}]}],"blockCutAtEnd":"3"} -{"_meta":{"startPos":0,"endPos":55},"blocks":[{"id":"1","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"Heading 1","styles":{}}],"children":[{"id":"2","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},{"id":"3","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph ","styles":{}}],"children":[]}]}],"blockCutAtEnd":"3"} -{"_meta":{"startPos":0,"endPos":58},"blocks":[{"id":"1","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"Heading 1","styles":{}}],"children":[{"id":"2","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},{"id":"3","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]}]}]} -{"_meta":{"startPos":0,"endPos":58},"blocks":[{"id":"1","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"Heading 1","styles":{}}],"children":[{"id":"2","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},{"id":"3","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]}]}]} -{"_meta":{"startPos":0,"endPos":58},"blocks":[{"id":"1","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"Heading 1","styles":{}}],"children":[{"id":"2","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},{"id":"3","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]}]}]} -{"_meta":{"startPos":0,"endPos":58},"blocks":[{"id":"1","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"Heading 1","styles":{}}],"children":[{"id":"2","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},{"id":"3","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]}]}]} -{"_meta":{"startPos":0,"endPos":58},"blocks":[{"id":"1","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"Heading 1","styles":{}}],"children":[{"id":"2","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},{"id":"3","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]}]}]} -{"_meta":{"startPos":0,"endPos":61},"blocks":[{"id":"1","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"Heading 1","styles":{}}],"children":[{"id":"2","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},{"id":"3","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},{"id":"4","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"N","styles":{}}],"children":[]}]}],"blockCutAtEnd":"4"} -{"_meta":{"startPos":0,"endPos":62},"blocks":[{"id":"1","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"Heading 1","styles":{}}],"children":[{"id":"2","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},{"id":"3","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},{"id":"4","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Ne","styles":{}}],"children":[]}]}],"blockCutAtEnd":"4"} -{"_meta":{"startPos":0,"endPos":63},"blocks":[{"id":"1","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"Heading 1","styles":{}}],"children":[{"id":"2","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},{"id":"3","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},{"id":"4","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nes","styles":{}}],"children":[]}]}],"blockCutAtEnd":"4"} -{"_meta":{"startPos":0,"endPos":64},"blocks":[{"id":"1","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"Heading 1","styles":{}}],"children":[{"id":"2","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},{"id":"3","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},{"id":"4","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nest","styles":{}}],"children":[]}]}],"blockCutAtEnd":"4"} -{"_meta":{"startPos":0,"endPos":65},"blocks":[{"id":"1","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"Heading 1","styles":{}}],"children":[{"id":"2","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},{"id":"3","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},{"id":"4","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Neste","styles":{}}],"children":[]}]}],"blockCutAtEnd":"4"} -{"_meta":{"startPos":0,"endPos":66},"blocks":[{"id":"1","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"Heading 1","styles":{}}],"children":[{"id":"2","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},{"id":"3","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},{"id":"4","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested","styles":{}}],"children":[]}]}],"blockCutAtEnd":"4"} -{"_meta":{"startPos":0,"endPos":67},"blocks":[{"id":"1","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"Heading 1","styles":{}}],"children":[{"id":"2","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},{"id":"3","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},{"id":"4","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested ","styles":{}}],"children":[]}]}],"blockCutAtEnd":"4"} -{"_meta":{"startPos":0,"endPos":68},"blocks":[{"id":"1","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"Heading 1","styles":{}}],"children":[{"id":"2","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},{"id":"3","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},{"id":"4","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested P","styles":{}}],"children":[]}]}],"blockCutAtEnd":"4"} -{"_meta":{"startPos":0,"endPos":69},"blocks":[{"id":"1","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"Heading 1","styles":{}}],"children":[{"id":"2","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},{"id":"3","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},{"id":"4","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Pa","styles":{}}],"children":[]}]}],"blockCutAtEnd":"4"} -{"_meta":{"startPos":0,"endPos":70},"blocks":[{"id":"1","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"Heading 1","styles":{}}],"children":[{"id":"2","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},{"id":"3","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},{"id":"4","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Par","styles":{}}],"children":[]}]}],"blockCutAtEnd":"4"} -{"_meta":{"startPos":0,"endPos":71},"blocks":[{"id":"1","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"Heading 1","styles":{}}],"children":[{"id":"2","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},{"id":"3","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},{"id":"4","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Para","styles":{}}],"children":[]}]}],"blockCutAtEnd":"4"} -{"_meta":{"startPos":0,"endPos":72},"blocks":[{"id":"1","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"Heading 1","styles":{}}],"children":[{"id":"2","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},{"id":"3","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},{"id":"4","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Parag","styles":{}}],"children":[]}]}],"blockCutAtEnd":"4"} -{"_meta":{"startPos":0,"endPos":73},"blocks":[{"id":"1","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"Heading 1","styles":{}}],"children":[{"id":"2","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},{"id":"3","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},{"id":"4","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragr","styles":{}}],"children":[]}]}],"blockCutAtEnd":"4"} -{"_meta":{"startPos":0,"endPos":74},"blocks":[{"id":"1","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"Heading 1","styles":{}}],"children":[{"id":"2","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},{"id":"3","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},{"id":"4","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragra","styles":{}}],"children":[]}]}],"blockCutAtEnd":"4"} -{"_meta":{"startPos":0,"endPos":75},"blocks":[{"id":"1","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"Heading 1","styles":{}}],"children":[{"id":"2","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},{"id":"3","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},{"id":"4","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragrap","styles":{}}],"children":[]}]}],"blockCutAtEnd":"4"} -{"_meta":{"startPos":0,"endPos":76},"blocks":[{"id":"1","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"Heading 1","styles":{}}],"children":[{"id":"2","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},{"id":"3","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},{"id":"4","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph","styles":{}}],"children":[]}]}],"blockCutAtEnd":"4"} -{"_meta":{"startPos":0,"endPos":77},"blocks":[{"id":"1","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"Heading 1","styles":{}}],"children":[{"id":"2","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},{"id":"3","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},{"id":"4","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph ","styles":{}}],"children":[]}]}],"blockCutAtEnd":"4"} -{"_meta":{"startPos":0,"endPos":82},"blocks":[{"id":"1","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"Heading 1","styles":{}}],"children":[{"id":"2","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},{"id":"3","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},{"id":"4","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]}]}]} -{"_meta":{"startPos":0,"endPos":82},"blocks":[{"id":"1","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"Heading 1","styles":{}}],"children":[{"id":"2","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},{"id":"3","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},{"id":"4","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]}]}]} -{"_meta":{"startPos":0,"endPos":82},"blocks":[{"id":"1","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"Heading 1","styles":{}}],"children":[{"id":"2","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},{"id":"3","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},{"id":"4","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]}]}]} -{"_meta":{"startPos":0,"endPos":82},"blocks":[{"id":"1","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"Heading 1","styles":{}}],"children":[{"id":"2","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},{"id":"3","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},{"id":"4","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]}]}]} -{"_meta":{"startPos":0,"endPos":82},"blocks":[{"id":"1","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"Heading 1","styles":{}}],"children":[{"id":"2","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},{"id":"3","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},{"id":"4","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]}]}]} -{"_meta":{"startPos":0,"endPos":82},"blocks":[{"id":"1","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"Heading 1","styles":{}}],"children":[{"id":"2","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},{"id":"3","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},{"id":"4","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]}]}]} -{"_meta":{"startPos":0,"endPos":82},"blocks":[{"id":"1","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"Heading 1","styles":{}}],"children":[{"id":"2","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},{"id":"3","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},{"id":"4","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]}]}]} -{"_meta":{"startPos":0,"endPos":85},"blocks":[{"id":"1","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"Heading 1","styles":{}}],"children":[{"id":"2","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},{"id":"3","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},{"id":"4","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]}]},{"id":"5","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"H","styles":{}}],"children":[]}],"blockCutAtEnd":"5"} -{"_meta":{"startPos":0,"endPos":86},"blocks":[{"id":"1","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"Heading 1","styles":{}}],"children":[{"id":"2","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},{"id":"3","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},{"id":"4","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]}]},{"id":"5","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"He","styles":{}}],"children":[]}],"blockCutAtEnd":"5"} -{"_meta":{"startPos":0,"endPos":87},"blocks":[{"id":"1","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"Heading 1","styles":{}}],"children":[{"id":"2","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},{"id":"3","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},{"id":"4","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]}]},{"id":"5","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"Hea","styles":{}}],"children":[]}],"blockCutAtEnd":"5"} -{"_meta":{"startPos":0,"endPos":88},"blocks":[{"id":"1","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"Heading 1","styles":{}}],"children":[{"id":"2","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},{"id":"3","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},{"id":"4","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]}]},{"id":"5","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"Head","styles":{}}],"children":[]}],"blockCutAtEnd":"5"} -{"_meta":{"startPos":0,"endPos":89},"blocks":[{"id":"1","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"Heading 1","styles":{}}],"children":[{"id":"2","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},{"id":"3","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},{"id":"4","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]}]},{"id":"5","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"Headi","styles":{}}],"children":[]}],"blockCutAtEnd":"5"} -{"_meta":{"startPos":0,"endPos":90},"blocks":[{"id":"1","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"Heading 1","styles":{}}],"children":[{"id":"2","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},{"id":"3","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},{"id":"4","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]}]},{"id":"5","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"Headin","styles":{}}],"children":[]}],"blockCutAtEnd":"5"} -{"_meta":{"startPos":0,"endPos":91},"blocks":[{"id":"1","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"Heading 1","styles":{}}],"children":[{"id":"2","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},{"id":"3","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},{"id":"4","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]}]},{"id":"5","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"Heading","styles":{}}],"children":[]}],"blockCutAtEnd":"5"} -{"_meta":{"startPos":0,"endPos":92},"blocks":[{"id":"1","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"Heading 1","styles":{}}],"children":[{"id":"2","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},{"id":"3","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},{"id":"4","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]}]},{"id":"5","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"Heading ","styles":{}}],"children":[]}],"blockCutAtEnd":"5"} -{"_meta":{"startPos":0,"endPos":94},"blocks":[{"id":"1","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"Heading 1","styles":{}}],"children":[{"id":"2","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},{"id":"3","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},{"id":"4","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]}]},{"id":"5","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"Heading 2","styles":{}}],"children":[]}]} -{"_meta":{"startPos":0,"endPos":94},"blocks":[{"id":"1","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"Heading 1","styles":{}}],"children":[{"id":"2","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},{"id":"3","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},{"id":"4","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]}]},{"id":"5","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"Heading 2","styles":{}}],"children":[]}]} -{"_meta":{"startPos":0,"endPos":94},"blocks":[{"id":"1","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"Heading 1","styles":{}}],"children":[{"id":"2","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},{"id":"3","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},{"id":"4","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]}]},{"id":"5","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"Heading 2","styles":{}}],"children":[]}]} -{"_meta":{"startPos":0,"endPos":94},"blocks":[{"id":"1","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"Heading 1","styles":{}}],"children":[{"id":"2","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},{"id":"3","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},{"id":"4","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]}]},{"id":"5","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"Heading 2","styles":{}}],"children":[]}]} -{"_meta":{"startPos":0,"endPos":94},"blocks":[{"id":"1","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"Heading 1","styles":{}}],"children":[{"id":"2","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},{"id":"3","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},{"id":"4","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]}]},{"id":"5","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"Heading 2","styles":{}}],"children":[]}]} -{"_meta":{"startPos":0,"endPos":98},"blocks":[{"id":"1","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"Heading 1","styles":{}}],"children":[{"id":"2","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},{"id":"3","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},{"id":"4","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]}]},{"id":"5","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"Heading 2","styles":{}}],"children":[{"id":"6","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"N","styles":{}}],"children":[]}]}],"blockCutAtEnd":"6"} -{"_meta":{"startPos":0,"endPos":99},"blocks":[{"id":"1","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"Heading 1","styles":{}}],"children":[{"id":"2","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},{"id":"3","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},{"id":"4","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]}]},{"id":"5","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"Heading 2","styles":{}}],"children":[{"id":"6","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Ne","styles":{}}],"children":[]}]}],"blockCutAtEnd":"6"} -{"_meta":{"startPos":0,"endPos":100},"blocks":[{"id":"1","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"Heading 1","styles":{}}],"children":[{"id":"2","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},{"id":"3","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},{"id":"4","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]}]},{"id":"5","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"Heading 2","styles":{}}],"children":[{"id":"6","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nes","styles":{}}],"children":[]}]}],"blockCutAtEnd":"6"} -{"_meta":{"startPos":0,"endPos":101},"blocks":[{"id":"1","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"Heading 1","styles":{}}],"children":[{"id":"2","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},{"id":"3","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},{"id":"4","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]}]},{"id":"5","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"Heading 2","styles":{}}],"children":[{"id":"6","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nest","styles":{}}],"children":[]}]}],"blockCutAtEnd":"6"} -{"_meta":{"startPos":0,"endPos":102},"blocks":[{"id":"1","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"Heading 1","styles":{}}],"children":[{"id":"2","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},{"id":"3","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},{"id":"4","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]}]},{"id":"5","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"Heading 2","styles":{}}],"children":[{"id":"6","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Neste","styles":{}}],"children":[]}]}],"blockCutAtEnd":"6"} -{"_meta":{"startPos":0,"endPos":103},"blocks":[{"id":"1","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"Heading 1","styles":{}}],"children":[{"id":"2","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},{"id":"3","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},{"id":"4","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]}]},{"id":"5","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"Heading 2","styles":{}}],"children":[{"id":"6","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested","styles":{}}],"children":[]}]}],"blockCutAtEnd":"6"} -{"_meta":{"startPos":0,"endPos":104},"blocks":[{"id":"1","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"Heading 1","styles":{}}],"children":[{"id":"2","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},{"id":"3","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},{"id":"4","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]}]},{"id":"5","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"Heading 2","styles":{}}],"children":[{"id":"6","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested ","styles":{}}],"children":[]}]}],"blockCutAtEnd":"6"} -{"_meta":{"startPos":0,"endPos":105},"blocks":[{"id":"1","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"Heading 1","styles":{}}],"children":[{"id":"2","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},{"id":"3","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},{"id":"4","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]}]},{"id":"5","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"Heading 2","styles":{}}],"children":[{"id":"6","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested P","styles":{}}],"children":[]}]}],"blockCutAtEnd":"6"} -{"_meta":{"startPos":0,"endPos":106},"blocks":[{"id":"1","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"Heading 1","styles":{}}],"children":[{"id":"2","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},{"id":"3","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},{"id":"4","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]}]},{"id":"5","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"Heading 2","styles":{}}],"children":[{"id":"6","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Pa","styles":{}}],"children":[]}]}],"blockCutAtEnd":"6"} -{"_meta":{"startPos":0,"endPos":107},"blocks":[{"id":"1","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"Heading 1","styles":{}}],"children":[{"id":"2","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},{"id":"3","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},{"id":"4","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]}]},{"id":"5","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"Heading 2","styles":{}}],"children":[{"id":"6","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Par","styles":{}}],"children":[]}]}],"blockCutAtEnd":"6"} -{"_meta":{"startPos":0,"endPos":108},"blocks":[{"id":"1","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"Heading 1","styles":{}}],"children":[{"id":"2","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},{"id":"3","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},{"id":"4","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]}]},{"id":"5","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"Heading 2","styles":{}}],"children":[{"id":"6","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Para","styles":{}}],"children":[]}]}],"blockCutAtEnd":"6"} -{"_meta":{"startPos":0,"endPos":109},"blocks":[{"id":"1","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"Heading 1","styles":{}}],"children":[{"id":"2","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},{"id":"3","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},{"id":"4","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]}]},{"id":"5","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"Heading 2","styles":{}}],"children":[{"id":"6","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Parag","styles":{}}],"children":[]}]}],"blockCutAtEnd":"6"} -{"_meta":{"startPos":0,"endPos":110},"blocks":[{"id":"1","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"Heading 1","styles":{}}],"children":[{"id":"2","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},{"id":"3","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},{"id":"4","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]}]},{"id":"5","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"Heading 2","styles":{}}],"children":[{"id":"6","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragr","styles":{}}],"children":[]}]}],"blockCutAtEnd":"6"} -{"_meta":{"startPos":0,"endPos":111},"blocks":[{"id":"1","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"Heading 1","styles":{}}],"children":[{"id":"2","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},{"id":"3","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},{"id":"4","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]}]},{"id":"5","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"Heading 2","styles":{}}],"children":[{"id":"6","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragra","styles":{}}],"children":[]}]}],"blockCutAtEnd":"6"} -{"_meta":{"startPos":0,"endPos":112},"blocks":[{"id":"1","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"Heading 1","styles":{}}],"children":[{"id":"2","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},{"id":"3","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},{"id":"4","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]}]},{"id":"5","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"Heading 2","styles":{}}],"children":[{"id":"6","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragrap","styles":{}}],"children":[]}]}],"blockCutAtEnd":"6"} -{"_meta":{"startPos":0,"endPos":113},"blocks":[{"id":"1","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"Heading 1","styles":{}}],"children":[{"id":"2","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},{"id":"3","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},{"id":"4","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]}]},{"id":"5","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"Heading 2","styles":{}}],"children":[{"id":"6","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph","styles":{}}],"children":[]}]}],"blockCutAtEnd":"6"} -{"_meta":{"startPos":0,"endPos":114},"blocks":[{"id":"1","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"Heading 1","styles":{}}],"children":[{"id":"2","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},{"id":"3","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},{"id":"4","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]}]},{"id":"5","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"Heading 2","styles":{}}],"children":[{"id":"6","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph ","styles":{}}],"children":[]}]}],"blockCutAtEnd":"6"} -{"_meta":{"startPos":0,"endPos":117},"blocks":[{"id":"1","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"Heading 1","styles":{}}],"children":[{"id":"2","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},{"id":"3","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},{"id":"4","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]}]},{"id":"5","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"Heading 2","styles":{}}],"children":[{"id":"6","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]}]}]} -{"_meta":{"startPos":0,"endPos":117},"blocks":[{"id":"1","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"Heading 1","styles":{}}],"children":[{"id":"2","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},{"id":"3","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},{"id":"4","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]}]},{"id":"5","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"Heading 2","styles":{}}],"children":[{"id":"6","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]}]}]} -{"_meta":{"startPos":0,"endPos":117},"blocks":[{"id":"1","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"Heading 1","styles":{}}],"children":[{"id":"2","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},{"id":"3","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},{"id":"4","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]}]},{"id":"5","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"Heading 2","styles":{}}],"children":[{"id":"6","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]}]}]} -{"_meta":{"startPos":0,"endPos":117},"blocks":[{"id":"1","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"Heading 1","styles":{}}],"children":[{"id":"2","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},{"id":"3","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},{"id":"4","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]}]},{"id":"5","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"Heading 2","styles":{}}],"children":[{"id":"6","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]}]}]} -{"_meta":{"startPos":0,"endPos":117},"blocks":[{"id":"1","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"Heading 1","styles":{}}],"children":[{"id":"2","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},{"id":"3","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},{"id":"4","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]}]},{"id":"5","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"Heading 2","styles":{}}],"children":[{"id":"6","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]}]}]} -{"_meta":{"startPos":0,"endPos":120},"blocks":[{"id":"1","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"Heading 1","styles":{}}],"children":[{"id":"2","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},{"id":"3","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},{"id":"4","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]}]},{"id":"5","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"Heading 2","styles":{}}],"children":[{"id":"6","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},{"id":"7","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"N","styles":{}}],"children":[]}]}],"blockCutAtEnd":"7"} -{"_meta":{"startPos":0,"endPos":121},"blocks":[{"id":"1","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"Heading 1","styles":{}}],"children":[{"id":"2","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},{"id":"3","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},{"id":"4","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]}]},{"id":"5","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"Heading 2","styles":{}}],"children":[{"id":"6","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},{"id":"7","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Ne","styles":{}}],"children":[]}]}],"blockCutAtEnd":"7"} -{"_meta":{"startPos":0,"endPos":122},"blocks":[{"id":"1","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"Heading 1","styles":{}}],"children":[{"id":"2","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},{"id":"3","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},{"id":"4","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]}]},{"id":"5","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"Heading 2","styles":{}}],"children":[{"id":"6","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},{"id":"7","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nes","styles":{}}],"children":[]}]}],"blockCutAtEnd":"7"} -{"_meta":{"startPos":0,"endPos":123},"blocks":[{"id":"1","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"Heading 1","styles":{}}],"children":[{"id":"2","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},{"id":"3","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},{"id":"4","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]}]},{"id":"5","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"Heading 2","styles":{}}],"children":[{"id":"6","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},{"id":"7","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nest","styles":{}}],"children":[]}]}],"blockCutAtEnd":"7"} -{"_meta":{"startPos":0,"endPos":124},"blocks":[{"id":"1","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"Heading 1","styles":{}}],"children":[{"id":"2","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},{"id":"3","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},{"id":"4","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]}]},{"id":"5","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"Heading 2","styles":{}}],"children":[{"id":"6","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},{"id":"7","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Neste","styles":{}}],"children":[]}]}],"blockCutAtEnd":"7"} -{"_meta":{"startPos":0,"endPos":125},"blocks":[{"id":"1","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"Heading 1","styles":{}}],"children":[{"id":"2","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},{"id":"3","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},{"id":"4","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]}]},{"id":"5","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"Heading 2","styles":{}}],"children":[{"id":"6","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},{"id":"7","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested","styles":{}}],"children":[]}]}],"blockCutAtEnd":"7"} -{"_meta":{"startPos":0,"endPos":126},"blocks":[{"id":"1","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"Heading 1","styles":{}}],"children":[{"id":"2","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},{"id":"3","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},{"id":"4","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]}]},{"id":"5","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"Heading 2","styles":{}}],"children":[{"id":"6","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},{"id":"7","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested ","styles":{}}],"children":[]}]}],"blockCutAtEnd":"7"} -{"_meta":{"startPos":0,"endPos":127},"blocks":[{"id":"1","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"Heading 1","styles":{}}],"children":[{"id":"2","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},{"id":"3","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},{"id":"4","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]}]},{"id":"5","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"Heading 2","styles":{}}],"children":[{"id":"6","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},{"id":"7","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested P","styles":{}}],"children":[]}]}],"blockCutAtEnd":"7"} -{"_meta":{"startPos":0,"endPos":128},"blocks":[{"id":"1","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"Heading 1","styles":{}}],"children":[{"id":"2","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},{"id":"3","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},{"id":"4","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]}]},{"id":"5","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"Heading 2","styles":{}}],"children":[{"id":"6","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},{"id":"7","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Pa","styles":{}}],"children":[]}]}],"blockCutAtEnd":"7"} -{"_meta":{"startPos":0,"endPos":129},"blocks":[{"id":"1","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"Heading 1","styles":{}}],"children":[{"id":"2","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},{"id":"3","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},{"id":"4","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]}]},{"id":"5","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"Heading 2","styles":{}}],"children":[{"id":"6","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},{"id":"7","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Par","styles":{}}],"children":[]}]}],"blockCutAtEnd":"7"} -{"_meta":{"startPos":0,"endPos":130},"blocks":[{"id":"1","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"Heading 1","styles":{}}],"children":[{"id":"2","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},{"id":"3","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},{"id":"4","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]}]},{"id":"5","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"Heading 2","styles":{}}],"children":[{"id":"6","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},{"id":"7","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Para","styles":{}}],"children":[]}]}],"blockCutAtEnd":"7"} -{"_meta":{"startPos":0,"endPos":131},"blocks":[{"id":"1","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"Heading 1","styles":{}}],"children":[{"id":"2","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},{"id":"3","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},{"id":"4","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]}]},{"id":"5","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"Heading 2","styles":{}}],"children":[{"id":"6","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},{"id":"7","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Parag","styles":{}}],"children":[]}]}],"blockCutAtEnd":"7"} -{"_meta":{"startPos":0,"endPos":132},"blocks":[{"id":"1","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"Heading 1","styles":{}}],"children":[{"id":"2","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},{"id":"3","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},{"id":"4","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]}]},{"id":"5","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"Heading 2","styles":{}}],"children":[{"id":"6","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},{"id":"7","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragr","styles":{}}],"children":[]}]}],"blockCutAtEnd":"7"} -{"_meta":{"startPos":0,"endPos":133},"blocks":[{"id":"1","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"Heading 1","styles":{}}],"children":[{"id":"2","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},{"id":"3","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},{"id":"4","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]}]},{"id":"5","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"Heading 2","styles":{}}],"children":[{"id":"6","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},{"id":"7","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragra","styles":{}}],"children":[]}]}],"blockCutAtEnd":"7"} -{"_meta":{"startPos":0,"endPos":134},"blocks":[{"id":"1","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"Heading 1","styles":{}}],"children":[{"id":"2","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},{"id":"3","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},{"id":"4","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]}]},{"id":"5","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"Heading 2","styles":{}}],"children":[{"id":"6","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},{"id":"7","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragrap","styles":{}}],"children":[]}]}],"blockCutAtEnd":"7"} -{"_meta":{"startPos":0,"endPos":135},"blocks":[{"id":"1","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"Heading 1","styles":{}}],"children":[{"id":"2","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},{"id":"3","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},{"id":"4","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]}]},{"id":"5","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"Heading 2","styles":{}}],"children":[{"id":"6","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},{"id":"7","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph","styles":{}}],"children":[]}]}],"blockCutAtEnd":"7"} -{"_meta":{"startPos":0,"endPos":136},"blocks":[{"id":"1","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"Heading 1","styles":{}}],"children":[{"id":"2","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},{"id":"3","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},{"id":"4","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]}]},{"id":"5","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"Heading 2","styles":{}}],"children":[{"id":"6","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},{"id":"7","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph ","styles":{}}],"children":[]}]}],"blockCutAtEnd":"7"} -{"_meta":{"startPos":0,"endPos":139},"blocks":[{"id":"1","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"Heading 1","styles":{}}],"children":[{"id":"2","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},{"id":"3","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},{"id":"4","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]}]},{"id":"5","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"Heading 2","styles":{}}],"children":[{"id":"6","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},{"id":"7","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]}]}]} -{"_meta":{"startPos":0,"endPos":139},"blocks":[{"id":"1","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"Heading 1","styles":{}}],"children":[{"id":"2","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},{"id":"3","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},{"id":"4","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]}]},{"id":"5","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"Heading 2","styles":{}}],"children":[{"id":"6","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},{"id":"7","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]}]}]} -{"_meta":{"startPos":0,"endPos":139},"blocks":[{"id":"1","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"Heading 1","styles":{}}],"children":[{"id":"2","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},{"id":"3","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},{"id":"4","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]}]},{"id":"5","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"Heading 2","styles":{}}],"children":[{"id":"6","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},{"id":"7","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]}]}]} -{"_meta":{"startPos":0,"endPos":139},"blocks":[{"id":"1","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"Heading 1","styles":{}}],"children":[{"id":"2","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},{"id":"3","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},{"id":"4","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]}]},{"id":"5","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"Heading 2","styles":{}}],"children":[{"id":"6","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},{"id":"7","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]}]}]} -{"_meta":{"startPos":0,"endPos":139},"blocks":[{"id":"1","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"Heading 1","styles":{}}],"children":[{"id":"2","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},{"id":"3","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},{"id":"4","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]}]},{"id":"5","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"Heading 2","styles":{}}],"children":[{"id":"6","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},{"id":"7","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]}]}]} -{"_meta":{"startPos":0,"endPos":142},"blocks":[{"id":"1","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"Heading 1","styles":{}}],"children":[{"id":"2","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},{"id":"3","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},{"id":"4","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]}]},{"id":"5","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"Heading 2","styles":{}}],"children":[{"id":"6","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},{"id":"7","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},{"id":"8","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"N","styles":{}}],"children":[]}]}],"blockCutAtEnd":"8"} -{"_meta":{"startPos":0,"endPos":143},"blocks":[{"id":"1","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"Heading 1","styles":{}}],"children":[{"id":"2","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},{"id":"3","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},{"id":"4","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]}]},{"id":"5","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"Heading 2","styles":{}}],"children":[{"id":"6","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},{"id":"7","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},{"id":"8","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Ne","styles":{}}],"children":[]}]}],"blockCutAtEnd":"8"} -{"_meta":{"startPos":0,"endPos":144},"blocks":[{"id":"1","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"Heading 1","styles":{}}],"children":[{"id":"2","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},{"id":"3","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},{"id":"4","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]}]},{"id":"5","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"Heading 2","styles":{}}],"children":[{"id":"6","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},{"id":"7","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},{"id":"8","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nes","styles":{}}],"children":[]}]}],"blockCutAtEnd":"8"} -{"_meta":{"startPos":0,"endPos":145},"blocks":[{"id":"1","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"Heading 1","styles":{}}],"children":[{"id":"2","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},{"id":"3","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},{"id":"4","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]}]},{"id":"5","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"Heading 2","styles":{}}],"children":[{"id":"6","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},{"id":"7","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},{"id":"8","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nest","styles":{}}],"children":[]}]}],"blockCutAtEnd":"8"} -{"_meta":{"startPos":0,"endPos":146},"blocks":[{"id":"1","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"Heading 1","styles":{}}],"children":[{"id":"2","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},{"id":"3","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},{"id":"4","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]}]},{"id":"5","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"Heading 2","styles":{}}],"children":[{"id":"6","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},{"id":"7","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},{"id":"8","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Neste","styles":{}}],"children":[]}]}],"blockCutAtEnd":"8"} -{"_meta":{"startPos":0,"endPos":147},"blocks":[{"id":"1","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"Heading 1","styles":{}}],"children":[{"id":"2","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},{"id":"3","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},{"id":"4","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]}]},{"id":"5","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"Heading 2","styles":{}}],"children":[{"id":"6","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},{"id":"7","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},{"id":"8","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested","styles":{}}],"children":[]}]}],"blockCutAtEnd":"8"} -{"_meta":{"startPos":0,"endPos":148},"blocks":[{"id":"1","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"Heading 1","styles":{}}],"children":[{"id":"2","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},{"id":"3","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},{"id":"4","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]}]},{"id":"5","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"Heading 2","styles":{}}],"children":[{"id":"6","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},{"id":"7","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},{"id":"8","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested ","styles":{}}],"children":[]}]}],"blockCutAtEnd":"8"} -{"_meta":{"startPos":0,"endPos":149},"blocks":[{"id":"1","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"Heading 1","styles":{}}],"children":[{"id":"2","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},{"id":"3","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},{"id":"4","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]}]},{"id":"5","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"Heading 2","styles":{}}],"children":[{"id":"6","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},{"id":"7","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},{"id":"8","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested P","styles":{}}],"children":[]}]}],"blockCutAtEnd":"8"} -{"_meta":{"startPos":0,"endPos":150},"blocks":[{"id":"1","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"Heading 1","styles":{}}],"children":[{"id":"2","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},{"id":"3","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},{"id":"4","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]}]},{"id":"5","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"Heading 2","styles":{}}],"children":[{"id":"6","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},{"id":"7","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},{"id":"8","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Pa","styles":{}}],"children":[]}]}],"blockCutAtEnd":"8"} -{"_meta":{"startPos":0,"endPos":151},"blocks":[{"id":"1","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"Heading 1","styles":{}}],"children":[{"id":"2","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},{"id":"3","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},{"id":"4","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]}]},{"id":"5","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"Heading 2","styles":{}}],"children":[{"id":"6","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},{"id":"7","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},{"id":"8","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Par","styles":{}}],"children":[]}]}],"blockCutAtEnd":"8"} -{"_meta":{"startPos":0,"endPos":152},"blocks":[{"id":"1","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"Heading 1","styles":{}}],"children":[{"id":"2","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},{"id":"3","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},{"id":"4","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]}]},{"id":"5","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"Heading 2","styles":{}}],"children":[{"id":"6","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},{"id":"7","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},{"id":"8","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Para","styles":{}}],"children":[]}]}],"blockCutAtEnd":"8"} -{"_meta":{"startPos":0,"endPos":153},"blocks":[{"id":"1","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"Heading 1","styles":{}}],"children":[{"id":"2","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},{"id":"3","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},{"id":"4","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]}]},{"id":"5","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"Heading 2","styles":{}}],"children":[{"id":"6","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},{"id":"7","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},{"id":"8","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Parag","styles":{}}],"children":[]}]}],"blockCutAtEnd":"8"} -{"_meta":{"startPos":0,"endPos":154},"blocks":[{"id":"1","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"Heading 1","styles":{}}],"children":[{"id":"2","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},{"id":"3","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},{"id":"4","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]}]},{"id":"5","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"Heading 2","styles":{}}],"children":[{"id":"6","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},{"id":"7","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},{"id":"8","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragr","styles":{}}],"children":[]}]}],"blockCutAtEnd":"8"} -{"_meta":{"startPos":0,"endPos":155},"blocks":[{"id":"1","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"Heading 1","styles":{}}],"children":[{"id":"2","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},{"id":"3","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},{"id":"4","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]}]},{"id":"5","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"Heading 2","styles":{}}],"children":[{"id":"6","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},{"id":"7","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},{"id":"8","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragra","styles":{}}],"children":[]}]}],"blockCutAtEnd":"8"} -{"_meta":{"startPos":0,"endPos":156},"blocks":[{"id":"1","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"Heading 1","styles":{}}],"children":[{"id":"2","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},{"id":"3","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},{"id":"4","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]}]},{"id":"5","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"Heading 2","styles":{}}],"children":[{"id":"6","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},{"id":"7","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},{"id":"8","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragrap","styles":{}}],"children":[]}]}],"blockCutAtEnd":"8"} -{"_meta":{"startPos":0,"endPos":157},"blocks":[{"id":"1","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"Heading 1","styles":{}}],"children":[{"id":"2","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},{"id":"3","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},{"id":"4","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]}]},{"id":"5","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"Heading 2","styles":{}}],"children":[{"id":"6","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},{"id":"7","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},{"id":"8","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph","styles":{}}],"children":[]}]}],"blockCutAtEnd":"8"} -{"_meta":{"startPos":0,"endPos":158},"blocks":[{"id":"1","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"Heading 1","styles":{}}],"children":[{"id":"2","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},{"id":"3","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},{"id":"4","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]}]},{"id":"5","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"Heading 2","styles":{}}],"children":[{"id":"6","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},{"id":"7","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},{"id":"8","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph ","styles":{}}],"children":[]}]}],"blockCutAtEnd":"8"} -{"_meta":{"startPos":0,"endPos":163},"blocks":[{"id":"1","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"Heading 1","styles":{}}],"children":[{"id":"2","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},{"id":"3","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},{"id":"4","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]}]},{"id":"5","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"Heading 2","styles":{}}],"children":[{"id":"6","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},{"id":"7","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},{"id":"8","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]}]}]} -{"_meta":{"startPos":0,"endPos":163},"blocks":[{"id":"1","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"Heading 1","styles":{}}],"children":[{"id":"2","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},{"id":"3","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},{"id":"4","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]}]},{"id":"5","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"Heading 2","styles":{}}],"children":[{"id":"6","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},{"id":"7","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},{"id":"8","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]}]}]} -{"_meta":{"startPos":0,"endPos":163},"blocks":[{"id":"1","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"Heading 1","styles":{}}],"children":[{"id":"2","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},{"id":"3","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},{"id":"4","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]}]},{"id":"5","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"Heading 2","styles":{}}],"children":[{"id":"6","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},{"id":"7","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},{"id":"8","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]}]}]} -{"_meta":{"startPos":0,"endPos":163},"blocks":[{"id":"1","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"Heading 1","styles":{}}],"children":[{"id":"2","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},{"id":"3","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},{"id":"4","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]}]},{"id":"5","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"Heading 2","styles":{}}],"children":[{"id":"6","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},{"id":"7","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},{"id":"8","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]}]}]} -{"_meta":{"startPos":0,"endPos":163},"blocks":[{"id":"1","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"Heading 1","styles":{}}],"children":[{"id":"2","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},{"id":"3","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},{"id":"4","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]}]},{"id":"5","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"Heading 2","styles":{}}],"children":[{"id":"6","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},{"id":"7","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},{"id":"8","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]}]}]} -{"_meta":{"startPos":0,"endPos":163},"blocks":[{"id":"1","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"Heading 1","styles":{}}],"children":[{"id":"2","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},{"id":"3","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},{"id":"4","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]}]},{"id":"5","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"Heading 2","styles":{}}],"children":[{"id":"6","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},{"id":"7","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},{"id":"8","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]}]}]} -{"_meta":{"startPos":0,"endPos":163},"blocks":[{"id":"1","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"Heading 1","styles":{}}],"children":[{"id":"2","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},{"id":"3","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},{"id":"4","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]}]},{"id":"5","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"Heading 2","styles":{}}],"children":[{"id":"6","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},{"id":"7","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},{"id":"8","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]}]}]} -{"_meta":{"startPos":0,"endPos":166},"blocks":[{"id":"1","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"Heading 1","styles":{}}],"children":[{"id":"2","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},{"id":"3","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},{"id":"4","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]}]},{"id":"5","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"Heading 2","styles":{}}],"children":[{"id":"6","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},{"id":"7","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},{"id":"8","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]}]},{"id":"9","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"B","styles":{"bold":true}}],"children":[]}],"blockCutAtEnd":"9"} -{"_meta":{"startPos":0,"endPos":167},"blocks":[{"id":"1","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"Heading 1","styles":{}}],"children":[{"id":"2","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},{"id":"3","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},{"id":"4","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]}]},{"id":"5","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"Heading 2","styles":{}}],"children":[{"id":"6","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},{"id":"7","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},{"id":"8","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]}]},{"id":"9","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"Bo","styles":{"bold":true}}],"children":[]}],"blockCutAtEnd":"9"} -{"_meta":{"startPos":0,"endPos":168},"blocks":[{"id":"1","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"Heading 1","styles":{}}],"children":[{"id":"2","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},{"id":"3","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},{"id":"4","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]}]},{"id":"5","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"Heading 2","styles":{}}],"children":[{"id":"6","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},{"id":"7","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},{"id":"8","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]}]},{"id":"9","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"Bol","styles":{"bold":true}}],"children":[]}],"blockCutAtEnd":"9"} -{"_meta":{"startPos":0,"endPos":169},"blocks":[{"id":"1","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"Heading 1","styles":{}}],"children":[{"id":"2","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},{"id":"3","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},{"id":"4","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]}]},{"id":"5","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"Heading 2","styles":{}}],"children":[{"id":"6","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},{"id":"7","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},{"id":"8","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]}]},{"id":"9","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"Bold","styles":{"bold":true}}],"children":[]}],"blockCutAtEnd":"9"} -{"_meta":{"startPos":0,"endPos":170},"blocks":[{"id":"1","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"Heading 1","styles":{}}],"children":[{"id":"2","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},{"id":"3","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},{"id":"4","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]}]},{"id":"5","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"Heading 2","styles":{}}],"children":[{"id":"6","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},{"id":"7","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},{"id":"8","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]}]},{"id":"9","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"Bold","styles":{"bold":true}},{"type":"text","text":"I","styles":{"italic":true}}],"children":[]}],"blockCutAtEnd":"9"} -{"_meta":{"startPos":0,"endPos":171},"blocks":[{"id":"1","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"Heading 1","styles":{}}],"children":[{"id":"2","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},{"id":"3","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},{"id":"4","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]}]},{"id":"5","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"Heading 2","styles":{}}],"children":[{"id":"6","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},{"id":"7","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},{"id":"8","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]}]},{"id":"9","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"Bold","styles":{"bold":true}},{"type":"text","text":"It","styles":{"italic":true}}],"children":[]}],"blockCutAtEnd":"9"} -{"_meta":{"startPos":0,"endPos":172},"blocks":[{"id":"1","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"Heading 1","styles":{}}],"children":[{"id":"2","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},{"id":"3","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},{"id":"4","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]}]},{"id":"5","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"Heading 2","styles":{}}],"children":[{"id":"6","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},{"id":"7","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},{"id":"8","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]}]},{"id":"9","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"Bold","styles":{"bold":true}},{"type":"text","text":"Ita","styles":{"italic":true}}],"children":[]}],"blockCutAtEnd":"9"} -{"_meta":{"startPos":0,"endPos":173},"blocks":[{"id":"1","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"Heading 1","styles":{}}],"children":[{"id":"2","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},{"id":"3","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},{"id":"4","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]}]},{"id":"5","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"Heading 2","styles":{}}],"children":[{"id":"6","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},{"id":"7","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},{"id":"8","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]}]},{"id":"9","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"Bold","styles":{"bold":true}},{"type":"text","text":"Ital","styles":{"italic":true}}],"children":[]}],"blockCutAtEnd":"9"} -{"_meta":{"startPos":0,"endPos":174},"blocks":[{"id":"1","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"Heading 1","styles":{}}],"children":[{"id":"2","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},{"id":"3","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},{"id":"4","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]}]},{"id":"5","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"Heading 2","styles":{}}],"children":[{"id":"6","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},{"id":"7","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},{"id":"8","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]}]},{"id":"9","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"Bold","styles":{"bold":true}},{"type":"text","text":"Itali","styles":{"italic":true}}],"children":[]}],"blockCutAtEnd":"9"} -{"_meta":{"startPos":0,"endPos":175},"blocks":[{"id":"1","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"Heading 1","styles":{}}],"children":[{"id":"2","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},{"id":"3","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},{"id":"4","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]}]},{"id":"5","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"Heading 2","styles":{}}],"children":[{"id":"6","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},{"id":"7","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},{"id":"8","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]}]},{"id":"9","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"Bold","styles":{"bold":true}},{"type":"text","text":"Italic","styles":{"italic":true}}],"children":[]}],"blockCutAtEnd":"9"} -{"_meta":{"startPos":0,"endPos":176},"blocks":[{"id":"1","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"Heading 1","styles":{}}],"children":[{"id":"2","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},{"id":"3","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},{"id":"4","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]}]},{"id":"5","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"Heading 2","styles":{}}],"children":[{"id":"6","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},{"id":"7","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},{"id":"8","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]}]},{"id":"9","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"Bold","styles":{"bold":true}},{"type":"text","text":"Italic","styles":{"italic":true}},{"type":"text","text":"R","styles":{}}],"children":[]}],"blockCutAtEnd":"9"} -{"_meta":{"startPos":0,"endPos":177},"blocks":[{"id":"1","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"Heading 1","styles":{}}],"children":[{"id":"2","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},{"id":"3","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},{"id":"4","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]}]},{"id":"5","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"Heading 2","styles":{}}],"children":[{"id":"6","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},{"id":"7","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},{"id":"8","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]}]},{"id":"9","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"Bold","styles":{"bold":true}},{"type":"text","text":"Italic","styles":{"italic":true}},{"type":"text","text":"Re","styles":{}}],"children":[]}],"blockCutAtEnd":"9"} -{"_meta":{"startPos":0,"endPos":178},"blocks":[{"id":"1","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"Heading 1","styles":{}}],"children":[{"id":"2","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},{"id":"3","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},{"id":"4","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]}]},{"id":"5","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"Heading 2","styles":{}}],"children":[{"id":"6","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},{"id":"7","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},{"id":"8","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]}]},{"id":"9","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"Bold","styles":{"bold":true}},{"type":"text","text":"Italic","styles":{"italic":true}},{"type":"text","text":"Reg","styles":{}}],"children":[]}],"blockCutAtEnd":"9"} -{"_meta":{"startPos":0,"endPos":179},"blocks":[{"id":"1","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"Heading 1","styles":{}}],"children":[{"id":"2","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},{"id":"3","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},{"id":"4","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]}]},{"id":"5","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"Heading 2","styles":{}}],"children":[{"id":"6","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},{"id":"7","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},{"id":"8","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]}]},{"id":"9","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"Bold","styles":{"bold":true}},{"type":"text","text":"Italic","styles":{"italic":true}},{"type":"text","text":"Regu","styles":{}}],"children":[]}],"blockCutAtEnd":"9"} -{"_meta":{"startPos":0,"endPos":180},"blocks":[{"id":"1","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"Heading 1","styles":{}}],"children":[{"id":"2","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},{"id":"3","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},{"id":"4","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]}]},{"id":"5","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"Heading 2","styles":{}}],"children":[{"id":"6","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},{"id":"7","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},{"id":"8","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]}]},{"id":"9","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"Bold","styles":{"bold":true}},{"type":"text","text":"Italic","styles":{"italic":true}},{"type":"text","text":"Regul","styles":{}}],"children":[]}],"blockCutAtEnd":"9"} -{"_meta":{"startPos":0,"endPos":181},"blocks":[{"id":"1","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"Heading 1","styles":{}}],"children":[{"id":"2","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},{"id":"3","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},{"id":"4","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]}]},{"id":"5","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"Heading 2","styles":{}}],"children":[{"id":"6","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},{"id":"7","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},{"id":"8","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]}]},{"id":"9","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"Bold","styles":{"bold":true}},{"type":"text","text":"Italic","styles":{"italic":true}},{"type":"text","text":"Regula","styles":{}}],"children":[]}],"blockCutAtEnd":"9"} -{"_meta":{"startPos":0,"endPos":183},"blocks":[{"id":"1","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"Heading 1","styles":{}}],"children":[{"id":"2","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},{"id":"3","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},{"id":"4","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]}]},{"id":"5","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"Heading 2","styles":{}}],"children":[{"id":"6","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},{"id":"7","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},{"id":"8","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]}]},{"id":"9","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"Bold","styles":{"bold":true}},{"type":"text","text":"Italic","styles":{"italic":true}},{"type":"text","text":"Regular","styles":{}}],"children":[]}]} -{"_meta":{"startPos":0,"endPos":183},"blocks":[{"id":"1","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"Heading 1","styles":{}}],"children":[{"id":"2","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},{"id":"3","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},{"id":"4","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]}]},{"id":"5","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"Heading 2","styles":{}}],"children":[{"id":"6","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},{"id":"7","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},{"id":"8","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]}]},{"id":"9","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"Bold","styles":{"bold":true}},{"type":"text","text":"Italic","styles":{"italic":true}},{"type":"text","text":"Regular","styles":{}}],"children":[]}]} -{"_meta":{"startPos":0,"endPos":183},"blocks":[{"id":"1","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"Heading 1","styles":{}}],"children":[{"id":"2","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},{"id":"3","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},{"id":"4","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]}]},{"id":"5","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"Heading 2","styles":{}}],"children":[{"id":"6","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},{"id":"7","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},{"id":"8","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]}]},{"id":"9","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"Bold","styles":{"bold":true}},{"type":"text","text":"Italic","styles":{"italic":true}},{"type":"text","text":"Regular","styles":{}}],"children":[]}]} -{"_meta":{"startPos":0,"endPos":183},"blocks":[{"id":"1","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"Heading 1","styles":{}}],"children":[{"id":"2","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},{"id":"3","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},{"id":"4","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]}]},{"id":"5","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"Heading 2","styles":{}}],"children":[{"id":"6","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},{"id":"7","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},{"id":"8","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]}]},{"id":"9","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"Bold","styles":{"bold":true}},{"type":"text","text":"Italic","styles":{"italic":true}},{"type":"text","text":"Regular","styles":{}}],"children":[]}]} -{"_meta":{"startPos":0,"endPos":186},"blocks":[{"id":"1","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"Heading 1","styles":{}}],"children":[{"id":"2","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},{"id":"3","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},{"id":"4","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]}]},{"id":"5","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"Heading 2","styles":{}}],"children":[{"id":"6","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},{"id":"7","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},{"id":"8","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]}]},{"id":"9","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"Bold","styles":{"bold":true}},{"type":"text","text":"Italic","styles":{"italic":true}},{"type":"text","text":"Regular","styles":{}}],"children":[{"id":"10","type":"image","props":{"backgroundColor":"default","textAlignment":"left","name":"","url":"https://ralfvanveen.com/wp-content/uploads/2021/06/Placeholder-_-Glossary.svg","caption":"","showPreview":true},"children":[]}]}],"blockCutAtEnd":"10"} -{"_meta":{"startPos":0,"endPos":186},"blocks":[{"id":"1","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"Heading 1","styles":{}}],"children":[{"id":"2","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},{"id":"3","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},{"id":"4","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]}]},{"id":"5","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"Heading 2","styles":{}}],"children":[{"id":"6","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},{"id":"7","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},{"id":"8","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]}]},{"id":"9","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"Bold","styles":{"bold":true}},{"type":"text","text":"Italic","styles":{"italic":true}},{"type":"text","text":"Regular","styles":{}}],"children":[{"id":"10","type":"image","props":{"backgroundColor":"default","textAlignment":"left","name":"","url":"https://ralfvanveen.com/wp-content/uploads/2021/06/Placeholder-_-Glossary.svg","caption":"","showPreview":true},"children":[]}]}],"blockCutAtEnd":"10"} -{"_meta":{"startPos":0,"endPos":186},"blocks":[{"id":"1","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"Heading 1","styles":{}}],"children":[{"id":"2","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},{"id":"3","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},{"id":"4","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]}]},{"id":"5","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"Heading 2","styles":{}}],"children":[{"id":"6","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},{"id":"7","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},{"id":"8","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]}]},{"id":"9","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"Bold","styles":{"bold":true}},{"type":"text","text":"Italic","styles":{"italic":true}},{"type":"text","text":"Regular","styles":{}}],"children":[{"id":"10","type":"image","props":{"backgroundColor":"default","textAlignment":"left","name":"","url":"https://ralfvanveen.com/wp-content/uploads/2021/06/Placeholder-_-Glossary.svg","caption":"","showPreview":true},"children":[]}]}],"blockCutAtEnd":"10"} -{"_meta":{"startPos":0,"endPos":186},"blocks":[{"id":"1","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"Heading 1","styles":{}}],"children":[{"id":"2","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},{"id":"3","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},{"id":"4","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]}]},{"id":"5","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"Heading 2","styles":{}}],"children":[{"id":"6","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},{"id":"7","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},{"id":"8","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]}]},{"id":"9","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"Bold","styles":{"bold":true}},{"type":"text","text":"Italic","styles":{"italic":true}},{"type":"text","text":"Regular","styles":{}}],"children":[{"id":"10","type":"image","props":{"backgroundColor":"default","textAlignment":"left","name":"","url":"https://ralfvanveen.com/wp-content/uploads/2021/06/Placeholder-_-Glossary.svg","caption":"","showPreview":true},"children":[]}]}],"blockCutAtEnd":"10"} -{"_meta":{"startPos":0,"endPos":190},"blocks":[{"id":"1","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"Heading 1","styles":{}}],"children":[{"id":"2","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},{"id":"3","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},{"id":"4","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]}]},{"id":"5","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"Heading 2","styles":{}}],"children":[{"id":"6","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},{"id":"7","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},{"id":"8","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]}]},{"id":"9","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"Bold","styles":{"bold":true}},{"type":"text","text":"Italic","styles":{"italic":true}},{"type":"text","text":"Regular","styles":{}}],"children":[{"id":"10","type":"image","props":{"backgroundColor":"default","textAlignment":"left","name":"","url":"https://ralfvanveen.com/wp-content/uploads/2021/06/Placeholder-_-Glossary.svg","caption":"","showPreview":true},"children":[{"id":"11","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"N","styles":{}}],"children":[]}]}]}],"blockCutAtEnd":"11"} -{"_meta":{"startPos":0,"endPos":191},"blocks":[{"id":"1","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"Heading 1","styles":{}}],"children":[{"id":"2","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},{"id":"3","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},{"id":"4","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]}]},{"id":"5","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"Heading 2","styles":{}}],"children":[{"id":"6","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},{"id":"7","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},{"id":"8","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]}]},{"id":"9","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"Bold","styles":{"bold":true}},{"type":"text","text":"Italic","styles":{"italic":true}},{"type":"text","text":"Regular","styles":{}}],"children":[{"id":"10","type":"image","props":{"backgroundColor":"default","textAlignment":"left","name":"","url":"https://ralfvanveen.com/wp-content/uploads/2021/06/Placeholder-_-Glossary.svg","caption":"","showPreview":true},"children":[{"id":"11","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Ne","styles":{}}],"children":[]}]}]}],"blockCutAtEnd":"11"} -{"_meta":{"startPos":0,"endPos":192},"blocks":[{"id":"1","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"Heading 1","styles":{}}],"children":[{"id":"2","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},{"id":"3","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},{"id":"4","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]}]},{"id":"5","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"Heading 2","styles":{}}],"children":[{"id":"6","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},{"id":"7","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},{"id":"8","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]}]},{"id":"9","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"Bold","styles":{"bold":true}},{"type":"text","text":"Italic","styles":{"italic":true}},{"type":"text","text":"Regular","styles":{}}],"children":[{"id":"10","type":"image","props":{"backgroundColor":"default","textAlignment":"left","name":"","url":"https://ralfvanveen.com/wp-content/uploads/2021/06/Placeholder-_-Glossary.svg","caption":"","showPreview":true},"children":[{"id":"11","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nes","styles":{}}],"children":[]}]}]}],"blockCutAtEnd":"11"} -{"_meta":{"startPos":0,"endPos":193},"blocks":[{"id":"1","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"Heading 1","styles":{}}],"children":[{"id":"2","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},{"id":"3","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},{"id":"4","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]}]},{"id":"5","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"Heading 2","styles":{}}],"children":[{"id":"6","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},{"id":"7","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},{"id":"8","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]}]},{"id":"9","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"Bold","styles":{"bold":true}},{"type":"text","text":"Italic","styles":{"italic":true}},{"type":"text","text":"Regular","styles":{}}],"children":[{"id":"10","type":"image","props":{"backgroundColor":"default","textAlignment":"left","name":"","url":"https://ralfvanveen.com/wp-content/uploads/2021/06/Placeholder-_-Glossary.svg","caption":"","showPreview":true},"children":[{"id":"11","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nest","styles":{}}],"children":[]}]}]}],"blockCutAtEnd":"11"} -{"_meta":{"startPos":0,"endPos":194},"blocks":[{"id":"1","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"Heading 1","styles":{}}],"children":[{"id":"2","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},{"id":"3","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},{"id":"4","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]}]},{"id":"5","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"Heading 2","styles":{}}],"children":[{"id":"6","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},{"id":"7","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},{"id":"8","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]}]},{"id":"9","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"Bold","styles":{"bold":true}},{"type":"text","text":"Italic","styles":{"italic":true}},{"type":"text","text":"Regular","styles":{}}],"children":[{"id":"10","type":"image","props":{"backgroundColor":"default","textAlignment":"left","name":"","url":"https://ralfvanveen.com/wp-content/uploads/2021/06/Placeholder-_-Glossary.svg","caption":"","showPreview":true},"children":[{"id":"11","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Neste","styles":{}}],"children":[]}]}]}],"blockCutAtEnd":"11"} -{"_meta":{"startPos":0,"endPos":195},"blocks":[{"id":"1","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"Heading 1","styles":{}}],"children":[{"id":"2","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},{"id":"3","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},{"id":"4","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]}]},{"id":"5","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"Heading 2","styles":{}}],"children":[{"id":"6","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},{"id":"7","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},{"id":"8","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]}]},{"id":"9","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"Bold","styles":{"bold":true}},{"type":"text","text":"Italic","styles":{"italic":true}},{"type":"text","text":"Regular","styles":{}}],"children":[{"id":"10","type":"image","props":{"backgroundColor":"default","textAlignment":"left","name":"","url":"https://ralfvanveen.com/wp-content/uploads/2021/06/Placeholder-_-Glossary.svg","caption":"","showPreview":true},"children":[{"id":"11","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested","styles":{}}],"children":[]}]}]}],"blockCutAtEnd":"11"} -{"_meta":{"startPos":0,"endPos":196},"blocks":[{"id":"1","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"Heading 1","styles":{}}],"children":[{"id":"2","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},{"id":"3","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},{"id":"4","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]}]},{"id":"5","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"Heading 2","styles":{}}],"children":[{"id":"6","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},{"id":"7","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},{"id":"8","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]}]},{"id":"9","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"Bold","styles":{"bold":true}},{"type":"text","text":"Italic","styles":{"italic":true}},{"type":"text","text":"Regular","styles":{}}],"children":[{"id":"10","type":"image","props":{"backgroundColor":"default","textAlignment":"left","name":"","url":"https://ralfvanveen.com/wp-content/uploads/2021/06/Placeholder-_-Glossary.svg","caption":"","showPreview":true},"children":[{"id":"11","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested ","styles":{}}],"children":[]}]}]}],"blockCutAtEnd":"11"} -{"_meta":{"startPos":0,"endPos":197},"blocks":[{"id":"1","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"Heading 1","styles":{}}],"children":[{"id":"2","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},{"id":"3","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},{"id":"4","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]}]},{"id":"5","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"Heading 2","styles":{}}],"children":[{"id":"6","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},{"id":"7","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},{"id":"8","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]}]},{"id":"9","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"Bold","styles":{"bold":true}},{"type":"text","text":"Italic","styles":{"italic":true}},{"type":"text","text":"Regular","styles":{}}],"children":[{"id":"10","type":"image","props":{"backgroundColor":"default","textAlignment":"left","name":"","url":"https://ralfvanveen.com/wp-content/uploads/2021/06/Placeholder-_-Glossary.svg","caption":"","showPreview":true},"children":[{"id":"11","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested P","styles":{}}],"children":[]}]}]}],"blockCutAtEnd":"11"} -{"_meta":{"startPos":0,"endPos":198},"blocks":[{"id":"1","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"Heading 1","styles":{}}],"children":[{"id":"2","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},{"id":"3","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},{"id":"4","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]}]},{"id":"5","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"Heading 2","styles":{}}],"children":[{"id":"6","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},{"id":"7","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},{"id":"8","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]}]},{"id":"9","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"Bold","styles":{"bold":true}},{"type":"text","text":"Italic","styles":{"italic":true}},{"type":"text","text":"Regular","styles":{}}],"children":[{"id":"10","type":"image","props":{"backgroundColor":"default","textAlignment":"left","name":"","url":"https://ralfvanveen.com/wp-content/uploads/2021/06/Placeholder-_-Glossary.svg","caption":"","showPreview":true},"children":[{"id":"11","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Pa","styles":{}}],"children":[]}]}]}],"blockCutAtEnd":"11"} -{"_meta":{"startPos":0,"endPos":199},"blocks":[{"id":"1","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"Heading 1","styles":{}}],"children":[{"id":"2","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},{"id":"3","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},{"id":"4","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]}]},{"id":"5","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"Heading 2","styles":{}}],"children":[{"id":"6","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},{"id":"7","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},{"id":"8","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]}]},{"id":"9","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"Bold","styles":{"bold":true}},{"type":"text","text":"Italic","styles":{"italic":true}},{"type":"text","text":"Regular","styles":{}}],"children":[{"id":"10","type":"image","props":{"backgroundColor":"default","textAlignment":"left","name":"","url":"https://ralfvanveen.com/wp-content/uploads/2021/06/Placeholder-_-Glossary.svg","caption":"","showPreview":true},"children":[{"id":"11","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Par","styles":{}}],"children":[]}]}]}],"blockCutAtEnd":"11"} -{"_meta":{"startPos":0,"endPos":200},"blocks":[{"id":"1","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"Heading 1","styles":{}}],"children":[{"id":"2","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},{"id":"3","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},{"id":"4","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]}]},{"id":"5","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"Heading 2","styles":{}}],"children":[{"id":"6","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},{"id":"7","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},{"id":"8","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]}]},{"id":"9","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"Bold","styles":{"bold":true}},{"type":"text","text":"Italic","styles":{"italic":true}},{"type":"text","text":"Regular","styles":{}}],"children":[{"id":"10","type":"image","props":{"backgroundColor":"default","textAlignment":"left","name":"","url":"https://ralfvanveen.com/wp-content/uploads/2021/06/Placeholder-_-Glossary.svg","caption":"","showPreview":true},"children":[{"id":"11","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Para","styles":{}}],"children":[]}]}]}],"blockCutAtEnd":"11"} -{"_meta":{"startPos":0,"endPos":201},"blocks":[{"id":"1","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"Heading 1","styles":{}}],"children":[{"id":"2","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},{"id":"3","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},{"id":"4","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]}]},{"id":"5","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"Heading 2","styles":{}}],"children":[{"id":"6","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},{"id":"7","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},{"id":"8","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]}]},{"id":"9","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"Bold","styles":{"bold":true}},{"type":"text","text":"Italic","styles":{"italic":true}},{"type":"text","text":"Regular","styles":{}}],"children":[{"id":"10","type":"image","props":{"backgroundColor":"default","textAlignment":"left","name":"","url":"https://ralfvanveen.com/wp-content/uploads/2021/06/Placeholder-_-Glossary.svg","caption":"","showPreview":true},"children":[{"id":"11","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Parag","styles":{}}],"children":[]}]}]}],"blockCutAtEnd":"11"} -{"_meta":{"startPos":0,"endPos":202},"blocks":[{"id":"1","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"Heading 1","styles":{}}],"children":[{"id":"2","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},{"id":"3","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},{"id":"4","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]}]},{"id":"5","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"Heading 2","styles":{}}],"children":[{"id":"6","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},{"id":"7","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},{"id":"8","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]}]},{"id":"9","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"Bold","styles":{"bold":true}},{"type":"text","text":"Italic","styles":{"italic":true}},{"type":"text","text":"Regular","styles":{}}],"children":[{"id":"10","type":"image","props":{"backgroundColor":"default","textAlignment":"left","name":"","url":"https://ralfvanveen.com/wp-content/uploads/2021/06/Placeholder-_-Glossary.svg","caption":"","showPreview":true},"children":[{"id":"11","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragr","styles":{}}],"children":[]}]}]}],"blockCutAtEnd":"11"} -{"_meta":{"startPos":0,"endPos":203},"blocks":[{"id":"1","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"Heading 1","styles":{}}],"children":[{"id":"2","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},{"id":"3","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},{"id":"4","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]}]},{"id":"5","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"Heading 2","styles":{}}],"children":[{"id":"6","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},{"id":"7","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},{"id":"8","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]}]},{"id":"9","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"Bold","styles":{"bold":true}},{"type":"text","text":"Italic","styles":{"italic":true}},{"type":"text","text":"Regular","styles":{}}],"children":[{"id":"10","type":"image","props":{"backgroundColor":"default","textAlignment":"left","name":"","url":"https://ralfvanveen.com/wp-content/uploads/2021/06/Placeholder-_-Glossary.svg","caption":"","showPreview":true},"children":[{"id":"11","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragra","styles":{}}],"children":[]}]}]}],"blockCutAtEnd":"11"} -{"_meta":{"startPos":0,"endPos":204},"blocks":[{"id":"1","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"Heading 1","styles":{}}],"children":[{"id":"2","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},{"id":"3","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},{"id":"4","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]}]},{"id":"5","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"Heading 2","styles":{}}],"children":[{"id":"6","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},{"id":"7","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},{"id":"8","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]}]},{"id":"9","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"Bold","styles":{"bold":true}},{"type":"text","text":"Italic","styles":{"italic":true}},{"type":"text","text":"Regular","styles":{}}],"children":[{"id":"10","type":"image","props":{"backgroundColor":"default","textAlignment":"left","name":"","url":"https://ralfvanveen.com/wp-content/uploads/2021/06/Placeholder-_-Glossary.svg","caption":"","showPreview":true},"children":[{"id":"11","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragrap","styles":{}}],"children":[]}]}]}],"blockCutAtEnd":"11"} -{"_meta":{"startPos":0,"endPos":211},"blocks":[{"id":"1","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"Heading 1","styles":{}}],"children":[{"id":"2","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},{"id":"3","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},{"id":"4","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]}]},{"id":"5","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"Heading 2","styles":{}}],"children":[{"id":"6","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},{"id":"7","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},{"id":"8","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]}]},{"id":"9","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"Bold","styles":{"bold":true}},{"type":"text","text":"Italic","styles":{"italic":true}},{"type":"text","text":"Regular","styles":{}}],"children":[{"id":"10","type":"image","props":{"backgroundColor":"default","textAlignment":"left","name":"","url":"https://ralfvanveen.com/wp-content/uploads/2021/06/Placeholder-_-Glossary.svg","caption":"","showPreview":true},"children":[{"id":"11","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph","styles":{}}],"children":[]}]}]}]} -{"_meta":{"startPos":0,"endPos":211},"blocks":[{"id":"1","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"Heading 1","styles":{}}],"children":[{"id":"2","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},{"id":"3","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},{"id":"4","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]}]},{"id":"5","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"Heading 2","styles":{}}],"children":[{"id":"6","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},{"id":"7","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},{"id":"8","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]}]},{"id":"9","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"Bold","styles":{"bold":true}},{"type":"text","text":"Italic","styles":{"italic":true}},{"type":"text","text":"Regular","styles":{}}],"children":[{"id":"10","type":"image","props":{"backgroundColor":"default","textAlignment":"left","name":"","url":"https://ralfvanveen.com/wp-content/uploads/2021/06/Placeholder-_-Glossary.svg","caption":"","showPreview":true},"children":[{"id":"11","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph","styles":{}}],"children":[]}]}]}]} -{"_meta":{"startPos":0,"endPos":211},"blocks":[{"id":"1","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"Heading 1","styles":{}}],"children":[{"id":"2","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},{"id":"3","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},{"id":"4","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]}]},{"id":"5","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"Heading 2","styles":{}}],"children":[{"id":"6","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},{"id":"7","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},{"id":"8","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]}]},{"id":"9","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"Bold","styles":{"bold":true}},{"type":"text","text":"Italic","styles":{"italic":true}},{"type":"text","text":"Regular","styles":{}}],"children":[{"id":"10","type":"image","props":{"backgroundColor":"default","textAlignment":"left","name":"","url":"https://ralfvanveen.com/wp-content/uploads/2021/06/Placeholder-_-Glossary.svg","caption":"","showPreview":true},"children":[{"id":"11","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph","styles":{}}],"children":[]}]}]}]} -{"_meta":{"startPos":0,"endPos":211},"blocks":[{"id":"1","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"Heading 1","styles":{}}],"children":[{"id":"2","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},{"id":"3","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},{"id":"4","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]}]},{"id":"5","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"Heading 2","styles":{}}],"children":[{"id":"6","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},{"id":"7","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},{"id":"8","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]}]},{"id":"9","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"Bold","styles":{"bold":true}},{"type":"text","text":"Italic","styles":{"italic":true}},{"type":"text","text":"Regular","styles":{}}],"children":[{"id":"10","type":"image","props":{"backgroundColor":"default","textAlignment":"left","name":"","url":"https://ralfvanveen.com/wp-content/uploads/2021/06/Placeholder-_-Glossary.svg","caption":"","showPreview":true},"children":[{"id":"11","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph","styles":{}}],"children":[]}]}]}]} -{"_meta":{"startPos":0,"endPos":211},"blocks":[{"id":"1","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"Heading 1","styles":{}}],"children":[{"id":"2","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},{"id":"3","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},{"id":"4","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]}]},{"id":"5","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"Heading 2","styles":{}}],"children":[{"id":"6","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},{"id":"7","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},{"id":"8","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]}]},{"id":"9","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"Bold","styles":{"bold":true}},{"type":"text","text":"Italic","styles":{"italic":true}},{"type":"text","text":"Regular","styles":{}}],"children":[{"id":"10","type":"image","props":{"backgroundColor":"default","textAlignment":"left","name":"","url":"https://ralfvanveen.com/wp-content/uploads/2021/06/Placeholder-_-Glossary.svg","caption":"","showPreview":true},"children":[{"id":"11","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph","styles":{}}],"children":[]}]}]}]} -{"_meta":{"startPos":0,"endPos":211},"blocks":[{"id":"1","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"Heading 1","styles":{}}],"children":[{"id":"2","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},{"id":"3","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},{"id":"4","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]}]},{"id":"5","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"Heading 2","styles":{}}],"children":[{"id":"6","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},{"id":"7","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},{"id":"8","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]}]},{"id":"9","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"Bold","styles":{"bold":true}},{"type":"text","text":"Italic","styles":{"italic":true}},{"type":"text","text":"Regular","styles":{}}],"children":[{"id":"10","type":"image","props":{"backgroundColor":"default","textAlignment":"left","name":"","url":"https://ralfvanveen.com/wp-content/uploads/2021/06/Placeholder-_-Glossary.svg","caption":"","showPreview":true},"children":[{"id":"11","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph","styles":{}}],"children":[]}]}]}]} -{"_meta":{"startPos":0,"endPos":211},"blocks":[{"id":"1","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"Heading 1","styles":{}}],"children":[{"id":"2","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},{"id":"3","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},{"id":"4","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]}]},{"id":"5","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"Heading 2","styles":{}}],"children":[{"id":"6","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},{"id":"7","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},{"id":"8","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]}]},{"id":"9","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"Bold","styles":{"bold":true}},{"type":"text","text":"Italic","styles":{"italic":true}},{"type":"text","text":"Regular","styles":{}}],"children":[{"id":"10","type":"image","props":{"backgroundColor":"default","textAlignment":"left","name":"","url":"https://ralfvanveen.com/wp-content/uploads/2021/06/Placeholder-_-Glossary.svg","caption":"","showPreview":true},"children":[{"id":"11","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph","styles":{}}],"children":[]}]}]}]} -{"_meta":{"startPos":0,"endPos":211},"blocks":[{"id":"1","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"Heading 1","styles":{}}],"children":[{"id":"2","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},{"id":"3","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},{"id":"4","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]}]},{"id":"5","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"Heading 2","styles":{}}],"children":[{"id":"6","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},{"id":"7","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},{"id":"8","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]}]},{"id":"9","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"Bold","styles":{"bold":true}},{"type":"text","text":"Italic","styles":{"italic":true}},{"type":"text","text":"Regular","styles":{}}],"children":[{"id":"10","type":"image","props":{"backgroundColor":"default","textAlignment":"left","name":"","url":"https://ralfvanveen.com/wp-content/uploads/2021/06/Placeholder-_-Glossary.svg","caption":"","showPreview":true},"children":[{"id":"11","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph","styles":{}}],"children":[]}]}]}]} -{"_meta":{"startPos":0,"endPos":211},"blocks":[{"id":"1","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"Heading 1","styles":{}}],"children":[{"id":"2","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},{"id":"3","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},{"id":"4","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]}]},{"id":"5","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"Heading 2","styles":{}}],"children":[{"id":"6","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},{"id":"7","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},{"id":"8","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]}]},{"id":"9","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"Bold","styles":{"bold":true}},{"type":"text","text":"Italic","styles":{"italic":true}},{"type":"text","text":"Regular","styles":{}}],"children":[{"id":"10","type":"image","props":{"backgroundColor":"default","textAlignment":"left","name":"","url":"https://ralfvanveen.com/wp-content/uploads/2021/06/Placeholder-_-Glossary.svg","caption":"","showPreview":true},"children":[{"id":"11","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph","styles":{}}],"children":[]}]}]}]} -{"_meta":{"startPos":0,"endPos":211},"blocks":[{"id":"1","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"Heading 1","styles":{}}],"children":[{"id":"2","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},{"id":"3","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},{"id":"4","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]}]},{"id":"5","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"Heading 2","styles":{}}],"children":[{"id":"6","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},{"id":"7","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},{"id":"8","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]}]},{"id":"9","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"Bold","styles":{"bold":true}},{"type":"text","text":"Italic","styles":{"italic":true}},{"type":"text","text":"Regular","styles":{}}],"children":[{"id":"10","type":"image","props":{"backgroundColor":"default","textAlignment":"left","name":"","url":"https://ralfvanveen.com/wp-content/uploads/2021/06/Placeholder-_-Glossary.svg","caption":"","showPreview":true},"children":[{"id":"11","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph","styles":{}}],"children":[]}]}]}]} -{"_meta":{"startPos":0,"endPos":276},"blocks":[{"id":"1","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"Heading 1","styles":{}}],"children":[{"id":"2","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},{"id":"3","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},{"id":"4","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]}]},{"id":"5","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"Heading 2","styles":{}}],"children":[{"id":"6","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},{"id":"7","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},{"id":"8","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]}]},{"id":"9","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"Bold","styles":{"bold":true}},{"type":"text","text":"Italic","styles":{"italic":true}},{"type":"text","text":"Regular","styles":{}}],"children":[{"id":"10","type":"image","props":{"backgroundColor":"default","textAlignment":"left","name":"","url":"https://ralfvanveen.com/wp-content/uploads/2021/06/Placeholder-_-Glossary.svg","caption":"","showPreview":true},"children":[{"id":"11","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph","styles":{}}],"children":[]}]}]},{"id":"12","type":"table","props":{"textColor":"default"},"content":{"type":"tableContent","columnWidths":[null,null],"rows":[{"cells":[{"type":"tableCell","content":[{"type":"text","text":"Table Cell","styles":{}}],"props":{"colspan":1,"rowspan":1,"backgroundColor":"default","textColor":"default","textAlignment":"left"}},{"type":"tableCell","content":[{"type":"text","text":"Table Cell","styles":{}}],"props":{"colspan":1,"rowspan":1,"backgroundColor":"default","textColor":"default","textAlignment":"left"}}]},{"cells":[{"type":"tableCell","content":[{"type":"text","text":"Table Cell","styles":{}}],"props":{"colspan":1,"rowspan":1,"backgroundColor":"default","textColor":"default","textAlignment":"left"}},{"type":"tableCell","content":[{"type":"text","text":"Table Cell","styles":{}}],"props":{"colspan":1,"rowspan":1,"backgroundColor":"default","textColor":"default","textAlignment":"left"}}]}]},"children":[]}]} -{"_meta":{"startPos":0,"endPos":276},"blocks":[{"id":"1","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"Heading 1","styles":{}}],"children":[{"id":"2","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},{"id":"3","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},{"id":"4","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]}]},{"id":"5","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"Heading 2","styles":{}}],"children":[{"id":"6","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},{"id":"7","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},{"id":"8","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]}]},{"id":"9","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"Bold","styles":{"bold":true}},{"type":"text","text":"Italic","styles":{"italic":true}},{"type":"text","text":"Regular","styles":{}}],"children":[{"id":"10","type":"image","props":{"backgroundColor":"default","textAlignment":"left","name":"","url":"https://ralfvanveen.com/wp-content/uploads/2021/06/Placeholder-_-Glossary.svg","caption":"","showPreview":true},"children":[{"id":"11","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph","styles":{}}],"children":[]}]}]},{"id":"12","type":"table","props":{"textColor":"default"},"content":{"type":"tableContent","columnWidths":[null,null],"rows":[{"cells":[{"type":"tableCell","content":[{"type":"text","text":"Table Cell","styles":{}}],"props":{"colspan":1,"rowspan":1,"backgroundColor":"default","textColor":"default","textAlignment":"left"}},{"type":"tableCell","content":[{"type":"text","text":"Table Cell","styles":{}}],"props":{"colspan":1,"rowspan":1,"backgroundColor":"default","textColor":"default","textAlignment":"left"}}]},{"cells":[{"type":"tableCell","content":[{"type":"text","text":"Table Cell","styles":{}}],"props":{"colspan":1,"rowspan":1,"backgroundColor":"default","textColor":"default","textAlignment":"left"}},{"type":"tableCell","content":[{"type":"text","text":"Table Cell","styles":{}}],"props":{"colspan":1,"rowspan":1,"backgroundColor":"default","textColor":"default","textAlignment":"left"}}]}]},"children":[]}]} -{"_meta":{"startPos":0,"endPos":217},"blocks":[{"id":"1","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"Heading 1","styles":{}}],"children":[{"id":"2","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},{"id":"3","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},{"id":"4","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]}]},{"id":"5","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"Heading 2","styles":{}}],"children":[{"id":"6","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},{"id":"7","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},{"id":"8","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]}]},{"id":"9","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"Bold","styles":{"bold":true}},{"type":"text","text":"Italic","styles":{"italic":true}},{"type":"text","text":"Regular","styles":{}}],"children":[{"id":"10","type":"image","props":{"backgroundColor":"default","textAlignment":"left","name":"","url":"https://ralfvanveen.com/wp-content/uploads/2021/06/Placeholder-_-Glossary.svg","caption":"","showPreview":true},"children":[{"id":"11","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph","styles":{}}],"children":[]}]}]},{"id":"12","type":"table","props":{"textColor":"default"},"content":{"type":"tableContent","columnWidths":[null],"rows":[{"cells":[{"type":"tableCell","content":[{"type":"text","text":"T","styles":{}}],"props":{"colspan":1,"rowspan":1,"backgroundColor":"default","textColor":"default","textAlignment":"left"}}]}]},"children":[]}],"blockCutAtEnd":"12"} -{"_meta":{"startPos":0,"endPos":218},"blocks":[{"id":"1","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"Heading 1","styles":{}}],"children":[{"id":"2","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},{"id":"3","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},{"id":"4","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]}]},{"id":"5","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"Heading 2","styles":{}}],"children":[{"id":"6","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},{"id":"7","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},{"id":"8","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]}]},{"id":"9","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"Bold","styles":{"bold":true}},{"type":"text","text":"Italic","styles":{"italic":true}},{"type":"text","text":"Regular","styles":{}}],"children":[{"id":"10","type":"image","props":{"backgroundColor":"default","textAlignment":"left","name":"","url":"https://ralfvanveen.com/wp-content/uploads/2021/06/Placeholder-_-Glossary.svg","caption":"","showPreview":true},"children":[{"id":"11","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph","styles":{}}],"children":[]}]}]},{"id":"12","type":"table","props":{"textColor":"default"},"content":{"type":"tableContent","columnWidths":[null],"rows":[{"cells":[{"type":"tableCell","content":[{"type":"text","text":"Ta","styles":{}}],"props":{"colspan":1,"rowspan":1,"backgroundColor":"default","textColor":"default","textAlignment":"left"}}]}]},"children":[]}],"blockCutAtEnd":"12"} -{"_meta":{"startPos":0,"endPos":219},"blocks":[{"id":"1","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"Heading 1","styles":{}}],"children":[{"id":"2","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},{"id":"3","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},{"id":"4","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]}]},{"id":"5","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"Heading 2","styles":{}}],"children":[{"id":"6","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},{"id":"7","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},{"id":"8","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]}]},{"id":"9","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"Bold","styles":{"bold":true}},{"type":"text","text":"Italic","styles":{"italic":true}},{"type":"text","text":"Regular","styles":{}}],"children":[{"id":"10","type":"image","props":{"backgroundColor":"default","textAlignment":"left","name":"","url":"https://ralfvanveen.com/wp-content/uploads/2021/06/Placeholder-_-Glossary.svg","caption":"","showPreview":true},"children":[{"id":"11","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph","styles":{}}],"children":[]}]}]},{"id":"12","type":"table","props":{"textColor":"default"},"content":{"type":"tableContent","columnWidths":[null],"rows":[{"cells":[{"type":"tableCell","content":[{"type":"text","text":"Tab","styles":{}}],"props":{"colspan":1,"rowspan":1,"backgroundColor":"default","textColor":"default","textAlignment":"left"}}]}]},"children":[]}],"blockCutAtEnd":"12"} -{"_meta":{"startPos":0,"endPos":220},"blocks":[{"id":"1","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"Heading 1","styles":{}}],"children":[{"id":"2","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},{"id":"3","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},{"id":"4","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]}]},{"id":"5","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"Heading 2","styles":{}}],"children":[{"id":"6","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},{"id":"7","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},{"id":"8","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]}]},{"id":"9","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"Bold","styles":{"bold":true}},{"type":"text","text":"Italic","styles":{"italic":true}},{"type":"text","text":"Regular","styles":{}}],"children":[{"id":"10","type":"image","props":{"backgroundColor":"default","textAlignment":"left","name":"","url":"https://ralfvanveen.com/wp-content/uploads/2021/06/Placeholder-_-Glossary.svg","caption":"","showPreview":true},"children":[{"id":"11","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph","styles":{}}],"children":[]}]}]},{"id":"12","type":"table","props":{"textColor":"default"},"content":{"type":"tableContent","columnWidths":[null],"rows":[{"cells":[{"type":"tableCell","content":[{"type":"text","text":"Tabl","styles":{}}],"props":{"colspan":1,"rowspan":1,"backgroundColor":"default","textColor":"default","textAlignment":"left"}}]}]},"children":[]}],"blockCutAtEnd":"12"} -{"_meta":{"startPos":0,"endPos":221},"blocks":[{"id":"1","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"Heading 1","styles":{}}],"children":[{"id":"2","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},{"id":"3","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},{"id":"4","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]}]},{"id":"5","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"Heading 2","styles":{}}],"children":[{"id":"6","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},{"id":"7","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},{"id":"8","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]}]},{"id":"9","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"Bold","styles":{"bold":true}},{"type":"text","text":"Italic","styles":{"italic":true}},{"type":"text","text":"Regular","styles":{}}],"children":[{"id":"10","type":"image","props":{"backgroundColor":"default","textAlignment":"left","name":"","url":"https://ralfvanveen.com/wp-content/uploads/2021/06/Placeholder-_-Glossary.svg","caption":"","showPreview":true},"children":[{"id":"11","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph","styles":{}}],"children":[]}]}]},{"id":"12","type":"table","props":{"textColor":"default"},"content":{"type":"tableContent","columnWidths":[null],"rows":[{"cells":[{"type":"tableCell","content":[{"type":"text","text":"Table","styles":{}}],"props":{"colspan":1,"rowspan":1,"backgroundColor":"default","textColor":"default","textAlignment":"left"}}]}]},"children":[]}],"blockCutAtEnd":"12"} -{"_meta":{"startPos":0,"endPos":222},"blocks":[{"id":"1","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"Heading 1","styles":{}}],"children":[{"id":"2","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},{"id":"3","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},{"id":"4","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]}]},{"id":"5","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"Heading 2","styles":{}}],"children":[{"id":"6","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},{"id":"7","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},{"id":"8","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]}]},{"id":"9","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"Bold","styles":{"bold":true}},{"type":"text","text":"Italic","styles":{"italic":true}},{"type":"text","text":"Regular","styles":{}}],"children":[{"id":"10","type":"image","props":{"backgroundColor":"default","textAlignment":"left","name":"","url":"https://ralfvanveen.com/wp-content/uploads/2021/06/Placeholder-_-Glossary.svg","caption":"","showPreview":true},"children":[{"id":"11","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph","styles":{}}],"children":[]}]}]},{"id":"12","type":"table","props":{"textColor":"default"},"content":{"type":"tableContent","columnWidths":[null],"rows":[{"cells":[{"type":"tableCell","content":[{"type":"text","text":"Table ","styles":{}}],"props":{"colspan":1,"rowspan":1,"backgroundColor":"default","textColor":"default","textAlignment":"left"}}]}]},"children":[]}],"blockCutAtEnd":"12"} -{"_meta":{"startPos":0,"endPos":223},"blocks":[{"id":"1","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"Heading 1","styles":{}}],"children":[{"id":"2","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},{"id":"3","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},{"id":"4","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]}]},{"id":"5","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"Heading 2","styles":{}}],"children":[{"id":"6","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},{"id":"7","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},{"id":"8","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]}]},{"id":"9","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"Bold","styles":{"bold":true}},{"type":"text","text":"Italic","styles":{"italic":true}},{"type":"text","text":"Regular","styles":{}}],"children":[{"id":"10","type":"image","props":{"backgroundColor":"default","textAlignment":"left","name":"","url":"https://ralfvanveen.com/wp-content/uploads/2021/06/Placeholder-_-Glossary.svg","caption":"","showPreview":true},"children":[{"id":"11","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph","styles":{}}],"children":[]}]}]},{"id":"12","type":"table","props":{"textColor":"default"},"content":{"type":"tableContent","columnWidths":[null],"rows":[{"cells":[{"type":"tableCell","content":[{"type":"text","text":"Table C","styles":{}}],"props":{"colspan":1,"rowspan":1,"backgroundColor":"default","textColor":"default","textAlignment":"left"}}]}]},"children":[]}],"blockCutAtEnd":"12"} -{"_meta":{"startPos":0,"endPos":224},"blocks":[{"id":"1","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"Heading 1","styles":{}}],"children":[{"id":"2","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},{"id":"3","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},{"id":"4","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]}]},{"id":"5","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"Heading 2","styles":{}}],"children":[{"id":"6","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},{"id":"7","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},{"id":"8","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]}]},{"id":"9","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"Bold","styles":{"bold":true}},{"type":"text","text":"Italic","styles":{"italic":true}},{"type":"text","text":"Regular","styles":{}}],"children":[{"id":"10","type":"image","props":{"backgroundColor":"default","textAlignment":"left","name":"","url":"https://ralfvanveen.com/wp-content/uploads/2021/06/Placeholder-_-Glossary.svg","caption":"","showPreview":true},"children":[{"id":"11","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph","styles":{}}],"children":[]}]}]},{"id":"12","type":"table","props":{"textColor":"default"},"content":{"type":"tableContent","columnWidths":[null],"rows":[{"cells":[{"type":"tableCell","content":[{"type":"text","text":"Table Ce","styles":{}}],"props":{"colspan":1,"rowspan":1,"backgroundColor":"default","textColor":"default","textAlignment":"left"}}]}]},"children":[]}],"blockCutAtEnd":"12"} -{"_meta":{"startPos":0,"endPos":225},"blocks":[{"id":"1","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"Heading 1","styles":{}}],"children":[{"id":"2","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},{"id":"3","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},{"id":"4","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]}]},{"id":"5","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"Heading 2","styles":{}}],"children":[{"id":"6","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},{"id":"7","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},{"id":"8","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]}]},{"id":"9","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"Bold","styles":{"bold":true}},{"type":"text","text":"Italic","styles":{"italic":true}},{"type":"text","text":"Regular","styles":{}}],"children":[{"id":"10","type":"image","props":{"backgroundColor":"default","textAlignment":"left","name":"","url":"https://ralfvanveen.com/wp-content/uploads/2021/06/Placeholder-_-Glossary.svg","caption":"","showPreview":true},"children":[{"id":"11","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph","styles":{}}],"children":[]}]}]},{"id":"12","type":"table","props":{"textColor":"default"},"content":{"type":"tableContent","columnWidths":[null],"rows":[{"cells":[{"type":"tableCell","content":[{"type":"text","text":"Table Cel","styles":{}}],"props":{"colspan":1,"rowspan":1,"backgroundColor":"default","textColor":"default","textAlignment":"left"}}]}]},"children":[]}],"blockCutAtEnd":"12"} -{"_meta":{"startPos":0,"endPos":228},"blocks":[{"id":"1","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"Heading 1","styles":{}}],"children":[{"id":"2","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},{"id":"3","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},{"id":"4","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]}]},{"id":"5","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"Heading 2","styles":{}}],"children":[{"id":"6","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},{"id":"7","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},{"id":"8","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]}]},{"id":"9","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"Bold","styles":{"bold":true}},{"type":"text","text":"Italic","styles":{"italic":true}},{"type":"text","text":"Regular","styles":{}}],"children":[{"id":"10","type":"image","props":{"backgroundColor":"default","textAlignment":"left","name":"","url":"https://ralfvanveen.com/wp-content/uploads/2021/06/Placeholder-_-Glossary.svg","caption":"","showPreview":true},"children":[{"id":"11","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph","styles":{}}],"children":[]}]}]},{"id":"12","type":"table","props":{"textColor":"default"},"content":{"type":"tableContent","columnWidths":[null],"rows":[{"cells":[{"type":"tableCell","content":[{"type":"text","text":"Table Cell","styles":{}}],"props":{"colspan":1,"rowspan":1,"backgroundColor":"default","textColor":"default","textAlignment":"left"}}]}]},"children":[]}],"blockCutAtEnd":"12"} -{"_meta":{"startPos":0,"endPos":228},"blocks":[{"id":"1","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"Heading 1","styles":{}}],"children":[{"id":"2","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},{"id":"3","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},{"id":"4","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]}]},{"id":"5","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"Heading 2","styles":{}}],"children":[{"id":"6","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},{"id":"7","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},{"id":"8","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]}]},{"id":"9","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"Bold","styles":{"bold":true}},{"type":"text","text":"Italic","styles":{"italic":true}},{"type":"text","text":"Regular","styles":{}}],"children":[{"id":"10","type":"image","props":{"backgroundColor":"default","textAlignment":"left","name":"","url":"https://ralfvanveen.com/wp-content/uploads/2021/06/Placeholder-_-Glossary.svg","caption":"","showPreview":true},"children":[{"id":"11","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph","styles":{}}],"children":[]}]}]},{"id":"12","type":"table","props":{"textColor":"default"},"content":{"type":"tableContent","columnWidths":[null],"rows":[{"cells":[{"type":"tableCell","content":[{"type":"text","text":"Table Cell","styles":{}}],"props":{"colspan":1,"rowspan":1,"backgroundColor":"default","textColor":"default","textAlignment":"left"}}]}]},"children":[]}],"blockCutAtEnd":"12"} -{"_meta":{"startPos":0,"endPos":228},"blocks":[{"id":"1","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"Heading 1","styles":{}}],"children":[{"id":"2","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},{"id":"3","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},{"id":"4","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]}]},{"id":"5","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"Heading 2","styles":{}}],"children":[{"id":"6","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},{"id":"7","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},{"id":"8","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]}]},{"id":"9","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"Bold","styles":{"bold":true}},{"type":"text","text":"Italic","styles":{"italic":true}},{"type":"text","text":"Regular","styles":{}}],"children":[{"id":"10","type":"image","props":{"backgroundColor":"default","textAlignment":"left","name":"","url":"https://ralfvanveen.com/wp-content/uploads/2021/06/Placeholder-_-Glossary.svg","caption":"","showPreview":true},"children":[{"id":"11","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph","styles":{}}],"children":[]}]}]},{"id":"12","type":"table","props":{"textColor":"default"},"content":{"type":"tableContent","columnWidths":[null],"rows":[{"cells":[{"type":"tableCell","content":[{"type":"text","text":"Table Cell","styles":{}}],"props":{"colspan":1,"rowspan":1,"backgroundColor":"default","textColor":"default","textAlignment":"left"}}]}]},"children":[]}],"blockCutAtEnd":"12"} -{"_meta":{"startPos":0,"endPos":276},"blocks":[{"id":"1","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"Heading 1","styles":{}}],"children":[{"id":"2","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},{"id":"3","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},{"id":"4","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]}]},{"id":"5","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"Heading 2","styles":{}}],"children":[{"id":"6","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},{"id":"7","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},{"id":"8","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]}]},{"id":"9","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"Bold","styles":{"bold":true}},{"type":"text","text":"Italic","styles":{"italic":true}},{"type":"text","text":"Regular","styles":{}}],"children":[{"id":"10","type":"image","props":{"backgroundColor":"default","textAlignment":"left","name":"","url":"https://ralfvanveen.com/wp-content/uploads/2021/06/Placeholder-_-Glossary.svg","caption":"","showPreview":true},"children":[{"id":"11","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph","styles":{}}],"children":[]}]}]},{"id":"12","type":"table","props":{"textColor":"default"},"content":{"type":"tableContent","columnWidths":[null,null],"rows":[{"cells":[{"type":"tableCell","content":[{"type":"text","text":"Table Cell","styles":{}}],"props":{"colspan":1,"rowspan":1,"backgroundColor":"default","textColor":"default","textAlignment":"left"}},{"type":"tableCell","content":[{"type":"text","text":"Table Cell","styles":{}}],"props":{"colspan":1,"rowspan":1,"backgroundColor":"default","textColor":"default","textAlignment":"left"}}]},{"cells":[{"type":"tableCell","content":[{"type":"text","text":"Table Cell","styles":{}}],"props":{"colspan":1,"rowspan":1,"backgroundColor":"default","textColor":"default","textAlignment":"left"}},{"type":"tableCell","content":[{"type":"text","text":"Table Cell","styles":{}}],"props":{"colspan":1,"rowspan":1,"backgroundColor":"default","textColor":"default","textAlignment":"left"}}]}]},"children":[]}]} -{"_meta":{"startPos":0,"endPos":276},"blocks":[{"id":"1","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"Heading 1","styles":{}}],"children":[{"id":"2","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},{"id":"3","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},{"id":"4","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]}]},{"id":"5","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"Heading 2","styles":{}}],"children":[{"id":"6","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},{"id":"7","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},{"id":"8","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]}]},{"id":"9","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"Bold","styles":{"bold":true}},{"type":"text","text":"Italic","styles":{"italic":true}},{"type":"text","text":"Regular","styles":{}}],"children":[{"id":"10","type":"image","props":{"backgroundColor":"default","textAlignment":"left","name":"","url":"https://ralfvanveen.com/wp-content/uploads/2021/06/Placeholder-_-Glossary.svg","caption":"","showPreview":true},"children":[{"id":"11","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph","styles":{}}],"children":[]}]}]},{"id":"12","type":"table","props":{"textColor":"default"},"content":{"type":"tableContent","columnWidths":[null,null],"rows":[{"cells":[{"type":"tableCell","content":[{"type":"text","text":"Table Cell","styles":{}}],"props":{"colspan":1,"rowspan":1,"backgroundColor":"default","textColor":"default","textAlignment":"left"}},{"type":"tableCell","content":[{"type":"text","text":"Table Cell","styles":{}}],"props":{"colspan":1,"rowspan":1,"backgroundColor":"default","textColor":"default","textAlignment":"left"}}]},{"cells":[{"type":"tableCell","content":[{"type":"text","text":"Table Cell","styles":{}}],"props":{"colspan":1,"rowspan":1,"backgroundColor":"default","textColor":"default","textAlignment":"left"}},{"type":"tableCell","content":[{"type":"text","text":"Table Cell","styles":{}}],"props":{"colspan":1,"rowspan":1,"backgroundColor":"default","textColor":"default","textAlignment":"left"}}]}]},"children":[]}]} -{"_meta":{"startPos":0,"endPos":231},"blocks":[{"id":"1","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"Heading 1","styles":{}}],"children":[{"id":"2","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},{"id":"3","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},{"id":"4","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]}]},{"id":"5","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"Heading 2","styles":{}}],"children":[{"id":"6","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},{"id":"7","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},{"id":"8","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]}]},{"id":"9","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"Bold","styles":{"bold":true}},{"type":"text","text":"Italic","styles":{"italic":true}},{"type":"text","text":"Regular","styles":{}}],"children":[{"id":"10","type":"image","props":{"backgroundColor":"default","textAlignment":"left","name":"","url":"https://ralfvanveen.com/wp-content/uploads/2021/06/Placeholder-_-Glossary.svg","caption":"","showPreview":true},"children":[{"id":"11","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph","styles":{}}],"children":[]}]}]},{"id":"12","type":"table","props":{"textColor":"default"},"content":{"type":"tableContent","columnWidths":[null,null],"rows":[{"cells":[{"type":"tableCell","content":[{"type":"text","text":"Table Cell","styles":{}}],"props":{"colspan":1,"rowspan":1,"backgroundColor":"default","textColor":"default","textAlignment":"left"}},{"type":"tableCell","content":[{"type":"text","text":"T","styles":{}}],"props":{"colspan":1,"rowspan":1,"backgroundColor":"default","textColor":"default","textAlignment":"left"}}]}]},"children":[]}],"blockCutAtEnd":"12"} -{"_meta":{"startPos":0,"endPos":232},"blocks":[{"id":"1","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"Heading 1","styles":{}}],"children":[{"id":"2","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},{"id":"3","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},{"id":"4","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]}]},{"id":"5","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"Heading 2","styles":{}}],"children":[{"id":"6","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},{"id":"7","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},{"id":"8","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]}]},{"id":"9","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"Bold","styles":{"bold":true}},{"type":"text","text":"Italic","styles":{"italic":true}},{"type":"text","text":"Regular","styles":{}}],"children":[{"id":"10","type":"image","props":{"backgroundColor":"default","textAlignment":"left","name":"","url":"https://ralfvanveen.com/wp-content/uploads/2021/06/Placeholder-_-Glossary.svg","caption":"","showPreview":true},"children":[{"id":"11","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph","styles":{}}],"children":[]}]}]},{"id":"12","type":"table","props":{"textColor":"default"},"content":{"type":"tableContent","columnWidths":[null,null],"rows":[{"cells":[{"type":"tableCell","content":[{"type":"text","text":"Table Cell","styles":{}}],"props":{"colspan":1,"rowspan":1,"backgroundColor":"default","textColor":"default","textAlignment":"left"}},{"type":"tableCell","content":[{"type":"text","text":"Ta","styles":{}}],"props":{"colspan":1,"rowspan":1,"backgroundColor":"default","textColor":"default","textAlignment":"left"}}]}]},"children":[]}],"blockCutAtEnd":"12"} -{"_meta":{"startPos":0,"endPos":233},"blocks":[{"id":"1","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"Heading 1","styles":{}}],"children":[{"id":"2","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},{"id":"3","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},{"id":"4","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]}]},{"id":"5","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"Heading 2","styles":{}}],"children":[{"id":"6","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},{"id":"7","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},{"id":"8","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]}]},{"id":"9","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"Bold","styles":{"bold":true}},{"type":"text","text":"Italic","styles":{"italic":true}},{"type":"text","text":"Regular","styles":{}}],"children":[{"id":"10","type":"image","props":{"backgroundColor":"default","textAlignment":"left","name":"","url":"https://ralfvanveen.com/wp-content/uploads/2021/06/Placeholder-_-Glossary.svg","caption":"","showPreview":true},"children":[{"id":"11","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph","styles":{}}],"children":[]}]}]},{"id":"12","type":"table","props":{"textColor":"default"},"content":{"type":"tableContent","columnWidths":[null,null],"rows":[{"cells":[{"type":"tableCell","content":[{"type":"text","text":"Table Cell","styles":{}}],"props":{"colspan":1,"rowspan":1,"backgroundColor":"default","textColor":"default","textAlignment":"left"}},{"type":"tableCell","content":[{"type":"text","text":"Tab","styles":{}}],"props":{"colspan":1,"rowspan":1,"backgroundColor":"default","textColor":"default","textAlignment":"left"}}]}]},"children":[]}],"blockCutAtEnd":"12"} -{"_meta":{"startPos":0,"endPos":234},"blocks":[{"id":"1","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"Heading 1","styles":{}}],"children":[{"id":"2","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},{"id":"3","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},{"id":"4","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]}]},{"id":"5","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"Heading 2","styles":{}}],"children":[{"id":"6","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},{"id":"7","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},{"id":"8","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]}]},{"id":"9","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"Bold","styles":{"bold":true}},{"type":"text","text":"Italic","styles":{"italic":true}},{"type":"text","text":"Regular","styles":{}}],"children":[{"id":"10","type":"image","props":{"backgroundColor":"default","textAlignment":"left","name":"","url":"https://ralfvanveen.com/wp-content/uploads/2021/06/Placeholder-_-Glossary.svg","caption":"","showPreview":true},"children":[{"id":"11","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph","styles":{}}],"children":[]}]}]},{"id":"12","type":"table","props":{"textColor":"default"},"content":{"type":"tableContent","columnWidths":[null,null],"rows":[{"cells":[{"type":"tableCell","content":[{"type":"text","text":"Table Cell","styles":{}}],"props":{"colspan":1,"rowspan":1,"backgroundColor":"default","textColor":"default","textAlignment":"left"}},{"type":"tableCell","content":[{"type":"text","text":"Tabl","styles":{}}],"props":{"colspan":1,"rowspan":1,"backgroundColor":"default","textColor":"default","textAlignment":"left"}}]}]},"children":[]}],"blockCutAtEnd":"12"} -{"_meta":{"startPos":0,"endPos":235},"blocks":[{"id":"1","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"Heading 1","styles":{}}],"children":[{"id":"2","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},{"id":"3","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},{"id":"4","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]}]},{"id":"5","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"Heading 2","styles":{}}],"children":[{"id":"6","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},{"id":"7","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},{"id":"8","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]}]},{"id":"9","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"Bold","styles":{"bold":true}},{"type":"text","text":"Italic","styles":{"italic":true}},{"type":"text","text":"Regular","styles":{}}],"children":[{"id":"10","type":"image","props":{"backgroundColor":"default","textAlignment":"left","name":"","url":"https://ralfvanveen.com/wp-content/uploads/2021/06/Placeholder-_-Glossary.svg","caption":"","showPreview":true},"children":[{"id":"11","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph","styles":{}}],"children":[]}]}]},{"id":"12","type":"table","props":{"textColor":"default"},"content":{"type":"tableContent","columnWidths":[null,null],"rows":[{"cells":[{"type":"tableCell","content":[{"type":"text","text":"Table Cell","styles":{}}],"props":{"colspan":1,"rowspan":1,"backgroundColor":"default","textColor":"default","textAlignment":"left"}},{"type":"tableCell","content":[{"type":"text","text":"Table","styles":{}}],"props":{"colspan":1,"rowspan":1,"backgroundColor":"default","textColor":"default","textAlignment":"left"}}]}]},"children":[]}],"blockCutAtEnd":"12"} -{"_meta":{"startPos":0,"endPos":236},"blocks":[{"id":"1","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"Heading 1","styles":{}}],"children":[{"id":"2","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},{"id":"3","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},{"id":"4","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]}]},{"id":"5","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"Heading 2","styles":{}}],"children":[{"id":"6","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},{"id":"7","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},{"id":"8","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]}]},{"id":"9","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"Bold","styles":{"bold":true}},{"type":"text","text":"Italic","styles":{"italic":true}},{"type":"text","text":"Regular","styles":{}}],"children":[{"id":"10","type":"image","props":{"backgroundColor":"default","textAlignment":"left","name":"","url":"https://ralfvanveen.com/wp-content/uploads/2021/06/Placeholder-_-Glossary.svg","caption":"","showPreview":true},"children":[{"id":"11","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph","styles":{}}],"children":[]}]}]},{"id":"12","type":"table","props":{"textColor":"default"},"content":{"type":"tableContent","columnWidths":[null,null],"rows":[{"cells":[{"type":"tableCell","content":[{"type":"text","text":"Table Cell","styles":{}}],"props":{"colspan":1,"rowspan":1,"backgroundColor":"default","textColor":"default","textAlignment":"left"}},{"type":"tableCell","content":[{"type":"text","text":"Table ","styles":{}}],"props":{"colspan":1,"rowspan":1,"backgroundColor":"default","textColor":"default","textAlignment":"left"}}]}]},"children":[]}],"blockCutAtEnd":"12"} -{"_meta":{"startPos":0,"endPos":237},"blocks":[{"id":"1","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"Heading 1","styles":{}}],"children":[{"id":"2","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},{"id":"3","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},{"id":"4","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]}]},{"id":"5","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"Heading 2","styles":{}}],"children":[{"id":"6","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},{"id":"7","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},{"id":"8","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]}]},{"id":"9","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"Bold","styles":{"bold":true}},{"type":"text","text":"Italic","styles":{"italic":true}},{"type":"text","text":"Regular","styles":{}}],"children":[{"id":"10","type":"image","props":{"backgroundColor":"default","textAlignment":"left","name":"","url":"https://ralfvanveen.com/wp-content/uploads/2021/06/Placeholder-_-Glossary.svg","caption":"","showPreview":true},"children":[{"id":"11","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph","styles":{}}],"children":[]}]}]},{"id":"12","type":"table","props":{"textColor":"default"},"content":{"type":"tableContent","columnWidths":[null,null],"rows":[{"cells":[{"type":"tableCell","content":[{"type":"text","text":"Table Cell","styles":{}}],"props":{"colspan":1,"rowspan":1,"backgroundColor":"default","textColor":"default","textAlignment":"left"}},{"type":"tableCell","content":[{"type":"text","text":"Table C","styles":{}}],"props":{"colspan":1,"rowspan":1,"backgroundColor":"default","textColor":"default","textAlignment":"left"}}]}]},"children":[]}],"blockCutAtEnd":"12"} -{"_meta":{"startPos":0,"endPos":238},"blocks":[{"id":"1","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"Heading 1","styles":{}}],"children":[{"id":"2","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},{"id":"3","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},{"id":"4","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]}]},{"id":"5","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"Heading 2","styles":{}}],"children":[{"id":"6","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},{"id":"7","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},{"id":"8","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]}]},{"id":"9","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"Bold","styles":{"bold":true}},{"type":"text","text":"Italic","styles":{"italic":true}},{"type":"text","text":"Regular","styles":{}}],"children":[{"id":"10","type":"image","props":{"backgroundColor":"default","textAlignment":"left","name":"","url":"https://ralfvanveen.com/wp-content/uploads/2021/06/Placeholder-_-Glossary.svg","caption":"","showPreview":true},"children":[{"id":"11","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph","styles":{}}],"children":[]}]}]},{"id":"12","type":"table","props":{"textColor":"default"},"content":{"type":"tableContent","columnWidths":[null,null],"rows":[{"cells":[{"type":"tableCell","content":[{"type":"text","text":"Table Cell","styles":{}}],"props":{"colspan":1,"rowspan":1,"backgroundColor":"default","textColor":"default","textAlignment":"left"}},{"type":"tableCell","content":[{"type":"text","text":"Table Ce","styles":{}}],"props":{"colspan":1,"rowspan":1,"backgroundColor":"default","textColor":"default","textAlignment":"left"}}]}]},"children":[]}],"blockCutAtEnd":"12"} -{"_meta":{"startPos":0,"endPos":239},"blocks":[{"id":"1","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"Heading 1","styles":{}}],"children":[{"id":"2","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},{"id":"3","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},{"id":"4","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]}]},{"id":"5","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"Heading 2","styles":{}}],"children":[{"id":"6","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},{"id":"7","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},{"id":"8","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]}]},{"id":"9","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"Bold","styles":{"bold":true}},{"type":"text","text":"Italic","styles":{"italic":true}},{"type":"text","text":"Regular","styles":{}}],"children":[{"id":"10","type":"image","props":{"backgroundColor":"default","textAlignment":"left","name":"","url":"https://ralfvanveen.com/wp-content/uploads/2021/06/Placeholder-_-Glossary.svg","caption":"","showPreview":true},"children":[{"id":"11","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph","styles":{}}],"children":[]}]}]},{"id":"12","type":"table","props":{"textColor":"default"},"content":{"type":"tableContent","columnWidths":[null,null],"rows":[{"cells":[{"type":"tableCell","content":[{"type":"text","text":"Table Cell","styles":{}}],"props":{"colspan":1,"rowspan":1,"backgroundColor":"default","textColor":"default","textAlignment":"left"}},{"type":"tableCell","content":[{"type":"text","text":"Table Cel","styles":{}}],"props":{"colspan":1,"rowspan":1,"backgroundColor":"default","textColor":"default","textAlignment":"left"}}]}]},"children":[]}],"blockCutAtEnd":"12"} -{"_meta":{"startPos":0,"endPos":243},"blocks":[{"id":"1","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"Heading 1","styles":{}}],"children":[{"id":"2","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},{"id":"3","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},{"id":"4","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]}]},{"id":"5","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"Heading 2","styles":{}}],"children":[{"id":"6","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},{"id":"7","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},{"id":"8","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]}]},{"id":"9","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"Bold","styles":{"bold":true}},{"type":"text","text":"Italic","styles":{"italic":true}},{"type":"text","text":"Regular","styles":{}}],"children":[{"id":"10","type":"image","props":{"backgroundColor":"default","textAlignment":"left","name":"","url":"https://ralfvanveen.com/wp-content/uploads/2021/06/Placeholder-_-Glossary.svg","caption":"","showPreview":true},"children":[{"id":"11","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph","styles":{}}],"children":[]}]}]},{"id":"12","type":"table","props":{"textColor":"default"},"content":{"type":"tableContent","columnWidths":[null,null],"rows":[{"cells":[{"type":"tableCell","content":[{"type":"text","text":"Table Cell","styles":{}}],"props":{"colspan":1,"rowspan":1,"backgroundColor":"default","textColor":"default","textAlignment":"left"}},{"type":"tableCell","content":[{"type":"text","text":"Table Cell","styles":{}}],"props":{"colspan":1,"rowspan":1,"backgroundColor":"default","textColor":"default","textAlignment":"left"}}]}]},"children":[]}],"blockCutAtEnd":"12"} -{"_meta":{"startPos":0,"endPos":243},"blocks":[{"id":"1","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"Heading 1","styles":{}}],"children":[{"id":"2","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},{"id":"3","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},{"id":"4","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]}]},{"id":"5","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"Heading 2","styles":{}}],"children":[{"id":"6","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},{"id":"7","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},{"id":"8","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]}]},{"id":"9","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"Bold","styles":{"bold":true}},{"type":"text","text":"Italic","styles":{"italic":true}},{"type":"text","text":"Regular","styles":{}}],"children":[{"id":"10","type":"image","props":{"backgroundColor":"default","textAlignment":"left","name":"","url":"https://ralfvanveen.com/wp-content/uploads/2021/06/Placeholder-_-Glossary.svg","caption":"","showPreview":true},"children":[{"id":"11","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph","styles":{}}],"children":[]}]}]},{"id":"12","type":"table","props":{"textColor":"default"},"content":{"type":"tableContent","columnWidths":[null,null],"rows":[{"cells":[{"type":"tableCell","content":[{"type":"text","text":"Table Cell","styles":{}}],"props":{"colspan":1,"rowspan":1,"backgroundColor":"default","textColor":"default","textAlignment":"left"}},{"type":"tableCell","content":[{"type":"text","text":"Table Cell","styles":{}}],"props":{"colspan":1,"rowspan":1,"backgroundColor":"default","textColor":"default","textAlignment":"left"}}]}]},"children":[]}],"blockCutAtEnd":"12"} -{"_meta":{"startPos":0,"endPos":243},"blocks":[{"id":"1","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"Heading 1","styles":{}}],"children":[{"id":"2","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},{"id":"3","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},{"id":"4","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]}]},{"id":"5","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"Heading 2","styles":{}}],"children":[{"id":"6","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},{"id":"7","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},{"id":"8","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]}]},{"id":"9","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"Bold","styles":{"bold":true}},{"type":"text","text":"Italic","styles":{"italic":true}},{"type":"text","text":"Regular","styles":{}}],"children":[{"id":"10","type":"image","props":{"backgroundColor":"default","textAlignment":"left","name":"","url":"https://ralfvanveen.com/wp-content/uploads/2021/06/Placeholder-_-Glossary.svg","caption":"","showPreview":true},"children":[{"id":"11","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph","styles":{}}],"children":[]}]}]},{"id":"12","type":"table","props":{"textColor":"default"},"content":{"type":"tableContent","columnWidths":[null,null],"rows":[{"cells":[{"type":"tableCell","content":[{"type":"text","text":"Table Cell","styles":{}}],"props":{"colspan":1,"rowspan":1,"backgroundColor":"default","textColor":"default","textAlignment":"left"}},{"type":"tableCell","content":[{"type":"text","text":"Table Cell","styles":{}}],"props":{"colspan":1,"rowspan":1,"backgroundColor":"default","textColor":"default","textAlignment":"left"}}]}]},"children":[]}],"blockCutAtEnd":"12"} -{"_meta":{"startPos":0,"endPos":243},"blocks":[{"id":"1","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"Heading 1","styles":{}}],"children":[{"id":"2","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},{"id":"3","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},{"id":"4","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]}]},{"id":"5","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"Heading 2","styles":{}}],"children":[{"id":"6","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},{"id":"7","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},{"id":"8","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]}]},{"id":"9","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"Bold","styles":{"bold":true}},{"type":"text","text":"Italic","styles":{"italic":true}},{"type":"text","text":"Regular","styles":{}}],"children":[{"id":"10","type":"image","props":{"backgroundColor":"default","textAlignment":"left","name":"","url":"https://ralfvanveen.com/wp-content/uploads/2021/06/Placeholder-_-Glossary.svg","caption":"","showPreview":true},"children":[{"id":"11","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph","styles":{}}],"children":[]}]}]},{"id":"12","type":"table","props":{"textColor":"default"},"content":{"type":"tableContent","columnWidths":[null,null],"rows":[{"cells":[{"type":"tableCell","content":[{"type":"text","text":"Table Cell","styles":{}}],"props":{"colspan":1,"rowspan":1,"backgroundColor":"default","textColor":"default","textAlignment":"left"}},{"type":"tableCell","content":[{"type":"text","text":"Table Cell","styles":{}}],"props":{"colspan":1,"rowspan":1,"backgroundColor":"default","textColor":"default","textAlignment":"left"}}]}]},"children":[]}],"blockCutAtEnd":"12"} -{"_meta":{"startPos":0,"endPos":243},"blocks":[{"id":"1","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"Heading 1","styles":{}}],"children":[{"id":"2","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},{"id":"3","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},{"id":"4","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]}]},{"id":"5","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"Heading 2","styles":{}}],"children":[{"id":"6","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},{"id":"7","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},{"id":"8","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]}]},{"id":"9","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"Bold","styles":{"bold":true}},{"type":"text","text":"Italic","styles":{"italic":true}},{"type":"text","text":"Regular","styles":{}}],"children":[{"id":"10","type":"image","props":{"backgroundColor":"default","textAlignment":"left","name":"","url":"https://ralfvanveen.com/wp-content/uploads/2021/06/Placeholder-_-Glossary.svg","caption":"","showPreview":true},"children":[{"id":"11","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph","styles":{}}],"children":[]}]}]},{"id":"12","type":"table","props":{"textColor":"default"},"content":{"type":"tableContent","columnWidths":[null,null],"rows":[{"cells":[{"type":"tableCell","content":[{"type":"text","text":"Table Cell","styles":{}}],"props":{"colspan":1,"rowspan":1,"backgroundColor":"default","textColor":"default","textAlignment":"left"}},{"type":"tableCell","content":[{"type":"text","text":"Table Cell","styles":{}}],"props":{"colspan":1,"rowspan":1,"backgroundColor":"default","textColor":"default","textAlignment":"left"}}]}]},"children":[]}],"blockCutAtEnd":"12"} -{"_meta":{"startPos":0,"endPos":276},"blocks":[{"id":"1","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"Heading 1","styles":{}}],"children":[{"id":"2","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},{"id":"3","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},{"id":"4","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]}]},{"id":"5","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"Heading 2","styles":{}}],"children":[{"id":"6","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},{"id":"7","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},{"id":"8","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]}]},{"id":"9","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"Bold","styles":{"bold":true}},{"type":"text","text":"Italic","styles":{"italic":true}},{"type":"text","text":"Regular","styles":{}}],"children":[{"id":"10","type":"image","props":{"backgroundColor":"default","textAlignment":"left","name":"","url":"https://ralfvanveen.com/wp-content/uploads/2021/06/Placeholder-_-Glossary.svg","caption":"","showPreview":true},"children":[{"id":"11","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph","styles":{}}],"children":[]}]}]},{"id":"12","type":"table","props":{"textColor":"default"},"content":{"type":"tableContent","columnWidths":[null,null],"rows":[{"cells":[{"type":"tableCell","content":[{"type":"text","text":"Table Cell","styles":{}}],"props":{"colspan":1,"rowspan":1,"backgroundColor":"default","textColor":"default","textAlignment":"left"}},{"type":"tableCell","content":[{"type":"text","text":"Table Cell","styles":{}}],"props":{"colspan":1,"rowspan":1,"backgroundColor":"default","textColor":"default","textAlignment":"left"}}]},{"cells":[{"type":"tableCell","content":[{"type":"text","text":"Table Cell","styles":{}}],"props":{"colspan":1,"rowspan":1,"backgroundColor":"default","textColor":"default","textAlignment":"left"}},{"type":"tableCell","content":[{"type":"text","text":"Table Cell","styles":{}}],"props":{"colspan":1,"rowspan":1,"backgroundColor":"default","textColor":"default","textAlignment":"left"}}]}]},"children":[]}]} -{"_meta":{"startPos":0,"endPos":276},"blocks":[{"id":"1","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"Heading 1","styles":{}}],"children":[{"id":"2","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},{"id":"3","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},{"id":"4","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]}]},{"id":"5","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"Heading 2","styles":{}}],"children":[{"id":"6","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},{"id":"7","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},{"id":"8","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]}]},{"id":"9","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"Bold","styles":{"bold":true}},{"type":"text","text":"Italic","styles":{"italic":true}},{"type":"text","text":"Regular","styles":{}}],"children":[{"id":"10","type":"image","props":{"backgroundColor":"default","textAlignment":"left","name":"","url":"https://ralfvanveen.com/wp-content/uploads/2021/06/Placeholder-_-Glossary.svg","caption":"","showPreview":true},"children":[{"id":"11","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph","styles":{}}],"children":[]}]}]},{"id":"12","type":"table","props":{"textColor":"default"},"content":{"type":"tableContent","columnWidths":[null,null],"rows":[{"cells":[{"type":"tableCell","content":[{"type":"text","text":"Table Cell","styles":{}}],"props":{"colspan":1,"rowspan":1,"backgroundColor":"default","textColor":"default","textAlignment":"left"}},{"type":"tableCell","content":[{"type":"text","text":"Table Cell","styles":{}}],"props":{"colspan":1,"rowspan":1,"backgroundColor":"default","textColor":"default","textAlignment":"left"}}]},{"cells":[{"type":"tableCell","content":[{"type":"text","text":"Table Cell","styles":{}}],"props":{"colspan":1,"rowspan":1,"backgroundColor":"default","textColor":"default","textAlignment":"left"}},{"type":"tableCell","content":[{"type":"text","text":"Table Cell","styles":{}}],"props":{"colspan":1,"rowspan":1,"backgroundColor":"default","textColor":"default","textAlignment":"left"}}]}]},"children":[]}]} -{"_meta":{"startPos":0,"endPos":247},"blocks":[{"id":"1","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"Heading 1","styles":{}}],"children":[{"id":"2","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},{"id":"3","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},{"id":"4","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]}]},{"id":"5","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"Heading 2","styles":{}}],"children":[{"id":"6","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},{"id":"7","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},{"id":"8","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]}]},{"id":"9","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"Bold","styles":{"bold":true}},{"type":"text","text":"Italic","styles":{"italic":true}},{"type":"text","text":"Regular","styles":{}}],"children":[{"id":"10","type":"image","props":{"backgroundColor":"default","textAlignment":"left","name":"","url":"https://ralfvanveen.com/wp-content/uploads/2021/06/Placeholder-_-Glossary.svg","caption":"","showPreview":true},"children":[{"id":"11","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph","styles":{}}],"children":[]}]}]},{"id":"12","type":"table","props":{"textColor":"default"},"content":{"type":"tableContent","columnWidths":[null,null],"rows":[{"cells":[{"type":"tableCell","content":[{"type":"text","text":"Table Cell","styles":{}}],"props":{"colspan":1,"rowspan":1,"backgroundColor":"default","textColor":"default","textAlignment":"left"}},{"type":"tableCell","content":[{"type":"text","text":"Table Cell","styles":{}}],"props":{"colspan":1,"rowspan":1,"backgroundColor":"default","textColor":"default","textAlignment":"left"}}]},{"cells":[{"type":"tableCell","content":[{"type":"text","text":"T","styles":{}}],"props":{"colspan":1,"rowspan":1,"backgroundColor":"default","textColor":"default","textAlignment":"left"}}]}]},"children":[]}],"blockCutAtEnd":"12"} -{"_meta":{"startPos":0,"endPos":248},"blocks":[{"id":"1","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"Heading 1","styles":{}}],"children":[{"id":"2","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},{"id":"3","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},{"id":"4","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]}]},{"id":"5","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"Heading 2","styles":{}}],"children":[{"id":"6","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},{"id":"7","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},{"id":"8","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]}]},{"id":"9","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"Bold","styles":{"bold":true}},{"type":"text","text":"Italic","styles":{"italic":true}},{"type":"text","text":"Regular","styles":{}}],"children":[{"id":"10","type":"image","props":{"backgroundColor":"default","textAlignment":"left","name":"","url":"https://ralfvanveen.com/wp-content/uploads/2021/06/Placeholder-_-Glossary.svg","caption":"","showPreview":true},"children":[{"id":"11","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph","styles":{}}],"children":[]}]}]},{"id":"12","type":"table","props":{"textColor":"default"},"content":{"type":"tableContent","columnWidths":[null,null],"rows":[{"cells":[{"type":"tableCell","content":[{"type":"text","text":"Table Cell","styles":{}}],"props":{"colspan":1,"rowspan":1,"backgroundColor":"default","textColor":"default","textAlignment":"left"}},{"type":"tableCell","content":[{"type":"text","text":"Table Cell","styles":{}}],"props":{"colspan":1,"rowspan":1,"backgroundColor":"default","textColor":"default","textAlignment":"left"}}]},{"cells":[{"type":"tableCell","content":[{"type":"text","text":"Ta","styles":{}}],"props":{"colspan":1,"rowspan":1,"backgroundColor":"default","textColor":"default","textAlignment":"left"}}]}]},"children":[]}],"blockCutAtEnd":"12"} -{"_meta":{"startPos":0,"endPos":249},"blocks":[{"id":"1","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"Heading 1","styles":{}}],"children":[{"id":"2","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},{"id":"3","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},{"id":"4","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]}]},{"id":"5","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"Heading 2","styles":{}}],"children":[{"id":"6","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},{"id":"7","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},{"id":"8","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]}]},{"id":"9","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"Bold","styles":{"bold":true}},{"type":"text","text":"Italic","styles":{"italic":true}},{"type":"text","text":"Regular","styles":{}}],"children":[{"id":"10","type":"image","props":{"backgroundColor":"default","textAlignment":"left","name":"","url":"https://ralfvanveen.com/wp-content/uploads/2021/06/Placeholder-_-Glossary.svg","caption":"","showPreview":true},"children":[{"id":"11","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph","styles":{}}],"children":[]}]}]},{"id":"12","type":"table","props":{"textColor":"default"},"content":{"type":"tableContent","columnWidths":[null,null],"rows":[{"cells":[{"type":"tableCell","content":[{"type":"text","text":"Table Cell","styles":{}}],"props":{"colspan":1,"rowspan":1,"backgroundColor":"default","textColor":"default","textAlignment":"left"}},{"type":"tableCell","content":[{"type":"text","text":"Table Cell","styles":{}}],"props":{"colspan":1,"rowspan":1,"backgroundColor":"default","textColor":"default","textAlignment":"left"}}]},{"cells":[{"type":"tableCell","content":[{"type":"text","text":"Tab","styles":{}}],"props":{"colspan":1,"rowspan":1,"backgroundColor":"default","textColor":"default","textAlignment":"left"}}]}]},"children":[]}],"blockCutAtEnd":"12"} -{"_meta":{"startPos":0,"endPos":250},"blocks":[{"id":"1","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"Heading 1","styles":{}}],"children":[{"id":"2","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},{"id":"3","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},{"id":"4","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]}]},{"id":"5","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"Heading 2","styles":{}}],"children":[{"id":"6","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},{"id":"7","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},{"id":"8","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]}]},{"id":"9","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"Bold","styles":{"bold":true}},{"type":"text","text":"Italic","styles":{"italic":true}},{"type":"text","text":"Regular","styles":{}}],"children":[{"id":"10","type":"image","props":{"backgroundColor":"default","textAlignment":"left","name":"","url":"https://ralfvanveen.com/wp-content/uploads/2021/06/Placeholder-_-Glossary.svg","caption":"","showPreview":true},"children":[{"id":"11","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph","styles":{}}],"children":[]}]}]},{"id":"12","type":"table","props":{"textColor":"default"},"content":{"type":"tableContent","columnWidths":[null,null],"rows":[{"cells":[{"type":"tableCell","content":[{"type":"text","text":"Table Cell","styles":{}}],"props":{"colspan":1,"rowspan":1,"backgroundColor":"default","textColor":"default","textAlignment":"left"}},{"type":"tableCell","content":[{"type":"text","text":"Table Cell","styles":{}}],"props":{"colspan":1,"rowspan":1,"backgroundColor":"default","textColor":"default","textAlignment":"left"}}]},{"cells":[{"type":"tableCell","content":[{"type":"text","text":"Tabl","styles":{}}],"props":{"colspan":1,"rowspan":1,"backgroundColor":"default","textColor":"default","textAlignment":"left"}}]}]},"children":[]}],"blockCutAtEnd":"12"} -{"_meta":{"startPos":0,"endPos":251},"blocks":[{"id":"1","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"Heading 1","styles":{}}],"children":[{"id":"2","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},{"id":"3","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},{"id":"4","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]}]},{"id":"5","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"Heading 2","styles":{}}],"children":[{"id":"6","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},{"id":"7","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},{"id":"8","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]}]},{"id":"9","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"Bold","styles":{"bold":true}},{"type":"text","text":"Italic","styles":{"italic":true}},{"type":"text","text":"Regular","styles":{}}],"children":[{"id":"10","type":"image","props":{"backgroundColor":"default","textAlignment":"left","name":"","url":"https://ralfvanveen.com/wp-content/uploads/2021/06/Placeholder-_-Glossary.svg","caption":"","showPreview":true},"children":[{"id":"11","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph","styles":{}}],"children":[]}]}]},{"id":"12","type":"table","props":{"textColor":"default"},"content":{"type":"tableContent","columnWidths":[null,null],"rows":[{"cells":[{"type":"tableCell","content":[{"type":"text","text":"Table Cell","styles":{}}],"props":{"colspan":1,"rowspan":1,"backgroundColor":"default","textColor":"default","textAlignment":"left"}},{"type":"tableCell","content":[{"type":"text","text":"Table Cell","styles":{}}],"props":{"colspan":1,"rowspan":1,"backgroundColor":"default","textColor":"default","textAlignment":"left"}}]},{"cells":[{"type":"tableCell","content":[{"type":"text","text":"Table","styles":{}}],"props":{"colspan":1,"rowspan":1,"backgroundColor":"default","textColor":"default","textAlignment":"left"}}]}]},"children":[]}],"blockCutAtEnd":"12"} -{"_meta":{"startPos":0,"endPos":252},"blocks":[{"id":"1","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"Heading 1","styles":{}}],"children":[{"id":"2","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},{"id":"3","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},{"id":"4","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]}]},{"id":"5","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"Heading 2","styles":{}}],"children":[{"id":"6","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},{"id":"7","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},{"id":"8","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]}]},{"id":"9","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"Bold","styles":{"bold":true}},{"type":"text","text":"Italic","styles":{"italic":true}},{"type":"text","text":"Regular","styles":{}}],"children":[{"id":"10","type":"image","props":{"backgroundColor":"default","textAlignment":"left","name":"","url":"https://ralfvanveen.com/wp-content/uploads/2021/06/Placeholder-_-Glossary.svg","caption":"","showPreview":true},"children":[{"id":"11","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph","styles":{}}],"children":[]}]}]},{"id":"12","type":"table","props":{"textColor":"default"},"content":{"type":"tableContent","columnWidths":[null,null],"rows":[{"cells":[{"type":"tableCell","content":[{"type":"text","text":"Table Cell","styles":{}}],"props":{"colspan":1,"rowspan":1,"backgroundColor":"default","textColor":"default","textAlignment":"left"}},{"type":"tableCell","content":[{"type":"text","text":"Table Cell","styles":{}}],"props":{"colspan":1,"rowspan":1,"backgroundColor":"default","textColor":"default","textAlignment":"left"}}]},{"cells":[{"type":"tableCell","content":[{"type":"text","text":"Table ","styles":{}}],"props":{"colspan":1,"rowspan":1,"backgroundColor":"default","textColor":"default","textAlignment":"left"}}]}]},"children":[]}],"blockCutAtEnd":"12"} -{"_meta":{"startPos":0,"endPos":253},"blocks":[{"id":"1","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"Heading 1","styles":{}}],"children":[{"id":"2","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},{"id":"3","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},{"id":"4","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]}]},{"id":"5","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"Heading 2","styles":{}}],"children":[{"id":"6","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},{"id":"7","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},{"id":"8","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]}]},{"id":"9","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"Bold","styles":{"bold":true}},{"type":"text","text":"Italic","styles":{"italic":true}},{"type":"text","text":"Regular","styles":{}}],"children":[{"id":"10","type":"image","props":{"backgroundColor":"default","textAlignment":"left","name":"","url":"https://ralfvanveen.com/wp-content/uploads/2021/06/Placeholder-_-Glossary.svg","caption":"","showPreview":true},"children":[{"id":"11","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph","styles":{}}],"children":[]}]}]},{"id":"12","type":"table","props":{"textColor":"default"},"content":{"type":"tableContent","columnWidths":[null,null],"rows":[{"cells":[{"type":"tableCell","content":[{"type":"text","text":"Table Cell","styles":{}}],"props":{"colspan":1,"rowspan":1,"backgroundColor":"default","textColor":"default","textAlignment":"left"}},{"type":"tableCell","content":[{"type":"text","text":"Table Cell","styles":{}}],"props":{"colspan":1,"rowspan":1,"backgroundColor":"default","textColor":"default","textAlignment":"left"}}]},{"cells":[{"type":"tableCell","content":[{"type":"text","text":"Table C","styles":{}}],"props":{"colspan":1,"rowspan":1,"backgroundColor":"default","textColor":"default","textAlignment":"left"}}]}]},"children":[]}],"blockCutAtEnd":"12"} -{"_meta":{"startPos":0,"endPos":254},"blocks":[{"id":"1","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"Heading 1","styles":{}}],"children":[{"id":"2","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},{"id":"3","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},{"id":"4","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]}]},{"id":"5","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"Heading 2","styles":{}}],"children":[{"id":"6","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},{"id":"7","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},{"id":"8","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]}]},{"id":"9","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"Bold","styles":{"bold":true}},{"type":"text","text":"Italic","styles":{"italic":true}},{"type":"text","text":"Regular","styles":{}}],"children":[{"id":"10","type":"image","props":{"backgroundColor":"default","textAlignment":"left","name":"","url":"https://ralfvanveen.com/wp-content/uploads/2021/06/Placeholder-_-Glossary.svg","caption":"","showPreview":true},"children":[{"id":"11","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph","styles":{}}],"children":[]}]}]},{"id":"12","type":"table","props":{"textColor":"default"},"content":{"type":"tableContent","columnWidths":[null,null],"rows":[{"cells":[{"type":"tableCell","content":[{"type":"text","text":"Table Cell","styles":{}}],"props":{"colspan":1,"rowspan":1,"backgroundColor":"default","textColor":"default","textAlignment":"left"}},{"type":"tableCell","content":[{"type":"text","text":"Table Cell","styles":{}}],"props":{"colspan":1,"rowspan":1,"backgroundColor":"default","textColor":"default","textAlignment":"left"}}]},{"cells":[{"type":"tableCell","content":[{"type":"text","text":"Table Ce","styles":{}}],"props":{"colspan":1,"rowspan":1,"backgroundColor":"default","textColor":"default","textAlignment":"left"}}]}]},"children":[]}],"blockCutAtEnd":"12"} -{"_meta":{"startPos":0,"endPos":255},"blocks":[{"id":"1","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"Heading 1","styles":{}}],"children":[{"id":"2","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},{"id":"3","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},{"id":"4","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]}]},{"id":"5","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"Heading 2","styles":{}}],"children":[{"id":"6","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},{"id":"7","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},{"id":"8","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]}]},{"id":"9","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"Bold","styles":{"bold":true}},{"type":"text","text":"Italic","styles":{"italic":true}},{"type":"text","text":"Regular","styles":{}}],"children":[{"id":"10","type":"image","props":{"backgroundColor":"default","textAlignment":"left","name":"","url":"https://ralfvanveen.com/wp-content/uploads/2021/06/Placeholder-_-Glossary.svg","caption":"","showPreview":true},"children":[{"id":"11","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph","styles":{}}],"children":[]}]}]},{"id":"12","type":"table","props":{"textColor":"default"},"content":{"type":"tableContent","columnWidths":[null,null],"rows":[{"cells":[{"type":"tableCell","content":[{"type":"text","text":"Table Cell","styles":{}}],"props":{"colspan":1,"rowspan":1,"backgroundColor":"default","textColor":"default","textAlignment":"left"}},{"type":"tableCell","content":[{"type":"text","text":"Table Cell","styles":{}}],"props":{"colspan":1,"rowspan":1,"backgroundColor":"default","textColor":"default","textAlignment":"left"}}]},{"cells":[{"type":"tableCell","content":[{"type":"text","text":"Table Cel","styles":{}}],"props":{"colspan":1,"rowspan":1,"backgroundColor":"default","textColor":"default","textAlignment":"left"}}]}]},"children":[]}],"blockCutAtEnd":"12"} -{"_meta":{"startPos":0,"endPos":258},"blocks":[{"id":"1","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"Heading 1","styles":{}}],"children":[{"id":"2","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},{"id":"3","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},{"id":"4","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]}]},{"id":"5","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"Heading 2","styles":{}}],"children":[{"id":"6","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},{"id":"7","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},{"id":"8","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]}]},{"id":"9","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"Bold","styles":{"bold":true}},{"type":"text","text":"Italic","styles":{"italic":true}},{"type":"text","text":"Regular","styles":{}}],"children":[{"id":"10","type":"image","props":{"backgroundColor":"default","textAlignment":"left","name":"","url":"https://ralfvanveen.com/wp-content/uploads/2021/06/Placeholder-_-Glossary.svg","caption":"","showPreview":true},"children":[{"id":"11","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph","styles":{}}],"children":[]}]}]},{"id":"12","type":"table","props":{"textColor":"default"},"content":{"type":"tableContent","columnWidths":[null,null],"rows":[{"cells":[{"type":"tableCell","content":[{"type":"text","text":"Table Cell","styles":{}}],"props":{"colspan":1,"rowspan":1,"backgroundColor":"default","textColor":"default","textAlignment":"left"}},{"type":"tableCell","content":[{"type":"text","text":"Table Cell","styles":{}}],"props":{"colspan":1,"rowspan":1,"backgroundColor":"default","textColor":"default","textAlignment":"left"}}]},{"cells":[{"type":"tableCell","content":[{"type":"text","text":"Table Cell","styles":{}}],"props":{"colspan":1,"rowspan":1,"backgroundColor":"default","textColor":"default","textAlignment":"left"}}]}]},"children":[]}],"blockCutAtEnd":"12"} -{"_meta":{"startPos":0,"endPos":258},"blocks":[{"id":"1","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"Heading 1","styles":{}}],"children":[{"id":"2","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},{"id":"3","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},{"id":"4","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]}]},{"id":"5","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"Heading 2","styles":{}}],"children":[{"id":"6","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},{"id":"7","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},{"id":"8","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]}]},{"id":"9","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"Bold","styles":{"bold":true}},{"type":"text","text":"Italic","styles":{"italic":true}},{"type":"text","text":"Regular","styles":{}}],"children":[{"id":"10","type":"image","props":{"backgroundColor":"default","textAlignment":"left","name":"","url":"https://ralfvanveen.com/wp-content/uploads/2021/06/Placeholder-_-Glossary.svg","caption":"","showPreview":true},"children":[{"id":"11","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph","styles":{}}],"children":[]}]}]},{"id":"12","type":"table","props":{"textColor":"default"},"content":{"type":"tableContent","columnWidths":[null,null],"rows":[{"cells":[{"type":"tableCell","content":[{"type":"text","text":"Table Cell","styles":{}}],"props":{"colspan":1,"rowspan":1,"backgroundColor":"default","textColor":"default","textAlignment":"left"}},{"type":"tableCell","content":[{"type":"text","text":"Table Cell","styles":{}}],"props":{"colspan":1,"rowspan":1,"backgroundColor":"default","textColor":"default","textAlignment":"left"}}]},{"cells":[{"type":"tableCell","content":[{"type":"text","text":"Table Cell","styles":{}}],"props":{"colspan":1,"rowspan":1,"backgroundColor":"default","textColor":"default","textAlignment":"left"}}]}]},"children":[]}],"blockCutAtEnd":"12"} -{"_meta":{"startPos":0,"endPos":258},"blocks":[{"id":"1","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"Heading 1","styles":{}}],"children":[{"id":"2","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},{"id":"3","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},{"id":"4","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]}]},{"id":"5","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"Heading 2","styles":{}}],"children":[{"id":"6","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},{"id":"7","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},{"id":"8","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]}]},{"id":"9","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"Bold","styles":{"bold":true}},{"type":"text","text":"Italic","styles":{"italic":true}},{"type":"text","text":"Regular","styles":{}}],"children":[{"id":"10","type":"image","props":{"backgroundColor":"default","textAlignment":"left","name":"","url":"https://ralfvanveen.com/wp-content/uploads/2021/06/Placeholder-_-Glossary.svg","caption":"","showPreview":true},"children":[{"id":"11","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph","styles":{}}],"children":[]}]}]},{"id":"12","type":"table","props":{"textColor":"default"},"content":{"type":"tableContent","columnWidths":[null,null],"rows":[{"cells":[{"type":"tableCell","content":[{"type":"text","text":"Table Cell","styles":{}}],"props":{"colspan":1,"rowspan":1,"backgroundColor":"default","textColor":"default","textAlignment":"left"}},{"type":"tableCell","content":[{"type":"text","text":"Table Cell","styles":{}}],"props":{"colspan":1,"rowspan":1,"backgroundColor":"default","textColor":"default","textAlignment":"left"}}]},{"cells":[{"type":"tableCell","content":[{"type":"text","text":"Table Cell","styles":{}}],"props":{"colspan":1,"rowspan":1,"backgroundColor":"default","textColor":"default","textAlignment":"left"}}]}]},"children":[]}],"blockCutAtEnd":"12"} -{"_meta":{"startPos":0,"endPos":276},"blocks":[{"id":"1","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"Heading 1","styles":{}}],"children":[{"id":"2","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},{"id":"3","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},{"id":"4","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]}]},{"id":"5","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"Heading 2","styles":{}}],"children":[{"id":"6","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},{"id":"7","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},{"id":"8","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]}]},{"id":"9","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"Bold","styles":{"bold":true}},{"type":"text","text":"Italic","styles":{"italic":true}},{"type":"text","text":"Regular","styles":{}}],"children":[{"id":"10","type":"image","props":{"backgroundColor":"default","textAlignment":"left","name":"","url":"https://ralfvanveen.com/wp-content/uploads/2021/06/Placeholder-_-Glossary.svg","caption":"","showPreview":true},"children":[{"id":"11","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph","styles":{}}],"children":[]}]}]},{"id":"12","type":"table","props":{"textColor":"default"},"content":{"type":"tableContent","columnWidths":[null,null],"rows":[{"cells":[{"type":"tableCell","content":[{"type":"text","text":"Table Cell","styles":{}}],"props":{"colspan":1,"rowspan":1,"backgroundColor":"default","textColor":"default","textAlignment":"left"}},{"type":"tableCell","content":[{"type":"text","text":"Table Cell","styles":{}}],"props":{"colspan":1,"rowspan":1,"backgroundColor":"default","textColor":"default","textAlignment":"left"}}]},{"cells":[{"type":"tableCell","content":[{"type":"text","text":"Table Cell","styles":{}}],"props":{"colspan":1,"rowspan":1,"backgroundColor":"default","textColor":"default","textAlignment":"left"}},{"type":"tableCell","content":[{"type":"text","text":"Table Cell","styles":{}}],"props":{"colspan":1,"rowspan":1,"backgroundColor":"default","textColor":"default","textAlignment":"left"}}]}]},"children":[]}]} -{"_meta":{"startPos":0,"endPos":276},"blocks":[{"id":"1","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"Heading 1","styles":{}}],"children":[{"id":"2","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},{"id":"3","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},{"id":"4","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]}]},{"id":"5","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"Heading 2","styles":{}}],"children":[{"id":"6","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},{"id":"7","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},{"id":"8","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]}]},{"id":"9","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"Bold","styles":{"bold":true}},{"type":"text","text":"Italic","styles":{"italic":true}},{"type":"text","text":"Regular","styles":{}}],"children":[{"id":"10","type":"image","props":{"backgroundColor":"default","textAlignment":"left","name":"","url":"https://ralfvanveen.com/wp-content/uploads/2021/06/Placeholder-_-Glossary.svg","caption":"","showPreview":true},"children":[{"id":"11","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph","styles":{}}],"children":[]}]}]},{"id":"12","type":"table","props":{"textColor":"default"},"content":{"type":"tableContent","columnWidths":[null,null],"rows":[{"cells":[{"type":"tableCell","content":[{"type":"text","text":"Table Cell","styles":{}}],"props":{"colspan":1,"rowspan":1,"backgroundColor":"default","textColor":"default","textAlignment":"left"}},{"type":"tableCell","content":[{"type":"text","text":"Table Cell","styles":{}}],"props":{"colspan":1,"rowspan":1,"backgroundColor":"default","textColor":"default","textAlignment":"left"}}]},{"cells":[{"type":"tableCell","content":[{"type":"text","text":"Table Cell","styles":{}}],"props":{"colspan":1,"rowspan":1,"backgroundColor":"default","textColor":"default","textAlignment":"left"}},{"type":"tableCell","content":[{"type":"text","text":"Table Cell","styles":{}}],"props":{"colspan":1,"rowspan":1,"backgroundColor":"default","textColor":"default","textAlignment":"left"}}]}]},"children":[]}]} -{"_meta":{"startPos":0,"endPos":261},"blocks":[{"id":"1","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"Heading 1","styles":{}}],"children":[{"id":"2","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},{"id":"3","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},{"id":"4","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]}]},{"id":"5","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"Heading 2","styles":{}}],"children":[{"id":"6","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},{"id":"7","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},{"id":"8","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]}]},{"id":"9","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"Bold","styles":{"bold":true}},{"type":"text","text":"Italic","styles":{"italic":true}},{"type":"text","text":"Regular","styles":{}}],"children":[{"id":"10","type":"image","props":{"backgroundColor":"default","textAlignment":"left","name":"","url":"https://ralfvanveen.com/wp-content/uploads/2021/06/Placeholder-_-Glossary.svg","caption":"","showPreview":true},"children":[{"id":"11","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph","styles":{}}],"children":[]}]}]},{"id":"12","type":"table","props":{"textColor":"default"},"content":{"type":"tableContent","columnWidths":[null,null],"rows":[{"cells":[{"type":"tableCell","content":[{"type":"text","text":"Table Cell","styles":{}}],"props":{"colspan":1,"rowspan":1,"backgroundColor":"default","textColor":"default","textAlignment":"left"}},{"type":"tableCell","content":[{"type":"text","text":"Table Cell","styles":{}}],"props":{"colspan":1,"rowspan":1,"backgroundColor":"default","textColor":"default","textAlignment":"left"}}]},{"cells":[{"type":"tableCell","content":[{"type":"text","text":"Table Cell","styles":{}}],"props":{"colspan":1,"rowspan":1,"backgroundColor":"default","textColor":"default","textAlignment":"left"}},{"type":"tableCell","content":[{"type":"text","text":"T","styles":{}}],"props":{"colspan":1,"rowspan":1,"backgroundColor":"default","textColor":"default","textAlignment":"left"}}]}]},"children":[]}],"blockCutAtEnd":"12"} -{"_meta":{"startPos":0,"endPos":262},"blocks":[{"id":"1","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"Heading 1","styles":{}}],"children":[{"id":"2","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},{"id":"3","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},{"id":"4","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]}]},{"id":"5","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"Heading 2","styles":{}}],"children":[{"id":"6","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},{"id":"7","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},{"id":"8","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]}]},{"id":"9","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"Bold","styles":{"bold":true}},{"type":"text","text":"Italic","styles":{"italic":true}},{"type":"text","text":"Regular","styles":{}}],"children":[{"id":"10","type":"image","props":{"backgroundColor":"default","textAlignment":"left","name":"","url":"https://ralfvanveen.com/wp-content/uploads/2021/06/Placeholder-_-Glossary.svg","caption":"","showPreview":true},"children":[{"id":"11","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph","styles":{}}],"children":[]}]}]},{"id":"12","type":"table","props":{"textColor":"default"},"content":{"type":"tableContent","columnWidths":[null,null],"rows":[{"cells":[{"type":"tableCell","content":[{"type":"text","text":"Table Cell","styles":{}}],"props":{"colspan":1,"rowspan":1,"backgroundColor":"default","textColor":"default","textAlignment":"left"}},{"type":"tableCell","content":[{"type":"text","text":"Table Cell","styles":{}}],"props":{"colspan":1,"rowspan":1,"backgroundColor":"default","textColor":"default","textAlignment":"left"}}]},{"cells":[{"type":"tableCell","content":[{"type":"text","text":"Table Cell","styles":{}}],"props":{"colspan":1,"rowspan":1,"backgroundColor":"default","textColor":"default","textAlignment":"left"}},{"type":"tableCell","content":[{"type":"text","text":"Ta","styles":{}}],"props":{"colspan":1,"rowspan":1,"backgroundColor":"default","textColor":"default","textAlignment":"left"}}]}]},"children":[]}],"blockCutAtEnd":"12"} -{"_meta":{"startPos":0,"endPos":263},"blocks":[{"id":"1","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"Heading 1","styles":{}}],"children":[{"id":"2","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},{"id":"3","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},{"id":"4","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]}]},{"id":"5","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"Heading 2","styles":{}}],"children":[{"id":"6","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},{"id":"7","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},{"id":"8","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]}]},{"id":"9","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"Bold","styles":{"bold":true}},{"type":"text","text":"Italic","styles":{"italic":true}},{"type":"text","text":"Regular","styles":{}}],"children":[{"id":"10","type":"image","props":{"backgroundColor":"default","textAlignment":"left","name":"","url":"https://ralfvanveen.com/wp-content/uploads/2021/06/Placeholder-_-Glossary.svg","caption":"","showPreview":true},"children":[{"id":"11","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph","styles":{}}],"children":[]}]}]},{"id":"12","type":"table","props":{"textColor":"default"},"content":{"type":"tableContent","columnWidths":[null,null],"rows":[{"cells":[{"type":"tableCell","content":[{"type":"text","text":"Table Cell","styles":{}}],"props":{"colspan":1,"rowspan":1,"backgroundColor":"default","textColor":"default","textAlignment":"left"}},{"type":"tableCell","content":[{"type":"text","text":"Table Cell","styles":{}}],"props":{"colspan":1,"rowspan":1,"backgroundColor":"default","textColor":"default","textAlignment":"left"}}]},{"cells":[{"type":"tableCell","content":[{"type":"text","text":"Table Cell","styles":{}}],"props":{"colspan":1,"rowspan":1,"backgroundColor":"default","textColor":"default","textAlignment":"left"}},{"type":"tableCell","content":[{"type":"text","text":"Tab","styles":{}}],"props":{"colspan":1,"rowspan":1,"backgroundColor":"default","textColor":"default","textAlignment":"left"}}]}]},"children":[]}],"blockCutAtEnd":"12"} -{"_meta":{"startPos":0,"endPos":264},"blocks":[{"id":"1","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"Heading 1","styles":{}}],"children":[{"id":"2","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},{"id":"3","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},{"id":"4","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]}]},{"id":"5","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"Heading 2","styles":{}}],"children":[{"id":"6","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},{"id":"7","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},{"id":"8","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]}]},{"id":"9","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"Bold","styles":{"bold":true}},{"type":"text","text":"Italic","styles":{"italic":true}},{"type":"text","text":"Regular","styles":{}}],"children":[{"id":"10","type":"image","props":{"backgroundColor":"default","textAlignment":"left","name":"","url":"https://ralfvanveen.com/wp-content/uploads/2021/06/Placeholder-_-Glossary.svg","caption":"","showPreview":true},"children":[{"id":"11","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph","styles":{}}],"children":[]}]}]},{"id":"12","type":"table","props":{"textColor":"default"},"content":{"type":"tableContent","columnWidths":[null,null],"rows":[{"cells":[{"type":"tableCell","content":[{"type":"text","text":"Table Cell","styles":{}}],"props":{"colspan":1,"rowspan":1,"backgroundColor":"default","textColor":"default","textAlignment":"left"}},{"type":"tableCell","content":[{"type":"text","text":"Table Cell","styles":{}}],"props":{"colspan":1,"rowspan":1,"backgroundColor":"default","textColor":"default","textAlignment":"left"}}]},{"cells":[{"type":"tableCell","content":[{"type":"text","text":"Table Cell","styles":{}}],"props":{"colspan":1,"rowspan":1,"backgroundColor":"default","textColor":"default","textAlignment":"left"}},{"type":"tableCell","content":[{"type":"text","text":"Tabl","styles":{}}],"props":{"colspan":1,"rowspan":1,"backgroundColor":"default","textColor":"default","textAlignment":"left"}}]}]},"children":[]}],"blockCutAtEnd":"12"} -{"_meta":{"startPos":0,"endPos":265},"blocks":[{"id":"1","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"Heading 1","styles":{}}],"children":[{"id":"2","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},{"id":"3","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},{"id":"4","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]}]},{"id":"5","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"Heading 2","styles":{}}],"children":[{"id":"6","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},{"id":"7","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},{"id":"8","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]}]},{"id":"9","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"Bold","styles":{"bold":true}},{"type":"text","text":"Italic","styles":{"italic":true}},{"type":"text","text":"Regular","styles":{}}],"children":[{"id":"10","type":"image","props":{"backgroundColor":"default","textAlignment":"left","name":"","url":"https://ralfvanveen.com/wp-content/uploads/2021/06/Placeholder-_-Glossary.svg","caption":"","showPreview":true},"children":[{"id":"11","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph","styles":{}}],"children":[]}]}]},{"id":"12","type":"table","props":{"textColor":"default"},"content":{"type":"tableContent","columnWidths":[null,null],"rows":[{"cells":[{"type":"tableCell","content":[{"type":"text","text":"Table Cell","styles":{}}],"props":{"colspan":1,"rowspan":1,"backgroundColor":"default","textColor":"default","textAlignment":"left"}},{"type":"tableCell","content":[{"type":"text","text":"Table Cell","styles":{}}],"props":{"colspan":1,"rowspan":1,"backgroundColor":"default","textColor":"default","textAlignment":"left"}}]},{"cells":[{"type":"tableCell","content":[{"type":"text","text":"Table Cell","styles":{}}],"props":{"colspan":1,"rowspan":1,"backgroundColor":"default","textColor":"default","textAlignment":"left"}},{"type":"tableCell","content":[{"type":"text","text":"Table","styles":{}}],"props":{"colspan":1,"rowspan":1,"backgroundColor":"default","textColor":"default","textAlignment":"left"}}]}]},"children":[]}],"blockCutAtEnd":"12"} -{"_meta":{"startPos":0,"endPos":266},"blocks":[{"id":"1","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"Heading 1","styles":{}}],"children":[{"id":"2","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},{"id":"3","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},{"id":"4","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]}]},{"id":"5","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"Heading 2","styles":{}}],"children":[{"id":"6","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},{"id":"7","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},{"id":"8","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]}]},{"id":"9","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"Bold","styles":{"bold":true}},{"type":"text","text":"Italic","styles":{"italic":true}},{"type":"text","text":"Regular","styles":{}}],"children":[{"id":"10","type":"image","props":{"backgroundColor":"default","textAlignment":"left","name":"","url":"https://ralfvanveen.com/wp-content/uploads/2021/06/Placeholder-_-Glossary.svg","caption":"","showPreview":true},"children":[{"id":"11","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph","styles":{}}],"children":[]}]}]},{"id":"12","type":"table","props":{"textColor":"default"},"content":{"type":"tableContent","columnWidths":[null,null],"rows":[{"cells":[{"type":"tableCell","content":[{"type":"text","text":"Table Cell","styles":{}}],"props":{"colspan":1,"rowspan":1,"backgroundColor":"default","textColor":"default","textAlignment":"left"}},{"type":"tableCell","content":[{"type":"text","text":"Table Cell","styles":{}}],"props":{"colspan":1,"rowspan":1,"backgroundColor":"default","textColor":"default","textAlignment":"left"}}]},{"cells":[{"type":"tableCell","content":[{"type":"text","text":"Table Cell","styles":{}}],"props":{"colspan":1,"rowspan":1,"backgroundColor":"default","textColor":"default","textAlignment":"left"}},{"type":"tableCell","content":[{"type":"text","text":"Table ","styles":{}}],"props":{"colspan":1,"rowspan":1,"backgroundColor":"default","textColor":"default","textAlignment":"left"}}]}]},"children":[]}],"blockCutAtEnd":"12"} -{"_meta":{"startPos":0,"endPos":267},"blocks":[{"id":"1","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"Heading 1","styles":{}}],"children":[{"id":"2","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},{"id":"3","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},{"id":"4","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]}]},{"id":"5","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"Heading 2","styles":{}}],"children":[{"id":"6","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},{"id":"7","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},{"id":"8","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]}]},{"id":"9","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"Bold","styles":{"bold":true}},{"type":"text","text":"Italic","styles":{"italic":true}},{"type":"text","text":"Regular","styles":{}}],"children":[{"id":"10","type":"image","props":{"backgroundColor":"default","textAlignment":"left","name":"","url":"https://ralfvanveen.com/wp-content/uploads/2021/06/Placeholder-_-Glossary.svg","caption":"","showPreview":true},"children":[{"id":"11","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph","styles":{}}],"children":[]}]}]},{"id":"12","type":"table","props":{"textColor":"default"},"content":{"type":"tableContent","columnWidths":[null,null],"rows":[{"cells":[{"type":"tableCell","content":[{"type":"text","text":"Table Cell","styles":{}}],"props":{"colspan":1,"rowspan":1,"backgroundColor":"default","textColor":"default","textAlignment":"left"}},{"type":"tableCell","content":[{"type":"text","text":"Table Cell","styles":{}}],"props":{"colspan":1,"rowspan":1,"backgroundColor":"default","textColor":"default","textAlignment":"left"}}]},{"cells":[{"type":"tableCell","content":[{"type":"text","text":"Table Cell","styles":{}}],"props":{"colspan":1,"rowspan":1,"backgroundColor":"default","textColor":"default","textAlignment":"left"}},{"type":"tableCell","content":[{"type":"text","text":"Table C","styles":{}}],"props":{"colspan":1,"rowspan":1,"backgroundColor":"default","textColor":"default","textAlignment":"left"}}]}]},"children":[]}],"blockCutAtEnd":"12"} -{"_meta":{"startPos":0,"endPos":268},"blocks":[{"id":"1","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"Heading 1","styles":{}}],"children":[{"id":"2","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},{"id":"3","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},{"id":"4","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]}]},{"id":"5","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"Heading 2","styles":{}}],"children":[{"id":"6","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},{"id":"7","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},{"id":"8","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]}]},{"id":"9","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"Bold","styles":{"bold":true}},{"type":"text","text":"Italic","styles":{"italic":true}},{"type":"text","text":"Regular","styles":{}}],"children":[{"id":"10","type":"image","props":{"backgroundColor":"default","textAlignment":"left","name":"","url":"https://ralfvanveen.com/wp-content/uploads/2021/06/Placeholder-_-Glossary.svg","caption":"","showPreview":true},"children":[{"id":"11","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph","styles":{}}],"children":[]}]}]},{"id":"12","type":"table","props":{"textColor":"default"},"content":{"type":"tableContent","columnWidths":[null,null],"rows":[{"cells":[{"type":"tableCell","content":[{"type":"text","text":"Table Cell","styles":{}}],"props":{"colspan":1,"rowspan":1,"backgroundColor":"default","textColor":"default","textAlignment":"left"}},{"type":"tableCell","content":[{"type":"text","text":"Table Cell","styles":{}}],"props":{"colspan":1,"rowspan":1,"backgroundColor":"default","textColor":"default","textAlignment":"left"}}]},{"cells":[{"type":"tableCell","content":[{"type":"text","text":"Table Cell","styles":{}}],"props":{"colspan":1,"rowspan":1,"backgroundColor":"default","textColor":"default","textAlignment":"left"}},{"type":"tableCell","content":[{"type":"text","text":"Table Ce","styles":{}}],"props":{"colspan":1,"rowspan":1,"backgroundColor":"default","textColor":"default","textAlignment":"left"}}]}]},"children":[]}],"blockCutAtEnd":"12"} -{"_meta":{"startPos":0,"endPos":269},"blocks":[{"id":"1","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"Heading 1","styles":{}}],"children":[{"id":"2","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},{"id":"3","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},{"id":"4","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]}]},{"id":"5","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"Heading 2","styles":{}}],"children":[{"id":"6","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},{"id":"7","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},{"id":"8","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]}]},{"id":"9","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"Bold","styles":{"bold":true}},{"type":"text","text":"Italic","styles":{"italic":true}},{"type":"text","text":"Regular","styles":{}}],"children":[{"id":"10","type":"image","props":{"backgroundColor":"default","textAlignment":"left","name":"","url":"https://ralfvanveen.com/wp-content/uploads/2021/06/Placeholder-_-Glossary.svg","caption":"","showPreview":true},"children":[{"id":"11","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph","styles":{}}],"children":[]}]}]},{"id":"12","type":"table","props":{"textColor":"default"},"content":{"type":"tableContent","columnWidths":[null,null],"rows":[{"cells":[{"type":"tableCell","content":[{"type":"text","text":"Table Cell","styles":{}}],"props":{"colspan":1,"rowspan":1,"backgroundColor":"default","textColor":"default","textAlignment":"left"}},{"type":"tableCell","content":[{"type":"text","text":"Table Cell","styles":{}}],"props":{"colspan":1,"rowspan":1,"backgroundColor":"default","textColor":"default","textAlignment":"left"}}]},{"cells":[{"type":"tableCell","content":[{"type":"text","text":"Table Cell","styles":{}}],"props":{"colspan":1,"rowspan":1,"backgroundColor":"default","textColor":"default","textAlignment":"left"}},{"type":"tableCell","content":[{"type":"text","text":"Table Cel","styles":{}}],"props":{"colspan":1,"rowspan":1,"backgroundColor":"default","textColor":"default","textAlignment":"left"}}]}]},"children":[]}],"blockCutAtEnd":"12"} -{"_meta":{"startPos":0,"endPos":276},"blocks":[{"id":"1","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"Heading 1","styles":{}}],"children":[{"id":"2","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},{"id":"3","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},{"id":"4","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]}]},{"id":"5","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"Heading 2","styles":{}}],"children":[{"id":"6","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},{"id":"7","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},{"id":"8","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]}]},{"id":"9","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"Bold","styles":{"bold":true}},{"type":"text","text":"Italic","styles":{"italic":true}},{"type":"text","text":"Regular","styles":{}}],"children":[{"id":"10","type":"image","props":{"backgroundColor":"default","textAlignment":"left","name":"","url":"https://ralfvanveen.com/wp-content/uploads/2021/06/Placeholder-_-Glossary.svg","caption":"","showPreview":true},"children":[{"id":"11","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph","styles":{}}],"children":[]}]}]},{"id":"12","type":"table","props":{"textColor":"default"},"content":{"type":"tableContent","columnWidths":[null,null],"rows":[{"cells":[{"type":"tableCell","content":[{"type":"text","text":"Table Cell","styles":{}}],"props":{"colspan":1,"rowspan":1,"backgroundColor":"default","textColor":"default","textAlignment":"left"}},{"type":"tableCell","content":[{"type":"text","text":"Table Cell","styles":{}}],"props":{"colspan":1,"rowspan":1,"backgroundColor":"default","textColor":"default","textAlignment":"left"}}]},{"cells":[{"type":"tableCell","content":[{"type":"text","text":"Table Cell","styles":{}}],"props":{"colspan":1,"rowspan":1,"backgroundColor":"default","textColor":"default","textAlignment":"left"}},{"type":"tableCell","content":[{"type":"text","text":"Table Cell","styles":{}}],"props":{"colspan":1,"rowspan":1,"backgroundColor":"default","textColor":"default","textAlignment":"left"}}]}]},"children":[]}]} -{"_meta":{"startPos":0,"endPos":276},"blocks":[{"id":"1","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"Heading 1","styles":{}}],"children":[{"id":"2","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},{"id":"3","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},{"id":"4","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]}]},{"id":"5","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"Heading 2","styles":{}}],"children":[{"id":"6","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},{"id":"7","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},{"id":"8","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]}]},{"id":"9","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"Bold","styles":{"bold":true}},{"type":"text","text":"Italic","styles":{"italic":true}},{"type":"text","text":"Regular","styles":{}}],"children":[{"id":"10","type":"image","props":{"backgroundColor":"default","textAlignment":"left","name":"","url":"https://ralfvanveen.com/wp-content/uploads/2021/06/Placeholder-_-Glossary.svg","caption":"","showPreview":true},"children":[{"id":"11","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph","styles":{}}],"children":[]}]}]},{"id":"12","type":"table","props":{"textColor":"default"},"content":{"type":"tableContent","columnWidths":[null,null],"rows":[{"cells":[{"type":"tableCell","content":[{"type":"text","text":"Table Cell","styles":{}}],"props":{"colspan":1,"rowspan":1,"backgroundColor":"default","textColor":"default","textAlignment":"left"}},{"type":"tableCell","content":[{"type":"text","text":"Table Cell","styles":{}}],"props":{"colspan":1,"rowspan":1,"backgroundColor":"default","textColor":"default","textAlignment":"left"}}]},{"cells":[{"type":"tableCell","content":[{"type":"text","text":"Table Cell","styles":{}}],"props":{"colspan":1,"rowspan":1,"backgroundColor":"default","textColor":"default","textAlignment":"left"}},{"type":"tableCell","content":[{"type":"text","text":"Table Cell","styles":{}}],"props":{"colspan":1,"rowspan":1,"backgroundColor":"default","textColor":"default","textAlignment":"left"}}]}]},"children":[]}]} -{"_meta":{"startPos":0,"endPos":276},"blocks":[{"id":"1","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"Heading 1","styles":{}}],"children":[{"id":"2","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},{"id":"3","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},{"id":"4","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]}]},{"id":"5","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"Heading 2","styles":{}}],"children":[{"id":"6","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},{"id":"7","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},{"id":"8","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]}]},{"id":"9","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"Bold","styles":{"bold":true}},{"type":"text","text":"Italic","styles":{"italic":true}},{"type":"text","text":"Regular","styles":{}}],"children":[{"id":"10","type":"image","props":{"backgroundColor":"default","textAlignment":"left","name":"","url":"https://ralfvanveen.com/wp-content/uploads/2021/06/Placeholder-_-Glossary.svg","caption":"","showPreview":true},"children":[{"id":"11","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph","styles":{}}],"children":[]}]}]},{"id":"12","type":"table","props":{"textColor":"default"},"content":{"type":"tableContent","columnWidths":[null,null],"rows":[{"cells":[{"type":"tableCell","content":[{"type":"text","text":"Table Cell","styles":{}}],"props":{"colspan":1,"rowspan":1,"backgroundColor":"default","textColor":"default","textAlignment":"left"}},{"type":"tableCell","content":[{"type":"text","text":"Table Cell","styles":{}}],"props":{"colspan":1,"rowspan":1,"backgroundColor":"default","textColor":"default","textAlignment":"left"}}]},{"cells":[{"type":"tableCell","content":[{"type":"text","text":"Table Cell","styles":{}}],"props":{"colspan":1,"rowspan":1,"backgroundColor":"default","textColor":"default","textAlignment":"left"}},{"type":"tableCell","content":[{"type":"text","text":"Table Cell","styles":{}}],"props":{"colspan":1,"rowspan":1,"backgroundColor":"default","textColor":"default","textAlignment":"left"}}]}]},"children":[]}]} -{"_meta":{"startPos":0,"endPos":276},"blocks":[{"id":"1","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"Heading 1","styles":{}}],"children":[{"id":"2","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},{"id":"3","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},{"id":"4","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]}]},{"id":"5","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"Heading 2","styles":{}}],"children":[{"id":"6","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},{"id":"7","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},{"id":"8","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]}]},{"id":"9","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"Bold","styles":{"bold":true}},{"type":"text","text":"Italic","styles":{"italic":true}},{"type":"text","text":"Regular","styles":{}}],"children":[{"id":"10","type":"image","props":{"backgroundColor":"default","textAlignment":"left","name":"","url":"https://ralfvanveen.com/wp-content/uploads/2021/06/Placeholder-_-Glossary.svg","caption":"","showPreview":true},"children":[{"id":"11","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph","styles":{}}],"children":[]}]}]},{"id":"12","type":"table","props":{"textColor":"default"},"content":{"type":"tableContent","columnWidths":[null,null],"rows":[{"cells":[{"type":"tableCell","content":[{"type":"text","text":"Table Cell","styles":{}}],"props":{"colspan":1,"rowspan":1,"backgroundColor":"default","textColor":"default","textAlignment":"left"}},{"type":"tableCell","content":[{"type":"text","text":"Table Cell","styles":{}}],"props":{"colspan":1,"rowspan":1,"backgroundColor":"default","textColor":"default","textAlignment":"left"}}]},{"cells":[{"type":"tableCell","content":[{"type":"text","text":"Table Cell","styles":{}}],"props":{"colspan":1,"rowspan":1,"backgroundColor":"default","textColor":"default","textAlignment":"left"}},{"type":"tableCell","content":[{"type":"text","text":"Table Cell","styles":{}}],"props":{"colspan":1,"rowspan":1,"backgroundColor":"default","textColor":"default","textAlignment":"left"}}]}]},"children":[]}]} -{"_meta":{"startPos":0,"endPos":276},"blocks":[{"id":"1","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"Heading 1","styles":{}}],"children":[{"id":"2","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},{"id":"3","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},{"id":"4","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]}]},{"id":"5","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"Heading 2","styles":{}}],"children":[{"id":"6","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},{"id":"7","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},{"id":"8","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]}]},{"id":"9","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"Bold","styles":{"bold":true}},{"type":"text","text":"Italic","styles":{"italic":true}},{"type":"text","text":"Regular","styles":{}}],"children":[{"id":"10","type":"image","props":{"backgroundColor":"default","textAlignment":"left","name":"","url":"https://ralfvanveen.com/wp-content/uploads/2021/06/Placeholder-_-Glossary.svg","caption":"","showPreview":true},"children":[{"id":"11","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph","styles":{}}],"children":[]}]}]},{"id":"12","type":"table","props":{"textColor":"default"},"content":{"type":"tableContent","columnWidths":[null,null],"rows":[{"cells":[{"type":"tableCell","content":[{"type":"text","text":"Table Cell","styles":{}}],"props":{"colspan":1,"rowspan":1,"backgroundColor":"default","textColor":"default","textAlignment":"left"}},{"type":"tableCell","content":[{"type":"text","text":"Table Cell","styles":{}}],"props":{"colspan":1,"rowspan":1,"backgroundColor":"default","textColor":"default","textAlignment":"left"}}]},{"cells":[{"type":"tableCell","content":[{"type":"text","text":"Table Cell","styles":{}}],"props":{"colspan":1,"rowspan":1,"backgroundColor":"default","textColor":"default","textAlignment":"left"}},{"type":"tableCell","content":[{"type":"text","text":"Table Cell","styles":{}}],"props":{"colspan":1,"rowspan":1,"backgroundColor":"default","textColor":"default","textAlignment":"left"}}]}]},"children":[]}]} -{"_meta":{"startPos":0,"endPos":276},"blocks":[{"id":"1","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"Heading 1","styles":{}}],"children":[{"id":"2","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},{"id":"3","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},{"id":"4","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]}]},{"id":"5","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"Heading 2","styles":{}}],"children":[{"id":"6","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},{"id":"7","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},{"id":"8","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]}]},{"id":"9","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"Bold","styles":{"bold":true}},{"type":"text","text":"Italic","styles":{"italic":true}},{"type":"text","text":"Regular","styles":{}}],"children":[{"id":"10","type":"image","props":{"backgroundColor":"default","textAlignment":"left","name":"","url":"https://ralfvanveen.com/wp-content/uploads/2021/06/Placeholder-_-Glossary.svg","caption":"","showPreview":true},"children":[{"id":"11","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph","styles":{}}],"children":[]}]}]},{"id":"12","type":"table","props":{"textColor":"default"},"content":{"type":"tableContent","columnWidths":[null,null],"rows":[{"cells":[{"type":"tableCell","content":[{"type":"text","text":"Table Cell","styles":{}}],"props":{"colspan":1,"rowspan":1,"backgroundColor":"default","textColor":"default","textAlignment":"left"}},{"type":"tableCell","content":[{"type":"text","text":"Table Cell","styles":{}}],"props":{"colspan":1,"rowspan":1,"backgroundColor":"default","textColor":"default","textAlignment":"left"}}]},{"cells":[{"type":"tableCell","content":[{"type":"text","text":"Table Cell","styles":{}}],"props":{"colspan":1,"rowspan":1,"backgroundColor":"default","textColor":"default","textAlignment":"left"}},{"type":"tableCell","content":[{"type":"text","text":"Table Cell","styles":{}}],"props":{"colspan":1,"rowspan":1,"backgroundColor":"default","textColor":"default","textAlignment":"left"}}]}]},"children":[]}]} +{"_meta":{"startPos":0,"endPos":4},"blocks":[{"id":"1","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2,"isTogglable":false},"content":[{"type":"text","text":"H","styles":{}}],"children":[]}],"blockCutAtEnd":"1"} +{"_meta":{"startPos":0,"endPos":5},"blocks":[{"id":"1","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2,"isTogglable":false},"content":[{"type":"text","text":"He","styles":{}}],"children":[]}],"blockCutAtEnd":"1"} +{"_meta":{"startPos":0,"endPos":6},"blocks":[{"id":"1","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2,"isTogglable":false},"content":[{"type":"text","text":"Hea","styles":{}}],"children":[]}],"blockCutAtEnd":"1"} +{"_meta":{"startPos":0,"endPos":7},"blocks":[{"id":"1","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2,"isTogglable":false},"content":[{"type":"text","text":"Head","styles":{}}],"children":[]}],"blockCutAtEnd":"1"} +{"_meta":{"startPos":0,"endPos":8},"blocks":[{"id":"1","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2,"isTogglable":false},"content":[{"type":"text","text":"Headi","styles":{}}],"children":[]}],"blockCutAtEnd":"1"} +{"_meta":{"startPos":0,"endPos":9},"blocks":[{"id":"1","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2,"isTogglable":false},"content":[{"type":"text","text":"Headin","styles":{}}],"children":[]}],"blockCutAtEnd":"1"} +{"_meta":{"startPos":0,"endPos":10},"blocks":[{"id":"1","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2,"isTogglable":false},"content":[{"type":"text","text":"Heading","styles":{}}],"children":[]}],"blockCutAtEnd":"1"} +{"_meta":{"startPos":0,"endPos":11},"blocks":[{"id":"1","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2,"isTogglable":false},"content":[{"type":"text","text":"Heading ","styles":{}}],"children":[]}],"blockCutAtEnd":"1"} +{"_meta":{"startPos":0,"endPos":13},"blocks":[{"id":"1","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2,"isTogglable":false},"content":[{"type":"text","text":"Heading 1","styles":{}}],"children":[]}]} +{"_meta":{"startPos":0,"endPos":13},"blocks":[{"id":"1","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2,"isTogglable":false},"content":[{"type":"text","text":"Heading 1","styles":{}}],"children":[]}]} +{"_meta":{"startPos":0,"endPos":13},"blocks":[{"id":"1","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2,"isTogglable":false},"content":[{"type":"text","text":"Heading 1","styles":{}}],"children":[]}]} +{"_meta":{"startPos":0,"endPos":13},"blocks":[{"id":"1","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2,"isTogglable":false},"content":[{"type":"text","text":"Heading 1","styles":{}}],"children":[]}]} +{"_meta":{"startPos":0,"endPos":13},"blocks":[{"id":"1","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2,"isTogglable":false},"content":[{"type":"text","text":"Heading 1","styles":{}}],"children":[]}]} +{"_meta":{"startPos":0,"endPos":17},"blocks":[{"id":"1","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2,"isTogglable":false},"content":[{"type":"text","text":"Heading 1","styles":{}}],"children":[{"id":"2","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"N","styles":{}}],"children":[]}]}],"blockCutAtEnd":"2"} +{"_meta":{"startPos":0,"endPos":18},"blocks":[{"id":"1","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2,"isTogglable":false},"content":[{"type":"text","text":"Heading 1","styles":{}}],"children":[{"id":"2","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Ne","styles":{}}],"children":[]}]}],"blockCutAtEnd":"2"} +{"_meta":{"startPos":0,"endPos":19},"blocks":[{"id":"1","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2,"isTogglable":false},"content":[{"type":"text","text":"Heading 1","styles":{}}],"children":[{"id":"2","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nes","styles":{}}],"children":[]}]}],"blockCutAtEnd":"2"} +{"_meta":{"startPos":0,"endPos":20},"blocks":[{"id":"1","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2,"isTogglable":false},"content":[{"type":"text","text":"Heading 1","styles":{}}],"children":[{"id":"2","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nest","styles":{}}],"children":[]}]}],"blockCutAtEnd":"2"} +{"_meta":{"startPos":0,"endPos":21},"blocks":[{"id":"1","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2,"isTogglable":false},"content":[{"type":"text","text":"Heading 1","styles":{}}],"children":[{"id":"2","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Neste","styles":{}}],"children":[]}]}],"blockCutAtEnd":"2"} +{"_meta":{"startPos":0,"endPos":22},"blocks":[{"id":"1","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2,"isTogglable":false},"content":[{"type":"text","text":"Heading 1","styles":{}}],"children":[{"id":"2","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested","styles":{}}],"children":[]}]}],"blockCutAtEnd":"2"} +{"_meta":{"startPos":0,"endPos":23},"blocks":[{"id":"1","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2,"isTogglable":false},"content":[{"type":"text","text":"Heading 1","styles":{}}],"children":[{"id":"2","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested ","styles":{}}],"children":[]}]}],"blockCutAtEnd":"2"} +{"_meta":{"startPos":0,"endPos":24},"blocks":[{"id":"1","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2,"isTogglable":false},"content":[{"type":"text","text":"Heading 1","styles":{}}],"children":[{"id":"2","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested P","styles":{}}],"children":[]}]}],"blockCutAtEnd":"2"} +{"_meta":{"startPos":0,"endPos":25},"blocks":[{"id":"1","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2,"isTogglable":false},"content":[{"type":"text","text":"Heading 1","styles":{}}],"children":[{"id":"2","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Pa","styles":{}}],"children":[]}]}],"blockCutAtEnd":"2"} +{"_meta":{"startPos":0,"endPos":26},"blocks":[{"id":"1","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2,"isTogglable":false},"content":[{"type":"text","text":"Heading 1","styles":{}}],"children":[{"id":"2","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Par","styles":{}}],"children":[]}]}],"blockCutAtEnd":"2"} +{"_meta":{"startPos":0,"endPos":27},"blocks":[{"id":"1","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2,"isTogglable":false},"content":[{"type":"text","text":"Heading 1","styles":{}}],"children":[{"id":"2","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Para","styles":{}}],"children":[]}]}],"blockCutAtEnd":"2"} +{"_meta":{"startPos":0,"endPos":28},"blocks":[{"id":"1","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2,"isTogglable":false},"content":[{"type":"text","text":"Heading 1","styles":{}}],"children":[{"id":"2","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Parag","styles":{}}],"children":[]}]}],"blockCutAtEnd":"2"} +{"_meta":{"startPos":0,"endPos":29},"blocks":[{"id":"1","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2,"isTogglable":false},"content":[{"type":"text","text":"Heading 1","styles":{}}],"children":[{"id":"2","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragr","styles":{}}],"children":[]}]}],"blockCutAtEnd":"2"} +{"_meta":{"startPos":0,"endPos":30},"blocks":[{"id":"1","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2,"isTogglable":false},"content":[{"type":"text","text":"Heading 1","styles":{}}],"children":[{"id":"2","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragra","styles":{}}],"children":[]}]}],"blockCutAtEnd":"2"} +{"_meta":{"startPos":0,"endPos":31},"blocks":[{"id":"1","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2,"isTogglable":false},"content":[{"type":"text","text":"Heading 1","styles":{}}],"children":[{"id":"2","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragrap","styles":{}}],"children":[]}]}],"blockCutAtEnd":"2"} +{"_meta":{"startPos":0,"endPos":32},"blocks":[{"id":"1","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2,"isTogglable":false},"content":[{"type":"text","text":"Heading 1","styles":{}}],"children":[{"id":"2","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph","styles":{}}],"children":[]}]}],"blockCutAtEnd":"2"} +{"_meta":{"startPos":0,"endPos":33},"blocks":[{"id":"1","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2,"isTogglable":false},"content":[{"type":"text","text":"Heading 1","styles":{}}],"children":[{"id":"2","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph ","styles":{}}],"children":[]}]}],"blockCutAtEnd":"2"} +{"_meta":{"startPos":0,"endPos":36},"blocks":[{"id":"1","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2,"isTogglable":false},"content":[{"type":"text","text":"Heading 1","styles":{}}],"children":[{"id":"2","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]}]}]} +{"_meta":{"startPos":0,"endPos":36},"blocks":[{"id":"1","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2,"isTogglable":false},"content":[{"type":"text","text":"Heading 1","styles":{}}],"children":[{"id":"2","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]}]}]} +{"_meta":{"startPos":0,"endPos":36},"blocks":[{"id":"1","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2,"isTogglable":false},"content":[{"type":"text","text":"Heading 1","styles":{}}],"children":[{"id":"2","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]}]}]} +{"_meta":{"startPos":0,"endPos":36},"blocks":[{"id":"1","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2,"isTogglable":false},"content":[{"type":"text","text":"Heading 1","styles":{}}],"children":[{"id":"2","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]}]}]} +{"_meta":{"startPos":0,"endPos":36},"blocks":[{"id":"1","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2,"isTogglable":false},"content":[{"type":"text","text":"Heading 1","styles":{}}],"children":[{"id":"2","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]}]}]} +{"_meta":{"startPos":0,"endPos":39},"blocks":[{"id":"1","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2,"isTogglable":false},"content":[{"type":"text","text":"Heading 1","styles":{}}],"children":[{"id":"2","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},{"id":"3","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"N","styles":{}}],"children":[]}]}],"blockCutAtEnd":"3"} +{"_meta":{"startPos":0,"endPos":40},"blocks":[{"id":"1","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2,"isTogglable":false},"content":[{"type":"text","text":"Heading 1","styles":{}}],"children":[{"id":"2","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},{"id":"3","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Ne","styles":{}}],"children":[]}]}],"blockCutAtEnd":"3"} +{"_meta":{"startPos":0,"endPos":41},"blocks":[{"id":"1","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2,"isTogglable":false},"content":[{"type":"text","text":"Heading 1","styles":{}}],"children":[{"id":"2","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},{"id":"3","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nes","styles":{}}],"children":[]}]}],"blockCutAtEnd":"3"} +{"_meta":{"startPos":0,"endPos":42},"blocks":[{"id":"1","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2,"isTogglable":false},"content":[{"type":"text","text":"Heading 1","styles":{}}],"children":[{"id":"2","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},{"id":"3","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nest","styles":{}}],"children":[]}]}],"blockCutAtEnd":"3"} +{"_meta":{"startPos":0,"endPos":43},"blocks":[{"id":"1","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2,"isTogglable":false},"content":[{"type":"text","text":"Heading 1","styles":{}}],"children":[{"id":"2","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},{"id":"3","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Neste","styles":{}}],"children":[]}]}],"blockCutAtEnd":"3"} +{"_meta":{"startPos":0,"endPos":44},"blocks":[{"id":"1","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2,"isTogglable":false},"content":[{"type":"text","text":"Heading 1","styles":{}}],"children":[{"id":"2","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},{"id":"3","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested","styles":{}}],"children":[]}]}],"blockCutAtEnd":"3"} +{"_meta":{"startPos":0,"endPos":45},"blocks":[{"id":"1","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2,"isTogglable":false},"content":[{"type":"text","text":"Heading 1","styles":{}}],"children":[{"id":"2","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},{"id":"3","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested ","styles":{}}],"children":[]}]}],"blockCutAtEnd":"3"} +{"_meta":{"startPos":0,"endPos":46},"blocks":[{"id":"1","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2,"isTogglable":false},"content":[{"type":"text","text":"Heading 1","styles":{}}],"children":[{"id":"2","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},{"id":"3","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested P","styles":{}}],"children":[]}]}],"blockCutAtEnd":"3"} +{"_meta":{"startPos":0,"endPos":47},"blocks":[{"id":"1","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2,"isTogglable":false},"content":[{"type":"text","text":"Heading 1","styles":{}}],"children":[{"id":"2","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},{"id":"3","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Pa","styles":{}}],"children":[]}]}],"blockCutAtEnd":"3"} +{"_meta":{"startPos":0,"endPos":48},"blocks":[{"id":"1","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2,"isTogglable":false},"content":[{"type":"text","text":"Heading 1","styles":{}}],"children":[{"id":"2","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},{"id":"3","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Par","styles":{}}],"children":[]}]}],"blockCutAtEnd":"3"} +{"_meta":{"startPos":0,"endPos":49},"blocks":[{"id":"1","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2,"isTogglable":false},"content":[{"type":"text","text":"Heading 1","styles":{}}],"children":[{"id":"2","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},{"id":"3","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Para","styles":{}}],"children":[]}]}],"blockCutAtEnd":"3"} +{"_meta":{"startPos":0,"endPos":50},"blocks":[{"id":"1","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2,"isTogglable":false},"content":[{"type":"text","text":"Heading 1","styles":{}}],"children":[{"id":"2","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},{"id":"3","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Parag","styles":{}}],"children":[]}]}],"blockCutAtEnd":"3"} +{"_meta":{"startPos":0,"endPos":51},"blocks":[{"id":"1","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2,"isTogglable":false},"content":[{"type":"text","text":"Heading 1","styles":{}}],"children":[{"id":"2","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},{"id":"3","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragr","styles":{}}],"children":[]}]}],"blockCutAtEnd":"3"} +{"_meta":{"startPos":0,"endPos":52},"blocks":[{"id":"1","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2,"isTogglable":false},"content":[{"type":"text","text":"Heading 1","styles":{}}],"children":[{"id":"2","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},{"id":"3","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragra","styles":{}}],"children":[]}]}],"blockCutAtEnd":"3"} +{"_meta":{"startPos":0,"endPos":53},"blocks":[{"id":"1","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2,"isTogglable":false},"content":[{"type":"text","text":"Heading 1","styles":{}}],"children":[{"id":"2","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},{"id":"3","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragrap","styles":{}}],"children":[]}]}],"blockCutAtEnd":"3"} +{"_meta":{"startPos":0,"endPos":54},"blocks":[{"id":"1","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2,"isTogglable":false},"content":[{"type":"text","text":"Heading 1","styles":{}}],"children":[{"id":"2","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},{"id":"3","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph","styles":{}}],"children":[]}]}],"blockCutAtEnd":"3"} +{"_meta":{"startPos":0,"endPos":55},"blocks":[{"id":"1","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2,"isTogglable":false},"content":[{"type":"text","text":"Heading 1","styles":{}}],"children":[{"id":"2","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},{"id":"3","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph ","styles":{}}],"children":[]}]}],"blockCutAtEnd":"3"} +{"_meta":{"startPos":0,"endPos":58},"blocks":[{"id":"1","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2,"isTogglable":false},"content":[{"type":"text","text":"Heading 1","styles":{}}],"children":[{"id":"2","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},{"id":"3","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]}]}]} +{"_meta":{"startPos":0,"endPos":58},"blocks":[{"id":"1","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2,"isTogglable":false},"content":[{"type":"text","text":"Heading 1","styles":{}}],"children":[{"id":"2","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},{"id":"3","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]}]}]} +{"_meta":{"startPos":0,"endPos":58},"blocks":[{"id":"1","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2,"isTogglable":false},"content":[{"type":"text","text":"Heading 1","styles":{}}],"children":[{"id":"2","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},{"id":"3","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]}]}]} +{"_meta":{"startPos":0,"endPos":58},"blocks":[{"id":"1","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2,"isTogglable":false},"content":[{"type":"text","text":"Heading 1","styles":{}}],"children":[{"id":"2","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},{"id":"3","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]}]}]} +{"_meta":{"startPos":0,"endPos":58},"blocks":[{"id":"1","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2,"isTogglable":false},"content":[{"type":"text","text":"Heading 1","styles":{}}],"children":[{"id":"2","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},{"id":"3","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]}]}]} +{"_meta":{"startPos":0,"endPos":61},"blocks":[{"id":"1","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2,"isTogglable":false},"content":[{"type":"text","text":"Heading 1","styles":{}}],"children":[{"id":"2","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},{"id":"3","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},{"id":"4","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"N","styles":{}}],"children":[]}]}],"blockCutAtEnd":"4"} +{"_meta":{"startPos":0,"endPos":62},"blocks":[{"id":"1","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2,"isTogglable":false},"content":[{"type":"text","text":"Heading 1","styles":{}}],"children":[{"id":"2","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},{"id":"3","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},{"id":"4","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Ne","styles":{}}],"children":[]}]}],"blockCutAtEnd":"4"} +{"_meta":{"startPos":0,"endPos":63},"blocks":[{"id":"1","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2,"isTogglable":false},"content":[{"type":"text","text":"Heading 1","styles":{}}],"children":[{"id":"2","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},{"id":"3","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},{"id":"4","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nes","styles":{}}],"children":[]}]}],"blockCutAtEnd":"4"} +{"_meta":{"startPos":0,"endPos":64},"blocks":[{"id":"1","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2,"isTogglable":false},"content":[{"type":"text","text":"Heading 1","styles":{}}],"children":[{"id":"2","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},{"id":"3","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},{"id":"4","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nest","styles":{}}],"children":[]}]}],"blockCutAtEnd":"4"} +{"_meta":{"startPos":0,"endPos":65},"blocks":[{"id":"1","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2,"isTogglable":false},"content":[{"type":"text","text":"Heading 1","styles":{}}],"children":[{"id":"2","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},{"id":"3","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},{"id":"4","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Neste","styles":{}}],"children":[]}]}],"blockCutAtEnd":"4"} +{"_meta":{"startPos":0,"endPos":66},"blocks":[{"id":"1","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2,"isTogglable":false},"content":[{"type":"text","text":"Heading 1","styles":{}}],"children":[{"id":"2","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},{"id":"3","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},{"id":"4","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested","styles":{}}],"children":[]}]}],"blockCutAtEnd":"4"} +{"_meta":{"startPos":0,"endPos":67},"blocks":[{"id":"1","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2,"isTogglable":false},"content":[{"type":"text","text":"Heading 1","styles":{}}],"children":[{"id":"2","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},{"id":"3","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},{"id":"4","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested ","styles":{}}],"children":[]}]}],"blockCutAtEnd":"4"} +{"_meta":{"startPos":0,"endPos":68},"blocks":[{"id":"1","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2,"isTogglable":false},"content":[{"type":"text","text":"Heading 1","styles":{}}],"children":[{"id":"2","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},{"id":"3","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},{"id":"4","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested P","styles":{}}],"children":[]}]}],"blockCutAtEnd":"4"} +{"_meta":{"startPos":0,"endPos":69},"blocks":[{"id":"1","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2,"isTogglable":false},"content":[{"type":"text","text":"Heading 1","styles":{}}],"children":[{"id":"2","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},{"id":"3","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},{"id":"4","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Pa","styles":{}}],"children":[]}]}],"blockCutAtEnd":"4"} +{"_meta":{"startPos":0,"endPos":70},"blocks":[{"id":"1","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2,"isTogglable":false},"content":[{"type":"text","text":"Heading 1","styles":{}}],"children":[{"id":"2","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},{"id":"3","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},{"id":"4","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Par","styles":{}}],"children":[]}]}],"blockCutAtEnd":"4"} +{"_meta":{"startPos":0,"endPos":71},"blocks":[{"id":"1","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2,"isTogglable":false},"content":[{"type":"text","text":"Heading 1","styles":{}}],"children":[{"id":"2","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},{"id":"3","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},{"id":"4","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Para","styles":{}}],"children":[]}]}],"blockCutAtEnd":"4"} +{"_meta":{"startPos":0,"endPos":72},"blocks":[{"id":"1","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2,"isTogglable":false},"content":[{"type":"text","text":"Heading 1","styles":{}}],"children":[{"id":"2","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},{"id":"3","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},{"id":"4","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Parag","styles":{}}],"children":[]}]}],"blockCutAtEnd":"4"} +{"_meta":{"startPos":0,"endPos":73},"blocks":[{"id":"1","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2,"isTogglable":false},"content":[{"type":"text","text":"Heading 1","styles":{}}],"children":[{"id":"2","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},{"id":"3","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},{"id":"4","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragr","styles":{}}],"children":[]}]}],"blockCutAtEnd":"4"} +{"_meta":{"startPos":0,"endPos":74},"blocks":[{"id":"1","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2,"isTogglable":false},"content":[{"type":"text","text":"Heading 1","styles":{}}],"children":[{"id":"2","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},{"id":"3","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},{"id":"4","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragra","styles":{}}],"children":[]}]}],"blockCutAtEnd":"4"} +{"_meta":{"startPos":0,"endPos":75},"blocks":[{"id":"1","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2,"isTogglable":false},"content":[{"type":"text","text":"Heading 1","styles":{}}],"children":[{"id":"2","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},{"id":"3","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},{"id":"4","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragrap","styles":{}}],"children":[]}]}],"blockCutAtEnd":"4"} +{"_meta":{"startPos":0,"endPos":76},"blocks":[{"id":"1","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2,"isTogglable":false},"content":[{"type":"text","text":"Heading 1","styles":{}}],"children":[{"id":"2","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},{"id":"3","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},{"id":"4","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph","styles":{}}],"children":[]}]}],"blockCutAtEnd":"4"} +{"_meta":{"startPos":0,"endPos":77},"blocks":[{"id":"1","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2,"isTogglable":false},"content":[{"type":"text","text":"Heading 1","styles":{}}],"children":[{"id":"2","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},{"id":"3","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},{"id":"4","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph ","styles":{}}],"children":[]}]}],"blockCutAtEnd":"4"} +{"_meta":{"startPos":0,"endPos":82},"blocks":[{"id":"1","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2,"isTogglable":false},"content":[{"type":"text","text":"Heading 1","styles":{}}],"children":[{"id":"2","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},{"id":"3","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},{"id":"4","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]}]}]} +{"_meta":{"startPos":0,"endPos":82},"blocks":[{"id":"1","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2,"isTogglable":false},"content":[{"type":"text","text":"Heading 1","styles":{}}],"children":[{"id":"2","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},{"id":"3","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},{"id":"4","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]}]}]} +{"_meta":{"startPos":0,"endPos":82},"blocks":[{"id":"1","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2,"isTogglable":false},"content":[{"type":"text","text":"Heading 1","styles":{}}],"children":[{"id":"2","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},{"id":"3","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},{"id":"4","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]}]}]} +{"_meta":{"startPos":0,"endPos":82},"blocks":[{"id":"1","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2,"isTogglable":false},"content":[{"type":"text","text":"Heading 1","styles":{}}],"children":[{"id":"2","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},{"id":"3","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},{"id":"4","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]}]}]} +{"_meta":{"startPos":0,"endPos":82},"blocks":[{"id":"1","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2,"isTogglable":false},"content":[{"type":"text","text":"Heading 1","styles":{}}],"children":[{"id":"2","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},{"id":"3","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},{"id":"4","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]}]}]} +{"_meta":{"startPos":0,"endPos":82},"blocks":[{"id":"1","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2,"isTogglable":false},"content":[{"type":"text","text":"Heading 1","styles":{}}],"children":[{"id":"2","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},{"id":"3","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},{"id":"4","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]}]}]} +{"_meta":{"startPos":0,"endPos":82},"blocks":[{"id":"1","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2,"isTogglable":false},"content":[{"type":"text","text":"Heading 1","styles":{}}],"children":[{"id":"2","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},{"id":"3","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},{"id":"4","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]}]}]} +{"_meta":{"startPos":0,"endPos":85},"blocks":[{"id":"1","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2,"isTogglable":false},"content":[{"type":"text","text":"Heading 1","styles":{}}],"children":[{"id":"2","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},{"id":"3","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},{"id":"4","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]}]},{"id":"5","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2,"isTogglable":false},"content":[{"type":"text","text":"H","styles":{}}],"children":[]}],"blockCutAtEnd":"5"} +{"_meta":{"startPos":0,"endPos":86},"blocks":[{"id":"1","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2,"isTogglable":false},"content":[{"type":"text","text":"Heading 1","styles":{}}],"children":[{"id":"2","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},{"id":"3","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},{"id":"4","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]}]},{"id":"5","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2,"isTogglable":false},"content":[{"type":"text","text":"He","styles":{}}],"children":[]}],"blockCutAtEnd":"5"} +{"_meta":{"startPos":0,"endPos":87},"blocks":[{"id":"1","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2,"isTogglable":false},"content":[{"type":"text","text":"Heading 1","styles":{}}],"children":[{"id":"2","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},{"id":"3","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},{"id":"4","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]}]},{"id":"5","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2,"isTogglable":false},"content":[{"type":"text","text":"Hea","styles":{}}],"children":[]}],"blockCutAtEnd":"5"} +{"_meta":{"startPos":0,"endPos":88},"blocks":[{"id":"1","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2,"isTogglable":false},"content":[{"type":"text","text":"Heading 1","styles":{}}],"children":[{"id":"2","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},{"id":"3","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},{"id":"4","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]}]},{"id":"5","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2,"isTogglable":false},"content":[{"type":"text","text":"Head","styles":{}}],"children":[]}],"blockCutAtEnd":"5"} +{"_meta":{"startPos":0,"endPos":89},"blocks":[{"id":"1","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2,"isTogglable":false},"content":[{"type":"text","text":"Heading 1","styles":{}}],"children":[{"id":"2","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},{"id":"3","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},{"id":"4","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]}]},{"id":"5","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2,"isTogglable":false},"content":[{"type":"text","text":"Headi","styles":{}}],"children":[]}],"blockCutAtEnd":"5"} +{"_meta":{"startPos":0,"endPos":90},"blocks":[{"id":"1","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2,"isTogglable":false},"content":[{"type":"text","text":"Heading 1","styles":{}}],"children":[{"id":"2","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},{"id":"3","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},{"id":"4","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]}]},{"id":"5","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2,"isTogglable":false},"content":[{"type":"text","text":"Headin","styles":{}}],"children":[]}],"blockCutAtEnd":"5"} +{"_meta":{"startPos":0,"endPos":91},"blocks":[{"id":"1","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2,"isTogglable":false},"content":[{"type":"text","text":"Heading 1","styles":{}}],"children":[{"id":"2","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},{"id":"3","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},{"id":"4","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]}]},{"id":"5","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2,"isTogglable":false},"content":[{"type":"text","text":"Heading","styles":{}}],"children":[]}],"blockCutAtEnd":"5"} +{"_meta":{"startPos":0,"endPos":92},"blocks":[{"id":"1","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2,"isTogglable":false},"content":[{"type":"text","text":"Heading 1","styles":{}}],"children":[{"id":"2","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},{"id":"3","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},{"id":"4","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]}]},{"id":"5","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2,"isTogglable":false},"content":[{"type":"text","text":"Heading ","styles":{}}],"children":[]}],"blockCutAtEnd":"5"} +{"_meta":{"startPos":0,"endPos":94},"blocks":[{"id":"1","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2,"isTogglable":false},"content":[{"type":"text","text":"Heading 1","styles":{}}],"children":[{"id":"2","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},{"id":"3","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},{"id":"4","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]}]},{"id":"5","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2,"isTogglable":false},"content":[{"type":"text","text":"Heading 2","styles":{}}],"children":[]}]} +{"_meta":{"startPos":0,"endPos":94},"blocks":[{"id":"1","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2,"isTogglable":false},"content":[{"type":"text","text":"Heading 1","styles":{}}],"children":[{"id":"2","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},{"id":"3","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},{"id":"4","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]}]},{"id":"5","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2,"isTogglable":false},"content":[{"type":"text","text":"Heading 2","styles":{}}],"children":[]}]} +{"_meta":{"startPos":0,"endPos":94},"blocks":[{"id":"1","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2,"isTogglable":false},"content":[{"type":"text","text":"Heading 1","styles":{}}],"children":[{"id":"2","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},{"id":"3","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},{"id":"4","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]}]},{"id":"5","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2,"isTogglable":false},"content":[{"type":"text","text":"Heading 2","styles":{}}],"children":[]}]} +{"_meta":{"startPos":0,"endPos":94},"blocks":[{"id":"1","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2,"isTogglable":false},"content":[{"type":"text","text":"Heading 1","styles":{}}],"children":[{"id":"2","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},{"id":"3","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},{"id":"4","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]}]},{"id":"5","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2,"isTogglable":false},"content":[{"type":"text","text":"Heading 2","styles":{}}],"children":[]}]} +{"_meta":{"startPos":0,"endPos":94},"blocks":[{"id":"1","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2,"isTogglable":false},"content":[{"type":"text","text":"Heading 1","styles":{}}],"children":[{"id":"2","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},{"id":"3","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},{"id":"4","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]}]},{"id":"5","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2,"isTogglable":false},"content":[{"type":"text","text":"Heading 2","styles":{}}],"children":[]}]} +{"_meta":{"startPos":0,"endPos":98},"blocks":[{"id":"1","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2,"isTogglable":false},"content":[{"type":"text","text":"Heading 1","styles":{}}],"children":[{"id":"2","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},{"id":"3","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},{"id":"4","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]}]},{"id":"5","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2,"isTogglable":false},"content":[{"type":"text","text":"Heading 2","styles":{}}],"children":[{"id":"6","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"N","styles":{}}],"children":[]}]}],"blockCutAtEnd":"6"} +{"_meta":{"startPos":0,"endPos":99},"blocks":[{"id":"1","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2,"isTogglable":false},"content":[{"type":"text","text":"Heading 1","styles":{}}],"children":[{"id":"2","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},{"id":"3","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},{"id":"4","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]}]},{"id":"5","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2,"isTogglable":false},"content":[{"type":"text","text":"Heading 2","styles":{}}],"children":[{"id":"6","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Ne","styles":{}}],"children":[]}]}],"blockCutAtEnd":"6"} +{"_meta":{"startPos":0,"endPos":100},"blocks":[{"id":"1","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2,"isTogglable":false},"content":[{"type":"text","text":"Heading 1","styles":{}}],"children":[{"id":"2","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},{"id":"3","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},{"id":"4","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]}]},{"id":"5","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2,"isTogglable":false},"content":[{"type":"text","text":"Heading 2","styles":{}}],"children":[{"id":"6","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nes","styles":{}}],"children":[]}]}],"blockCutAtEnd":"6"} +{"_meta":{"startPos":0,"endPos":101},"blocks":[{"id":"1","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2,"isTogglable":false},"content":[{"type":"text","text":"Heading 1","styles":{}}],"children":[{"id":"2","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},{"id":"3","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},{"id":"4","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]}]},{"id":"5","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2,"isTogglable":false},"content":[{"type":"text","text":"Heading 2","styles":{}}],"children":[{"id":"6","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nest","styles":{}}],"children":[]}]}],"blockCutAtEnd":"6"} +{"_meta":{"startPos":0,"endPos":102},"blocks":[{"id":"1","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2,"isTogglable":false},"content":[{"type":"text","text":"Heading 1","styles":{}}],"children":[{"id":"2","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},{"id":"3","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},{"id":"4","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]}]},{"id":"5","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2,"isTogglable":false},"content":[{"type":"text","text":"Heading 2","styles":{}}],"children":[{"id":"6","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Neste","styles":{}}],"children":[]}]}],"blockCutAtEnd":"6"} +{"_meta":{"startPos":0,"endPos":103},"blocks":[{"id":"1","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2,"isTogglable":false},"content":[{"type":"text","text":"Heading 1","styles":{}}],"children":[{"id":"2","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},{"id":"3","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},{"id":"4","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]}]},{"id":"5","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2,"isTogglable":false},"content":[{"type":"text","text":"Heading 2","styles":{}}],"children":[{"id":"6","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested","styles":{}}],"children":[]}]}],"blockCutAtEnd":"6"} +{"_meta":{"startPos":0,"endPos":104},"blocks":[{"id":"1","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2,"isTogglable":false},"content":[{"type":"text","text":"Heading 1","styles":{}}],"children":[{"id":"2","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},{"id":"3","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},{"id":"4","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]}]},{"id":"5","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2,"isTogglable":false},"content":[{"type":"text","text":"Heading 2","styles":{}}],"children":[{"id":"6","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested ","styles":{}}],"children":[]}]}],"blockCutAtEnd":"6"} +{"_meta":{"startPos":0,"endPos":105},"blocks":[{"id":"1","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2,"isTogglable":false},"content":[{"type":"text","text":"Heading 1","styles":{}}],"children":[{"id":"2","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},{"id":"3","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},{"id":"4","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]}]},{"id":"5","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2,"isTogglable":false},"content":[{"type":"text","text":"Heading 2","styles":{}}],"children":[{"id":"6","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested P","styles":{}}],"children":[]}]}],"blockCutAtEnd":"6"} +{"_meta":{"startPos":0,"endPos":106},"blocks":[{"id":"1","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2,"isTogglable":false},"content":[{"type":"text","text":"Heading 1","styles":{}}],"children":[{"id":"2","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},{"id":"3","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},{"id":"4","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]}]},{"id":"5","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2,"isTogglable":false},"content":[{"type":"text","text":"Heading 2","styles":{}}],"children":[{"id":"6","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Pa","styles":{}}],"children":[]}]}],"blockCutAtEnd":"6"} +{"_meta":{"startPos":0,"endPos":107},"blocks":[{"id":"1","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2,"isTogglable":false},"content":[{"type":"text","text":"Heading 1","styles":{}}],"children":[{"id":"2","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},{"id":"3","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},{"id":"4","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]}]},{"id":"5","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2,"isTogglable":false},"content":[{"type":"text","text":"Heading 2","styles":{}}],"children":[{"id":"6","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Par","styles":{}}],"children":[]}]}],"blockCutAtEnd":"6"} +{"_meta":{"startPos":0,"endPos":108},"blocks":[{"id":"1","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2,"isTogglable":false},"content":[{"type":"text","text":"Heading 1","styles":{}}],"children":[{"id":"2","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},{"id":"3","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},{"id":"4","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]}]},{"id":"5","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2,"isTogglable":false},"content":[{"type":"text","text":"Heading 2","styles":{}}],"children":[{"id":"6","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Para","styles":{}}],"children":[]}]}],"blockCutAtEnd":"6"} +{"_meta":{"startPos":0,"endPos":109},"blocks":[{"id":"1","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2,"isTogglable":false},"content":[{"type":"text","text":"Heading 1","styles":{}}],"children":[{"id":"2","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},{"id":"3","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},{"id":"4","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]}]},{"id":"5","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2,"isTogglable":false},"content":[{"type":"text","text":"Heading 2","styles":{}}],"children":[{"id":"6","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Parag","styles":{}}],"children":[]}]}],"blockCutAtEnd":"6"} +{"_meta":{"startPos":0,"endPos":110},"blocks":[{"id":"1","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2,"isTogglable":false},"content":[{"type":"text","text":"Heading 1","styles":{}}],"children":[{"id":"2","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},{"id":"3","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},{"id":"4","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]}]},{"id":"5","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2,"isTogglable":false},"content":[{"type":"text","text":"Heading 2","styles":{}}],"children":[{"id":"6","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragr","styles":{}}],"children":[]}]}],"blockCutAtEnd":"6"} +{"_meta":{"startPos":0,"endPos":111},"blocks":[{"id":"1","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2,"isTogglable":false},"content":[{"type":"text","text":"Heading 1","styles":{}}],"children":[{"id":"2","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},{"id":"3","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},{"id":"4","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]}]},{"id":"5","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2,"isTogglable":false},"content":[{"type":"text","text":"Heading 2","styles":{}}],"children":[{"id":"6","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragra","styles":{}}],"children":[]}]}],"blockCutAtEnd":"6"} +{"_meta":{"startPos":0,"endPos":112},"blocks":[{"id":"1","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2,"isTogglable":false},"content":[{"type":"text","text":"Heading 1","styles":{}}],"children":[{"id":"2","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},{"id":"3","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},{"id":"4","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]}]},{"id":"5","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2,"isTogglable":false},"content":[{"type":"text","text":"Heading 2","styles":{}}],"children":[{"id":"6","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragrap","styles":{}}],"children":[]}]}],"blockCutAtEnd":"6"} +{"_meta":{"startPos":0,"endPos":113},"blocks":[{"id":"1","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2,"isTogglable":false},"content":[{"type":"text","text":"Heading 1","styles":{}}],"children":[{"id":"2","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},{"id":"3","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},{"id":"4","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]}]},{"id":"5","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2,"isTogglable":false},"content":[{"type":"text","text":"Heading 2","styles":{}}],"children":[{"id":"6","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph","styles":{}}],"children":[]}]}],"blockCutAtEnd":"6"} +{"_meta":{"startPos":0,"endPos":114},"blocks":[{"id":"1","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2,"isTogglable":false},"content":[{"type":"text","text":"Heading 1","styles":{}}],"children":[{"id":"2","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},{"id":"3","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},{"id":"4","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]}]},{"id":"5","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2,"isTogglable":false},"content":[{"type":"text","text":"Heading 2","styles":{}}],"children":[{"id":"6","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph ","styles":{}}],"children":[]}]}],"blockCutAtEnd":"6"} +{"_meta":{"startPos":0,"endPos":117},"blocks":[{"id":"1","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2,"isTogglable":false},"content":[{"type":"text","text":"Heading 1","styles":{}}],"children":[{"id":"2","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},{"id":"3","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},{"id":"4","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]}]},{"id":"5","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2,"isTogglable":false},"content":[{"type":"text","text":"Heading 2","styles":{}}],"children":[{"id":"6","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]}]}]} +{"_meta":{"startPos":0,"endPos":117},"blocks":[{"id":"1","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2,"isTogglable":false},"content":[{"type":"text","text":"Heading 1","styles":{}}],"children":[{"id":"2","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},{"id":"3","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},{"id":"4","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]}]},{"id":"5","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2,"isTogglable":false},"content":[{"type":"text","text":"Heading 2","styles":{}}],"children":[{"id":"6","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]}]}]} +{"_meta":{"startPos":0,"endPos":117},"blocks":[{"id":"1","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2,"isTogglable":false},"content":[{"type":"text","text":"Heading 1","styles":{}}],"children":[{"id":"2","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},{"id":"3","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},{"id":"4","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]}]},{"id":"5","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2,"isTogglable":false},"content":[{"type":"text","text":"Heading 2","styles":{}}],"children":[{"id":"6","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]}]}]} +{"_meta":{"startPos":0,"endPos":117},"blocks":[{"id":"1","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2,"isTogglable":false},"content":[{"type":"text","text":"Heading 1","styles":{}}],"children":[{"id":"2","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},{"id":"3","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},{"id":"4","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]}]},{"id":"5","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2,"isTogglable":false},"content":[{"type":"text","text":"Heading 2","styles":{}}],"children":[{"id":"6","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]}]}]} +{"_meta":{"startPos":0,"endPos":117},"blocks":[{"id":"1","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2,"isTogglable":false},"content":[{"type":"text","text":"Heading 1","styles":{}}],"children":[{"id":"2","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},{"id":"3","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},{"id":"4","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]}]},{"id":"5","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2,"isTogglable":false},"content":[{"type":"text","text":"Heading 2","styles":{}}],"children":[{"id":"6","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]}]}]} +{"_meta":{"startPos":0,"endPos":120},"blocks":[{"id":"1","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2,"isTogglable":false},"content":[{"type":"text","text":"Heading 1","styles":{}}],"children":[{"id":"2","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},{"id":"3","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},{"id":"4","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]}]},{"id":"5","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2,"isTogglable":false},"content":[{"type":"text","text":"Heading 2","styles":{}}],"children":[{"id":"6","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},{"id":"7","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"N","styles":{}}],"children":[]}]}],"blockCutAtEnd":"7"} +{"_meta":{"startPos":0,"endPos":121},"blocks":[{"id":"1","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2,"isTogglable":false},"content":[{"type":"text","text":"Heading 1","styles":{}}],"children":[{"id":"2","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},{"id":"3","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},{"id":"4","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]}]},{"id":"5","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2,"isTogglable":false},"content":[{"type":"text","text":"Heading 2","styles":{}}],"children":[{"id":"6","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},{"id":"7","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Ne","styles":{}}],"children":[]}]}],"blockCutAtEnd":"7"} +{"_meta":{"startPos":0,"endPos":122},"blocks":[{"id":"1","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2,"isTogglable":false},"content":[{"type":"text","text":"Heading 1","styles":{}}],"children":[{"id":"2","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},{"id":"3","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},{"id":"4","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]}]},{"id":"5","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2,"isTogglable":false},"content":[{"type":"text","text":"Heading 2","styles":{}}],"children":[{"id":"6","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},{"id":"7","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nes","styles":{}}],"children":[]}]}],"blockCutAtEnd":"7"} +{"_meta":{"startPos":0,"endPos":123},"blocks":[{"id":"1","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2,"isTogglable":false},"content":[{"type":"text","text":"Heading 1","styles":{}}],"children":[{"id":"2","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},{"id":"3","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},{"id":"4","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]}]},{"id":"5","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2,"isTogglable":false},"content":[{"type":"text","text":"Heading 2","styles":{}}],"children":[{"id":"6","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},{"id":"7","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nest","styles":{}}],"children":[]}]}],"blockCutAtEnd":"7"} +{"_meta":{"startPos":0,"endPos":124},"blocks":[{"id":"1","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2,"isTogglable":false},"content":[{"type":"text","text":"Heading 1","styles":{}}],"children":[{"id":"2","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},{"id":"3","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},{"id":"4","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]}]},{"id":"5","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2,"isTogglable":false},"content":[{"type":"text","text":"Heading 2","styles":{}}],"children":[{"id":"6","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},{"id":"7","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Neste","styles":{}}],"children":[]}]}],"blockCutAtEnd":"7"} +{"_meta":{"startPos":0,"endPos":125},"blocks":[{"id":"1","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2,"isTogglable":false},"content":[{"type":"text","text":"Heading 1","styles":{}}],"children":[{"id":"2","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},{"id":"3","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},{"id":"4","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]}]},{"id":"5","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2,"isTogglable":false},"content":[{"type":"text","text":"Heading 2","styles":{}}],"children":[{"id":"6","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},{"id":"7","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested","styles":{}}],"children":[]}]}],"blockCutAtEnd":"7"} +{"_meta":{"startPos":0,"endPos":126},"blocks":[{"id":"1","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2,"isTogglable":false},"content":[{"type":"text","text":"Heading 1","styles":{}}],"children":[{"id":"2","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},{"id":"3","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},{"id":"4","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]}]},{"id":"5","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2,"isTogglable":false},"content":[{"type":"text","text":"Heading 2","styles":{}}],"children":[{"id":"6","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},{"id":"7","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested ","styles":{}}],"children":[]}]}],"blockCutAtEnd":"7"} +{"_meta":{"startPos":0,"endPos":127},"blocks":[{"id":"1","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2,"isTogglable":false},"content":[{"type":"text","text":"Heading 1","styles":{}}],"children":[{"id":"2","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},{"id":"3","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},{"id":"4","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]}]},{"id":"5","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2,"isTogglable":false},"content":[{"type":"text","text":"Heading 2","styles":{}}],"children":[{"id":"6","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},{"id":"7","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested P","styles":{}}],"children":[]}]}],"blockCutAtEnd":"7"} +{"_meta":{"startPos":0,"endPos":128},"blocks":[{"id":"1","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2,"isTogglable":false},"content":[{"type":"text","text":"Heading 1","styles":{}}],"children":[{"id":"2","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},{"id":"3","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},{"id":"4","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]}]},{"id":"5","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2,"isTogglable":false},"content":[{"type":"text","text":"Heading 2","styles":{}}],"children":[{"id":"6","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},{"id":"7","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Pa","styles":{}}],"children":[]}]}],"blockCutAtEnd":"7"} +{"_meta":{"startPos":0,"endPos":129},"blocks":[{"id":"1","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2,"isTogglable":false},"content":[{"type":"text","text":"Heading 1","styles":{}}],"children":[{"id":"2","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},{"id":"3","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},{"id":"4","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]}]},{"id":"5","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2,"isTogglable":false},"content":[{"type":"text","text":"Heading 2","styles":{}}],"children":[{"id":"6","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},{"id":"7","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Par","styles":{}}],"children":[]}]}],"blockCutAtEnd":"7"} +{"_meta":{"startPos":0,"endPos":130},"blocks":[{"id":"1","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2,"isTogglable":false},"content":[{"type":"text","text":"Heading 1","styles":{}}],"children":[{"id":"2","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},{"id":"3","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},{"id":"4","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]}]},{"id":"5","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2,"isTogglable":false},"content":[{"type":"text","text":"Heading 2","styles":{}}],"children":[{"id":"6","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},{"id":"7","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Para","styles":{}}],"children":[]}]}],"blockCutAtEnd":"7"} +{"_meta":{"startPos":0,"endPos":131},"blocks":[{"id":"1","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2,"isTogglable":false},"content":[{"type":"text","text":"Heading 1","styles":{}}],"children":[{"id":"2","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},{"id":"3","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},{"id":"4","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]}]},{"id":"5","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2,"isTogglable":false},"content":[{"type":"text","text":"Heading 2","styles":{}}],"children":[{"id":"6","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},{"id":"7","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Parag","styles":{}}],"children":[]}]}],"blockCutAtEnd":"7"} +{"_meta":{"startPos":0,"endPos":132},"blocks":[{"id":"1","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2,"isTogglable":false},"content":[{"type":"text","text":"Heading 1","styles":{}}],"children":[{"id":"2","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},{"id":"3","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},{"id":"4","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]}]},{"id":"5","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2,"isTogglable":false},"content":[{"type":"text","text":"Heading 2","styles":{}}],"children":[{"id":"6","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},{"id":"7","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragr","styles":{}}],"children":[]}]}],"blockCutAtEnd":"7"} +{"_meta":{"startPos":0,"endPos":133},"blocks":[{"id":"1","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2,"isTogglable":false},"content":[{"type":"text","text":"Heading 1","styles":{}}],"children":[{"id":"2","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},{"id":"3","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},{"id":"4","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]}]},{"id":"5","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2,"isTogglable":false},"content":[{"type":"text","text":"Heading 2","styles":{}}],"children":[{"id":"6","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},{"id":"7","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragra","styles":{}}],"children":[]}]}],"blockCutAtEnd":"7"} +{"_meta":{"startPos":0,"endPos":134},"blocks":[{"id":"1","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2,"isTogglable":false},"content":[{"type":"text","text":"Heading 1","styles":{}}],"children":[{"id":"2","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},{"id":"3","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},{"id":"4","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]}]},{"id":"5","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2,"isTogglable":false},"content":[{"type":"text","text":"Heading 2","styles":{}}],"children":[{"id":"6","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},{"id":"7","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragrap","styles":{}}],"children":[]}]}],"blockCutAtEnd":"7"} +{"_meta":{"startPos":0,"endPos":135},"blocks":[{"id":"1","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2,"isTogglable":false},"content":[{"type":"text","text":"Heading 1","styles":{}}],"children":[{"id":"2","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},{"id":"3","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},{"id":"4","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]}]},{"id":"5","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2,"isTogglable":false},"content":[{"type":"text","text":"Heading 2","styles":{}}],"children":[{"id":"6","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},{"id":"7","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph","styles":{}}],"children":[]}]}],"blockCutAtEnd":"7"} +{"_meta":{"startPos":0,"endPos":136},"blocks":[{"id":"1","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2,"isTogglable":false},"content":[{"type":"text","text":"Heading 1","styles":{}}],"children":[{"id":"2","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},{"id":"3","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},{"id":"4","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]}]},{"id":"5","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2,"isTogglable":false},"content":[{"type":"text","text":"Heading 2","styles":{}}],"children":[{"id":"6","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},{"id":"7","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph ","styles":{}}],"children":[]}]}],"blockCutAtEnd":"7"} +{"_meta":{"startPos":0,"endPos":139},"blocks":[{"id":"1","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2,"isTogglable":false},"content":[{"type":"text","text":"Heading 1","styles":{}}],"children":[{"id":"2","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},{"id":"3","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},{"id":"4","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]}]},{"id":"5","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2,"isTogglable":false},"content":[{"type":"text","text":"Heading 2","styles":{}}],"children":[{"id":"6","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},{"id":"7","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]}]}]} +{"_meta":{"startPos":0,"endPos":139},"blocks":[{"id":"1","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2,"isTogglable":false},"content":[{"type":"text","text":"Heading 1","styles":{}}],"children":[{"id":"2","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},{"id":"3","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},{"id":"4","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]}]},{"id":"5","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2,"isTogglable":false},"content":[{"type":"text","text":"Heading 2","styles":{}}],"children":[{"id":"6","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},{"id":"7","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]}]}]} +{"_meta":{"startPos":0,"endPos":139},"blocks":[{"id":"1","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2,"isTogglable":false},"content":[{"type":"text","text":"Heading 1","styles":{}}],"children":[{"id":"2","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},{"id":"3","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},{"id":"4","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]}]},{"id":"5","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2,"isTogglable":false},"content":[{"type":"text","text":"Heading 2","styles":{}}],"children":[{"id":"6","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},{"id":"7","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]}]}]} +{"_meta":{"startPos":0,"endPos":139},"blocks":[{"id":"1","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2,"isTogglable":false},"content":[{"type":"text","text":"Heading 1","styles":{}}],"children":[{"id":"2","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},{"id":"3","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},{"id":"4","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]}]},{"id":"5","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2,"isTogglable":false},"content":[{"type":"text","text":"Heading 2","styles":{}}],"children":[{"id":"6","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},{"id":"7","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]}]}]} +{"_meta":{"startPos":0,"endPos":139},"blocks":[{"id":"1","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2,"isTogglable":false},"content":[{"type":"text","text":"Heading 1","styles":{}}],"children":[{"id":"2","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},{"id":"3","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},{"id":"4","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]}]},{"id":"5","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2,"isTogglable":false},"content":[{"type":"text","text":"Heading 2","styles":{}}],"children":[{"id":"6","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},{"id":"7","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]}]}]} +{"_meta":{"startPos":0,"endPos":142},"blocks":[{"id":"1","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2,"isTogglable":false},"content":[{"type":"text","text":"Heading 1","styles":{}}],"children":[{"id":"2","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},{"id":"3","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},{"id":"4","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]}]},{"id":"5","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2,"isTogglable":false},"content":[{"type":"text","text":"Heading 2","styles":{}}],"children":[{"id":"6","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},{"id":"7","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},{"id":"8","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"N","styles":{}}],"children":[]}]}],"blockCutAtEnd":"8"} +{"_meta":{"startPos":0,"endPos":143},"blocks":[{"id":"1","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2,"isTogglable":false},"content":[{"type":"text","text":"Heading 1","styles":{}}],"children":[{"id":"2","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},{"id":"3","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},{"id":"4","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]}]},{"id":"5","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2,"isTogglable":false},"content":[{"type":"text","text":"Heading 2","styles":{}}],"children":[{"id":"6","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},{"id":"7","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},{"id":"8","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Ne","styles":{}}],"children":[]}]}],"blockCutAtEnd":"8"} +{"_meta":{"startPos":0,"endPos":144},"blocks":[{"id":"1","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2,"isTogglable":false},"content":[{"type":"text","text":"Heading 1","styles":{}}],"children":[{"id":"2","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},{"id":"3","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},{"id":"4","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]}]},{"id":"5","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2,"isTogglable":false},"content":[{"type":"text","text":"Heading 2","styles":{}}],"children":[{"id":"6","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},{"id":"7","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},{"id":"8","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nes","styles":{}}],"children":[]}]}],"blockCutAtEnd":"8"} +{"_meta":{"startPos":0,"endPos":145},"blocks":[{"id":"1","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2,"isTogglable":false},"content":[{"type":"text","text":"Heading 1","styles":{}}],"children":[{"id":"2","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},{"id":"3","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},{"id":"4","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]}]},{"id":"5","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2,"isTogglable":false},"content":[{"type":"text","text":"Heading 2","styles":{}}],"children":[{"id":"6","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},{"id":"7","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},{"id":"8","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nest","styles":{}}],"children":[]}]}],"blockCutAtEnd":"8"} +{"_meta":{"startPos":0,"endPos":146},"blocks":[{"id":"1","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2,"isTogglable":false},"content":[{"type":"text","text":"Heading 1","styles":{}}],"children":[{"id":"2","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},{"id":"3","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},{"id":"4","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]}]},{"id":"5","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2,"isTogglable":false},"content":[{"type":"text","text":"Heading 2","styles":{}}],"children":[{"id":"6","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},{"id":"7","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},{"id":"8","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Neste","styles":{}}],"children":[]}]}],"blockCutAtEnd":"8"} +{"_meta":{"startPos":0,"endPos":147},"blocks":[{"id":"1","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2,"isTogglable":false},"content":[{"type":"text","text":"Heading 1","styles":{}}],"children":[{"id":"2","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},{"id":"3","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},{"id":"4","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]}]},{"id":"5","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2,"isTogglable":false},"content":[{"type":"text","text":"Heading 2","styles":{}}],"children":[{"id":"6","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},{"id":"7","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},{"id":"8","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested","styles":{}}],"children":[]}]}],"blockCutAtEnd":"8"} +{"_meta":{"startPos":0,"endPos":148},"blocks":[{"id":"1","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2,"isTogglable":false},"content":[{"type":"text","text":"Heading 1","styles":{}}],"children":[{"id":"2","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},{"id":"3","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},{"id":"4","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]}]},{"id":"5","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2,"isTogglable":false},"content":[{"type":"text","text":"Heading 2","styles":{}}],"children":[{"id":"6","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},{"id":"7","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},{"id":"8","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested ","styles":{}}],"children":[]}]}],"blockCutAtEnd":"8"} +{"_meta":{"startPos":0,"endPos":149},"blocks":[{"id":"1","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2,"isTogglable":false},"content":[{"type":"text","text":"Heading 1","styles":{}}],"children":[{"id":"2","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},{"id":"3","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},{"id":"4","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]}]},{"id":"5","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2,"isTogglable":false},"content":[{"type":"text","text":"Heading 2","styles":{}}],"children":[{"id":"6","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},{"id":"7","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},{"id":"8","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested P","styles":{}}],"children":[]}]}],"blockCutAtEnd":"8"} +{"_meta":{"startPos":0,"endPos":150},"blocks":[{"id":"1","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2,"isTogglable":false},"content":[{"type":"text","text":"Heading 1","styles":{}}],"children":[{"id":"2","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},{"id":"3","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},{"id":"4","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]}]},{"id":"5","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2,"isTogglable":false},"content":[{"type":"text","text":"Heading 2","styles":{}}],"children":[{"id":"6","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},{"id":"7","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},{"id":"8","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Pa","styles":{}}],"children":[]}]}],"blockCutAtEnd":"8"} +{"_meta":{"startPos":0,"endPos":151},"blocks":[{"id":"1","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2,"isTogglable":false},"content":[{"type":"text","text":"Heading 1","styles":{}}],"children":[{"id":"2","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},{"id":"3","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},{"id":"4","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]}]},{"id":"5","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2,"isTogglable":false},"content":[{"type":"text","text":"Heading 2","styles":{}}],"children":[{"id":"6","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},{"id":"7","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},{"id":"8","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Par","styles":{}}],"children":[]}]}],"blockCutAtEnd":"8"} +{"_meta":{"startPos":0,"endPos":152},"blocks":[{"id":"1","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2,"isTogglable":false},"content":[{"type":"text","text":"Heading 1","styles":{}}],"children":[{"id":"2","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},{"id":"3","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},{"id":"4","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]}]},{"id":"5","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2,"isTogglable":false},"content":[{"type":"text","text":"Heading 2","styles":{}}],"children":[{"id":"6","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},{"id":"7","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},{"id":"8","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Para","styles":{}}],"children":[]}]}],"blockCutAtEnd":"8"} +{"_meta":{"startPos":0,"endPos":153},"blocks":[{"id":"1","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2,"isTogglable":false},"content":[{"type":"text","text":"Heading 1","styles":{}}],"children":[{"id":"2","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},{"id":"3","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},{"id":"4","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]}]},{"id":"5","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2,"isTogglable":false},"content":[{"type":"text","text":"Heading 2","styles":{}}],"children":[{"id":"6","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},{"id":"7","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},{"id":"8","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Parag","styles":{}}],"children":[]}]}],"blockCutAtEnd":"8"} +{"_meta":{"startPos":0,"endPos":154},"blocks":[{"id":"1","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2,"isTogglable":false},"content":[{"type":"text","text":"Heading 1","styles":{}}],"children":[{"id":"2","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},{"id":"3","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},{"id":"4","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]}]},{"id":"5","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2,"isTogglable":false},"content":[{"type":"text","text":"Heading 2","styles":{}}],"children":[{"id":"6","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},{"id":"7","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},{"id":"8","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragr","styles":{}}],"children":[]}]}],"blockCutAtEnd":"8"} +{"_meta":{"startPos":0,"endPos":155},"blocks":[{"id":"1","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2,"isTogglable":false},"content":[{"type":"text","text":"Heading 1","styles":{}}],"children":[{"id":"2","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},{"id":"3","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},{"id":"4","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]}]},{"id":"5","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2,"isTogglable":false},"content":[{"type":"text","text":"Heading 2","styles":{}}],"children":[{"id":"6","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},{"id":"7","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},{"id":"8","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragra","styles":{}}],"children":[]}]}],"blockCutAtEnd":"8"} +{"_meta":{"startPos":0,"endPos":156},"blocks":[{"id":"1","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2,"isTogglable":false},"content":[{"type":"text","text":"Heading 1","styles":{}}],"children":[{"id":"2","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},{"id":"3","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},{"id":"4","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]}]},{"id":"5","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2,"isTogglable":false},"content":[{"type":"text","text":"Heading 2","styles":{}}],"children":[{"id":"6","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},{"id":"7","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},{"id":"8","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragrap","styles":{}}],"children":[]}]}],"blockCutAtEnd":"8"} +{"_meta":{"startPos":0,"endPos":157},"blocks":[{"id":"1","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2,"isTogglable":false},"content":[{"type":"text","text":"Heading 1","styles":{}}],"children":[{"id":"2","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},{"id":"3","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},{"id":"4","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]}]},{"id":"5","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2,"isTogglable":false},"content":[{"type":"text","text":"Heading 2","styles":{}}],"children":[{"id":"6","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},{"id":"7","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},{"id":"8","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph","styles":{}}],"children":[]}]}],"blockCutAtEnd":"8"} +{"_meta":{"startPos":0,"endPos":158},"blocks":[{"id":"1","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2,"isTogglable":false},"content":[{"type":"text","text":"Heading 1","styles":{}}],"children":[{"id":"2","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},{"id":"3","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},{"id":"4","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]}]},{"id":"5","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2,"isTogglable":false},"content":[{"type":"text","text":"Heading 2","styles":{}}],"children":[{"id":"6","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},{"id":"7","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},{"id":"8","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph ","styles":{}}],"children":[]}]}],"blockCutAtEnd":"8"} +{"_meta":{"startPos":0,"endPos":163},"blocks":[{"id":"1","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2,"isTogglable":false},"content":[{"type":"text","text":"Heading 1","styles":{}}],"children":[{"id":"2","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},{"id":"3","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},{"id":"4","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]}]},{"id":"5","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2,"isTogglable":false},"content":[{"type":"text","text":"Heading 2","styles":{}}],"children":[{"id":"6","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},{"id":"7","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},{"id":"8","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]}]}]} +{"_meta":{"startPos":0,"endPos":163},"blocks":[{"id":"1","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2,"isTogglable":false},"content":[{"type":"text","text":"Heading 1","styles":{}}],"children":[{"id":"2","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},{"id":"3","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},{"id":"4","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]}]},{"id":"5","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2,"isTogglable":false},"content":[{"type":"text","text":"Heading 2","styles":{}}],"children":[{"id":"6","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},{"id":"7","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},{"id":"8","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]}]}]} +{"_meta":{"startPos":0,"endPos":163},"blocks":[{"id":"1","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2,"isTogglable":false},"content":[{"type":"text","text":"Heading 1","styles":{}}],"children":[{"id":"2","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},{"id":"3","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},{"id":"4","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]}]},{"id":"5","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2,"isTogglable":false},"content":[{"type":"text","text":"Heading 2","styles":{}}],"children":[{"id":"6","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},{"id":"7","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},{"id":"8","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]}]}]} +{"_meta":{"startPos":0,"endPos":163},"blocks":[{"id":"1","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2,"isTogglable":false},"content":[{"type":"text","text":"Heading 1","styles":{}}],"children":[{"id":"2","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},{"id":"3","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},{"id":"4","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]}]},{"id":"5","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2,"isTogglable":false},"content":[{"type":"text","text":"Heading 2","styles":{}}],"children":[{"id":"6","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},{"id":"7","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},{"id":"8","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]}]}]} +{"_meta":{"startPos":0,"endPos":163},"blocks":[{"id":"1","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2,"isTogglable":false},"content":[{"type":"text","text":"Heading 1","styles":{}}],"children":[{"id":"2","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},{"id":"3","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},{"id":"4","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]}]},{"id":"5","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2,"isTogglable":false},"content":[{"type":"text","text":"Heading 2","styles":{}}],"children":[{"id":"6","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},{"id":"7","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},{"id":"8","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]}]}]} +{"_meta":{"startPos":0,"endPos":163},"blocks":[{"id":"1","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2,"isTogglable":false},"content":[{"type":"text","text":"Heading 1","styles":{}}],"children":[{"id":"2","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},{"id":"3","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},{"id":"4","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]}]},{"id":"5","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2,"isTogglable":false},"content":[{"type":"text","text":"Heading 2","styles":{}}],"children":[{"id":"6","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},{"id":"7","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},{"id":"8","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]}]}]} +{"_meta":{"startPos":0,"endPos":163},"blocks":[{"id":"1","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2,"isTogglable":false},"content":[{"type":"text","text":"Heading 1","styles":{}}],"children":[{"id":"2","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},{"id":"3","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},{"id":"4","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]}]},{"id":"5","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2,"isTogglable":false},"content":[{"type":"text","text":"Heading 2","styles":{}}],"children":[{"id":"6","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},{"id":"7","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},{"id":"8","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]}]}]} +{"_meta":{"startPos":0,"endPos":166},"blocks":[{"id":"1","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2,"isTogglable":false},"content":[{"type":"text","text":"Heading 1","styles":{}}],"children":[{"id":"2","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},{"id":"3","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},{"id":"4","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]}]},{"id":"5","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2,"isTogglable":false},"content":[{"type":"text","text":"Heading 2","styles":{}}],"children":[{"id":"6","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},{"id":"7","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},{"id":"8","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]}]},{"id":"9","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2,"isTogglable":false},"content":[{"type":"text","text":"B","styles":{"bold":true}}],"children":[]}],"blockCutAtEnd":"9"} +{"_meta":{"startPos":0,"endPos":167},"blocks":[{"id":"1","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2,"isTogglable":false},"content":[{"type":"text","text":"Heading 1","styles":{}}],"children":[{"id":"2","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},{"id":"3","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},{"id":"4","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]}]},{"id":"5","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2,"isTogglable":false},"content":[{"type":"text","text":"Heading 2","styles":{}}],"children":[{"id":"6","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},{"id":"7","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},{"id":"8","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]}]},{"id":"9","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2,"isTogglable":false},"content":[{"type":"text","text":"Bo","styles":{"bold":true}}],"children":[]}],"blockCutAtEnd":"9"} +{"_meta":{"startPos":0,"endPos":168},"blocks":[{"id":"1","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2,"isTogglable":false},"content":[{"type":"text","text":"Heading 1","styles":{}}],"children":[{"id":"2","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},{"id":"3","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},{"id":"4","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]}]},{"id":"5","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2,"isTogglable":false},"content":[{"type":"text","text":"Heading 2","styles":{}}],"children":[{"id":"6","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},{"id":"7","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},{"id":"8","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]}]},{"id":"9","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2,"isTogglable":false},"content":[{"type":"text","text":"Bol","styles":{"bold":true}}],"children":[]}],"blockCutAtEnd":"9"} +{"_meta":{"startPos":0,"endPos":169},"blocks":[{"id":"1","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2,"isTogglable":false},"content":[{"type":"text","text":"Heading 1","styles":{}}],"children":[{"id":"2","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},{"id":"3","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},{"id":"4","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]}]},{"id":"5","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2,"isTogglable":false},"content":[{"type":"text","text":"Heading 2","styles":{}}],"children":[{"id":"6","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},{"id":"7","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},{"id":"8","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]}]},{"id":"9","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2,"isTogglable":false},"content":[{"type":"text","text":"Bold","styles":{"bold":true}}],"children":[]}],"blockCutAtEnd":"9"} +{"_meta":{"startPos":0,"endPos":170},"blocks":[{"id":"1","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2,"isTogglable":false},"content":[{"type":"text","text":"Heading 1","styles":{}}],"children":[{"id":"2","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},{"id":"3","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},{"id":"4","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]}]},{"id":"5","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2,"isTogglable":false},"content":[{"type":"text","text":"Heading 2","styles":{}}],"children":[{"id":"6","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},{"id":"7","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},{"id":"8","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]}]},{"id":"9","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2,"isTogglable":false},"content":[{"type":"text","text":"Bold","styles":{"bold":true}},{"type":"text","text":"I","styles":{"italic":true}}],"children":[]}],"blockCutAtEnd":"9"} +{"_meta":{"startPos":0,"endPos":171},"blocks":[{"id":"1","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2,"isTogglable":false},"content":[{"type":"text","text":"Heading 1","styles":{}}],"children":[{"id":"2","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},{"id":"3","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},{"id":"4","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]}]},{"id":"5","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2,"isTogglable":false},"content":[{"type":"text","text":"Heading 2","styles":{}}],"children":[{"id":"6","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},{"id":"7","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},{"id":"8","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]}]},{"id":"9","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2,"isTogglable":false},"content":[{"type":"text","text":"Bold","styles":{"bold":true}},{"type":"text","text":"It","styles":{"italic":true}}],"children":[]}],"blockCutAtEnd":"9"} +{"_meta":{"startPos":0,"endPos":172},"blocks":[{"id":"1","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2,"isTogglable":false},"content":[{"type":"text","text":"Heading 1","styles":{}}],"children":[{"id":"2","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},{"id":"3","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},{"id":"4","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]}]},{"id":"5","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2,"isTogglable":false},"content":[{"type":"text","text":"Heading 2","styles":{}}],"children":[{"id":"6","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},{"id":"7","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},{"id":"8","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]}]},{"id":"9","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2,"isTogglable":false},"content":[{"type":"text","text":"Bold","styles":{"bold":true}},{"type":"text","text":"Ita","styles":{"italic":true}}],"children":[]}],"blockCutAtEnd":"9"} +{"_meta":{"startPos":0,"endPos":173},"blocks":[{"id":"1","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2,"isTogglable":false},"content":[{"type":"text","text":"Heading 1","styles":{}}],"children":[{"id":"2","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},{"id":"3","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},{"id":"4","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]}]},{"id":"5","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2,"isTogglable":false},"content":[{"type":"text","text":"Heading 2","styles":{}}],"children":[{"id":"6","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},{"id":"7","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},{"id":"8","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]}]},{"id":"9","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2,"isTogglable":false},"content":[{"type":"text","text":"Bold","styles":{"bold":true}},{"type":"text","text":"Ital","styles":{"italic":true}}],"children":[]}],"blockCutAtEnd":"9"} +{"_meta":{"startPos":0,"endPos":174},"blocks":[{"id":"1","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2,"isTogglable":false},"content":[{"type":"text","text":"Heading 1","styles":{}}],"children":[{"id":"2","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},{"id":"3","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},{"id":"4","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]}]},{"id":"5","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2,"isTogglable":false},"content":[{"type":"text","text":"Heading 2","styles":{}}],"children":[{"id":"6","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},{"id":"7","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},{"id":"8","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]}]},{"id":"9","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2,"isTogglable":false},"content":[{"type":"text","text":"Bold","styles":{"bold":true}},{"type":"text","text":"Itali","styles":{"italic":true}}],"children":[]}],"blockCutAtEnd":"9"} +{"_meta":{"startPos":0,"endPos":175},"blocks":[{"id":"1","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2,"isTogglable":false},"content":[{"type":"text","text":"Heading 1","styles":{}}],"children":[{"id":"2","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},{"id":"3","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},{"id":"4","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]}]},{"id":"5","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2,"isTogglable":false},"content":[{"type":"text","text":"Heading 2","styles":{}}],"children":[{"id":"6","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},{"id":"7","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},{"id":"8","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]}]},{"id":"9","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2,"isTogglable":false},"content":[{"type":"text","text":"Bold","styles":{"bold":true}},{"type":"text","text":"Italic","styles":{"italic":true}}],"children":[]}],"blockCutAtEnd":"9"} +{"_meta":{"startPos":0,"endPos":176},"blocks":[{"id":"1","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2,"isTogglable":false},"content":[{"type":"text","text":"Heading 1","styles":{}}],"children":[{"id":"2","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},{"id":"3","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},{"id":"4","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]}]},{"id":"5","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2,"isTogglable":false},"content":[{"type":"text","text":"Heading 2","styles":{}}],"children":[{"id":"6","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},{"id":"7","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},{"id":"8","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]}]},{"id":"9","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2,"isTogglable":false},"content":[{"type":"text","text":"Bold","styles":{"bold":true}},{"type":"text","text":"Italic","styles":{"italic":true}},{"type":"text","text":"R","styles":{}}],"children":[]}],"blockCutAtEnd":"9"} +{"_meta":{"startPos":0,"endPos":177},"blocks":[{"id":"1","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2,"isTogglable":false},"content":[{"type":"text","text":"Heading 1","styles":{}}],"children":[{"id":"2","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},{"id":"3","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},{"id":"4","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]}]},{"id":"5","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2,"isTogglable":false},"content":[{"type":"text","text":"Heading 2","styles":{}}],"children":[{"id":"6","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},{"id":"7","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},{"id":"8","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]}]},{"id":"9","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2,"isTogglable":false},"content":[{"type":"text","text":"Bold","styles":{"bold":true}},{"type":"text","text":"Italic","styles":{"italic":true}},{"type":"text","text":"Re","styles":{}}],"children":[]}],"blockCutAtEnd":"9"} +{"_meta":{"startPos":0,"endPos":178},"blocks":[{"id":"1","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2,"isTogglable":false},"content":[{"type":"text","text":"Heading 1","styles":{}}],"children":[{"id":"2","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},{"id":"3","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},{"id":"4","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]}]},{"id":"5","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2,"isTogglable":false},"content":[{"type":"text","text":"Heading 2","styles":{}}],"children":[{"id":"6","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},{"id":"7","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},{"id":"8","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]}]},{"id":"9","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2,"isTogglable":false},"content":[{"type":"text","text":"Bold","styles":{"bold":true}},{"type":"text","text":"Italic","styles":{"italic":true}},{"type":"text","text":"Reg","styles":{}}],"children":[]}],"blockCutAtEnd":"9"} +{"_meta":{"startPos":0,"endPos":179},"blocks":[{"id":"1","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2,"isTogglable":false},"content":[{"type":"text","text":"Heading 1","styles":{}}],"children":[{"id":"2","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},{"id":"3","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},{"id":"4","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]}]},{"id":"5","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2,"isTogglable":false},"content":[{"type":"text","text":"Heading 2","styles":{}}],"children":[{"id":"6","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},{"id":"7","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},{"id":"8","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]}]},{"id":"9","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2,"isTogglable":false},"content":[{"type":"text","text":"Bold","styles":{"bold":true}},{"type":"text","text":"Italic","styles":{"italic":true}},{"type":"text","text":"Regu","styles":{}}],"children":[]}],"blockCutAtEnd":"9"} +{"_meta":{"startPos":0,"endPos":180},"blocks":[{"id":"1","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2,"isTogglable":false},"content":[{"type":"text","text":"Heading 1","styles":{}}],"children":[{"id":"2","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},{"id":"3","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},{"id":"4","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]}]},{"id":"5","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2,"isTogglable":false},"content":[{"type":"text","text":"Heading 2","styles":{}}],"children":[{"id":"6","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},{"id":"7","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},{"id":"8","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]}]},{"id":"9","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2,"isTogglable":false},"content":[{"type":"text","text":"Bold","styles":{"bold":true}},{"type":"text","text":"Italic","styles":{"italic":true}},{"type":"text","text":"Regul","styles":{}}],"children":[]}],"blockCutAtEnd":"9"} +{"_meta":{"startPos":0,"endPos":181},"blocks":[{"id":"1","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2,"isTogglable":false},"content":[{"type":"text","text":"Heading 1","styles":{}}],"children":[{"id":"2","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},{"id":"3","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},{"id":"4","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]}]},{"id":"5","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2,"isTogglable":false},"content":[{"type":"text","text":"Heading 2","styles":{}}],"children":[{"id":"6","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},{"id":"7","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},{"id":"8","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]}]},{"id":"9","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2,"isTogglable":false},"content":[{"type":"text","text":"Bold","styles":{"bold":true}},{"type":"text","text":"Italic","styles":{"italic":true}},{"type":"text","text":"Regula","styles":{}}],"children":[]}],"blockCutAtEnd":"9"} +{"_meta":{"startPos":0,"endPos":183},"blocks":[{"id":"1","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2,"isTogglable":false},"content":[{"type":"text","text":"Heading 1","styles":{}}],"children":[{"id":"2","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},{"id":"3","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},{"id":"4","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]}]},{"id":"5","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2,"isTogglable":false},"content":[{"type":"text","text":"Heading 2","styles":{}}],"children":[{"id":"6","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},{"id":"7","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},{"id":"8","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]}]},{"id":"9","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2,"isTogglable":false},"content":[{"type":"text","text":"Bold","styles":{"bold":true}},{"type":"text","text":"Italic","styles":{"italic":true}},{"type":"text","text":"Regular","styles":{}}],"children":[]}]} +{"_meta":{"startPos":0,"endPos":183},"blocks":[{"id":"1","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2,"isTogglable":false},"content":[{"type":"text","text":"Heading 1","styles":{}}],"children":[{"id":"2","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},{"id":"3","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},{"id":"4","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]}]},{"id":"5","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2,"isTogglable":false},"content":[{"type":"text","text":"Heading 2","styles":{}}],"children":[{"id":"6","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},{"id":"7","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},{"id":"8","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]}]},{"id":"9","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2,"isTogglable":false},"content":[{"type":"text","text":"Bold","styles":{"bold":true}},{"type":"text","text":"Italic","styles":{"italic":true}},{"type":"text","text":"Regular","styles":{}}],"children":[]}]} +{"_meta":{"startPos":0,"endPos":183},"blocks":[{"id":"1","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2,"isTogglable":false},"content":[{"type":"text","text":"Heading 1","styles":{}}],"children":[{"id":"2","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},{"id":"3","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},{"id":"4","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]}]},{"id":"5","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2,"isTogglable":false},"content":[{"type":"text","text":"Heading 2","styles":{}}],"children":[{"id":"6","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},{"id":"7","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},{"id":"8","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]}]},{"id":"9","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2,"isTogglable":false},"content":[{"type":"text","text":"Bold","styles":{"bold":true}},{"type":"text","text":"Italic","styles":{"italic":true}},{"type":"text","text":"Regular","styles":{}}],"children":[]}]} +{"_meta":{"startPos":0,"endPos":183},"blocks":[{"id":"1","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2,"isTogglable":false},"content":[{"type":"text","text":"Heading 1","styles":{}}],"children":[{"id":"2","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},{"id":"3","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},{"id":"4","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]}]},{"id":"5","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2,"isTogglable":false},"content":[{"type":"text","text":"Heading 2","styles":{}}],"children":[{"id":"6","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},{"id":"7","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},{"id":"8","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]}]},{"id":"9","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2,"isTogglable":false},"content":[{"type":"text","text":"Bold","styles":{"bold":true}},{"type":"text","text":"Italic","styles":{"italic":true}},{"type":"text","text":"Regular","styles":{}}],"children":[]}]} +{"_meta":{"startPos":0,"endPos":186},"blocks":[{"id":"1","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2,"isTogglable":false},"content":[{"type":"text","text":"Heading 1","styles":{}}],"children":[{"id":"2","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},{"id":"3","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},{"id":"4","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]}]},{"id":"5","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2,"isTogglable":false},"content":[{"type":"text","text":"Heading 2","styles":{}}],"children":[{"id":"6","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},{"id":"7","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},{"id":"8","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]}]},{"id":"9","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2,"isTogglable":false},"content":[{"type":"text","text":"Bold","styles":{"bold":true}},{"type":"text","text":"Italic","styles":{"italic":true}},{"type":"text","text":"Regular","styles":{}}],"children":[{"id":"10","type":"image","props":{"backgroundColor":"default","textAlignment":"left","name":"","url":"https://ralfvanveen.com/wp-content/uploads/2021/06/Placeholder-_-Glossary.svg","caption":"","showPreview":true},"children":[]}]}],"blockCutAtEnd":"10"} +{"_meta":{"startPos":0,"endPos":186},"blocks":[{"id":"1","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2,"isTogglable":false},"content":[{"type":"text","text":"Heading 1","styles":{}}],"children":[{"id":"2","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},{"id":"3","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},{"id":"4","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]}]},{"id":"5","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2,"isTogglable":false},"content":[{"type":"text","text":"Heading 2","styles":{}}],"children":[{"id":"6","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},{"id":"7","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},{"id":"8","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]}]},{"id":"9","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2,"isTogglable":false},"content":[{"type":"text","text":"Bold","styles":{"bold":true}},{"type":"text","text":"Italic","styles":{"italic":true}},{"type":"text","text":"Regular","styles":{}}],"children":[{"id":"10","type":"image","props":{"backgroundColor":"default","textAlignment":"left","name":"","url":"https://ralfvanveen.com/wp-content/uploads/2021/06/Placeholder-_-Glossary.svg","caption":"","showPreview":true},"children":[]}]}],"blockCutAtEnd":"10"} +{"_meta":{"startPos":0,"endPos":186},"blocks":[{"id":"1","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2,"isTogglable":false},"content":[{"type":"text","text":"Heading 1","styles":{}}],"children":[{"id":"2","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},{"id":"3","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},{"id":"4","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]}]},{"id":"5","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2,"isTogglable":false},"content":[{"type":"text","text":"Heading 2","styles":{}}],"children":[{"id":"6","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},{"id":"7","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},{"id":"8","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]}]},{"id":"9","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2,"isTogglable":false},"content":[{"type":"text","text":"Bold","styles":{"bold":true}},{"type":"text","text":"Italic","styles":{"italic":true}},{"type":"text","text":"Regular","styles":{}}],"children":[{"id":"10","type":"image","props":{"backgroundColor":"default","textAlignment":"left","name":"","url":"https://ralfvanveen.com/wp-content/uploads/2021/06/Placeholder-_-Glossary.svg","caption":"","showPreview":true},"children":[]}]}],"blockCutAtEnd":"10"} +{"_meta":{"startPos":0,"endPos":186},"blocks":[{"id":"1","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2,"isTogglable":false},"content":[{"type":"text","text":"Heading 1","styles":{}}],"children":[{"id":"2","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},{"id":"3","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},{"id":"4","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]}]},{"id":"5","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2,"isTogglable":false},"content":[{"type":"text","text":"Heading 2","styles":{}}],"children":[{"id":"6","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},{"id":"7","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},{"id":"8","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]}]},{"id":"9","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2,"isTogglable":false},"content":[{"type":"text","text":"Bold","styles":{"bold":true}},{"type":"text","text":"Italic","styles":{"italic":true}},{"type":"text","text":"Regular","styles":{}}],"children":[{"id":"10","type":"image","props":{"backgroundColor":"default","textAlignment":"left","name":"","url":"https://ralfvanveen.com/wp-content/uploads/2021/06/Placeholder-_-Glossary.svg","caption":"","showPreview":true},"children":[]}]}],"blockCutAtEnd":"10"} +{"_meta":{"startPos":0,"endPos":190},"blocks":[{"id":"1","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2,"isTogglable":false},"content":[{"type":"text","text":"Heading 1","styles":{}}],"children":[{"id":"2","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},{"id":"3","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},{"id":"4","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]}]},{"id":"5","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2,"isTogglable":false},"content":[{"type":"text","text":"Heading 2","styles":{}}],"children":[{"id":"6","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},{"id":"7","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},{"id":"8","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]}]},{"id":"9","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2,"isTogglable":false},"content":[{"type":"text","text":"Bold","styles":{"bold":true}},{"type":"text","text":"Italic","styles":{"italic":true}},{"type":"text","text":"Regular","styles":{}}],"children":[{"id":"10","type":"image","props":{"backgroundColor":"default","textAlignment":"left","name":"","url":"https://ralfvanveen.com/wp-content/uploads/2021/06/Placeholder-_-Glossary.svg","caption":"","showPreview":true},"children":[{"id":"11","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"N","styles":{}}],"children":[]}]}]}],"blockCutAtEnd":"11"} +{"_meta":{"startPos":0,"endPos":191},"blocks":[{"id":"1","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2,"isTogglable":false},"content":[{"type":"text","text":"Heading 1","styles":{}}],"children":[{"id":"2","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},{"id":"3","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},{"id":"4","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]}]},{"id":"5","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2,"isTogglable":false},"content":[{"type":"text","text":"Heading 2","styles":{}}],"children":[{"id":"6","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},{"id":"7","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},{"id":"8","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]}]},{"id":"9","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2,"isTogglable":false},"content":[{"type":"text","text":"Bold","styles":{"bold":true}},{"type":"text","text":"Italic","styles":{"italic":true}},{"type":"text","text":"Regular","styles":{}}],"children":[{"id":"10","type":"image","props":{"backgroundColor":"default","textAlignment":"left","name":"","url":"https://ralfvanveen.com/wp-content/uploads/2021/06/Placeholder-_-Glossary.svg","caption":"","showPreview":true},"children":[{"id":"11","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Ne","styles":{}}],"children":[]}]}]}],"blockCutAtEnd":"11"} +{"_meta":{"startPos":0,"endPos":192},"blocks":[{"id":"1","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2,"isTogglable":false},"content":[{"type":"text","text":"Heading 1","styles":{}}],"children":[{"id":"2","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},{"id":"3","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},{"id":"4","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]}]},{"id":"5","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2,"isTogglable":false},"content":[{"type":"text","text":"Heading 2","styles":{}}],"children":[{"id":"6","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},{"id":"7","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},{"id":"8","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]}]},{"id":"9","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2,"isTogglable":false},"content":[{"type":"text","text":"Bold","styles":{"bold":true}},{"type":"text","text":"Italic","styles":{"italic":true}},{"type":"text","text":"Regular","styles":{}}],"children":[{"id":"10","type":"image","props":{"backgroundColor":"default","textAlignment":"left","name":"","url":"https://ralfvanveen.com/wp-content/uploads/2021/06/Placeholder-_-Glossary.svg","caption":"","showPreview":true},"children":[{"id":"11","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nes","styles":{}}],"children":[]}]}]}],"blockCutAtEnd":"11"} +{"_meta":{"startPos":0,"endPos":193},"blocks":[{"id":"1","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2,"isTogglable":false},"content":[{"type":"text","text":"Heading 1","styles":{}}],"children":[{"id":"2","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},{"id":"3","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},{"id":"4","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]}]},{"id":"5","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2,"isTogglable":false},"content":[{"type":"text","text":"Heading 2","styles":{}}],"children":[{"id":"6","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},{"id":"7","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},{"id":"8","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]}]},{"id":"9","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2,"isTogglable":false},"content":[{"type":"text","text":"Bold","styles":{"bold":true}},{"type":"text","text":"Italic","styles":{"italic":true}},{"type":"text","text":"Regular","styles":{}}],"children":[{"id":"10","type":"image","props":{"backgroundColor":"default","textAlignment":"left","name":"","url":"https://ralfvanveen.com/wp-content/uploads/2021/06/Placeholder-_-Glossary.svg","caption":"","showPreview":true},"children":[{"id":"11","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nest","styles":{}}],"children":[]}]}]}],"blockCutAtEnd":"11"} +{"_meta":{"startPos":0,"endPos":194},"blocks":[{"id":"1","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2,"isTogglable":false},"content":[{"type":"text","text":"Heading 1","styles":{}}],"children":[{"id":"2","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},{"id":"3","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},{"id":"4","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]}]},{"id":"5","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2,"isTogglable":false},"content":[{"type":"text","text":"Heading 2","styles":{}}],"children":[{"id":"6","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},{"id":"7","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},{"id":"8","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]}]},{"id":"9","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2,"isTogglable":false},"content":[{"type":"text","text":"Bold","styles":{"bold":true}},{"type":"text","text":"Italic","styles":{"italic":true}},{"type":"text","text":"Regular","styles":{}}],"children":[{"id":"10","type":"image","props":{"backgroundColor":"default","textAlignment":"left","name":"","url":"https://ralfvanveen.com/wp-content/uploads/2021/06/Placeholder-_-Glossary.svg","caption":"","showPreview":true},"children":[{"id":"11","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Neste","styles":{}}],"children":[]}]}]}],"blockCutAtEnd":"11"} +{"_meta":{"startPos":0,"endPos":195},"blocks":[{"id":"1","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2,"isTogglable":false},"content":[{"type":"text","text":"Heading 1","styles":{}}],"children":[{"id":"2","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},{"id":"3","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},{"id":"4","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]}]},{"id":"5","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2,"isTogglable":false},"content":[{"type":"text","text":"Heading 2","styles":{}}],"children":[{"id":"6","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},{"id":"7","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},{"id":"8","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]}]},{"id":"9","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2,"isTogglable":false},"content":[{"type":"text","text":"Bold","styles":{"bold":true}},{"type":"text","text":"Italic","styles":{"italic":true}},{"type":"text","text":"Regular","styles":{}}],"children":[{"id":"10","type":"image","props":{"backgroundColor":"default","textAlignment":"left","name":"","url":"https://ralfvanveen.com/wp-content/uploads/2021/06/Placeholder-_-Glossary.svg","caption":"","showPreview":true},"children":[{"id":"11","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested","styles":{}}],"children":[]}]}]}],"blockCutAtEnd":"11"} +{"_meta":{"startPos":0,"endPos":196},"blocks":[{"id":"1","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2,"isTogglable":false},"content":[{"type":"text","text":"Heading 1","styles":{}}],"children":[{"id":"2","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},{"id":"3","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},{"id":"4","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]}]},{"id":"5","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2,"isTogglable":false},"content":[{"type":"text","text":"Heading 2","styles":{}}],"children":[{"id":"6","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},{"id":"7","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},{"id":"8","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]}]},{"id":"9","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2,"isTogglable":false},"content":[{"type":"text","text":"Bold","styles":{"bold":true}},{"type":"text","text":"Italic","styles":{"italic":true}},{"type":"text","text":"Regular","styles":{}}],"children":[{"id":"10","type":"image","props":{"backgroundColor":"default","textAlignment":"left","name":"","url":"https://ralfvanveen.com/wp-content/uploads/2021/06/Placeholder-_-Glossary.svg","caption":"","showPreview":true},"children":[{"id":"11","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested ","styles":{}}],"children":[]}]}]}],"blockCutAtEnd":"11"} +{"_meta":{"startPos":0,"endPos":197},"blocks":[{"id":"1","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2,"isTogglable":false},"content":[{"type":"text","text":"Heading 1","styles":{}}],"children":[{"id":"2","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},{"id":"3","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},{"id":"4","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]}]},{"id":"5","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2,"isTogglable":false},"content":[{"type":"text","text":"Heading 2","styles":{}}],"children":[{"id":"6","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},{"id":"7","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},{"id":"8","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]}]},{"id":"9","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2,"isTogglable":false},"content":[{"type":"text","text":"Bold","styles":{"bold":true}},{"type":"text","text":"Italic","styles":{"italic":true}},{"type":"text","text":"Regular","styles":{}}],"children":[{"id":"10","type":"image","props":{"backgroundColor":"default","textAlignment":"left","name":"","url":"https://ralfvanveen.com/wp-content/uploads/2021/06/Placeholder-_-Glossary.svg","caption":"","showPreview":true},"children":[{"id":"11","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested P","styles":{}}],"children":[]}]}]}],"blockCutAtEnd":"11"} +{"_meta":{"startPos":0,"endPos":198},"blocks":[{"id":"1","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2,"isTogglable":false},"content":[{"type":"text","text":"Heading 1","styles":{}}],"children":[{"id":"2","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},{"id":"3","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},{"id":"4","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]}]},{"id":"5","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2,"isTogglable":false},"content":[{"type":"text","text":"Heading 2","styles":{}}],"children":[{"id":"6","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},{"id":"7","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},{"id":"8","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]}]},{"id":"9","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2,"isTogglable":false},"content":[{"type":"text","text":"Bold","styles":{"bold":true}},{"type":"text","text":"Italic","styles":{"italic":true}},{"type":"text","text":"Regular","styles":{}}],"children":[{"id":"10","type":"image","props":{"backgroundColor":"default","textAlignment":"left","name":"","url":"https://ralfvanveen.com/wp-content/uploads/2021/06/Placeholder-_-Glossary.svg","caption":"","showPreview":true},"children":[{"id":"11","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Pa","styles":{}}],"children":[]}]}]}],"blockCutAtEnd":"11"} +{"_meta":{"startPos":0,"endPos":199},"blocks":[{"id":"1","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2,"isTogglable":false},"content":[{"type":"text","text":"Heading 1","styles":{}}],"children":[{"id":"2","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},{"id":"3","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},{"id":"4","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]}]},{"id":"5","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2,"isTogglable":false},"content":[{"type":"text","text":"Heading 2","styles":{}}],"children":[{"id":"6","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},{"id":"7","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},{"id":"8","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]}]},{"id":"9","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2,"isTogglable":false},"content":[{"type":"text","text":"Bold","styles":{"bold":true}},{"type":"text","text":"Italic","styles":{"italic":true}},{"type":"text","text":"Regular","styles":{}}],"children":[{"id":"10","type":"image","props":{"backgroundColor":"default","textAlignment":"left","name":"","url":"https://ralfvanveen.com/wp-content/uploads/2021/06/Placeholder-_-Glossary.svg","caption":"","showPreview":true},"children":[{"id":"11","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Par","styles":{}}],"children":[]}]}]}],"blockCutAtEnd":"11"} +{"_meta":{"startPos":0,"endPos":200},"blocks":[{"id":"1","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2,"isTogglable":false},"content":[{"type":"text","text":"Heading 1","styles":{}}],"children":[{"id":"2","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},{"id":"3","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},{"id":"4","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]}]},{"id":"5","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2,"isTogglable":false},"content":[{"type":"text","text":"Heading 2","styles":{}}],"children":[{"id":"6","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},{"id":"7","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},{"id":"8","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]}]},{"id":"9","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2,"isTogglable":false},"content":[{"type":"text","text":"Bold","styles":{"bold":true}},{"type":"text","text":"Italic","styles":{"italic":true}},{"type":"text","text":"Regular","styles":{}}],"children":[{"id":"10","type":"image","props":{"backgroundColor":"default","textAlignment":"left","name":"","url":"https://ralfvanveen.com/wp-content/uploads/2021/06/Placeholder-_-Glossary.svg","caption":"","showPreview":true},"children":[{"id":"11","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Para","styles":{}}],"children":[]}]}]}],"blockCutAtEnd":"11"} +{"_meta":{"startPos":0,"endPos":201},"blocks":[{"id":"1","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2,"isTogglable":false},"content":[{"type":"text","text":"Heading 1","styles":{}}],"children":[{"id":"2","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},{"id":"3","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},{"id":"4","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]}]},{"id":"5","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2,"isTogglable":false},"content":[{"type":"text","text":"Heading 2","styles":{}}],"children":[{"id":"6","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},{"id":"7","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},{"id":"8","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]}]},{"id":"9","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2,"isTogglable":false},"content":[{"type":"text","text":"Bold","styles":{"bold":true}},{"type":"text","text":"Italic","styles":{"italic":true}},{"type":"text","text":"Regular","styles":{}}],"children":[{"id":"10","type":"image","props":{"backgroundColor":"default","textAlignment":"left","name":"","url":"https://ralfvanveen.com/wp-content/uploads/2021/06/Placeholder-_-Glossary.svg","caption":"","showPreview":true},"children":[{"id":"11","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Parag","styles":{}}],"children":[]}]}]}],"blockCutAtEnd":"11"} +{"_meta":{"startPos":0,"endPos":202},"blocks":[{"id":"1","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2,"isTogglable":false},"content":[{"type":"text","text":"Heading 1","styles":{}}],"children":[{"id":"2","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},{"id":"3","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},{"id":"4","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]}]},{"id":"5","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2,"isTogglable":false},"content":[{"type":"text","text":"Heading 2","styles":{}}],"children":[{"id":"6","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},{"id":"7","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},{"id":"8","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]}]},{"id":"9","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2,"isTogglable":false},"content":[{"type":"text","text":"Bold","styles":{"bold":true}},{"type":"text","text":"Italic","styles":{"italic":true}},{"type":"text","text":"Regular","styles":{}}],"children":[{"id":"10","type":"image","props":{"backgroundColor":"default","textAlignment":"left","name":"","url":"https://ralfvanveen.com/wp-content/uploads/2021/06/Placeholder-_-Glossary.svg","caption":"","showPreview":true},"children":[{"id":"11","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragr","styles":{}}],"children":[]}]}]}],"blockCutAtEnd":"11"} +{"_meta":{"startPos":0,"endPos":203},"blocks":[{"id":"1","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2,"isTogglable":false},"content":[{"type":"text","text":"Heading 1","styles":{}}],"children":[{"id":"2","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},{"id":"3","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},{"id":"4","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]}]},{"id":"5","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2,"isTogglable":false},"content":[{"type":"text","text":"Heading 2","styles":{}}],"children":[{"id":"6","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},{"id":"7","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},{"id":"8","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]}]},{"id":"9","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2,"isTogglable":false},"content":[{"type":"text","text":"Bold","styles":{"bold":true}},{"type":"text","text":"Italic","styles":{"italic":true}},{"type":"text","text":"Regular","styles":{}}],"children":[{"id":"10","type":"image","props":{"backgroundColor":"default","textAlignment":"left","name":"","url":"https://ralfvanveen.com/wp-content/uploads/2021/06/Placeholder-_-Glossary.svg","caption":"","showPreview":true},"children":[{"id":"11","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragra","styles":{}}],"children":[]}]}]}],"blockCutAtEnd":"11"} +{"_meta":{"startPos":0,"endPos":204},"blocks":[{"id":"1","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2,"isTogglable":false},"content":[{"type":"text","text":"Heading 1","styles":{}}],"children":[{"id":"2","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},{"id":"3","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},{"id":"4","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]}]},{"id":"5","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2,"isTogglable":false},"content":[{"type":"text","text":"Heading 2","styles":{}}],"children":[{"id":"6","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},{"id":"7","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},{"id":"8","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]}]},{"id":"9","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2,"isTogglable":false},"content":[{"type":"text","text":"Bold","styles":{"bold":true}},{"type":"text","text":"Italic","styles":{"italic":true}},{"type":"text","text":"Regular","styles":{}}],"children":[{"id":"10","type":"image","props":{"backgroundColor":"default","textAlignment":"left","name":"","url":"https://ralfvanveen.com/wp-content/uploads/2021/06/Placeholder-_-Glossary.svg","caption":"","showPreview":true},"children":[{"id":"11","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragrap","styles":{}}],"children":[]}]}]}],"blockCutAtEnd":"11"} +{"_meta":{"startPos":0,"endPos":211},"blocks":[{"id":"1","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2,"isTogglable":false},"content":[{"type":"text","text":"Heading 1","styles":{}}],"children":[{"id":"2","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},{"id":"3","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},{"id":"4","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]}]},{"id":"5","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2,"isTogglable":false},"content":[{"type":"text","text":"Heading 2","styles":{}}],"children":[{"id":"6","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},{"id":"7","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},{"id":"8","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]}]},{"id":"9","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2,"isTogglable":false},"content":[{"type":"text","text":"Bold","styles":{"bold":true}},{"type":"text","text":"Italic","styles":{"italic":true}},{"type":"text","text":"Regular","styles":{}}],"children":[{"id":"10","type":"image","props":{"backgroundColor":"default","textAlignment":"left","name":"","url":"https://ralfvanveen.com/wp-content/uploads/2021/06/Placeholder-_-Glossary.svg","caption":"","showPreview":true},"children":[{"id":"11","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph","styles":{}}],"children":[]}]}]}]} +{"_meta":{"startPos":0,"endPos":211},"blocks":[{"id":"1","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2,"isTogglable":false},"content":[{"type":"text","text":"Heading 1","styles":{}}],"children":[{"id":"2","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},{"id":"3","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},{"id":"4","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]}]},{"id":"5","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2,"isTogglable":false},"content":[{"type":"text","text":"Heading 2","styles":{}}],"children":[{"id":"6","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},{"id":"7","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},{"id":"8","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]}]},{"id":"9","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2,"isTogglable":false},"content":[{"type":"text","text":"Bold","styles":{"bold":true}},{"type":"text","text":"Italic","styles":{"italic":true}},{"type":"text","text":"Regular","styles":{}}],"children":[{"id":"10","type":"image","props":{"backgroundColor":"default","textAlignment":"left","name":"","url":"https://ralfvanveen.com/wp-content/uploads/2021/06/Placeholder-_-Glossary.svg","caption":"","showPreview":true},"children":[{"id":"11","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph","styles":{}}],"children":[]}]}]}]} +{"_meta":{"startPos":0,"endPos":211},"blocks":[{"id":"1","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2,"isTogglable":false},"content":[{"type":"text","text":"Heading 1","styles":{}}],"children":[{"id":"2","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},{"id":"3","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},{"id":"4","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]}]},{"id":"5","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2,"isTogglable":false},"content":[{"type":"text","text":"Heading 2","styles":{}}],"children":[{"id":"6","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},{"id":"7","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},{"id":"8","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]}]},{"id":"9","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2,"isTogglable":false},"content":[{"type":"text","text":"Bold","styles":{"bold":true}},{"type":"text","text":"Italic","styles":{"italic":true}},{"type":"text","text":"Regular","styles":{}}],"children":[{"id":"10","type":"image","props":{"backgroundColor":"default","textAlignment":"left","name":"","url":"https://ralfvanveen.com/wp-content/uploads/2021/06/Placeholder-_-Glossary.svg","caption":"","showPreview":true},"children":[{"id":"11","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph","styles":{}}],"children":[]}]}]}]} +{"_meta":{"startPos":0,"endPos":211},"blocks":[{"id":"1","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2,"isTogglable":false},"content":[{"type":"text","text":"Heading 1","styles":{}}],"children":[{"id":"2","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},{"id":"3","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},{"id":"4","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]}]},{"id":"5","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2,"isTogglable":false},"content":[{"type":"text","text":"Heading 2","styles":{}}],"children":[{"id":"6","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},{"id":"7","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},{"id":"8","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]}]},{"id":"9","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2,"isTogglable":false},"content":[{"type":"text","text":"Bold","styles":{"bold":true}},{"type":"text","text":"Italic","styles":{"italic":true}},{"type":"text","text":"Regular","styles":{}}],"children":[{"id":"10","type":"image","props":{"backgroundColor":"default","textAlignment":"left","name":"","url":"https://ralfvanveen.com/wp-content/uploads/2021/06/Placeholder-_-Glossary.svg","caption":"","showPreview":true},"children":[{"id":"11","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph","styles":{}}],"children":[]}]}]}]} +{"_meta":{"startPos":0,"endPos":211},"blocks":[{"id":"1","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2,"isTogglable":false},"content":[{"type":"text","text":"Heading 1","styles":{}}],"children":[{"id":"2","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},{"id":"3","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},{"id":"4","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]}]},{"id":"5","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2,"isTogglable":false},"content":[{"type":"text","text":"Heading 2","styles":{}}],"children":[{"id":"6","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},{"id":"7","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},{"id":"8","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]}]},{"id":"9","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2,"isTogglable":false},"content":[{"type":"text","text":"Bold","styles":{"bold":true}},{"type":"text","text":"Italic","styles":{"italic":true}},{"type":"text","text":"Regular","styles":{}}],"children":[{"id":"10","type":"image","props":{"backgroundColor":"default","textAlignment":"left","name":"","url":"https://ralfvanveen.com/wp-content/uploads/2021/06/Placeholder-_-Glossary.svg","caption":"","showPreview":true},"children":[{"id":"11","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph","styles":{}}],"children":[]}]}]}]} +{"_meta":{"startPos":0,"endPos":211},"blocks":[{"id":"1","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2,"isTogglable":false},"content":[{"type":"text","text":"Heading 1","styles":{}}],"children":[{"id":"2","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},{"id":"3","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},{"id":"4","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]}]},{"id":"5","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2,"isTogglable":false},"content":[{"type":"text","text":"Heading 2","styles":{}}],"children":[{"id":"6","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},{"id":"7","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},{"id":"8","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]}]},{"id":"9","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2,"isTogglable":false},"content":[{"type":"text","text":"Bold","styles":{"bold":true}},{"type":"text","text":"Italic","styles":{"italic":true}},{"type":"text","text":"Regular","styles":{}}],"children":[{"id":"10","type":"image","props":{"backgroundColor":"default","textAlignment":"left","name":"","url":"https://ralfvanveen.com/wp-content/uploads/2021/06/Placeholder-_-Glossary.svg","caption":"","showPreview":true},"children":[{"id":"11","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph","styles":{}}],"children":[]}]}]}]} +{"_meta":{"startPos":0,"endPos":211},"blocks":[{"id":"1","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2,"isTogglable":false},"content":[{"type":"text","text":"Heading 1","styles":{}}],"children":[{"id":"2","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},{"id":"3","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},{"id":"4","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]}]},{"id":"5","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2,"isTogglable":false},"content":[{"type":"text","text":"Heading 2","styles":{}}],"children":[{"id":"6","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},{"id":"7","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},{"id":"8","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]}]},{"id":"9","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2,"isTogglable":false},"content":[{"type":"text","text":"Bold","styles":{"bold":true}},{"type":"text","text":"Italic","styles":{"italic":true}},{"type":"text","text":"Regular","styles":{}}],"children":[{"id":"10","type":"image","props":{"backgroundColor":"default","textAlignment":"left","name":"","url":"https://ralfvanveen.com/wp-content/uploads/2021/06/Placeholder-_-Glossary.svg","caption":"","showPreview":true},"children":[{"id":"11","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph","styles":{}}],"children":[]}]}]}]} +{"_meta":{"startPos":0,"endPos":211},"blocks":[{"id":"1","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2,"isTogglable":false},"content":[{"type":"text","text":"Heading 1","styles":{}}],"children":[{"id":"2","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},{"id":"3","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},{"id":"4","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]}]},{"id":"5","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2,"isTogglable":false},"content":[{"type":"text","text":"Heading 2","styles":{}}],"children":[{"id":"6","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},{"id":"7","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},{"id":"8","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]}]},{"id":"9","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2,"isTogglable":false},"content":[{"type":"text","text":"Bold","styles":{"bold":true}},{"type":"text","text":"Italic","styles":{"italic":true}},{"type":"text","text":"Regular","styles":{}}],"children":[{"id":"10","type":"image","props":{"backgroundColor":"default","textAlignment":"left","name":"","url":"https://ralfvanveen.com/wp-content/uploads/2021/06/Placeholder-_-Glossary.svg","caption":"","showPreview":true},"children":[{"id":"11","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph","styles":{}}],"children":[]}]}]}]} +{"_meta":{"startPos":0,"endPos":211},"blocks":[{"id":"1","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2,"isTogglable":false},"content":[{"type":"text","text":"Heading 1","styles":{}}],"children":[{"id":"2","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},{"id":"3","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},{"id":"4","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]}]},{"id":"5","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2,"isTogglable":false},"content":[{"type":"text","text":"Heading 2","styles":{}}],"children":[{"id":"6","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},{"id":"7","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},{"id":"8","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]}]},{"id":"9","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2,"isTogglable":false},"content":[{"type":"text","text":"Bold","styles":{"bold":true}},{"type":"text","text":"Italic","styles":{"italic":true}},{"type":"text","text":"Regular","styles":{}}],"children":[{"id":"10","type":"image","props":{"backgroundColor":"default","textAlignment":"left","name":"","url":"https://ralfvanveen.com/wp-content/uploads/2021/06/Placeholder-_-Glossary.svg","caption":"","showPreview":true},"children":[{"id":"11","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph","styles":{}}],"children":[]}]}]}]} +{"_meta":{"startPos":0,"endPos":211},"blocks":[{"id":"1","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2,"isTogglable":false},"content":[{"type":"text","text":"Heading 1","styles":{}}],"children":[{"id":"2","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},{"id":"3","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},{"id":"4","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]}]},{"id":"5","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2,"isTogglable":false},"content":[{"type":"text","text":"Heading 2","styles":{}}],"children":[{"id":"6","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},{"id":"7","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},{"id":"8","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]}]},{"id":"9","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2,"isTogglable":false},"content":[{"type":"text","text":"Bold","styles":{"bold":true}},{"type":"text","text":"Italic","styles":{"italic":true}},{"type":"text","text":"Regular","styles":{}}],"children":[{"id":"10","type":"image","props":{"backgroundColor":"default","textAlignment":"left","name":"","url":"https://ralfvanveen.com/wp-content/uploads/2021/06/Placeholder-_-Glossary.svg","caption":"","showPreview":true},"children":[{"id":"11","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph","styles":{}}],"children":[]}]}]}]} +{"_meta":{"startPos":0,"endPos":276},"blocks":[{"id":"1","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2,"isTogglable":false},"content":[{"type":"text","text":"Heading 1","styles":{}}],"children":[{"id":"2","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},{"id":"3","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},{"id":"4","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]}]},{"id":"5","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2,"isTogglable":false},"content":[{"type":"text","text":"Heading 2","styles":{}}],"children":[{"id":"6","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},{"id":"7","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},{"id":"8","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]}]},{"id":"9","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2,"isTogglable":false},"content":[{"type":"text","text":"Bold","styles":{"bold":true}},{"type":"text","text":"Italic","styles":{"italic":true}},{"type":"text","text":"Regular","styles":{}}],"children":[{"id":"10","type":"image","props":{"backgroundColor":"default","textAlignment":"left","name":"","url":"https://ralfvanveen.com/wp-content/uploads/2021/06/Placeholder-_-Glossary.svg","caption":"","showPreview":true},"children":[{"id":"11","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph","styles":{}}],"children":[]}]}]},{"id":"12","type":"table","props":{"textColor":"default"},"content":{"type":"tableContent","columnWidths":[null,null],"rows":[{"cells":[{"type":"tableCell","content":[{"type":"text","text":"Table Cell","styles":{}}],"props":{"colspan":1,"rowspan":1,"backgroundColor":"default","textColor":"default","textAlignment":"left"}},{"type":"tableCell","content":[{"type":"text","text":"Table Cell","styles":{}}],"props":{"colspan":1,"rowspan":1,"backgroundColor":"default","textColor":"default","textAlignment":"left"}}]},{"cells":[{"type":"tableCell","content":[{"type":"text","text":"Table Cell","styles":{}}],"props":{"colspan":1,"rowspan":1,"backgroundColor":"default","textColor":"default","textAlignment":"left"}},{"type":"tableCell","content":[{"type":"text","text":"Table Cell","styles":{}}],"props":{"colspan":1,"rowspan":1,"backgroundColor":"default","textColor":"default","textAlignment":"left"}}]}]},"children":[]}]} +{"_meta":{"startPos":0,"endPos":276},"blocks":[{"id":"1","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2,"isTogglable":false},"content":[{"type":"text","text":"Heading 1","styles":{}}],"children":[{"id":"2","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},{"id":"3","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},{"id":"4","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]}]},{"id":"5","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2,"isTogglable":false},"content":[{"type":"text","text":"Heading 2","styles":{}}],"children":[{"id":"6","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},{"id":"7","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},{"id":"8","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]}]},{"id":"9","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2,"isTogglable":false},"content":[{"type":"text","text":"Bold","styles":{"bold":true}},{"type":"text","text":"Italic","styles":{"italic":true}},{"type":"text","text":"Regular","styles":{}}],"children":[{"id":"10","type":"image","props":{"backgroundColor":"default","textAlignment":"left","name":"","url":"https://ralfvanveen.com/wp-content/uploads/2021/06/Placeholder-_-Glossary.svg","caption":"","showPreview":true},"children":[{"id":"11","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph","styles":{}}],"children":[]}]}]},{"id":"12","type":"table","props":{"textColor":"default"},"content":{"type":"tableContent","columnWidths":[null,null],"rows":[{"cells":[{"type":"tableCell","content":[{"type":"text","text":"Table Cell","styles":{}}],"props":{"colspan":1,"rowspan":1,"backgroundColor":"default","textColor":"default","textAlignment":"left"}},{"type":"tableCell","content":[{"type":"text","text":"Table Cell","styles":{}}],"props":{"colspan":1,"rowspan":1,"backgroundColor":"default","textColor":"default","textAlignment":"left"}}]},{"cells":[{"type":"tableCell","content":[{"type":"text","text":"Table Cell","styles":{}}],"props":{"colspan":1,"rowspan":1,"backgroundColor":"default","textColor":"default","textAlignment":"left"}},{"type":"tableCell","content":[{"type":"text","text":"Table Cell","styles":{}}],"props":{"colspan":1,"rowspan":1,"backgroundColor":"default","textColor":"default","textAlignment":"left"}}]}]},"children":[]}]} +{"_meta":{"startPos":0,"endPos":217},"blocks":[{"id":"1","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2,"isTogglable":false},"content":[{"type":"text","text":"Heading 1","styles":{}}],"children":[{"id":"2","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},{"id":"3","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},{"id":"4","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]}]},{"id":"5","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2,"isTogglable":false},"content":[{"type":"text","text":"Heading 2","styles":{}}],"children":[{"id":"6","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},{"id":"7","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},{"id":"8","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]}]},{"id":"9","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2,"isTogglable":false},"content":[{"type":"text","text":"Bold","styles":{"bold":true}},{"type":"text","text":"Italic","styles":{"italic":true}},{"type":"text","text":"Regular","styles":{}}],"children":[{"id":"10","type":"image","props":{"backgroundColor":"default","textAlignment":"left","name":"","url":"https://ralfvanveen.com/wp-content/uploads/2021/06/Placeholder-_-Glossary.svg","caption":"","showPreview":true},"children":[{"id":"11","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph","styles":{}}],"children":[]}]}]},{"id":"12","type":"table","props":{"textColor":"default"},"content":{"type":"tableContent","columnWidths":[null],"rows":[{"cells":[{"type":"tableCell","content":[{"type":"text","text":"T","styles":{}}],"props":{"colspan":1,"rowspan":1,"backgroundColor":"default","textColor":"default","textAlignment":"left"}}]}]},"children":[]}],"blockCutAtEnd":"12"} +{"_meta":{"startPos":0,"endPos":218},"blocks":[{"id":"1","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2,"isTogglable":false},"content":[{"type":"text","text":"Heading 1","styles":{}}],"children":[{"id":"2","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},{"id":"3","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},{"id":"4","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]}]},{"id":"5","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2,"isTogglable":false},"content":[{"type":"text","text":"Heading 2","styles":{}}],"children":[{"id":"6","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},{"id":"7","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},{"id":"8","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]}]},{"id":"9","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2,"isTogglable":false},"content":[{"type":"text","text":"Bold","styles":{"bold":true}},{"type":"text","text":"Italic","styles":{"italic":true}},{"type":"text","text":"Regular","styles":{}}],"children":[{"id":"10","type":"image","props":{"backgroundColor":"default","textAlignment":"left","name":"","url":"https://ralfvanveen.com/wp-content/uploads/2021/06/Placeholder-_-Glossary.svg","caption":"","showPreview":true},"children":[{"id":"11","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph","styles":{}}],"children":[]}]}]},{"id":"12","type":"table","props":{"textColor":"default"},"content":{"type":"tableContent","columnWidths":[null],"rows":[{"cells":[{"type":"tableCell","content":[{"type":"text","text":"Ta","styles":{}}],"props":{"colspan":1,"rowspan":1,"backgroundColor":"default","textColor":"default","textAlignment":"left"}}]}]},"children":[]}],"blockCutAtEnd":"12"} +{"_meta":{"startPos":0,"endPos":219},"blocks":[{"id":"1","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2,"isTogglable":false},"content":[{"type":"text","text":"Heading 1","styles":{}}],"children":[{"id":"2","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},{"id":"3","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},{"id":"4","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]}]},{"id":"5","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2,"isTogglable":false},"content":[{"type":"text","text":"Heading 2","styles":{}}],"children":[{"id":"6","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},{"id":"7","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},{"id":"8","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]}]},{"id":"9","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2,"isTogglable":false},"content":[{"type":"text","text":"Bold","styles":{"bold":true}},{"type":"text","text":"Italic","styles":{"italic":true}},{"type":"text","text":"Regular","styles":{}}],"children":[{"id":"10","type":"image","props":{"backgroundColor":"default","textAlignment":"left","name":"","url":"https://ralfvanveen.com/wp-content/uploads/2021/06/Placeholder-_-Glossary.svg","caption":"","showPreview":true},"children":[{"id":"11","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph","styles":{}}],"children":[]}]}]},{"id":"12","type":"table","props":{"textColor":"default"},"content":{"type":"tableContent","columnWidths":[null],"rows":[{"cells":[{"type":"tableCell","content":[{"type":"text","text":"Tab","styles":{}}],"props":{"colspan":1,"rowspan":1,"backgroundColor":"default","textColor":"default","textAlignment":"left"}}]}]},"children":[]}],"blockCutAtEnd":"12"} +{"_meta":{"startPos":0,"endPos":220},"blocks":[{"id":"1","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2,"isTogglable":false},"content":[{"type":"text","text":"Heading 1","styles":{}}],"children":[{"id":"2","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},{"id":"3","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},{"id":"4","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]}]},{"id":"5","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2,"isTogglable":false},"content":[{"type":"text","text":"Heading 2","styles":{}}],"children":[{"id":"6","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},{"id":"7","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},{"id":"8","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]}]},{"id":"9","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2,"isTogglable":false},"content":[{"type":"text","text":"Bold","styles":{"bold":true}},{"type":"text","text":"Italic","styles":{"italic":true}},{"type":"text","text":"Regular","styles":{}}],"children":[{"id":"10","type":"image","props":{"backgroundColor":"default","textAlignment":"left","name":"","url":"https://ralfvanveen.com/wp-content/uploads/2021/06/Placeholder-_-Glossary.svg","caption":"","showPreview":true},"children":[{"id":"11","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph","styles":{}}],"children":[]}]}]},{"id":"12","type":"table","props":{"textColor":"default"},"content":{"type":"tableContent","columnWidths":[null],"rows":[{"cells":[{"type":"tableCell","content":[{"type":"text","text":"Tabl","styles":{}}],"props":{"colspan":1,"rowspan":1,"backgroundColor":"default","textColor":"default","textAlignment":"left"}}]}]},"children":[]}],"blockCutAtEnd":"12"} +{"_meta":{"startPos":0,"endPos":221},"blocks":[{"id":"1","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2,"isTogglable":false},"content":[{"type":"text","text":"Heading 1","styles":{}}],"children":[{"id":"2","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},{"id":"3","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},{"id":"4","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]}]},{"id":"5","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2,"isTogglable":false},"content":[{"type":"text","text":"Heading 2","styles":{}}],"children":[{"id":"6","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},{"id":"7","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},{"id":"8","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]}]},{"id":"9","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2,"isTogglable":false},"content":[{"type":"text","text":"Bold","styles":{"bold":true}},{"type":"text","text":"Italic","styles":{"italic":true}},{"type":"text","text":"Regular","styles":{}}],"children":[{"id":"10","type":"image","props":{"backgroundColor":"default","textAlignment":"left","name":"","url":"https://ralfvanveen.com/wp-content/uploads/2021/06/Placeholder-_-Glossary.svg","caption":"","showPreview":true},"children":[{"id":"11","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph","styles":{}}],"children":[]}]}]},{"id":"12","type":"table","props":{"textColor":"default"},"content":{"type":"tableContent","columnWidths":[null],"rows":[{"cells":[{"type":"tableCell","content":[{"type":"text","text":"Table","styles":{}}],"props":{"colspan":1,"rowspan":1,"backgroundColor":"default","textColor":"default","textAlignment":"left"}}]}]},"children":[]}],"blockCutAtEnd":"12"} +{"_meta":{"startPos":0,"endPos":222},"blocks":[{"id":"1","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2,"isTogglable":false},"content":[{"type":"text","text":"Heading 1","styles":{}}],"children":[{"id":"2","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},{"id":"3","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},{"id":"4","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]}]},{"id":"5","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2,"isTogglable":false},"content":[{"type":"text","text":"Heading 2","styles":{}}],"children":[{"id":"6","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},{"id":"7","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},{"id":"8","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]}]},{"id":"9","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2,"isTogglable":false},"content":[{"type":"text","text":"Bold","styles":{"bold":true}},{"type":"text","text":"Italic","styles":{"italic":true}},{"type":"text","text":"Regular","styles":{}}],"children":[{"id":"10","type":"image","props":{"backgroundColor":"default","textAlignment":"left","name":"","url":"https://ralfvanveen.com/wp-content/uploads/2021/06/Placeholder-_-Glossary.svg","caption":"","showPreview":true},"children":[{"id":"11","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph","styles":{}}],"children":[]}]}]},{"id":"12","type":"table","props":{"textColor":"default"},"content":{"type":"tableContent","columnWidths":[null],"rows":[{"cells":[{"type":"tableCell","content":[{"type":"text","text":"Table ","styles":{}}],"props":{"colspan":1,"rowspan":1,"backgroundColor":"default","textColor":"default","textAlignment":"left"}}]}]},"children":[]}],"blockCutAtEnd":"12"} +{"_meta":{"startPos":0,"endPos":223},"blocks":[{"id":"1","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2,"isTogglable":false},"content":[{"type":"text","text":"Heading 1","styles":{}}],"children":[{"id":"2","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},{"id":"3","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},{"id":"4","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]}]},{"id":"5","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2,"isTogglable":false},"content":[{"type":"text","text":"Heading 2","styles":{}}],"children":[{"id":"6","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},{"id":"7","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},{"id":"8","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]}]},{"id":"9","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2,"isTogglable":false},"content":[{"type":"text","text":"Bold","styles":{"bold":true}},{"type":"text","text":"Italic","styles":{"italic":true}},{"type":"text","text":"Regular","styles":{}}],"children":[{"id":"10","type":"image","props":{"backgroundColor":"default","textAlignment":"left","name":"","url":"https://ralfvanveen.com/wp-content/uploads/2021/06/Placeholder-_-Glossary.svg","caption":"","showPreview":true},"children":[{"id":"11","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph","styles":{}}],"children":[]}]}]},{"id":"12","type":"table","props":{"textColor":"default"},"content":{"type":"tableContent","columnWidths":[null],"rows":[{"cells":[{"type":"tableCell","content":[{"type":"text","text":"Table C","styles":{}}],"props":{"colspan":1,"rowspan":1,"backgroundColor":"default","textColor":"default","textAlignment":"left"}}]}]},"children":[]}],"blockCutAtEnd":"12"} +{"_meta":{"startPos":0,"endPos":224},"blocks":[{"id":"1","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2,"isTogglable":false},"content":[{"type":"text","text":"Heading 1","styles":{}}],"children":[{"id":"2","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},{"id":"3","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},{"id":"4","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]}]},{"id":"5","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2,"isTogglable":false},"content":[{"type":"text","text":"Heading 2","styles":{}}],"children":[{"id":"6","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},{"id":"7","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},{"id":"8","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]}]},{"id":"9","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2,"isTogglable":false},"content":[{"type":"text","text":"Bold","styles":{"bold":true}},{"type":"text","text":"Italic","styles":{"italic":true}},{"type":"text","text":"Regular","styles":{}}],"children":[{"id":"10","type":"image","props":{"backgroundColor":"default","textAlignment":"left","name":"","url":"https://ralfvanveen.com/wp-content/uploads/2021/06/Placeholder-_-Glossary.svg","caption":"","showPreview":true},"children":[{"id":"11","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph","styles":{}}],"children":[]}]}]},{"id":"12","type":"table","props":{"textColor":"default"},"content":{"type":"tableContent","columnWidths":[null],"rows":[{"cells":[{"type":"tableCell","content":[{"type":"text","text":"Table Ce","styles":{}}],"props":{"colspan":1,"rowspan":1,"backgroundColor":"default","textColor":"default","textAlignment":"left"}}]}]},"children":[]}],"blockCutAtEnd":"12"} +{"_meta":{"startPos":0,"endPos":225},"blocks":[{"id":"1","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2,"isTogglable":false},"content":[{"type":"text","text":"Heading 1","styles":{}}],"children":[{"id":"2","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},{"id":"3","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},{"id":"4","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]}]},{"id":"5","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2,"isTogglable":false},"content":[{"type":"text","text":"Heading 2","styles":{}}],"children":[{"id":"6","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},{"id":"7","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},{"id":"8","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]}]},{"id":"9","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2,"isTogglable":false},"content":[{"type":"text","text":"Bold","styles":{"bold":true}},{"type":"text","text":"Italic","styles":{"italic":true}},{"type":"text","text":"Regular","styles":{}}],"children":[{"id":"10","type":"image","props":{"backgroundColor":"default","textAlignment":"left","name":"","url":"https://ralfvanveen.com/wp-content/uploads/2021/06/Placeholder-_-Glossary.svg","caption":"","showPreview":true},"children":[{"id":"11","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph","styles":{}}],"children":[]}]}]},{"id":"12","type":"table","props":{"textColor":"default"},"content":{"type":"tableContent","columnWidths":[null],"rows":[{"cells":[{"type":"tableCell","content":[{"type":"text","text":"Table Cel","styles":{}}],"props":{"colspan":1,"rowspan":1,"backgroundColor":"default","textColor":"default","textAlignment":"left"}}]}]},"children":[]}],"blockCutAtEnd":"12"} +{"_meta":{"startPos":0,"endPos":228},"blocks":[{"id":"1","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2,"isTogglable":false},"content":[{"type":"text","text":"Heading 1","styles":{}}],"children":[{"id":"2","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},{"id":"3","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},{"id":"4","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]}]},{"id":"5","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2,"isTogglable":false},"content":[{"type":"text","text":"Heading 2","styles":{}}],"children":[{"id":"6","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},{"id":"7","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},{"id":"8","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]}]},{"id":"9","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2,"isTogglable":false},"content":[{"type":"text","text":"Bold","styles":{"bold":true}},{"type":"text","text":"Italic","styles":{"italic":true}},{"type":"text","text":"Regular","styles":{}}],"children":[{"id":"10","type":"image","props":{"backgroundColor":"default","textAlignment":"left","name":"","url":"https://ralfvanveen.com/wp-content/uploads/2021/06/Placeholder-_-Glossary.svg","caption":"","showPreview":true},"children":[{"id":"11","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph","styles":{}}],"children":[]}]}]},{"id":"12","type":"table","props":{"textColor":"default"},"content":{"type":"tableContent","columnWidths":[null],"rows":[{"cells":[{"type":"tableCell","content":[{"type":"text","text":"Table Cell","styles":{}}],"props":{"colspan":1,"rowspan":1,"backgroundColor":"default","textColor":"default","textAlignment":"left"}}]}]},"children":[]}],"blockCutAtEnd":"12"} +{"_meta":{"startPos":0,"endPos":228},"blocks":[{"id":"1","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2,"isTogglable":false},"content":[{"type":"text","text":"Heading 1","styles":{}}],"children":[{"id":"2","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},{"id":"3","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},{"id":"4","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]}]},{"id":"5","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2,"isTogglable":false},"content":[{"type":"text","text":"Heading 2","styles":{}}],"children":[{"id":"6","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},{"id":"7","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},{"id":"8","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]}]},{"id":"9","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2,"isTogglable":false},"content":[{"type":"text","text":"Bold","styles":{"bold":true}},{"type":"text","text":"Italic","styles":{"italic":true}},{"type":"text","text":"Regular","styles":{}}],"children":[{"id":"10","type":"image","props":{"backgroundColor":"default","textAlignment":"left","name":"","url":"https://ralfvanveen.com/wp-content/uploads/2021/06/Placeholder-_-Glossary.svg","caption":"","showPreview":true},"children":[{"id":"11","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph","styles":{}}],"children":[]}]}]},{"id":"12","type":"table","props":{"textColor":"default"},"content":{"type":"tableContent","columnWidths":[null],"rows":[{"cells":[{"type":"tableCell","content":[{"type":"text","text":"Table Cell","styles":{}}],"props":{"colspan":1,"rowspan":1,"backgroundColor":"default","textColor":"default","textAlignment":"left"}}]}]},"children":[]}],"blockCutAtEnd":"12"} +{"_meta":{"startPos":0,"endPos":228},"blocks":[{"id":"1","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2,"isTogglable":false},"content":[{"type":"text","text":"Heading 1","styles":{}}],"children":[{"id":"2","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},{"id":"3","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},{"id":"4","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]}]},{"id":"5","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2,"isTogglable":false},"content":[{"type":"text","text":"Heading 2","styles":{}}],"children":[{"id":"6","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},{"id":"7","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},{"id":"8","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]}]},{"id":"9","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2,"isTogglable":false},"content":[{"type":"text","text":"Bold","styles":{"bold":true}},{"type":"text","text":"Italic","styles":{"italic":true}},{"type":"text","text":"Regular","styles":{}}],"children":[{"id":"10","type":"image","props":{"backgroundColor":"default","textAlignment":"left","name":"","url":"https://ralfvanveen.com/wp-content/uploads/2021/06/Placeholder-_-Glossary.svg","caption":"","showPreview":true},"children":[{"id":"11","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph","styles":{}}],"children":[]}]}]},{"id":"12","type":"table","props":{"textColor":"default"},"content":{"type":"tableContent","columnWidths":[null],"rows":[{"cells":[{"type":"tableCell","content":[{"type":"text","text":"Table Cell","styles":{}}],"props":{"colspan":1,"rowspan":1,"backgroundColor":"default","textColor":"default","textAlignment":"left"}}]}]},"children":[]}],"blockCutAtEnd":"12"} +{"_meta":{"startPos":0,"endPos":276},"blocks":[{"id":"1","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2,"isTogglable":false},"content":[{"type":"text","text":"Heading 1","styles":{}}],"children":[{"id":"2","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},{"id":"3","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},{"id":"4","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]}]},{"id":"5","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2,"isTogglable":false},"content":[{"type":"text","text":"Heading 2","styles":{}}],"children":[{"id":"6","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},{"id":"7","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},{"id":"8","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]}]},{"id":"9","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2,"isTogglable":false},"content":[{"type":"text","text":"Bold","styles":{"bold":true}},{"type":"text","text":"Italic","styles":{"italic":true}},{"type":"text","text":"Regular","styles":{}}],"children":[{"id":"10","type":"image","props":{"backgroundColor":"default","textAlignment":"left","name":"","url":"https://ralfvanveen.com/wp-content/uploads/2021/06/Placeholder-_-Glossary.svg","caption":"","showPreview":true},"children":[{"id":"11","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph","styles":{}}],"children":[]}]}]},{"id":"12","type":"table","props":{"textColor":"default"},"content":{"type":"tableContent","columnWidths":[null,null],"rows":[{"cells":[{"type":"tableCell","content":[{"type":"text","text":"Table Cell","styles":{}}],"props":{"colspan":1,"rowspan":1,"backgroundColor":"default","textColor":"default","textAlignment":"left"}},{"type":"tableCell","content":[{"type":"text","text":"Table Cell","styles":{}}],"props":{"colspan":1,"rowspan":1,"backgroundColor":"default","textColor":"default","textAlignment":"left"}}]},{"cells":[{"type":"tableCell","content":[{"type":"text","text":"Table Cell","styles":{}}],"props":{"colspan":1,"rowspan":1,"backgroundColor":"default","textColor":"default","textAlignment":"left"}},{"type":"tableCell","content":[{"type":"text","text":"Table Cell","styles":{}}],"props":{"colspan":1,"rowspan":1,"backgroundColor":"default","textColor":"default","textAlignment":"left"}}]}]},"children":[]}]} +{"_meta":{"startPos":0,"endPos":276},"blocks":[{"id":"1","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2,"isTogglable":false},"content":[{"type":"text","text":"Heading 1","styles":{}}],"children":[{"id":"2","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},{"id":"3","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},{"id":"4","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]}]},{"id":"5","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2,"isTogglable":false},"content":[{"type":"text","text":"Heading 2","styles":{}}],"children":[{"id":"6","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},{"id":"7","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},{"id":"8","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]}]},{"id":"9","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2,"isTogglable":false},"content":[{"type":"text","text":"Bold","styles":{"bold":true}},{"type":"text","text":"Italic","styles":{"italic":true}},{"type":"text","text":"Regular","styles":{}}],"children":[{"id":"10","type":"image","props":{"backgroundColor":"default","textAlignment":"left","name":"","url":"https://ralfvanveen.com/wp-content/uploads/2021/06/Placeholder-_-Glossary.svg","caption":"","showPreview":true},"children":[{"id":"11","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph","styles":{}}],"children":[]}]}]},{"id":"12","type":"table","props":{"textColor":"default"},"content":{"type":"tableContent","columnWidths":[null,null],"rows":[{"cells":[{"type":"tableCell","content":[{"type":"text","text":"Table Cell","styles":{}}],"props":{"colspan":1,"rowspan":1,"backgroundColor":"default","textColor":"default","textAlignment":"left"}},{"type":"tableCell","content":[{"type":"text","text":"Table Cell","styles":{}}],"props":{"colspan":1,"rowspan":1,"backgroundColor":"default","textColor":"default","textAlignment":"left"}}]},{"cells":[{"type":"tableCell","content":[{"type":"text","text":"Table Cell","styles":{}}],"props":{"colspan":1,"rowspan":1,"backgroundColor":"default","textColor":"default","textAlignment":"left"}},{"type":"tableCell","content":[{"type":"text","text":"Table Cell","styles":{}}],"props":{"colspan":1,"rowspan":1,"backgroundColor":"default","textColor":"default","textAlignment":"left"}}]}]},"children":[]}]} +{"_meta":{"startPos":0,"endPos":231},"blocks":[{"id":"1","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2,"isTogglable":false},"content":[{"type":"text","text":"Heading 1","styles":{}}],"children":[{"id":"2","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},{"id":"3","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},{"id":"4","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]}]},{"id":"5","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2,"isTogglable":false},"content":[{"type":"text","text":"Heading 2","styles":{}}],"children":[{"id":"6","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},{"id":"7","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},{"id":"8","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]}]},{"id":"9","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2,"isTogglable":false},"content":[{"type":"text","text":"Bold","styles":{"bold":true}},{"type":"text","text":"Italic","styles":{"italic":true}},{"type":"text","text":"Regular","styles":{}}],"children":[{"id":"10","type":"image","props":{"backgroundColor":"default","textAlignment":"left","name":"","url":"https://ralfvanveen.com/wp-content/uploads/2021/06/Placeholder-_-Glossary.svg","caption":"","showPreview":true},"children":[{"id":"11","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph","styles":{}}],"children":[]}]}]},{"id":"12","type":"table","props":{"textColor":"default"},"content":{"type":"tableContent","columnWidths":[null,null],"rows":[{"cells":[{"type":"tableCell","content":[{"type":"text","text":"Table Cell","styles":{}}],"props":{"colspan":1,"rowspan":1,"backgroundColor":"default","textColor":"default","textAlignment":"left"}},{"type":"tableCell","content":[{"type":"text","text":"T","styles":{}}],"props":{"colspan":1,"rowspan":1,"backgroundColor":"default","textColor":"default","textAlignment":"left"}}]}]},"children":[]}],"blockCutAtEnd":"12"} +{"_meta":{"startPos":0,"endPos":232},"blocks":[{"id":"1","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2,"isTogglable":false},"content":[{"type":"text","text":"Heading 1","styles":{}}],"children":[{"id":"2","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},{"id":"3","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},{"id":"4","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]}]},{"id":"5","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2,"isTogglable":false},"content":[{"type":"text","text":"Heading 2","styles":{}}],"children":[{"id":"6","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},{"id":"7","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},{"id":"8","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]}]},{"id":"9","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2,"isTogglable":false},"content":[{"type":"text","text":"Bold","styles":{"bold":true}},{"type":"text","text":"Italic","styles":{"italic":true}},{"type":"text","text":"Regular","styles":{}}],"children":[{"id":"10","type":"image","props":{"backgroundColor":"default","textAlignment":"left","name":"","url":"https://ralfvanveen.com/wp-content/uploads/2021/06/Placeholder-_-Glossary.svg","caption":"","showPreview":true},"children":[{"id":"11","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph","styles":{}}],"children":[]}]}]},{"id":"12","type":"table","props":{"textColor":"default"},"content":{"type":"tableContent","columnWidths":[null,null],"rows":[{"cells":[{"type":"tableCell","content":[{"type":"text","text":"Table Cell","styles":{}}],"props":{"colspan":1,"rowspan":1,"backgroundColor":"default","textColor":"default","textAlignment":"left"}},{"type":"tableCell","content":[{"type":"text","text":"Ta","styles":{}}],"props":{"colspan":1,"rowspan":1,"backgroundColor":"default","textColor":"default","textAlignment":"left"}}]}]},"children":[]}],"blockCutAtEnd":"12"} +{"_meta":{"startPos":0,"endPos":233},"blocks":[{"id":"1","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2,"isTogglable":false},"content":[{"type":"text","text":"Heading 1","styles":{}}],"children":[{"id":"2","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},{"id":"3","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},{"id":"4","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]}]},{"id":"5","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2,"isTogglable":false},"content":[{"type":"text","text":"Heading 2","styles":{}}],"children":[{"id":"6","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},{"id":"7","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},{"id":"8","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]}]},{"id":"9","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2,"isTogglable":false},"content":[{"type":"text","text":"Bold","styles":{"bold":true}},{"type":"text","text":"Italic","styles":{"italic":true}},{"type":"text","text":"Regular","styles":{}}],"children":[{"id":"10","type":"image","props":{"backgroundColor":"default","textAlignment":"left","name":"","url":"https://ralfvanveen.com/wp-content/uploads/2021/06/Placeholder-_-Glossary.svg","caption":"","showPreview":true},"children":[{"id":"11","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph","styles":{}}],"children":[]}]}]},{"id":"12","type":"table","props":{"textColor":"default"},"content":{"type":"tableContent","columnWidths":[null,null],"rows":[{"cells":[{"type":"tableCell","content":[{"type":"text","text":"Table Cell","styles":{}}],"props":{"colspan":1,"rowspan":1,"backgroundColor":"default","textColor":"default","textAlignment":"left"}},{"type":"tableCell","content":[{"type":"text","text":"Tab","styles":{}}],"props":{"colspan":1,"rowspan":1,"backgroundColor":"default","textColor":"default","textAlignment":"left"}}]}]},"children":[]}],"blockCutAtEnd":"12"} +{"_meta":{"startPos":0,"endPos":234},"blocks":[{"id":"1","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2,"isTogglable":false},"content":[{"type":"text","text":"Heading 1","styles":{}}],"children":[{"id":"2","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},{"id":"3","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},{"id":"4","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]}]},{"id":"5","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2,"isTogglable":false},"content":[{"type":"text","text":"Heading 2","styles":{}}],"children":[{"id":"6","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},{"id":"7","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},{"id":"8","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]}]},{"id":"9","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2,"isTogglable":false},"content":[{"type":"text","text":"Bold","styles":{"bold":true}},{"type":"text","text":"Italic","styles":{"italic":true}},{"type":"text","text":"Regular","styles":{}}],"children":[{"id":"10","type":"image","props":{"backgroundColor":"default","textAlignment":"left","name":"","url":"https://ralfvanveen.com/wp-content/uploads/2021/06/Placeholder-_-Glossary.svg","caption":"","showPreview":true},"children":[{"id":"11","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph","styles":{}}],"children":[]}]}]},{"id":"12","type":"table","props":{"textColor":"default"},"content":{"type":"tableContent","columnWidths":[null,null],"rows":[{"cells":[{"type":"tableCell","content":[{"type":"text","text":"Table Cell","styles":{}}],"props":{"colspan":1,"rowspan":1,"backgroundColor":"default","textColor":"default","textAlignment":"left"}},{"type":"tableCell","content":[{"type":"text","text":"Tabl","styles":{}}],"props":{"colspan":1,"rowspan":1,"backgroundColor":"default","textColor":"default","textAlignment":"left"}}]}]},"children":[]}],"blockCutAtEnd":"12"} +{"_meta":{"startPos":0,"endPos":235},"blocks":[{"id":"1","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2,"isTogglable":false},"content":[{"type":"text","text":"Heading 1","styles":{}}],"children":[{"id":"2","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},{"id":"3","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},{"id":"4","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]}]},{"id":"5","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2,"isTogglable":false},"content":[{"type":"text","text":"Heading 2","styles":{}}],"children":[{"id":"6","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},{"id":"7","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},{"id":"8","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]}]},{"id":"9","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2,"isTogglable":false},"content":[{"type":"text","text":"Bold","styles":{"bold":true}},{"type":"text","text":"Italic","styles":{"italic":true}},{"type":"text","text":"Regular","styles":{}}],"children":[{"id":"10","type":"image","props":{"backgroundColor":"default","textAlignment":"left","name":"","url":"https://ralfvanveen.com/wp-content/uploads/2021/06/Placeholder-_-Glossary.svg","caption":"","showPreview":true},"children":[{"id":"11","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph","styles":{}}],"children":[]}]}]},{"id":"12","type":"table","props":{"textColor":"default"},"content":{"type":"tableContent","columnWidths":[null,null],"rows":[{"cells":[{"type":"tableCell","content":[{"type":"text","text":"Table Cell","styles":{}}],"props":{"colspan":1,"rowspan":1,"backgroundColor":"default","textColor":"default","textAlignment":"left"}},{"type":"tableCell","content":[{"type":"text","text":"Table","styles":{}}],"props":{"colspan":1,"rowspan":1,"backgroundColor":"default","textColor":"default","textAlignment":"left"}}]}]},"children":[]}],"blockCutAtEnd":"12"} +{"_meta":{"startPos":0,"endPos":236},"blocks":[{"id":"1","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2,"isTogglable":false},"content":[{"type":"text","text":"Heading 1","styles":{}}],"children":[{"id":"2","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},{"id":"3","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},{"id":"4","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]}]},{"id":"5","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2,"isTogglable":false},"content":[{"type":"text","text":"Heading 2","styles":{}}],"children":[{"id":"6","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},{"id":"7","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},{"id":"8","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]}]},{"id":"9","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2,"isTogglable":false},"content":[{"type":"text","text":"Bold","styles":{"bold":true}},{"type":"text","text":"Italic","styles":{"italic":true}},{"type":"text","text":"Regular","styles":{}}],"children":[{"id":"10","type":"image","props":{"backgroundColor":"default","textAlignment":"left","name":"","url":"https://ralfvanveen.com/wp-content/uploads/2021/06/Placeholder-_-Glossary.svg","caption":"","showPreview":true},"children":[{"id":"11","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph","styles":{}}],"children":[]}]}]},{"id":"12","type":"table","props":{"textColor":"default"},"content":{"type":"tableContent","columnWidths":[null,null],"rows":[{"cells":[{"type":"tableCell","content":[{"type":"text","text":"Table Cell","styles":{}}],"props":{"colspan":1,"rowspan":1,"backgroundColor":"default","textColor":"default","textAlignment":"left"}},{"type":"tableCell","content":[{"type":"text","text":"Table ","styles":{}}],"props":{"colspan":1,"rowspan":1,"backgroundColor":"default","textColor":"default","textAlignment":"left"}}]}]},"children":[]}],"blockCutAtEnd":"12"} +{"_meta":{"startPos":0,"endPos":237},"blocks":[{"id":"1","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2,"isTogglable":false},"content":[{"type":"text","text":"Heading 1","styles":{}}],"children":[{"id":"2","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},{"id":"3","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},{"id":"4","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]}]},{"id":"5","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2,"isTogglable":false},"content":[{"type":"text","text":"Heading 2","styles":{}}],"children":[{"id":"6","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},{"id":"7","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},{"id":"8","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]}]},{"id":"9","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2,"isTogglable":false},"content":[{"type":"text","text":"Bold","styles":{"bold":true}},{"type":"text","text":"Italic","styles":{"italic":true}},{"type":"text","text":"Regular","styles":{}}],"children":[{"id":"10","type":"image","props":{"backgroundColor":"default","textAlignment":"left","name":"","url":"https://ralfvanveen.com/wp-content/uploads/2021/06/Placeholder-_-Glossary.svg","caption":"","showPreview":true},"children":[{"id":"11","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph","styles":{}}],"children":[]}]}]},{"id":"12","type":"table","props":{"textColor":"default"},"content":{"type":"tableContent","columnWidths":[null,null],"rows":[{"cells":[{"type":"tableCell","content":[{"type":"text","text":"Table Cell","styles":{}}],"props":{"colspan":1,"rowspan":1,"backgroundColor":"default","textColor":"default","textAlignment":"left"}},{"type":"tableCell","content":[{"type":"text","text":"Table C","styles":{}}],"props":{"colspan":1,"rowspan":1,"backgroundColor":"default","textColor":"default","textAlignment":"left"}}]}]},"children":[]}],"blockCutAtEnd":"12"} +{"_meta":{"startPos":0,"endPos":238},"blocks":[{"id":"1","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2,"isTogglable":false},"content":[{"type":"text","text":"Heading 1","styles":{}}],"children":[{"id":"2","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},{"id":"3","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},{"id":"4","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]}]},{"id":"5","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2,"isTogglable":false},"content":[{"type":"text","text":"Heading 2","styles":{}}],"children":[{"id":"6","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},{"id":"7","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},{"id":"8","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]}]},{"id":"9","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2,"isTogglable":false},"content":[{"type":"text","text":"Bold","styles":{"bold":true}},{"type":"text","text":"Italic","styles":{"italic":true}},{"type":"text","text":"Regular","styles":{}}],"children":[{"id":"10","type":"image","props":{"backgroundColor":"default","textAlignment":"left","name":"","url":"https://ralfvanveen.com/wp-content/uploads/2021/06/Placeholder-_-Glossary.svg","caption":"","showPreview":true},"children":[{"id":"11","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph","styles":{}}],"children":[]}]}]},{"id":"12","type":"table","props":{"textColor":"default"},"content":{"type":"tableContent","columnWidths":[null,null],"rows":[{"cells":[{"type":"tableCell","content":[{"type":"text","text":"Table Cell","styles":{}}],"props":{"colspan":1,"rowspan":1,"backgroundColor":"default","textColor":"default","textAlignment":"left"}},{"type":"tableCell","content":[{"type":"text","text":"Table Ce","styles":{}}],"props":{"colspan":1,"rowspan":1,"backgroundColor":"default","textColor":"default","textAlignment":"left"}}]}]},"children":[]}],"blockCutAtEnd":"12"} +{"_meta":{"startPos":0,"endPos":239},"blocks":[{"id":"1","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2,"isTogglable":false},"content":[{"type":"text","text":"Heading 1","styles":{}}],"children":[{"id":"2","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},{"id":"3","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},{"id":"4","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]}]},{"id":"5","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2,"isTogglable":false},"content":[{"type":"text","text":"Heading 2","styles":{}}],"children":[{"id":"6","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},{"id":"7","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},{"id":"8","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]}]},{"id":"9","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2,"isTogglable":false},"content":[{"type":"text","text":"Bold","styles":{"bold":true}},{"type":"text","text":"Italic","styles":{"italic":true}},{"type":"text","text":"Regular","styles":{}}],"children":[{"id":"10","type":"image","props":{"backgroundColor":"default","textAlignment":"left","name":"","url":"https://ralfvanveen.com/wp-content/uploads/2021/06/Placeholder-_-Glossary.svg","caption":"","showPreview":true},"children":[{"id":"11","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph","styles":{}}],"children":[]}]}]},{"id":"12","type":"table","props":{"textColor":"default"},"content":{"type":"tableContent","columnWidths":[null,null],"rows":[{"cells":[{"type":"tableCell","content":[{"type":"text","text":"Table Cell","styles":{}}],"props":{"colspan":1,"rowspan":1,"backgroundColor":"default","textColor":"default","textAlignment":"left"}},{"type":"tableCell","content":[{"type":"text","text":"Table Cel","styles":{}}],"props":{"colspan":1,"rowspan":1,"backgroundColor":"default","textColor":"default","textAlignment":"left"}}]}]},"children":[]}],"blockCutAtEnd":"12"} +{"_meta":{"startPos":0,"endPos":243},"blocks":[{"id":"1","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2,"isTogglable":false},"content":[{"type":"text","text":"Heading 1","styles":{}}],"children":[{"id":"2","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},{"id":"3","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},{"id":"4","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]}]},{"id":"5","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2,"isTogglable":false},"content":[{"type":"text","text":"Heading 2","styles":{}}],"children":[{"id":"6","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},{"id":"7","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},{"id":"8","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]}]},{"id":"9","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2,"isTogglable":false},"content":[{"type":"text","text":"Bold","styles":{"bold":true}},{"type":"text","text":"Italic","styles":{"italic":true}},{"type":"text","text":"Regular","styles":{}}],"children":[{"id":"10","type":"image","props":{"backgroundColor":"default","textAlignment":"left","name":"","url":"https://ralfvanveen.com/wp-content/uploads/2021/06/Placeholder-_-Glossary.svg","caption":"","showPreview":true},"children":[{"id":"11","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph","styles":{}}],"children":[]}]}]},{"id":"12","type":"table","props":{"textColor":"default"},"content":{"type":"tableContent","columnWidths":[null,null],"rows":[{"cells":[{"type":"tableCell","content":[{"type":"text","text":"Table Cell","styles":{}}],"props":{"colspan":1,"rowspan":1,"backgroundColor":"default","textColor":"default","textAlignment":"left"}},{"type":"tableCell","content":[{"type":"text","text":"Table Cell","styles":{}}],"props":{"colspan":1,"rowspan":1,"backgroundColor":"default","textColor":"default","textAlignment":"left"}}]}]},"children":[]}],"blockCutAtEnd":"12"} +{"_meta":{"startPos":0,"endPos":243},"blocks":[{"id":"1","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2,"isTogglable":false},"content":[{"type":"text","text":"Heading 1","styles":{}}],"children":[{"id":"2","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},{"id":"3","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},{"id":"4","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]}]},{"id":"5","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2,"isTogglable":false},"content":[{"type":"text","text":"Heading 2","styles":{}}],"children":[{"id":"6","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},{"id":"7","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},{"id":"8","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]}]},{"id":"9","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2,"isTogglable":false},"content":[{"type":"text","text":"Bold","styles":{"bold":true}},{"type":"text","text":"Italic","styles":{"italic":true}},{"type":"text","text":"Regular","styles":{}}],"children":[{"id":"10","type":"image","props":{"backgroundColor":"default","textAlignment":"left","name":"","url":"https://ralfvanveen.com/wp-content/uploads/2021/06/Placeholder-_-Glossary.svg","caption":"","showPreview":true},"children":[{"id":"11","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph","styles":{}}],"children":[]}]}]},{"id":"12","type":"table","props":{"textColor":"default"},"content":{"type":"tableContent","columnWidths":[null,null],"rows":[{"cells":[{"type":"tableCell","content":[{"type":"text","text":"Table Cell","styles":{}}],"props":{"colspan":1,"rowspan":1,"backgroundColor":"default","textColor":"default","textAlignment":"left"}},{"type":"tableCell","content":[{"type":"text","text":"Table Cell","styles":{}}],"props":{"colspan":1,"rowspan":1,"backgroundColor":"default","textColor":"default","textAlignment":"left"}}]}]},"children":[]}],"blockCutAtEnd":"12"} +{"_meta":{"startPos":0,"endPos":243},"blocks":[{"id":"1","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2,"isTogglable":false},"content":[{"type":"text","text":"Heading 1","styles":{}}],"children":[{"id":"2","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},{"id":"3","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},{"id":"4","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]}]},{"id":"5","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2,"isTogglable":false},"content":[{"type":"text","text":"Heading 2","styles":{}}],"children":[{"id":"6","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},{"id":"7","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},{"id":"8","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]}]},{"id":"9","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2,"isTogglable":false},"content":[{"type":"text","text":"Bold","styles":{"bold":true}},{"type":"text","text":"Italic","styles":{"italic":true}},{"type":"text","text":"Regular","styles":{}}],"children":[{"id":"10","type":"image","props":{"backgroundColor":"default","textAlignment":"left","name":"","url":"https://ralfvanveen.com/wp-content/uploads/2021/06/Placeholder-_-Glossary.svg","caption":"","showPreview":true},"children":[{"id":"11","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph","styles":{}}],"children":[]}]}]},{"id":"12","type":"table","props":{"textColor":"default"},"content":{"type":"tableContent","columnWidths":[null,null],"rows":[{"cells":[{"type":"tableCell","content":[{"type":"text","text":"Table Cell","styles":{}}],"props":{"colspan":1,"rowspan":1,"backgroundColor":"default","textColor":"default","textAlignment":"left"}},{"type":"tableCell","content":[{"type":"text","text":"Table Cell","styles":{}}],"props":{"colspan":1,"rowspan":1,"backgroundColor":"default","textColor":"default","textAlignment":"left"}}]}]},"children":[]}],"blockCutAtEnd":"12"} +{"_meta":{"startPos":0,"endPos":243},"blocks":[{"id":"1","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2,"isTogglable":false},"content":[{"type":"text","text":"Heading 1","styles":{}}],"children":[{"id":"2","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},{"id":"3","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},{"id":"4","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]}]},{"id":"5","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2,"isTogglable":false},"content":[{"type":"text","text":"Heading 2","styles":{}}],"children":[{"id":"6","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},{"id":"7","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},{"id":"8","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]}]},{"id":"9","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2,"isTogglable":false},"content":[{"type":"text","text":"Bold","styles":{"bold":true}},{"type":"text","text":"Italic","styles":{"italic":true}},{"type":"text","text":"Regular","styles":{}}],"children":[{"id":"10","type":"image","props":{"backgroundColor":"default","textAlignment":"left","name":"","url":"https://ralfvanveen.com/wp-content/uploads/2021/06/Placeholder-_-Glossary.svg","caption":"","showPreview":true},"children":[{"id":"11","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph","styles":{}}],"children":[]}]}]},{"id":"12","type":"table","props":{"textColor":"default"},"content":{"type":"tableContent","columnWidths":[null,null],"rows":[{"cells":[{"type":"tableCell","content":[{"type":"text","text":"Table Cell","styles":{}}],"props":{"colspan":1,"rowspan":1,"backgroundColor":"default","textColor":"default","textAlignment":"left"}},{"type":"tableCell","content":[{"type":"text","text":"Table Cell","styles":{}}],"props":{"colspan":1,"rowspan":1,"backgroundColor":"default","textColor":"default","textAlignment":"left"}}]}]},"children":[]}],"blockCutAtEnd":"12"} +{"_meta":{"startPos":0,"endPos":243},"blocks":[{"id":"1","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2,"isTogglable":false},"content":[{"type":"text","text":"Heading 1","styles":{}}],"children":[{"id":"2","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},{"id":"3","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},{"id":"4","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]}]},{"id":"5","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2,"isTogglable":false},"content":[{"type":"text","text":"Heading 2","styles":{}}],"children":[{"id":"6","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},{"id":"7","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},{"id":"8","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]}]},{"id":"9","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2,"isTogglable":false},"content":[{"type":"text","text":"Bold","styles":{"bold":true}},{"type":"text","text":"Italic","styles":{"italic":true}},{"type":"text","text":"Regular","styles":{}}],"children":[{"id":"10","type":"image","props":{"backgroundColor":"default","textAlignment":"left","name":"","url":"https://ralfvanveen.com/wp-content/uploads/2021/06/Placeholder-_-Glossary.svg","caption":"","showPreview":true},"children":[{"id":"11","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph","styles":{}}],"children":[]}]}]},{"id":"12","type":"table","props":{"textColor":"default"},"content":{"type":"tableContent","columnWidths":[null,null],"rows":[{"cells":[{"type":"tableCell","content":[{"type":"text","text":"Table Cell","styles":{}}],"props":{"colspan":1,"rowspan":1,"backgroundColor":"default","textColor":"default","textAlignment":"left"}},{"type":"tableCell","content":[{"type":"text","text":"Table Cell","styles":{}}],"props":{"colspan":1,"rowspan":1,"backgroundColor":"default","textColor":"default","textAlignment":"left"}}]}]},"children":[]}],"blockCutAtEnd":"12"} +{"_meta":{"startPos":0,"endPos":276},"blocks":[{"id":"1","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2,"isTogglable":false},"content":[{"type":"text","text":"Heading 1","styles":{}}],"children":[{"id":"2","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},{"id":"3","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},{"id":"4","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]}]},{"id":"5","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2,"isTogglable":false},"content":[{"type":"text","text":"Heading 2","styles":{}}],"children":[{"id":"6","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},{"id":"7","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},{"id":"8","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]}]},{"id":"9","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2,"isTogglable":false},"content":[{"type":"text","text":"Bold","styles":{"bold":true}},{"type":"text","text":"Italic","styles":{"italic":true}},{"type":"text","text":"Regular","styles":{}}],"children":[{"id":"10","type":"image","props":{"backgroundColor":"default","textAlignment":"left","name":"","url":"https://ralfvanveen.com/wp-content/uploads/2021/06/Placeholder-_-Glossary.svg","caption":"","showPreview":true},"children":[{"id":"11","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph","styles":{}}],"children":[]}]}]},{"id":"12","type":"table","props":{"textColor":"default"},"content":{"type":"tableContent","columnWidths":[null,null],"rows":[{"cells":[{"type":"tableCell","content":[{"type":"text","text":"Table Cell","styles":{}}],"props":{"colspan":1,"rowspan":1,"backgroundColor":"default","textColor":"default","textAlignment":"left"}},{"type":"tableCell","content":[{"type":"text","text":"Table Cell","styles":{}}],"props":{"colspan":1,"rowspan":1,"backgroundColor":"default","textColor":"default","textAlignment":"left"}}]},{"cells":[{"type":"tableCell","content":[{"type":"text","text":"Table Cell","styles":{}}],"props":{"colspan":1,"rowspan":1,"backgroundColor":"default","textColor":"default","textAlignment":"left"}},{"type":"tableCell","content":[{"type":"text","text":"Table Cell","styles":{}}],"props":{"colspan":1,"rowspan":1,"backgroundColor":"default","textColor":"default","textAlignment":"left"}}]}]},"children":[]}]} +{"_meta":{"startPos":0,"endPos":276},"blocks":[{"id":"1","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2,"isTogglable":false},"content":[{"type":"text","text":"Heading 1","styles":{}}],"children":[{"id":"2","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},{"id":"3","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},{"id":"4","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]}]},{"id":"5","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2,"isTogglable":false},"content":[{"type":"text","text":"Heading 2","styles":{}}],"children":[{"id":"6","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},{"id":"7","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},{"id":"8","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]}]},{"id":"9","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2,"isTogglable":false},"content":[{"type":"text","text":"Bold","styles":{"bold":true}},{"type":"text","text":"Italic","styles":{"italic":true}},{"type":"text","text":"Regular","styles":{}}],"children":[{"id":"10","type":"image","props":{"backgroundColor":"default","textAlignment":"left","name":"","url":"https://ralfvanveen.com/wp-content/uploads/2021/06/Placeholder-_-Glossary.svg","caption":"","showPreview":true},"children":[{"id":"11","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph","styles":{}}],"children":[]}]}]},{"id":"12","type":"table","props":{"textColor":"default"},"content":{"type":"tableContent","columnWidths":[null,null],"rows":[{"cells":[{"type":"tableCell","content":[{"type":"text","text":"Table Cell","styles":{}}],"props":{"colspan":1,"rowspan":1,"backgroundColor":"default","textColor":"default","textAlignment":"left"}},{"type":"tableCell","content":[{"type":"text","text":"Table Cell","styles":{}}],"props":{"colspan":1,"rowspan":1,"backgroundColor":"default","textColor":"default","textAlignment":"left"}}]},{"cells":[{"type":"tableCell","content":[{"type":"text","text":"Table Cell","styles":{}}],"props":{"colspan":1,"rowspan":1,"backgroundColor":"default","textColor":"default","textAlignment":"left"}},{"type":"tableCell","content":[{"type":"text","text":"Table Cell","styles":{}}],"props":{"colspan":1,"rowspan":1,"backgroundColor":"default","textColor":"default","textAlignment":"left"}}]}]},"children":[]}]} +{"_meta":{"startPos":0,"endPos":247},"blocks":[{"id":"1","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2,"isTogglable":false},"content":[{"type":"text","text":"Heading 1","styles":{}}],"children":[{"id":"2","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},{"id":"3","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},{"id":"4","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]}]},{"id":"5","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2,"isTogglable":false},"content":[{"type":"text","text":"Heading 2","styles":{}}],"children":[{"id":"6","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},{"id":"7","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},{"id":"8","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]}]},{"id":"9","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2,"isTogglable":false},"content":[{"type":"text","text":"Bold","styles":{"bold":true}},{"type":"text","text":"Italic","styles":{"italic":true}},{"type":"text","text":"Regular","styles":{}}],"children":[{"id":"10","type":"image","props":{"backgroundColor":"default","textAlignment":"left","name":"","url":"https://ralfvanveen.com/wp-content/uploads/2021/06/Placeholder-_-Glossary.svg","caption":"","showPreview":true},"children":[{"id":"11","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph","styles":{}}],"children":[]}]}]},{"id":"12","type":"table","props":{"textColor":"default"},"content":{"type":"tableContent","columnWidths":[null,null],"rows":[{"cells":[{"type":"tableCell","content":[{"type":"text","text":"Table Cell","styles":{}}],"props":{"colspan":1,"rowspan":1,"backgroundColor":"default","textColor":"default","textAlignment":"left"}},{"type":"tableCell","content":[{"type":"text","text":"Table Cell","styles":{}}],"props":{"colspan":1,"rowspan":1,"backgroundColor":"default","textColor":"default","textAlignment":"left"}}]},{"cells":[{"type":"tableCell","content":[{"type":"text","text":"T","styles":{}}],"props":{"colspan":1,"rowspan":1,"backgroundColor":"default","textColor":"default","textAlignment":"left"}}]}]},"children":[]}],"blockCutAtEnd":"12"} +{"_meta":{"startPos":0,"endPos":248},"blocks":[{"id":"1","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2,"isTogglable":false},"content":[{"type":"text","text":"Heading 1","styles":{}}],"children":[{"id":"2","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},{"id":"3","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},{"id":"4","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]}]},{"id":"5","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2,"isTogglable":false},"content":[{"type":"text","text":"Heading 2","styles":{}}],"children":[{"id":"6","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},{"id":"7","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},{"id":"8","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]}]},{"id":"9","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2,"isTogglable":false},"content":[{"type":"text","text":"Bold","styles":{"bold":true}},{"type":"text","text":"Italic","styles":{"italic":true}},{"type":"text","text":"Regular","styles":{}}],"children":[{"id":"10","type":"image","props":{"backgroundColor":"default","textAlignment":"left","name":"","url":"https://ralfvanveen.com/wp-content/uploads/2021/06/Placeholder-_-Glossary.svg","caption":"","showPreview":true},"children":[{"id":"11","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph","styles":{}}],"children":[]}]}]},{"id":"12","type":"table","props":{"textColor":"default"},"content":{"type":"tableContent","columnWidths":[null,null],"rows":[{"cells":[{"type":"tableCell","content":[{"type":"text","text":"Table Cell","styles":{}}],"props":{"colspan":1,"rowspan":1,"backgroundColor":"default","textColor":"default","textAlignment":"left"}},{"type":"tableCell","content":[{"type":"text","text":"Table Cell","styles":{}}],"props":{"colspan":1,"rowspan":1,"backgroundColor":"default","textColor":"default","textAlignment":"left"}}]},{"cells":[{"type":"tableCell","content":[{"type":"text","text":"Ta","styles":{}}],"props":{"colspan":1,"rowspan":1,"backgroundColor":"default","textColor":"default","textAlignment":"left"}}]}]},"children":[]}],"blockCutAtEnd":"12"} +{"_meta":{"startPos":0,"endPos":249},"blocks":[{"id":"1","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2,"isTogglable":false},"content":[{"type":"text","text":"Heading 1","styles":{}}],"children":[{"id":"2","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},{"id":"3","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},{"id":"4","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]}]},{"id":"5","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2,"isTogglable":false},"content":[{"type":"text","text":"Heading 2","styles":{}}],"children":[{"id":"6","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},{"id":"7","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},{"id":"8","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]}]},{"id":"9","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2,"isTogglable":false},"content":[{"type":"text","text":"Bold","styles":{"bold":true}},{"type":"text","text":"Italic","styles":{"italic":true}},{"type":"text","text":"Regular","styles":{}}],"children":[{"id":"10","type":"image","props":{"backgroundColor":"default","textAlignment":"left","name":"","url":"https://ralfvanveen.com/wp-content/uploads/2021/06/Placeholder-_-Glossary.svg","caption":"","showPreview":true},"children":[{"id":"11","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph","styles":{}}],"children":[]}]}]},{"id":"12","type":"table","props":{"textColor":"default"},"content":{"type":"tableContent","columnWidths":[null,null],"rows":[{"cells":[{"type":"tableCell","content":[{"type":"text","text":"Table Cell","styles":{}}],"props":{"colspan":1,"rowspan":1,"backgroundColor":"default","textColor":"default","textAlignment":"left"}},{"type":"tableCell","content":[{"type":"text","text":"Table Cell","styles":{}}],"props":{"colspan":1,"rowspan":1,"backgroundColor":"default","textColor":"default","textAlignment":"left"}}]},{"cells":[{"type":"tableCell","content":[{"type":"text","text":"Tab","styles":{}}],"props":{"colspan":1,"rowspan":1,"backgroundColor":"default","textColor":"default","textAlignment":"left"}}]}]},"children":[]}],"blockCutAtEnd":"12"} +{"_meta":{"startPos":0,"endPos":250},"blocks":[{"id":"1","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2,"isTogglable":false},"content":[{"type":"text","text":"Heading 1","styles":{}}],"children":[{"id":"2","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},{"id":"3","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},{"id":"4","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]}]},{"id":"5","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2,"isTogglable":false},"content":[{"type":"text","text":"Heading 2","styles":{}}],"children":[{"id":"6","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},{"id":"7","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},{"id":"8","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]}]},{"id":"9","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2,"isTogglable":false},"content":[{"type":"text","text":"Bold","styles":{"bold":true}},{"type":"text","text":"Italic","styles":{"italic":true}},{"type":"text","text":"Regular","styles":{}}],"children":[{"id":"10","type":"image","props":{"backgroundColor":"default","textAlignment":"left","name":"","url":"https://ralfvanveen.com/wp-content/uploads/2021/06/Placeholder-_-Glossary.svg","caption":"","showPreview":true},"children":[{"id":"11","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph","styles":{}}],"children":[]}]}]},{"id":"12","type":"table","props":{"textColor":"default"},"content":{"type":"tableContent","columnWidths":[null,null],"rows":[{"cells":[{"type":"tableCell","content":[{"type":"text","text":"Table Cell","styles":{}}],"props":{"colspan":1,"rowspan":1,"backgroundColor":"default","textColor":"default","textAlignment":"left"}},{"type":"tableCell","content":[{"type":"text","text":"Table Cell","styles":{}}],"props":{"colspan":1,"rowspan":1,"backgroundColor":"default","textColor":"default","textAlignment":"left"}}]},{"cells":[{"type":"tableCell","content":[{"type":"text","text":"Tabl","styles":{}}],"props":{"colspan":1,"rowspan":1,"backgroundColor":"default","textColor":"default","textAlignment":"left"}}]}]},"children":[]}],"blockCutAtEnd":"12"} +{"_meta":{"startPos":0,"endPos":251},"blocks":[{"id":"1","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2,"isTogglable":false},"content":[{"type":"text","text":"Heading 1","styles":{}}],"children":[{"id":"2","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},{"id":"3","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},{"id":"4","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]}]},{"id":"5","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2,"isTogglable":false},"content":[{"type":"text","text":"Heading 2","styles":{}}],"children":[{"id":"6","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},{"id":"7","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},{"id":"8","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]}]},{"id":"9","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2,"isTogglable":false},"content":[{"type":"text","text":"Bold","styles":{"bold":true}},{"type":"text","text":"Italic","styles":{"italic":true}},{"type":"text","text":"Regular","styles":{}}],"children":[{"id":"10","type":"image","props":{"backgroundColor":"default","textAlignment":"left","name":"","url":"https://ralfvanveen.com/wp-content/uploads/2021/06/Placeholder-_-Glossary.svg","caption":"","showPreview":true},"children":[{"id":"11","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph","styles":{}}],"children":[]}]}]},{"id":"12","type":"table","props":{"textColor":"default"},"content":{"type":"tableContent","columnWidths":[null,null],"rows":[{"cells":[{"type":"tableCell","content":[{"type":"text","text":"Table Cell","styles":{}}],"props":{"colspan":1,"rowspan":1,"backgroundColor":"default","textColor":"default","textAlignment":"left"}},{"type":"tableCell","content":[{"type":"text","text":"Table Cell","styles":{}}],"props":{"colspan":1,"rowspan":1,"backgroundColor":"default","textColor":"default","textAlignment":"left"}}]},{"cells":[{"type":"tableCell","content":[{"type":"text","text":"Table","styles":{}}],"props":{"colspan":1,"rowspan":1,"backgroundColor":"default","textColor":"default","textAlignment":"left"}}]}]},"children":[]}],"blockCutAtEnd":"12"} +{"_meta":{"startPos":0,"endPos":252},"blocks":[{"id":"1","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2,"isTogglable":false},"content":[{"type":"text","text":"Heading 1","styles":{}}],"children":[{"id":"2","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},{"id":"3","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},{"id":"4","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]}]},{"id":"5","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2,"isTogglable":false},"content":[{"type":"text","text":"Heading 2","styles":{}}],"children":[{"id":"6","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},{"id":"7","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},{"id":"8","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]}]},{"id":"9","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2,"isTogglable":false},"content":[{"type":"text","text":"Bold","styles":{"bold":true}},{"type":"text","text":"Italic","styles":{"italic":true}},{"type":"text","text":"Regular","styles":{}}],"children":[{"id":"10","type":"image","props":{"backgroundColor":"default","textAlignment":"left","name":"","url":"https://ralfvanveen.com/wp-content/uploads/2021/06/Placeholder-_-Glossary.svg","caption":"","showPreview":true},"children":[{"id":"11","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph","styles":{}}],"children":[]}]}]},{"id":"12","type":"table","props":{"textColor":"default"},"content":{"type":"tableContent","columnWidths":[null,null],"rows":[{"cells":[{"type":"tableCell","content":[{"type":"text","text":"Table Cell","styles":{}}],"props":{"colspan":1,"rowspan":1,"backgroundColor":"default","textColor":"default","textAlignment":"left"}},{"type":"tableCell","content":[{"type":"text","text":"Table Cell","styles":{}}],"props":{"colspan":1,"rowspan":1,"backgroundColor":"default","textColor":"default","textAlignment":"left"}}]},{"cells":[{"type":"tableCell","content":[{"type":"text","text":"Table ","styles":{}}],"props":{"colspan":1,"rowspan":1,"backgroundColor":"default","textColor":"default","textAlignment":"left"}}]}]},"children":[]}],"blockCutAtEnd":"12"} +{"_meta":{"startPos":0,"endPos":253},"blocks":[{"id":"1","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2,"isTogglable":false},"content":[{"type":"text","text":"Heading 1","styles":{}}],"children":[{"id":"2","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},{"id":"3","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},{"id":"4","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]}]},{"id":"5","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2,"isTogglable":false},"content":[{"type":"text","text":"Heading 2","styles":{}}],"children":[{"id":"6","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},{"id":"7","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},{"id":"8","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]}]},{"id":"9","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2,"isTogglable":false},"content":[{"type":"text","text":"Bold","styles":{"bold":true}},{"type":"text","text":"Italic","styles":{"italic":true}},{"type":"text","text":"Regular","styles":{}}],"children":[{"id":"10","type":"image","props":{"backgroundColor":"default","textAlignment":"left","name":"","url":"https://ralfvanveen.com/wp-content/uploads/2021/06/Placeholder-_-Glossary.svg","caption":"","showPreview":true},"children":[{"id":"11","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph","styles":{}}],"children":[]}]}]},{"id":"12","type":"table","props":{"textColor":"default"},"content":{"type":"tableContent","columnWidths":[null,null],"rows":[{"cells":[{"type":"tableCell","content":[{"type":"text","text":"Table Cell","styles":{}}],"props":{"colspan":1,"rowspan":1,"backgroundColor":"default","textColor":"default","textAlignment":"left"}},{"type":"tableCell","content":[{"type":"text","text":"Table Cell","styles":{}}],"props":{"colspan":1,"rowspan":1,"backgroundColor":"default","textColor":"default","textAlignment":"left"}}]},{"cells":[{"type":"tableCell","content":[{"type":"text","text":"Table C","styles":{}}],"props":{"colspan":1,"rowspan":1,"backgroundColor":"default","textColor":"default","textAlignment":"left"}}]}]},"children":[]}],"blockCutAtEnd":"12"} +{"_meta":{"startPos":0,"endPos":254},"blocks":[{"id":"1","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2,"isTogglable":false},"content":[{"type":"text","text":"Heading 1","styles":{}}],"children":[{"id":"2","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},{"id":"3","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},{"id":"4","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]}]},{"id":"5","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2,"isTogglable":false},"content":[{"type":"text","text":"Heading 2","styles":{}}],"children":[{"id":"6","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},{"id":"7","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},{"id":"8","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]}]},{"id":"9","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2,"isTogglable":false},"content":[{"type":"text","text":"Bold","styles":{"bold":true}},{"type":"text","text":"Italic","styles":{"italic":true}},{"type":"text","text":"Regular","styles":{}}],"children":[{"id":"10","type":"image","props":{"backgroundColor":"default","textAlignment":"left","name":"","url":"https://ralfvanveen.com/wp-content/uploads/2021/06/Placeholder-_-Glossary.svg","caption":"","showPreview":true},"children":[{"id":"11","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph","styles":{}}],"children":[]}]}]},{"id":"12","type":"table","props":{"textColor":"default"},"content":{"type":"tableContent","columnWidths":[null,null],"rows":[{"cells":[{"type":"tableCell","content":[{"type":"text","text":"Table Cell","styles":{}}],"props":{"colspan":1,"rowspan":1,"backgroundColor":"default","textColor":"default","textAlignment":"left"}},{"type":"tableCell","content":[{"type":"text","text":"Table Cell","styles":{}}],"props":{"colspan":1,"rowspan":1,"backgroundColor":"default","textColor":"default","textAlignment":"left"}}]},{"cells":[{"type":"tableCell","content":[{"type":"text","text":"Table Ce","styles":{}}],"props":{"colspan":1,"rowspan":1,"backgroundColor":"default","textColor":"default","textAlignment":"left"}}]}]},"children":[]}],"blockCutAtEnd":"12"} +{"_meta":{"startPos":0,"endPos":255},"blocks":[{"id":"1","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2,"isTogglable":false},"content":[{"type":"text","text":"Heading 1","styles":{}}],"children":[{"id":"2","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},{"id":"3","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},{"id":"4","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]}]},{"id":"5","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2,"isTogglable":false},"content":[{"type":"text","text":"Heading 2","styles":{}}],"children":[{"id":"6","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},{"id":"7","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},{"id":"8","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]}]},{"id":"9","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2,"isTogglable":false},"content":[{"type":"text","text":"Bold","styles":{"bold":true}},{"type":"text","text":"Italic","styles":{"italic":true}},{"type":"text","text":"Regular","styles":{}}],"children":[{"id":"10","type":"image","props":{"backgroundColor":"default","textAlignment":"left","name":"","url":"https://ralfvanveen.com/wp-content/uploads/2021/06/Placeholder-_-Glossary.svg","caption":"","showPreview":true},"children":[{"id":"11","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph","styles":{}}],"children":[]}]}]},{"id":"12","type":"table","props":{"textColor":"default"},"content":{"type":"tableContent","columnWidths":[null,null],"rows":[{"cells":[{"type":"tableCell","content":[{"type":"text","text":"Table Cell","styles":{}}],"props":{"colspan":1,"rowspan":1,"backgroundColor":"default","textColor":"default","textAlignment":"left"}},{"type":"tableCell","content":[{"type":"text","text":"Table Cell","styles":{}}],"props":{"colspan":1,"rowspan":1,"backgroundColor":"default","textColor":"default","textAlignment":"left"}}]},{"cells":[{"type":"tableCell","content":[{"type":"text","text":"Table Cel","styles":{}}],"props":{"colspan":1,"rowspan":1,"backgroundColor":"default","textColor":"default","textAlignment":"left"}}]}]},"children":[]}],"blockCutAtEnd":"12"} +{"_meta":{"startPos":0,"endPos":258},"blocks":[{"id":"1","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2,"isTogglable":false},"content":[{"type":"text","text":"Heading 1","styles":{}}],"children":[{"id":"2","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},{"id":"3","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},{"id":"4","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]}]},{"id":"5","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2,"isTogglable":false},"content":[{"type":"text","text":"Heading 2","styles":{}}],"children":[{"id":"6","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},{"id":"7","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},{"id":"8","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]}]},{"id":"9","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2,"isTogglable":false},"content":[{"type":"text","text":"Bold","styles":{"bold":true}},{"type":"text","text":"Italic","styles":{"italic":true}},{"type":"text","text":"Regular","styles":{}}],"children":[{"id":"10","type":"image","props":{"backgroundColor":"default","textAlignment":"left","name":"","url":"https://ralfvanveen.com/wp-content/uploads/2021/06/Placeholder-_-Glossary.svg","caption":"","showPreview":true},"children":[{"id":"11","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph","styles":{}}],"children":[]}]}]},{"id":"12","type":"table","props":{"textColor":"default"},"content":{"type":"tableContent","columnWidths":[null,null],"rows":[{"cells":[{"type":"tableCell","content":[{"type":"text","text":"Table Cell","styles":{}}],"props":{"colspan":1,"rowspan":1,"backgroundColor":"default","textColor":"default","textAlignment":"left"}},{"type":"tableCell","content":[{"type":"text","text":"Table Cell","styles":{}}],"props":{"colspan":1,"rowspan":1,"backgroundColor":"default","textColor":"default","textAlignment":"left"}}]},{"cells":[{"type":"tableCell","content":[{"type":"text","text":"Table Cell","styles":{}}],"props":{"colspan":1,"rowspan":1,"backgroundColor":"default","textColor":"default","textAlignment":"left"}}]}]},"children":[]}],"blockCutAtEnd":"12"} +{"_meta":{"startPos":0,"endPos":258},"blocks":[{"id":"1","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2,"isTogglable":false},"content":[{"type":"text","text":"Heading 1","styles":{}}],"children":[{"id":"2","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},{"id":"3","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},{"id":"4","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]}]},{"id":"5","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2,"isTogglable":false},"content":[{"type":"text","text":"Heading 2","styles":{}}],"children":[{"id":"6","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},{"id":"7","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},{"id":"8","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]}]},{"id":"9","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2,"isTogglable":false},"content":[{"type":"text","text":"Bold","styles":{"bold":true}},{"type":"text","text":"Italic","styles":{"italic":true}},{"type":"text","text":"Regular","styles":{}}],"children":[{"id":"10","type":"image","props":{"backgroundColor":"default","textAlignment":"left","name":"","url":"https://ralfvanveen.com/wp-content/uploads/2021/06/Placeholder-_-Glossary.svg","caption":"","showPreview":true},"children":[{"id":"11","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph","styles":{}}],"children":[]}]}]},{"id":"12","type":"table","props":{"textColor":"default"},"content":{"type":"tableContent","columnWidths":[null,null],"rows":[{"cells":[{"type":"tableCell","content":[{"type":"text","text":"Table Cell","styles":{}}],"props":{"colspan":1,"rowspan":1,"backgroundColor":"default","textColor":"default","textAlignment":"left"}},{"type":"tableCell","content":[{"type":"text","text":"Table Cell","styles":{}}],"props":{"colspan":1,"rowspan":1,"backgroundColor":"default","textColor":"default","textAlignment":"left"}}]},{"cells":[{"type":"tableCell","content":[{"type":"text","text":"Table Cell","styles":{}}],"props":{"colspan":1,"rowspan":1,"backgroundColor":"default","textColor":"default","textAlignment":"left"}}]}]},"children":[]}],"blockCutAtEnd":"12"} +{"_meta":{"startPos":0,"endPos":258},"blocks":[{"id":"1","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2,"isTogglable":false},"content":[{"type":"text","text":"Heading 1","styles":{}}],"children":[{"id":"2","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},{"id":"3","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},{"id":"4","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]}]},{"id":"5","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2,"isTogglable":false},"content":[{"type":"text","text":"Heading 2","styles":{}}],"children":[{"id":"6","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},{"id":"7","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},{"id":"8","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]}]},{"id":"9","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2,"isTogglable":false},"content":[{"type":"text","text":"Bold","styles":{"bold":true}},{"type":"text","text":"Italic","styles":{"italic":true}},{"type":"text","text":"Regular","styles":{}}],"children":[{"id":"10","type":"image","props":{"backgroundColor":"default","textAlignment":"left","name":"","url":"https://ralfvanveen.com/wp-content/uploads/2021/06/Placeholder-_-Glossary.svg","caption":"","showPreview":true},"children":[{"id":"11","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph","styles":{}}],"children":[]}]}]},{"id":"12","type":"table","props":{"textColor":"default"},"content":{"type":"tableContent","columnWidths":[null,null],"rows":[{"cells":[{"type":"tableCell","content":[{"type":"text","text":"Table Cell","styles":{}}],"props":{"colspan":1,"rowspan":1,"backgroundColor":"default","textColor":"default","textAlignment":"left"}},{"type":"tableCell","content":[{"type":"text","text":"Table Cell","styles":{}}],"props":{"colspan":1,"rowspan":1,"backgroundColor":"default","textColor":"default","textAlignment":"left"}}]},{"cells":[{"type":"tableCell","content":[{"type":"text","text":"Table Cell","styles":{}}],"props":{"colspan":1,"rowspan":1,"backgroundColor":"default","textColor":"default","textAlignment":"left"}}]}]},"children":[]}],"blockCutAtEnd":"12"} +{"_meta":{"startPos":0,"endPos":276},"blocks":[{"id":"1","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2,"isTogglable":false},"content":[{"type":"text","text":"Heading 1","styles":{}}],"children":[{"id":"2","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},{"id":"3","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},{"id":"4","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]}]},{"id":"5","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2,"isTogglable":false},"content":[{"type":"text","text":"Heading 2","styles":{}}],"children":[{"id":"6","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},{"id":"7","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},{"id":"8","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]}]},{"id":"9","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2,"isTogglable":false},"content":[{"type":"text","text":"Bold","styles":{"bold":true}},{"type":"text","text":"Italic","styles":{"italic":true}},{"type":"text","text":"Regular","styles":{}}],"children":[{"id":"10","type":"image","props":{"backgroundColor":"default","textAlignment":"left","name":"","url":"https://ralfvanveen.com/wp-content/uploads/2021/06/Placeholder-_-Glossary.svg","caption":"","showPreview":true},"children":[{"id":"11","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph","styles":{}}],"children":[]}]}]},{"id":"12","type":"table","props":{"textColor":"default"},"content":{"type":"tableContent","columnWidths":[null,null],"rows":[{"cells":[{"type":"tableCell","content":[{"type":"text","text":"Table Cell","styles":{}}],"props":{"colspan":1,"rowspan":1,"backgroundColor":"default","textColor":"default","textAlignment":"left"}},{"type":"tableCell","content":[{"type":"text","text":"Table Cell","styles":{}}],"props":{"colspan":1,"rowspan":1,"backgroundColor":"default","textColor":"default","textAlignment":"left"}}]},{"cells":[{"type":"tableCell","content":[{"type":"text","text":"Table Cell","styles":{}}],"props":{"colspan":1,"rowspan":1,"backgroundColor":"default","textColor":"default","textAlignment":"left"}},{"type":"tableCell","content":[{"type":"text","text":"Table Cell","styles":{}}],"props":{"colspan":1,"rowspan":1,"backgroundColor":"default","textColor":"default","textAlignment":"left"}}]}]},"children":[]}]} +{"_meta":{"startPos":0,"endPos":276},"blocks":[{"id":"1","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2,"isTogglable":false},"content":[{"type":"text","text":"Heading 1","styles":{}}],"children":[{"id":"2","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},{"id":"3","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},{"id":"4","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]}]},{"id":"5","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2,"isTogglable":false},"content":[{"type":"text","text":"Heading 2","styles":{}}],"children":[{"id":"6","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},{"id":"7","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},{"id":"8","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]}]},{"id":"9","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2,"isTogglable":false},"content":[{"type":"text","text":"Bold","styles":{"bold":true}},{"type":"text","text":"Italic","styles":{"italic":true}},{"type":"text","text":"Regular","styles":{}}],"children":[{"id":"10","type":"image","props":{"backgroundColor":"default","textAlignment":"left","name":"","url":"https://ralfvanveen.com/wp-content/uploads/2021/06/Placeholder-_-Glossary.svg","caption":"","showPreview":true},"children":[{"id":"11","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph","styles":{}}],"children":[]}]}]},{"id":"12","type":"table","props":{"textColor":"default"},"content":{"type":"tableContent","columnWidths":[null,null],"rows":[{"cells":[{"type":"tableCell","content":[{"type":"text","text":"Table Cell","styles":{}}],"props":{"colspan":1,"rowspan":1,"backgroundColor":"default","textColor":"default","textAlignment":"left"}},{"type":"tableCell","content":[{"type":"text","text":"Table Cell","styles":{}}],"props":{"colspan":1,"rowspan":1,"backgroundColor":"default","textColor":"default","textAlignment":"left"}}]},{"cells":[{"type":"tableCell","content":[{"type":"text","text":"Table Cell","styles":{}}],"props":{"colspan":1,"rowspan":1,"backgroundColor":"default","textColor":"default","textAlignment":"left"}},{"type":"tableCell","content":[{"type":"text","text":"Table Cell","styles":{}}],"props":{"colspan":1,"rowspan":1,"backgroundColor":"default","textColor":"default","textAlignment":"left"}}]}]},"children":[]}]} +{"_meta":{"startPos":0,"endPos":261},"blocks":[{"id":"1","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2,"isTogglable":false},"content":[{"type":"text","text":"Heading 1","styles":{}}],"children":[{"id":"2","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},{"id":"3","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},{"id":"4","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]}]},{"id":"5","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2,"isTogglable":false},"content":[{"type":"text","text":"Heading 2","styles":{}}],"children":[{"id":"6","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},{"id":"7","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},{"id":"8","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]}]},{"id":"9","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2,"isTogglable":false},"content":[{"type":"text","text":"Bold","styles":{"bold":true}},{"type":"text","text":"Italic","styles":{"italic":true}},{"type":"text","text":"Regular","styles":{}}],"children":[{"id":"10","type":"image","props":{"backgroundColor":"default","textAlignment":"left","name":"","url":"https://ralfvanveen.com/wp-content/uploads/2021/06/Placeholder-_-Glossary.svg","caption":"","showPreview":true},"children":[{"id":"11","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph","styles":{}}],"children":[]}]}]},{"id":"12","type":"table","props":{"textColor":"default"},"content":{"type":"tableContent","columnWidths":[null,null],"rows":[{"cells":[{"type":"tableCell","content":[{"type":"text","text":"Table Cell","styles":{}}],"props":{"colspan":1,"rowspan":1,"backgroundColor":"default","textColor":"default","textAlignment":"left"}},{"type":"tableCell","content":[{"type":"text","text":"Table Cell","styles":{}}],"props":{"colspan":1,"rowspan":1,"backgroundColor":"default","textColor":"default","textAlignment":"left"}}]},{"cells":[{"type":"tableCell","content":[{"type":"text","text":"Table Cell","styles":{}}],"props":{"colspan":1,"rowspan":1,"backgroundColor":"default","textColor":"default","textAlignment":"left"}},{"type":"tableCell","content":[{"type":"text","text":"T","styles":{}}],"props":{"colspan":1,"rowspan":1,"backgroundColor":"default","textColor":"default","textAlignment":"left"}}]}]},"children":[]}],"blockCutAtEnd":"12"} +{"_meta":{"startPos":0,"endPos":262},"blocks":[{"id":"1","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2,"isTogglable":false},"content":[{"type":"text","text":"Heading 1","styles":{}}],"children":[{"id":"2","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},{"id":"3","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},{"id":"4","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]}]},{"id":"5","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2,"isTogglable":false},"content":[{"type":"text","text":"Heading 2","styles":{}}],"children":[{"id":"6","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},{"id":"7","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},{"id":"8","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]}]},{"id":"9","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2,"isTogglable":false},"content":[{"type":"text","text":"Bold","styles":{"bold":true}},{"type":"text","text":"Italic","styles":{"italic":true}},{"type":"text","text":"Regular","styles":{}}],"children":[{"id":"10","type":"image","props":{"backgroundColor":"default","textAlignment":"left","name":"","url":"https://ralfvanveen.com/wp-content/uploads/2021/06/Placeholder-_-Glossary.svg","caption":"","showPreview":true},"children":[{"id":"11","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph","styles":{}}],"children":[]}]}]},{"id":"12","type":"table","props":{"textColor":"default"},"content":{"type":"tableContent","columnWidths":[null,null],"rows":[{"cells":[{"type":"tableCell","content":[{"type":"text","text":"Table Cell","styles":{}}],"props":{"colspan":1,"rowspan":1,"backgroundColor":"default","textColor":"default","textAlignment":"left"}},{"type":"tableCell","content":[{"type":"text","text":"Table Cell","styles":{}}],"props":{"colspan":1,"rowspan":1,"backgroundColor":"default","textColor":"default","textAlignment":"left"}}]},{"cells":[{"type":"tableCell","content":[{"type":"text","text":"Table Cell","styles":{}}],"props":{"colspan":1,"rowspan":1,"backgroundColor":"default","textColor":"default","textAlignment":"left"}},{"type":"tableCell","content":[{"type":"text","text":"Ta","styles":{}}],"props":{"colspan":1,"rowspan":1,"backgroundColor":"default","textColor":"default","textAlignment":"left"}}]}]},"children":[]}],"blockCutAtEnd":"12"} +{"_meta":{"startPos":0,"endPos":263},"blocks":[{"id":"1","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2,"isTogglable":false},"content":[{"type":"text","text":"Heading 1","styles":{}}],"children":[{"id":"2","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},{"id":"3","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},{"id":"4","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]}]},{"id":"5","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2,"isTogglable":false},"content":[{"type":"text","text":"Heading 2","styles":{}}],"children":[{"id":"6","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},{"id":"7","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},{"id":"8","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]}]},{"id":"9","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2,"isTogglable":false},"content":[{"type":"text","text":"Bold","styles":{"bold":true}},{"type":"text","text":"Italic","styles":{"italic":true}},{"type":"text","text":"Regular","styles":{}}],"children":[{"id":"10","type":"image","props":{"backgroundColor":"default","textAlignment":"left","name":"","url":"https://ralfvanveen.com/wp-content/uploads/2021/06/Placeholder-_-Glossary.svg","caption":"","showPreview":true},"children":[{"id":"11","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph","styles":{}}],"children":[]}]}]},{"id":"12","type":"table","props":{"textColor":"default"},"content":{"type":"tableContent","columnWidths":[null,null],"rows":[{"cells":[{"type":"tableCell","content":[{"type":"text","text":"Table Cell","styles":{}}],"props":{"colspan":1,"rowspan":1,"backgroundColor":"default","textColor":"default","textAlignment":"left"}},{"type":"tableCell","content":[{"type":"text","text":"Table Cell","styles":{}}],"props":{"colspan":1,"rowspan":1,"backgroundColor":"default","textColor":"default","textAlignment":"left"}}]},{"cells":[{"type":"tableCell","content":[{"type":"text","text":"Table Cell","styles":{}}],"props":{"colspan":1,"rowspan":1,"backgroundColor":"default","textColor":"default","textAlignment":"left"}},{"type":"tableCell","content":[{"type":"text","text":"Tab","styles":{}}],"props":{"colspan":1,"rowspan":1,"backgroundColor":"default","textColor":"default","textAlignment":"left"}}]}]},"children":[]}],"blockCutAtEnd":"12"} +{"_meta":{"startPos":0,"endPos":264},"blocks":[{"id":"1","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2,"isTogglable":false},"content":[{"type":"text","text":"Heading 1","styles":{}}],"children":[{"id":"2","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},{"id":"3","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},{"id":"4","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]}]},{"id":"5","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2,"isTogglable":false},"content":[{"type":"text","text":"Heading 2","styles":{}}],"children":[{"id":"6","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},{"id":"7","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},{"id":"8","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]}]},{"id":"9","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2,"isTogglable":false},"content":[{"type":"text","text":"Bold","styles":{"bold":true}},{"type":"text","text":"Italic","styles":{"italic":true}},{"type":"text","text":"Regular","styles":{}}],"children":[{"id":"10","type":"image","props":{"backgroundColor":"default","textAlignment":"left","name":"","url":"https://ralfvanveen.com/wp-content/uploads/2021/06/Placeholder-_-Glossary.svg","caption":"","showPreview":true},"children":[{"id":"11","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph","styles":{}}],"children":[]}]}]},{"id":"12","type":"table","props":{"textColor":"default"},"content":{"type":"tableContent","columnWidths":[null,null],"rows":[{"cells":[{"type":"tableCell","content":[{"type":"text","text":"Table Cell","styles":{}}],"props":{"colspan":1,"rowspan":1,"backgroundColor":"default","textColor":"default","textAlignment":"left"}},{"type":"tableCell","content":[{"type":"text","text":"Table Cell","styles":{}}],"props":{"colspan":1,"rowspan":1,"backgroundColor":"default","textColor":"default","textAlignment":"left"}}]},{"cells":[{"type":"tableCell","content":[{"type":"text","text":"Table Cell","styles":{}}],"props":{"colspan":1,"rowspan":1,"backgroundColor":"default","textColor":"default","textAlignment":"left"}},{"type":"tableCell","content":[{"type":"text","text":"Tabl","styles":{}}],"props":{"colspan":1,"rowspan":1,"backgroundColor":"default","textColor":"default","textAlignment":"left"}}]}]},"children":[]}],"blockCutAtEnd":"12"} +{"_meta":{"startPos":0,"endPos":265},"blocks":[{"id":"1","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2,"isTogglable":false},"content":[{"type":"text","text":"Heading 1","styles":{}}],"children":[{"id":"2","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},{"id":"3","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},{"id":"4","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]}]},{"id":"5","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2,"isTogglable":false},"content":[{"type":"text","text":"Heading 2","styles":{}}],"children":[{"id":"6","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},{"id":"7","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},{"id":"8","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]}]},{"id":"9","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2,"isTogglable":false},"content":[{"type":"text","text":"Bold","styles":{"bold":true}},{"type":"text","text":"Italic","styles":{"italic":true}},{"type":"text","text":"Regular","styles":{}}],"children":[{"id":"10","type":"image","props":{"backgroundColor":"default","textAlignment":"left","name":"","url":"https://ralfvanveen.com/wp-content/uploads/2021/06/Placeholder-_-Glossary.svg","caption":"","showPreview":true},"children":[{"id":"11","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph","styles":{}}],"children":[]}]}]},{"id":"12","type":"table","props":{"textColor":"default"},"content":{"type":"tableContent","columnWidths":[null,null],"rows":[{"cells":[{"type":"tableCell","content":[{"type":"text","text":"Table Cell","styles":{}}],"props":{"colspan":1,"rowspan":1,"backgroundColor":"default","textColor":"default","textAlignment":"left"}},{"type":"tableCell","content":[{"type":"text","text":"Table Cell","styles":{}}],"props":{"colspan":1,"rowspan":1,"backgroundColor":"default","textColor":"default","textAlignment":"left"}}]},{"cells":[{"type":"tableCell","content":[{"type":"text","text":"Table Cell","styles":{}}],"props":{"colspan":1,"rowspan":1,"backgroundColor":"default","textColor":"default","textAlignment":"left"}},{"type":"tableCell","content":[{"type":"text","text":"Table","styles":{}}],"props":{"colspan":1,"rowspan":1,"backgroundColor":"default","textColor":"default","textAlignment":"left"}}]}]},"children":[]}],"blockCutAtEnd":"12"} +{"_meta":{"startPos":0,"endPos":266},"blocks":[{"id":"1","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2,"isTogglable":false},"content":[{"type":"text","text":"Heading 1","styles":{}}],"children":[{"id":"2","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},{"id":"3","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},{"id":"4","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]}]},{"id":"5","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2,"isTogglable":false},"content":[{"type":"text","text":"Heading 2","styles":{}}],"children":[{"id":"6","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},{"id":"7","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},{"id":"8","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]}]},{"id":"9","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2,"isTogglable":false},"content":[{"type":"text","text":"Bold","styles":{"bold":true}},{"type":"text","text":"Italic","styles":{"italic":true}},{"type":"text","text":"Regular","styles":{}}],"children":[{"id":"10","type":"image","props":{"backgroundColor":"default","textAlignment":"left","name":"","url":"https://ralfvanveen.com/wp-content/uploads/2021/06/Placeholder-_-Glossary.svg","caption":"","showPreview":true},"children":[{"id":"11","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph","styles":{}}],"children":[]}]}]},{"id":"12","type":"table","props":{"textColor":"default"},"content":{"type":"tableContent","columnWidths":[null,null],"rows":[{"cells":[{"type":"tableCell","content":[{"type":"text","text":"Table Cell","styles":{}}],"props":{"colspan":1,"rowspan":1,"backgroundColor":"default","textColor":"default","textAlignment":"left"}},{"type":"tableCell","content":[{"type":"text","text":"Table Cell","styles":{}}],"props":{"colspan":1,"rowspan":1,"backgroundColor":"default","textColor":"default","textAlignment":"left"}}]},{"cells":[{"type":"tableCell","content":[{"type":"text","text":"Table Cell","styles":{}}],"props":{"colspan":1,"rowspan":1,"backgroundColor":"default","textColor":"default","textAlignment":"left"}},{"type":"tableCell","content":[{"type":"text","text":"Table ","styles":{}}],"props":{"colspan":1,"rowspan":1,"backgroundColor":"default","textColor":"default","textAlignment":"left"}}]}]},"children":[]}],"blockCutAtEnd":"12"} +{"_meta":{"startPos":0,"endPos":267},"blocks":[{"id":"1","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2,"isTogglable":false},"content":[{"type":"text","text":"Heading 1","styles":{}}],"children":[{"id":"2","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},{"id":"3","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},{"id":"4","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]}]},{"id":"5","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2,"isTogglable":false},"content":[{"type":"text","text":"Heading 2","styles":{}}],"children":[{"id":"6","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},{"id":"7","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},{"id":"8","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]}]},{"id":"9","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2,"isTogglable":false},"content":[{"type":"text","text":"Bold","styles":{"bold":true}},{"type":"text","text":"Italic","styles":{"italic":true}},{"type":"text","text":"Regular","styles":{}}],"children":[{"id":"10","type":"image","props":{"backgroundColor":"default","textAlignment":"left","name":"","url":"https://ralfvanveen.com/wp-content/uploads/2021/06/Placeholder-_-Glossary.svg","caption":"","showPreview":true},"children":[{"id":"11","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph","styles":{}}],"children":[]}]}]},{"id":"12","type":"table","props":{"textColor":"default"},"content":{"type":"tableContent","columnWidths":[null,null],"rows":[{"cells":[{"type":"tableCell","content":[{"type":"text","text":"Table Cell","styles":{}}],"props":{"colspan":1,"rowspan":1,"backgroundColor":"default","textColor":"default","textAlignment":"left"}},{"type":"tableCell","content":[{"type":"text","text":"Table Cell","styles":{}}],"props":{"colspan":1,"rowspan":1,"backgroundColor":"default","textColor":"default","textAlignment":"left"}}]},{"cells":[{"type":"tableCell","content":[{"type":"text","text":"Table Cell","styles":{}}],"props":{"colspan":1,"rowspan":1,"backgroundColor":"default","textColor":"default","textAlignment":"left"}},{"type":"tableCell","content":[{"type":"text","text":"Table C","styles":{}}],"props":{"colspan":1,"rowspan":1,"backgroundColor":"default","textColor":"default","textAlignment":"left"}}]}]},"children":[]}],"blockCutAtEnd":"12"} +{"_meta":{"startPos":0,"endPos":268},"blocks":[{"id":"1","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2,"isTogglable":false},"content":[{"type":"text","text":"Heading 1","styles":{}}],"children":[{"id":"2","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},{"id":"3","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},{"id":"4","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]}]},{"id":"5","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2,"isTogglable":false},"content":[{"type":"text","text":"Heading 2","styles":{}}],"children":[{"id":"6","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},{"id":"7","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},{"id":"8","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]}]},{"id":"9","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2,"isTogglable":false},"content":[{"type":"text","text":"Bold","styles":{"bold":true}},{"type":"text","text":"Italic","styles":{"italic":true}},{"type":"text","text":"Regular","styles":{}}],"children":[{"id":"10","type":"image","props":{"backgroundColor":"default","textAlignment":"left","name":"","url":"https://ralfvanveen.com/wp-content/uploads/2021/06/Placeholder-_-Glossary.svg","caption":"","showPreview":true},"children":[{"id":"11","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph","styles":{}}],"children":[]}]}]},{"id":"12","type":"table","props":{"textColor":"default"},"content":{"type":"tableContent","columnWidths":[null,null],"rows":[{"cells":[{"type":"tableCell","content":[{"type":"text","text":"Table Cell","styles":{}}],"props":{"colspan":1,"rowspan":1,"backgroundColor":"default","textColor":"default","textAlignment":"left"}},{"type":"tableCell","content":[{"type":"text","text":"Table Cell","styles":{}}],"props":{"colspan":1,"rowspan":1,"backgroundColor":"default","textColor":"default","textAlignment":"left"}}]},{"cells":[{"type":"tableCell","content":[{"type":"text","text":"Table Cell","styles":{}}],"props":{"colspan":1,"rowspan":1,"backgroundColor":"default","textColor":"default","textAlignment":"left"}},{"type":"tableCell","content":[{"type":"text","text":"Table Ce","styles":{}}],"props":{"colspan":1,"rowspan":1,"backgroundColor":"default","textColor":"default","textAlignment":"left"}}]}]},"children":[]}],"blockCutAtEnd":"12"} +{"_meta":{"startPos":0,"endPos":269},"blocks":[{"id":"1","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2,"isTogglable":false},"content":[{"type":"text","text":"Heading 1","styles":{}}],"children":[{"id":"2","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},{"id":"3","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},{"id":"4","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]}]},{"id":"5","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2,"isTogglable":false},"content":[{"type":"text","text":"Heading 2","styles":{}}],"children":[{"id":"6","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},{"id":"7","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},{"id":"8","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]}]},{"id":"9","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2,"isTogglable":false},"content":[{"type":"text","text":"Bold","styles":{"bold":true}},{"type":"text","text":"Italic","styles":{"italic":true}},{"type":"text","text":"Regular","styles":{}}],"children":[{"id":"10","type":"image","props":{"backgroundColor":"default","textAlignment":"left","name":"","url":"https://ralfvanveen.com/wp-content/uploads/2021/06/Placeholder-_-Glossary.svg","caption":"","showPreview":true},"children":[{"id":"11","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph","styles":{}}],"children":[]}]}]},{"id":"12","type":"table","props":{"textColor":"default"},"content":{"type":"tableContent","columnWidths":[null,null],"rows":[{"cells":[{"type":"tableCell","content":[{"type":"text","text":"Table Cell","styles":{}}],"props":{"colspan":1,"rowspan":1,"backgroundColor":"default","textColor":"default","textAlignment":"left"}},{"type":"tableCell","content":[{"type":"text","text":"Table Cell","styles":{}}],"props":{"colspan":1,"rowspan":1,"backgroundColor":"default","textColor":"default","textAlignment":"left"}}]},{"cells":[{"type":"tableCell","content":[{"type":"text","text":"Table Cell","styles":{}}],"props":{"colspan":1,"rowspan":1,"backgroundColor":"default","textColor":"default","textAlignment":"left"}},{"type":"tableCell","content":[{"type":"text","text":"Table Cel","styles":{}}],"props":{"colspan":1,"rowspan":1,"backgroundColor":"default","textColor":"default","textAlignment":"left"}}]}]},"children":[]}],"blockCutAtEnd":"12"} +{"_meta":{"startPos":0,"endPos":276},"blocks":[{"id":"1","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2,"isTogglable":false},"content":[{"type":"text","text":"Heading 1","styles":{}}],"children":[{"id":"2","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},{"id":"3","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},{"id":"4","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]}]},{"id":"5","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2,"isTogglable":false},"content":[{"type":"text","text":"Heading 2","styles":{}}],"children":[{"id":"6","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},{"id":"7","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},{"id":"8","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]}]},{"id":"9","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2,"isTogglable":false},"content":[{"type":"text","text":"Bold","styles":{"bold":true}},{"type":"text","text":"Italic","styles":{"italic":true}},{"type":"text","text":"Regular","styles":{}}],"children":[{"id":"10","type":"image","props":{"backgroundColor":"default","textAlignment":"left","name":"","url":"https://ralfvanveen.com/wp-content/uploads/2021/06/Placeholder-_-Glossary.svg","caption":"","showPreview":true},"children":[{"id":"11","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph","styles":{}}],"children":[]}]}]},{"id":"12","type":"table","props":{"textColor":"default"},"content":{"type":"tableContent","columnWidths":[null,null],"rows":[{"cells":[{"type":"tableCell","content":[{"type":"text","text":"Table Cell","styles":{}}],"props":{"colspan":1,"rowspan":1,"backgroundColor":"default","textColor":"default","textAlignment":"left"}},{"type":"tableCell","content":[{"type":"text","text":"Table Cell","styles":{}}],"props":{"colspan":1,"rowspan":1,"backgroundColor":"default","textColor":"default","textAlignment":"left"}}]},{"cells":[{"type":"tableCell","content":[{"type":"text","text":"Table Cell","styles":{}}],"props":{"colspan":1,"rowspan":1,"backgroundColor":"default","textColor":"default","textAlignment":"left"}},{"type":"tableCell","content":[{"type":"text","text":"Table Cell","styles":{}}],"props":{"colspan":1,"rowspan":1,"backgroundColor":"default","textColor":"default","textAlignment":"left"}}]}]},"children":[]}]} +{"_meta":{"startPos":0,"endPos":276},"blocks":[{"id":"1","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2,"isTogglable":false},"content":[{"type":"text","text":"Heading 1","styles":{}}],"children":[{"id":"2","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},{"id":"3","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},{"id":"4","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]}]},{"id":"5","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2,"isTogglable":false},"content":[{"type":"text","text":"Heading 2","styles":{}}],"children":[{"id":"6","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},{"id":"7","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},{"id":"8","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]}]},{"id":"9","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2,"isTogglable":false},"content":[{"type":"text","text":"Bold","styles":{"bold":true}},{"type":"text","text":"Italic","styles":{"italic":true}},{"type":"text","text":"Regular","styles":{}}],"children":[{"id":"10","type":"image","props":{"backgroundColor":"default","textAlignment":"left","name":"","url":"https://ralfvanveen.com/wp-content/uploads/2021/06/Placeholder-_-Glossary.svg","caption":"","showPreview":true},"children":[{"id":"11","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph","styles":{}}],"children":[]}]}]},{"id":"12","type":"table","props":{"textColor":"default"},"content":{"type":"tableContent","columnWidths":[null,null],"rows":[{"cells":[{"type":"tableCell","content":[{"type":"text","text":"Table Cell","styles":{}}],"props":{"colspan":1,"rowspan":1,"backgroundColor":"default","textColor":"default","textAlignment":"left"}},{"type":"tableCell","content":[{"type":"text","text":"Table Cell","styles":{}}],"props":{"colspan":1,"rowspan":1,"backgroundColor":"default","textColor":"default","textAlignment":"left"}}]},{"cells":[{"type":"tableCell","content":[{"type":"text","text":"Table Cell","styles":{}}],"props":{"colspan":1,"rowspan":1,"backgroundColor":"default","textColor":"default","textAlignment":"left"}},{"type":"tableCell","content":[{"type":"text","text":"Table Cell","styles":{}}],"props":{"colspan":1,"rowspan":1,"backgroundColor":"default","textColor":"default","textAlignment":"left"}}]}]},"children":[]}]} +{"_meta":{"startPos":0,"endPos":276},"blocks":[{"id":"1","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2,"isTogglable":false},"content":[{"type":"text","text":"Heading 1","styles":{}}],"children":[{"id":"2","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},{"id":"3","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},{"id":"4","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]}]},{"id":"5","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2,"isTogglable":false},"content":[{"type":"text","text":"Heading 2","styles":{}}],"children":[{"id":"6","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},{"id":"7","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},{"id":"8","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]}]},{"id":"9","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2,"isTogglable":false},"content":[{"type":"text","text":"Bold","styles":{"bold":true}},{"type":"text","text":"Italic","styles":{"italic":true}},{"type":"text","text":"Regular","styles":{}}],"children":[{"id":"10","type":"image","props":{"backgroundColor":"default","textAlignment":"left","name":"","url":"https://ralfvanveen.com/wp-content/uploads/2021/06/Placeholder-_-Glossary.svg","caption":"","showPreview":true},"children":[{"id":"11","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph","styles":{}}],"children":[]}]}]},{"id":"12","type":"table","props":{"textColor":"default"},"content":{"type":"tableContent","columnWidths":[null,null],"rows":[{"cells":[{"type":"tableCell","content":[{"type":"text","text":"Table Cell","styles":{}}],"props":{"colspan":1,"rowspan":1,"backgroundColor":"default","textColor":"default","textAlignment":"left"}},{"type":"tableCell","content":[{"type":"text","text":"Table Cell","styles":{}}],"props":{"colspan":1,"rowspan":1,"backgroundColor":"default","textColor":"default","textAlignment":"left"}}]},{"cells":[{"type":"tableCell","content":[{"type":"text","text":"Table Cell","styles":{}}],"props":{"colspan":1,"rowspan":1,"backgroundColor":"default","textColor":"default","textAlignment":"left"}},{"type":"tableCell","content":[{"type":"text","text":"Table Cell","styles":{}}],"props":{"colspan":1,"rowspan":1,"backgroundColor":"default","textColor":"default","textAlignment":"left"}}]}]},"children":[]}]} +{"_meta":{"startPos":0,"endPos":276},"blocks":[{"id":"1","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2,"isTogglable":false},"content":[{"type":"text","text":"Heading 1","styles":{}}],"children":[{"id":"2","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},{"id":"3","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},{"id":"4","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]}]},{"id":"5","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2,"isTogglable":false},"content":[{"type":"text","text":"Heading 2","styles":{}}],"children":[{"id":"6","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},{"id":"7","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},{"id":"8","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]}]},{"id":"9","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2,"isTogglable":false},"content":[{"type":"text","text":"Bold","styles":{"bold":true}},{"type":"text","text":"Italic","styles":{"italic":true}},{"type":"text","text":"Regular","styles":{}}],"children":[{"id":"10","type":"image","props":{"backgroundColor":"default","textAlignment":"left","name":"","url":"https://ralfvanveen.com/wp-content/uploads/2021/06/Placeholder-_-Glossary.svg","caption":"","showPreview":true},"children":[{"id":"11","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph","styles":{}}],"children":[]}]}]},{"id":"12","type":"table","props":{"textColor":"default"},"content":{"type":"tableContent","columnWidths":[null,null],"rows":[{"cells":[{"type":"tableCell","content":[{"type":"text","text":"Table Cell","styles":{}}],"props":{"colspan":1,"rowspan":1,"backgroundColor":"default","textColor":"default","textAlignment":"left"}},{"type":"tableCell","content":[{"type":"text","text":"Table Cell","styles":{}}],"props":{"colspan":1,"rowspan":1,"backgroundColor":"default","textColor":"default","textAlignment":"left"}}]},{"cells":[{"type":"tableCell","content":[{"type":"text","text":"Table Cell","styles":{}}],"props":{"colspan":1,"rowspan":1,"backgroundColor":"default","textColor":"default","textAlignment":"left"}},{"type":"tableCell","content":[{"type":"text","text":"Table Cell","styles":{}}],"props":{"colspan":1,"rowspan":1,"backgroundColor":"default","textColor":"default","textAlignment":"left"}}]}]},"children":[]}]} +{"_meta":{"startPos":0,"endPos":276},"blocks":[{"id":"1","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2,"isTogglable":false},"content":[{"type":"text","text":"Heading 1","styles":{}}],"children":[{"id":"2","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},{"id":"3","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},{"id":"4","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]}]},{"id":"5","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2,"isTogglable":false},"content":[{"type":"text","text":"Heading 2","styles":{}}],"children":[{"id":"6","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},{"id":"7","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},{"id":"8","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]}]},{"id":"9","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2,"isTogglable":false},"content":[{"type":"text","text":"Bold","styles":{"bold":true}},{"type":"text","text":"Italic","styles":{"italic":true}},{"type":"text","text":"Regular","styles":{}}],"children":[{"id":"10","type":"image","props":{"backgroundColor":"default","textAlignment":"left","name":"","url":"https://ralfvanveen.com/wp-content/uploads/2021/06/Placeholder-_-Glossary.svg","caption":"","showPreview":true},"children":[{"id":"11","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph","styles":{}}],"children":[]}]}]},{"id":"12","type":"table","props":{"textColor":"default"},"content":{"type":"tableContent","columnWidths":[null,null],"rows":[{"cells":[{"type":"tableCell","content":[{"type":"text","text":"Table Cell","styles":{}}],"props":{"colspan":1,"rowspan":1,"backgroundColor":"default","textColor":"default","textAlignment":"left"}},{"type":"tableCell","content":[{"type":"text","text":"Table Cell","styles":{}}],"props":{"colspan":1,"rowspan":1,"backgroundColor":"default","textColor":"default","textAlignment":"left"}}]},{"cells":[{"type":"tableCell","content":[{"type":"text","text":"Table Cell","styles":{}}],"props":{"colspan":1,"rowspan":1,"backgroundColor":"default","textColor":"default","textAlignment":"left"}},{"type":"tableCell","content":[{"type":"text","text":"Table Cell","styles":{}}],"props":{"colspan":1,"rowspan":1,"backgroundColor":"default","textColor":"default","textAlignment":"left"}}]}]},"children":[]}]} +{"_meta":{"startPos":0,"endPos":276},"blocks":[{"id":"1","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2,"isTogglable":false},"content":[{"type":"text","text":"Heading 1","styles":{}}],"children":[{"id":"2","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},{"id":"3","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},{"id":"4","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]}]},{"id":"5","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2,"isTogglable":false},"content":[{"type":"text","text":"Heading 2","styles":{}}],"children":[{"id":"6","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},{"id":"7","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},{"id":"8","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]}]},{"id":"9","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2,"isTogglable":false},"content":[{"type":"text","text":"Bold","styles":{"bold":true}},{"type":"text","text":"Italic","styles":{"italic":true}},{"type":"text","text":"Regular","styles":{}}],"children":[{"id":"10","type":"image","props":{"backgroundColor":"default","textAlignment":"left","name":"","url":"https://ralfvanveen.com/wp-content/uploads/2021/06/Placeholder-_-Glossary.svg","caption":"","showPreview":true},"children":[{"id":"11","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph","styles":{}}],"children":[]}]}]},{"id":"12","type":"table","props":{"textColor":"default"},"content":{"type":"tableContent","columnWidths":[null,null],"rows":[{"cells":[{"type":"tableCell","content":[{"type":"text","text":"Table Cell","styles":{}}],"props":{"colspan":1,"rowspan":1,"backgroundColor":"default","textColor":"default","textAlignment":"left"}},{"type":"tableCell","content":[{"type":"text","text":"Table Cell","styles":{}}],"props":{"colspan":1,"rowspan":1,"backgroundColor":"default","textColor":"default","textAlignment":"left"}}]},{"cells":[{"type":"tableCell","content":[{"type":"text","text":"Table Cell","styles":{}}],"props":{"colspan":1,"rowspan":1,"backgroundColor":"default","textColor":"default","textAlignment":"left"}},{"type":"tableCell","content":[{"type":"text","text":"Table Cell","styles":{}}],"props":{"colspan":1,"rowspan":1,"backgroundColor":"default","textColor":"default","textAlignment":"left"}}]}]},"children":[]}]} diff --git a/tests/src/unit/core/selection/incrementSelection/__snapshots__/start/basic.txt b/tests/src/unit/core/selection/incrementSelection/__snapshots__/start/basic.txt index 1c22aab9ac..974cc363b7 100644 --- a/tests/src/unit/core/selection/incrementSelection/__snapshots__/start/basic.txt +++ b/tests/src/unit/core/selection/incrementSelection/__snapshots__/start/basic.txt @@ -1,185 +1,185 @@ -{"_meta":{"startPos":0,"endPos":276},"blocks":[{"id":"1","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"Heading 1","styles":{}}],"children":[{"id":"2","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},{"id":"3","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},{"id":"4","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]}]},{"id":"5","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"Heading 2","styles":{}}],"children":[{"id":"6","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},{"id":"7","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},{"id":"8","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]}]},{"id":"9","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"Bold","styles":{"bold":true}},{"type":"text","text":"Italic","styles":{"italic":true}},{"type":"text","text":"Regular","styles":{}}],"children":[{"id":"10","type":"image","props":{"backgroundColor":"default","textAlignment":"left","name":"","url":"https://ralfvanveen.com/wp-content/uploads/2021/06/Placeholder-_-Glossary.svg","caption":"","showPreview":true},"children":[{"id":"11","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph","styles":{}}],"children":[]}]}]},{"id":"12","type":"table","props":{"textColor":"default"},"content":{"type":"tableContent","columnWidths":[null,null],"rows":[{"cells":[{"type":"tableCell","content":[{"type":"text","text":"Table Cell","styles":{}}],"props":{"colspan":1,"rowspan":1,"backgroundColor":"default","textColor":"default","textAlignment":"left"}},{"type":"tableCell","content":[{"type":"text","text":"Table Cell","styles":{}}],"props":{"colspan":1,"rowspan":1,"backgroundColor":"default","textColor":"default","textAlignment":"left"}}]},{"cells":[{"type":"tableCell","content":[{"type":"text","text":"Table Cell","styles":{}}],"props":{"colspan":1,"rowspan":1,"backgroundColor":"default","textColor":"default","textAlignment":"left"}},{"type":"tableCell","content":[{"type":"text","text":"Table Cell","styles":{}}],"props":{"colspan":1,"rowspan":1,"backgroundColor":"default","textColor":"default","textAlignment":"left"}}]}]},"children":[]}]} -{"_meta":{"startPos":0,"endPos":276},"blocks":[{"id":"1","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"Heading 1","styles":{}}],"children":[{"id":"2","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},{"id":"3","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},{"id":"4","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]}]},{"id":"5","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"Heading 2","styles":{}}],"children":[{"id":"6","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},{"id":"7","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},{"id":"8","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]}]},{"id":"9","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"Bold","styles":{"bold":true}},{"type":"text","text":"Italic","styles":{"italic":true}},{"type":"text","text":"Regular","styles":{}}],"children":[{"id":"10","type":"image","props":{"backgroundColor":"default","textAlignment":"left","name":"","url":"https://ralfvanveen.com/wp-content/uploads/2021/06/Placeholder-_-Glossary.svg","caption":"","showPreview":true},"children":[{"id":"11","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph","styles":{}}],"children":[]}]}]},{"id":"12","type":"table","props":{"textColor":"default"},"content":{"type":"tableContent","columnWidths":[null,null],"rows":[{"cells":[{"type":"tableCell","content":[{"type":"text","text":"Table Cell","styles":{}}],"props":{"colspan":1,"rowspan":1,"backgroundColor":"default","textColor":"default","textAlignment":"left"}},{"type":"tableCell","content":[{"type":"text","text":"Table Cell","styles":{}}],"props":{"colspan":1,"rowspan":1,"backgroundColor":"default","textColor":"default","textAlignment":"left"}}]},{"cells":[{"type":"tableCell","content":[{"type":"text","text":"Table Cell","styles":{}}],"props":{"colspan":1,"rowspan":1,"backgroundColor":"default","textColor":"default","textAlignment":"left"}},{"type":"tableCell","content":[{"type":"text","text":"Table Cell","styles":{}}],"props":{"colspan":1,"rowspan":1,"backgroundColor":"default","textColor":"default","textAlignment":"left"}}]}]},"children":[]}]} -{"_meta":{"startPos":0,"endPos":276},"blocks":[{"id":"1","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"Heading 1","styles":{}}],"children":[{"id":"2","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},{"id":"3","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},{"id":"4","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]}]},{"id":"5","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"Heading 2","styles":{}}],"children":[{"id":"6","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},{"id":"7","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},{"id":"8","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]}]},{"id":"9","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"Bold","styles":{"bold":true}},{"type":"text","text":"Italic","styles":{"italic":true}},{"type":"text","text":"Regular","styles":{}}],"children":[{"id":"10","type":"image","props":{"backgroundColor":"default","textAlignment":"left","name":"","url":"https://ralfvanveen.com/wp-content/uploads/2021/06/Placeholder-_-Glossary.svg","caption":"","showPreview":true},"children":[{"id":"11","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph","styles":{}}],"children":[]}]}]},{"id":"12","type":"table","props":{"textColor":"default"},"content":{"type":"tableContent","columnWidths":[null,null],"rows":[{"cells":[{"type":"tableCell","content":[{"type":"text","text":"Table Cell","styles":{}}],"props":{"colspan":1,"rowspan":1,"backgroundColor":"default","textColor":"default","textAlignment":"left"}},{"type":"tableCell","content":[{"type":"text","text":"Table Cell","styles":{}}],"props":{"colspan":1,"rowspan":1,"backgroundColor":"default","textColor":"default","textAlignment":"left"}}]},{"cells":[{"type":"tableCell","content":[{"type":"text","text":"Table Cell","styles":{}}],"props":{"colspan":1,"rowspan":1,"backgroundColor":"default","textColor":"default","textAlignment":"left"}},{"type":"tableCell","content":[{"type":"text","text":"Table Cell","styles":{}}],"props":{"colspan":1,"rowspan":1,"backgroundColor":"default","textColor":"default","textAlignment":"left"}}]}]},"children":[]}]} -{"_meta":{"startPos":0,"endPos":276},"blocks":[{"id":"1","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"Heading 1","styles":{}}],"children":[{"id":"2","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},{"id":"3","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},{"id":"4","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]}]},{"id":"5","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"Heading 2","styles":{}}],"children":[{"id":"6","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},{"id":"7","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},{"id":"8","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]}]},{"id":"9","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"Bold","styles":{"bold":true}},{"type":"text","text":"Italic","styles":{"italic":true}},{"type":"text","text":"Regular","styles":{}}],"children":[{"id":"10","type":"image","props":{"backgroundColor":"default","textAlignment":"left","name":"","url":"https://ralfvanveen.com/wp-content/uploads/2021/06/Placeholder-_-Glossary.svg","caption":"","showPreview":true},"children":[{"id":"11","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph","styles":{}}],"children":[]}]}]},{"id":"12","type":"table","props":{"textColor":"default"},"content":{"type":"tableContent","columnWidths":[null,null],"rows":[{"cells":[{"type":"tableCell","content":[{"type":"text","text":"Table Cell","styles":{}}],"props":{"colspan":1,"rowspan":1,"backgroundColor":"default","textColor":"default","textAlignment":"left"}},{"type":"tableCell","content":[{"type":"text","text":"Table Cell","styles":{}}],"props":{"colspan":1,"rowspan":1,"backgroundColor":"default","textColor":"default","textAlignment":"left"}}]},{"cells":[{"type":"tableCell","content":[{"type":"text","text":"Table Cell","styles":{}}],"props":{"colspan":1,"rowspan":1,"backgroundColor":"default","textColor":"default","textAlignment":"left"}},{"type":"tableCell","content":[{"type":"text","text":"Table Cell","styles":{}}],"props":{"colspan":1,"rowspan":1,"backgroundColor":"default","textColor":"default","textAlignment":"left"}}]}]},"children":[]}]} -{"_meta":{"startPos":4,"endPos":276},"blocks":[{"id":"1","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"eading 1","styles":{}}],"children":[{"id":"2","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},{"id":"3","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},{"id":"4","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]}]},{"id":"5","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"Heading 2","styles":{}}],"children":[{"id":"6","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},{"id":"7","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},{"id":"8","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]}]},{"id":"9","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"Bold","styles":{"bold":true}},{"type":"text","text":"Italic","styles":{"italic":true}},{"type":"text","text":"Regular","styles":{}}],"children":[{"id":"10","type":"image","props":{"backgroundColor":"default","textAlignment":"left","name":"","url":"https://ralfvanveen.com/wp-content/uploads/2021/06/Placeholder-_-Glossary.svg","caption":"","showPreview":true},"children":[{"id":"11","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph","styles":{}}],"children":[]}]}]},{"id":"12","type":"table","props":{"textColor":"default"},"content":{"type":"tableContent","columnWidths":[null,null],"rows":[{"cells":[{"type":"tableCell","content":[{"type":"text","text":"Table Cell","styles":{}}],"props":{"colspan":1,"rowspan":1,"backgroundColor":"default","textColor":"default","textAlignment":"left"}},{"type":"tableCell","content":[{"type":"text","text":"Table Cell","styles":{}}],"props":{"colspan":1,"rowspan":1,"backgroundColor":"default","textColor":"default","textAlignment":"left"}}]},{"cells":[{"type":"tableCell","content":[{"type":"text","text":"Table Cell","styles":{}}],"props":{"colspan":1,"rowspan":1,"backgroundColor":"default","textColor":"default","textAlignment":"left"}},{"type":"tableCell","content":[{"type":"text","text":"Table Cell","styles":{}}],"props":{"colspan":1,"rowspan":1,"backgroundColor":"default","textColor":"default","textAlignment":"left"}}]}]},"children":[]}],"blockCutAtStart":"1"} -{"_meta":{"startPos":5,"endPos":276},"blocks":[{"id":"1","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"ading 1","styles":{}}],"children":[{"id":"2","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},{"id":"3","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},{"id":"4","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]}]},{"id":"5","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"Heading 2","styles":{}}],"children":[{"id":"6","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},{"id":"7","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},{"id":"8","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]}]},{"id":"9","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"Bold","styles":{"bold":true}},{"type":"text","text":"Italic","styles":{"italic":true}},{"type":"text","text":"Regular","styles":{}}],"children":[{"id":"10","type":"image","props":{"backgroundColor":"default","textAlignment":"left","name":"","url":"https://ralfvanveen.com/wp-content/uploads/2021/06/Placeholder-_-Glossary.svg","caption":"","showPreview":true},"children":[{"id":"11","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph","styles":{}}],"children":[]}]}]},{"id":"12","type":"table","props":{"textColor":"default"},"content":{"type":"tableContent","columnWidths":[null,null],"rows":[{"cells":[{"type":"tableCell","content":[{"type":"text","text":"Table Cell","styles":{}}],"props":{"colspan":1,"rowspan":1,"backgroundColor":"default","textColor":"default","textAlignment":"left"}},{"type":"tableCell","content":[{"type":"text","text":"Table Cell","styles":{}}],"props":{"colspan":1,"rowspan":1,"backgroundColor":"default","textColor":"default","textAlignment":"left"}}]},{"cells":[{"type":"tableCell","content":[{"type":"text","text":"Table Cell","styles":{}}],"props":{"colspan":1,"rowspan":1,"backgroundColor":"default","textColor":"default","textAlignment":"left"}},{"type":"tableCell","content":[{"type":"text","text":"Table Cell","styles":{}}],"props":{"colspan":1,"rowspan":1,"backgroundColor":"default","textColor":"default","textAlignment":"left"}}]}]},"children":[]}],"blockCutAtStart":"1"} -{"_meta":{"startPos":6,"endPos":276},"blocks":[{"id":"1","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"ding 1","styles":{}}],"children":[{"id":"2","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},{"id":"3","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},{"id":"4","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]}]},{"id":"5","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"Heading 2","styles":{}}],"children":[{"id":"6","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},{"id":"7","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},{"id":"8","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]}]},{"id":"9","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"Bold","styles":{"bold":true}},{"type":"text","text":"Italic","styles":{"italic":true}},{"type":"text","text":"Regular","styles":{}}],"children":[{"id":"10","type":"image","props":{"backgroundColor":"default","textAlignment":"left","name":"","url":"https://ralfvanveen.com/wp-content/uploads/2021/06/Placeholder-_-Glossary.svg","caption":"","showPreview":true},"children":[{"id":"11","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph","styles":{}}],"children":[]}]}]},{"id":"12","type":"table","props":{"textColor":"default"},"content":{"type":"tableContent","columnWidths":[null,null],"rows":[{"cells":[{"type":"tableCell","content":[{"type":"text","text":"Table Cell","styles":{}}],"props":{"colspan":1,"rowspan":1,"backgroundColor":"default","textColor":"default","textAlignment":"left"}},{"type":"tableCell","content":[{"type":"text","text":"Table Cell","styles":{}}],"props":{"colspan":1,"rowspan":1,"backgroundColor":"default","textColor":"default","textAlignment":"left"}}]},{"cells":[{"type":"tableCell","content":[{"type":"text","text":"Table Cell","styles":{}}],"props":{"colspan":1,"rowspan":1,"backgroundColor":"default","textColor":"default","textAlignment":"left"}},{"type":"tableCell","content":[{"type":"text","text":"Table Cell","styles":{}}],"props":{"colspan":1,"rowspan":1,"backgroundColor":"default","textColor":"default","textAlignment":"left"}}]}]},"children":[]}],"blockCutAtStart":"1"} -{"_meta":{"startPos":7,"endPos":276},"blocks":[{"id":"1","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"ing 1","styles":{}}],"children":[{"id":"2","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},{"id":"3","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},{"id":"4","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]}]},{"id":"5","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"Heading 2","styles":{}}],"children":[{"id":"6","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},{"id":"7","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},{"id":"8","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]}]},{"id":"9","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"Bold","styles":{"bold":true}},{"type":"text","text":"Italic","styles":{"italic":true}},{"type":"text","text":"Regular","styles":{}}],"children":[{"id":"10","type":"image","props":{"backgroundColor":"default","textAlignment":"left","name":"","url":"https://ralfvanveen.com/wp-content/uploads/2021/06/Placeholder-_-Glossary.svg","caption":"","showPreview":true},"children":[{"id":"11","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph","styles":{}}],"children":[]}]}]},{"id":"12","type":"table","props":{"textColor":"default"},"content":{"type":"tableContent","columnWidths":[null,null],"rows":[{"cells":[{"type":"tableCell","content":[{"type":"text","text":"Table Cell","styles":{}}],"props":{"colspan":1,"rowspan":1,"backgroundColor":"default","textColor":"default","textAlignment":"left"}},{"type":"tableCell","content":[{"type":"text","text":"Table Cell","styles":{}}],"props":{"colspan":1,"rowspan":1,"backgroundColor":"default","textColor":"default","textAlignment":"left"}}]},{"cells":[{"type":"tableCell","content":[{"type":"text","text":"Table Cell","styles":{}}],"props":{"colspan":1,"rowspan":1,"backgroundColor":"default","textColor":"default","textAlignment":"left"}},{"type":"tableCell","content":[{"type":"text","text":"Table Cell","styles":{}}],"props":{"colspan":1,"rowspan":1,"backgroundColor":"default","textColor":"default","textAlignment":"left"}}]}]},"children":[]}],"blockCutAtStart":"1"} -{"_meta":{"startPos":8,"endPos":276},"blocks":[{"id":"1","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"ng 1","styles":{}}],"children":[{"id":"2","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},{"id":"3","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},{"id":"4","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]}]},{"id":"5","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"Heading 2","styles":{}}],"children":[{"id":"6","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},{"id":"7","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},{"id":"8","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]}]},{"id":"9","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"Bold","styles":{"bold":true}},{"type":"text","text":"Italic","styles":{"italic":true}},{"type":"text","text":"Regular","styles":{}}],"children":[{"id":"10","type":"image","props":{"backgroundColor":"default","textAlignment":"left","name":"","url":"https://ralfvanveen.com/wp-content/uploads/2021/06/Placeholder-_-Glossary.svg","caption":"","showPreview":true},"children":[{"id":"11","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph","styles":{}}],"children":[]}]}]},{"id":"12","type":"table","props":{"textColor":"default"},"content":{"type":"tableContent","columnWidths":[null,null],"rows":[{"cells":[{"type":"tableCell","content":[{"type":"text","text":"Table Cell","styles":{}}],"props":{"colspan":1,"rowspan":1,"backgroundColor":"default","textColor":"default","textAlignment":"left"}},{"type":"tableCell","content":[{"type":"text","text":"Table Cell","styles":{}}],"props":{"colspan":1,"rowspan":1,"backgroundColor":"default","textColor":"default","textAlignment":"left"}}]},{"cells":[{"type":"tableCell","content":[{"type":"text","text":"Table Cell","styles":{}}],"props":{"colspan":1,"rowspan":1,"backgroundColor":"default","textColor":"default","textAlignment":"left"}},{"type":"tableCell","content":[{"type":"text","text":"Table Cell","styles":{}}],"props":{"colspan":1,"rowspan":1,"backgroundColor":"default","textColor":"default","textAlignment":"left"}}]}]},"children":[]}],"blockCutAtStart":"1"} -{"_meta":{"startPos":9,"endPos":276},"blocks":[{"id":"1","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"g 1","styles":{}}],"children":[{"id":"2","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},{"id":"3","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},{"id":"4","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]}]},{"id":"5","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"Heading 2","styles":{}}],"children":[{"id":"6","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},{"id":"7","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},{"id":"8","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]}]},{"id":"9","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"Bold","styles":{"bold":true}},{"type":"text","text":"Italic","styles":{"italic":true}},{"type":"text","text":"Regular","styles":{}}],"children":[{"id":"10","type":"image","props":{"backgroundColor":"default","textAlignment":"left","name":"","url":"https://ralfvanveen.com/wp-content/uploads/2021/06/Placeholder-_-Glossary.svg","caption":"","showPreview":true},"children":[{"id":"11","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph","styles":{}}],"children":[]}]}]},{"id":"12","type":"table","props":{"textColor":"default"},"content":{"type":"tableContent","columnWidths":[null,null],"rows":[{"cells":[{"type":"tableCell","content":[{"type":"text","text":"Table Cell","styles":{}}],"props":{"colspan":1,"rowspan":1,"backgroundColor":"default","textColor":"default","textAlignment":"left"}},{"type":"tableCell","content":[{"type":"text","text":"Table Cell","styles":{}}],"props":{"colspan":1,"rowspan":1,"backgroundColor":"default","textColor":"default","textAlignment":"left"}}]},{"cells":[{"type":"tableCell","content":[{"type":"text","text":"Table Cell","styles":{}}],"props":{"colspan":1,"rowspan":1,"backgroundColor":"default","textColor":"default","textAlignment":"left"}},{"type":"tableCell","content":[{"type":"text","text":"Table Cell","styles":{}}],"props":{"colspan":1,"rowspan":1,"backgroundColor":"default","textColor":"default","textAlignment":"left"}}]}]},"children":[]}],"blockCutAtStart":"1"} -{"_meta":{"startPos":10,"endPos":276},"blocks":[{"id":"1","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":" 1","styles":{}}],"children":[{"id":"2","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},{"id":"3","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},{"id":"4","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]}]},{"id":"5","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"Heading 2","styles":{}}],"children":[{"id":"6","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},{"id":"7","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},{"id":"8","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]}]},{"id":"9","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"Bold","styles":{"bold":true}},{"type":"text","text":"Italic","styles":{"italic":true}},{"type":"text","text":"Regular","styles":{}}],"children":[{"id":"10","type":"image","props":{"backgroundColor":"default","textAlignment":"left","name":"","url":"https://ralfvanveen.com/wp-content/uploads/2021/06/Placeholder-_-Glossary.svg","caption":"","showPreview":true},"children":[{"id":"11","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph","styles":{}}],"children":[]}]}]},{"id":"12","type":"table","props":{"textColor":"default"},"content":{"type":"tableContent","columnWidths":[null,null],"rows":[{"cells":[{"type":"tableCell","content":[{"type":"text","text":"Table Cell","styles":{}}],"props":{"colspan":1,"rowspan":1,"backgroundColor":"default","textColor":"default","textAlignment":"left"}},{"type":"tableCell","content":[{"type":"text","text":"Table Cell","styles":{}}],"props":{"colspan":1,"rowspan":1,"backgroundColor":"default","textColor":"default","textAlignment":"left"}}]},{"cells":[{"type":"tableCell","content":[{"type":"text","text":"Table Cell","styles":{}}],"props":{"colspan":1,"rowspan":1,"backgroundColor":"default","textColor":"default","textAlignment":"left"}},{"type":"tableCell","content":[{"type":"text","text":"Table Cell","styles":{}}],"props":{"colspan":1,"rowspan":1,"backgroundColor":"default","textColor":"default","textAlignment":"left"}}]}]},"children":[]}],"blockCutAtStart":"1"} -{"_meta":{"startPos":11,"endPos":276},"blocks":[{"id":"1","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"1","styles":{}}],"children":[{"id":"2","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},{"id":"3","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},{"id":"4","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]}]},{"id":"5","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"Heading 2","styles":{}}],"children":[{"id":"6","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},{"id":"7","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},{"id":"8","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]}]},{"id":"9","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"Bold","styles":{"bold":true}},{"type":"text","text":"Italic","styles":{"italic":true}},{"type":"text","text":"Regular","styles":{}}],"children":[{"id":"10","type":"image","props":{"backgroundColor":"default","textAlignment":"left","name":"","url":"https://ralfvanveen.com/wp-content/uploads/2021/06/Placeholder-_-Glossary.svg","caption":"","showPreview":true},"children":[{"id":"11","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph","styles":{}}],"children":[]}]}]},{"id":"12","type":"table","props":{"textColor":"default"},"content":{"type":"tableContent","columnWidths":[null,null],"rows":[{"cells":[{"type":"tableCell","content":[{"type":"text","text":"Table Cell","styles":{}}],"props":{"colspan":1,"rowspan":1,"backgroundColor":"default","textColor":"default","textAlignment":"left"}},{"type":"tableCell","content":[{"type":"text","text":"Table Cell","styles":{}}],"props":{"colspan":1,"rowspan":1,"backgroundColor":"default","textColor":"default","textAlignment":"left"}}]},{"cells":[{"type":"tableCell","content":[{"type":"text","text":"Table Cell","styles":{}}],"props":{"colspan":1,"rowspan":1,"backgroundColor":"default","textColor":"default","textAlignment":"left"}},{"type":"tableCell","content":[{"type":"text","text":"Table Cell","styles":{}}],"props":{"colspan":1,"rowspan":1,"backgroundColor":"default","textColor":"default","textAlignment":"left"}}]}]},"children":[]}],"blockCutAtStart":"1"} -{"_meta":{"startPos":13,"endPos":276},"blocks":[{"id":"2","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},{"id":"3","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},{"id":"4","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]},{"id":"5","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"Heading 2","styles":{}}],"children":[{"id":"6","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},{"id":"7","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},{"id":"8","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]}]},{"id":"9","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"Bold","styles":{"bold":true}},{"type":"text","text":"Italic","styles":{"italic":true}},{"type":"text","text":"Regular","styles":{}}],"children":[{"id":"10","type":"image","props":{"backgroundColor":"default","textAlignment":"left","name":"","url":"https://ralfvanveen.com/wp-content/uploads/2021/06/Placeholder-_-Glossary.svg","caption":"","showPreview":true},"children":[{"id":"11","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph","styles":{}}],"children":[]}]}]},{"id":"12","type":"table","props":{"textColor":"default"},"content":{"type":"tableContent","columnWidths":[null,null],"rows":[{"cells":[{"type":"tableCell","content":[{"type":"text","text":"Table Cell","styles":{}}],"props":{"colspan":1,"rowspan":1,"backgroundColor":"default","textColor":"default","textAlignment":"left"}},{"type":"tableCell","content":[{"type":"text","text":"Table Cell","styles":{}}],"props":{"colspan":1,"rowspan":1,"backgroundColor":"default","textColor":"default","textAlignment":"left"}}]},{"cells":[{"type":"tableCell","content":[{"type":"text","text":"Table Cell","styles":{}}],"props":{"colspan":1,"rowspan":1,"backgroundColor":"default","textColor":"default","textAlignment":"left"}},{"type":"tableCell","content":[{"type":"text","text":"Table Cell","styles":{}}],"props":{"colspan":1,"rowspan":1,"backgroundColor":"default","textColor":"default","textAlignment":"left"}}]}]},"children":[]}]} -{"_meta":{"startPos":13,"endPos":276},"blocks":[{"id":"2","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},{"id":"3","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},{"id":"4","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]},{"id":"5","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"Heading 2","styles":{}}],"children":[{"id":"6","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},{"id":"7","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},{"id":"8","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]}]},{"id":"9","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"Bold","styles":{"bold":true}},{"type":"text","text":"Italic","styles":{"italic":true}},{"type":"text","text":"Regular","styles":{}}],"children":[{"id":"10","type":"image","props":{"backgroundColor":"default","textAlignment":"left","name":"","url":"https://ralfvanveen.com/wp-content/uploads/2021/06/Placeholder-_-Glossary.svg","caption":"","showPreview":true},"children":[{"id":"11","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph","styles":{}}],"children":[]}]}]},{"id":"12","type":"table","props":{"textColor":"default"},"content":{"type":"tableContent","columnWidths":[null,null],"rows":[{"cells":[{"type":"tableCell","content":[{"type":"text","text":"Table Cell","styles":{}}],"props":{"colspan":1,"rowspan":1,"backgroundColor":"default","textColor":"default","textAlignment":"left"}},{"type":"tableCell","content":[{"type":"text","text":"Table Cell","styles":{}}],"props":{"colspan":1,"rowspan":1,"backgroundColor":"default","textColor":"default","textAlignment":"left"}}]},{"cells":[{"type":"tableCell","content":[{"type":"text","text":"Table Cell","styles":{}}],"props":{"colspan":1,"rowspan":1,"backgroundColor":"default","textColor":"default","textAlignment":"left"}},{"type":"tableCell","content":[{"type":"text","text":"Table Cell","styles":{}}],"props":{"colspan":1,"rowspan":1,"backgroundColor":"default","textColor":"default","textAlignment":"left"}}]}]},"children":[]}]} -{"_meta":{"startPos":13,"endPos":276},"blocks":[{"id":"2","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},{"id":"3","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},{"id":"4","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]},{"id":"5","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"Heading 2","styles":{}}],"children":[{"id":"6","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},{"id":"7","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},{"id":"8","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]}]},{"id":"9","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"Bold","styles":{"bold":true}},{"type":"text","text":"Italic","styles":{"italic":true}},{"type":"text","text":"Regular","styles":{}}],"children":[{"id":"10","type":"image","props":{"backgroundColor":"default","textAlignment":"left","name":"","url":"https://ralfvanveen.com/wp-content/uploads/2021/06/Placeholder-_-Glossary.svg","caption":"","showPreview":true},"children":[{"id":"11","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph","styles":{}}],"children":[]}]}]},{"id":"12","type":"table","props":{"textColor":"default"},"content":{"type":"tableContent","columnWidths":[null,null],"rows":[{"cells":[{"type":"tableCell","content":[{"type":"text","text":"Table Cell","styles":{}}],"props":{"colspan":1,"rowspan":1,"backgroundColor":"default","textColor":"default","textAlignment":"left"}},{"type":"tableCell","content":[{"type":"text","text":"Table Cell","styles":{}}],"props":{"colspan":1,"rowspan":1,"backgroundColor":"default","textColor":"default","textAlignment":"left"}}]},{"cells":[{"type":"tableCell","content":[{"type":"text","text":"Table Cell","styles":{}}],"props":{"colspan":1,"rowspan":1,"backgroundColor":"default","textColor":"default","textAlignment":"left"}},{"type":"tableCell","content":[{"type":"text","text":"Table Cell","styles":{}}],"props":{"colspan":1,"rowspan":1,"backgroundColor":"default","textColor":"default","textAlignment":"left"}}]}]},"children":[]}]} -{"_meta":{"startPos":13,"endPos":276},"blocks":[{"id":"2","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},{"id":"3","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},{"id":"4","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]},{"id":"5","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"Heading 2","styles":{}}],"children":[{"id":"6","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},{"id":"7","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},{"id":"8","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]}]},{"id":"9","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"Bold","styles":{"bold":true}},{"type":"text","text":"Italic","styles":{"italic":true}},{"type":"text","text":"Regular","styles":{}}],"children":[{"id":"10","type":"image","props":{"backgroundColor":"default","textAlignment":"left","name":"","url":"https://ralfvanveen.com/wp-content/uploads/2021/06/Placeholder-_-Glossary.svg","caption":"","showPreview":true},"children":[{"id":"11","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph","styles":{}}],"children":[]}]}]},{"id":"12","type":"table","props":{"textColor":"default"},"content":{"type":"tableContent","columnWidths":[null,null],"rows":[{"cells":[{"type":"tableCell","content":[{"type":"text","text":"Table Cell","styles":{}}],"props":{"colspan":1,"rowspan":1,"backgroundColor":"default","textColor":"default","textAlignment":"left"}},{"type":"tableCell","content":[{"type":"text","text":"Table Cell","styles":{}}],"props":{"colspan":1,"rowspan":1,"backgroundColor":"default","textColor":"default","textAlignment":"left"}}]},{"cells":[{"type":"tableCell","content":[{"type":"text","text":"Table Cell","styles":{}}],"props":{"colspan":1,"rowspan":1,"backgroundColor":"default","textColor":"default","textAlignment":"left"}},{"type":"tableCell","content":[{"type":"text","text":"Table Cell","styles":{}}],"props":{"colspan":1,"rowspan":1,"backgroundColor":"default","textColor":"default","textAlignment":"left"}}]}]},"children":[]}]} -{"_meta":{"startPos":13,"endPos":276},"blocks":[{"id":"2","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},{"id":"3","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},{"id":"4","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]},{"id":"5","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"Heading 2","styles":{}}],"children":[{"id":"6","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},{"id":"7","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},{"id":"8","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]}]},{"id":"9","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"Bold","styles":{"bold":true}},{"type":"text","text":"Italic","styles":{"italic":true}},{"type":"text","text":"Regular","styles":{}}],"children":[{"id":"10","type":"image","props":{"backgroundColor":"default","textAlignment":"left","name":"","url":"https://ralfvanveen.com/wp-content/uploads/2021/06/Placeholder-_-Glossary.svg","caption":"","showPreview":true},"children":[{"id":"11","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph","styles":{}}],"children":[]}]}]},{"id":"12","type":"table","props":{"textColor":"default"},"content":{"type":"tableContent","columnWidths":[null,null],"rows":[{"cells":[{"type":"tableCell","content":[{"type":"text","text":"Table Cell","styles":{}}],"props":{"colspan":1,"rowspan":1,"backgroundColor":"default","textColor":"default","textAlignment":"left"}},{"type":"tableCell","content":[{"type":"text","text":"Table Cell","styles":{}}],"props":{"colspan":1,"rowspan":1,"backgroundColor":"default","textColor":"default","textAlignment":"left"}}]},{"cells":[{"type":"tableCell","content":[{"type":"text","text":"Table Cell","styles":{}}],"props":{"colspan":1,"rowspan":1,"backgroundColor":"default","textColor":"default","textAlignment":"left"}},{"type":"tableCell","content":[{"type":"text","text":"Table Cell","styles":{}}],"props":{"colspan":1,"rowspan":1,"backgroundColor":"default","textColor":"default","textAlignment":"left"}}]}]},"children":[]}]} -{"_meta":{"startPos":17,"endPos":276},"blocks":[{"id":"2","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"ested Paragraph 1","styles":{}}],"children":[]},{"id":"3","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},{"id":"4","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]},{"id":"5","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"Heading 2","styles":{}}],"children":[{"id":"6","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},{"id":"7","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},{"id":"8","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]}]},{"id":"9","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"Bold","styles":{"bold":true}},{"type":"text","text":"Italic","styles":{"italic":true}},{"type":"text","text":"Regular","styles":{}}],"children":[{"id":"10","type":"image","props":{"backgroundColor":"default","textAlignment":"left","name":"","url":"https://ralfvanveen.com/wp-content/uploads/2021/06/Placeholder-_-Glossary.svg","caption":"","showPreview":true},"children":[{"id":"11","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph","styles":{}}],"children":[]}]}]},{"id":"12","type":"table","props":{"textColor":"default"},"content":{"type":"tableContent","columnWidths":[null,null],"rows":[{"cells":[{"type":"tableCell","content":[{"type":"text","text":"Table Cell","styles":{}}],"props":{"colspan":1,"rowspan":1,"backgroundColor":"default","textColor":"default","textAlignment":"left"}},{"type":"tableCell","content":[{"type":"text","text":"Table Cell","styles":{}}],"props":{"colspan":1,"rowspan":1,"backgroundColor":"default","textColor":"default","textAlignment":"left"}}]},{"cells":[{"type":"tableCell","content":[{"type":"text","text":"Table Cell","styles":{}}],"props":{"colspan":1,"rowspan":1,"backgroundColor":"default","textColor":"default","textAlignment":"left"}},{"type":"tableCell","content":[{"type":"text","text":"Table Cell","styles":{}}],"props":{"colspan":1,"rowspan":1,"backgroundColor":"default","textColor":"default","textAlignment":"left"}}]}]},"children":[]}],"blockCutAtStart":"2"} -{"_meta":{"startPos":18,"endPos":276},"blocks":[{"id":"2","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"sted Paragraph 1","styles":{}}],"children":[]},{"id":"3","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},{"id":"4","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]},{"id":"5","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"Heading 2","styles":{}}],"children":[{"id":"6","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},{"id":"7","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},{"id":"8","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]}]},{"id":"9","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"Bold","styles":{"bold":true}},{"type":"text","text":"Italic","styles":{"italic":true}},{"type":"text","text":"Regular","styles":{}}],"children":[{"id":"10","type":"image","props":{"backgroundColor":"default","textAlignment":"left","name":"","url":"https://ralfvanveen.com/wp-content/uploads/2021/06/Placeholder-_-Glossary.svg","caption":"","showPreview":true},"children":[{"id":"11","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph","styles":{}}],"children":[]}]}]},{"id":"12","type":"table","props":{"textColor":"default"},"content":{"type":"tableContent","columnWidths":[null,null],"rows":[{"cells":[{"type":"tableCell","content":[{"type":"text","text":"Table Cell","styles":{}}],"props":{"colspan":1,"rowspan":1,"backgroundColor":"default","textColor":"default","textAlignment":"left"}},{"type":"tableCell","content":[{"type":"text","text":"Table Cell","styles":{}}],"props":{"colspan":1,"rowspan":1,"backgroundColor":"default","textColor":"default","textAlignment":"left"}}]},{"cells":[{"type":"tableCell","content":[{"type":"text","text":"Table Cell","styles":{}}],"props":{"colspan":1,"rowspan":1,"backgroundColor":"default","textColor":"default","textAlignment":"left"}},{"type":"tableCell","content":[{"type":"text","text":"Table Cell","styles":{}}],"props":{"colspan":1,"rowspan":1,"backgroundColor":"default","textColor":"default","textAlignment":"left"}}]}]},"children":[]}],"blockCutAtStart":"2"} -{"_meta":{"startPos":19,"endPos":276},"blocks":[{"id":"2","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"ted Paragraph 1","styles":{}}],"children":[]},{"id":"3","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},{"id":"4","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]},{"id":"5","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"Heading 2","styles":{}}],"children":[{"id":"6","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},{"id":"7","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},{"id":"8","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]}]},{"id":"9","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"Bold","styles":{"bold":true}},{"type":"text","text":"Italic","styles":{"italic":true}},{"type":"text","text":"Regular","styles":{}}],"children":[{"id":"10","type":"image","props":{"backgroundColor":"default","textAlignment":"left","name":"","url":"https://ralfvanveen.com/wp-content/uploads/2021/06/Placeholder-_-Glossary.svg","caption":"","showPreview":true},"children":[{"id":"11","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph","styles":{}}],"children":[]}]}]},{"id":"12","type":"table","props":{"textColor":"default"},"content":{"type":"tableContent","columnWidths":[null,null],"rows":[{"cells":[{"type":"tableCell","content":[{"type":"text","text":"Table Cell","styles":{}}],"props":{"colspan":1,"rowspan":1,"backgroundColor":"default","textColor":"default","textAlignment":"left"}},{"type":"tableCell","content":[{"type":"text","text":"Table Cell","styles":{}}],"props":{"colspan":1,"rowspan":1,"backgroundColor":"default","textColor":"default","textAlignment":"left"}}]},{"cells":[{"type":"tableCell","content":[{"type":"text","text":"Table Cell","styles":{}}],"props":{"colspan":1,"rowspan":1,"backgroundColor":"default","textColor":"default","textAlignment":"left"}},{"type":"tableCell","content":[{"type":"text","text":"Table Cell","styles":{}}],"props":{"colspan":1,"rowspan":1,"backgroundColor":"default","textColor":"default","textAlignment":"left"}}]}]},"children":[]}],"blockCutAtStart":"2"} -{"_meta":{"startPos":20,"endPos":276},"blocks":[{"id":"2","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"ed Paragraph 1","styles":{}}],"children":[]},{"id":"3","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},{"id":"4","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]},{"id":"5","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"Heading 2","styles":{}}],"children":[{"id":"6","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},{"id":"7","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},{"id":"8","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]}]},{"id":"9","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"Bold","styles":{"bold":true}},{"type":"text","text":"Italic","styles":{"italic":true}},{"type":"text","text":"Regular","styles":{}}],"children":[{"id":"10","type":"image","props":{"backgroundColor":"default","textAlignment":"left","name":"","url":"https://ralfvanveen.com/wp-content/uploads/2021/06/Placeholder-_-Glossary.svg","caption":"","showPreview":true},"children":[{"id":"11","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph","styles":{}}],"children":[]}]}]},{"id":"12","type":"table","props":{"textColor":"default"},"content":{"type":"tableContent","columnWidths":[null,null],"rows":[{"cells":[{"type":"tableCell","content":[{"type":"text","text":"Table Cell","styles":{}}],"props":{"colspan":1,"rowspan":1,"backgroundColor":"default","textColor":"default","textAlignment":"left"}},{"type":"tableCell","content":[{"type":"text","text":"Table Cell","styles":{}}],"props":{"colspan":1,"rowspan":1,"backgroundColor":"default","textColor":"default","textAlignment":"left"}}]},{"cells":[{"type":"tableCell","content":[{"type":"text","text":"Table Cell","styles":{}}],"props":{"colspan":1,"rowspan":1,"backgroundColor":"default","textColor":"default","textAlignment":"left"}},{"type":"tableCell","content":[{"type":"text","text":"Table Cell","styles":{}}],"props":{"colspan":1,"rowspan":1,"backgroundColor":"default","textColor":"default","textAlignment":"left"}}]}]},"children":[]}],"blockCutAtStart":"2"} -{"_meta":{"startPos":21,"endPos":276},"blocks":[{"id":"2","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"d Paragraph 1","styles":{}}],"children":[]},{"id":"3","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},{"id":"4","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]},{"id":"5","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"Heading 2","styles":{}}],"children":[{"id":"6","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},{"id":"7","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},{"id":"8","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]}]},{"id":"9","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"Bold","styles":{"bold":true}},{"type":"text","text":"Italic","styles":{"italic":true}},{"type":"text","text":"Regular","styles":{}}],"children":[{"id":"10","type":"image","props":{"backgroundColor":"default","textAlignment":"left","name":"","url":"https://ralfvanveen.com/wp-content/uploads/2021/06/Placeholder-_-Glossary.svg","caption":"","showPreview":true},"children":[{"id":"11","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph","styles":{}}],"children":[]}]}]},{"id":"12","type":"table","props":{"textColor":"default"},"content":{"type":"tableContent","columnWidths":[null,null],"rows":[{"cells":[{"type":"tableCell","content":[{"type":"text","text":"Table Cell","styles":{}}],"props":{"colspan":1,"rowspan":1,"backgroundColor":"default","textColor":"default","textAlignment":"left"}},{"type":"tableCell","content":[{"type":"text","text":"Table Cell","styles":{}}],"props":{"colspan":1,"rowspan":1,"backgroundColor":"default","textColor":"default","textAlignment":"left"}}]},{"cells":[{"type":"tableCell","content":[{"type":"text","text":"Table Cell","styles":{}}],"props":{"colspan":1,"rowspan":1,"backgroundColor":"default","textColor":"default","textAlignment":"left"}},{"type":"tableCell","content":[{"type":"text","text":"Table Cell","styles":{}}],"props":{"colspan":1,"rowspan":1,"backgroundColor":"default","textColor":"default","textAlignment":"left"}}]}]},"children":[]}],"blockCutAtStart":"2"} -{"_meta":{"startPos":22,"endPos":276},"blocks":[{"id":"2","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":" Paragraph 1","styles":{}}],"children":[]},{"id":"3","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},{"id":"4","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]},{"id":"5","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"Heading 2","styles":{}}],"children":[{"id":"6","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},{"id":"7","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},{"id":"8","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]}]},{"id":"9","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"Bold","styles":{"bold":true}},{"type":"text","text":"Italic","styles":{"italic":true}},{"type":"text","text":"Regular","styles":{}}],"children":[{"id":"10","type":"image","props":{"backgroundColor":"default","textAlignment":"left","name":"","url":"https://ralfvanveen.com/wp-content/uploads/2021/06/Placeholder-_-Glossary.svg","caption":"","showPreview":true},"children":[{"id":"11","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph","styles":{}}],"children":[]}]}]},{"id":"12","type":"table","props":{"textColor":"default"},"content":{"type":"tableContent","columnWidths":[null,null],"rows":[{"cells":[{"type":"tableCell","content":[{"type":"text","text":"Table Cell","styles":{}}],"props":{"colspan":1,"rowspan":1,"backgroundColor":"default","textColor":"default","textAlignment":"left"}},{"type":"tableCell","content":[{"type":"text","text":"Table Cell","styles":{}}],"props":{"colspan":1,"rowspan":1,"backgroundColor":"default","textColor":"default","textAlignment":"left"}}]},{"cells":[{"type":"tableCell","content":[{"type":"text","text":"Table Cell","styles":{}}],"props":{"colspan":1,"rowspan":1,"backgroundColor":"default","textColor":"default","textAlignment":"left"}},{"type":"tableCell","content":[{"type":"text","text":"Table Cell","styles":{}}],"props":{"colspan":1,"rowspan":1,"backgroundColor":"default","textColor":"default","textAlignment":"left"}}]}]},"children":[]}],"blockCutAtStart":"2"} -{"_meta":{"startPos":23,"endPos":276},"blocks":[{"id":"2","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Paragraph 1","styles":{}}],"children":[]},{"id":"3","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},{"id":"4","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]},{"id":"5","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"Heading 2","styles":{}}],"children":[{"id":"6","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},{"id":"7","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},{"id":"8","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]}]},{"id":"9","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"Bold","styles":{"bold":true}},{"type":"text","text":"Italic","styles":{"italic":true}},{"type":"text","text":"Regular","styles":{}}],"children":[{"id":"10","type":"image","props":{"backgroundColor":"default","textAlignment":"left","name":"","url":"https://ralfvanveen.com/wp-content/uploads/2021/06/Placeholder-_-Glossary.svg","caption":"","showPreview":true},"children":[{"id":"11","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph","styles":{}}],"children":[]}]}]},{"id":"12","type":"table","props":{"textColor":"default"},"content":{"type":"tableContent","columnWidths":[null,null],"rows":[{"cells":[{"type":"tableCell","content":[{"type":"text","text":"Table Cell","styles":{}}],"props":{"colspan":1,"rowspan":1,"backgroundColor":"default","textColor":"default","textAlignment":"left"}},{"type":"tableCell","content":[{"type":"text","text":"Table Cell","styles":{}}],"props":{"colspan":1,"rowspan":1,"backgroundColor":"default","textColor":"default","textAlignment":"left"}}]},{"cells":[{"type":"tableCell","content":[{"type":"text","text":"Table Cell","styles":{}}],"props":{"colspan":1,"rowspan":1,"backgroundColor":"default","textColor":"default","textAlignment":"left"}},{"type":"tableCell","content":[{"type":"text","text":"Table Cell","styles":{}}],"props":{"colspan":1,"rowspan":1,"backgroundColor":"default","textColor":"default","textAlignment":"left"}}]}]},"children":[]}],"blockCutAtStart":"2"} -{"_meta":{"startPos":24,"endPos":276},"blocks":[{"id":"2","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"aragraph 1","styles":{}}],"children":[]},{"id":"3","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},{"id":"4","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]},{"id":"5","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"Heading 2","styles":{}}],"children":[{"id":"6","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},{"id":"7","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},{"id":"8","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]}]},{"id":"9","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"Bold","styles":{"bold":true}},{"type":"text","text":"Italic","styles":{"italic":true}},{"type":"text","text":"Regular","styles":{}}],"children":[{"id":"10","type":"image","props":{"backgroundColor":"default","textAlignment":"left","name":"","url":"https://ralfvanveen.com/wp-content/uploads/2021/06/Placeholder-_-Glossary.svg","caption":"","showPreview":true},"children":[{"id":"11","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph","styles":{}}],"children":[]}]}]},{"id":"12","type":"table","props":{"textColor":"default"},"content":{"type":"tableContent","columnWidths":[null,null],"rows":[{"cells":[{"type":"tableCell","content":[{"type":"text","text":"Table Cell","styles":{}}],"props":{"colspan":1,"rowspan":1,"backgroundColor":"default","textColor":"default","textAlignment":"left"}},{"type":"tableCell","content":[{"type":"text","text":"Table Cell","styles":{}}],"props":{"colspan":1,"rowspan":1,"backgroundColor":"default","textColor":"default","textAlignment":"left"}}]},{"cells":[{"type":"tableCell","content":[{"type":"text","text":"Table Cell","styles":{}}],"props":{"colspan":1,"rowspan":1,"backgroundColor":"default","textColor":"default","textAlignment":"left"}},{"type":"tableCell","content":[{"type":"text","text":"Table Cell","styles":{}}],"props":{"colspan":1,"rowspan":1,"backgroundColor":"default","textColor":"default","textAlignment":"left"}}]}]},"children":[]}],"blockCutAtStart":"2"} -{"_meta":{"startPos":25,"endPos":276},"blocks":[{"id":"2","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"ragraph 1","styles":{}}],"children":[]},{"id":"3","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},{"id":"4","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]},{"id":"5","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"Heading 2","styles":{}}],"children":[{"id":"6","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},{"id":"7","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},{"id":"8","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]}]},{"id":"9","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"Bold","styles":{"bold":true}},{"type":"text","text":"Italic","styles":{"italic":true}},{"type":"text","text":"Regular","styles":{}}],"children":[{"id":"10","type":"image","props":{"backgroundColor":"default","textAlignment":"left","name":"","url":"https://ralfvanveen.com/wp-content/uploads/2021/06/Placeholder-_-Glossary.svg","caption":"","showPreview":true},"children":[{"id":"11","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph","styles":{}}],"children":[]}]}]},{"id":"12","type":"table","props":{"textColor":"default"},"content":{"type":"tableContent","columnWidths":[null,null],"rows":[{"cells":[{"type":"tableCell","content":[{"type":"text","text":"Table Cell","styles":{}}],"props":{"colspan":1,"rowspan":1,"backgroundColor":"default","textColor":"default","textAlignment":"left"}},{"type":"tableCell","content":[{"type":"text","text":"Table Cell","styles":{}}],"props":{"colspan":1,"rowspan":1,"backgroundColor":"default","textColor":"default","textAlignment":"left"}}]},{"cells":[{"type":"tableCell","content":[{"type":"text","text":"Table Cell","styles":{}}],"props":{"colspan":1,"rowspan":1,"backgroundColor":"default","textColor":"default","textAlignment":"left"}},{"type":"tableCell","content":[{"type":"text","text":"Table Cell","styles":{}}],"props":{"colspan":1,"rowspan":1,"backgroundColor":"default","textColor":"default","textAlignment":"left"}}]}]},"children":[]}],"blockCutAtStart":"2"} -{"_meta":{"startPos":26,"endPos":276},"blocks":[{"id":"2","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"agraph 1","styles":{}}],"children":[]},{"id":"3","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},{"id":"4","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]},{"id":"5","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"Heading 2","styles":{}}],"children":[{"id":"6","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},{"id":"7","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},{"id":"8","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]}]},{"id":"9","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"Bold","styles":{"bold":true}},{"type":"text","text":"Italic","styles":{"italic":true}},{"type":"text","text":"Regular","styles":{}}],"children":[{"id":"10","type":"image","props":{"backgroundColor":"default","textAlignment":"left","name":"","url":"https://ralfvanveen.com/wp-content/uploads/2021/06/Placeholder-_-Glossary.svg","caption":"","showPreview":true},"children":[{"id":"11","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph","styles":{}}],"children":[]}]}]},{"id":"12","type":"table","props":{"textColor":"default"},"content":{"type":"tableContent","columnWidths":[null,null],"rows":[{"cells":[{"type":"tableCell","content":[{"type":"text","text":"Table Cell","styles":{}}],"props":{"colspan":1,"rowspan":1,"backgroundColor":"default","textColor":"default","textAlignment":"left"}},{"type":"tableCell","content":[{"type":"text","text":"Table Cell","styles":{}}],"props":{"colspan":1,"rowspan":1,"backgroundColor":"default","textColor":"default","textAlignment":"left"}}]},{"cells":[{"type":"tableCell","content":[{"type":"text","text":"Table Cell","styles":{}}],"props":{"colspan":1,"rowspan":1,"backgroundColor":"default","textColor":"default","textAlignment":"left"}},{"type":"tableCell","content":[{"type":"text","text":"Table Cell","styles":{}}],"props":{"colspan":1,"rowspan":1,"backgroundColor":"default","textColor":"default","textAlignment":"left"}}]}]},"children":[]}],"blockCutAtStart":"2"} -{"_meta":{"startPos":27,"endPos":276},"blocks":[{"id":"2","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"graph 1","styles":{}}],"children":[]},{"id":"3","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},{"id":"4","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]},{"id":"5","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"Heading 2","styles":{}}],"children":[{"id":"6","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},{"id":"7","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},{"id":"8","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]}]},{"id":"9","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"Bold","styles":{"bold":true}},{"type":"text","text":"Italic","styles":{"italic":true}},{"type":"text","text":"Regular","styles":{}}],"children":[{"id":"10","type":"image","props":{"backgroundColor":"default","textAlignment":"left","name":"","url":"https://ralfvanveen.com/wp-content/uploads/2021/06/Placeholder-_-Glossary.svg","caption":"","showPreview":true},"children":[{"id":"11","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph","styles":{}}],"children":[]}]}]},{"id":"12","type":"table","props":{"textColor":"default"},"content":{"type":"tableContent","columnWidths":[null,null],"rows":[{"cells":[{"type":"tableCell","content":[{"type":"text","text":"Table Cell","styles":{}}],"props":{"colspan":1,"rowspan":1,"backgroundColor":"default","textColor":"default","textAlignment":"left"}},{"type":"tableCell","content":[{"type":"text","text":"Table Cell","styles":{}}],"props":{"colspan":1,"rowspan":1,"backgroundColor":"default","textColor":"default","textAlignment":"left"}}]},{"cells":[{"type":"tableCell","content":[{"type":"text","text":"Table Cell","styles":{}}],"props":{"colspan":1,"rowspan":1,"backgroundColor":"default","textColor":"default","textAlignment":"left"}},{"type":"tableCell","content":[{"type":"text","text":"Table Cell","styles":{}}],"props":{"colspan":1,"rowspan":1,"backgroundColor":"default","textColor":"default","textAlignment":"left"}}]}]},"children":[]}],"blockCutAtStart":"2"} -{"_meta":{"startPos":28,"endPos":276},"blocks":[{"id":"2","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"raph 1","styles":{}}],"children":[]},{"id":"3","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},{"id":"4","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]},{"id":"5","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"Heading 2","styles":{}}],"children":[{"id":"6","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},{"id":"7","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},{"id":"8","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]}]},{"id":"9","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"Bold","styles":{"bold":true}},{"type":"text","text":"Italic","styles":{"italic":true}},{"type":"text","text":"Regular","styles":{}}],"children":[{"id":"10","type":"image","props":{"backgroundColor":"default","textAlignment":"left","name":"","url":"https://ralfvanveen.com/wp-content/uploads/2021/06/Placeholder-_-Glossary.svg","caption":"","showPreview":true},"children":[{"id":"11","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph","styles":{}}],"children":[]}]}]},{"id":"12","type":"table","props":{"textColor":"default"},"content":{"type":"tableContent","columnWidths":[null,null],"rows":[{"cells":[{"type":"tableCell","content":[{"type":"text","text":"Table Cell","styles":{}}],"props":{"colspan":1,"rowspan":1,"backgroundColor":"default","textColor":"default","textAlignment":"left"}},{"type":"tableCell","content":[{"type":"text","text":"Table Cell","styles":{}}],"props":{"colspan":1,"rowspan":1,"backgroundColor":"default","textColor":"default","textAlignment":"left"}}]},{"cells":[{"type":"tableCell","content":[{"type":"text","text":"Table Cell","styles":{}}],"props":{"colspan":1,"rowspan":1,"backgroundColor":"default","textColor":"default","textAlignment":"left"}},{"type":"tableCell","content":[{"type":"text","text":"Table Cell","styles":{}}],"props":{"colspan":1,"rowspan":1,"backgroundColor":"default","textColor":"default","textAlignment":"left"}}]}]},"children":[]}],"blockCutAtStart":"2"} -{"_meta":{"startPos":29,"endPos":276},"blocks":[{"id":"2","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"aph 1","styles":{}}],"children":[]},{"id":"3","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},{"id":"4","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]},{"id":"5","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"Heading 2","styles":{}}],"children":[{"id":"6","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},{"id":"7","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},{"id":"8","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]}]},{"id":"9","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"Bold","styles":{"bold":true}},{"type":"text","text":"Italic","styles":{"italic":true}},{"type":"text","text":"Regular","styles":{}}],"children":[{"id":"10","type":"image","props":{"backgroundColor":"default","textAlignment":"left","name":"","url":"https://ralfvanveen.com/wp-content/uploads/2021/06/Placeholder-_-Glossary.svg","caption":"","showPreview":true},"children":[{"id":"11","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph","styles":{}}],"children":[]}]}]},{"id":"12","type":"table","props":{"textColor":"default"},"content":{"type":"tableContent","columnWidths":[null,null],"rows":[{"cells":[{"type":"tableCell","content":[{"type":"text","text":"Table Cell","styles":{}}],"props":{"colspan":1,"rowspan":1,"backgroundColor":"default","textColor":"default","textAlignment":"left"}},{"type":"tableCell","content":[{"type":"text","text":"Table Cell","styles":{}}],"props":{"colspan":1,"rowspan":1,"backgroundColor":"default","textColor":"default","textAlignment":"left"}}]},{"cells":[{"type":"tableCell","content":[{"type":"text","text":"Table Cell","styles":{}}],"props":{"colspan":1,"rowspan":1,"backgroundColor":"default","textColor":"default","textAlignment":"left"}},{"type":"tableCell","content":[{"type":"text","text":"Table Cell","styles":{}}],"props":{"colspan":1,"rowspan":1,"backgroundColor":"default","textColor":"default","textAlignment":"left"}}]}]},"children":[]}],"blockCutAtStart":"2"} -{"_meta":{"startPos":30,"endPos":276},"blocks":[{"id":"2","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"ph 1","styles":{}}],"children":[]},{"id":"3","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},{"id":"4","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]},{"id":"5","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"Heading 2","styles":{}}],"children":[{"id":"6","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},{"id":"7","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},{"id":"8","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]}]},{"id":"9","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"Bold","styles":{"bold":true}},{"type":"text","text":"Italic","styles":{"italic":true}},{"type":"text","text":"Regular","styles":{}}],"children":[{"id":"10","type":"image","props":{"backgroundColor":"default","textAlignment":"left","name":"","url":"https://ralfvanveen.com/wp-content/uploads/2021/06/Placeholder-_-Glossary.svg","caption":"","showPreview":true},"children":[{"id":"11","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph","styles":{}}],"children":[]}]}]},{"id":"12","type":"table","props":{"textColor":"default"},"content":{"type":"tableContent","columnWidths":[null,null],"rows":[{"cells":[{"type":"tableCell","content":[{"type":"text","text":"Table Cell","styles":{}}],"props":{"colspan":1,"rowspan":1,"backgroundColor":"default","textColor":"default","textAlignment":"left"}},{"type":"tableCell","content":[{"type":"text","text":"Table Cell","styles":{}}],"props":{"colspan":1,"rowspan":1,"backgroundColor":"default","textColor":"default","textAlignment":"left"}}]},{"cells":[{"type":"tableCell","content":[{"type":"text","text":"Table Cell","styles":{}}],"props":{"colspan":1,"rowspan":1,"backgroundColor":"default","textColor":"default","textAlignment":"left"}},{"type":"tableCell","content":[{"type":"text","text":"Table Cell","styles":{}}],"props":{"colspan":1,"rowspan":1,"backgroundColor":"default","textColor":"default","textAlignment":"left"}}]}]},"children":[]}],"blockCutAtStart":"2"} -{"_meta":{"startPos":31,"endPos":276},"blocks":[{"id":"2","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"h 1","styles":{}}],"children":[]},{"id":"3","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},{"id":"4","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]},{"id":"5","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"Heading 2","styles":{}}],"children":[{"id":"6","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},{"id":"7","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},{"id":"8","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]}]},{"id":"9","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"Bold","styles":{"bold":true}},{"type":"text","text":"Italic","styles":{"italic":true}},{"type":"text","text":"Regular","styles":{}}],"children":[{"id":"10","type":"image","props":{"backgroundColor":"default","textAlignment":"left","name":"","url":"https://ralfvanveen.com/wp-content/uploads/2021/06/Placeholder-_-Glossary.svg","caption":"","showPreview":true},"children":[{"id":"11","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph","styles":{}}],"children":[]}]}]},{"id":"12","type":"table","props":{"textColor":"default"},"content":{"type":"tableContent","columnWidths":[null,null],"rows":[{"cells":[{"type":"tableCell","content":[{"type":"text","text":"Table Cell","styles":{}}],"props":{"colspan":1,"rowspan":1,"backgroundColor":"default","textColor":"default","textAlignment":"left"}},{"type":"tableCell","content":[{"type":"text","text":"Table Cell","styles":{}}],"props":{"colspan":1,"rowspan":1,"backgroundColor":"default","textColor":"default","textAlignment":"left"}}]},{"cells":[{"type":"tableCell","content":[{"type":"text","text":"Table Cell","styles":{}}],"props":{"colspan":1,"rowspan":1,"backgroundColor":"default","textColor":"default","textAlignment":"left"}},{"type":"tableCell","content":[{"type":"text","text":"Table Cell","styles":{}}],"props":{"colspan":1,"rowspan":1,"backgroundColor":"default","textColor":"default","textAlignment":"left"}}]}]},"children":[]}],"blockCutAtStart":"2"} -{"_meta":{"startPos":32,"endPos":276},"blocks":[{"id":"2","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":" 1","styles":{}}],"children":[]},{"id":"3","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},{"id":"4","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]},{"id":"5","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"Heading 2","styles":{}}],"children":[{"id":"6","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},{"id":"7","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},{"id":"8","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]}]},{"id":"9","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"Bold","styles":{"bold":true}},{"type":"text","text":"Italic","styles":{"italic":true}},{"type":"text","text":"Regular","styles":{}}],"children":[{"id":"10","type":"image","props":{"backgroundColor":"default","textAlignment":"left","name":"","url":"https://ralfvanveen.com/wp-content/uploads/2021/06/Placeholder-_-Glossary.svg","caption":"","showPreview":true},"children":[{"id":"11","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph","styles":{}}],"children":[]}]}]},{"id":"12","type":"table","props":{"textColor":"default"},"content":{"type":"tableContent","columnWidths":[null,null],"rows":[{"cells":[{"type":"tableCell","content":[{"type":"text","text":"Table Cell","styles":{}}],"props":{"colspan":1,"rowspan":1,"backgroundColor":"default","textColor":"default","textAlignment":"left"}},{"type":"tableCell","content":[{"type":"text","text":"Table Cell","styles":{}}],"props":{"colspan":1,"rowspan":1,"backgroundColor":"default","textColor":"default","textAlignment":"left"}}]},{"cells":[{"type":"tableCell","content":[{"type":"text","text":"Table Cell","styles":{}}],"props":{"colspan":1,"rowspan":1,"backgroundColor":"default","textColor":"default","textAlignment":"left"}},{"type":"tableCell","content":[{"type":"text","text":"Table Cell","styles":{}}],"props":{"colspan":1,"rowspan":1,"backgroundColor":"default","textColor":"default","textAlignment":"left"}}]}]},"children":[]}],"blockCutAtStart":"2"} -{"_meta":{"startPos":33,"endPos":276},"blocks":[{"id":"2","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"1","styles":{}}],"children":[]},{"id":"3","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},{"id":"4","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]},{"id":"5","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"Heading 2","styles":{}}],"children":[{"id":"6","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},{"id":"7","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},{"id":"8","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]}]},{"id":"9","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"Bold","styles":{"bold":true}},{"type":"text","text":"Italic","styles":{"italic":true}},{"type":"text","text":"Regular","styles":{}}],"children":[{"id":"10","type":"image","props":{"backgroundColor":"default","textAlignment":"left","name":"","url":"https://ralfvanveen.com/wp-content/uploads/2021/06/Placeholder-_-Glossary.svg","caption":"","showPreview":true},"children":[{"id":"11","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph","styles":{}}],"children":[]}]}]},{"id":"12","type":"table","props":{"textColor":"default"},"content":{"type":"tableContent","columnWidths":[null,null],"rows":[{"cells":[{"type":"tableCell","content":[{"type":"text","text":"Table Cell","styles":{}}],"props":{"colspan":1,"rowspan":1,"backgroundColor":"default","textColor":"default","textAlignment":"left"}},{"type":"tableCell","content":[{"type":"text","text":"Table Cell","styles":{}}],"props":{"colspan":1,"rowspan":1,"backgroundColor":"default","textColor":"default","textAlignment":"left"}}]},{"cells":[{"type":"tableCell","content":[{"type":"text","text":"Table Cell","styles":{}}],"props":{"colspan":1,"rowspan":1,"backgroundColor":"default","textColor":"default","textAlignment":"left"}},{"type":"tableCell","content":[{"type":"text","text":"Table Cell","styles":{}}],"props":{"colspan":1,"rowspan":1,"backgroundColor":"default","textColor":"default","textAlignment":"left"}}]}]},"children":[]}],"blockCutAtStart":"2"} -{"_meta":{"startPos":36,"endPos":276},"blocks":[{"id":"3","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},{"id":"4","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]},{"id":"5","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"Heading 2","styles":{}}],"children":[{"id":"6","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},{"id":"7","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},{"id":"8","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]}]},{"id":"9","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"Bold","styles":{"bold":true}},{"type":"text","text":"Italic","styles":{"italic":true}},{"type":"text","text":"Regular","styles":{}}],"children":[{"id":"10","type":"image","props":{"backgroundColor":"default","textAlignment":"left","name":"","url":"https://ralfvanveen.com/wp-content/uploads/2021/06/Placeholder-_-Glossary.svg","caption":"","showPreview":true},"children":[{"id":"11","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph","styles":{}}],"children":[]}]}]},{"id":"12","type":"table","props":{"textColor":"default"},"content":{"type":"tableContent","columnWidths":[null,null],"rows":[{"cells":[{"type":"tableCell","content":[{"type":"text","text":"Table Cell","styles":{}}],"props":{"colspan":1,"rowspan":1,"backgroundColor":"default","textColor":"default","textAlignment":"left"}},{"type":"tableCell","content":[{"type":"text","text":"Table Cell","styles":{}}],"props":{"colspan":1,"rowspan":1,"backgroundColor":"default","textColor":"default","textAlignment":"left"}}]},{"cells":[{"type":"tableCell","content":[{"type":"text","text":"Table Cell","styles":{}}],"props":{"colspan":1,"rowspan":1,"backgroundColor":"default","textColor":"default","textAlignment":"left"}},{"type":"tableCell","content":[{"type":"text","text":"Table Cell","styles":{}}],"props":{"colspan":1,"rowspan":1,"backgroundColor":"default","textColor":"default","textAlignment":"left"}}]}]},"children":[]}]} -{"_meta":{"startPos":36,"endPos":276},"blocks":[{"id":"3","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},{"id":"4","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]},{"id":"5","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"Heading 2","styles":{}}],"children":[{"id":"6","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},{"id":"7","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},{"id":"8","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]}]},{"id":"9","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"Bold","styles":{"bold":true}},{"type":"text","text":"Italic","styles":{"italic":true}},{"type":"text","text":"Regular","styles":{}}],"children":[{"id":"10","type":"image","props":{"backgroundColor":"default","textAlignment":"left","name":"","url":"https://ralfvanveen.com/wp-content/uploads/2021/06/Placeholder-_-Glossary.svg","caption":"","showPreview":true},"children":[{"id":"11","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph","styles":{}}],"children":[]}]}]},{"id":"12","type":"table","props":{"textColor":"default"},"content":{"type":"tableContent","columnWidths":[null,null],"rows":[{"cells":[{"type":"tableCell","content":[{"type":"text","text":"Table Cell","styles":{}}],"props":{"colspan":1,"rowspan":1,"backgroundColor":"default","textColor":"default","textAlignment":"left"}},{"type":"tableCell","content":[{"type":"text","text":"Table Cell","styles":{}}],"props":{"colspan":1,"rowspan":1,"backgroundColor":"default","textColor":"default","textAlignment":"left"}}]},{"cells":[{"type":"tableCell","content":[{"type":"text","text":"Table Cell","styles":{}}],"props":{"colspan":1,"rowspan":1,"backgroundColor":"default","textColor":"default","textAlignment":"left"}},{"type":"tableCell","content":[{"type":"text","text":"Table Cell","styles":{}}],"props":{"colspan":1,"rowspan":1,"backgroundColor":"default","textColor":"default","textAlignment":"left"}}]}]},"children":[]}]} -{"_meta":{"startPos":36,"endPos":276},"blocks":[{"id":"3","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},{"id":"4","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]},{"id":"5","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"Heading 2","styles":{}}],"children":[{"id":"6","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},{"id":"7","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},{"id":"8","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]}]},{"id":"9","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"Bold","styles":{"bold":true}},{"type":"text","text":"Italic","styles":{"italic":true}},{"type":"text","text":"Regular","styles":{}}],"children":[{"id":"10","type":"image","props":{"backgroundColor":"default","textAlignment":"left","name":"","url":"https://ralfvanveen.com/wp-content/uploads/2021/06/Placeholder-_-Glossary.svg","caption":"","showPreview":true},"children":[{"id":"11","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph","styles":{}}],"children":[]}]}]},{"id":"12","type":"table","props":{"textColor":"default"},"content":{"type":"tableContent","columnWidths":[null,null],"rows":[{"cells":[{"type":"tableCell","content":[{"type":"text","text":"Table Cell","styles":{}}],"props":{"colspan":1,"rowspan":1,"backgroundColor":"default","textColor":"default","textAlignment":"left"}},{"type":"tableCell","content":[{"type":"text","text":"Table Cell","styles":{}}],"props":{"colspan":1,"rowspan":1,"backgroundColor":"default","textColor":"default","textAlignment":"left"}}]},{"cells":[{"type":"tableCell","content":[{"type":"text","text":"Table Cell","styles":{}}],"props":{"colspan":1,"rowspan":1,"backgroundColor":"default","textColor":"default","textAlignment":"left"}},{"type":"tableCell","content":[{"type":"text","text":"Table Cell","styles":{}}],"props":{"colspan":1,"rowspan":1,"backgroundColor":"default","textColor":"default","textAlignment":"left"}}]}]},"children":[]}]} -{"_meta":{"startPos":36,"endPos":276},"blocks":[{"id":"3","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},{"id":"4","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]},{"id":"5","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"Heading 2","styles":{}}],"children":[{"id":"6","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},{"id":"7","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},{"id":"8","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]}]},{"id":"9","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"Bold","styles":{"bold":true}},{"type":"text","text":"Italic","styles":{"italic":true}},{"type":"text","text":"Regular","styles":{}}],"children":[{"id":"10","type":"image","props":{"backgroundColor":"default","textAlignment":"left","name":"","url":"https://ralfvanveen.com/wp-content/uploads/2021/06/Placeholder-_-Glossary.svg","caption":"","showPreview":true},"children":[{"id":"11","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph","styles":{}}],"children":[]}]}]},{"id":"12","type":"table","props":{"textColor":"default"},"content":{"type":"tableContent","columnWidths":[null,null],"rows":[{"cells":[{"type":"tableCell","content":[{"type":"text","text":"Table Cell","styles":{}}],"props":{"colspan":1,"rowspan":1,"backgroundColor":"default","textColor":"default","textAlignment":"left"}},{"type":"tableCell","content":[{"type":"text","text":"Table Cell","styles":{}}],"props":{"colspan":1,"rowspan":1,"backgroundColor":"default","textColor":"default","textAlignment":"left"}}]},{"cells":[{"type":"tableCell","content":[{"type":"text","text":"Table Cell","styles":{}}],"props":{"colspan":1,"rowspan":1,"backgroundColor":"default","textColor":"default","textAlignment":"left"}},{"type":"tableCell","content":[{"type":"text","text":"Table Cell","styles":{}}],"props":{"colspan":1,"rowspan":1,"backgroundColor":"default","textColor":"default","textAlignment":"left"}}]}]},"children":[]}]} -{"_meta":{"startPos":36,"endPos":276},"blocks":[{"id":"3","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},{"id":"4","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]},{"id":"5","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"Heading 2","styles":{}}],"children":[{"id":"6","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},{"id":"7","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},{"id":"8","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]}]},{"id":"9","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"Bold","styles":{"bold":true}},{"type":"text","text":"Italic","styles":{"italic":true}},{"type":"text","text":"Regular","styles":{}}],"children":[{"id":"10","type":"image","props":{"backgroundColor":"default","textAlignment":"left","name":"","url":"https://ralfvanveen.com/wp-content/uploads/2021/06/Placeholder-_-Glossary.svg","caption":"","showPreview":true},"children":[{"id":"11","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph","styles":{}}],"children":[]}]}]},{"id":"12","type":"table","props":{"textColor":"default"},"content":{"type":"tableContent","columnWidths":[null,null],"rows":[{"cells":[{"type":"tableCell","content":[{"type":"text","text":"Table Cell","styles":{}}],"props":{"colspan":1,"rowspan":1,"backgroundColor":"default","textColor":"default","textAlignment":"left"}},{"type":"tableCell","content":[{"type":"text","text":"Table Cell","styles":{}}],"props":{"colspan":1,"rowspan":1,"backgroundColor":"default","textColor":"default","textAlignment":"left"}}]},{"cells":[{"type":"tableCell","content":[{"type":"text","text":"Table Cell","styles":{}}],"props":{"colspan":1,"rowspan":1,"backgroundColor":"default","textColor":"default","textAlignment":"left"}},{"type":"tableCell","content":[{"type":"text","text":"Table Cell","styles":{}}],"props":{"colspan":1,"rowspan":1,"backgroundColor":"default","textColor":"default","textAlignment":"left"}}]}]},"children":[]}]} -{"_meta":{"startPos":39,"endPos":276},"blocks":[{"id":"3","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"ested Paragraph 2","styles":{}}],"children":[]},{"id":"4","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]},{"id":"5","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"Heading 2","styles":{}}],"children":[{"id":"6","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},{"id":"7","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},{"id":"8","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]}]},{"id":"9","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"Bold","styles":{"bold":true}},{"type":"text","text":"Italic","styles":{"italic":true}},{"type":"text","text":"Regular","styles":{}}],"children":[{"id":"10","type":"image","props":{"backgroundColor":"default","textAlignment":"left","name":"","url":"https://ralfvanveen.com/wp-content/uploads/2021/06/Placeholder-_-Glossary.svg","caption":"","showPreview":true},"children":[{"id":"11","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph","styles":{}}],"children":[]}]}]},{"id":"12","type":"table","props":{"textColor":"default"},"content":{"type":"tableContent","columnWidths":[null,null],"rows":[{"cells":[{"type":"tableCell","content":[{"type":"text","text":"Table Cell","styles":{}}],"props":{"colspan":1,"rowspan":1,"backgroundColor":"default","textColor":"default","textAlignment":"left"}},{"type":"tableCell","content":[{"type":"text","text":"Table Cell","styles":{}}],"props":{"colspan":1,"rowspan":1,"backgroundColor":"default","textColor":"default","textAlignment":"left"}}]},{"cells":[{"type":"tableCell","content":[{"type":"text","text":"Table Cell","styles":{}}],"props":{"colspan":1,"rowspan":1,"backgroundColor":"default","textColor":"default","textAlignment":"left"}},{"type":"tableCell","content":[{"type":"text","text":"Table Cell","styles":{}}],"props":{"colspan":1,"rowspan":1,"backgroundColor":"default","textColor":"default","textAlignment":"left"}}]}]},"children":[]}],"blockCutAtStart":"3"} -{"_meta":{"startPos":40,"endPos":276},"blocks":[{"id":"3","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"sted Paragraph 2","styles":{}}],"children":[]},{"id":"4","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]},{"id":"5","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"Heading 2","styles":{}}],"children":[{"id":"6","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},{"id":"7","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},{"id":"8","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]}]},{"id":"9","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"Bold","styles":{"bold":true}},{"type":"text","text":"Italic","styles":{"italic":true}},{"type":"text","text":"Regular","styles":{}}],"children":[{"id":"10","type":"image","props":{"backgroundColor":"default","textAlignment":"left","name":"","url":"https://ralfvanveen.com/wp-content/uploads/2021/06/Placeholder-_-Glossary.svg","caption":"","showPreview":true},"children":[{"id":"11","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph","styles":{}}],"children":[]}]}]},{"id":"12","type":"table","props":{"textColor":"default"},"content":{"type":"tableContent","columnWidths":[null,null],"rows":[{"cells":[{"type":"tableCell","content":[{"type":"text","text":"Table Cell","styles":{}}],"props":{"colspan":1,"rowspan":1,"backgroundColor":"default","textColor":"default","textAlignment":"left"}},{"type":"tableCell","content":[{"type":"text","text":"Table Cell","styles":{}}],"props":{"colspan":1,"rowspan":1,"backgroundColor":"default","textColor":"default","textAlignment":"left"}}]},{"cells":[{"type":"tableCell","content":[{"type":"text","text":"Table Cell","styles":{}}],"props":{"colspan":1,"rowspan":1,"backgroundColor":"default","textColor":"default","textAlignment":"left"}},{"type":"tableCell","content":[{"type":"text","text":"Table Cell","styles":{}}],"props":{"colspan":1,"rowspan":1,"backgroundColor":"default","textColor":"default","textAlignment":"left"}}]}]},"children":[]}],"blockCutAtStart":"3"} -{"_meta":{"startPos":41,"endPos":276},"blocks":[{"id":"3","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"ted Paragraph 2","styles":{}}],"children":[]},{"id":"4","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]},{"id":"5","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"Heading 2","styles":{}}],"children":[{"id":"6","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},{"id":"7","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},{"id":"8","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]}]},{"id":"9","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"Bold","styles":{"bold":true}},{"type":"text","text":"Italic","styles":{"italic":true}},{"type":"text","text":"Regular","styles":{}}],"children":[{"id":"10","type":"image","props":{"backgroundColor":"default","textAlignment":"left","name":"","url":"https://ralfvanveen.com/wp-content/uploads/2021/06/Placeholder-_-Glossary.svg","caption":"","showPreview":true},"children":[{"id":"11","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph","styles":{}}],"children":[]}]}]},{"id":"12","type":"table","props":{"textColor":"default"},"content":{"type":"tableContent","columnWidths":[null,null],"rows":[{"cells":[{"type":"tableCell","content":[{"type":"text","text":"Table Cell","styles":{}}],"props":{"colspan":1,"rowspan":1,"backgroundColor":"default","textColor":"default","textAlignment":"left"}},{"type":"tableCell","content":[{"type":"text","text":"Table Cell","styles":{}}],"props":{"colspan":1,"rowspan":1,"backgroundColor":"default","textColor":"default","textAlignment":"left"}}]},{"cells":[{"type":"tableCell","content":[{"type":"text","text":"Table Cell","styles":{}}],"props":{"colspan":1,"rowspan":1,"backgroundColor":"default","textColor":"default","textAlignment":"left"}},{"type":"tableCell","content":[{"type":"text","text":"Table Cell","styles":{}}],"props":{"colspan":1,"rowspan":1,"backgroundColor":"default","textColor":"default","textAlignment":"left"}}]}]},"children":[]}],"blockCutAtStart":"3"} -{"_meta":{"startPos":42,"endPos":276},"blocks":[{"id":"3","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"ed Paragraph 2","styles":{}}],"children":[]},{"id":"4","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]},{"id":"5","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"Heading 2","styles":{}}],"children":[{"id":"6","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},{"id":"7","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},{"id":"8","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]}]},{"id":"9","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"Bold","styles":{"bold":true}},{"type":"text","text":"Italic","styles":{"italic":true}},{"type":"text","text":"Regular","styles":{}}],"children":[{"id":"10","type":"image","props":{"backgroundColor":"default","textAlignment":"left","name":"","url":"https://ralfvanveen.com/wp-content/uploads/2021/06/Placeholder-_-Glossary.svg","caption":"","showPreview":true},"children":[{"id":"11","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph","styles":{}}],"children":[]}]}]},{"id":"12","type":"table","props":{"textColor":"default"},"content":{"type":"tableContent","columnWidths":[null,null],"rows":[{"cells":[{"type":"tableCell","content":[{"type":"text","text":"Table Cell","styles":{}}],"props":{"colspan":1,"rowspan":1,"backgroundColor":"default","textColor":"default","textAlignment":"left"}},{"type":"tableCell","content":[{"type":"text","text":"Table Cell","styles":{}}],"props":{"colspan":1,"rowspan":1,"backgroundColor":"default","textColor":"default","textAlignment":"left"}}]},{"cells":[{"type":"tableCell","content":[{"type":"text","text":"Table Cell","styles":{}}],"props":{"colspan":1,"rowspan":1,"backgroundColor":"default","textColor":"default","textAlignment":"left"}},{"type":"tableCell","content":[{"type":"text","text":"Table Cell","styles":{}}],"props":{"colspan":1,"rowspan":1,"backgroundColor":"default","textColor":"default","textAlignment":"left"}}]}]},"children":[]}],"blockCutAtStart":"3"} -{"_meta":{"startPos":43,"endPos":276},"blocks":[{"id":"3","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"d Paragraph 2","styles":{}}],"children":[]},{"id":"4","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]},{"id":"5","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"Heading 2","styles":{}}],"children":[{"id":"6","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},{"id":"7","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},{"id":"8","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]}]},{"id":"9","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"Bold","styles":{"bold":true}},{"type":"text","text":"Italic","styles":{"italic":true}},{"type":"text","text":"Regular","styles":{}}],"children":[{"id":"10","type":"image","props":{"backgroundColor":"default","textAlignment":"left","name":"","url":"https://ralfvanveen.com/wp-content/uploads/2021/06/Placeholder-_-Glossary.svg","caption":"","showPreview":true},"children":[{"id":"11","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph","styles":{}}],"children":[]}]}]},{"id":"12","type":"table","props":{"textColor":"default"},"content":{"type":"tableContent","columnWidths":[null,null],"rows":[{"cells":[{"type":"tableCell","content":[{"type":"text","text":"Table Cell","styles":{}}],"props":{"colspan":1,"rowspan":1,"backgroundColor":"default","textColor":"default","textAlignment":"left"}},{"type":"tableCell","content":[{"type":"text","text":"Table Cell","styles":{}}],"props":{"colspan":1,"rowspan":1,"backgroundColor":"default","textColor":"default","textAlignment":"left"}}]},{"cells":[{"type":"tableCell","content":[{"type":"text","text":"Table Cell","styles":{}}],"props":{"colspan":1,"rowspan":1,"backgroundColor":"default","textColor":"default","textAlignment":"left"}},{"type":"tableCell","content":[{"type":"text","text":"Table Cell","styles":{}}],"props":{"colspan":1,"rowspan":1,"backgroundColor":"default","textColor":"default","textAlignment":"left"}}]}]},"children":[]}],"blockCutAtStart":"3"} -{"_meta":{"startPos":44,"endPos":276},"blocks":[{"id":"3","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":" Paragraph 2","styles":{}}],"children":[]},{"id":"4","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]},{"id":"5","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"Heading 2","styles":{}}],"children":[{"id":"6","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},{"id":"7","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},{"id":"8","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]}]},{"id":"9","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"Bold","styles":{"bold":true}},{"type":"text","text":"Italic","styles":{"italic":true}},{"type":"text","text":"Regular","styles":{}}],"children":[{"id":"10","type":"image","props":{"backgroundColor":"default","textAlignment":"left","name":"","url":"https://ralfvanveen.com/wp-content/uploads/2021/06/Placeholder-_-Glossary.svg","caption":"","showPreview":true},"children":[{"id":"11","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph","styles":{}}],"children":[]}]}]},{"id":"12","type":"table","props":{"textColor":"default"},"content":{"type":"tableContent","columnWidths":[null,null],"rows":[{"cells":[{"type":"tableCell","content":[{"type":"text","text":"Table Cell","styles":{}}],"props":{"colspan":1,"rowspan":1,"backgroundColor":"default","textColor":"default","textAlignment":"left"}},{"type":"tableCell","content":[{"type":"text","text":"Table Cell","styles":{}}],"props":{"colspan":1,"rowspan":1,"backgroundColor":"default","textColor":"default","textAlignment":"left"}}]},{"cells":[{"type":"tableCell","content":[{"type":"text","text":"Table Cell","styles":{}}],"props":{"colspan":1,"rowspan":1,"backgroundColor":"default","textColor":"default","textAlignment":"left"}},{"type":"tableCell","content":[{"type":"text","text":"Table Cell","styles":{}}],"props":{"colspan":1,"rowspan":1,"backgroundColor":"default","textColor":"default","textAlignment":"left"}}]}]},"children":[]}],"blockCutAtStart":"3"} -{"_meta":{"startPos":45,"endPos":276},"blocks":[{"id":"3","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Paragraph 2","styles":{}}],"children":[]},{"id":"4","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]},{"id":"5","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"Heading 2","styles":{}}],"children":[{"id":"6","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},{"id":"7","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},{"id":"8","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]}]},{"id":"9","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"Bold","styles":{"bold":true}},{"type":"text","text":"Italic","styles":{"italic":true}},{"type":"text","text":"Regular","styles":{}}],"children":[{"id":"10","type":"image","props":{"backgroundColor":"default","textAlignment":"left","name":"","url":"https://ralfvanveen.com/wp-content/uploads/2021/06/Placeholder-_-Glossary.svg","caption":"","showPreview":true},"children":[{"id":"11","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph","styles":{}}],"children":[]}]}]},{"id":"12","type":"table","props":{"textColor":"default"},"content":{"type":"tableContent","columnWidths":[null,null],"rows":[{"cells":[{"type":"tableCell","content":[{"type":"text","text":"Table Cell","styles":{}}],"props":{"colspan":1,"rowspan":1,"backgroundColor":"default","textColor":"default","textAlignment":"left"}},{"type":"tableCell","content":[{"type":"text","text":"Table Cell","styles":{}}],"props":{"colspan":1,"rowspan":1,"backgroundColor":"default","textColor":"default","textAlignment":"left"}}]},{"cells":[{"type":"tableCell","content":[{"type":"text","text":"Table Cell","styles":{}}],"props":{"colspan":1,"rowspan":1,"backgroundColor":"default","textColor":"default","textAlignment":"left"}},{"type":"tableCell","content":[{"type":"text","text":"Table Cell","styles":{}}],"props":{"colspan":1,"rowspan":1,"backgroundColor":"default","textColor":"default","textAlignment":"left"}}]}]},"children":[]}],"blockCutAtStart":"3"} -{"_meta":{"startPos":46,"endPos":276},"blocks":[{"id":"3","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"aragraph 2","styles":{}}],"children":[]},{"id":"4","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]},{"id":"5","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"Heading 2","styles":{}}],"children":[{"id":"6","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},{"id":"7","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},{"id":"8","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]}]},{"id":"9","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"Bold","styles":{"bold":true}},{"type":"text","text":"Italic","styles":{"italic":true}},{"type":"text","text":"Regular","styles":{}}],"children":[{"id":"10","type":"image","props":{"backgroundColor":"default","textAlignment":"left","name":"","url":"https://ralfvanveen.com/wp-content/uploads/2021/06/Placeholder-_-Glossary.svg","caption":"","showPreview":true},"children":[{"id":"11","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph","styles":{}}],"children":[]}]}]},{"id":"12","type":"table","props":{"textColor":"default"},"content":{"type":"tableContent","columnWidths":[null,null],"rows":[{"cells":[{"type":"tableCell","content":[{"type":"text","text":"Table Cell","styles":{}}],"props":{"colspan":1,"rowspan":1,"backgroundColor":"default","textColor":"default","textAlignment":"left"}},{"type":"tableCell","content":[{"type":"text","text":"Table Cell","styles":{}}],"props":{"colspan":1,"rowspan":1,"backgroundColor":"default","textColor":"default","textAlignment":"left"}}]},{"cells":[{"type":"tableCell","content":[{"type":"text","text":"Table Cell","styles":{}}],"props":{"colspan":1,"rowspan":1,"backgroundColor":"default","textColor":"default","textAlignment":"left"}},{"type":"tableCell","content":[{"type":"text","text":"Table Cell","styles":{}}],"props":{"colspan":1,"rowspan":1,"backgroundColor":"default","textColor":"default","textAlignment":"left"}}]}]},"children":[]}],"blockCutAtStart":"3"} -{"_meta":{"startPos":47,"endPos":276},"blocks":[{"id":"3","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"ragraph 2","styles":{}}],"children":[]},{"id":"4","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]},{"id":"5","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"Heading 2","styles":{}}],"children":[{"id":"6","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},{"id":"7","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},{"id":"8","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]}]},{"id":"9","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"Bold","styles":{"bold":true}},{"type":"text","text":"Italic","styles":{"italic":true}},{"type":"text","text":"Regular","styles":{}}],"children":[{"id":"10","type":"image","props":{"backgroundColor":"default","textAlignment":"left","name":"","url":"https://ralfvanveen.com/wp-content/uploads/2021/06/Placeholder-_-Glossary.svg","caption":"","showPreview":true},"children":[{"id":"11","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph","styles":{}}],"children":[]}]}]},{"id":"12","type":"table","props":{"textColor":"default"},"content":{"type":"tableContent","columnWidths":[null,null],"rows":[{"cells":[{"type":"tableCell","content":[{"type":"text","text":"Table Cell","styles":{}}],"props":{"colspan":1,"rowspan":1,"backgroundColor":"default","textColor":"default","textAlignment":"left"}},{"type":"tableCell","content":[{"type":"text","text":"Table Cell","styles":{}}],"props":{"colspan":1,"rowspan":1,"backgroundColor":"default","textColor":"default","textAlignment":"left"}}]},{"cells":[{"type":"tableCell","content":[{"type":"text","text":"Table Cell","styles":{}}],"props":{"colspan":1,"rowspan":1,"backgroundColor":"default","textColor":"default","textAlignment":"left"}},{"type":"tableCell","content":[{"type":"text","text":"Table Cell","styles":{}}],"props":{"colspan":1,"rowspan":1,"backgroundColor":"default","textColor":"default","textAlignment":"left"}}]}]},"children":[]}],"blockCutAtStart":"3"} -{"_meta":{"startPos":48,"endPos":276},"blocks":[{"id":"3","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"agraph 2","styles":{}}],"children":[]},{"id":"4","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]},{"id":"5","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"Heading 2","styles":{}}],"children":[{"id":"6","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},{"id":"7","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},{"id":"8","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]}]},{"id":"9","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"Bold","styles":{"bold":true}},{"type":"text","text":"Italic","styles":{"italic":true}},{"type":"text","text":"Regular","styles":{}}],"children":[{"id":"10","type":"image","props":{"backgroundColor":"default","textAlignment":"left","name":"","url":"https://ralfvanveen.com/wp-content/uploads/2021/06/Placeholder-_-Glossary.svg","caption":"","showPreview":true},"children":[{"id":"11","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph","styles":{}}],"children":[]}]}]},{"id":"12","type":"table","props":{"textColor":"default"},"content":{"type":"tableContent","columnWidths":[null,null],"rows":[{"cells":[{"type":"tableCell","content":[{"type":"text","text":"Table Cell","styles":{}}],"props":{"colspan":1,"rowspan":1,"backgroundColor":"default","textColor":"default","textAlignment":"left"}},{"type":"tableCell","content":[{"type":"text","text":"Table Cell","styles":{}}],"props":{"colspan":1,"rowspan":1,"backgroundColor":"default","textColor":"default","textAlignment":"left"}}]},{"cells":[{"type":"tableCell","content":[{"type":"text","text":"Table Cell","styles":{}}],"props":{"colspan":1,"rowspan":1,"backgroundColor":"default","textColor":"default","textAlignment":"left"}},{"type":"tableCell","content":[{"type":"text","text":"Table Cell","styles":{}}],"props":{"colspan":1,"rowspan":1,"backgroundColor":"default","textColor":"default","textAlignment":"left"}}]}]},"children":[]}],"blockCutAtStart":"3"} -{"_meta":{"startPos":49,"endPos":276},"blocks":[{"id":"3","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"graph 2","styles":{}}],"children":[]},{"id":"4","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]},{"id":"5","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"Heading 2","styles":{}}],"children":[{"id":"6","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},{"id":"7","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},{"id":"8","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]}]},{"id":"9","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"Bold","styles":{"bold":true}},{"type":"text","text":"Italic","styles":{"italic":true}},{"type":"text","text":"Regular","styles":{}}],"children":[{"id":"10","type":"image","props":{"backgroundColor":"default","textAlignment":"left","name":"","url":"https://ralfvanveen.com/wp-content/uploads/2021/06/Placeholder-_-Glossary.svg","caption":"","showPreview":true},"children":[{"id":"11","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph","styles":{}}],"children":[]}]}]},{"id":"12","type":"table","props":{"textColor":"default"},"content":{"type":"tableContent","columnWidths":[null,null],"rows":[{"cells":[{"type":"tableCell","content":[{"type":"text","text":"Table Cell","styles":{}}],"props":{"colspan":1,"rowspan":1,"backgroundColor":"default","textColor":"default","textAlignment":"left"}},{"type":"tableCell","content":[{"type":"text","text":"Table Cell","styles":{}}],"props":{"colspan":1,"rowspan":1,"backgroundColor":"default","textColor":"default","textAlignment":"left"}}]},{"cells":[{"type":"tableCell","content":[{"type":"text","text":"Table Cell","styles":{}}],"props":{"colspan":1,"rowspan":1,"backgroundColor":"default","textColor":"default","textAlignment":"left"}},{"type":"tableCell","content":[{"type":"text","text":"Table Cell","styles":{}}],"props":{"colspan":1,"rowspan":1,"backgroundColor":"default","textColor":"default","textAlignment":"left"}}]}]},"children":[]}],"blockCutAtStart":"3"} -{"_meta":{"startPos":50,"endPos":276},"blocks":[{"id":"3","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"raph 2","styles":{}}],"children":[]},{"id":"4","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]},{"id":"5","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"Heading 2","styles":{}}],"children":[{"id":"6","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},{"id":"7","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},{"id":"8","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]}]},{"id":"9","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"Bold","styles":{"bold":true}},{"type":"text","text":"Italic","styles":{"italic":true}},{"type":"text","text":"Regular","styles":{}}],"children":[{"id":"10","type":"image","props":{"backgroundColor":"default","textAlignment":"left","name":"","url":"https://ralfvanveen.com/wp-content/uploads/2021/06/Placeholder-_-Glossary.svg","caption":"","showPreview":true},"children":[{"id":"11","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph","styles":{}}],"children":[]}]}]},{"id":"12","type":"table","props":{"textColor":"default"},"content":{"type":"tableContent","columnWidths":[null,null],"rows":[{"cells":[{"type":"tableCell","content":[{"type":"text","text":"Table Cell","styles":{}}],"props":{"colspan":1,"rowspan":1,"backgroundColor":"default","textColor":"default","textAlignment":"left"}},{"type":"tableCell","content":[{"type":"text","text":"Table Cell","styles":{}}],"props":{"colspan":1,"rowspan":1,"backgroundColor":"default","textColor":"default","textAlignment":"left"}}]},{"cells":[{"type":"tableCell","content":[{"type":"text","text":"Table Cell","styles":{}}],"props":{"colspan":1,"rowspan":1,"backgroundColor":"default","textColor":"default","textAlignment":"left"}},{"type":"tableCell","content":[{"type":"text","text":"Table Cell","styles":{}}],"props":{"colspan":1,"rowspan":1,"backgroundColor":"default","textColor":"default","textAlignment":"left"}}]}]},"children":[]}],"blockCutAtStart":"3"} -{"_meta":{"startPos":51,"endPos":276},"blocks":[{"id":"3","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"aph 2","styles":{}}],"children":[]},{"id":"4","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]},{"id":"5","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"Heading 2","styles":{}}],"children":[{"id":"6","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},{"id":"7","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},{"id":"8","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]}]},{"id":"9","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"Bold","styles":{"bold":true}},{"type":"text","text":"Italic","styles":{"italic":true}},{"type":"text","text":"Regular","styles":{}}],"children":[{"id":"10","type":"image","props":{"backgroundColor":"default","textAlignment":"left","name":"","url":"https://ralfvanveen.com/wp-content/uploads/2021/06/Placeholder-_-Glossary.svg","caption":"","showPreview":true},"children":[{"id":"11","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph","styles":{}}],"children":[]}]}]},{"id":"12","type":"table","props":{"textColor":"default"},"content":{"type":"tableContent","columnWidths":[null,null],"rows":[{"cells":[{"type":"tableCell","content":[{"type":"text","text":"Table Cell","styles":{}}],"props":{"colspan":1,"rowspan":1,"backgroundColor":"default","textColor":"default","textAlignment":"left"}},{"type":"tableCell","content":[{"type":"text","text":"Table Cell","styles":{}}],"props":{"colspan":1,"rowspan":1,"backgroundColor":"default","textColor":"default","textAlignment":"left"}}]},{"cells":[{"type":"tableCell","content":[{"type":"text","text":"Table Cell","styles":{}}],"props":{"colspan":1,"rowspan":1,"backgroundColor":"default","textColor":"default","textAlignment":"left"}},{"type":"tableCell","content":[{"type":"text","text":"Table Cell","styles":{}}],"props":{"colspan":1,"rowspan":1,"backgroundColor":"default","textColor":"default","textAlignment":"left"}}]}]},"children":[]}],"blockCutAtStart":"3"} -{"_meta":{"startPos":52,"endPos":276},"blocks":[{"id":"3","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"ph 2","styles":{}}],"children":[]},{"id":"4","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]},{"id":"5","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"Heading 2","styles":{}}],"children":[{"id":"6","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},{"id":"7","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},{"id":"8","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]}]},{"id":"9","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"Bold","styles":{"bold":true}},{"type":"text","text":"Italic","styles":{"italic":true}},{"type":"text","text":"Regular","styles":{}}],"children":[{"id":"10","type":"image","props":{"backgroundColor":"default","textAlignment":"left","name":"","url":"https://ralfvanveen.com/wp-content/uploads/2021/06/Placeholder-_-Glossary.svg","caption":"","showPreview":true},"children":[{"id":"11","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph","styles":{}}],"children":[]}]}]},{"id":"12","type":"table","props":{"textColor":"default"},"content":{"type":"tableContent","columnWidths":[null,null],"rows":[{"cells":[{"type":"tableCell","content":[{"type":"text","text":"Table Cell","styles":{}}],"props":{"colspan":1,"rowspan":1,"backgroundColor":"default","textColor":"default","textAlignment":"left"}},{"type":"tableCell","content":[{"type":"text","text":"Table Cell","styles":{}}],"props":{"colspan":1,"rowspan":1,"backgroundColor":"default","textColor":"default","textAlignment":"left"}}]},{"cells":[{"type":"tableCell","content":[{"type":"text","text":"Table Cell","styles":{}}],"props":{"colspan":1,"rowspan":1,"backgroundColor":"default","textColor":"default","textAlignment":"left"}},{"type":"tableCell","content":[{"type":"text","text":"Table Cell","styles":{}}],"props":{"colspan":1,"rowspan":1,"backgroundColor":"default","textColor":"default","textAlignment":"left"}}]}]},"children":[]}],"blockCutAtStart":"3"} -{"_meta":{"startPos":53,"endPos":276},"blocks":[{"id":"3","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"h 2","styles":{}}],"children":[]},{"id":"4","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]},{"id":"5","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"Heading 2","styles":{}}],"children":[{"id":"6","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},{"id":"7","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},{"id":"8","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]}]},{"id":"9","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"Bold","styles":{"bold":true}},{"type":"text","text":"Italic","styles":{"italic":true}},{"type":"text","text":"Regular","styles":{}}],"children":[{"id":"10","type":"image","props":{"backgroundColor":"default","textAlignment":"left","name":"","url":"https://ralfvanveen.com/wp-content/uploads/2021/06/Placeholder-_-Glossary.svg","caption":"","showPreview":true},"children":[{"id":"11","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph","styles":{}}],"children":[]}]}]},{"id":"12","type":"table","props":{"textColor":"default"},"content":{"type":"tableContent","columnWidths":[null,null],"rows":[{"cells":[{"type":"tableCell","content":[{"type":"text","text":"Table Cell","styles":{}}],"props":{"colspan":1,"rowspan":1,"backgroundColor":"default","textColor":"default","textAlignment":"left"}},{"type":"tableCell","content":[{"type":"text","text":"Table Cell","styles":{}}],"props":{"colspan":1,"rowspan":1,"backgroundColor":"default","textColor":"default","textAlignment":"left"}}]},{"cells":[{"type":"tableCell","content":[{"type":"text","text":"Table Cell","styles":{}}],"props":{"colspan":1,"rowspan":1,"backgroundColor":"default","textColor":"default","textAlignment":"left"}},{"type":"tableCell","content":[{"type":"text","text":"Table Cell","styles":{}}],"props":{"colspan":1,"rowspan":1,"backgroundColor":"default","textColor":"default","textAlignment":"left"}}]}]},"children":[]}],"blockCutAtStart":"3"} -{"_meta":{"startPos":54,"endPos":276},"blocks":[{"id":"3","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":" 2","styles":{}}],"children":[]},{"id":"4","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]},{"id":"5","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"Heading 2","styles":{}}],"children":[{"id":"6","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},{"id":"7","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},{"id":"8","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]}]},{"id":"9","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"Bold","styles":{"bold":true}},{"type":"text","text":"Italic","styles":{"italic":true}},{"type":"text","text":"Regular","styles":{}}],"children":[{"id":"10","type":"image","props":{"backgroundColor":"default","textAlignment":"left","name":"","url":"https://ralfvanveen.com/wp-content/uploads/2021/06/Placeholder-_-Glossary.svg","caption":"","showPreview":true},"children":[{"id":"11","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph","styles":{}}],"children":[]}]}]},{"id":"12","type":"table","props":{"textColor":"default"},"content":{"type":"tableContent","columnWidths":[null,null],"rows":[{"cells":[{"type":"tableCell","content":[{"type":"text","text":"Table Cell","styles":{}}],"props":{"colspan":1,"rowspan":1,"backgroundColor":"default","textColor":"default","textAlignment":"left"}},{"type":"tableCell","content":[{"type":"text","text":"Table Cell","styles":{}}],"props":{"colspan":1,"rowspan":1,"backgroundColor":"default","textColor":"default","textAlignment":"left"}}]},{"cells":[{"type":"tableCell","content":[{"type":"text","text":"Table Cell","styles":{}}],"props":{"colspan":1,"rowspan":1,"backgroundColor":"default","textColor":"default","textAlignment":"left"}},{"type":"tableCell","content":[{"type":"text","text":"Table Cell","styles":{}}],"props":{"colspan":1,"rowspan":1,"backgroundColor":"default","textColor":"default","textAlignment":"left"}}]}]},"children":[]}],"blockCutAtStart":"3"} -{"_meta":{"startPos":55,"endPos":276},"blocks":[{"id":"3","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"2","styles":{}}],"children":[]},{"id":"4","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]},{"id":"5","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"Heading 2","styles":{}}],"children":[{"id":"6","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},{"id":"7","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},{"id":"8","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]}]},{"id":"9","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"Bold","styles":{"bold":true}},{"type":"text","text":"Italic","styles":{"italic":true}},{"type":"text","text":"Regular","styles":{}}],"children":[{"id":"10","type":"image","props":{"backgroundColor":"default","textAlignment":"left","name":"","url":"https://ralfvanveen.com/wp-content/uploads/2021/06/Placeholder-_-Glossary.svg","caption":"","showPreview":true},"children":[{"id":"11","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph","styles":{}}],"children":[]}]}]},{"id":"12","type":"table","props":{"textColor":"default"},"content":{"type":"tableContent","columnWidths":[null,null],"rows":[{"cells":[{"type":"tableCell","content":[{"type":"text","text":"Table Cell","styles":{}}],"props":{"colspan":1,"rowspan":1,"backgroundColor":"default","textColor":"default","textAlignment":"left"}},{"type":"tableCell","content":[{"type":"text","text":"Table Cell","styles":{}}],"props":{"colspan":1,"rowspan":1,"backgroundColor":"default","textColor":"default","textAlignment":"left"}}]},{"cells":[{"type":"tableCell","content":[{"type":"text","text":"Table Cell","styles":{}}],"props":{"colspan":1,"rowspan":1,"backgroundColor":"default","textColor":"default","textAlignment":"left"}},{"type":"tableCell","content":[{"type":"text","text":"Table Cell","styles":{}}],"props":{"colspan":1,"rowspan":1,"backgroundColor":"default","textColor":"default","textAlignment":"left"}}]}]},"children":[]}],"blockCutAtStart":"3"} -{"_meta":{"startPos":58,"endPos":276},"blocks":[{"id":"4","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]},{"id":"5","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"Heading 2","styles":{}}],"children":[{"id":"6","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},{"id":"7","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},{"id":"8","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]}]},{"id":"9","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"Bold","styles":{"bold":true}},{"type":"text","text":"Italic","styles":{"italic":true}},{"type":"text","text":"Regular","styles":{}}],"children":[{"id":"10","type":"image","props":{"backgroundColor":"default","textAlignment":"left","name":"","url":"https://ralfvanveen.com/wp-content/uploads/2021/06/Placeholder-_-Glossary.svg","caption":"","showPreview":true},"children":[{"id":"11","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph","styles":{}}],"children":[]}]}]},{"id":"12","type":"table","props":{"textColor":"default"},"content":{"type":"tableContent","columnWidths":[null,null],"rows":[{"cells":[{"type":"tableCell","content":[{"type":"text","text":"Table Cell","styles":{}}],"props":{"colspan":1,"rowspan":1,"backgroundColor":"default","textColor":"default","textAlignment":"left"}},{"type":"tableCell","content":[{"type":"text","text":"Table Cell","styles":{}}],"props":{"colspan":1,"rowspan":1,"backgroundColor":"default","textColor":"default","textAlignment":"left"}}]},{"cells":[{"type":"tableCell","content":[{"type":"text","text":"Table Cell","styles":{}}],"props":{"colspan":1,"rowspan":1,"backgroundColor":"default","textColor":"default","textAlignment":"left"}},{"type":"tableCell","content":[{"type":"text","text":"Table Cell","styles":{}}],"props":{"colspan":1,"rowspan":1,"backgroundColor":"default","textColor":"default","textAlignment":"left"}}]}]},"children":[]}]} -{"_meta":{"startPos":58,"endPos":276},"blocks":[{"id":"4","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]},{"id":"5","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"Heading 2","styles":{}}],"children":[{"id":"6","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},{"id":"7","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},{"id":"8","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]}]},{"id":"9","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"Bold","styles":{"bold":true}},{"type":"text","text":"Italic","styles":{"italic":true}},{"type":"text","text":"Regular","styles":{}}],"children":[{"id":"10","type":"image","props":{"backgroundColor":"default","textAlignment":"left","name":"","url":"https://ralfvanveen.com/wp-content/uploads/2021/06/Placeholder-_-Glossary.svg","caption":"","showPreview":true},"children":[{"id":"11","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph","styles":{}}],"children":[]}]}]},{"id":"12","type":"table","props":{"textColor":"default"},"content":{"type":"tableContent","columnWidths":[null,null],"rows":[{"cells":[{"type":"tableCell","content":[{"type":"text","text":"Table Cell","styles":{}}],"props":{"colspan":1,"rowspan":1,"backgroundColor":"default","textColor":"default","textAlignment":"left"}},{"type":"tableCell","content":[{"type":"text","text":"Table Cell","styles":{}}],"props":{"colspan":1,"rowspan":1,"backgroundColor":"default","textColor":"default","textAlignment":"left"}}]},{"cells":[{"type":"tableCell","content":[{"type":"text","text":"Table Cell","styles":{}}],"props":{"colspan":1,"rowspan":1,"backgroundColor":"default","textColor":"default","textAlignment":"left"}},{"type":"tableCell","content":[{"type":"text","text":"Table Cell","styles":{}}],"props":{"colspan":1,"rowspan":1,"backgroundColor":"default","textColor":"default","textAlignment":"left"}}]}]},"children":[]}]} -{"_meta":{"startPos":58,"endPos":276},"blocks":[{"id":"4","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]},{"id":"5","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"Heading 2","styles":{}}],"children":[{"id":"6","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},{"id":"7","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},{"id":"8","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]}]},{"id":"9","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"Bold","styles":{"bold":true}},{"type":"text","text":"Italic","styles":{"italic":true}},{"type":"text","text":"Regular","styles":{}}],"children":[{"id":"10","type":"image","props":{"backgroundColor":"default","textAlignment":"left","name":"","url":"https://ralfvanveen.com/wp-content/uploads/2021/06/Placeholder-_-Glossary.svg","caption":"","showPreview":true},"children":[{"id":"11","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph","styles":{}}],"children":[]}]}]},{"id":"12","type":"table","props":{"textColor":"default"},"content":{"type":"tableContent","columnWidths":[null,null],"rows":[{"cells":[{"type":"tableCell","content":[{"type":"text","text":"Table Cell","styles":{}}],"props":{"colspan":1,"rowspan":1,"backgroundColor":"default","textColor":"default","textAlignment":"left"}},{"type":"tableCell","content":[{"type":"text","text":"Table Cell","styles":{}}],"props":{"colspan":1,"rowspan":1,"backgroundColor":"default","textColor":"default","textAlignment":"left"}}]},{"cells":[{"type":"tableCell","content":[{"type":"text","text":"Table Cell","styles":{}}],"props":{"colspan":1,"rowspan":1,"backgroundColor":"default","textColor":"default","textAlignment":"left"}},{"type":"tableCell","content":[{"type":"text","text":"Table Cell","styles":{}}],"props":{"colspan":1,"rowspan":1,"backgroundColor":"default","textColor":"default","textAlignment":"left"}}]}]},"children":[]}]} -{"_meta":{"startPos":58,"endPos":276},"blocks":[{"id":"4","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]},{"id":"5","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"Heading 2","styles":{}}],"children":[{"id":"6","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},{"id":"7","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},{"id":"8","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]}]},{"id":"9","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"Bold","styles":{"bold":true}},{"type":"text","text":"Italic","styles":{"italic":true}},{"type":"text","text":"Regular","styles":{}}],"children":[{"id":"10","type":"image","props":{"backgroundColor":"default","textAlignment":"left","name":"","url":"https://ralfvanveen.com/wp-content/uploads/2021/06/Placeholder-_-Glossary.svg","caption":"","showPreview":true},"children":[{"id":"11","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph","styles":{}}],"children":[]}]}]},{"id":"12","type":"table","props":{"textColor":"default"},"content":{"type":"tableContent","columnWidths":[null,null],"rows":[{"cells":[{"type":"tableCell","content":[{"type":"text","text":"Table Cell","styles":{}}],"props":{"colspan":1,"rowspan":1,"backgroundColor":"default","textColor":"default","textAlignment":"left"}},{"type":"tableCell","content":[{"type":"text","text":"Table Cell","styles":{}}],"props":{"colspan":1,"rowspan":1,"backgroundColor":"default","textColor":"default","textAlignment":"left"}}]},{"cells":[{"type":"tableCell","content":[{"type":"text","text":"Table Cell","styles":{}}],"props":{"colspan":1,"rowspan":1,"backgroundColor":"default","textColor":"default","textAlignment":"left"}},{"type":"tableCell","content":[{"type":"text","text":"Table Cell","styles":{}}],"props":{"colspan":1,"rowspan":1,"backgroundColor":"default","textColor":"default","textAlignment":"left"}}]}]},"children":[]}]} -{"_meta":{"startPos":58,"endPos":276},"blocks":[{"id":"4","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]},{"id":"5","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"Heading 2","styles":{}}],"children":[{"id":"6","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},{"id":"7","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},{"id":"8","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]}]},{"id":"9","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"Bold","styles":{"bold":true}},{"type":"text","text":"Italic","styles":{"italic":true}},{"type":"text","text":"Regular","styles":{}}],"children":[{"id":"10","type":"image","props":{"backgroundColor":"default","textAlignment":"left","name":"","url":"https://ralfvanveen.com/wp-content/uploads/2021/06/Placeholder-_-Glossary.svg","caption":"","showPreview":true},"children":[{"id":"11","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph","styles":{}}],"children":[]}]}]},{"id":"12","type":"table","props":{"textColor":"default"},"content":{"type":"tableContent","columnWidths":[null,null],"rows":[{"cells":[{"type":"tableCell","content":[{"type":"text","text":"Table Cell","styles":{}}],"props":{"colspan":1,"rowspan":1,"backgroundColor":"default","textColor":"default","textAlignment":"left"}},{"type":"tableCell","content":[{"type":"text","text":"Table Cell","styles":{}}],"props":{"colspan":1,"rowspan":1,"backgroundColor":"default","textColor":"default","textAlignment":"left"}}]},{"cells":[{"type":"tableCell","content":[{"type":"text","text":"Table Cell","styles":{}}],"props":{"colspan":1,"rowspan":1,"backgroundColor":"default","textColor":"default","textAlignment":"left"}},{"type":"tableCell","content":[{"type":"text","text":"Table Cell","styles":{}}],"props":{"colspan":1,"rowspan":1,"backgroundColor":"default","textColor":"default","textAlignment":"left"}}]}]},"children":[]}]} -{"_meta":{"startPos":61,"endPos":276},"blocks":[{"id":"4","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"ested Paragraph 3","styles":{}}],"children":[]},{"id":"5","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"Heading 2","styles":{}}],"children":[{"id":"6","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},{"id":"7","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},{"id":"8","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]}]},{"id":"9","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"Bold","styles":{"bold":true}},{"type":"text","text":"Italic","styles":{"italic":true}},{"type":"text","text":"Regular","styles":{}}],"children":[{"id":"10","type":"image","props":{"backgroundColor":"default","textAlignment":"left","name":"","url":"https://ralfvanveen.com/wp-content/uploads/2021/06/Placeholder-_-Glossary.svg","caption":"","showPreview":true},"children":[{"id":"11","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph","styles":{}}],"children":[]}]}]},{"id":"12","type":"table","props":{"textColor":"default"},"content":{"type":"tableContent","columnWidths":[null,null],"rows":[{"cells":[{"type":"tableCell","content":[{"type":"text","text":"Table Cell","styles":{}}],"props":{"colspan":1,"rowspan":1,"backgroundColor":"default","textColor":"default","textAlignment":"left"}},{"type":"tableCell","content":[{"type":"text","text":"Table Cell","styles":{}}],"props":{"colspan":1,"rowspan":1,"backgroundColor":"default","textColor":"default","textAlignment":"left"}}]},{"cells":[{"type":"tableCell","content":[{"type":"text","text":"Table Cell","styles":{}}],"props":{"colspan":1,"rowspan":1,"backgroundColor":"default","textColor":"default","textAlignment":"left"}},{"type":"tableCell","content":[{"type":"text","text":"Table Cell","styles":{}}],"props":{"colspan":1,"rowspan":1,"backgroundColor":"default","textColor":"default","textAlignment":"left"}}]}]},"children":[]}],"blockCutAtStart":"4"} -{"_meta":{"startPos":62,"endPos":276},"blocks":[{"id":"4","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"sted Paragraph 3","styles":{}}],"children":[]},{"id":"5","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"Heading 2","styles":{}}],"children":[{"id":"6","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},{"id":"7","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},{"id":"8","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]}]},{"id":"9","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"Bold","styles":{"bold":true}},{"type":"text","text":"Italic","styles":{"italic":true}},{"type":"text","text":"Regular","styles":{}}],"children":[{"id":"10","type":"image","props":{"backgroundColor":"default","textAlignment":"left","name":"","url":"https://ralfvanveen.com/wp-content/uploads/2021/06/Placeholder-_-Glossary.svg","caption":"","showPreview":true},"children":[{"id":"11","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph","styles":{}}],"children":[]}]}]},{"id":"12","type":"table","props":{"textColor":"default"},"content":{"type":"tableContent","columnWidths":[null,null],"rows":[{"cells":[{"type":"tableCell","content":[{"type":"text","text":"Table Cell","styles":{}}],"props":{"colspan":1,"rowspan":1,"backgroundColor":"default","textColor":"default","textAlignment":"left"}},{"type":"tableCell","content":[{"type":"text","text":"Table Cell","styles":{}}],"props":{"colspan":1,"rowspan":1,"backgroundColor":"default","textColor":"default","textAlignment":"left"}}]},{"cells":[{"type":"tableCell","content":[{"type":"text","text":"Table Cell","styles":{}}],"props":{"colspan":1,"rowspan":1,"backgroundColor":"default","textColor":"default","textAlignment":"left"}},{"type":"tableCell","content":[{"type":"text","text":"Table Cell","styles":{}}],"props":{"colspan":1,"rowspan":1,"backgroundColor":"default","textColor":"default","textAlignment":"left"}}]}]},"children":[]}],"blockCutAtStart":"4"} -{"_meta":{"startPos":63,"endPos":276},"blocks":[{"id":"4","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"ted Paragraph 3","styles":{}}],"children":[]},{"id":"5","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"Heading 2","styles":{}}],"children":[{"id":"6","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},{"id":"7","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},{"id":"8","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]}]},{"id":"9","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"Bold","styles":{"bold":true}},{"type":"text","text":"Italic","styles":{"italic":true}},{"type":"text","text":"Regular","styles":{}}],"children":[{"id":"10","type":"image","props":{"backgroundColor":"default","textAlignment":"left","name":"","url":"https://ralfvanveen.com/wp-content/uploads/2021/06/Placeholder-_-Glossary.svg","caption":"","showPreview":true},"children":[{"id":"11","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph","styles":{}}],"children":[]}]}]},{"id":"12","type":"table","props":{"textColor":"default"},"content":{"type":"tableContent","columnWidths":[null,null],"rows":[{"cells":[{"type":"tableCell","content":[{"type":"text","text":"Table Cell","styles":{}}],"props":{"colspan":1,"rowspan":1,"backgroundColor":"default","textColor":"default","textAlignment":"left"}},{"type":"tableCell","content":[{"type":"text","text":"Table Cell","styles":{}}],"props":{"colspan":1,"rowspan":1,"backgroundColor":"default","textColor":"default","textAlignment":"left"}}]},{"cells":[{"type":"tableCell","content":[{"type":"text","text":"Table Cell","styles":{}}],"props":{"colspan":1,"rowspan":1,"backgroundColor":"default","textColor":"default","textAlignment":"left"}},{"type":"tableCell","content":[{"type":"text","text":"Table Cell","styles":{}}],"props":{"colspan":1,"rowspan":1,"backgroundColor":"default","textColor":"default","textAlignment":"left"}}]}]},"children":[]}],"blockCutAtStart":"4"} -{"_meta":{"startPos":64,"endPos":276},"blocks":[{"id":"4","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"ed Paragraph 3","styles":{}}],"children":[]},{"id":"5","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"Heading 2","styles":{}}],"children":[{"id":"6","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},{"id":"7","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},{"id":"8","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]}]},{"id":"9","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"Bold","styles":{"bold":true}},{"type":"text","text":"Italic","styles":{"italic":true}},{"type":"text","text":"Regular","styles":{}}],"children":[{"id":"10","type":"image","props":{"backgroundColor":"default","textAlignment":"left","name":"","url":"https://ralfvanveen.com/wp-content/uploads/2021/06/Placeholder-_-Glossary.svg","caption":"","showPreview":true},"children":[{"id":"11","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph","styles":{}}],"children":[]}]}]},{"id":"12","type":"table","props":{"textColor":"default"},"content":{"type":"tableContent","columnWidths":[null,null],"rows":[{"cells":[{"type":"tableCell","content":[{"type":"text","text":"Table Cell","styles":{}}],"props":{"colspan":1,"rowspan":1,"backgroundColor":"default","textColor":"default","textAlignment":"left"}},{"type":"tableCell","content":[{"type":"text","text":"Table Cell","styles":{}}],"props":{"colspan":1,"rowspan":1,"backgroundColor":"default","textColor":"default","textAlignment":"left"}}]},{"cells":[{"type":"tableCell","content":[{"type":"text","text":"Table Cell","styles":{}}],"props":{"colspan":1,"rowspan":1,"backgroundColor":"default","textColor":"default","textAlignment":"left"}},{"type":"tableCell","content":[{"type":"text","text":"Table Cell","styles":{}}],"props":{"colspan":1,"rowspan":1,"backgroundColor":"default","textColor":"default","textAlignment":"left"}}]}]},"children":[]}],"blockCutAtStart":"4"} -{"_meta":{"startPos":65,"endPos":276},"blocks":[{"id":"4","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"d Paragraph 3","styles":{}}],"children":[]},{"id":"5","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"Heading 2","styles":{}}],"children":[{"id":"6","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},{"id":"7","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},{"id":"8","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]}]},{"id":"9","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"Bold","styles":{"bold":true}},{"type":"text","text":"Italic","styles":{"italic":true}},{"type":"text","text":"Regular","styles":{}}],"children":[{"id":"10","type":"image","props":{"backgroundColor":"default","textAlignment":"left","name":"","url":"https://ralfvanveen.com/wp-content/uploads/2021/06/Placeholder-_-Glossary.svg","caption":"","showPreview":true},"children":[{"id":"11","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph","styles":{}}],"children":[]}]}]},{"id":"12","type":"table","props":{"textColor":"default"},"content":{"type":"tableContent","columnWidths":[null,null],"rows":[{"cells":[{"type":"tableCell","content":[{"type":"text","text":"Table Cell","styles":{}}],"props":{"colspan":1,"rowspan":1,"backgroundColor":"default","textColor":"default","textAlignment":"left"}},{"type":"tableCell","content":[{"type":"text","text":"Table Cell","styles":{}}],"props":{"colspan":1,"rowspan":1,"backgroundColor":"default","textColor":"default","textAlignment":"left"}}]},{"cells":[{"type":"tableCell","content":[{"type":"text","text":"Table Cell","styles":{}}],"props":{"colspan":1,"rowspan":1,"backgroundColor":"default","textColor":"default","textAlignment":"left"}},{"type":"tableCell","content":[{"type":"text","text":"Table Cell","styles":{}}],"props":{"colspan":1,"rowspan":1,"backgroundColor":"default","textColor":"default","textAlignment":"left"}}]}]},"children":[]}],"blockCutAtStart":"4"} -{"_meta":{"startPos":66,"endPos":276},"blocks":[{"id":"4","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":" Paragraph 3","styles":{}}],"children":[]},{"id":"5","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"Heading 2","styles":{}}],"children":[{"id":"6","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},{"id":"7","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},{"id":"8","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]}]},{"id":"9","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"Bold","styles":{"bold":true}},{"type":"text","text":"Italic","styles":{"italic":true}},{"type":"text","text":"Regular","styles":{}}],"children":[{"id":"10","type":"image","props":{"backgroundColor":"default","textAlignment":"left","name":"","url":"https://ralfvanveen.com/wp-content/uploads/2021/06/Placeholder-_-Glossary.svg","caption":"","showPreview":true},"children":[{"id":"11","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph","styles":{}}],"children":[]}]}]},{"id":"12","type":"table","props":{"textColor":"default"},"content":{"type":"tableContent","columnWidths":[null,null],"rows":[{"cells":[{"type":"tableCell","content":[{"type":"text","text":"Table Cell","styles":{}}],"props":{"colspan":1,"rowspan":1,"backgroundColor":"default","textColor":"default","textAlignment":"left"}},{"type":"tableCell","content":[{"type":"text","text":"Table Cell","styles":{}}],"props":{"colspan":1,"rowspan":1,"backgroundColor":"default","textColor":"default","textAlignment":"left"}}]},{"cells":[{"type":"tableCell","content":[{"type":"text","text":"Table Cell","styles":{}}],"props":{"colspan":1,"rowspan":1,"backgroundColor":"default","textColor":"default","textAlignment":"left"}},{"type":"tableCell","content":[{"type":"text","text":"Table Cell","styles":{}}],"props":{"colspan":1,"rowspan":1,"backgroundColor":"default","textColor":"default","textAlignment":"left"}}]}]},"children":[]}],"blockCutAtStart":"4"} -{"_meta":{"startPos":67,"endPos":276},"blocks":[{"id":"4","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Paragraph 3","styles":{}}],"children":[]},{"id":"5","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"Heading 2","styles":{}}],"children":[{"id":"6","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},{"id":"7","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},{"id":"8","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]}]},{"id":"9","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"Bold","styles":{"bold":true}},{"type":"text","text":"Italic","styles":{"italic":true}},{"type":"text","text":"Regular","styles":{}}],"children":[{"id":"10","type":"image","props":{"backgroundColor":"default","textAlignment":"left","name":"","url":"https://ralfvanveen.com/wp-content/uploads/2021/06/Placeholder-_-Glossary.svg","caption":"","showPreview":true},"children":[{"id":"11","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph","styles":{}}],"children":[]}]}]},{"id":"12","type":"table","props":{"textColor":"default"},"content":{"type":"tableContent","columnWidths":[null,null],"rows":[{"cells":[{"type":"tableCell","content":[{"type":"text","text":"Table Cell","styles":{}}],"props":{"colspan":1,"rowspan":1,"backgroundColor":"default","textColor":"default","textAlignment":"left"}},{"type":"tableCell","content":[{"type":"text","text":"Table Cell","styles":{}}],"props":{"colspan":1,"rowspan":1,"backgroundColor":"default","textColor":"default","textAlignment":"left"}}]},{"cells":[{"type":"tableCell","content":[{"type":"text","text":"Table Cell","styles":{}}],"props":{"colspan":1,"rowspan":1,"backgroundColor":"default","textColor":"default","textAlignment":"left"}},{"type":"tableCell","content":[{"type":"text","text":"Table Cell","styles":{}}],"props":{"colspan":1,"rowspan":1,"backgroundColor":"default","textColor":"default","textAlignment":"left"}}]}]},"children":[]}],"blockCutAtStart":"4"} -{"_meta":{"startPos":68,"endPos":276},"blocks":[{"id":"4","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"aragraph 3","styles":{}}],"children":[]},{"id":"5","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"Heading 2","styles":{}}],"children":[{"id":"6","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},{"id":"7","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},{"id":"8","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]}]},{"id":"9","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"Bold","styles":{"bold":true}},{"type":"text","text":"Italic","styles":{"italic":true}},{"type":"text","text":"Regular","styles":{}}],"children":[{"id":"10","type":"image","props":{"backgroundColor":"default","textAlignment":"left","name":"","url":"https://ralfvanveen.com/wp-content/uploads/2021/06/Placeholder-_-Glossary.svg","caption":"","showPreview":true},"children":[{"id":"11","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph","styles":{}}],"children":[]}]}]},{"id":"12","type":"table","props":{"textColor":"default"},"content":{"type":"tableContent","columnWidths":[null,null],"rows":[{"cells":[{"type":"tableCell","content":[{"type":"text","text":"Table Cell","styles":{}}],"props":{"colspan":1,"rowspan":1,"backgroundColor":"default","textColor":"default","textAlignment":"left"}},{"type":"tableCell","content":[{"type":"text","text":"Table Cell","styles":{}}],"props":{"colspan":1,"rowspan":1,"backgroundColor":"default","textColor":"default","textAlignment":"left"}}]},{"cells":[{"type":"tableCell","content":[{"type":"text","text":"Table Cell","styles":{}}],"props":{"colspan":1,"rowspan":1,"backgroundColor":"default","textColor":"default","textAlignment":"left"}},{"type":"tableCell","content":[{"type":"text","text":"Table Cell","styles":{}}],"props":{"colspan":1,"rowspan":1,"backgroundColor":"default","textColor":"default","textAlignment":"left"}}]}]},"children":[]}],"blockCutAtStart":"4"} -{"_meta":{"startPos":69,"endPos":276},"blocks":[{"id":"4","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"ragraph 3","styles":{}}],"children":[]},{"id":"5","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"Heading 2","styles":{}}],"children":[{"id":"6","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},{"id":"7","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},{"id":"8","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]}]},{"id":"9","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"Bold","styles":{"bold":true}},{"type":"text","text":"Italic","styles":{"italic":true}},{"type":"text","text":"Regular","styles":{}}],"children":[{"id":"10","type":"image","props":{"backgroundColor":"default","textAlignment":"left","name":"","url":"https://ralfvanveen.com/wp-content/uploads/2021/06/Placeholder-_-Glossary.svg","caption":"","showPreview":true},"children":[{"id":"11","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph","styles":{}}],"children":[]}]}]},{"id":"12","type":"table","props":{"textColor":"default"},"content":{"type":"tableContent","columnWidths":[null,null],"rows":[{"cells":[{"type":"tableCell","content":[{"type":"text","text":"Table Cell","styles":{}}],"props":{"colspan":1,"rowspan":1,"backgroundColor":"default","textColor":"default","textAlignment":"left"}},{"type":"tableCell","content":[{"type":"text","text":"Table Cell","styles":{}}],"props":{"colspan":1,"rowspan":1,"backgroundColor":"default","textColor":"default","textAlignment":"left"}}]},{"cells":[{"type":"tableCell","content":[{"type":"text","text":"Table Cell","styles":{}}],"props":{"colspan":1,"rowspan":1,"backgroundColor":"default","textColor":"default","textAlignment":"left"}},{"type":"tableCell","content":[{"type":"text","text":"Table Cell","styles":{}}],"props":{"colspan":1,"rowspan":1,"backgroundColor":"default","textColor":"default","textAlignment":"left"}}]}]},"children":[]}],"blockCutAtStart":"4"} -{"_meta":{"startPos":70,"endPos":276},"blocks":[{"id":"4","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"agraph 3","styles":{}}],"children":[]},{"id":"5","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"Heading 2","styles":{}}],"children":[{"id":"6","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},{"id":"7","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},{"id":"8","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]}]},{"id":"9","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"Bold","styles":{"bold":true}},{"type":"text","text":"Italic","styles":{"italic":true}},{"type":"text","text":"Regular","styles":{}}],"children":[{"id":"10","type":"image","props":{"backgroundColor":"default","textAlignment":"left","name":"","url":"https://ralfvanveen.com/wp-content/uploads/2021/06/Placeholder-_-Glossary.svg","caption":"","showPreview":true},"children":[{"id":"11","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph","styles":{}}],"children":[]}]}]},{"id":"12","type":"table","props":{"textColor":"default"},"content":{"type":"tableContent","columnWidths":[null,null],"rows":[{"cells":[{"type":"tableCell","content":[{"type":"text","text":"Table Cell","styles":{}}],"props":{"colspan":1,"rowspan":1,"backgroundColor":"default","textColor":"default","textAlignment":"left"}},{"type":"tableCell","content":[{"type":"text","text":"Table Cell","styles":{}}],"props":{"colspan":1,"rowspan":1,"backgroundColor":"default","textColor":"default","textAlignment":"left"}}]},{"cells":[{"type":"tableCell","content":[{"type":"text","text":"Table Cell","styles":{}}],"props":{"colspan":1,"rowspan":1,"backgroundColor":"default","textColor":"default","textAlignment":"left"}},{"type":"tableCell","content":[{"type":"text","text":"Table Cell","styles":{}}],"props":{"colspan":1,"rowspan":1,"backgroundColor":"default","textColor":"default","textAlignment":"left"}}]}]},"children":[]}],"blockCutAtStart":"4"} -{"_meta":{"startPos":71,"endPos":276},"blocks":[{"id":"4","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"graph 3","styles":{}}],"children":[]},{"id":"5","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"Heading 2","styles":{}}],"children":[{"id":"6","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},{"id":"7","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},{"id":"8","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]}]},{"id":"9","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"Bold","styles":{"bold":true}},{"type":"text","text":"Italic","styles":{"italic":true}},{"type":"text","text":"Regular","styles":{}}],"children":[{"id":"10","type":"image","props":{"backgroundColor":"default","textAlignment":"left","name":"","url":"https://ralfvanveen.com/wp-content/uploads/2021/06/Placeholder-_-Glossary.svg","caption":"","showPreview":true},"children":[{"id":"11","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph","styles":{}}],"children":[]}]}]},{"id":"12","type":"table","props":{"textColor":"default"},"content":{"type":"tableContent","columnWidths":[null,null],"rows":[{"cells":[{"type":"tableCell","content":[{"type":"text","text":"Table Cell","styles":{}}],"props":{"colspan":1,"rowspan":1,"backgroundColor":"default","textColor":"default","textAlignment":"left"}},{"type":"tableCell","content":[{"type":"text","text":"Table Cell","styles":{}}],"props":{"colspan":1,"rowspan":1,"backgroundColor":"default","textColor":"default","textAlignment":"left"}}]},{"cells":[{"type":"tableCell","content":[{"type":"text","text":"Table Cell","styles":{}}],"props":{"colspan":1,"rowspan":1,"backgroundColor":"default","textColor":"default","textAlignment":"left"}},{"type":"tableCell","content":[{"type":"text","text":"Table Cell","styles":{}}],"props":{"colspan":1,"rowspan":1,"backgroundColor":"default","textColor":"default","textAlignment":"left"}}]}]},"children":[]}],"blockCutAtStart":"4"} -{"_meta":{"startPos":72,"endPos":276},"blocks":[{"id":"4","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"raph 3","styles":{}}],"children":[]},{"id":"5","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"Heading 2","styles":{}}],"children":[{"id":"6","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},{"id":"7","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},{"id":"8","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]}]},{"id":"9","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"Bold","styles":{"bold":true}},{"type":"text","text":"Italic","styles":{"italic":true}},{"type":"text","text":"Regular","styles":{}}],"children":[{"id":"10","type":"image","props":{"backgroundColor":"default","textAlignment":"left","name":"","url":"https://ralfvanveen.com/wp-content/uploads/2021/06/Placeholder-_-Glossary.svg","caption":"","showPreview":true},"children":[{"id":"11","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph","styles":{}}],"children":[]}]}]},{"id":"12","type":"table","props":{"textColor":"default"},"content":{"type":"tableContent","columnWidths":[null,null],"rows":[{"cells":[{"type":"tableCell","content":[{"type":"text","text":"Table Cell","styles":{}}],"props":{"colspan":1,"rowspan":1,"backgroundColor":"default","textColor":"default","textAlignment":"left"}},{"type":"tableCell","content":[{"type":"text","text":"Table Cell","styles":{}}],"props":{"colspan":1,"rowspan":1,"backgroundColor":"default","textColor":"default","textAlignment":"left"}}]},{"cells":[{"type":"tableCell","content":[{"type":"text","text":"Table Cell","styles":{}}],"props":{"colspan":1,"rowspan":1,"backgroundColor":"default","textColor":"default","textAlignment":"left"}},{"type":"tableCell","content":[{"type":"text","text":"Table Cell","styles":{}}],"props":{"colspan":1,"rowspan":1,"backgroundColor":"default","textColor":"default","textAlignment":"left"}}]}]},"children":[]}],"blockCutAtStart":"4"} -{"_meta":{"startPos":73,"endPos":276},"blocks":[{"id":"4","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"aph 3","styles":{}}],"children":[]},{"id":"5","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"Heading 2","styles":{}}],"children":[{"id":"6","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},{"id":"7","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},{"id":"8","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]}]},{"id":"9","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"Bold","styles":{"bold":true}},{"type":"text","text":"Italic","styles":{"italic":true}},{"type":"text","text":"Regular","styles":{}}],"children":[{"id":"10","type":"image","props":{"backgroundColor":"default","textAlignment":"left","name":"","url":"https://ralfvanveen.com/wp-content/uploads/2021/06/Placeholder-_-Glossary.svg","caption":"","showPreview":true},"children":[{"id":"11","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph","styles":{}}],"children":[]}]}]},{"id":"12","type":"table","props":{"textColor":"default"},"content":{"type":"tableContent","columnWidths":[null,null],"rows":[{"cells":[{"type":"tableCell","content":[{"type":"text","text":"Table Cell","styles":{}}],"props":{"colspan":1,"rowspan":1,"backgroundColor":"default","textColor":"default","textAlignment":"left"}},{"type":"tableCell","content":[{"type":"text","text":"Table Cell","styles":{}}],"props":{"colspan":1,"rowspan":1,"backgroundColor":"default","textColor":"default","textAlignment":"left"}}]},{"cells":[{"type":"tableCell","content":[{"type":"text","text":"Table Cell","styles":{}}],"props":{"colspan":1,"rowspan":1,"backgroundColor":"default","textColor":"default","textAlignment":"left"}},{"type":"tableCell","content":[{"type":"text","text":"Table Cell","styles":{}}],"props":{"colspan":1,"rowspan":1,"backgroundColor":"default","textColor":"default","textAlignment":"left"}}]}]},"children":[]}],"blockCutAtStart":"4"} -{"_meta":{"startPos":74,"endPos":276},"blocks":[{"id":"4","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"ph 3","styles":{}}],"children":[]},{"id":"5","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"Heading 2","styles":{}}],"children":[{"id":"6","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},{"id":"7","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},{"id":"8","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]}]},{"id":"9","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"Bold","styles":{"bold":true}},{"type":"text","text":"Italic","styles":{"italic":true}},{"type":"text","text":"Regular","styles":{}}],"children":[{"id":"10","type":"image","props":{"backgroundColor":"default","textAlignment":"left","name":"","url":"https://ralfvanveen.com/wp-content/uploads/2021/06/Placeholder-_-Glossary.svg","caption":"","showPreview":true},"children":[{"id":"11","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph","styles":{}}],"children":[]}]}]},{"id":"12","type":"table","props":{"textColor":"default"},"content":{"type":"tableContent","columnWidths":[null,null],"rows":[{"cells":[{"type":"tableCell","content":[{"type":"text","text":"Table Cell","styles":{}}],"props":{"colspan":1,"rowspan":1,"backgroundColor":"default","textColor":"default","textAlignment":"left"}},{"type":"tableCell","content":[{"type":"text","text":"Table Cell","styles":{}}],"props":{"colspan":1,"rowspan":1,"backgroundColor":"default","textColor":"default","textAlignment":"left"}}]},{"cells":[{"type":"tableCell","content":[{"type":"text","text":"Table Cell","styles":{}}],"props":{"colspan":1,"rowspan":1,"backgroundColor":"default","textColor":"default","textAlignment":"left"}},{"type":"tableCell","content":[{"type":"text","text":"Table Cell","styles":{}}],"props":{"colspan":1,"rowspan":1,"backgroundColor":"default","textColor":"default","textAlignment":"left"}}]}]},"children":[]}],"blockCutAtStart":"4"} -{"_meta":{"startPos":75,"endPos":276},"blocks":[{"id":"4","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"h 3","styles":{}}],"children":[]},{"id":"5","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"Heading 2","styles":{}}],"children":[{"id":"6","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},{"id":"7","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},{"id":"8","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]}]},{"id":"9","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"Bold","styles":{"bold":true}},{"type":"text","text":"Italic","styles":{"italic":true}},{"type":"text","text":"Regular","styles":{}}],"children":[{"id":"10","type":"image","props":{"backgroundColor":"default","textAlignment":"left","name":"","url":"https://ralfvanveen.com/wp-content/uploads/2021/06/Placeholder-_-Glossary.svg","caption":"","showPreview":true},"children":[{"id":"11","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph","styles":{}}],"children":[]}]}]},{"id":"12","type":"table","props":{"textColor":"default"},"content":{"type":"tableContent","columnWidths":[null,null],"rows":[{"cells":[{"type":"tableCell","content":[{"type":"text","text":"Table Cell","styles":{}}],"props":{"colspan":1,"rowspan":1,"backgroundColor":"default","textColor":"default","textAlignment":"left"}},{"type":"tableCell","content":[{"type":"text","text":"Table Cell","styles":{}}],"props":{"colspan":1,"rowspan":1,"backgroundColor":"default","textColor":"default","textAlignment":"left"}}]},{"cells":[{"type":"tableCell","content":[{"type":"text","text":"Table Cell","styles":{}}],"props":{"colspan":1,"rowspan":1,"backgroundColor":"default","textColor":"default","textAlignment":"left"}},{"type":"tableCell","content":[{"type":"text","text":"Table Cell","styles":{}}],"props":{"colspan":1,"rowspan":1,"backgroundColor":"default","textColor":"default","textAlignment":"left"}}]}]},"children":[]}],"blockCutAtStart":"4"} -{"_meta":{"startPos":76,"endPos":276},"blocks":[{"id":"4","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":" 3","styles":{}}],"children":[]},{"id":"5","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"Heading 2","styles":{}}],"children":[{"id":"6","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},{"id":"7","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},{"id":"8","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]}]},{"id":"9","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"Bold","styles":{"bold":true}},{"type":"text","text":"Italic","styles":{"italic":true}},{"type":"text","text":"Regular","styles":{}}],"children":[{"id":"10","type":"image","props":{"backgroundColor":"default","textAlignment":"left","name":"","url":"https://ralfvanveen.com/wp-content/uploads/2021/06/Placeholder-_-Glossary.svg","caption":"","showPreview":true},"children":[{"id":"11","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph","styles":{}}],"children":[]}]}]},{"id":"12","type":"table","props":{"textColor":"default"},"content":{"type":"tableContent","columnWidths":[null,null],"rows":[{"cells":[{"type":"tableCell","content":[{"type":"text","text":"Table Cell","styles":{}}],"props":{"colspan":1,"rowspan":1,"backgroundColor":"default","textColor":"default","textAlignment":"left"}},{"type":"tableCell","content":[{"type":"text","text":"Table Cell","styles":{}}],"props":{"colspan":1,"rowspan":1,"backgroundColor":"default","textColor":"default","textAlignment":"left"}}]},{"cells":[{"type":"tableCell","content":[{"type":"text","text":"Table Cell","styles":{}}],"props":{"colspan":1,"rowspan":1,"backgroundColor":"default","textColor":"default","textAlignment":"left"}},{"type":"tableCell","content":[{"type":"text","text":"Table Cell","styles":{}}],"props":{"colspan":1,"rowspan":1,"backgroundColor":"default","textColor":"default","textAlignment":"left"}}]}]},"children":[]}],"blockCutAtStart":"4"} -{"_meta":{"startPos":77,"endPos":276},"blocks":[{"id":"4","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"3","styles":{}}],"children":[]},{"id":"5","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"Heading 2","styles":{}}],"children":[{"id":"6","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},{"id":"7","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},{"id":"8","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]}]},{"id":"9","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"Bold","styles":{"bold":true}},{"type":"text","text":"Italic","styles":{"italic":true}},{"type":"text","text":"Regular","styles":{}}],"children":[{"id":"10","type":"image","props":{"backgroundColor":"default","textAlignment":"left","name":"","url":"https://ralfvanveen.com/wp-content/uploads/2021/06/Placeholder-_-Glossary.svg","caption":"","showPreview":true},"children":[{"id":"11","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph","styles":{}}],"children":[]}]}]},{"id":"12","type":"table","props":{"textColor":"default"},"content":{"type":"tableContent","columnWidths":[null,null],"rows":[{"cells":[{"type":"tableCell","content":[{"type":"text","text":"Table Cell","styles":{}}],"props":{"colspan":1,"rowspan":1,"backgroundColor":"default","textColor":"default","textAlignment":"left"}},{"type":"tableCell","content":[{"type":"text","text":"Table Cell","styles":{}}],"props":{"colspan":1,"rowspan":1,"backgroundColor":"default","textColor":"default","textAlignment":"left"}}]},{"cells":[{"type":"tableCell","content":[{"type":"text","text":"Table Cell","styles":{}}],"props":{"colspan":1,"rowspan":1,"backgroundColor":"default","textColor":"default","textAlignment":"left"}},{"type":"tableCell","content":[{"type":"text","text":"Table Cell","styles":{}}],"props":{"colspan":1,"rowspan":1,"backgroundColor":"default","textColor":"default","textAlignment":"left"}}]}]},"children":[]}],"blockCutAtStart":"4"} -{"_meta":{"startPos":82,"endPos":276},"blocks":[{"id":"5","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"Heading 2","styles":{}}],"children":[{"id":"6","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},{"id":"7","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},{"id":"8","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]}]},{"id":"9","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"Bold","styles":{"bold":true}},{"type":"text","text":"Italic","styles":{"italic":true}},{"type":"text","text":"Regular","styles":{}}],"children":[{"id":"10","type":"image","props":{"backgroundColor":"default","textAlignment":"left","name":"","url":"https://ralfvanveen.com/wp-content/uploads/2021/06/Placeholder-_-Glossary.svg","caption":"","showPreview":true},"children":[{"id":"11","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph","styles":{}}],"children":[]}]}]},{"id":"12","type":"table","props":{"textColor":"default"},"content":{"type":"tableContent","columnWidths":[null,null],"rows":[{"cells":[{"type":"tableCell","content":[{"type":"text","text":"Table Cell","styles":{}}],"props":{"colspan":1,"rowspan":1,"backgroundColor":"default","textColor":"default","textAlignment":"left"}},{"type":"tableCell","content":[{"type":"text","text":"Table Cell","styles":{}}],"props":{"colspan":1,"rowspan":1,"backgroundColor":"default","textColor":"default","textAlignment":"left"}}]},{"cells":[{"type":"tableCell","content":[{"type":"text","text":"Table Cell","styles":{}}],"props":{"colspan":1,"rowspan":1,"backgroundColor":"default","textColor":"default","textAlignment":"left"}},{"type":"tableCell","content":[{"type":"text","text":"Table Cell","styles":{}}],"props":{"colspan":1,"rowspan":1,"backgroundColor":"default","textColor":"default","textAlignment":"left"}}]}]},"children":[]}]} -{"_meta":{"startPos":82,"endPos":276},"blocks":[{"id":"5","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"Heading 2","styles":{}}],"children":[{"id":"6","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},{"id":"7","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},{"id":"8","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]}]},{"id":"9","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"Bold","styles":{"bold":true}},{"type":"text","text":"Italic","styles":{"italic":true}},{"type":"text","text":"Regular","styles":{}}],"children":[{"id":"10","type":"image","props":{"backgroundColor":"default","textAlignment":"left","name":"","url":"https://ralfvanveen.com/wp-content/uploads/2021/06/Placeholder-_-Glossary.svg","caption":"","showPreview":true},"children":[{"id":"11","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph","styles":{}}],"children":[]}]}]},{"id":"12","type":"table","props":{"textColor":"default"},"content":{"type":"tableContent","columnWidths":[null,null],"rows":[{"cells":[{"type":"tableCell","content":[{"type":"text","text":"Table Cell","styles":{}}],"props":{"colspan":1,"rowspan":1,"backgroundColor":"default","textColor":"default","textAlignment":"left"}},{"type":"tableCell","content":[{"type":"text","text":"Table Cell","styles":{}}],"props":{"colspan":1,"rowspan":1,"backgroundColor":"default","textColor":"default","textAlignment":"left"}}]},{"cells":[{"type":"tableCell","content":[{"type":"text","text":"Table Cell","styles":{}}],"props":{"colspan":1,"rowspan":1,"backgroundColor":"default","textColor":"default","textAlignment":"left"}},{"type":"tableCell","content":[{"type":"text","text":"Table Cell","styles":{}}],"props":{"colspan":1,"rowspan":1,"backgroundColor":"default","textColor":"default","textAlignment":"left"}}]}]},"children":[]}]} -{"_meta":{"startPos":82,"endPos":276},"blocks":[{"id":"5","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"Heading 2","styles":{}}],"children":[{"id":"6","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},{"id":"7","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},{"id":"8","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]}]},{"id":"9","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"Bold","styles":{"bold":true}},{"type":"text","text":"Italic","styles":{"italic":true}},{"type":"text","text":"Regular","styles":{}}],"children":[{"id":"10","type":"image","props":{"backgroundColor":"default","textAlignment":"left","name":"","url":"https://ralfvanveen.com/wp-content/uploads/2021/06/Placeholder-_-Glossary.svg","caption":"","showPreview":true},"children":[{"id":"11","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph","styles":{}}],"children":[]}]}]},{"id":"12","type":"table","props":{"textColor":"default"},"content":{"type":"tableContent","columnWidths":[null,null],"rows":[{"cells":[{"type":"tableCell","content":[{"type":"text","text":"Table Cell","styles":{}}],"props":{"colspan":1,"rowspan":1,"backgroundColor":"default","textColor":"default","textAlignment":"left"}},{"type":"tableCell","content":[{"type":"text","text":"Table Cell","styles":{}}],"props":{"colspan":1,"rowspan":1,"backgroundColor":"default","textColor":"default","textAlignment":"left"}}]},{"cells":[{"type":"tableCell","content":[{"type":"text","text":"Table Cell","styles":{}}],"props":{"colspan":1,"rowspan":1,"backgroundColor":"default","textColor":"default","textAlignment":"left"}},{"type":"tableCell","content":[{"type":"text","text":"Table Cell","styles":{}}],"props":{"colspan":1,"rowspan":1,"backgroundColor":"default","textColor":"default","textAlignment":"left"}}]}]},"children":[]}]} -{"_meta":{"startPos":82,"endPos":276},"blocks":[{"id":"5","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"Heading 2","styles":{}}],"children":[{"id":"6","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},{"id":"7","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},{"id":"8","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]}]},{"id":"9","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"Bold","styles":{"bold":true}},{"type":"text","text":"Italic","styles":{"italic":true}},{"type":"text","text":"Regular","styles":{}}],"children":[{"id":"10","type":"image","props":{"backgroundColor":"default","textAlignment":"left","name":"","url":"https://ralfvanveen.com/wp-content/uploads/2021/06/Placeholder-_-Glossary.svg","caption":"","showPreview":true},"children":[{"id":"11","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph","styles":{}}],"children":[]}]}]},{"id":"12","type":"table","props":{"textColor":"default"},"content":{"type":"tableContent","columnWidths":[null,null],"rows":[{"cells":[{"type":"tableCell","content":[{"type":"text","text":"Table Cell","styles":{}}],"props":{"colspan":1,"rowspan":1,"backgroundColor":"default","textColor":"default","textAlignment":"left"}},{"type":"tableCell","content":[{"type":"text","text":"Table Cell","styles":{}}],"props":{"colspan":1,"rowspan":1,"backgroundColor":"default","textColor":"default","textAlignment":"left"}}]},{"cells":[{"type":"tableCell","content":[{"type":"text","text":"Table Cell","styles":{}}],"props":{"colspan":1,"rowspan":1,"backgroundColor":"default","textColor":"default","textAlignment":"left"}},{"type":"tableCell","content":[{"type":"text","text":"Table Cell","styles":{}}],"props":{"colspan":1,"rowspan":1,"backgroundColor":"default","textColor":"default","textAlignment":"left"}}]}]},"children":[]}]} -{"_meta":{"startPos":82,"endPos":276},"blocks":[{"id":"5","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"Heading 2","styles":{}}],"children":[{"id":"6","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},{"id":"7","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},{"id":"8","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]}]},{"id":"9","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"Bold","styles":{"bold":true}},{"type":"text","text":"Italic","styles":{"italic":true}},{"type":"text","text":"Regular","styles":{}}],"children":[{"id":"10","type":"image","props":{"backgroundColor":"default","textAlignment":"left","name":"","url":"https://ralfvanveen.com/wp-content/uploads/2021/06/Placeholder-_-Glossary.svg","caption":"","showPreview":true},"children":[{"id":"11","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph","styles":{}}],"children":[]}]}]},{"id":"12","type":"table","props":{"textColor":"default"},"content":{"type":"tableContent","columnWidths":[null,null],"rows":[{"cells":[{"type":"tableCell","content":[{"type":"text","text":"Table Cell","styles":{}}],"props":{"colspan":1,"rowspan":1,"backgroundColor":"default","textColor":"default","textAlignment":"left"}},{"type":"tableCell","content":[{"type":"text","text":"Table Cell","styles":{}}],"props":{"colspan":1,"rowspan":1,"backgroundColor":"default","textColor":"default","textAlignment":"left"}}]},{"cells":[{"type":"tableCell","content":[{"type":"text","text":"Table Cell","styles":{}}],"props":{"colspan":1,"rowspan":1,"backgroundColor":"default","textColor":"default","textAlignment":"left"}},{"type":"tableCell","content":[{"type":"text","text":"Table Cell","styles":{}}],"props":{"colspan":1,"rowspan":1,"backgroundColor":"default","textColor":"default","textAlignment":"left"}}]}]},"children":[]}]} -{"_meta":{"startPos":82,"endPos":276},"blocks":[{"id":"5","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"Heading 2","styles":{}}],"children":[{"id":"6","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},{"id":"7","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},{"id":"8","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]}]},{"id":"9","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"Bold","styles":{"bold":true}},{"type":"text","text":"Italic","styles":{"italic":true}},{"type":"text","text":"Regular","styles":{}}],"children":[{"id":"10","type":"image","props":{"backgroundColor":"default","textAlignment":"left","name":"","url":"https://ralfvanveen.com/wp-content/uploads/2021/06/Placeholder-_-Glossary.svg","caption":"","showPreview":true},"children":[{"id":"11","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph","styles":{}}],"children":[]}]}]},{"id":"12","type":"table","props":{"textColor":"default"},"content":{"type":"tableContent","columnWidths":[null,null],"rows":[{"cells":[{"type":"tableCell","content":[{"type":"text","text":"Table Cell","styles":{}}],"props":{"colspan":1,"rowspan":1,"backgroundColor":"default","textColor":"default","textAlignment":"left"}},{"type":"tableCell","content":[{"type":"text","text":"Table Cell","styles":{}}],"props":{"colspan":1,"rowspan":1,"backgroundColor":"default","textColor":"default","textAlignment":"left"}}]},{"cells":[{"type":"tableCell","content":[{"type":"text","text":"Table Cell","styles":{}}],"props":{"colspan":1,"rowspan":1,"backgroundColor":"default","textColor":"default","textAlignment":"left"}},{"type":"tableCell","content":[{"type":"text","text":"Table Cell","styles":{}}],"props":{"colspan":1,"rowspan":1,"backgroundColor":"default","textColor":"default","textAlignment":"left"}}]}]},"children":[]}]} -{"_meta":{"startPos":82,"endPos":276},"blocks":[{"id":"5","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"Heading 2","styles":{}}],"children":[{"id":"6","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},{"id":"7","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},{"id":"8","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]}]},{"id":"9","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"Bold","styles":{"bold":true}},{"type":"text","text":"Italic","styles":{"italic":true}},{"type":"text","text":"Regular","styles":{}}],"children":[{"id":"10","type":"image","props":{"backgroundColor":"default","textAlignment":"left","name":"","url":"https://ralfvanveen.com/wp-content/uploads/2021/06/Placeholder-_-Glossary.svg","caption":"","showPreview":true},"children":[{"id":"11","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph","styles":{}}],"children":[]}]}]},{"id":"12","type":"table","props":{"textColor":"default"},"content":{"type":"tableContent","columnWidths":[null,null],"rows":[{"cells":[{"type":"tableCell","content":[{"type":"text","text":"Table Cell","styles":{}}],"props":{"colspan":1,"rowspan":1,"backgroundColor":"default","textColor":"default","textAlignment":"left"}},{"type":"tableCell","content":[{"type":"text","text":"Table Cell","styles":{}}],"props":{"colspan":1,"rowspan":1,"backgroundColor":"default","textColor":"default","textAlignment":"left"}}]},{"cells":[{"type":"tableCell","content":[{"type":"text","text":"Table Cell","styles":{}}],"props":{"colspan":1,"rowspan":1,"backgroundColor":"default","textColor":"default","textAlignment":"left"}},{"type":"tableCell","content":[{"type":"text","text":"Table Cell","styles":{}}],"props":{"colspan":1,"rowspan":1,"backgroundColor":"default","textColor":"default","textAlignment":"left"}}]}]},"children":[]}]} -{"_meta":{"startPos":85,"endPos":276},"blocks":[{"id":"5","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"eading 2","styles":{}}],"children":[{"id":"6","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},{"id":"7","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},{"id":"8","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]}]},{"id":"9","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"Bold","styles":{"bold":true}},{"type":"text","text":"Italic","styles":{"italic":true}},{"type":"text","text":"Regular","styles":{}}],"children":[{"id":"10","type":"image","props":{"backgroundColor":"default","textAlignment":"left","name":"","url":"https://ralfvanveen.com/wp-content/uploads/2021/06/Placeholder-_-Glossary.svg","caption":"","showPreview":true},"children":[{"id":"11","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph","styles":{}}],"children":[]}]}]},{"id":"12","type":"table","props":{"textColor":"default"},"content":{"type":"tableContent","columnWidths":[null,null],"rows":[{"cells":[{"type":"tableCell","content":[{"type":"text","text":"Table Cell","styles":{}}],"props":{"colspan":1,"rowspan":1,"backgroundColor":"default","textColor":"default","textAlignment":"left"}},{"type":"tableCell","content":[{"type":"text","text":"Table Cell","styles":{}}],"props":{"colspan":1,"rowspan":1,"backgroundColor":"default","textColor":"default","textAlignment":"left"}}]},{"cells":[{"type":"tableCell","content":[{"type":"text","text":"Table Cell","styles":{}}],"props":{"colspan":1,"rowspan":1,"backgroundColor":"default","textColor":"default","textAlignment":"left"}},{"type":"tableCell","content":[{"type":"text","text":"Table Cell","styles":{}}],"props":{"colspan":1,"rowspan":1,"backgroundColor":"default","textColor":"default","textAlignment":"left"}}]}]},"children":[]}],"blockCutAtStart":"5"} -{"_meta":{"startPos":86,"endPos":276},"blocks":[{"id":"5","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"ading 2","styles":{}}],"children":[{"id":"6","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},{"id":"7","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},{"id":"8","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]}]},{"id":"9","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"Bold","styles":{"bold":true}},{"type":"text","text":"Italic","styles":{"italic":true}},{"type":"text","text":"Regular","styles":{}}],"children":[{"id":"10","type":"image","props":{"backgroundColor":"default","textAlignment":"left","name":"","url":"https://ralfvanveen.com/wp-content/uploads/2021/06/Placeholder-_-Glossary.svg","caption":"","showPreview":true},"children":[{"id":"11","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph","styles":{}}],"children":[]}]}]},{"id":"12","type":"table","props":{"textColor":"default"},"content":{"type":"tableContent","columnWidths":[null,null],"rows":[{"cells":[{"type":"tableCell","content":[{"type":"text","text":"Table Cell","styles":{}}],"props":{"colspan":1,"rowspan":1,"backgroundColor":"default","textColor":"default","textAlignment":"left"}},{"type":"tableCell","content":[{"type":"text","text":"Table Cell","styles":{}}],"props":{"colspan":1,"rowspan":1,"backgroundColor":"default","textColor":"default","textAlignment":"left"}}]},{"cells":[{"type":"tableCell","content":[{"type":"text","text":"Table Cell","styles":{}}],"props":{"colspan":1,"rowspan":1,"backgroundColor":"default","textColor":"default","textAlignment":"left"}},{"type":"tableCell","content":[{"type":"text","text":"Table Cell","styles":{}}],"props":{"colspan":1,"rowspan":1,"backgroundColor":"default","textColor":"default","textAlignment":"left"}}]}]},"children":[]}],"blockCutAtStart":"5"} -{"_meta":{"startPos":87,"endPos":276},"blocks":[{"id":"5","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"ding 2","styles":{}}],"children":[{"id":"6","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},{"id":"7","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},{"id":"8","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]}]},{"id":"9","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"Bold","styles":{"bold":true}},{"type":"text","text":"Italic","styles":{"italic":true}},{"type":"text","text":"Regular","styles":{}}],"children":[{"id":"10","type":"image","props":{"backgroundColor":"default","textAlignment":"left","name":"","url":"https://ralfvanveen.com/wp-content/uploads/2021/06/Placeholder-_-Glossary.svg","caption":"","showPreview":true},"children":[{"id":"11","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph","styles":{}}],"children":[]}]}]},{"id":"12","type":"table","props":{"textColor":"default"},"content":{"type":"tableContent","columnWidths":[null,null],"rows":[{"cells":[{"type":"tableCell","content":[{"type":"text","text":"Table Cell","styles":{}}],"props":{"colspan":1,"rowspan":1,"backgroundColor":"default","textColor":"default","textAlignment":"left"}},{"type":"tableCell","content":[{"type":"text","text":"Table Cell","styles":{}}],"props":{"colspan":1,"rowspan":1,"backgroundColor":"default","textColor":"default","textAlignment":"left"}}]},{"cells":[{"type":"tableCell","content":[{"type":"text","text":"Table Cell","styles":{}}],"props":{"colspan":1,"rowspan":1,"backgroundColor":"default","textColor":"default","textAlignment":"left"}},{"type":"tableCell","content":[{"type":"text","text":"Table Cell","styles":{}}],"props":{"colspan":1,"rowspan":1,"backgroundColor":"default","textColor":"default","textAlignment":"left"}}]}]},"children":[]}],"blockCutAtStart":"5"} -{"_meta":{"startPos":88,"endPos":276},"blocks":[{"id":"5","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"ing 2","styles":{}}],"children":[{"id":"6","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},{"id":"7","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},{"id":"8","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]}]},{"id":"9","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"Bold","styles":{"bold":true}},{"type":"text","text":"Italic","styles":{"italic":true}},{"type":"text","text":"Regular","styles":{}}],"children":[{"id":"10","type":"image","props":{"backgroundColor":"default","textAlignment":"left","name":"","url":"https://ralfvanveen.com/wp-content/uploads/2021/06/Placeholder-_-Glossary.svg","caption":"","showPreview":true},"children":[{"id":"11","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph","styles":{}}],"children":[]}]}]},{"id":"12","type":"table","props":{"textColor":"default"},"content":{"type":"tableContent","columnWidths":[null,null],"rows":[{"cells":[{"type":"tableCell","content":[{"type":"text","text":"Table Cell","styles":{}}],"props":{"colspan":1,"rowspan":1,"backgroundColor":"default","textColor":"default","textAlignment":"left"}},{"type":"tableCell","content":[{"type":"text","text":"Table Cell","styles":{}}],"props":{"colspan":1,"rowspan":1,"backgroundColor":"default","textColor":"default","textAlignment":"left"}}]},{"cells":[{"type":"tableCell","content":[{"type":"text","text":"Table Cell","styles":{}}],"props":{"colspan":1,"rowspan":1,"backgroundColor":"default","textColor":"default","textAlignment":"left"}},{"type":"tableCell","content":[{"type":"text","text":"Table Cell","styles":{}}],"props":{"colspan":1,"rowspan":1,"backgroundColor":"default","textColor":"default","textAlignment":"left"}}]}]},"children":[]}],"blockCutAtStart":"5"} -{"_meta":{"startPos":89,"endPos":276},"blocks":[{"id":"5","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"ng 2","styles":{}}],"children":[{"id":"6","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},{"id":"7","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},{"id":"8","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]}]},{"id":"9","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"Bold","styles":{"bold":true}},{"type":"text","text":"Italic","styles":{"italic":true}},{"type":"text","text":"Regular","styles":{}}],"children":[{"id":"10","type":"image","props":{"backgroundColor":"default","textAlignment":"left","name":"","url":"https://ralfvanveen.com/wp-content/uploads/2021/06/Placeholder-_-Glossary.svg","caption":"","showPreview":true},"children":[{"id":"11","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph","styles":{}}],"children":[]}]}]},{"id":"12","type":"table","props":{"textColor":"default"},"content":{"type":"tableContent","columnWidths":[null,null],"rows":[{"cells":[{"type":"tableCell","content":[{"type":"text","text":"Table Cell","styles":{}}],"props":{"colspan":1,"rowspan":1,"backgroundColor":"default","textColor":"default","textAlignment":"left"}},{"type":"tableCell","content":[{"type":"text","text":"Table Cell","styles":{}}],"props":{"colspan":1,"rowspan":1,"backgroundColor":"default","textColor":"default","textAlignment":"left"}}]},{"cells":[{"type":"tableCell","content":[{"type":"text","text":"Table Cell","styles":{}}],"props":{"colspan":1,"rowspan":1,"backgroundColor":"default","textColor":"default","textAlignment":"left"}},{"type":"tableCell","content":[{"type":"text","text":"Table Cell","styles":{}}],"props":{"colspan":1,"rowspan":1,"backgroundColor":"default","textColor":"default","textAlignment":"left"}}]}]},"children":[]}],"blockCutAtStart":"5"} -{"_meta":{"startPos":90,"endPos":276},"blocks":[{"id":"5","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"g 2","styles":{}}],"children":[{"id":"6","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},{"id":"7","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},{"id":"8","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]}]},{"id":"9","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"Bold","styles":{"bold":true}},{"type":"text","text":"Italic","styles":{"italic":true}},{"type":"text","text":"Regular","styles":{}}],"children":[{"id":"10","type":"image","props":{"backgroundColor":"default","textAlignment":"left","name":"","url":"https://ralfvanveen.com/wp-content/uploads/2021/06/Placeholder-_-Glossary.svg","caption":"","showPreview":true},"children":[{"id":"11","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph","styles":{}}],"children":[]}]}]},{"id":"12","type":"table","props":{"textColor":"default"},"content":{"type":"tableContent","columnWidths":[null,null],"rows":[{"cells":[{"type":"tableCell","content":[{"type":"text","text":"Table Cell","styles":{}}],"props":{"colspan":1,"rowspan":1,"backgroundColor":"default","textColor":"default","textAlignment":"left"}},{"type":"tableCell","content":[{"type":"text","text":"Table Cell","styles":{}}],"props":{"colspan":1,"rowspan":1,"backgroundColor":"default","textColor":"default","textAlignment":"left"}}]},{"cells":[{"type":"tableCell","content":[{"type":"text","text":"Table Cell","styles":{}}],"props":{"colspan":1,"rowspan":1,"backgroundColor":"default","textColor":"default","textAlignment":"left"}},{"type":"tableCell","content":[{"type":"text","text":"Table Cell","styles":{}}],"props":{"colspan":1,"rowspan":1,"backgroundColor":"default","textColor":"default","textAlignment":"left"}}]}]},"children":[]}],"blockCutAtStart":"5"} -{"_meta":{"startPos":91,"endPos":276},"blocks":[{"id":"5","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":" 2","styles":{}}],"children":[{"id":"6","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},{"id":"7","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},{"id":"8","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]}]},{"id":"9","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"Bold","styles":{"bold":true}},{"type":"text","text":"Italic","styles":{"italic":true}},{"type":"text","text":"Regular","styles":{}}],"children":[{"id":"10","type":"image","props":{"backgroundColor":"default","textAlignment":"left","name":"","url":"https://ralfvanveen.com/wp-content/uploads/2021/06/Placeholder-_-Glossary.svg","caption":"","showPreview":true},"children":[{"id":"11","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph","styles":{}}],"children":[]}]}]},{"id":"12","type":"table","props":{"textColor":"default"},"content":{"type":"tableContent","columnWidths":[null,null],"rows":[{"cells":[{"type":"tableCell","content":[{"type":"text","text":"Table Cell","styles":{}}],"props":{"colspan":1,"rowspan":1,"backgroundColor":"default","textColor":"default","textAlignment":"left"}},{"type":"tableCell","content":[{"type":"text","text":"Table Cell","styles":{}}],"props":{"colspan":1,"rowspan":1,"backgroundColor":"default","textColor":"default","textAlignment":"left"}}]},{"cells":[{"type":"tableCell","content":[{"type":"text","text":"Table Cell","styles":{}}],"props":{"colspan":1,"rowspan":1,"backgroundColor":"default","textColor":"default","textAlignment":"left"}},{"type":"tableCell","content":[{"type":"text","text":"Table Cell","styles":{}}],"props":{"colspan":1,"rowspan":1,"backgroundColor":"default","textColor":"default","textAlignment":"left"}}]}]},"children":[]}],"blockCutAtStart":"5"} -{"_meta":{"startPos":92,"endPos":276},"blocks":[{"id":"5","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"2","styles":{}}],"children":[{"id":"6","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},{"id":"7","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},{"id":"8","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]}]},{"id":"9","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"Bold","styles":{"bold":true}},{"type":"text","text":"Italic","styles":{"italic":true}},{"type":"text","text":"Regular","styles":{}}],"children":[{"id":"10","type":"image","props":{"backgroundColor":"default","textAlignment":"left","name":"","url":"https://ralfvanveen.com/wp-content/uploads/2021/06/Placeholder-_-Glossary.svg","caption":"","showPreview":true},"children":[{"id":"11","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph","styles":{}}],"children":[]}]}]},{"id":"12","type":"table","props":{"textColor":"default"},"content":{"type":"tableContent","columnWidths":[null,null],"rows":[{"cells":[{"type":"tableCell","content":[{"type":"text","text":"Table Cell","styles":{}}],"props":{"colspan":1,"rowspan":1,"backgroundColor":"default","textColor":"default","textAlignment":"left"}},{"type":"tableCell","content":[{"type":"text","text":"Table Cell","styles":{}}],"props":{"colspan":1,"rowspan":1,"backgroundColor":"default","textColor":"default","textAlignment":"left"}}]},{"cells":[{"type":"tableCell","content":[{"type":"text","text":"Table Cell","styles":{}}],"props":{"colspan":1,"rowspan":1,"backgroundColor":"default","textColor":"default","textAlignment":"left"}},{"type":"tableCell","content":[{"type":"text","text":"Table Cell","styles":{}}],"props":{"colspan":1,"rowspan":1,"backgroundColor":"default","textColor":"default","textAlignment":"left"}}]}]},"children":[]}],"blockCutAtStart":"5"} -{"_meta":{"startPos":94,"endPos":276},"blocks":[{"id":"6","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},{"id":"7","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},{"id":"8","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]},{"id":"9","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"Bold","styles":{"bold":true}},{"type":"text","text":"Italic","styles":{"italic":true}},{"type":"text","text":"Regular","styles":{}}],"children":[{"id":"10","type":"image","props":{"backgroundColor":"default","textAlignment":"left","name":"","url":"https://ralfvanveen.com/wp-content/uploads/2021/06/Placeholder-_-Glossary.svg","caption":"","showPreview":true},"children":[{"id":"11","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph","styles":{}}],"children":[]}]}]},{"id":"12","type":"table","props":{"textColor":"default"},"content":{"type":"tableContent","columnWidths":[null,null],"rows":[{"cells":[{"type":"tableCell","content":[{"type":"text","text":"Table Cell","styles":{}}],"props":{"colspan":1,"rowspan":1,"backgroundColor":"default","textColor":"default","textAlignment":"left"}},{"type":"tableCell","content":[{"type":"text","text":"Table Cell","styles":{}}],"props":{"colspan":1,"rowspan":1,"backgroundColor":"default","textColor":"default","textAlignment":"left"}}]},{"cells":[{"type":"tableCell","content":[{"type":"text","text":"Table Cell","styles":{}}],"props":{"colspan":1,"rowspan":1,"backgroundColor":"default","textColor":"default","textAlignment":"left"}},{"type":"tableCell","content":[{"type":"text","text":"Table Cell","styles":{}}],"props":{"colspan":1,"rowspan":1,"backgroundColor":"default","textColor":"default","textAlignment":"left"}}]}]},"children":[]}]} -{"_meta":{"startPos":94,"endPos":276},"blocks":[{"id":"6","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},{"id":"7","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},{"id":"8","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]},{"id":"9","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"Bold","styles":{"bold":true}},{"type":"text","text":"Italic","styles":{"italic":true}},{"type":"text","text":"Regular","styles":{}}],"children":[{"id":"10","type":"image","props":{"backgroundColor":"default","textAlignment":"left","name":"","url":"https://ralfvanveen.com/wp-content/uploads/2021/06/Placeholder-_-Glossary.svg","caption":"","showPreview":true},"children":[{"id":"11","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph","styles":{}}],"children":[]}]}]},{"id":"12","type":"table","props":{"textColor":"default"},"content":{"type":"tableContent","columnWidths":[null,null],"rows":[{"cells":[{"type":"tableCell","content":[{"type":"text","text":"Table Cell","styles":{}}],"props":{"colspan":1,"rowspan":1,"backgroundColor":"default","textColor":"default","textAlignment":"left"}},{"type":"tableCell","content":[{"type":"text","text":"Table Cell","styles":{}}],"props":{"colspan":1,"rowspan":1,"backgroundColor":"default","textColor":"default","textAlignment":"left"}}]},{"cells":[{"type":"tableCell","content":[{"type":"text","text":"Table Cell","styles":{}}],"props":{"colspan":1,"rowspan":1,"backgroundColor":"default","textColor":"default","textAlignment":"left"}},{"type":"tableCell","content":[{"type":"text","text":"Table Cell","styles":{}}],"props":{"colspan":1,"rowspan":1,"backgroundColor":"default","textColor":"default","textAlignment":"left"}}]}]},"children":[]}]} -{"_meta":{"startPos":94,"endPos":276},"blocks":[{"id":"6","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},{"id":"7","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},{"id":"8","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]},{"id":"9","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"Bold","styles":{"bold":true}},{"type":"text","text":"Italic","styles":{"italic":true}},{"type":"text","text":"Regular","styles":{}}],"children":[{"id":"10","type":"image","props":{"backgroundColor":"default","textAlignment":"left","name":"","url":"https://ralfvanveen.com/wp-content/uploads/2021/06/Placeholder-_-Glossary.svg","caption":"","showPreview":true},"children":[{"id":"11","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph","styles":{}}],"children":[]}]}]},{"id":"12","type":"table","props":{"textColor":"default"},"content":{"type":"tableContent","columnWidths":[null,null],"rows":[{"cells":[{"type":"tableCell","content":[{"type":"text","text":"Table Cell","styles":{}}],"props":{"colspan":1,"rowspan":1,"backgroundColor":"default","textColor":"default","textAlignment":"left"}},{"type":"tableCell","content":[{"type":"text","text":"Table Cell","styles":{}}],"props":{"colspan":1,"rowspan":1,"backgroundColor":"default","textColor":"default","textAlignment":"left"}}]},{"cells":[{"type":"tableCell","content":[{"type":"text","text":"Table Cell","styles":{}}],"props":{"colspan":1,"rowspan":1,"backgroundColor":"default","textColor":"default","textAlignment":"left"}},{"type":"tableCell","content":[{"type":"text","text":"Table Cell","styles":{}}],"props":{"colspan":1,"rowspan":1,"backgroundColor":"default","textColor":"default","textAlignment":"left"}}]}]},"children":[]}]} -{"_meta":{"startPos":94,"endPos":276},"blocks":[{"id":"6","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},{"id":"7","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},{"id":"8","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]},{"id":"9","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"Bold","styles":{"bold":true}},{"type":"text","text":"Italic","styles":{"italic":true}},{"type":"text","text":"Regular","styles":{}}],"children":[{"id":"10","type":"image","props":{"backgroundColor":"default","textAlignment":"left","name":"","url":"https://ralfvanveen.com/wp-content/uploads/2021/06/Placeholder-_-Glossary.svg","caption":"","showPreview":true},"children":[{"id":"11","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph","styles":{}}],"children":[]}]}]},{"id":"12","type":"table","props":{"textColor":"default"},"content":{"type":"tableContent","columnWidths":[null,null],"rows":[{"cells":[{"type":"tableCell","content":[{"type":"text","text":"Table Cell","styles":{}}],"props":{"colspan":1,"rowspan":1,"backgroundColor":"default","textColor":"default","textAlignment":"left"}},{"type":"tableCell","content":[{"type":"text","text":"Table Cell","styles":{}}],"props":{"colspan":1,"rowspan":1,"backgroundColor":"default","textColor":"default","textAlignment":"left"}}]},{"cells":[{"type":"tableCell","content":[{"type":"text","text":"Table Cell","styles":{}}],"props":{"colspan":1,"rowspan":1,"backgroundColor":"default","textColor":"default","textAlignment":"left"}},{"type":"tableCell","content":[{"type":"text","text":"Table Cell","styles":{}}],"props":{"colspan":1,"rowspan":1,"backgroundColor":"default","textColor":"default","textAlignment":"left"}}]}]},"children":[]}]} -{"_meta":{"startPos":94,"endPos":276},"blocks":[{"id":"6","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},{"id":"7","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},{"id":"8","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]},{"id":"9","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"Bold","styles":{"bold":true}},{"type":"text","text":"Italic","styles":{"italic":true}},{"type":"text","text":"Regular","styles":{}}],"children":[{"id":"10","type":"image","props":{"backgroundColor":"default","textAlignment":"left","name":"","url":"https://ralfvanveen.com/wp-content/uploads/2021/06/Placeholder-_-Glossary.svg","caption":"","showPreview":true},"children":[{"id":"11","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph","styles":{}}],"children":[]}]}]},{"id":"12","type":"table","props":{"textColor":"default"},"content":{"type":"tableContent","columnWidths":[null,null],"rows":[{"cells":[{"type":"tableCell","content":[{"type":"text","text":"Table Cell","styles":{}}],"props":{"colspan":1,"rowspan":1,"backgroundColor":"default","textColor":"default","textAlignment":"left"}},{"type":"tableCell","content":[{"type":"text","text":"Table Cell","styles":{}}],"props":{"colspan":1,"rowspan":1,"backgroundColor":"default","textColor":"default","textAlignment":"left"}}]},{"cells":[{"type":"tableCell","content":[{"type":"text","text":"Table Cell","styles":{}}],"props":{"colspan":1,"rowspan":1,"backgroundColor":"default","textColor":"default","textAlignment":"left"}},{"type":"tableCell","content":[{"type":"text","text":"Table Cell","styles":{}}],"props":{"colspan":1,"rowspan":1,"backgroundColor":"default","textColor":"default","textAlignment":"left"}}]}]},"children":[]}]} -{"_meta":{"startPos":98,"endPos":276},"blocks":[{"id":"6","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"ested Paragraph 1","styles":{}}],"children":[]},{"id":"7","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},{"id":"8","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]},{"id":"9","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"Bold","styles":{"bold":true}},{"type":"text","text":"Italic","styles":{"italic":true}},{"type":"text","text":"Regular","styles":{}}],"children":[{"id":"10","type":"image","props":{"backgroundColor":"default","textAlignment":"left","name":"","url":"https://ralfvanveen.com/wp-content/uploads/2021/06/Placeholder-_-Glossary.svg","caption":"","showPreview":true},"children":[{"id":"11","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph","styles":{}}],"children":[]}]}]},{"id":"12","type":"table","props":{"textColor":"default"},"content":{"type":"tableContent","columnWidths":[null,null],"rows":[{"cells":[{"type":"tableCell","content":[{"type":"text","text":"Table Cell","styles":{}}],"props":{"colspan":1,"rowspan":1,"backgroundColor":"default","textColor":"default","textAlignment":"left"}},{"type":"tableCell","content":[{"type":"text","text":"Table Cell","styles":{}}],"props":{"colspan":1,"rowspan":1,"backgroundColor":"default","textColor":"default","textAlignment":"left"}}]},{"cells":[{"type":"tableCell","content":[{"type":"text","text":"Table Cell","styles":{}}],"props":{"colspan":1,"rowspan":1,"backgroundColor":"default","textColor":"default","textAlignment":"left"}},{"type":"tableCell","content":[{"type":"text","text":"Table Cell","styles":{}}],"props":{"colspan":1,"rowspan":1,"backgroundColor":"default","textColor":"default","textAlignment":"left"}}]}]},"children":[]}],"blockCutAtStart":"6"} -{"_meta":{"startPos":99,"endPos":276},"blocks":[{"id":"6","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"sted Paragraph 1","styles":{}}],"children":[]},{"id":"7","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},{"id":"8","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]},{"id":"9","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"Bold","styles":{"bold":true}},{"type":"text","text":"Italic","styles":{"italic":true}},{"type":"text","text":"Regular","styles":{}}],"children":[{"id":"10","type":"image","props":{"backgroundColor":"default","textAlignment":"left","name":"","url":"https://ralfvanveen.com/wp-content/uploads/2021/06/Placeholder-_-Glossary.svg","caption":"","showPreview":true},"children":[{"id":"11","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph","styles":{}}],"children":[]}]}]},{"id":"12","type":"table","props":{"textColor":"default"},"content":{"type":"tableContent","columnWidths":[null,null],"rows":[{"cells":[{"type":"tableCell","content":[{"type":"text","text":"Table Cell","styles":{}}],"props":{"colspan":1,"rowspan":1,"backgroundColor":"default","textColor":"default","textAlignment":"left"}},{"type":"tableCell","content":[{"type":"text","text":"Table Cell","styles":{}}],"props":{"colspan":1,"rowspan":1,"backgroundColor":"default","textColor":"default","textAlignment":"left"}}]},{"cells":[{"type":"tableCell","content":[{"type":"text","text":"Table Cell","styles":{}}],"props":{"colspan":1,"rowspan":1,"backgroundColor":"default","textColor":"default","textAlignment":"left"}},{"type":"tableCell","content":[{"type":"text","text":"Table Cell","styles":{}}],"props":{"colspan":1,"rowspan":1,"backgroundColor":"default","textColor":"default","textAlignment":"left"}}]}]},"children":[]}],"blockCutAtStart":"6"} -{"_meta":{"startPos":100,"endPos":276},"blocks":[{"id":"6","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"ted Paragraph 1","styles":{}}],"children":[]},{"id":"7","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},{"id":"8","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]},{"id":"9","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"Bold","styles":{"bold":true}},{"type":"text","text":"Italic","styles":{"italic":true}},{"type":"text","text":"Regular","styles":{}}],"children":[{"id":"10","type":"image","props":{"backgroundColor":"default","textAlignment":"left","name":"","url":"https://ralfvanveen.com/wp-content/uploads/2021/06/Placeholder-_-Glossary.svg","caption":"","showPreview":true},"children":[{"id":"11","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph","styles":{}}],"children":[]}]}]},{"id":"12","type":"table","props":{"textColor":"default"},"content":{"type":"tableContent","columnWidths":[null,null],"rows":[{"cells":[{"type":"tableCell","content":[{"type":"text","text":"Table Cell","styles":{}}],"props":{"colspan":1,"rowspan":1,"backgroundColor":"default","textColor":"default","textAlignment":"left"}},{"type":"tableCell","content":[{"type":"text","text":"Table Cell","styles":{}}],"props":{"colspan":1,"rowspan":1,"backgroundColor":"default","textColor":"default","textAlignment":"left"}}]},{"cells":[{"type":"tableCell","content":[{"type":"text","text":"Table Cell","styles":{}}],"props":{"colspan":1,"rowspan":1,"backgroundColor":"default","textColor":"default","textAlignment":"left"}},{"type":"tableCell","content":[{"type":"text","text":"Table Cell","styles":{}}],"props":{"colspan":1,"rowspan":1,"backgroundColor":"default","textColor":"default","textAlignment":"left"}}]}]},"children":[]}],"blockCutAtStart":"6"} -{"_meta":{"startPos":101,"endPos":276},"blocks":[{"id":"6","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"ed Paragraph 1","styles":{}}],"children":[]},{"id":"7","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},{"id":"8","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]},{"id":"9","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"Bold","styles":{"bold":true}},{"type":"text","text":"Italic","styles":{"italic":true}},{"type":"text","text":"Regular","styles":{}}],"children":[{"id":"10","type":"image","props":{"backgroundColor":"default","textAlignment":"left","name":"","url":"https://ralfvanveen.com/wp-content/uploads/2021/06/Placeholder-_-Glossary.svg","caption":"","showPreview":true},"children":[{"id":"11","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph","styles":{}}],"children":[]}]}]},{"id":"12","type":"table","props":{"textColor":"default"},"content":{"type":"tableContent","columnWidths":[null,null],"rows":[{"cells":[{"type":"tableCell","content":[{"type":"text","text":"Table Cell","styles":{}}],"props":{"colspan":1,"rowspan":1,"backgroundColor":"default","textColor":"default","textAlignment":"left"}},{"type":"tableCell","content":[{"type":"text","text":"Table Cell","styles":{}}],"props":{"colspan":1,"rowspan":1,"backgroundColor":"default","textColor":"default","textAlignment":"left"}}]},{"cells":[{"type":"tableCell","content":[{"type":"text","text":"Table Cell","styles":{}}],"props":{"colspan":1,"rowspan":1,"backgroundColor":"default","textColor":"default","textAlignment":"left"}},{"type":"tableCell","content":[{"type":"text","text":"Table Cell","styles":{}}],"props":{"colspan":1,"rowspan":1,"backgroundColor":"default","textColor":"default","textAlignment":"left"}}]}]},"children":[]}],"blockCutAtStart":"6"} -{"_meta":{"startPos":102,"endPos":276},"blocks":[{"id":"6","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"d Paragraph 1","styles":{}}],"children":[]},{"id":"7","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},{"id":"8","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]},{"id":"9","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"Bold","styles":{"bold":true}},{"type":"text","text":"Italic","styles":{"italic":true}},{"type":"text","text":"Regular","styles":{}}],"children":[{"id":"10","type":"image","props":{"backgroundColor":"default","textAlignment":"left","name":"","url":"https://ralfvanveen.com/wp-content/uploads/2021/06/Placeholder-_-Glossary.svg","caption":"","showPreview":true},"children":[{"id":"11","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph","styles":{}}],"children":[]}]}]},{"id":"12","type":"table","props":{"textColor":"default"},"content":{"type":"tableContent","columnWidths":[null,null],"rows":[{"cells":[{"type":"tableCell","content":[{"type":"text","text":"Table Cell","styles":{}}],"props":{"colspan":1,"rowspan":1,"backgroundColor":"default","textColor":"default","textAlignment":"left"}},{"type":"tableCell","content":[{"type":"text","text":"Table Cell","styles":{}}],"props":{"colspan":1,"rowspan":1,"backgroundColor":"default","textColor":"default","textAlignment":"left"}}]},{"cells":[{"type":"tableCell","content":[{"type":"text","text":"Table Cell","styles":{}}],"props":{"colspan":1,"rowspan":1,"backgroundColor":"default","textColor":"default","textAlignment":"left"}},{"type":"tableCell","content":[{"type":"text","text":"Table Cell","styles":{}}],"props":{"colspan":1,"rowspan":1,"backgroundColor":"default","textColor":"default","textAlignment":"left"}}]}]},"children":[]}],"blockCutAtStart":"6"} -{"_meta":{"startPos":103,"endPos":276},"blocks":[{"id":"6","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":" Paragraph 1","styles":{}}],"children":[]},{"id":"7","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},{"id":"8","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]},{"id":"9","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"Bold","styles":{"bold":true}},{"type":"text","text":"Italic","styles":{"italic":true}},{"type":"text","text":"Regular","styles":{}}],"children":[{"id":"10","type":"image","props":{"backgroundColor":"default","textAlignment":"left","name":"","url":"https://ralfvanveen.com/wp-content/uploads/2021/06/Placeholder-_-Glossary.svg","caption":"","showPreview":true},"children":[{"id":"11","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph","styles":{}}],"children":[]}]}]},{"id":"12","type":"table","props":{"textColor":"default"},"content":{"type":"tableContent","columnWidths":[null,null],"rows":[{"cells":[{"type":"tableCell","content":[{"type":"text","text":"Table Cell","styles":{}}],"props":{"colspan":1,"rowspan":1,"backgroundColor":"default","textColor":"default","textAlignment":"left"}},{"type":"tableCell","content":[{"type":"text","text":"Table Cell","styles":{}}],"props":{"colspan":1,"rowspan":1,"backgroundColor":"default","textColor":"default","textAlignment":"left"}}]},{"cells":[{"type":"tableCell","content":[{"type":"text","text":"Table Cell","styles":{}}],"props":{"colspan":1,"rowspan":1,"backgroundColor":"default","textColor":"default","textAlignment":"left"}},{"type":"tableCell","content":[{"type":"text","text":"Table Cell","styles":{}}],"props":{"colspan":1,"rowspan":1,"backgroundColor":"default","textColor":"default","textAlignment":"left"}}]}]},"children":[]}],"blockCutAtStart":"6"} -{"_meta":{"startPos":104,"endPos":276},"blocks":[{"id":"6","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Paragraph 1","styles":{}}],"children":[]},{"id":"7","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},{"id":"8","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]},{"id":"9","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"Bold","styles":{"bold":true}},{"type":"text","text":"Italic","styles":{"italic":true}},{"type":"text","text":"Regular","styles":{}}],"children":[{"id":"10","type":"image","props":{"backgroundColor":"default","textAlignment":"left","name":"","url":"https://ralfvanveen.com/wp-content/uploads/2021/06/Placeholder-_-Glossary.svg","caption":"","showPreview":true},"children":[{"id":"11","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph","styles":{}}],"children":[]}]}]},{"id":"12","type":"table","props":{"textColor":"default"},"content":{"type":"tableContent","columnWidths":[null,null],"rows":[{"cells":[{"type":"tableCell","content":[{"type":"text","text":"Table Cell","styles":{}}],"props":{"colspan":1,"rowspan":1,"backgroundColor":"default","textColor":"default","textAlignment":"left"}},{"type":"tableCell","content":[{"type":"text","text":"Table Cell","styles":{}}],"props":{"colspan":1,"rowspan":1,"backgroundColor":"default","textColor":"default","textAlignment":"left"}}]},{"cells":[{"type":"tableCell","content":[{"type":"text","text":"Table Cell","styles":{}}],"props":{"colspan":1,"rowspan":1,"backgroundColor":"default","textColor":"default","textAlignment":"left"}},{"type":"tableCell","content":[{"type":"text","text":"Table Cell","styles":{}}],"props":{"colspan":1,"rowspan":1,"backgroundColor":"default","textColor":"default","textAlignment":"left"}}]}]},"children":[]}],"blockCutAtStart":"6"} -{"_meta":{"startPos":105,"endPos":276},"blocks":[{"id":"6","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"aragraph 1","styles":{}}],"children":[]},{"id":"7","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},{"id":"8","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]},{"id":"9","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"Bold","styles":{"bold":true}},{"type":"text","text":"Italic","styles":{"italic":true}},{"type":"text","text":"Regular","styles":{}}],"children":[{"id":"10","type":"image","props":{"backgroundColor":"default","textAlignment":"left","name":"","url":"https://ralfvanveen.com/wp-content/uploads/2021/06/Placeholder-_-Glossary.svg","caption":"","showPreview":true},"children":[{"id":"11","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph","styles":{}}],"children":[]}]}]},{"id":"12","type":"table","props":{"textColor":"default"},"content":{"type":"tableContent","columnWidths":[null,null],"rows":[{"cells":[{"type":"tableCell","content":[{"type":"text","text":"Table Cell","styles":{}}],"props":{"colspan":1,"rowspan":1,"backgroundColor":"default","textColor":"default","textAlignment":"left"}},{"type":"tableCell","content":[{"type":"text","text":"Table Cell","styles":{}}],"props":{"colspan":1,"rowspan":1,"backgroundColor":"default","textColor":"default","textAlignment":"left"}}]},{"cells":[{"type":"tableCell","content":[{"type":"text","text":"Table Cell","styles":{}}],"props":{"colspan":1,"rowspan":1,"backgroundColor":"default","textColor":"default","textAlignment":"left"}},{"type":"tableCell","content":[{"type":"text","text":"Table Cell","styles":{}}],"props":{"colspan":1,"rowspan":1,"backgroundColor":"default","textColor":"default","textAlignment":"left"}}]}]},"children":[]}],"blockCutAtStart":"6"} -{"_meta":{"startPos":106,"endPos":276},"blocks":[{"id":"6","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"ragraph 1","styles":{}}],"children":[]},{"id":"7","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},{"id":"8","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]},{"id":"9","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"Bold","styles":{"bold":true}},{"type":"text","text":"Italic","styles":{"italic":true}},{"type":"text","text":"Regular","styles":{}}],"children":[{"id":"10","type":"image","props":{"backgroundColor":"default","textAlignment":"left","name":"","url":"https://ralfvanveen.com/wp-content/uploads/2021/06/Placeholder-_-Glossary.svg","caption":"","showPreview":true},"children":[{"id":"11","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph","styles":{}}],"children":[]}]}]},{"id":"12","type":"table","props":{"textColor":"default"},"content":{"type":"tableContent","columnWidths":[null,null],"rows":[{"cells":[{"type":"tableCell","content":[{"type":"text","text":"Table Cell","styles":{}}],"props":{"colspan":1,"rowspan":1,"backgroundColor":"default","textColor":"default","textAlignment":"left"}},{"type":"tableCell","content":[{"type":"text","text":"Table Cell","styles":{}}],"props":{"colspan":1,"rowspan":1,"backgroundColor":"default","textColor":"default","textAlignment":"left"}}]},{"cells":[{"type":"tableCell","content":[{"type":"text","text":"Table Cell","styles":{}}],"props":{"colspan":1,"rowspan":1,"backgroundColor":"default","textColor":"default","textAlignment":"left"}},{"type":"tableCell","content":[{"type":"text","text":"Table Cell","styles":{}}],"props":{"colspan":1,"rowspan":1,"backgroundColor":"default","textColor":"default","textAlignment":"left"}}]}]},"children":[]}],"blockCutAtStart":"6"} -{"_meta":{"startPos":107,"endPos":276},"blocks":[{"id":"6","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"agraph 1","styles":{}}],"children":[]},{"id":"7","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},{"id":"8","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]},{"id":"9","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"Bold","styles":{"bold":true}},{"type":"text","text":"Italic","styles":{"italic":true}},{"type":"text","text":"Regular","styles":{}}],"children":[{"id":"10","type":"image","props":{"backgroundColor":"default","textAlignment":"left","name":"","url":"https://ralfvanveen.com/wp-content/uploads/2021/06/Placeholder-_-Glossary.svg","caption":"","showPreview":true},"children":[{"id":"11","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph","styles":{}}],"children":[]}]}]},{"id":"12","type":"table","props":{"textColor":"default"},"content":{"type":"tableContent","columnWidths":[null,null],"rows":[{"cells":[{"type":"tableCell","content":[{"type":"text","text":"Table Cell","styles":{}}],"props":{"colspan":1,"rowspan":1,"backgroundColor":"default","textColor":"default","textAlignment":"left"}},{"type":"tableCell","content":[{"type":"text","text":"Table Cell","styles":{}}],"props":{"colspan":1,"rowspan":1,"backgroundColor":"default","textColor":"default","textAlignment":"left"}}]},{"cells":[{"type":"tableCell","content":[{"type":"text","text":"Table Cell","styles":{}}],"props":{"colspan":1,"rowspan":1,"backgroundColor":"default","textColor":"default","textAlignment":"left"}},{"type":"tableCell","content":[{"type":"text","text":"Table Cell","styles":{}}],"props":{"colspan":1,"rowspan":1,"backgroundColor":"default","textColor":"default","textAlignment":"left"}}]}]},"children":[]}],"blockCutAtStart":"6"} -{"_meta":{"startPos":108,"endPos":276},"blocks":[{"id":"6","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"graph 1","styles":{}}],"children":[]},{"id":"7","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},{"id":"8","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]},{"id":"9","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"Bold","styles":{"bold":true}},{"type":"text","text":"Italic","styles":{"italic":true}},{"type":"text","text":"Regular","styles":{}}],"children":[{"id":"10","type":"image","props":{"backgroundColor":"default","textAlignment":"left","name":"","url":"https://ralfvanveen.com/wp-content/uploads/2021/06/Placeholder-_-Glossary.svg","caption":"","showPreview":true},"children":[{"id":"11","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph","styles":{}}],"children":[]}]}]},{"id":"12","type":"table","props":{"textColor":"default"},"content":{"type":"tableContent","columnWidths":[null,null],"rows":[{"cells":[{"type":"tableCell","content":[{"type":"text","text":"Table Cell","styles":{}}],"props":{"colspan":1,"rowspan":1,"backgroundColor":"default","textColor":"default","textAlignment":"left"}},{"type":"tableCell","content":[{"type":"text","text":"Table Cell","styles":{}}],"props":{"colspan":1,"rowspan":1,"backgroundColor":"default","textColor":"default","textAlignment":"left"}}]},{"cells":[{"type":"tableCell","content":[{"type":"text","text":"Table Cell","styles":{}}],"props":{"colspan":1,"rowspan":1,"backgroundColor":"default","textColor":"default","textAlignment":"left"}},{"type":"tableCell","content":[{"type":"text","text":"Table Cell","styles":{}}],"props":{"colspan":1,"rowspan":1,"backgroundColor":"default","textColor":"default","textAlignment":"left"}}]}]},"children":[]}],"blockCutAtStart":"6"} -{"_meta":{"startPos":109,"endPos":276},"blocks":[{"id":"6","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"raph 1","styles":{}}],"children":[]},{"id":"7","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},{"id":"8","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]},{"id":"9","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"Bold","styles":{"bold":true}},{"type":"text","text":"Italic","styles":{"italic":true}},{"type":"text","text":"Regular","styles":{}}],"children":[{"id":"10","type":"image","props":{"backgroundColor":"default","textAlignment":"left","name":"","url":"https://ralfvanveen.com/wp-content/uploads/2021/06/Placeholder-_-Glossary.svg","caption":"","showPreview":true},"children":[{"id":"11","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph","styles":{}}],"children":[]}]}]},{"id":"12","type":"table","props":{"textColor":"default"},"content":{"type":"tableContent","columnWidths":[null,null],"rows":[{"cells":[{"type":"tableCell","content":[{"type":"text","text":"Table Cell","styles":{}}],"props":{"colspan":1,"rowspan":1,"backgroundColor":"default","textColor":"default","textAlignment":"left"}},{"type":"tableCell","content":[{"type":"text","text":"Table Cell","styles":{}}],"props":{"colspan":1,"rowspan":1,"backgroundColor":"default","textColor":"default","textAlignment":"left"}}]},{"cells":[{"type":"tableCell","content":[{"type":"text","text":"Table Cell","styles":{}}],"props":{"colspan":1,"rowspan":1,"backgroundColor":"default","textColor":"default","textAlignment":"left"}},{"type":"tableCell","content":[{"type":"text","text":"Table Cell","styles":{}}],"props":{"colspan":1,"rowspan":1,"backgroundColor":"default","textColor":"default","textAlignment":"left"}}]}]},"children":[]}],"blockCutAtStart":"6"} -{"_meta":{"startPos":110,"endPos":276},"blocks":[{"id":"6","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"aph 1","styles":{}}],"children":[]},{"id":"7","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},{"id":"8","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]},{"id":"9","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"Bold","styles":{"bold":true}},{"type":"text","text":"Italic","styles":{"italic":true}},{"type":"text","text":"Regular","styles":{}}],"children":[{"id":"10","type":"image","props":{"backgroundColor":"default","textAlignment":"left","name":"","url":"https://ralfvanveen.com/wp-content/uploads/2021/06/Placeholder-_-Glossary.svg","caption":"","showPreview":true},"children":[{"id":"11","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph","styles":{}}],"children":[]}]}]},{"id":"12","type":"table","props":{"textColor":"default"},"content":{"type":"tableContent","columnWidths":[null,null],"rows":[{"cells":[{"type":"tableCell","content":[{"type":"text","text":"Table Cell","styles":{}}],"props":{"colspan":1,"rowspan":1,"backgroundColor":"default","textColor":"default","textAlignment":"left"}},{"type":"tableCell","content":[{"type":"text","text":"Table Cell","styles":{}}],"props":{"colspan":1,"rowspan":1,"backgroundColor":"default","textColor":"default","textAlignment":"left"}}]},{"cells":[{"type":"tableCell","content":[{"type":"text","text":"Table Cell","styles":{}}],"props":{"colspan":1,"rowspan":1,"backgroundColor":"default","textColor":"default","textAlignment":"left"}},{"type":"tableCell","content":[{"type":"text","text":"Table Cell","styles":{}}],"props":{"colspan":1,"rowspan":1,"backgroundColor":"default","textColor":"default","textAlignment":"left"}}]}]},"children":[]}],"blockCutAtStart":"6"} -{"_meta":{"startPos":111,"endPos":276},"blocks":[{"id":"6","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"ph 1","styles":{}}],"children":[]},{"id":"7","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},{"id":"8","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]},{"id":"9","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"Bold","styles":{"bold":true}},{"type":"text","text":"Italic","styles":{"italic":true}},{"type":"text","text":"Regular","styles":{}}],"children":[{"id":"10","type":"image","props":{"backgroundColor":"default","textAlignment":"left","name":"","url":"https://ralfvanveen.com/wp-content/uploads/2021/06/Placeholder-_-Glossary.svg","caption":"","showPreview":true},"children":[{"id":"11","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph","styles":{}}],"children":[]}]}]},{"id":"12","type":"table","props":{"textColor":"default"},"content":{"type":"tableContent","columnWidths":[null,null],"rows":[{"cells":[{"type":"tableCell","content":[{"type":"text","text":"Table Cell","styles":{}}],"props":{"colspan":1,"rowspan":1,"backgroundColor":"default","textColor":"default","textAlignment":"left"}},{"type":"tableCell","content":[{"type":"text","text":"Table Cell","styles":{}}],"props":{"colspan":1,"rowspan":1,"backgroundColor":"default","textColor":"default","textAlignment":"left"}}]},{"cells":[{"type":"tableCell","content":[{"type":"text","text":"Table Cell","styles":{}}],"props":{"colspan":1,"rowspan":1,"backgroundColor":"default","textColor":"default","textAlignment":"left"}},{"type":"tableCell","content":[{"type":"text","text":"Table Cell","styles":{}}],"props":{"colspan":1,"rowspan":1,"backgroundColor":"default","textColor":"default","textAlignment":"left"}}]}]},"children":[]}],"blockCutAtStart":"6"} -{"_meta":{"startPos":112,"endPos":276},"blocks":[{"id":"6","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"h 1","styles":{}}],"children":[]},{"id":"7","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},{"id":"8","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]},{"id":"9","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"Bold","styles":{"bold":true}},{"type":"text","text":"Italic","styles":{"italic":true}},{"type":"text","text":"Regular","styles":{}}],"children":[{"id":"10","type":"image","props":{"backgroundColor":"default","textAlignment":"left","name":"","url":"https://ralfvanveen.com/wp-content/uploads/2021/06/Placeholder-_-Glossary.svg","caption":"","showPreview":true},"children":[{"id":"11","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph","styles":{}}],"children":[]}]}]},{"id":"12","type":"table","props":{"textColor":"default"},"content":{"type":"tableContent","columnWidths":[null,null],"rows":[{"cells":[{"type":"tableCell","content":[{"type":"text","text":"Table Cell","styles":{}}],"props":{"colspan":1,"rowspan":1,"backgroundColor":"default","textColor":"default","textAlignment":"left"}},{"type":"tableCell","content":[{"type":"text","text":"Table Cell","styles":{}}],"props":{"colspan":1,"rowspan":1,"backgroundColor":"default","textColor":"default","textAlignment":"left"}}]},{"cells":[{"type":"tableCell","content":[{"type":"text","text":"Table Cell","styles":{}}],"props":{"colspan":1,"rowspan":1,"backgroundColor":"default","textColor":"default","textAlignment":"left"}},{"type":"tableCell","content":[{"type":"text","text":"Table Cell","styles":{}}],"props":{"colspan":1,"rowspan":1,"backgroundColor":"default","textColor":"default","textAlignment":"left"}}]}]},"children":[]}],"blockCutAtStart":"6"} -{"_meta":{"startPos":113,"endPos":276},"blocks":[{"id":"6","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":" 1","styles":{}}],"children":[]},{"id":"7","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},{"id":"8","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]},{"id":"9","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"Bold","styles":{"bold":true}},{"type":"text","text":"Italic","styles":{"italic":true}},{"type":"text","text":"Regular","styles":{}}],"children":[{"id":"10","type":"image","props":{"backgroundColor":"default","textAlignment":"left","name":"","url":"https://ralfvanveen.com/wp-content/uploads/2021/06/Placeholder-_-Glossary.svg","caption":"","showPreview":true},"children":[{"id":"11","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph","styles":{}}],"children":[]}]}]},{"id":"12","type":"table","props":{"textColor":"default"},"content":{"type":"tableContent","columnWidths":[null,null],"rows":[{"cells":[{"type":"tableCell","content":[{"type":"text","text":"Table Cell","styles":{}}],"props":{"colspan":1,"rowspan":1,"backgroundColor":"default","textColor":"default","textAlignment":"left"}},{"type":"tableCell","content":[{"type":"text","text":"Table Cell","styles":{}}],"props":{"colspan":1,"rowspan":1,"backgroundColor":"default","textColor":"default","textAlignment":"left"}}]},{"cells":[{"type":"tableCell","content":[{"type":"text","text":"Table Cell","styles":{}}],"props":{"colspan":1,"rowspan":1,"backgroundColor":"default","textColor":"default","textAlignment":"left"}},{"type":"tableCell","content":[{"type":"text","text":"Table Cell","styles":{}}],"props":{"colspan":1,"rowspan":1,"backgroundColor":"default","textColor":"default","textAlignment":"left"}}]}]},"children":[]}],"blockCutAtStart":"6"} -{"_meta":{"startPos":114,"endPos":276},"blocks":[{"id":"6","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"1","styles":{}}],"children":[]},{"id":"7","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},{"id":"8","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]},{"id":"9","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"Bold","styles":{"bold":true}},{"type":"text","text":"Italic","styles":{"italic":true}},{"type":"text","text":"Regular","styles":{}}],"children":[{"id":"10","type":"image","props":{"backgroundColor":"default","textAlignment":"left","name":"","url":"https://ralfvanveen.com/wp-content/uploads/2021/06/Placeholder-_-Glossary.svg","caption":"","showPreview":true},"children":[{"id":"11","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph","styles":{}}],"children":[]}]}]},{"id":"12","type":"table","props":{"textColor":"default"},"content":{"type":"tableContent","columnWidths":[null,null],"rows":[{"cells":[{"type":"tableCell","content":[{"type":"text","text":"Table Cell","styles":{}}],"props":{"colspan":1,"rowspan":1,"backgroundColor":"default","textColor":"default","textAlignment":"left"}},{"type":"tableCell","content":[{"type":"text","text":"Table Cell","styles":{}}],"props":{"colspan":1,"rowspan":1,"backgroundColor":"default","textColor":"default","textAlignment":"left"}}]},{"cells":[{"type":"tableCell","content":[{"type":"text","text":"Table Cell","styles":{}}],"props":{"colspan":1,"rowspan":1,"backgroundColor":"default","textColor":"default","textAlignment":"left"}},{"type":"tableCell","content":[{"type":"text","text":"Table Cell","styles":{}}],"props":{"colspan":1,"rowspan":1,"backgroundColor":"default","textColor":"default","textAlignment":"left"}}]}]},"children":[]}],"blockCutAtStart":"6"} -{"_meta":{"startPos":117,"endPos":276},"blocks":[{"id":"7","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},{"id":"8","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]},{"id":"9","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"Bold","styles":{"bold":true}},{"type":"text","text":"Italic","styles":{"italic":true}},{"type":"text","text":"Regular","styles":{}}],"children":[{"id":"10","type":"image","props":{"backgroundColor":"default","textAlignment":"left","name":"","url":"https://ralfvanveen.com/wp-content/uploads/2021/06/Placeholder-_-Glossary.svg","caption":"","showPreview":true},"children":[{"id":"11","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph","styles":{}}],"children":[]}]}]},{"id":"12","type":"table","props":{"textColor":"default"},"content":{"type":"tableContent","columnWidths":[null,null],"rows":[{"cells":[{"type":"tableCell","content":[{"type":"text","text":"Table Cell","styles":{}}],"props":{"colspan":1,"rowspan":1,"backgroundColor":"default","textColor":"default","textAlignment":"left"}},{"type":"tableCell","content":[{"type":"text","text":"Table Cell","styles":{}}],"props":{"colspan":1,"rowspan":1,"backgroundColor":"default","textColor":"default","textAlignment":"left"}}]},{"cells":[{"type":"tableCell","content":[{"type":"text","text":"Table Cell","styles":{}}],"props":{"colspan":1,"rowspan":1,"backgroundColor":"default","textColor":"default","textAlignment":"left"}},{"type":"tableCell","content":[{"type":"text","text":"Table Cell","styles":{}}],"props":{"colspan":1,"rowspan":1,"backgroundColor":"default","textColor":"default","textAlignment":"left"}}]}]},"children":[]}]} -{"_meta":{"startPos":117,"endPos":276},"blocks":[{"id":"7","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},{"id":"8","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]},{"id":"9","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"Bold","styles":{"bold":true}},{"type":"text","text":"Italic","styles":{"italic":true}},{"type":"text","text":"Regular","styles":{}}],"children":[{"id":"10","type":"image","props":{"backgroundColor":"default","textAlignment":"left","name":"","url":"https://ralfvanveen.com/wp-content/uploads/2021/06/Placeholder-_-Glossary.svg","caption":"","showPreview":true},"children":[{"id":"11","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph","styles":{}}],"children":[]}]}]},{"id":"12","type":"table","props":{"textColor":"default"},"content":{"type":"tableContent","columnWidths":[null,null],"rows":[{"cells":[{"type":"tableCell","content":[{"type":"text","text":"Table Cell","styles":{}}],"props":{"colspan":1,"rowspan":1,"backgroundColor":"default","textColor":"default","textAlignment":"left"}},{"type":"tableCell","content":[{"type":"text","text":"Table Cell","styles":{}}],"props":{"colspan":1,"rowspan":1,"backgroundColor":"default","textColor":"default","textAlignment":"left"}}]},{"cells":[{"type":"tableCell","content":[{"type":"text","text":"Table Cell","styles":{}}],"props":{"colspan":1,"rowspan":1,"backgroundColor":"default","textColor":"default","textAlignment":"left"}},{"type":"tableCell","content":[{"type":"text","text":"Table Cell","styles":{}}],"props":{"colspan":1,"rowspan":1,"backgroundColor":"default","textColor":"default","textAlignment":"left"}}]}]},"children":[]}]} -{"_meta":{"startPos":117,"endPos":276},"blocks":[{"id":"7","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},{"id":"8","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]},{"id":"9","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"Bold","styles":{"bold":true}},{"type":"text","text":"Italic","styles":{"italic":true}},{"type":"text","text":"Regular","styles":{}}],"children":[{"id":"10","type":"image","props":{"backgroundColor":"default","textAlignment":"left","name":"","url":"https://ralfvanveen.com/wp-content/uploads/2021/06/Placeholder-_-Glossary.svg","caption":"","showPreview":true},"children":[{"id":"11","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph","styles":{}}],"children":[]}]}]},{"id":"12","type":"table","props":{"textColor":"default"},"content":{"type":"tableContent","columnWidths":[null,null],"rows":[{"cells":[{"type":"tableCell","content":[{"type":"text","text":"Table Cell","styles":{}}],"props":{"colspan":1,"rowspan":1,"backgroundColor":"default","textColor":"default","textAlignment":"left"}},{"type":"tableCell","content":[{"type":"text","text":"Table Cell","styles":{}}],"props":{"colspan":1,"rowspan":1,"backgroundColor":"default","textColor":"default","textAlignment":"left"}}]},{"cells":[{"type":"tableCell","content":[{"type":"text","text":"Table Cell","styles":{}}],"props":{"colspan":1,"rowspan":1,"backgroundColor":"default","textColor":"default","textAlignment":"left"}},{"type":"tableCell","content":[{"type":"text","text":"Table Cell","styles":{}}],"props":{"colspan":1,"rowspan":1,"backgroundColor":"default","textColor":"default","textAlignment":"left"}}]}]},"children":[]}]} -{"_meta":{"startPos":117,"endPos":276},"blocks":[{"id":"7","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},{"id":"8","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]},{"id":"9","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"Bold","styles":{"bold":true}},{"type":"text","text":"Italic","styles":{"italic":true}},{"type":"text","text":"Regular","styles":{}}],"children":[{"id":"10","type":"image","props":{"backgroundColor":"default","textAlignment":"left","name":"","url":"https://ralfvanveen.com/wp-content/uploads/2021/06/Placeholder-_-Glossary.svg","caption":"","showPreview":true},"children":[{"id":"11","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph","styles":{}}],"children":[]}]}]},{"id":"12","type":"table","props":{"textColor":"default"},"content":{"type":"tableContent","columnWidths":[null,null],"rows":[{"cells":[{"type":"tableCell","content":[{"type":"text","text":"Table Cell","styles":{}}],"props":{"colspan":1,"rowspan":1,"backgroundColor":"default","textColor":"default","textAlignment":"left"}},{"type":"tableCell","content":[{"type":"text","text":"Table Cell","styles":{}}],"props":{"colspan":1,"rowspan":1,"backgroundColor":"default","textColor":"default","textAlignment":"left"}}]},{"cells":[{"type":"tableCell","content":[{"type":"text","text":"Table Cell","styles":{}}],"props":{"colspan":1,"rowspan":1,"backgroundColor":"default","textColor":"default","textAlignment":"left"}},{"type":"tableCell","content":[{"type":"text","text":"Table Cell","styles":{}}],"props":{"colspan":1,"rowspan":1,"backgroundColor":"default","textColor":"default","textAlignment":"left"}}]}]},"children":[]}]} -{"_meta":{"startPos":117,"endPos":276},"blocks":[{"id":"7","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},{"id":"8","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]},{"id":"9","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"Bold","styles":{"bold":true}},{"type":"text","text":"Italic","styles":{"italic":true}},{"type":"text","text":"Regular","styles":{}}],"children":[{"id":"10","type":"image","props":{"backgroundColor":"default","textAlignment":"left","name":"","url":"https://ralfvanveen.com/wp-content/uploads/2021/06/Placeholder-_-Glossary.svg","caption":"","showPreview":true},"children":[{"id":"11","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph","styles":{}}],"children":[]}]}]},{"id":"12","type":"table","props":{"textColor":"default"},"content":{"type":"tableContent","columnWidths":[null,null],"rows":[{"cells":[{"type":"tableCell","content":[{"type":"text","text":"Table Cell","styles":{}}],"props":{"colspan":1,"rowspan":1,"backgroundColor":"default","textColor":"default","textAlignment":"left"}},{"type":"tableCell","content":[{"type":"text","text":"Table Cell","styles":{}}],"props":{"colspan":1,"rowspan":1,"backgroundColor":"default","textColor":"default","textAlignment":"left"}}]},{"cells":[{"type":"tableCell","content":[{"type":"text","text":"Table Cell","styles":{}}],"props":{"colspan":1,"rowspan":1,"backgroundColor":"default","textColor":"default","textAlignment":"left"}},{"type":"tableCell","content":[{"type":"text","text":"Table Cell","styles":{}}],"props":{"colspan":1,"rowspan":1,"backgroundColor":"default","textColor":"default","textAlignment":"left"}}]}]},"children":[]}]} -{"_meta":{"startPos":120,"endPos":276},"blocks":[{"id":"7","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"ested Paragraph 2","styles":{}}],"children":[]},{"id":"8","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]},{"id":"9","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"Bold","styles":{"bold":true}},{"type":"text","text":"Italic","styles":{"italic":true}},{"type":"text","text":"Regular","styles":{}}],"children":[{"id":"10","type":"image","props":{"backgroundColor":"default","textAlignment":"left","name":"","url":"https://ralfvanveen.com/wp-content/uploads/2021/06/Placeholder-_-Glossary.svg","caption":"","showPreview":true},"children":[{"id":"11","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph","styles":{}}],"children":[]}]}]},{"id":"12","type":"table","props":{"textColor":"default"},"content":{"type":"tableContent","columnWidths":[null,null],"rows":[{"cells":[{"type":"tableCell","content":[{"type":"text","text":"Table Cell","styles":{}}],"props":{"colspan":1,"rowspan":1,"backgroundColor":"default","textColor":"default","textAlignment":"left"}},{"type":"tableCell","content":[{"type":"text","text":"Table Cell","styles":{}}],"props":{"colspan":1,"rowspan":1,"backgroundColor":"default","textColor":"default","textAlignment":"left"}}]},{"cells":[{"type":"tableCell","content":[{"type":"text","text":"Table Cell","styles":{}}],"props":{"colspan":1,"rowspan":1,"backgroundColor":"default","textColor":"default","textAlignment":"left"}},{"type":"tableCell","content":[{"type":"text","text":"Table Cell","styles":{}}],"props":{"colspan":1,"rowspan":1,"backgroundColor":"default","textColor":"default","textAlignment":"left"}}]}]},"children":[]}],"blockCutAtStart":"7"} -{"_meta":{"startPos":121,"endPos":276},"blocks":[{"id":"7","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"sted Paragraph 2","styles":{}}],"children":[]},{"id":"8","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]},{"id":"9","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"Bold","styles":{"bold":true}},{"type":"text","text":"Italic","styles":{"italic":true}},{"type":"text","text":"Regular","styles":{}}],"children":[{"id":"10","type":"image","props":{"backgroundColor":"default","textAlignment":"left","name":"","url":"https://ralfvanveen.com/wp-content/uploads/2021/06/Placeholder-_-Glossary.svg","caption":"","showPreview":true},"children":[{"id":"11","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph","styles":{}}],"children":[]}]}]},{"id":"12","type":"table","props":{"textColor":"default"},"content":{"type":"tableContent","columnWidths":[null,null],"rows":[{"cells":[{"type":"tableCell","content":[{"type":"text","text":"Table Cell","styles":{}}],"props":{"colspan":1,"rowspan":1,"backgroundColor":"default","textColor":"default","textAlignment":"left"}},{"type":"tableCell","content":[{"type":"text","text":"Table Cell","styles":{}}],"props":{"colspan":1,"rowspan":1,"backgroundColor":"default","textColor":"default","textAlignment":"left"}}]},{"cells":[{"type":"tableCell","content":[{"type":"text","text":"Table Cell","styles":{}}],"props":{"colspan":1,"rowspan":1,"backgroundColor":"default","textColor":"default","textAlignment":"left"}},{"type":"tableCell","content":[{"type":"text","text":"Table Cell","styles":{}}],"props":{"colspan":1,"rowspan":1,"backgroundColor":"default","textColor":"default","textAlignment":"left"}}]}]},"children":[]}],"blockCutAtStart":"7"} -{"_meta":{"startPos":122,"endPos":276},"blocks":[{"id":"7","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"ted Paragraph 2","styles":{}}],"children":[]},{"id":"8","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]},{"id":"9","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"Bold","styles":{"bold":true}},{"type":"text","text":"Italic","styles":{"italic":true}},{"type":"text","text":"Regular","styles":{}}],"children":[{"id":"10","type":"image","props":{"backgroundColor":"default","textAlignment":"left","name":"","url":"https://ralfvanveen.com/wp-content/uploads/2021/06/Placeholder-_-Glossary.svg","caption":"","showPreview":true},"children":[{"id":"11","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph","styles":{}}],"children":[]}]}]},{"id":"12","type":"table","props":{"textColor":"default"},"content":{"type":"tableContent","columnWidths":[null,null],"rows":[{"cells":[{"type":"tableCell","content":[{"type":"text","text":"Table Cell","styles":{}}],"props":{"colspan":1,"rowspan":1,"backgroundColor":"default","textColor":"default","textAlignment":"left"}},{"type":"tableCell","content":[{"type":"text","text":"Table Cell","styles":{}}],"props":{"colspan":1,"rowspan":1,"backgroundColor":"default","textColor":"default","textAlignment":"left"}}]},{"cells":[{"type":"tableCell","content":[{"type":"text","text":"Table Cell","styles":{}}],"props":{"colspan":1,"rowspan":1,"backgroundColor":"default","textColor":"default","textAlignment":"left"}},{"type":"tableCell","content":[{"type":"text","text":"Table Cell","styles":{}}],"props":{"colspan":1,"rowspan":1,"backgroundColor":"default","textColor":"default","textAlignment":"left"}}]}]},"children":[]}],"blockCutAtStart":"7"} -{"_meta":{"startPos":123,"endPos":276},"blocks":[{"id":"7","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"ed Paragraph 2","styles":{}}],"children":[]},{"id":"8","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]},{"id":"9","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"Bold","styles":{"bold":true}},{"type":"text","text":"Italic","styles":{"italic":true}},{"type":"text","text":"Regular","styles":{}}],"children":[{"id":"10","type":"image","props":{"backgroundColor":"default","textAlignment":"left","name":"","url":"https://ralfvanveen.com/wp-content/uploads/2021/06/Placeholder-_-Glossary.svg","caption":"","showPreview":true},"children":[{"id":"11","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph","styles":{}}],"children":[]}]}]},{"id":"12","type":"table","props":{"textColor":"default"},"content":{"type":"tableContent","columnWidths":[null,null],"rows":[{"cells":[{"type":"tableCell","content":[{"type":"text","text":"Table Cell","styles":{}}],"props":{"colspan":1,"rowspan":1,"backgroundColor":"default","textColor":"default","textAlignment":"left"}},{"type":"tableCell","content":[{"type":"text","text":"Table Cell","styles":{}}],"props":{"colspan":1,"rowspan":1,"backgroundColor":"default","textColor":"default","textAlignment":"left"}}]},{"cells":[{"type":"tableCell","content":[{"type":"text","text":"Table Cell","styles":{}}],"props":{"colspan":1,"rowspan":1,"backgroundColor":"default","textColor":"default","textAlignment":"left"}},{"type":"tableCell","content":[{"type":"text","text":"Table Cell","styles":{}}],"props":{"colspan":1,"rowspan":1,"backgroundColor":"default","textColor":"default","textAlignment":"left"}}]}]},"children":[]}],"blockCutAtStart":"7"} -{"_meta":{"startPos":124,"endPos":276},"blocks":[{"id":"7","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"d Paragraph 2","styles":{}}],"children":[]},{"id":"8","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]},{"id":"9","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"Bold","styles":{"bold":true}},{"type":"text","text":"Italic","styles":{"italic":true}},{"type":"text","text":"Regular","styles":{}}],"children":[{"id":"10","type":"image","props":{"backgroundColor":"default","textAlignment":"left","name":"","url":"https://ralfvanveen.com/wp-content/uploads/2021/06/Placeholder-_-Glossary.svg","caption":"","showPreview":true},"children":[{"id":"11","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph","styles":{}}],"children":[]}]}]},{"id":"12","type":"table","props":{"textColor":"default"},"content":{"type":"tableContent","columnWidths":[null,null],"rows":[{"cells":[{"type":"tableCell","content":[{"type":"text","text":"Table Cell","styles":{}}],"props":{"colspan":1,"rowspan":1,"backgroundColor":"default","textColor":"default","textAlignment":"left"}},{"type":"tableCell","content":[{"type":"text","text":"Table Cell","styles":{}}],"props":{"colspan":1,"rowspan":1,"backgroundColor":"default","textColor":"default","textAlignment":"left"}}]},{"cells":[{"type":"tableCell","content":[{"type":"text","text":"Table Cell","styles":{}}],"props":{"colspan":1,"rowspan":1,"backgroundColor":"default","textColor":"default","textAlignment":"left"}},{"type":"tableCell","content":[{"type":"text","text":"Table Cell","styles":{}}],"props":{"colspan":1,"rowspan":1,"backgroundColor":"default","textColor":"default","textAlignment":"left"}}]}]},"children":[]}],"blockCutAtStart":"7"} -{"_meta":{"startPos":125,"endPos":276},"blocks":[{"id":"7","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":" Paragraph 2","styles":{}}],"children":[]},{"id":"8","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]},{"id":"9","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"Bold","styles":{"bold":true}},{"type":"text","text":"Italic","styles":{"italic":true}},{"type":"text","text":"Regular","styles":{}}],"children":[{"id":"10","type":"image","props":{"backgroundColor":"default","textAlignment":"left","name":"","url":"https://ralfvanveen.com/wp-content/uploads/2021/06/Placeholder-_-Glossary.svg","caption":"","showPreview":true},"children":[{"id":"11","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph","styles":{}}],"children":[]}]}]},{"id":"12","type":"table","props":{"textColor":"default"},"content":{"type":"tableContent","columnWidths":[null,null],"rows":[{"cells":[{"type":"tableCell","content":[{"type":"text","text":"Table Cell","styles":{}}],"props":{"colspan":1,"rowspan":1,"backgroundColor":"default","textColor":"default","textAlignment":"left"}},{"type":"tableCell","content":[{"type":"text","text":"Table Cell","styles":{}}],"props":{"colspan":1,"rowspan":1,"backgroundColor":"default","textColor":"default","textAlignment":"left"}}]},{"cells":[{"type":"tableCell","content":[{"type":"text","text":"Table Cell","styles":{}}],"props":{"colspan":1,"rowspan":1,"backgroundColor":"default","textColor":"default","textAlignment":"left"}},{"type":"tableCell","content":[{"type":"text","text":"Table Cell","styles":{}}],"props":{"colspan":1,"rowspan":1,"backgroundColor":"default","textColor":"default","textAlignment":"left"}}]}]},"children":[]}],"blockCutAtStart":"7"} -{"_meta":{"startPos":126,"endPos":276},"blocks":[{"id":"7","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Paragraph 2","styles":{}}],"children":[]},{"id":"8","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]},{"id":"9","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"Bold","styles":{"bold":true}},{"type":"text","text":"Italic","styles":{"italic":true}},{"type":"text","text":"Regular","styles":{}}],"children":[{"id":"10","type":"image","props":{"backgroundColor":"default","textAlignment":"left","name":"","url":"https://ralfvanveen.com/wp-content/uploads/2021/06/Placeholder-_-Glossary.svg","caption":"","showPreview":true},"children":[{"id":"11","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph","styles":{}}],"children":[]}]}]},{"id":"12","type":"table","props":{"textColor":"default"},"content":{"type":"tableContent","columnWidths":[null,null],"rows":[{"cells":[{"type":"tableCell","content":[{"type":"text","text":"Table Cell","styles":{}}],"props":{"colspan":1,"rowspan":1,"backgroundColor":"default","textColor":"default","textAlignment":"left"}},{"type":"tableCell","content":[{"type":"text","text":"Table Cell","styles":{}}],"props":{"colspan":1,"rowspan":1,"backgroundColor":"default","textColor":"default","textAlignment":"left"}}]},{"cells":[{"type":"tableCell","content":[{"type":"text","text":"Table Cell","styles":{}}],"props":{"colspan":1,"rowspan":1,"backgroundColor":"default","textColor":"default","textAlignment":"left"}},{"type":"tableCell","content":[{"type":"text","text":"Table Cell","styles":{}}],"props":{"colspan":1,"rowspan":1,"backgroundColor":"default","textColor":"default","textAlignment":"left"}}]}]},"children":[]}],"blockCutAtStart":"7"} -{"_meta":{"startPos":127,"endPos":276},"blocks":[{"id":"7","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"aragraph 2","styles":{}}],"children":[]},{"id":"8","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]},{"id":"9","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"Bold","styles":{"bold":true}},{"type":"text","text":"Italic","styles":{"italic":true}},{"type":"text","text":"Regular","styles":{}}],"children":[{"id":"10","type":"image","props":{"backgroundColor":"default","textAlignment":"left","name":"","url":"https://ralfvanveen.com/wp-content/uploads/2021/06/Placeholder-_-Glossary.svg","caption":"","showPreview":true},"children":[{"id":"11","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph","styles":{}}],"children":[]}]}]},{"id":"12","type":"table","props":{"textColor":"default"},"content":{"type":"tableContent","columnWidths":[null,null],"rows":[{"cells":[{"type":"tableCell","content":[{"type":"text","text":"Table Cell","styles":{}}],"props":{"colspan":1,"rowspan":1,"backgroundColor":"default","textColor":"default","textAlignment":"left"}},{"type":"tableCell","content":[{"type":"text","text":"Table Cell","styles":{}}],"props":{"colspan":1,"rowspan":1,"backgroundColor":"default","textColor":"default","textAlignment":"left"}}]},{"cells":[{"type":"tableCell","content":[{"type":"text","text":"Table Cell","styles":{}}],"props":{"colspan":1,"rowspan":1,"backgroundColor":"default","textColor":"default","textAlignment":"left"}},{"type":"tableCell","content":[{"type":"text","text":"Table Cell","styles":{}}],"props":{"colspan":1,"rowspan":1,"backgroundColor":"default","textColor":"default","textAlignment":"left"}}]}]},"children":[]}],"blockCutAtStart":"7"} -{"_meta":{"startPos":128,"endPos":276},"blocks":[{"id":"7","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"ragraph 2","styles":{}}],"children":[]},{"id":"8","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]},{"id":"9","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"Bold","styles":{"bold":true}},{"type":"text","text":"Italic","styles":{"italic":true}},{"type":"text","text":"Regular","styles":{}}],"children":[{"id":"10","type":"image","props":{"backgroundColor":"default","textAlignment":"left","name":"","url":"https://ralfvanveen.com/wp-content/uploads/2021/06/Placeholder-_-Glossary.svg","caption":"","showPreview":true},"children":[{"id":"11","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph","styles":{}}],"children":[]}]}]},{"id":"12","type":"table","props":{"textColor":"default"},"content":{"type":"tableContent","columnWidths":[null,null],"rows":[{"cells":[{"type":"tableCell","content":[{"type":"text","text":"Table Cell","styles":{}}],"props":{"colspan":1,"rowspan":1,"backgroundColor":"default","textColor":"default","textAlignment":"left"}},{"type":"tableCell","content":[{"type":"text","text":"Table Cell","styles":{}}],"props":{"colspan":1,"rowspan":1,"backgroundColor":"default","textColor":"default","textAlignment":"left"}}]},{"cells":[{"type":"tableCell","content":[{"type":"text","text":"Table Cell","styles":{}}],"props":{"colspan":1,"rowspan":1,"backgroundColor":"default","textColor":"default","textAlignment":"left"}},{"type":"tableCell","content":[{"type":"text","text":"Table Cell","styles":{}}],"props":{"colspan":1,"rowspan":1,"backgroundColor":"default","textColor":"default","textAlignment":"left"}}]}]},"children":[]}],"blockCutAtStart":"7"} -{"_meta":{"startPos":129,"endPos":276},"blocks":[{"id":"7","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"agraph 2","styles":{}}],"children":[]},{"id":"8","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]},{"id":"9","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"Bold","styles":{"bold":true}},{"type":"text","text":"Italic","styles":{"italic":true}},{"type":"text","text":"Regular","styles":{}}],"children":[{"id":"10","type":"image","props":{"backgroundColor":"default","textAlignment":"left","name":"","url":"https://ralfvanveen.com/wp-content/uploads/2021/06/Placeholder-_-Glossary.svg","caption":"","showPreview":true},"children":[{"id":"11","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph","styles":{}}],"children":[]}]}]},{"id":"12","type":"table","props":{"textColor":"default"},"content":{"type":"tableContent","columnWidths":[null,null],"rows":[{"cells":[{"type":"tableCell","content":[{"type":"text","text":"Table Cell","styles":{}}],"props":{"colspan":1,"rowspan":1,"backgroundColor":"default","textColor":"default","textAlignment":"left"}},{"type":"tableCell","content":[{"type":"text","text":"Table Cell","styles":{}}],"props":{"colspan":1,"rowspan":1,"backgroundColor":"default","textColor":"default","textAlignment":"left"}}]},{"cells":[{"type":"tableCell","content":[{"type":"text","text":"Table Cell","styles":{}}],"props":{"colspan":1,"rowspan":1,"backgroundColor":"default","textColor":"default","textAlignment":"left"}},{"type":"tableCell","content":[{"type":"text","text":"Table Cell","styles":{}}],"props":{"colspan":1,"rowspan":1,"backgroundColor":"default","textColor":"default","textAlignment":"left"}}]}]},"children":[]}],"blockCutAtStart":"7"} -{"_meta":{"startPos":130,"endPos":276},"blocks":[{"id":"7","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"graph 2","styles":{}}],"children":[]},{"id":"8","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]},{"id":"9","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"Bold","styles":{"bold":true}},{"type":"text","text":"Italic","styles":{"italic":true}},{"type":"text","text":"Regular","styles":{}}],"children":[{"id":"10","type":"image","props":{"backgroundColor":"default","textAlignment":"left","name":"","url":"https://ralfvanveen.com/wp-content/uploads/2021/06/Placeholder-_-Glossary.svg","caption":"","showPreview":true},"children":[{"id":"11","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph","styles":{}}],"children":[]}]}]},{"id":"12","type":"table","props":{"textColor":"default"},"content":{"type":"tableContent","columnWidths":[null,null],"rows":[{"cells":[{"type":"tableCell","content":[{"type":"text","text":"Table Cell","styles":{}}],"props":{"colspan":1,"rowspan":1,"backgroundColor":"default","textColor":"default","textAlignment":"left"}},{"type":"tableCell","content":[{"type":"text","text":"Table Cell","styles":{}}],"props":{"colspan":1,"rowspan":1,"backgroundColor":"default","textColor":"default","textAlignment":"left"}}]},{"cells":[{"type":"tableCell","content":[{"type":"text","text":"Table Cell","styles":{}}],"props":{"colspan":1,"rowspan":1,"backgroundColor":"default","textColor":"default","textAlignment":"left"}},{"type":"tableCell","content":[{"type":"text","text":"Table Cell","styles":{}}],"props":{"colspan":1,"rowspan":1,"backgroundColor":"default","textColor":"default","textAlignment":"left"}}]}]},"children":[]}],"blockCutAtStart":"7"} -{"_meta":{"startPos":131,"endPos":276},"blocks":[{"id":"7","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"raph 2","styles":{}}],"children":[]},{"id":"8","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]},{"id":"9","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"Bold","styles":{"bold":true}},{"type":"text","text":"Italic","styles":{"italic":true}},{"type":"text","text":"Regular","styles":{}}],"children":[{"id":"10","type":"image","props":{"backgroundColor":"default","textAlignment":"left","name":"","url":"https://ralfvanveen.com/wp-content/uploads/2021/06/Placeholder-_-Glossary.svg","caption":"","showPreview":true},"children":[{"id":"11","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph","styles":{}}],"children":[]}]}]},{"id":"12","type":"table","props":{"textColor":"default"},"content":{"type":"tableContent","columnWidths":[null,null],"rows":[{"cells":[{"type":"tableCell","content":[{"type":"text","text":"Table Cell","styles":{}}],"props":{"colspan":1,"rowspan":1,"backgroundColor":"default","textColor":"default","textAlignment":"left"}},{"type":"tableCell","content":[{"type":"text","text":"Table Cell","styles":{}}],"props":{"colspan":1,"rowspan":1,"backgroundColor":"default","textColor":"default","textAlignment":"left"}}]},{"cells":[{"type":"tableCell","content":[{"type":"text","text":"Table Cell","styles":{}}],"props":{"colspan":1,"rowspan":1,"backgroundColor":"default","textColor":"default","textAlignment":"left"}},{"type":"tableCell","content":[{"type":"text","text":"Table Cell","styles":{}}],"props":{"colspan":1,"rowspan":1,"backgroundColor":"default","textColor":"default","textAlignment":"left"}}]}]},"children":[]}],"blockCutAtStart":"7"} -{"_meta":{"startPos":132,"endPos":276},"blocks":[{"id":"7","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"aph 2","styles":{}}],"children":[]},{"id":"8","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]},{"id":"9","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"Bold","styles":{"bold":true}},{"type":"text","text":"Italic","styles":{"italic":true}},{"type":"text","text":"Regular","styles":{}}],"children":[{"id":"10","type":"image","props":{"backgroundColor":"default","textAlignment":"left","name":"","url":"https://ralfvanveen.com/wp-content/uploads/2021/06/Placeholder-_-Glossary.svg","caption":"","showPreview":true},"children":[{"id":"11","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph","styles":{}}],"children":[]}]}]},{"id":"12","type":"table","props":{"textColor":"default"},"content":{"type":"tableContent","columnWidths":[null,null],"rows":[{"cells":[{"type":"tableCell","content":[{"type":"text","text":"Table Cell","styles":{}}],"props":{"colspan":1,"rowspan":1,"backgroundColor":"default","textColor":"default","textAlignment":"left"}},{"type":"tableCell","content":[{"type":"text","text":"Table Cell","styles":{}}],"props":{"colspan":1,"rowspan":1,"backgroundColor":"default","textColor":"default","textAlignment":"left"}}]},{"cells":[{"type":"tableCell","content":[{"type":"text","text":"Table Cell","styles":{}}],"props":{"colspan":1,"rowspan":1,"backgroundColor":"default","textColor":"default","textAlignment":"left"}},{"type":"tableCell","content":[{"type":"text","text":"Table Cell","styles":{}}],"props":{"colspan":1,"rowspan":1,"backgroundColor":"default","textColor":"default","textAlignment":"left"}}]}]},"children":[]}],"blockCutAtStart":"7"} -{"_meta":{"startPos":133,"endPos":276},"blocks":[{"id":"7","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"ph 2","styles":{}}],"children":[]},{"id":"8","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]},{"id":"9","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"Bold","styles":{"bold":true}},{"type":"text","text":"Italic","styles":{"italic":true}},{"type":"text","text":"Regular","styles":{}}],"children":[{"id":"10","type":"image","props":{"backgroundColor":"default","textAlignment":"left","name":"","url":"https://ralfvanveen.com/wp-content/uploads/2021/06/Placeholder-_-Glossary.svg","caption":"","showPreview":true},"children":[{"id":"11","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph","styles":{}}],"children":[]}]}]},{"id":"12","type":"table","props":{"textColor":"default"},"content":{"type":"tableContent","columnWidths":[null,null],"rows":[{"cells":[{"type":"tableCell","content":[{"type":"text","text":"Table Cell","styles":{}}],"props":{"colspan":1,"rowspan":1,"backgroundColor":"default","textColor":"default","textAlignment":"left"}},{"type":"tableCell","content":[{"type":"text","text":"Table Cell","styles":{}}],"props":{"colspan":1,"rowspan":1,"backgroundColor":"default","textColor":"default","textAlignment":"left"}}]},{"cells":[{"type":"tableCell","content":[{"type":"text","text":"Table Cell","styles":{}}],"props":{"colspan":1,"rowspan":1,"backgroundColor":"default","textColor":"default","textAlignment":"left"}},{"type":"tableCell","content":[{"type":"text","text":"Table Cell","styles":{}}],"props":{"colspan":1,"rowspan":1,"backgroundColor":"default","textColor":"default","textAlignment":"left"}}]}]},"children":[]}],"blockCutAtStart":"7"} -{"_meta":{"startPos":134,"endPos":276},"blocks":[{"id":"7","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"h 2","styles":{}}],"children":[]},{"id":"8","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]},{"id":"9","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"Bold","styles":{"bold":true}},{"type":"text","text":"Italic","styles":{"italic":true}},{"type":"text","text":"Regular","styles":{}}],"children":[{"id":"10","type":"image","props":{"backgroundColor":"default","textAlignment":"left","name":"","url":"https://ralfvanveen.com/wp-content/uploads/2021/06/Placeholder-_-Glossary.svg","caption":"","showPreview":true},"children":[{"id":"11","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph","styles":{}}],"children":[]}]}]},{"id":"12","type":"table","props":{"textColor":"default"},"content":{"type":"tableContent","columnWidths":[null,null],"rows":[{"cells":[{"type":"tableCell","content":[{"type":"text","text":"Table Cell","styles":{}}],"props":{"colspan":1,"rowspan":1,"backgroundColor":"default","textColor":"default","textAlignment":"left"}},{"type":"tableCell","content":[{"type":"text","text":"Table Cell","styles":{}}],"props":{"colspan":1,"rowspan":1,"backgroundColor":"default","textColor":"default","textAlignment":"left"}}]},{"cells":[{"type":"tableCell","content":[{"type":"text","text":"Table Cell","styles":{}}],"props":{"colspan":1,"rowspan":1,"backgroundColor":"default","textColor":"default","textAlignment":"left"}},{"type":"tableCell","content":[{"type":"text","text":"Table Cell","styles":{}}],"props":{"colspan":1,"rowspan":1,"backgroundColor":"default","textColor":"default","textAlignment":"left"}}]}]},"children":[]}],"blockCutAtStart":"7"} -{"_meta":{"startPos":135,"endPos":276},"blocks":[{"id":"7","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":" 2","styles":{}}],"children":[]},{"id":"8","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]},{"id":"9","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"Bold","styles":{"bold":true}},{"type":"text","text":"Italic","styles":{"italic":true}},{"type":"text","text":"Regular","styles":{}}],"children":[{"id":"10","type":"image","props":{"backgroundColor":"default","textAlignment":"left","name":"","url":"https://ralfvanveen.com/wp-content/uploads/2021/06/Placeholder-_-Glossary.svg","caption":"","showPreview":true},"children":[{"id":"11","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph","styles":{}}],"children":[]}]}]},{"id":"12","type":"table","props":{"textColor":"default"},"content":{"type":"tableContent","columnWidths":[null,null],"rows":[{"cells":[{"type":"tableCell","content":[{"type":"text","text":"Table Cell","styles":{}}],"props":{"colspan":1,"rowspan":1,"backgroundColor":"default","textColor":"default","textAlignment":"left"}},{"type":"tableCell","content":[{"type":"text","text":"Table Cell","styles":{}}],"props":{"colspan":1,"rowspan":1,"backgroundColor":"default","textColor":"default","textAlignment":"left"}}]},{"cells":[{"type":"tableCell","content":[{"type":"text","text":"Table Cell","styles":{}}],"props":{"colspan":1,"rowspan":1,"backgroundColor":"default","textColor":"default","textAlignment":"left"}},{"type":"tableCell","content":[{"type":"text","text":"Table Cell","styles":{}}],"props":{"colspan":1,"rowspan":1,"backgroundColor":"default","textColor":"default","textAlignment":"left"}}]}]},"children":[]}],"blockCutAtStart":"7"} -{"_meta":{"startPos":136,"endPos":276},"blocks":[{"id":"7","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"2","styles":{}}],"children":[]},{"id":"8","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]},{"id":"9","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"Bold","styles":{"bold":true}},{"type":"text","text":"Italic","styles":{"italic":true}},{"type":"text","text":"Regular","styles":{}}],"children":[{"id":"10","type":"image","props":{"backgroundColor":"default","textAlignment":"left","name":"","url":"https://ralfvanveen.com/wp-content/uploads/2021/06/Placeholder-_-Glossary.svg","caption":"","showPreview":true},"children":[{"id":"11","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph","styles":{}}],"children":[]}]}]},{"id":"12","type":"table","props":{"textColor":"default"},"content":{"type":"tableContent","columnWidths":[null,null],"rows":[{"cells":[{"type":"tableCell","content":[{"type":"text","text":"Table Cell","styles":{}}],"props":{"colspan":1,"rowspan":1,"backgroundColor":"default","textColor":"default","textAlignment":"left"}},{"type":"tableCell","content":[{"type":"text","text":"Table Cell","styles":{}}],"props":{"colspan":1,"rowspan":1,"backgroundColor":"default","textColor":"default","textAlignment":"left"}}]},{"cells":[{"type":"tableCell","content":[{"type":"text","text":"Table Cell","styles":{}}],"props":{"colspan":1,"rowspan":1,"backgroundColor":"default","textColor":"default","textAlignment":"left"}},{"type":"tableCell","content":[{"type":"text","text":"Table Cell","styles":{}}],"props":{"colspan":1,"rowspan":1,"backgroundColor":"default","textColor":"default","textAlignment":"left"}}]}]},"children":[]}],"blockCutAtStart":"7"} -{"_meta":{"startPos":139,"endPos":276},"blocks":[{"id":"8","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]},{"id":"9","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"Bold","styles":{"bold":true}},{"type":"text","text":"Italic","styles":{"italic":true}},{"type":"text","text":"Regular","styles":{}}],"children":[{"id":"10","type":"image","props":{"backgroundColor":"default","textAlignment":"left","name":"","url":"https://ralfvanveen.com/wp-content/uploads/2021/06/Placeholder-_-Glossary.svg","caption":"","showPreview":true},"children":[{"id":"11","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph","styles":{}}],"children":[]}]}]},{"id":"12","type":"table","props":{"textColor":"default"},"content":{"type":"tableContent","columnWidths":[null,null],"rows":[{"cells":[{"type":"tableCell","content":[{"type":"text","text":"Table Cell","styles":{}}],"props":{"colspan":1,"rowspan":1,"backgroundColor":"default","textColor":"default","textAlignment":"left"}},{"type":"tableCell","content":[{"type":"text","text":"Table Cell","styles":{}}],"props":{"colspan":1,"rowspan":1,"backgroundColor":"default","textColor":"default","textAlignment":"left"}}]},{"cells":[{"type":"tableCell","content":[{"type":"text","text":"Table Cell","styles":{}}],"props":{"colspan":1,"rowspan":1,"backgroundColor":"default","textColor":"default","textAlignment":"left"}},{"type":"tableCell","content":[{"type":"text","text":"Table Cell","styles":{}}],"props":{"colspan":1,"rowspan":1,"backgroundColor":"default","textColor":"default","textAlignment":"left"}}]}]},"children":[]}]} -{"_meta":{"startPos":139,"endPos":276},"blocks":[{"id":"8","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]},{"id":"9","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"Bold","styles":{"bold":true}},{"type":"text","text":"Italic","styles":{"italic":true}},{"type":"text","text":"Regular","styles":{}}],"children":[{"id":"10","type":"image","props":{"backgroundColor":"default","textAlignment":"left","name":"","url":"https://ralfvanveen.com/wp-content/uploads/2021/06/Placeholder-_-Glossary.svg","caption":"","showPreview":true},"children":[{"id":"11","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph","styles":{}}],"children":[]}]}]},{"id":"12","type":"table","props":{"textColor":"default"},"content":{"type":"tableContent","columnWidths":[null,null],"rows":[{"cells":[{"type":"tableCell","content":[{"type":"text","text":"Table Cell","styles":{}}],"props":{"colspan":1,"rowspan":1,"backgroundColor":"default","textColor":"default","textAlignment":"left"}},{"type":"tableCell","content":[{"type":"text","text":"Table Cell","styles":{}}],"props":{"colspan":1,"rowspan":1,"backgroundColor":"default","textColor":"default","textAlignment":"left"}}]},{"cells":[{"type":"tableCell","content":[{"type":"text","text":"Table Cell","styles":{}}],"props":{"colspan":1,"rowspan":1,"backgroundColor":"default","textColor":"default","textAlignment":"left"}},{"type":"tableCell","content":[{"type":"text","text":"Table Cell","styles":{}}],"props":{"colspan":1,"rowspan":1,"backgroundColor":"default","textColor":"default","textAlignment":"left"}}]}]},"children":[]}]} -{"_meta":{"startPos":139,"endPos":276},"blocks":[{"id":"8","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]},{"id":"9","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"Bold","styles":{"bold":true}},{"type":"text","text":"Italic","styles":{"italic":true}},{"type":"text","text":"Regular","styles":{}}],"children":[{"id":"10","type":"image","props":{"backgroundColor":"default","textAlignment":"left","name":"","url":"https://ralfvanveen.com/wp-content/uploads/2021/06/Placeholder-_-Glossary.svg","caption":"","showPreview":true},"children":[{"id":"11","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph","styles":{}}],"children":[]}]}]},{"id":"12","type":"table","props":{"textColor":"default"},"content":{"type":"tableContent","columnWidths":[null,null],"rows":[{"cells":[{"type":"tableCell","content":[{"type":"text","text":"Table Cell","styles":{}}],"props":{"colspan":1,"rowspan":1,"backgroundColor":"default","textColor":"default","textAlignment":"left"}},{"type":"tableCell","content":[{"type":"text","text":"Table Cell","styles":{}}],"props":{"colspan":1,"rowspan":1,"backgroundColor":"default","textColor":"default","textAlignment":"left"}}]},{"cells":[{"type":"tableCell","content":[{"type":"text","text":"Table Cell","styles":{}}],"props":{"colspan":1,"rowspan":1,"backgroundColor":"default","textColor":"default","textAlignment":"left"}},{"type":"tableCell","content":[{"type":"text","text":"Table Cell","styles":{}}],"props":{"colspan":1,"rowspan":1,"backgroundColor":"default","textColor":"default","textAlignment":"left"}}]}]},"children":[]}]} -{"_meta":{"startPos":139,"endPos":276},"blocks":[{"id":"8","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]},{"id":"9","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"Bold","styles":{"bold":true}},{"type":"text","text":"Italic","styles":{"italic":true}},{"type":"text","text":"Regular","styles":{}}],"children":[{"id":"10","type":"image","props":{"backgroundColor":"default","textAlignment":"left","name":"","url":"https://ralfvanveen.com/wp-content/uploads/2021/06/Placeholder-_-Glossary.svg","caption":"","showPreview":true},"children":[{"id":"11","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph","styles":{}}],"children":[]}]}]},{"id":"12","type":"table","props":{"textColor":"default"},"content":{"type":"tableContent","columnWidths":[null,null],"rows":[{"cells":[{"type":"tableCell","content":[{"type":"text","text":"Table Cell","styles":{}}],"props":{"colspan":1,"rowspan":1,"backgroundColor":"default","textColor":"default","textAlignment":"left"}},{"type":"tableCell","content":[{"type":"text","text":"Table Cell","styles":{}}],"props":{"colspan":1,"rowspan":1,"backgroundColor":"default","textColor":"default","textAlignment":"left"}}]},{"cells":[{"type":"tableCell","content":[{"type":"text","text":"Table Cell","styles":{}}],"props":{"colspan":1,"rowspan":1,"backgroundColor":"default","textColor":"default","textAlignment":"left"}},{"type":"tableCell","content":[{"type":"text","text":"Table Cell","styles":{}}],"props":{"colspan":1,"rowspan":1,"backgroundColor":"default","textColor":"default","textAlignment":"left"}}]}]},"children":[]}]} -{"_meta":{"startPos":139,"endPos":276},"blocks":[{"id":"8","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]},{"id":"9","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"Bold","styles":{"bold":true}},{"type":"text","text":"Italic","styles":{"italic":true}},{"type":"text","text":"Regular","styles":{}}],"children":[{"id":"10","type":"image","props":{"backgroundColor":"default","textAlignment":"left","name":"","url":"https://ralfvanveen.com/wp-content/uploads/2021/06/Placeholder-_-Glossary.svg","caption":"","showPreview":true},"children":[{"id":"11","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph","styles":{}}],"children":[]}]}]},{"id":"12","type":"table","props":{"textColor":"default"},"content":{"type":"tableContent","columnWidths":[null,null],"rows":[{"cells":[{"type":"tableCell","content":[{"type":"text","text":"Table Cell","styles":{}}],"props":{"colspan":1,"rowspan":1,"backgroundColor":"default","textColor":"default","textAlignment":"left"}},{"type":"tableCell","content":[{"type":"text","text":"Table Cell","styles":{}}],"props":{"colspan":1,"rowspan":1,"backgroundColor":"default","textColor":"default","textAlignment":"left"}}]},{"cells":[{"type":"tableCell","content":[{"type":"text","text":"Table Cell","styles":{}}],"props":{"colspan":1,"rowspan":1,"backgroundColor":"default","textColor":"default","textAlignment":"left"}},{"type":"tableCell","content":[{"type":"text","text":"Table Cell","styles":{}}],"props":{"colspan":1,"rowspan":1,"backgroundColor":"default","textColor":"default","textAlignment":"left"}}]}]},"children":[]}]} -{"_meta":{"startPos":142,"endPos":276},"blocks":[{"id":"8","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"ested Paragraph 3","styles":{}}],"children":[]},{"id":"9","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"Bold","styles":{"bold":true}},{"type":"text","text":"Italic","styles":{"italic":true}},{"type":"text","text":"Regular","styles":{}}],"children":[{"id":"10","type":"image","props":{"backgroundColor":"default","textAlignment":"left","name":"","url":"https://ralfvanveen.com/wp-content/uploads/2021/06/Placeholder-_-Glossary.svg","caption":"","showPreview":true},"children":[{"id":"11","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph","styles":{}}],"children":[]}]}]},{"id":"12","type":"table","props":{"textColor":"default"},"content":{"type":"tableContent","columnWidths":[null,null],"rows":[{"cells":[{"type":"tableCell","content":[{"type":"text","text":"Table Cell","styles":{}}],"props":{"colspan":1,"rowspan":1,"backgroundColor":"default","textColor":"default","textAlignment":"left"}},{"type":"tableCell","content":[{"type":"text","text":"Table Cell","styles":{}}],"props":{"colspan":1,"rowspan":1,"backgroundColor":"default","textColor":"default","textAlignment":"left"}}]},{"cells":[{"type":"tableCell","content":[{"type":"text","text":"Table Cell","styles":{}}],"props":{"colspan":1,"rowspan":1,"backgroundColor":"default","textColor":"default","textAlignment":"left"}},{"type":"tableCell","content":[{"type":"text","text":"Table Cell","styles":{}}],"props":{"colspan":1,"rowspan":1,"backgroundColor":"default","textColor":"default","textAlignment":"left"}}]}]},"children":[]}],"blockCutAtStart":"8"} -{"_meta":{"startPos":143,"endPos":276},"blocks":[{"id":"8","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"sted Paragraph 3","styles":{}}],"children":[]},{"id":"9","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"Bold","styles":{"bold":true}},{"type":"text","text":"Italic","styles":{"italic":true}},{"type":"text","text":"Regular","styles":{}}],"children":[{"id":"10","type":"image","props":{"backgroundColor":"default","textAlignment":"left","name":"","url":"https://ralfvanveen.com/wp-content/uploads/2021/06/Placeholder-_-Glossary.svg","caption":"","showPreview":true},"children":[{"id":"11","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph","styles":{}}],"children":[]}]}]},{"id":"12","type":"table","props":{"textColor":"default"},"content":{"type":"tableContent","columnWidths":[null,null],"rows":[{"cells":[{"type":"tableCell","content":[{"type":"text","text":"Table Cell","styles":{}}],"props":{"colspan":1,"rowspan":1,"backgroundColor":"default","textColor":"default","textAlignment":"left"}},{"type":"tableCell","content":[{"type":"text","text":"Table Cell","styles":{}}],"props":{"colspan":1,"rowspan":1,"backgroundColor":"default","textColor":"default","textAlignment":"left"}}]},{"cells":[{"type":"tableCell","content":[{"type":"text","text":"Table Cell","styles":{}}],"props":{"colspan":1,"rowspan":1,"backgroundColor":"default","textColor":"default","textAlignment":"left"}},{"type":"tableCell","content":[{"type":"text","text":"Table Cell","styles":{}}],"props":{"colspan":1,"rowspan":1,"backgroundColor":"default","textColor":"default","textAlignment":"left"}}]}]},"children":[]}],"blockCutAtStart":"8"} -{"_meta":{"startPos":144,"endPos":276},"blocks":[{"id":"8","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"ted Paragraph 3","styles":{}}],"children":[]},{"id":"9","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"Bold","styles":{"bold":true}},{"type":"text","text":"Italic","styles":{"italic":true}},{"type":"text","text":"Regular","styles":{}}],"children":[{"id":"10","type":"image","props":{"backgroundColor":"default","textAlignment":"left","name":"","url":"https://ralfvanveen.com/wp-content/uploads/2021/06/Placeholder-_-Glossary.svg","caption":"","showPreview":true},"children":[{"id":"11","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph","styles":{}}],"children":[]}]}]},{"id":"12","type":"table","props":{"textColor":"default"},"content":{"type":"tableContent","columnWidths":[null,null],"rows":[{"cells":[{"type":"tableCell","content":[{"type":"text","text":"Table Cell","styles":{}}],"props":{"colspan":1,"rowspan":1,"backgroundColor":"default","textColor":"default","textAlignment":"left"}},{"type":"tableCell","content":[{"type":"text","text":"Table Cell","styles":{}}],"props":{"colspan":1,"rowspan":1,"backgroundColor":"default","textColor":"default","textAlignment":"left"}}]},{"cells":[{"type":"tableCell","content":[{"type":"text","text":"Table Cell","styles":{}}],"props":{"colspan":1,"rowspan":1,"backgroundColor":"default","textColor":"default","textAlignment":"left"}},{"type":"tableCell","content":[{"type":"text","text":"Table Cell","styles":{}}],"props":{"colspan":1,"rowspan":1,"backgroundColor":"default","textColor":"default","textAlignment":"left"}}]}]},"children":[]}],"blockCutAtStart":"8"} -{"_meta":{"startPos":145,"endPos":276},"blocks":[{"id":"8","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"ed Paragraph 3","styles":{}}],"children":[]},{"id":"9","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"Bold","styles":{"bold":true}},{"type":"text","text":"Italic","styles":{"italic":true}},{"type":"text","text":"Regular","styles":{}}],"children":[{"id":"10","type":"image","props":{"backgroundColor":"default","textAlignment":"left","name":"","url":"https://ralfvanveen.com/wp-content/uploads/2021/06/Placeholder-_-Glossary.svg","caption":"","showPreview":true},"children":[{"id":"11","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph","styles":{}}],"children":[]}]}]},{"id":"12","type":"table","props":{"textColor":"default"},"content":{"type":"tableContent","columnWidths":[null,null],"rows":[{"cells":[{"type":"tableCell","content":[{"type":"text","text":"Table Cell","styles":{}}],"props":{"colspan":1,"rowspan":1,"backgroundColor":"default","textColor":"default","textAlignment":"left"}},{"type":"tableCell","content":[{"type":"text","text":"Table Cell","styles":{}}],"props":{"colspan":1,"rowspan":1,"backgroundColor":"default","textColor":"default","textAlignment":"left"}}]},{"cells":[{"type":"tableCell","content":[{"type":"text","text":"Table Cell","styles":{}}],"props":{"colspan":1,"rowspan":1,"backgroundColor":"default","textColor":"default","textAlignment":"left"}},{"type":"tableCell","content":[{"type":"text","text":"Table Cell","styles":{}}],"props":{"colspan":1,"rowspan":1,"backgroundColor":"default","textColor":"default","textAlignment":"left"}}]}]},"children":[]}],"blockCutAtStart":"8"} -{"_meta":{"startPos":146,"endPos":276},"blocks":[{"id":"8","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"d Paragraph 3","styles":{}}],"children":[]},{"id":"9","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"Bold","styles":{"bold":true}},{"type":"text","text":"Italic","styles":{"italic":true}},{"type":"text","text":"Regular","styles":{}}],"children":[{"id":"10","type":"image","props":{"backgroundColor":"default","textAlignment":"left","name":"","url":"https://ralfvanveen.com/wp-content/uploads/2021/06/Placeholder-_-Glossary.svg","caption":"","showPreview":true},"children":[{"id":"11","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph","styles":{}}],"children":[]}]}]},{"id":"12","type":"table","props":{"textColor":"default"},"content":{"type":"tableContent","columnWidths":[null,null],"rows":[{"cells":[{"type":"tableCell","content":[{"type":"text","text":"Table Cell","styles":{}}],"props":{"colspan":1,"rowspan":1,"backgroundColor":"default","textColor":"default","textAlignment":"left"}},{"type":"tableCell","content":[{"type":"text","text":"Table Cell","styles":{}}],"props":{"colspan":1,"rowspan":1,"backgroundColor":"default","textColor":"default","textAlignment":"left"}}]},{"cells":[{"type":"tableCell","content":[{"type":"text","text":"Table Cell","styles":{}}],"props":{"colspan":1,"rowspan":1,"backgroundColor":"default","textColor":"default","textAlignment":"left"}},{"type":"tableCell","content":[{"type":"text","text":"Table Cell","styles":{}}],"props":{"colspan":1,"rowspan":1,"backgroundColor":"default","textColor":"default","textAlignment":"left"}}]}]},"children":[]}],"blockCutAtStart":"8"} -{"_meta":{"startPos":147,"endPos":276},"blocks":[{"id":"8","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":" Paragraph 3","styles":{}}],"children":[]},{"id":"9","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"Bold","styles":{"bold":true}},{"type":"text","text":"Italic","styles":{"italic":true}},{"type":"text","text":"Regular","styles":{}}],"children":[{"id":"10","type":"image","props":{"backgroundColor":"default","textAlignment":"left","name":"","url":"https://ralfvanveen.com/wp-content/uploads/2021/06/Placeholder-_-Glossary.svg","caption":"","showPreview":true},"children":[{"id":"11","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph","styles":{}}],"children":[]}]}]},{"id":"12","type":"table","props":{"textColor":"default"},"content":{"type":"tableContent","columnWidths":[null,null],"rows":[{"cells":[{"type":"tableCell","content":[{"type":"text","text":"Table Cell","styles":{}}],"props":{"colspan":1,"rowspan":1,"backgroundColor":"default","textColor":"default","textAlignment":"left"}},{"type":"tableCell","content":[{"type":"text","text":"Table Cell","styles":{}}],"props":{"colspan":1,"rowspan":1,"backgroundColor":"default","textColor":"default","textAlignment":"left"}}]},{"cells":[{"type":"tableCell","content":[{"type":"text","text":"Table Cell","styles":{}}],"props":{"colspan":1,"rowspan":1,"backgroundColor":"default","textColor":"default","textAlignment":"left"}},{"type":"tableCell","content":[{"type":"text","text":"Table Cell","styles":{}}],"props":{"colspan":1,"rowspan":1,"backgroundColor":"default","textColor":"default","textAlignment":"left"}}]}]},"children":[]}],"blockCutAtStart":"8"} -{"_meta":{"startPos":148,"endPos":276},"blocks":[{"id":"8","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Paragraph 3","styles":{}}],"children":[]},{"id":"9","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"Bold","styles":{"bold":true}},{"type":"text","text":"Italic","styles":{"italic":true}},{"type":"text","text":"Regular","styles":{}}],"children":[{"id":"10","type":"image","props":{"backgroundColor":"default","textAlignment":"left","name":"","url":"https://ralfvanveen.com/wp-content/uploads/2021/06/Placeholder-_-Glossary.svg","caption":"","showPreview":true},"children":[{"id":"11","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph","styles":{}}],"children":[]}]}]},{"id":"12","type":"table","props":{"textColor":"default"},"content":{"type":"tableContent","columnWidths":[null,null],"rows":[{"cells":[{"type":"tableCell","content":[{"type":"text","text":"Table Cell","styles":{}}],"props":{"colspan":1,"rowspan":1,"backgroundColor":"default","textColor":"default","textAlignment":"left"}},{"type":"tableCell","content":[{"type":"text","text":"Table Cell","styles":{}}],"props":{"colspan":1,"rowspan":1,"backgroundColor":"default","textColor":"default","textAlignment":"left"}}]},{"cells":[{"type":"tableCell","content":[{"type":"text","text":"Table Cell","styles":{}}],"props":{"colspan":1,"rowspan":1,"backgroundColor":"default","textColor":"default","textAlignment":"left"}},{"type":"tableCell","content":[{"type":"text","text":"Table Cell","styles":{}}],"props":{"colspan":1,"rowspan":1,"backgroundColor":"default","textColor":"default","textAlignment":"left"}}]}]},"children":[]}],"blockCutAtStart":"8"} -{"_meta":{"startPos":149,"endPos":276},"blocks":[{"id":"8","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"aragraph 3","styles":{}}],"children":[]},{"id":"9","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"Bold","styles":{"bold":true}},{"type":"text","text":"Italic","styles":{"italic":true}},{"type":"text","text":"Regular","styles":{}}],"children":[{"id":"10","type":"image","props":{"backgroundColor":"default","textAlignment":"left","name":"","url":"https://ralfvanveen.com/wp-content/uploads/2021/06/Placeholder-_-Glossary.svg","caption":"","showPreview":true},"children":[{"id":"11","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph","styles":{}}],"children":[]}]}]},{"id":"12","type":"table","props":{"textColor":"default"},"content":{"type":"tableContent","columnWidths":[null,null],"rows":[{"cells":[{"type":"tableCell","content":[{"type":"text","text":"Table Cell","styles":{}}],"props":{"colspan":1,"rowspan":1,"backgroundColor":"default","textColor":"default","textAlignment":"left"}},{"type":"tableCell","content":[{"type":"text","text":"Table Cell","styles":{}}],"props":{"colspan":1,"rowspan":1,"backgroundColor":"default","textColor":"default","textAlignment":"left"}}]},{"cells":[{"type":"tableCell","content":[{"type":"text","text":"Table Cell","styles":{}}],"props":{"colspan":1,"rowspan":1,"backgroundColor":"default","textColor":"default","textAlignment":"left"}},{"type":"tableCell","content":[{"type":"text","text":"Table Cell","styles":{}}],"props":{"colspan":1,"rowspan":1,"backgroundColor":"default","textColor":"default","textAlignment":"left"}}]}]},"children":[]}],"blockCutAtStart":"8"} -{"_meta":{"startPos":150,"endPos":276},"blocks":[{"id":"8","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"ragraph 3","styles":{}}],"children":[]},{"id":"9","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"Bold","styles":{"bold":true}},{"type":"text","text":"Italic","styles":{"italic":true}},{"type":"text","text":"Regular","styles":{}}],"children":[{"id":"10","type":"image","props":{"backgroundColor":"default","textAlignment":"left","name":"","url":"https://ralfvanveen.com/wp-content/uploads/2021/06/Placeholder-_-Glossary.svg","caption":"","showPreview":true},"children":[{"id":"11","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph","styles":{}}],"children":[]}]}]},{"id":"12","type":"table","props":{"textColor":"default"},"content":{"type":"tableContent","columnWidths":[null,null],"rows":[{"cells":[{"type":"tableCell","content":[{"type":"text","text":"Table Cell","styles":{}}],"props":{"colspan":1,"rowspan":1,"backgroundColor":"default","textColor":"default","textAlignment":"left"}},{"type":"tableCell","content":[{"type":"text","text":"Table Cell","styles":{}}],"props":{"colspan":1,"rowspan":1,"backgroundColor":"default","textColor":"default","textAlignment":"left"}}]},{"cells":[{"type":"tableCell","content":[{"type":"text","text":"Table Cell","styles":{}}],"props":{"colspan":1,"rowspan":1,"backgroundColor":"default","textColor":"default","textAlignment":"left"}},{"type":"tableCell","content":[{"type":"text","text":"Table Cell","styles":{}}],"props":{"colspan":1,"rowspan":1,"backgroundColor":"default","textColor":"default","textAlignment":"left"}}]}]},"children":[]}],"blockCutAtStart":"8"} -{"_meta":{"startPos":151,"endPos":276},"blocks":[{"id":"8","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"agraph 3","styles":{}}],"children":[]},{"id":"9","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"Bold","styles":{"bold":true}},{"type":"text","text":"Italic","styles":{"italic":true}},{"type":"text","text":"Regular","styles":{}}],"children":[{"id":"10","type":"image","props":{"backgroundColor":"default","textAlignment":"left","name":"","url":"https://ralfvanveen.com/wp-content/uploads/2021/06/Placeholder-_-Glossary.svg","caption":"","showPreview":true},"children":[{"id":"11","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph","styles":{}}],"children":[]}]}]},{"id":"12","type":"table","props":{"textColor":"default"},"content":{"type":"tableContent","columnWidths":[null,null],"rows":[{"cells":[{"type":"tableCell","content":[{"type":"text","text":"Table Cell","styles":{}}],"props":{"colspan":1,"rowspan":1,"backgroundColor":"default","textColor":"default","textAlignment":"left"}},{"type":"tableCell","content":[{"type":"text","text":"Table Cell","styles":{}}],"props":{"colspan":1,"rowspan":1,"backgroundColor":"default","textColor":"default","textAlignment":"left"}}]},{"cells":[{"type":"tableCell","content":[{"type":"text","text":"Table Cell","styles":{}}],"props":{"colspan":1,"rowspan":1,"backgroundColor":"default","textColor":"default","textAlignment":"left"}},{"type":"tableCell","content":[{"type":"text","text":"Table Cell","styles":{}}],"props":{"colspan":1,"rowspan":1,"backgroundColor":"default","textColor":"default","textAlignment":"left"}}]}]},"children":[]}],"blockCutAtStart":"8"} -{"_meta":{"startPos":152,"endPos":276},"blocks":[{"id":"8","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"graph 3","styles":{}}],"children":[]},{"id":"9","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"Bold","styles":{"bold":true}},{"type":"text","text":"Italic","styles":{"italic":true}},{"type":"text","text":"Regular","styles":{}}],"children":[{"id":"10","type":"image","props":{"backgroundColor":"default","textAlignment":"left","name":"","url":"https://ralfvanveen.com/wp-content/uploads/2021/06/Placeholder-_-Glossary.svg","caption":"","showPreview":true},"children":[{"id":"11","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph","styles":{}}],"children":[]}]}]},{"id":"12","type":"table","props":{"textColor":"default"},"content":{"type":"tableContent","columnWidths":[null,null],"rows":[{"cells":[{"type":"tableCell","content":[{"type":"text","text":"Table Cell","styles":{}}],"props":{"colspan":1,"rowspan":1,"backgroundColor":"default","textColor":"default","textAlignment":"left"}},{"type":"tableCell","content":[{"type":"text","text":"Table Cell","styles":{}}],"props":{"colspan":1,"rowspan":1,"backgroundColor":"default","textColor":"default","textAlignment":"left"}}]},{"cells":[{"type":"tableCell","content":[{"type":"text","text":"Table Cell","styles":{}}],"props":{"colspan":1,"rowspan":1,"backgroundColor":"default","textColor":"default","textAlignment":"left"}},{"type":"tableCell","content":[{"type":"text","text":"Table Cell","styles":{}}],"props":{"colspan":1,"rowspan":1,"backgroundColor":"default","textColor":"default","textAlignment":"left"}}]}]},"children":[]}],"blockCutAtStart":"8"} -{"_meta":{"startPos":153,"endPos":276},"blocks":[{"id":"8","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"raph 3","styles":{}}],"children":[]},{"id":"9","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"Bold","styles":{"bold":true}},{"type":"text","text":"Italic","styles":{"italic":true}},{"type":"text","text":"Regular","styles":{}}],"children":[{"id":"10","type":"image","props":{"backgroundColor":"default","textAlignment":"left","name":"","url":"https://ralfvanveen.com/wp-content/uploads/2021/06/Placeholder-_-Glossary.svg","caption":"","showPreview":true},"children":[{"id":"11","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph","styles":{}}],"children":[]}]}]},{"id":"12","type":"table","props":{"textColor":"default"},"content":{"type":"tableContent","columnWidths":[null,null],"rows":[{"cells":[{"type":"tableCell","content":[{"type":"text","text":"Table Cell","styles":{}}],"props":{"colspan":1,"rowspan":1,"backgroundColor":"default","textColor":"default","textAlignment":"left"}},{"type":"tableCell","content":[{"type":"text","text":"Table Cell","styles":{}}],"props":{"colspan":1,"rowspan":1,"backgroundColor":"default","textColor":"default","textAlignment":"left"}}]},{"cells":[{"type":"tableCell","content":[{"type":"text","text":"Table Cell","styles":{}}],"props":{"colspan":1,"rowspan":1,"backgroundColor":"default","textColor":"default","textAlignment":"left"}},{"type":"tableCell","content":[{"type":"text","text":"Table Cell","styles":{}}],"props":{"colspan":1,"rowspan":1,"backgroundColor":"default","textColor":"default","textAlignment":"left"}}]}]},"children":[]}],"blockCutAtStart":"8"} -{"_meta":{"startPos":154,"endPos":276},"blocks":[{"id":"8","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"aph 3","styles":{}}],"children":[]},{"id":"9","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"Bold","styles":{"bold":true}},{"type":"text","text":"Italic","styles":{"italic":true}},{"type":"text","text":"Regular","styles":{}}],"children":[{"id":"10","type":"image","props":{"backgroundColor":"default","textAlignment":"left","name":"","url":"https://ralfvanveen.com/wp-content/uploads/2021/06/Placeholder-_-Glossary.svg","caption":"","showPreview":true},"children":[{"id":"11","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph","styles":{}}],"children":[]}]}]},{"id":"12","type":"table","props":{"textColor":"default"},"content":{"type":"tableContent","columnWidths":[null,null],"rows":[{"cells":[{"type":"tableCell","content":[{"type":"text","text":"Table Cell","styles":{}}],"props":{"colspan":1,"rowspan":1,"backgroundColor":"default","textColor":"default","textAlignment":"left"}},{"type":"tableCell","content":[{"type":"text","text":"Table Cell","styles":{}}],"props":{"colspan":1,"rowspan":1,"backgroundColor":"default","textColor":"default","textAlignment":"left"}}]},{"cells":[{"type":"tableCell","content":[{"type":"text","text":"Table Cell","styles":{}}],"props":{"colspan":1,"rowspan":1,"backgroundColor":"default","textColor":"default","textAlignment":"left"}},{"type":"tableCell","content":[{"type":"text","text":"Table Cell","styles":{}}],"props":{"colspan":1,"rowspan":1,"backgroundColor":"default","textColor":"default","textAlignment":"left"}}]}]},"children":[]}],"blockCutAtStart":"8"} -{"_meta":{"startPos":155,"endPos":276},"blocks":[{"id":"8","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"ph 3","styles":{}}],"children":[]},{"id":"9","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"Bold","styles":{"bold":true}},{"type":"text","text":"Italic","styles":{"italic":true}},{"type":"text","text":"Regular","styles":{}}],"children":[{"id":"10","type":"image","props":{"backgroundColor":"default","textAlignment":"left","name":"","url":"https://ralfvanveen.com/wp-content/uploads/2021/06/Placeholder-_-Glossary.svg","caption":"","showPreview":true},"children":[{"id":"11","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph","styles":{}}],"children":[]}]}]},{"id":"12","type":"table","props":{"textColor":"default"},"content":{"type":"tableContent","columnWidths":[null,null],"rows":[{"cells":[{"type":"tableCell","content":[{"type":"text","text":"Table Cell","styles":{}}],"props":{"colspan":1,"rowspan":1,"backgroundColor":"default","textColor":"default","textAlignment":"left"}},{"type":"tableCell","content":[{"type":"text","text":"Table Cell","styles":{}}],"props":{"colspan":1,"rowspan":1,"backgroundColor":"default","textColor":"default","textAlignment":"left"}}]},{"cells":[{"type":"tableCell","content":[{"type":"text","text":"Table Cell","styles":{}}],"props":{"colspan":1,"rowspan":1,"backgroundColor":"default","textColor":"default","textAlignment":"left"}},{"type":"tableCell","content":[{"type":"text","text":"Table Cell","styles":{}}],"props":{"colspan":1,"rowspan":1,"backgroundColor":"default","textColor":"default","textAlignment":"left"}}]}]},"children":[]}],"blockCutAtStart":"8"} -{"_meta":{"startPos":156,"endPos":276},"blocks":[{"id":"8","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"h 3","styles":{}}],"children":[]},{"id":"9","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"Bold","styles":{"bold":true}},{"type":"text","text":"Italic","styles":{"italic":true}},{"type":"text","text":"Regular","styles":{}}],"children":[{"id":"10","type":"image","props":{"backgroundColor":"default","textAlignment":"left","name":"","url":"https://ralfvanveen.com/wp-content/uploads/2021/06/Placeholder-_-Glossary.svg","caption":"","showPreview":true},"children":[{"id":"11","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph","styles":{}}],"children":[]}]}]},{"id":"12","type":"table","props":{"textColor":"default"},"content":{"type":"tableContent","columnWidths":[null,null],"rows":[{"cells":[{"type":"tableCell","content":[{"type":"text","text":"Table Cell","styles":{}}],"props":{"colspan":1,"rowspan":1,"backgroundColor":"default","textColor":"default","textAlignment":"left"}},{"type":"tableCell","content":[{"type":"text","text":"Table Cell","styles":{}}],"props":{"colspan":1,"rowspan":1,"backgroundColor":"default","textColor":"default","textAlignment":"left"}}]},{"cells":[{"type":"tableCell","content":[{"type":"text","text":"Table Cell","styles":{}}],"props":{"colspan":1,"rowspan":1,"backgroundColor":"default","textColor":"default","textAlignment":"left"}},{"type":"tableCell","content":[{"type":"text","text":"Table Cell","styles":{}}],"props":{"colspan":1,"rowspan":1,"backgroundColor":"default","textColor":"default","textAlignment":"left"}}]}]},"children":[]}],"blockCutAtStart":"8"} -{"_meta":{"startPos":157,"endPos":276},"blocks":[{"id":"8","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":" 3","styles":{}}],"children":[]},{"id":"9","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"Bold","styles":{"bold":true}},{"type":"text","text":"Italic","styles":{"italic":true}},{"type":"text","text":"Regular","styles":{}}],"children":[{"id":"10","type":"image","props":{"backgroundColor":"default","textAlignment":"left","name":"","url":"https://ralfvanveen.com/wp-content/uploads/2021/06/Placeholder-_-Glossary.svg","caption":"","showPreview":true},"children":[{"id":"11","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph","styles":{}}],"children":[]}]}]},{"id":"12","type":"table","props":{"textColor":"default"},"content":{"type":"tableContent","columnWidths":[null,null],"rows":[{"cells":[{"type":"tableCell","content":[{"type":"text","text":"Table Cell","styles":{}}],"props":{"colspan":1,"rowspan":1,"backgroundColor":"default","textColor":"default","textAlignment":"left"}},{"type":"tableCell","content":[{"type":"text","text":"Table Cell","styles":{}}],"props":{"colspan":1,"rowspan":1,"backgroundColor":"default","textColor":"default","textAlignment":"left"}}]},{"cells":[{"type":"tableCell","content":[{"type":"text","text":"Table Cell","styles":{}}],"props":{"colspan":1,"rowspan":1,"backgroundColor":"default","textColor":"default","textAlignment":"left"}},{"type":"tableCell","content":[{"type":"text","text":"Table Cell","styles":{}}],"props":{"colspan":1,"rowspan":1,"backgroundColor":"default","textColor":"default","textAlignment":"left"}}]}]},"children":[]}],"blockCutAtStart":"8"} -{"_meta":{"startPos":158,"endPos":276},"blocks":[{"id":"8","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"3","styles":{}}],"children":[]},{"id":"9","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"Bold","styles":{"bold":true}},{"type":"text","text":"Italic","styles":{"italic":true}},{"type":"text","text":"Regular","styles":{}}],"children":[{"id":"10","type":"image","props":{"backgroundColor":"default","textAlignment":"left","name":"","url":"https://ralfvanveen.com/wp-content/uploads/2021/06/Placeholder-_-Glossary.svg","caption":"","showPreview":true},"children":[{"id":"11","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph","styles":{}}],"children":[]}]}]},{"id":"12","type":"table","props":{"textColor":"default"},"content":{"type":"tableContent","columnWidths":[null,null],"rows":[{"cells":[{"type":"tableCell","content":[{"type":"text","text":"Table Cell","styles":{}}],"props":{"colspan":1,"rowspan":1,"backgroundColor":"default","textColor":"default","textAlignment":"left"}},{"type":"tableCell","content":[{"type":"text","text":"Table Cell","styles":{}}],"props":{"colspan":1,"rowspan":1,"backgroundColor":"default","textColor":"default","textAlignment":"left"}}]},{"cells":[{"type":"tableCell","content":[{"type":"text","text":"Table Cell","styles":{}}],"props":{"colspan":1,"rowspan":1,"backgroundColor":"default","textColor":"default","textAlignment":"left"}},{"type":"tableCell","content":[{"type":"text","text":"Table Cell","styles":{}}],"props":{"colspan":1,"rowspan":1,"backgroundColor":"default","textColor":"default","textAlignment":"left"}}]}]},"children":[]}],"blockCutAtStart":"8"} -{"_meta":{"startPos":163,"endPos":276},"blocks":[{"id":"9","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"Bold","styles":{"bold":true}},{"type":"text","text":"Italic","styles":{"italic":true}},{"type":"text","text":"Regular","styles":{}}],"children":[{"id":"10","type":"image","props":{"backgroundColor":"default","textAlignment":"left","name":"","url":"https://ralfvanveen.com/wp-content/uploads/2021/06/Placeholder-_-Glossary.svg","caption":"","showPreview":true},"children":[{"id":"11","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph","styles":{}}],"children":[]}]}]},{"id":"12","type":"table","props":{"textColor":"default"},"content":{"type":"tableContent","columnWidths":[null,null],"rows":[{"cells":[{"type":"tableCell","content":[{"type":"text","text":"Table Cell","styles":{}}],"props":{"colspan":1,"rowspan":1,"backgroundColor":"default","textColor":"default","textAlignment":"left"}},{"type":"tableCell","content":[{"type":"text","text":"Table Cell","styles":{}}],"props":{"colspan":1,"rowspan":1,"backgroundColor":"default","textColor":"default","textAlignment":"left"}}]},{"cells":[{"type":"tableCell","content":[{"type":"text","text":"Table Cell","styles":{}}],"props":{"colspan":1,"rowspan":1,"backgroundColor":"default","textColor":"default","textAlignment":"left"}},{"type":"tableCell","content":[{"type":"text","text":"Table Cell","styles":{}}],"props":{"colspan":1,"rowspan":1,"backgroundColor":"default","textColor":"default","textAlignment":"left"}}]}]},"children":[]}]} -{"_meta":{"startPos":163,"endPos":276},"blocks":[{"id":"9","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"Bold","styles":{"bold":true}},{"type":"text","text":"Italic","styles":{"italic":true}},{"type":"text","text":"Regular","styles":{}}],"children":[{"id":"10","type":"image","props":{"backgroundColor":"default","textAlignment":"left","name":"","url":"https://ralfvanveen.com/wp-content/uploads/2021/06/Placeholder-_-Glossary.svg","caption":"","showPreview":true},"children":[{"id":"11","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph","styles":{}}],"children":[]}]}]},{"id":"12","type":"table","props":{"textColor":"default"},"content":{"type":"tableContent","columnWidths":[null,null],"rows":[{"cells":[{"type":"tableCell","content":[{"type":"text","text":"Table Cell","styles":{}}],"props":{"colspan":1,"rowspan":1,"backgroundColor":"default","textColor":"default","textAlignment":"left"}},{"type":"tableCell","content":[{"type":"text","text":"Table Cell","styles":{}}],"props":{"colspan":1,"rowspan":1,"backgroundColor":"default","textColor":"default","textAlignment":"left"}}]},{"cells":[{"type":"tableCell","content":[{"type":"text","text":"Table Cell","styles":{}}],"props":{"colspan":1,"rowspan":1,"backgroundColor":"default","textColor":"default","textAlignment":"left"}},{"type":"tableCell","content":[{"type":"text","text":"Table Cell","styles":{}}],"props":{"colspan":1,"rowspan":1,"backgroundColor":"default","textColor":"default","textAlignment":"left"}}]}]},"children":[]}]} -{"_meta":{"startPos":163,"endPos":276},"blocks":[{"id":"9","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"Bold","styles":{"bold":true}},{"type":"text","text":"Italic","styles":{"italic":true}},{"type":"text","text":"Regular","styles":{}}],"children":[{"id":"10","type":"image","props":{"backgroundColor":"default","textAlignment":"left","name":"","url":"https://ralfvanveen.com/wp-content/uploads/2021/06/Placeholder-_-Glossary.svg","caption":"","showPreview":true},"children":[{"id":"11","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph","styles":{}}],"children":[]}]}]},{"id":"12","type":"table","props":{"textColor":"default"},"content":{"type":"tableContent","columnWidths":[null,null],"rows":[{"cells":[{"type":"tableCell","content":[{"type":"text","text":"Table Cell","styles":{}}],"props":{"colspan":1,"rowspan":1,"backgroundColor":"default","textColor":"default","textAlignment":"left"}},{"type":"tableCell","content":[{"type":"text","text":"Table Cell","styles":{}}],"props":{"colspan":1,"rowspan":1,"backgroundColor":"default","textColor":"default","textAlignment":"left"}}]},{"cells":[{"type":"tableCell","content":[{"type":"text","text":"Table Cell","styles":{}}],"props":{"colspan":1,"rowspan":1,"backgroundColor":"default","textColor":"default","textAlignment":"left"}},{"type":"tableCell","content":[{"type":"text","text":"Table Cell","styles":{}}],"props":{"colspan":1,"rowspan":1,"backgroundColor":"default","textColor":"default","textAlignment":"left"}}]}]},"children":[]}]} -{"_meta":{"startPos":163,"endPos":276},"blocks":[{"id":"9","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"Bold","styles":{"bold":true}},{"type":"text","text":"Italic","styles":{"italic":true}},{"type":"text","text":"Regular","styles":{}}],"children":[{"id":"10","type":"image","props":{"backgroundColor":"default","textAlignment":"left","name":"","url":"https://ralfvanveen.com/wp-content/uploads/2021/06/Placeholder-_-Glossary.svg","caption":"","showPreview":true},"children":[{"id":"11","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph","styles":{}}],"children":[]}]}]},{"id":"12","type":"table","props":{"textColor":"default"},"content":{"type":"tableContent","columnWidths":[null,null],"rows":[{"cells":[{"type":"tableCell","content":[{"type":"text","text":"Table Cell","styles":{}}],"props":{"colspan":1,"rowspan":1,"backgroundColor":"default","textColor":"default","textAlignment":"left"}},{"type":"tableCell","content":[{"type":"text","text":"Table Cell","styles":{}}],"props":{"colspan":1,"rowspan":1,"backgroundColor":"default","textColor":"default","textAlignment":"left"}}]},{"cells":[{"type":"tableCell","content":[{"type":"text","text":"Table Cell","styles":{}}],"props":{"colspan":1,"rowspan":1,"backgroundColor":"default","textColor":"default","textAlignment":"left"}},{"type":"tableCell","content":[{"type":"text","text":"Table Cell","styles":{}}],"props":{"colspan":1,"rowspan":1,"backgroundColor":"default","textColor":"default","textAlignment":"left"}}]}]},"children":[]}]} -{"_meta":{"startPos":163,"endPos":276},"blocks":[{"id":"9","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"Bold","styles":{"bold":true}},{"type":"text","text":"Italic","styles":{"italic":true}},{"type":"text","text":"Regular","styles":{}}],"children":[{"id":"10","type":"image","props":{"backgroundColor":"default","textAlignment":"left","name":"","url":"https://ralfvanveen.com/wp-content/uploads/2021/06/Placeholder-_-Glossary.svg","caption":"","showPreview":true},"children":[{"id":"11","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph","styles":{}}],"children":[]}]}]},{"id":"12","type":"table","props":{"textColor":"default"},"content":{"type":"tableContent","columnWidths":[null,null],"rows":[{"cells":[{"type":"tableCell","content":[{"type":"text","text":"Table Cell","styles":{}}],"props":{"colspan":1,"rowspan":1,"backgroundColor":"default","textColor":"default","textAlignment":"left"}},{"type":"tableCell","content":[{"type":"text","text":"Table Cell","styles":{}}],"props":{"colspan":1,"rowspan":1,"backgroundColor":"default","textColor":"default","textAlignment":"left"}}]},{"cells":[{"type":"tableCell","content":[{"type":"text","text":"Table Cell","styles":{}}],"props":{"colspan":1,"rowspan":1,"backgroundColor":"default","textColor":"default","textAlignment":"left"}},{"type":"tableCell","content":[{"type":"text","text":"Table Cell","styles":{}}],"props":{"colspan":1,"rowspan":1,"backgroundColor":"default","textColor":"default","textAlignment":"left"}}]}]},"children":[]}]} -{"_meta":{"startPos":163,"endPos":276},"blocks":[{"id":"9","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"Bold","styles":{"bold":true}},{"type":"text","text":"Italic","styles":{"italic":true}},{"type":"text","text":"Regular","styles":{}}],"children":[{"id":"10","type":"image","props":{"backgroundColor":"default","textAlignment":"left","name":"","url":"https://ralfvanveen.com/wp-content/uploads/2021/06/Placeholder-_-Glossary.svg","caption":"","showPreview":true},"children":[{"id":"11","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph","styles":{}}],"children":[]}]}]},{"id":"12","type":"table","props":{"textColor":"default"},"content":{"type":"tableContent","columnWidths":[null,null],"rows":[{"cells":[{"type":"tableCell","content":[{"type":"text","text":"Table Cell","styles":{}}],"props":{"colspan":1,"rowspan":1,"backgroundColor":"default","textColor":"default","textAlignment":"left"}},{"type":"tableCell","content":[{"type":"text","text":"Table Cell","styles":{}}],"props":{"colspan":1,"rowspan":1,"backgroundColor":"default","textColor":"default","textAlignment":"left"}}]},{"cells":[{"type":"tableCell","content":[{"type":"text","text":"Table Cell","styles":{}}],"props":{"colspan":1,"rowspan":1,"backgroundColor":"default","textColor":"default","textAlignment":"left"}},{"type":"tableCell","content":[{"type":"text","text":"Table Cell","styles":{}}],"props":{"colspan":1,"rowspan":1,"backgroundColor":"default","textColor":"default","textAlignment":"left"}}]}]},"children":[]}]} -{"_meta":{"startPos":163,"endPos":276},"blocks":[{"id":"9","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"Bold","styles":{"bold":true}},{"type":"text","text":"Italic","styles":{"italic":true}},{"type":"text","text":"Regular","styles":{}}],"children":[{"id":"10","type":"image","props":{"backgroundColor":"default","textAlignment":"left","name":"","url":"https://ralfvanveen.com/wp-content/uploads/2021/06/Placeholder-_-Glossary.svg","caption":"","showPreview":true},"children":[{"id":"11","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph","styles":{}}],"children":[]}]}]},{"id":"12","type":"table","props":{"textColor":"default"},"content":{"type":"tableContent","columnWidths":[null,null],"rows":[{"cells":[{"type":"tableCell","content":[{"type":"text","text":"Table Cell","styles":{}}],"props":{"colspan":1,"rowspan":1,"backgroundColor":"default","textColor":"default","textAlignment":"left"}},{"type":"tableCell","content":[{"type":"text","text":"Table Cell","styles":{}}],"props":{"colspan":1,"rowspan":1,"backgroundColor":"default","textColor":"default","textAlignment":"left"}}]},{"cells":[{"type":"tableCell","content":[{"type":"text","text":"Table Cell","styles":{}}],"props":{"colspan":1,"rowspan":1,"backgroundColor":"default","textColor":"default","textAlignment":"left"}},{"type":"tableCell","content":[{"type":"text","text":"Table Cell","styles":{}}],"props":{"colspan":1,"rowspan":1,"backgroundColor":"default","textColor":"default","textAlignment":"left"}}]}]},"children":[]}]} -{"_meta":{"startPos":166,"endPos":276},"blocks":[{"id":"9","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"old","styles":{"bold":true}},{"type":"text","text":"Italic","styles":{"italic":true}},{"type":"text","text":"Regular","styles":{}}],"children":[{"id":"10","type":"image","props":{"backgroundColor":"default","textAlignment":"left","name":"","url":"https://ralfvanveen.com/wp-content/uploads/2021/06/Placeholder-_-Glossary.svg","caption":"","showPreview":true},"children":[{"id":"11","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph","styles":{}}],"children":[]}]}]},{"id":"12","type":"table","props":{"textColor":"default"},"content":{"type":"tableContent","columnWidths":[null,null],"rows":[{"cells":[{"type":"tableCell","content":[{"type":"text","text":"Table Cell","styles":{}}],"props":{"colspan":1,"rowspan":1,"backgroundColor":"default","textColor":"default","textAlignment":"left"}},{"type":"tableCell","content":[{"type":"text","text":"Table Cell","styles":{}}],"props":{"colspan":1,"rowspan":1,"backgroundColor":"default","textColor":"default","textAlignment":"left"}}]},{"cells":[{"type":"tableCell","content":[{"type":"text","text":"Table Cell","styles":{}}],"props":{"colspan":1,"rowspan":1,"backgroundColor":"default","textColor":"default","textAlignment":"left"}},{"type":"tableCell","content":[{"type":"text","text":"Table Cell","styles":{}}],"props":{"colspan":1,"rowspan":1,"backgroundColor":"default","textColor":"default","textAlignment":"left"}}]}]},"children":[]}],"blockCutAtStart":"9"} -{"_meta":{"startPos":167,"endPos":276},"blocks":[{"id":"9","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"ld","styles":{"bold":true}},{"type":"text","text":"Italic","styles":{"italic":true}},{"type":"text","text":"Regular","styles":{}}],"children":[{"id":"10","type":"image","props":{"backgroundColor":"default","textAlignment":"left","name":"","url":"https://ralfvanveen.com/wp-content/uploads/2021/06/Placeholder-_-Glossary.svg","caption":"","showPreview":true},"children":[{"id":"11","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph","styles":{}}],"children":[]}]}]},{"id":"12","type":"table","props":{"textColor":"default"},"content":{"type":"tableContent","columnWidths":[null,null],"rows":[{"cells":[{"type":"tableCell","content":[{"type":"text","text":"Table Cell","styles":{}}],"props":{"colspan":1,"rowspan":1,"backgroundColor":"default","textColor":"default","textAlignment":"left"}},{"type":"tableCell","content":[{"type":"text","text":"Table Cell","styles":{}}],"props":{"colspan":1,"rowspan":1,"backgroundColor":"default","textColor":"default","textAlignment":"left"}}]},{"cells":[{"type":"tableCell","content":[{"type":"text","text":"Table Cell","styles":{}}],"props":{"colspan":1,"rowspan":1,"backgroundColor":"default","textColor":"default","textAlignment":"left"}},{"type":"tableCell","content":[{"type":"text","text":"Table Cell","styles":{}}],"props":{"colspan":1,"rowspan":1,"backgroundColor":"default","textColor":"default","textAlignment":"left"}}]}]},"children":[]}],"blockCutAtStart":"9"} -{"_meta":{"startPos":168,"endPos":276},"blocks":[{"id":"9","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"d","styles":{"bold":true}},{"type":"text","text":"Italic","styles":{"italic":true}},{"type":"text","text":"Regular","styles":{}}],"children":[{"id":"10","type":"image","props":{"backgroundColor":"default","textAlignment":"left","name":"","url":"https://ralfvanveen.com/wp-content/uploads/2021/06/Placeholder-_-Glossary.svg","caption":"","showPreview":true},"children":[{"id":"11","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph","styles":{}}],"children":[]}]}]},{"id":"12","type":"table","props":{"textColor":"default"},"content":{"type":"tableContent","columnWidths":[null,null],"rows":[{"cells":[{"type":"tableCell","content":[{"type":"text","text":"Table Cell","styles":{}}],"props":{"colspan":1,"rowspan":1,"backgroundColor":"default","textColor":"default","textAlignment":"left"}},{"type":"tableCell","content":[{"type":"text","text":"Table Cell","styles":{}}],"props":{"colspan":1,"rowspan":1,"backgroundColor":"default","textColor":"default","textAlignment":"left"}}]},{"cells":[{"type":"tableCell","content":[{"type":"text","text":"Table Cell","styles":{}}],"props":{"colspan":1,"rowspan":1,"backgroundColor":"default","textColor":"default","textAlignment":"left"}},{"type":"tableCell","content":[{"type":"text","text":"Table Cell","styles":{}}],"props":{"colspan":1,"rowspan":1,"backgroundColor":"default","textColor":"default","textAlignment":"left"}}]}]},"children":[]}],"blockCutAtStart":"9"} -{"_meta":{"startPos":169,"endPos":276},"blocks":[{"id":"9","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"Italic","styles":{"italic":true}},{"type":"text","text":"Regular","styles":{}}],"children":[{"id":"10","type":"image","props":{"backgroundColor":"default","textAlignment":"left","name":"","url":"https://ralfvanveen.com/wp-content/uploads/2021/06/Placeholder-_-Glossary.svg","caption":"","showPreview":true},"children":[{"id":"11","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph","styles":{}}],"children":[]}]}]},{"id":"12","type":"table","props":{"textColor":"default"},"content":{"type":"tableContent","columnWidths":[null,null],"rows":[{"cells":[{"type":"tableCell","content":[{"type":"text","text":"Table Cell","styles":{}}],"props":{"colspan":1,"rowspan":1,"backgroundColor":"default","textColor":"default","textAlignment":"left"}},{"type":"tableCell","content":[{"type":"text","text":"Table Cell","styles":{}}],"props":{"colspan":1,"rowspan":1,"backgroundColor":"default","textColor":"default","textAlignment":"left"}}]},{"cells":[{"type":"tableCell","content":[{"type":"text","text":"Table Cell","styles":{}}],"props":{"colspan":1,"rowspan":1,"backgroundColor":"default","textColor":"default","textAlignment":"left"}},{"type":"tableCell","content":[{"type":"text","text":"Table Cell","styles":{}}],"props":{"colspan":1,"rowspan":1,"backgroundColor":"default","textColor":"default","textAlignment":"left"}}]}]},"children":[]}],"blockCutAtStart":"9"} -{"_meta":{"startPos":170,"endPos":276},"blocks":[{"id":"9","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"talic","styles":{"italic":true}},{"type":"text","text":"Regular","styles":{}}],"children":[{"id":"10","type":"image","props":{"backgroundColor":"default","textAlignment":"left","name":"","url":"https://ralfvanveen.com/wp-content/uploads/2021/06/Placeholder-_-Glossary.svg","caption":"","showPreview":true},"children":[{"id":"11","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph","styles":{}}],"children":[]}]}]},{"id":"12","type":"table","props":{"textColor":"default"},"content":{"type":"tableContent","columnWidths":[null,null],"rows":[{"cells":[{"type":"tableCell","content":[{"type":"text","text":"Table Cell","styles":{}}],"props":{"colspan":1,"rowspan":1,"backgroundColor":"default","textColor":"default","textAlignment":"left"}},{"type":"tableCell","content":[{"type":"text","text":"Table Cell","styles":{}}],"props":{"colspan":1,"rowspan":1,"backgroundColor":"default","textColor":"default","textAlignment":"left"}}]},{"cells":[{"type":"tableCell","content":[{"type":"text","text":"Table Cell","styles":{}}],"props":{"colspan":1,"rowspan":1,"backgroundColor":"default","textColor":"default","textAlignment":"left"}},{"type":"tableCell","content":[{"type":"text","text":"Table Cell","styles":{}}],"props":{"colspan":1,"rowspan":1,"backgroundColor":"default","textColor":"default","textAlignment":"left"}}]}]},"children":[]}],"blockCutAtStart":"9"} -{"_meta":{"startPos":171,"endPos":276},"blocks":[{"id":"9","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"alic","styles":{"italic":true}},{"type":"text","text":"Regular","styles":{}}],"children":[{"id":"10","type":"image","props":{"backgroundColor":"default","textAlignment":"left","name":"","url":"https://ralfvanveen.com/wp-content/uploads/2021/06/Placeholder-_-Glossary.svg","caption":"","showPreview":true},"children":[{"id":"11","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph","styles":{}}],"children":[]}]}]},{"id":"12","type":"table","props":{"textColor":"default"},"content":{"type":"tableContent","columnWidths":[null,null],"rows":[{"cells":[{"type":"tableCell","content":[{"type":"text","text":"Table Cell","styles":{}}],"props":{"colspan":1,"rowspan":1,"backgroundColor":"default","textColor":"default","textAlignment":"left"}},{"type":"tableCell","content":[{"type":"text","text":"Table Cell","styles":{}}],"props":{"colspan":1,"rowspan":1,"backgroundColor":"default","textColor":"default","textAlignment":"left"}}]},{"cells":[{"type":"tableCell","content":[{"type":"text","text":"Table Cell","styles":{}}],"props":{"colspan":1,"rowspan":1,"backgroundColor":"default","textColor":"default","textAlignment":"left"}},{"type":"tableCell","content":[{"type":"text","text":"Table Cell","styles":{}}],"props":{"colspan":1,"rowspan":1,"backgroundColor":"default","textColor":"default","textAlignment":"left"}}]}]},"children":[]}],"blockCutAtStart":"9"} -{"_meta":{"startPos":172,"endPos":276},"blocks":[{"id":"9","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"lic","styles":{"italic":true}},{"type":"text","text":"Regular","styles":{}}],"children":[{"id":"10","type":"image","props":{"backgroundColor":"default","textAlignment":"left","name":"","url":"https://ralfvanveen.com/wp-content/uploads/2021/06/Placeholder-_-Glossary.svg","caption":"","showPreview":true},"children":[{"id":"11","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph","styles":{}}],"children":[]}]}]},{"id":"12","type":"table","props":{"textColor":"default"},"content":{"type":"tableContent","columnWidths":[null,null],"rows":[{"cells":[{"type":"tableCell","content":[{"type":"text","text":"Table Cell","styles":{}}],"props":{"colspan":1,"rowspan":1,"backgroundColor":"default","textColor":"default","textAlignment":"left"}},{"type":"tableCell","content":[{"type":"text","text":"Table Cell","styles":{}}],"props":{"colspan":1,"rowspan":1,"backgroundColor":"default","textColor":"default","textAlignment":"left"}}]},{"cells":[{"type":"tableCell","content":[{"type":"text","text":"Table Cell","styles":{}}],"props":{"colspan":1,"rowspan":1,"backgroundColor":"default","textColor":"default","textAlignment":"left"}},{"type":"tableCell","content":[{"type":"text","text":"Table Cell","styles":{}}],"props":{"colspan":1,"rowspan":1,"backgroundColor":"default","textColor":"default","textAlignment":"left"}}]}]},"children":[]}],"blockCutAtStart":"9"} -{"_meta":{"startPos":173,"endPos":276},"blocks":[{"id":"9","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"ic","styles":{"italic":true}},{"type":"text","text":"Regular","styles":{}}],"children":[{"id":"10","type":"image","props":{"backgroundColor":"default","textAlignment":"left","name":"","url":"https://ralfvanveen.com/wp-content/uploads/2021/06/Placeholder-_-Glossary.svg","caption":"","showPreview":true},"children":[{"id":"11","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph","styles":{}}],"children":[]}]}]},{"id":"12","type":"table","props":{"textColor":"default"},"content":{"type":"tableContent","columnWidths":[null,null],"rows":[{"cells":[{"type":"tableCell","content":[{"type":"text","text":"Table Cell","styles":{}}],"props":{"colspan":1,"rowspan":1,"backgroundColor":"default","textColor":"default","textAlignment":"left"}},{"type":"tableCell","content":[{"type":"text","text":"Table Cell","styles":{}}],"props":{"colspan":1,"rowspan":1,"backgroundColor":"default","textColor":"default","textAlignment":"left"}}]},{"cells":[{"type":"tableCell","content":[{"type":"text","text":"Table Cell","styles":{}}],"props":{"colspan":1,"rowspan":1,"backgroundColor":"default","textColor":"default","textAlignment":"left"}},{"type":"tableCell","content":[{"type":"text","text":"Table Cell","styles":{}}],"props":{"colspan":1,"rowspan":1,"backgroundColor":"default","textColor":"default","textAlignment":"left"}}]}]},"children":[]}],"blockCutAtStart":"9"} -{"_meta":{"startPos":174,"endPos":276},"blocks":[{"id":"9","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"c","styles":{"italic":true}},{"type":"text","text":"Regular","styles":{}}],"children":[{"id":"10","type":"image","props":{"backgroundColor":"default","textAlignment":"left","name":"","url":"https://ralfvanveen.com/wp-content/uploads/2021/06/Placeholder-_-Glossary.svg","caption":"","showPreview":true},"children":[{"id":"11","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph","styles":{}}],"children":[]}]}]},{"id":"12","type":"table","props":{"textColor":"default"},"content":{"type":"tableContent","columnWidths":[null,null],"rows":[{"cells":[{"type":"tableCell","content":[{"type":"text","text":"Table Cell","styles":{}}],"props":{"colspan":1,"rowspan":1,"backgroundColor":"default","textColor":"default","textAlignment":"left"}},{"type":"tableCell","content":[{"type":"text","text":"Table Cell","styles":{}}],"props":{"colspan":1,"rowspan":1,"backgroundColor":"default","textColor":"default","textAlignment":"left"}}]},{"cells":[{"type":"tableCell","content":[{"type":"text","text":"Table Cell","styles":{}}],"props":{"colspan":1,"rowspan":1,"backgroundColor":"default","textColor":"default","textAlignment":"left"}},{"type":"tableCell","content":[{"type":"text","text":"Table Cell","styles":{}}],"props":{"colspan":1,"rowspan":1,"backgroundColor":"default","textColor":"default","textAlignment":"left"}}]}]},"children":[]}],"blockCutAtStart":"9"} -{"_meta":{"startPos":175,"endPos":276},"blocks":[{"id":"9","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"Regular","styles":{}}],"children":[{"id":"10","type":"image","props":{"backgroundColor":"default","textAlignment":"left","name":"","url":"https://ralfvanveen.com/wp-content/uploads/2021/06/Placeholder-_-Glossary.svg","caption":"","showPreview":true},"children":[{"id":"11","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph","styles":{}}],"children":[]}]}]},{"id":"12","type":"table","props":{"textColor":"default"},"content":{"type":"tableContent","columnWidths":[null,null],"rows":[{"cells":[{"type":"tableCell","content":[{"type":"text","text":"Table Cell","styles":{}}],"props":{"colspan":1,"rowspan":1,"backgroundColor":"default","textColor":"default","textAlignment":"left"}},{"type":"tableCell","content":[{"type":"text","text":"Table Cell","styles":{}}],"props":{"colspan":1,"rowspan":1,"backgroundColor":"default","textColor":"default","textAlignment":"left"}}]},{"cells":[{"type":"tableCell","content":[{"type":"text","text":"Table Cell","styles":{}}],"props":{"colspan":1,"rowspan":1,"backgroundColor":"default","textColor":"default","textAlignment":"left"}},{"type":"tableCell","content":[{"type":"text","text":"Table Cell","styles":{}}],"props":{"colspan":1,"rowspan":1,"backgroundColor":"default","textColor":"default","textAlignment":"left"}}]}]},"children":[]}],"blockCutAtStart":"9"} -{"_meta":{"startPos":176,"endPos":276},"blocks":[{"id":"9","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"egular","styles":{}}],"children":[{"id":"10","type":"image","props":{"backgroundColor":"default","textAlignment":"left","name":"","url":"https://ralfvanveen.com/wp-content/uploads/2021/06/Placeholder-_-Glossary.svg","caption":"","showPreview":true},"children":[{"id":"11","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph","styles":{}}],"children":[]}]}]},{"id":"12","type":"table","props":{"textColor":"default"},"content":{"type":"tableContent","columnWidths":[null,null],"rows":[{"cells":[{"type":"tableCell","content":[{"type":"text","text":"Table Cell","styles":{}}],"props":{"colspan":1,"rowspan":1,"backgroundColor":"default","textColor":"default","textAlignment":"left"}},{"type":"tableCell","content":[{"type":"text","text":"Table Cell","styles":{}}],"props":{"colspan":1,"rowspan":1,"backgroundColor":"default","textColor":"default","textAlignment":"left"}}]},{"cells":[{"type":"tableCell","content":[{"type":"text","text":"Table Cell","styles":{}}],"props":{"colspan":1,"rowspan":1,"backgroundColor":"default","textColor":"default","textAlignment":"left"}},{"type":"tableCell","content":[{"type":"text","text":"Table Cell","styles":{}}],"props":{"colspan":1,"rowspan":1,"backgroundColor":"default","textColor":"default","textAlignment":"left"}}]}]},"children":[]}],"blockCutAtStart":"9"} -{"_meta":{"startPos":177,"endPos":276},"blocks":[{"id":"9","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"gular","styles":{}}],"children":[{"id":"10","type":"image","props":{"backgroundColor":"default","textAlignment":"left","name":"","url":"https://ralfvanveen.com/wp-content/uploads/2021/06/Placeholder-_-Glossary.svg","caption":"","showPreview":true},"children":[{"id":"11","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph","styles":{}}],"children":[]}]}]},{"id":"12","type":"table","props":{"textColor":"default"},"content":{"type":"tableContent","columnWidths":[null,null],"rows":[{"cells":[{"type":"tableCell","content":[{"type":"text","text":"Table Cell","styles":{}}],"props":{"colspan":1,"rowspan":1,"backgroundColor":"default","textColor":"default","textAlignment":"left"}},{"type":"tableCell","content":[{"type":"text","text":"Table Cell","styles":{}}],"props":{"colspan":1,"rowspan":1,"backgroundColor":"default","textColor":"default","textAlignment":"left"}}]},{"cells":[{"type":"tableCell","content":[{"type":"text","text":"Table Cell","styles":{}}],"props":{"colspan":1,"rowspan":1,"backgroundColor":"default","textColor":"default","textAlignment":"left"}},{"type":"tableCell","content":[{"type":"text","text":"Table Cell","styles":{}}],"props":{"colspan":1,"rowspan":1,"backgroundColor":"default","textColor":"default","textAlignment":"left"}}]}]},"children":[]}],"blockCutAtStart":"9"} -{"_meta":{"startPos":178,"endPos":276},"blocks":[{"id":"9","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"ular","styles":{}}],"children":[{"id":"10","type":"image","props":{"backgroundColor":"default","textAlignment":"left","name":"","url":"https://ralfvanveen.com/wp-content/uploads/2021/06/Placeholder-_-Glossary.svg","caption":"","showPreview":true},"children":[{"id":"11","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph","styles":{}}],"children":[]}]}]},{"id":"12","type":"table","props":{"textColor":"default"},"content":{"type":"tableContent","columnWidths":[null,null],"rows":[{"cells":[{"type":"tableCell","content":[{"type":"text","text":"Table Cell","styles":{}}],"props":{"colspan":1,"rowspan":1,"backgroundColor":"default","textColor":"default","textAlignment":"left"}},{"type":"tableCell","content":[{"type":"text","text":"Table Cell","styles":{}}],"props":{"colspan":1,"rowspan":1,"backgroundColor":"default","textColor":"default","textAlignment":"left"}}]},{"cells":[{"type":"tableCell","content":[{"type":"text","text":"Table Cell","styles":{}}],"props":{"colspan":1,"rowspan":1,"backgroundColor":"default","textColor":"default","textAlignment":"left"}},{"type":"tableCell","content":[{"type":"text","text":"Table Cell","styles":{}}],"props":{"colspan":1,"rowspan":1,"backgroundColor":"default","textColor":"default","textAlignment":"left"}}]}]},"children":[]}],"blockCutAtStart":"9"} -{"_meta":{"startPos":179,"endPos":276},"blocks":[{"id":"9","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"lar","styles":{}}],"children":[{"id":"10","type":"image","props":{"backgroundColor":"default","textAlignment":"left","name":"","url":"https://ralfvanveen.com/wp-content/uploads/2021/06/Placeholder-_-Glossary.svg","caption":"","showPreview":true},"children":[{"id":"11","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph","styles":{}}],"children":[]}]}]},{"id":"12","type":"table","props":{"textColor":"default"},"content":{"type":"tableContent","columnWidths":[null,null],"rows":[{"cells":[{"type":"tableCell","content":[{"type":"text","text":"Table Cell","styles":{}}],"props":{"colspan":1,"rowspan":1,"backgroundColor":"default","textColor":"default","textAlignment":"left"}},{"type":"tableCell","content":[{"type":"text","text":"Table Cell","styles":{}}],"props":{"colspan":1,"rowspan":1,"backgroundColor":"default","textColor":"default","textAlignment":"left"}}]},{"cells":[{"type":"tableCell","content":[{"type":"text","text":"Table Cell","styles":{}}],"props":{"colspan":1,"rowspan":1,"backgroundColor":"default","textColor":"default","textAlignment":"left"}},{"type":"tableCell","content":[{"type":"text","text":"Table Cell","styles":{}}],"props":{"colspan":1,"rowspan":1,"backgroundColor":"default","textColor":"default","textAlignment":"left"}}]}]},"children":[]}],"blockCutAtStart":"9"} -{"_meta":{"startPos":180,"endPos":276},"blocks":[{"id":"9","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"ar","styles":{}}],"children":[{"id":"10","type":"image","props":{"backgroundColor":"default","textAlignment":"left","name":"","url":"https://ralfvanveen.com/wp-content/uploads/2021/06/Placeholder-_-Glossary.svg","caption":"","showPreview":true},"children":[{"id":"11","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph","styles":{}}],"children":[]}]}]},{"id":"12","type":"table","props":{"textColor":"default"},"content":{"type":"tableContent","columnWidths":[null,null],"rows":[{"cells":[{"type":"tableCell","content":[{"type":"text","text":"Table Cell","styles":{}}],"props":{"colspan":1,"rowspan":1,"backgroundColor":"default","textColor":"default","textAlignment":"left"}},{"type":"tableCell","content":[{"type":"text","text":"Table Cell","styles":{}}],"props":{"colspan":1,"rowspan":1,"backgroundColor":"default","textColor":"default","textAlignment":"left"}}]},{"cells":[{"type":"tableCell","content":[{"type":"text","text":"Table Cell","styles":{}}],"props":{"colspan":1,"rowspan":1,"backgroundColor":"default","textColor":"default","textAlignment":"left"}},{"type":"tableCell","content":[{"type":"text","text":"Table Cell","styles":{}}],"props":{"colspan":1,"rowspan":1,"backgroundColor":"default","textColor":"default","textAlignment":"left"}}]}]},"children":[]}],"blockCutAtStart":"9"} -{"_meta":{"startPos":181,"endPos":276},"blocks":[{"id":"9","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"r","styles":{}}],"children":[{"id":"10","type":"image","props":{"backgroundColor":"default","textAlignment":"left","name":"","url":"https://ralfvanveen.com/wp-content/uploads/2021/06/Placeholder-_-Glossary.svg","caption":"","showPreview":true},"children":[{"id":"11","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph","styles":{}}],"children":[]}]}]},{"id":"12","type":"table","props":{"textColor":"default"},"content":{"type":"tableContent","columnWidths":[null,null],"rows":[{"cells":[{"type":"tableCell","content":[{"type":"text","text":"Table Cell","styles":{}}],"props":{"colspan":1,"rowspan":1,"backgroundColor":"default","textColor":"default","textAlignment":"left"}},{"type":"tableCell","content":[{"type":"text","text":"Table Cell","styles":{}}],"props":{"colspan":1,"rowspan":1,"backgroundColor":"default","textColor":"default","textAlignment":"left"}}]},{"cells":[{"type":"tableCell","content":[{"type":"text","text":"Table Cell","styles":{}}],"props":{"colspan":1,"rowspan":1,"backgroundColor":"default","textColor":"default","textAlignment":"left"}},{"type":"tableCell","content":[{"type":"text","text":"Table Cell","styles":{}}],"props":{"colspan":1,"rowspan":1,"backgroundColor":"default","textColor":"default","textAlignment":"left"}}]}]},"children":[]}],"blockCutAtStart":"9"} +{"_meta":{"startPos":0,"endPos":276},"blocks":[{"id":"1","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2,"isTogglable":false},"content":[{"type":"text","text":"Heading 1","styles":{}}],"children":[{"id":"2","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},{"id":"3","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},{"id":"4","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]}]},{"id":"5","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2,"isTogglable":false},"content":[{"type":"text","text":"Heading 2","styles":{}}],"children":[{"id":"6","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},{"id":"7","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},{"id":"8","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]}]},{"id":"9","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2,"isTogglable":false},"content":[{"type":"text","text":"Bold","styles":{"bold":true}},{"type":"text","text":"Italic","styles":{"italic":true}},{"type":"text","text":"Regular","styles":{}}],"children":[{"id":"10","type":"image","props":{"backgroundColor":"default","textAlignment":"left","name":"","url":"https://ralfvanveen.com/wp-content/uploads/2021/06/Placeholder-_-Glossary.svg","caption":"","showPreview":true},"children":[{"id":"11","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph","styles":{}}],"children":[]}]}]},{"id":"12","type":"table","props":{"textColor":"default"},"content":{"type":"tableContent","columnWidths":[null,null],"rows":[{"cells":[{"type":"tableCell","content":[{"type":"text","text":"Table Cell","styles":{}}],"props":{"colspan":1,"rowspan":1,"backgroundColor":"default","textColor":"default","textAlignment":"left"}},{"type":"tableCell","content":[{"type":"text","text":"Table Cell","styles":{}}],"props":{"colspan":1,"rowspan":1,"backgroundColor":"default","textColor":"default","textAlignment":"left"}}]},{"cells":[{"type":"tableCell","content":[{"type":"text","text":"Table Cell","styles":{}}],"props":{"colspan":1,"rowspan":1,"backgroundColor":"default","textColor":"default","textAlignment":"left"}},{"type":"tableCell","content":[{"type":"text","text":"Table Cell","styles":{}}],"props":{"colspan":1,"rowspan":1,"backgroundColor":"default","textColor":"default","textAlignment":"left"}}]}]},"children":[]}]} +{"_meta":{"startPos":0,"endPos":276},"blocks":[{"id":"1","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2,"isTogglable":false},"content":[{"type":"text","text":"Heading 1","styles":{}}],"children":[{"id":"2","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},{"id":"3","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},{"id":"4","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]}]},{"id":"5","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2,"isTogglable":false},"content":[{"type":"text","text":"Heading 2","styles":{}}],"children":[{"id":"6","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},{"id":"7","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},{"id":"8","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]}]},{"id":"9","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2,"isTogglable":false},"content":[{"type":"text","text":"Bold","styles":{"bold":true}},{"type":"text","text":"Italic","styles":{"italic":true}},{"type":"text","text":"Regular","styles":{}}],"children":[{"id":"10","type":"image","props":{"backgroundColor":"default","textAlignment":"left","name":"","url":"https://ralfvanveen.com/wp-content/uploads/2021/06/Placeholder-_-Glossary.svg","caption":"","showPreview":true},"children":[{"id":"11","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph","styles":{}}],"children":[]}]}]},{"id":"12","type":"table","props":{"textColor":"default"},"content":{"type":"tableContent","columnWidths":[null,null],"rows":[{"cells":[{"type":"tableCell","content":[{"type":"text","text":"Table Cell","styles":{}}],"props":{"colspan":1,"rowspan":1,"backgroundColor":"default","textColor":"default","textAlignment":"left"}},{"type":"tableCell","content":[{"type":"text","text":"Table Cell","styles":{}}],"props":{"colspan":1,"rowspan":1,"backgroundColor":"default","textColor":"default","textAlignment":"left"}}]},{"cells":[{"type":"tableCell","content":[{"type":"text","text":"Table Cell","styles":{}}],"props":{"colspan":1,"rowspan":1,"backgroundColor":"default","textColor":"default","textAlignment":"left"}},{"type":"tableCell","content":[{"type":"text","text":"Table Cell","styles":{}}],"props":{"colspan":1,"rowspan":1,"backgroundColor":"default","textColor":"default","textAlignment":"left"}}]}]},"children":[]}]} +{"_meta":{"startPos":0,"endPos":276},"blocks":[{"id":"1","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2,"isTogglable":false},"content":[{"type":"text","text":"Heading 1","styles":{}}],"children":[{"id":"2","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},{"id":"3","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},{"id":"4","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]}]},{"id":"5","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2,"isTogglable":false},"content":[{"type":"text","text":"Heading 2","styles":{}}],"children":[{"id":"6","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},{"id":"7","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},{"id":"8","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]}]},{"id":"9","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2,"isTogglable":false},"content":[{"type":"text","text":"Bold","styles":{"bold":true}},{"type":"text","text":"Italic","styles":{"italic":true}},{"type":"text","text":"Regular","styles":{}}],"children":[{"id":"10","type":"image","props":{"backgroundColor":"default","textAlignment":"left","name":"","url":"https://ralfvanveen.com/wp-content/uploads/2021/06/Placeholder-_-Glossary.svg","caption":"","showPreview":true},"children":[{"id":"11","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph","styles":{}}],"children":[]}]}]},{"id":"12","type":"table","props":{"textColor":"default"},"content":{"type":"tableContent","columnWidths":[null,null],"rows":[{"cells":[{"type":"tableCell","content":[{"type":"text","text":"Table Cell","styles":{}}],"props":{"colspan":1,"rowspan":1,"backgroundColor":"default","textColor":"default","textAlignment":"left"}},{"type":"tableCell","content":[{"type":"text","text":"Table Cell","styles":{}}],"props":{"colspan":1,"rowspan":1,"backgroundColor":"default","textColor":"default","textAlignment":"left"}}]},{"cells":[{"type":"tableCell","content":[{"type":"text","text":"Table Cell","styles":{}}],"props":{"colspan":1,"rowspan":1,"backgroundColor":"default","textColor":"default","textAlignment":"left"}},{"type":"tableCell","content":[{"type":"text","text":"Table Cell","styles":{}}],"props":{"colspan":1,"rowspan":1,"backgroundColor":"default","textColor":"default","textAlignment":"left"}}]}]},"children":[]}]} +{"_meta":{"startPos":0,"endPos":276},"blocks":[{"id":"1","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2,"isTogglable":false},"content":[{"type":"text","text":"Heading 1","styles":{}}],"children":[{"id":"2","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},{"id":"3","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},{"id":"4","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]}]},{"id":"5","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2,"isTogglable":false},"content":[{"type":"text","text":"Heading 2","styles":{}}],"children":[{"id":"6","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},{"id":"7","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},{"id":"8","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]}]},{"id":"9","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2,"isTogglable":false},"content":[{"type":"text","text":"Bold","styles":{"bold":true}},{"type":"text","text":"Italic","styles":{"italic":true}},{"type":"text","text":"Regular","styles":{}}],"children":[{"id":"10","type":"image","props":{"backgroundColor":"default","textAlignment":"left","name":"","url":"https://ralfvanveen.com/wp-content/uploads/2021/06/Placeholder-_-Glossary.svg","caption":"","showPreview":true},"children":[{"id":"11","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph","styles":{}}],"children":[]}]}]},{"id":"12","type":"table","props":{"textColor":"default"},"content":{"type":"tableContent","columnWidths":[null,null],"rows":[{"cells":[{"type":"tableCell","content":[{"type":"text","text":"Table Cell","styles":{}}],"props":{"colspan":1,"rowspan":1,"backgroundColor":"default","textColor":"default","textAlignment":"left"}},{"type":"tableCell","content":[{"type":"text","text":"Table Cell","styles":{}}],"props":{"colspan":1,"rowspan":1,"backgroundColor":"default","textColor":"default","textAlignment":"left"}}]},{"cells":[{"type":"tableCell","content":[{"type":"text","text":"Table Cell","styles":{}}],"props":{"colspan":1,"rowspan":1,"backgroundColor":"default","textColor":"default","textAlignment":"left"}},{"type":"tableCell","content":[{"type":"text","text":"Table Cell","styles":{}}],"props":{"colspan":1,"rowspan":1,"backgroundColor":"default","textColor":"default","textAlignment":"left"}}]}]},"children":[]}]} +{"_meta":{"startPos":4,"endPos":276},"blocks":[{"id":"1","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2,"isTogglable":false},"content":[{"type":"text","text":"eading 1","styles":{}}],"children":[{"id":"2","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},{"id":"3","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},{"id":"4","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]}]},{"id":"5","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2,"isTogglable":false},"content":[{"type":"text","text":"Heading 2","styles":{}}],"children":[{"id":"6","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},{"id":"7","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},{"id":"8","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]}]},{"id":"9","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2,"isTogglable":false},"content":[{"type":"text","text":"Bold","styles":{"bold":true}},{"type":"text","text":"Italic","styles":{"italic":true}},{"type":"text","text":"Regular","styles":{}}],"children":[{"id":"10","type":"image","props":{"backgroundColor":"default","textAlignment":"left","name":"","url":"https://ralfvanveen.com/wp-content/uploads/2021/06/Placeholder-_-Glossary.svg","caption":"","showPreview":true},"children":[{"id":"11","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph","styles":{}}],"children":[]}]}]},{"id":"12","type":"table","props":{"textColor":"default"},"content":{"type":"tableContent","columnWidths":[null,null],"rows":[{"cells":[{"type":"tableCell","content":[{"type":"text","text":"Table Cell","styles":{}}],"props":{"colspan":1,"rowspan":1,"backgroundColor":"default","textColor":"default","textAlignment":"left"}},{"type":"tableCell","content":[{"type":"text","text":"Table Cell","styles":{}}],"props":{"colspan":1,"rowspan":1,"backgroundColor":"default","textColor":"default","textAlignment":"left"}}]},{"cells":[{"type":"tableCell","content":[{"type":"text","text":"Table Cell","styles":{}}],"props":{"colspan":1,"rowspan":1,"backgroundColor":"default","textColor":"default","textAlignment":"left"}},{"type":"tableCell","content":[{"type":"text","text":"Table Cell","styles":{}}],"props":{"colspan":1,"rowspan":1,"backgroundColor":"default","textColor":"default","textAlignment":"left"}}]}]},"children":[]}],"blockCutAtStart":"1"} +{"_meta":{"startPos":5,"endPos":276},"blocks":[{"id":"1","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2,"isTogglable":false},"content":[{"type":"text","text":"ading 1","styles":{}}],"children":[{"id":"2","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},{"id":"3","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},{"id":"4","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]}]},{"id":"5","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2,"isTogglable":false},"content":[{"type":"text","text":"Heading 2","styles":{}}],"children":[{"id":"6","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},{"id":"7","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},{"id":"8","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]}]},{"id":"9","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2,"isTogglable":false},"content":[{"type":"text","text":"Bold","styles":{"bold":true}},{"type":"text","text":"Italic","styles":{"italic":true}},{"type":"text","text":"Regular","styles":{}}],"children":[{"id":"10","type":"image","props":{"backgroundColor":"default","textAlignment":"left","name":"","url":"https://ralfvanveen.com/wp-content/uploads/2021/06/Placeholder-_-Glossary.svg","caption":"","showPreview":true},"children":[{"id":"11","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph","styles":{}}],"children":[]}]}]},{"id":"12","type":"table","props":{"textColor":"default"},"content":{"type":"tableContent","columnWidths":[null,null],"rows":[{"cells":[{"type":"tableCell","content":[{"type":"text","text":"Table Cell","styles":{}}],"props":{"colspan":1,"rowspan":1,"backgroundColor":"default","textColor":"default","textAlignment":"left"}},{"type":"tableCell","content":[{"type":"text","text":"Table Cell","styles":{}}],"props":{"colspan":1,"rowspan":1,"backgroundColor":"default","textColor":"default","textAlignment":"left"}}]},{"cells":[{"type":"tableCell","content":[{"type":"text","text":"Table Cell","styles":{}}],"props":{"colspan":1,"rowspan":1,"backgroundColor":"default","textColor":"default","textAlignment":"left"}},{"type":"tableCell","content":[{"type":"text","text":"Table Cell","styles":{}}],"props":{"colspan":1,"rowspan":1,"backgroundColor":"default","textColor":"default","textAlignment":"left"}}]}]},"children":[]}],"blockCutAtStart":"1"} +{"_meta":{"startPos":6,"endPos":276},"blocks":[{"id":"1","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2,"isTogglable":false},"content":[{"type":"text","text":"ding 1","styles":{}}],"children":[{"id":"2","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},{"id":"3","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},{"id":"4","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]}]},{"id":"5","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2,"isTogglable":false},"content":[{"type":"text","text":"Heading 2","styles":{}}],"children":[{"id":"6","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},{"id":"7","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},{"id":"8","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]}]},{"id":"9","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2,"isTogglable":false},"content":[{"type":"text","text":"Bold","styles":{"bold":true}},{"type":"text","text":"Italic","styles":{"italic":true}},{"type":"text","text":"Regular","styles":{}}],"children":[{"id":"10","type":"image","props":{"backgroundColor":"default","textAlignment":"left","name":"","url":"https://ralfvanveen.com/wp-content/uploads/2021/06/Placeholder-_-Glossary.svg","caption":"","showPreview":true},"children":[{"id":"11","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph","styles":{}}],"children":[]}]}]},{"id":"12","type":"table","props":{"textColor":"default"},"content":{"type":"tableContent","columnWidths":[null,null],"rows":[{"cells":[{"type":"tableCell","content":[{"type":"text","text":"Table Cell","styles":{}}],"props":{"colspan":1,"rowspan":1,"backgroundColor":"default","textColor":"default","textAlignment":"left"}},{"type":"tableCell","content":[{"type":"text","text":"Table Cell","styles":{}}],"props":{"colspan":1,"rowspan":1,"backgroundColor":"default","textColor":"default","textAlignment":"left"}}]},{"cells":[{"type":"tableCell","content":[{"type":"text","text":"Table Cell","styles":{}}],"props":{"colspan":1,"rowspan":1,"backgroundColor":"default","textColor":"default","textAlignment":"left"}},{"type":"tableCell","content":[{"type":"text","text":"Table Cell","styles":{}}],"props":{"colspan":1,"rowspan":1,"backgroundColor":"default","textColor":"default","textAlignment":"left"}}]}]},"children":[]}],"blockCutAtStart":"1"} +{"_meta":{"startPos":7,"endPos":276},"blocks":[{"id":"1","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2,"isTogglable":false},"content":[{"type":"text","text":"ing 1","styles":{}}],"children":[{"id":"2","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},{"id":"3","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},{"id":"4","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]}]},{"id":"5","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2,"isTogglable":false},"content":[{"type":"text","text":"Heading 2","styles":{}}],"children":[{"id":"6","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},{"id":"7","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},{"id":"8","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]}]},{"id":"9","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2,"isTogglable":false},"content":[{"type":"text","text":"Bold","styles":{"bold":true}},{"type":"text","text":"Italic","styles":{"italic":true}},{"type":"text","text":"Regular","styles":{}}],"children":[{"id":"10","type":"image","props":{"backgroundColor":"default","textAlignment":"left","name":"","url":"https://ralfvanveen.com/wp-content/uploads/2021/06/Placeholder-_-Glossary.svg","caption":"","showPreview":true},"children":[{"id":"11","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph","styles":{}}],"children":[]}]}]},{"id":"12","type":"table","props":{"textColor":"default"},"content":{"type":"tableContent","columnWidths":[null,null],"rows":[{"cells":[{"type":"tableCell","content":[{"type":"text","text":"Table Cell","styles":{}}],"props":{"colspan":1,"rowspan":1,"backgroundColor":"default","textColor":"default","textAlignment":"left"}},{"type":"tableCell","content":[{"type":"text","text":"Table Cell","styles":{}}],"props":{"colspan":1,"rowspan":1,"backgroundColor":"default","textColor":"default","textAlignment":"left"}}]},{"cells":[{"type":"tableCell","content":[{"type":"text","text":"Table Cell","styles":{}}],"props":{"colspan":1,"rowspan":1,"backgroundColor":"default","textColor":"default","textAlignment":"left"}},{"type":"tableCell","content":[{"type":"text","text":"Table Cell","styles":{}}],"props":{"colspan":1,"rowspan":1,"backgroundColor":"default","textColor":"default","textAlignment":"left"}}]}]},"children":[]}],"blockCutAtStart":"1"} +{"_meta":{"startPos":8,"endPos":276},"blocks":[{"id":"1","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2,"isTogglable":false},"content":[{"type":"text","text":"ng 1","styles":{}}],"children":[{"id":"2","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},{"id":"3","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},{"id":"4","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]}]},{"id":"5","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2,"isTogglable":false},"content":[{"type":"text","text":"Heading 2","styles":{}}],"children":[{"id":"6","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},{"id":"7","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},{"id":"8","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]}]},{"id":"9","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2,"isTogglable":false},"content":[{"type":"text","text":"Bold","styles":{"bold":true}},{"type":"text","text":"Italic","styles":{"italic":true}},{"type":"text","text":"Regular","styles":{}}],"children":[{"id":"10","type":"image","props":{"backgroundColor":"default","textAlignment":"left","name":"","url":"https://ralfvanveen.com/wp-content/uploads/2021/06/Placeholder-_-Glossary.svg","caption":"","showPreview":true},"children":[{"id":"11","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph","styles":{}}],"children":[]}]}]},{"id":"12","type":"table","props":{"textColor":"default"},"content":{"type":"tableContent","columnWidths":[null,null],"rows":[{"cells":[{"type":"tableCell","content":[{"type":"text","text":"Table Cell","styles":{}}],"props":{"colspan":1,"rowspan":1,"backgroundColor":"default","textColor":"default","textAlignment":"left"}},{"type":"tableCell","content":[{"type":"text","text":"Table Cell","styles":{}}],"props":{"colspan":1,"rowspan":1,"backgroundColor":"default","textColor":"default","textAlignment":"left"}}]},{"cells":[{"type":"tableCell","content":[{"type":"text","text":"Table Cell","styles":{}}],"props":{"colspan":1,"rowspan":1,"backgroundColor":"default","textColor":"default","textAlignment":"left"}},{"type":"tableCell","content":[{"type":"text","text":"Table Cell","styles":{}}],"props":{"colspan":1,"rowspan":1,"backgroundColor":"default","textColor":"default","textAlignment":"left"}}]}]},"children":[]}],"blockCutAtStart":"1"} +{"_meta":{"startPos":9,"endPos":276},"blocks":[{"id":"1","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2,"isTogglable":false},"content":[{"type":"text","text":"g 1","styles":{}}],"children":[{"id":"2","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},{"id":"3","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},{"id":"4","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]}]},{"id":"5","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2,"isTogglable":false},"content":[{"type":"text","text":"Heading 2","styles":{}}],"children":[{"id":"6","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},{"id":"7","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},{"id":"8","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]}]},{"id":"9","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2,"isTogglable":false},"content":[{"type":"text","text":"Bold","styles":{"bold":true}},{"type":"text","text":"Italic","styles":{"italic":true}},{"type":"text","text":"Regular","styles":{}}],"children":[{"id":"10","type":"image","props":{"backgroundColor":"default","textAlignment":"left","name":"","url":"https://ralfvanveen.com/wp-content/uploads/2021/06/Placeholder-_-Glossary.svg","caption":"","showPreview":true},"children":[{"id":"11","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph","styles":{}}],"children":[]}]}]},{"id":"12","type":"table","props":{"textColor":"default"},"content":{"type":"tableContent","columnWidths":[null,null],"rows":[{"cells":[{"type":"tableCell","content":[{"type":"text","text":"Table Cell","styles":{}}],"props":{"colspan":1,"rowspan":1,"backgroundColor":"default","textColor":"default","textAlignment":"left"}},{"type":"tableCell","content":[{"type":"text","text":"Table Cell","styles":{}}],"props":{"colspan":1,"rowspan":1,"backgroundColor":"default","textColor":"default","textAlignment":"left"}}]},{"cells":[{"type":"tableCell","content":[{"type":"text","text":"Table Cell","styles":{}}],"props":{"colspan":1,"rowspan":1,"backgroundColor":"default","textColor":"default","textAlignment":"left"}},{"type":"tableCell","content":[{"type":"text","text":"Table Cell","styles":{}}],"props":{"colspan":1,"rowspan":1,"backgroundColor":"default","textColor":"default","textAlignment":"left"}}]}]},"children":[]}],"blockCutAtStart":"1"} +{"_meta":{"startPos":10,"endPos":276},"blocks":[{"id":"1","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2,"isTogglable":false},"content":[{"type":"text","text":" 1","styles":{}}],"children":[{"id":"2","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},{"id":"3","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},{"id":"4","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]}]},{"id":"5","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2,"isTogglable":false},"content":[{"type":"text","text":"Heading 2","styles":{}}],"children":[{"id":"6","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},{"id":"7","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},{"id":"8","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]}]},{"id":"9","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2,"isTogglable":false},"content":[{"type":"text","text":"Bold","styles":{"bold":true}},{"type":"text","text":"Italic","styles":{"italic":true}},{"type":"text","text":"Regular","styles":{}}],"children":[{"id":"10","type":"image","props":{"backgroundColor":"default","textAlignment":"left","name":"","url":"https://ralfvanveen.com/wp-content/uploads/2021/06/Placeholder-_-Glossary.svg","caption":"","showPreview":true},"children":[{"id":"11","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph","styles":{}}],"children":[]}]}]},{"id":"12","type":"table","props":{"textColor":"default"},"content":{"type":"tableContent","columnWidths":[null,null],"rows":[{"cells":[{"type":"tableCell","content":[{"type":"text","text":"Table Cell","styles":{}}],"props":{"colspan":1,"rowspan":1,"backgroundColor":"default","textColor":"default","textAlignment":"left"}},{"type":"tableCell","content":[{"type":"text","text":"Table Cell","styles":{}}],"props":{"colspan":1,"rowspan":1,"backgroundColor":"default","textColor":"default","textAlignment":"left"}}]},{"cells":[{"type":"tableCell","content":[{"type":"text","text":"Table Cell","styles":{}}],"props":{"colspan":1,"rowspan":1,"backgroundColor":"default","textColor":"default","textAlignment":"left"}},{"type":"tableCell","content":[{"type":"text","text":"Table Cell","styles":{}}],"props":{"colspan":1,"rowspan":1,"backgroundColor":"default","textColor":"default","textAlignment":"left"}}]}]},"children":[]}],"blockCutAtStart":"1"} +{"_meta":{"startPos":11,"endPos":276},"blocks":[{"id":"1","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2,"isTogglable":false},"content":[{"type":"text","text":"1","styles":{}}],"children":[{"id":"2","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},{"id":"3","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},{"id":"4","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]}]},{"id":"5","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2,"isTogglable":false},"content":[{"type":"text","text":"Heading 2","styles":{}}],"children":[{"id":"6","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},{"id":"7","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},{"id":"8","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]}]},{"id":"9","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2,"isTogglable":false},"content":[{"type":"text","text":"Bold","styles":{"bold":true}},{"type":"text","text":"Italic","styles":{"italic":true}},{"type":"text","text":"Regular","styles":{}}],"children":[{"id":"10","type":"image","props":{"backgroundColor":"default","textAlignment":"left","name":"","url":"https://ralfvanveen.com/wp-content/uploads/2021/06/Placeholder-_-Glossary.svg","caption":"","showPreview":true},"children":[{"id":"11","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph","styles":{}}],"children":[]}]}]},{"id":"12","type":"table","props":{"textColor":"default"},"content":{"type":"tableContent","columnWidths":[null,null],"rows":[{"cells":[{"type":"tableCell","content":[{"type":"text","text":"Table Cell","styles":{}}],"props":{"colspan":1,"rowspan":1,"backgroundColor":"default","textColor":"default","textAlignment":"left"}},{"type":"tableCell","content":[{"type":"text","text":"Table Cell","styles":{}}],"props":{"colspan":1,"rowspan":1,"backgroundColor":"default","textColor":"default","textAlignment":"left"}}]},{"cells":[{"type":"tableCell","content":[{"type":"text","text":"Table Cell","styles":{}}],"props":{"colspan":1,"rowspan":1,"backgroundColor":"default","textColor":"default","textAlignment":"left"}},{"type":"tableCell","content":[{"type":"text","text":"Table Cell","styles":{}}],"props":{"colspan":1,"rowspan":1,"backgroundColor":"default","textColor":"default","textAlignment":"left"}}]}]},"children":[]}],"blockCutAtStart":"1"} +{"_meta":{"startPos":13,"endPos":276},"blocks":[{"id":"2","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},{"id":"3","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},{"id":"4","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]},{"id":"5","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2,"isTogglable":false},"content":[{"type":"text","text":"Heading 2","styles":{}}],"children":[{"id":"6","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},{"id":"7","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},{"id":"8","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]}]},{"id":"9","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2,"isTogglable":false},"content":[{"type":"text","text":"Bold","styles":{"bold":true}},{"type":"text","text":"Italic","styles":{"italic":true}},{"type":"text","text":"Regular","styles":{}}],"children":[{"id":"10","type":"image","props":{"backgroundColor":"default","textAlignment":"left","name":"","url":"https://ralfvanveen.com/wp-content/uploads/2021/06/Placeholder-_-Glossary.svg","caption":"","showPreview":true},"children":[{"id":"11","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph","styles":{}}],"children":[]}]}]},{"id":"12","type":"table","props":{"textColor":"default"},"content":{"type":"tableContent","columnWidths":[null,null],"rows":[{"cells":[{"type":"tableCell","content":[{"type":"text","text":"Table Cell","styles":{}}],"props":{"colspan":1,"rowspan":1,"backgroundColor":"default","textColor":"default","textAlignment":"left"}},{"type":"tableCell","content":[{"type":"text","text":"Table Cell","styles":{}}],"props":{"colspan":1,"rowspan":1,"backgroundColor":"default","textColor":"default","textAlignment":"left"}}]},{"cells":[{"type":"tableCell","content":[{"type":"text","text":"Table Cell","styles":{}}],"props":{"colspan":1,"rowspan":1,"backgroundColor":"default","textColor":"default","textAlignment":"left"}},{"type":"tableCell","content":[{"type":"text","text":"Table Cell","styles":{}}],"props":{"colspan":1,"rowspan":1,"backgroundColor":"default","textColor":"default","textAlignment":"left"}}]}]},"children":[]}]} +{"_meta":{"startPos":13,"endPos":276},"blocks":[{"id":"2","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},{"id":"3","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},{"id":"4","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]},{"id":"5","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2,"isTogglable":false},"content":[{"type":"text","text":"Heading 2","styles":{}}],"children":[{"id":"6","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},{"id":"7","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},{"id":"8","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]}]},{"id":"9","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2,"isTogglable":false},"content":[{"type":"text","text":"Bold","styles":{"bold":true}},{"type":"text","text":"Italic","styles":{"italic":true}},{"type":"text","text":"Regular","styles":{}}],"children":[{"id":"10","type":"image","props":{"backgroundColor":"default","textAlignment":"left","name":"","url":"https://ralfvanveen.com/wp-content/uploads/2021/06/Placeholder-_-Glossary.svg","caption":"","showPreview":true},"children":[{"id":"11","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph","styles":{}}],"children":[]}]}]},{"id":"12","type":"table","props":{"textColor":"default"},"content":{"type":"tableContent","columnWidths":[null,null],"rows":[{"cells":[{"type":"tableCell","content":[{"type":"text","text":"Table Cell","styles":{}}],"props":{"colspan":1,"rowspan":1,"backgroundColor":"default","textColor":"default","textAlignment":"left"}},{"type":"tableCell","content":[{"type":"text","text":"Table Cell","styles":{}}],"props":{"colspan":1,"rowspan":1,"backgroundColor":"default","textColor":"default","textAlignment":"left"}}]},{"cells":[{"type":"tableCell","content":[{"type":"text","text":"Table Cell","styles":{}}],"props":{"colspan":1,"rowspan":1,"backgroundColor":"default","textColor":"default","textAlignment":"left"}},{"type":"tableCell","content":[{"type":"text","text":"Table Cell","styles":{}}],"props":{"colspan":1,"rowspan":1,"backgroundColor":"default","textColor":"default","textAlignment":"left"}}]}]},"children":[]}]} +{"_meta":{"startPos":13,"endPos":276},"blocks":[{"id":"2","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},{"id":"3","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},{"id":"4","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]},{"id":"5","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2,"isTogglable":false},"content":[{"type":"text","text":"Heading 2","styles":{}}],"children":[{"id":"6","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},{"id":"7","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},{"id":"8","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]}]},{"id":"9","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2,"isTogglable":false},"content":[{"type":"text","text":"Bold","styles":{"bold":true}},{"type":"text","text":"Italic","styles":{"italic":true}},{"type":"text","text":"Regular","styles":{}}],"children":[{"id":"10","type":"image","props":{"backgroundColor":"default","textAlignment":"left","name":"","url":"https://ralfvanveen.com/wp-content/uploads/2021/06/Placeholder-_-Glossary.svg","caption":"","showPreview":true},"children":[{"id":"11","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph","styles":{}}],"children":[]}]}]},{"id":"12","type":"table","props":{"textColor":"default"},"content":{"type":"tableContent","columnWidths":[null,null],"rows":[{"cells":[{"type":"tableCell","content":[{"type":"text","text":"Table Cell","styles":{}}],"props":{"colspan":1,"rowspan":1,"backgroundColor":"default","textColor":"default","textAlignment":"left"}},{"type":"tableCell","content":[{"type":"text","text":"Table Cell","styles":{}}],"props":{"colspan":1,"rowspan":1,"backgroundColor":"default","textColor":"default","textAlignment":"left"}}]},{"cells":[{"type":"tableCell","content":[{"type":"text","text":"Table Cell","styles":{}}],"props":{"colspan":1,"rowspan":1,"backgroundColor":"default","textColor":"default","textAlignment":"left"}},{"type":"tableCell","content":[{"type":"text","text":"Table Cell","styles":{}}],"props":{"colspan":1,"rowspan":1,"backgroundColor":"default","textColor":"default","textAlignment":"left"}}]}]},"children":[]}]} +{"_meta":{"startPos":13,"endPos":276},"blocks":[{"id":"2","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},{"id":"3","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},{"id":"4","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]},{"id":"5","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2,"isTogglable":false},"content":[{"type":"text","text":"Heading 2","styles":{}}],"children":[{"id":"6","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},{"id":"7","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},{"id":"8","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]}]},{"id":"9","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2,"isTogglable":false},"content":[{"type":"text","text":"Bold","styles":{"bold":true}},{"type":"text","text":"Italic","styles":{"italic":true}},{"type":"text","text":"Regular","styles":{}}],"children":[{"id":"10","type":"image","props":{"backgroundColor":"default","textAlignment":"left","name":"","url":"https://ralfvanveen.com/wp-content/uploads/2021/06/Placeholder-_-Glossary.svg","caption":"","showPreview":true},"children":[{"id":"11","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph","styles":{}}],"children":[]}]}]},{"id":"12","type":"table","props":{"textColor":"default"},"content":{"type":"tableContent","columnWidths":[null,null],"rows":[{"cells":[{"type":"tableCell","content":[{"type":"text","text":"Table Cell","styles":{}}],"props":{"colspan":1,"rowspan":1,"backgroundColor":"default","textColor":"default","textAlignment":"left"}},{"type":"tableCell","content":[{"type":"text","text":"Table Cell","styles":{}}],"props":{"colspan":1,"rowspan":1,"backgroundColor":"default","textColor":"default","textAlignment":"left"}}]},{"cells":[{"type":"tableCell","content":[{"type":"text","text":"Table Cell","styles":{}}],"props":{"colspan":1,"rowspan":1,"backgroundColor":"default","textColor":"default","textAlignment":"left"}},{"type":"tableCell","content":[{"type":"text","text":"Table Cell","styles":{}}],"props":{"colspan":1,"rowspan":1,"backgroundColor":"default","textColor":"default","textAlignment":"left"}}]}]},"children":[]}]} +{"_meta":{"startPos":13,"endPos":276},"blocks":[{"id":"2","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},{"id":"3","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},{"id":"4","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]},{"id":"5","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2,"isTogglable":false},"content":[{"type":"text","text":"Heading 2","styles":{}}],"children":[{"id":"6","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},{"id":"7","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},{"id":"8","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]}]},{"id":"9","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2,"isTogglable":false},"content":[{"type":"text","text":"Bold","styles":{"bold":true}},{"type":"text","text":"Italic","styles":{"italic":true}},{"type":"text","text":"Regular","styles":{}}],"children":[{"id":"10","type":"image","props":{"backgroundColor":"default","textAlignment":"left","name":"","url":"https://ralfvanveen.com/wp-content/uploads/2021/06/Placeholder-_-Glossary.svg","caption":"","showPreview":true},"children":[{"id":"11","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph","styles":{}}],"children":[]}]}]},{"id":"12","type":"table","props":{"textColor":"default"},"content":{"type":"tableContent","columnWidths":[null,null],"rows":[{"cells":[{"type":"tableCell","content":[{"type":"text","text":"Table Cell","styles":{}}],"props":{"colspan":1,"rowspan":1,"backgroundColor":"default","textColor":"default","textAlignment":"left"}},{"type":"tableCell","content":[{"type":"text","text":"Table Cell","styles":{}}],"props":{"colspan":1,"rowspan":1,"backgroundColor":"default","textColor":"default","textAlignment":"left"}}]},{"cells":[{"type":"tableCell","content":[{"type":"text","text":"Table Cell","styles":{}}],"props":{"colspan":1,"rowspan":1,"backgroundColor":"default","textColor":"default","textAlignment":"left"}},{"type":"tableCell","content":[{"type":"text","text":"Table Cell","styles":{}}],"props":{"colspan":1,"rowspan":1,"backgroundColor":"default","textColor":"default","textAlignment":"left"}}]}]},"children":[]}]} +{"_meta":{"startPos":17,"endPos":276},"blocks":[{"id":"2","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"ested Paragraph 1","styles":{}}],"children":[]},{"id":"3","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},{"id":"4","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]},{"id":"5","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2,"isTogglable":false},"content":[{"type":"text","text":"Heading 2","styles":{}}],"children":[{"id":"6","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},{"id":"7","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},{"id":"8","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]}]},{"id":"9","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2,"isTogglable":false},"content":[{"type":"text","text":"Bold","styles":{"bold":true}},{"type":"text","text":"Italic","styles":{"italic":true}},{"type":"text","text":"Regular","styles":{}}],"children":[{"id":"10","type":"image","props":{"backgroundColor":"default","textAlignment":"left","name":"","url":"https://ralfvanveen.com/wp-content/uploads/2021/06/Placeholder-_-Glossary.svg","caption":"","showPreview":true},"children":[{"id":"11","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph","styles":{}}],"children":[]}]}]},{"id":"12","type":"table","props":{"textColor":"default"},"content":{"type":"tableContent","columnWidths":[null,null],"rows":[{"cells":[{"type":"tableCell","content":[{"type":"text","text":"Table Cell","styles":{}}],"props":{"colspan":1,"rowspan":1,"backgroundColor":"default","textColor":"default","textAlignment":"left"}},{"type":"tableCell","content":[{"type":"text","text":"Table Cell","styles":{}}],"props":{"colspan":1,"rowspan":1,"backgroundColor":"default","textColor":"default","textAlignment":"left"}}]},{"cells":[{"type":"tableCell","content":[{"type":"text","text":"Table Cell","styles":{}}],"props":{"colspan":1,"rowspan":1,"backgroundColor":"default","textColor":"default","textAlignment":"left"}},{"type":"tableCell","content":[{"type":"text","text":"Table Cell","styles":{}}],"props":{"colspan":1,"rowspan":1,"backgroundColor":"default","textColor":"default","textAlignment":"left"}}]}]},"children":[]}],"blockCutAtStart":"2"} +{"_meta":{"startPos":18,"endPos":276},"blocks":[{"id":"2","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"sted Paragraph 1","styles":{}}],"children":[]},{"id":"3","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},{"id":"4","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]},{"id":"5","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2,"isTogglable":false},"content":[{"type":"text","text":"Heading 2","styles":{}}],"children":[{"id":"6","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},{"id":"7","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},{"id":"8","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]}]},{"id":"9","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2,"isTogglable":false},"content":[{"type":"text","text":"Bold","styles":{"bold":true}},{"type":"text","text":"Italic","styles":{"italic":true}},{"type":"text","text":"Regular","styles":{}}],"children":[{"id":"10","type":"image","props":{"backgroundColor":"default","textAlignment":"left","name":"","url":"https://ralfvanveen.com/wp-content/uploads/2021/06/Placeholder-_-Glossary.svg","caption":"","showPreview":true},"children":[{"id":"11","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph","styles":{}}],"children":[]}]}]},{"id":"12","type":"table","props":{"textColor":"default"},"content":{"type":"tableContent","columnWidths":[null,null],"rows":[{"cells":[{"type":"tableCell","content":[{"type":"text","text":"Table Cell","styles":{}}],"props":{"colspan":1,"rowspan":1,"backgroundColor":"default","textColor":"default","textAlignment":"left"}},{"type":"tableCell","content":[{"type":"text","text":"Table Cell","styles":{}}],"props":{"colspan":1,"rowspan":1,"backgroundColor":"default","textColor":"default","textAlignment":"left"}}]},{"cells":[{"type":"tableCell","content":[{"type":"text","text":"Table Cell","styles":{}}],"props":{"colspan":1,"rowspan":1,"backgroundColor":"default","textColor":"default","textAlignment":"left"}},{"type":"tableCell","content":[{"type":"text","text":"Table Cell","styles":{}}],"props":{"colspan":1,"rowspan":1,"backgroundColor":"default","textColor":"default","textAlignment":"left"}}]}]},"children":[]}],"blockCutAtStart":"2"} +{"_meta":{"startPos":19,"endPos":276},"blocks":[{"id":"2","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"ted Paragraph 1","styles":{}}],"children":[]},{"id":"3","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},{"id":"4","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]},{"id":"5","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2,"isTogglable":false},"content":[{"type":"text","text":"Heading 2","styles":{}}],"children":[{"id":"6","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},{"id":"7","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},{"id":"8","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]}]},{"id":"9","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2,"isTogglable":false},"content":[{"type":"text","text":"Bold","styles":{"bold":true}},{"type":"text","text":"Italic","styles":{"italic":true}},{"type":"text","text":"Regular","styles":{}}],"children":[{"id":"10","type":"image","props":{"backgroundColor":"default","textAlignment":"left","name":"","url":"https://ralfvanveen.com/wp-content/uploads/2021/06/Placeholder-_-Glossary.svg","caption":"","showPreview":true},"children":[{"id":"11","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph","styles":{}}],"children":[]}]}]},{"id":"12","type":"table","props":{"textColor":"default"},"content":{"type":"tableContent","columnWidths":[null,null],"rows":[{"cells":[{"type":"tableCell","content":[{"type":"text","text":"Table Cell","styles":{}}],"props":{"colspan":1,"rowspan":1,"backgroundColor":"default","textColor":"default","textAlignment":"left"}},{"type":"tableCell","content":[{"type":"text","text":"Table Cell","styles":{}}],"props":{"colspan":1,"rowspan":1,"backgroundColor":"default","textColor":"default","textAlignment":"left"}}]},{"cells":[{"type":"tableCell","content":[{"type":"text","text":"Table Cell","styles":{}}],"props":{"colspan":1,"rowspan":1,"backgroundColor":"default","textColor":"default","textAlignment":"left"}},{"type":"tableCell","content":[{"type":"text","text":"Table Cell","styles":{}}],"props":{"colspan":1,"rowspan":1,"backgroundColor":"default","textColor":"default","textAlignment":"left"}}]}]},"children":[]}],"blockCutAtStart":"2"} +{"_meta":{"startPos":20,"endPos":276},"blocks":[{"id":"2","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"ed Paragraph 1","styles":{}}],"children":[]},{"id":"3","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},{"id":"4","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]},{"id":"5","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2,"isTogglable":false},"content":[{"type":"text","text":"Heading 2","styles":{}}],"children":[{"id":"6","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},{"id":"7","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},{"id":"8","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]}]},{"id":"9","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2,"isTogglable":false},"content":[{"type":"text","text":"Bold","styles":{"bold":true}},{"type":"text","text":"Italic","styles":{"italic":true}},{"type":"text","text":"Regular","styles":{}}],"children":[{"id":"10","type":"image","props":{"backgroundColor":"default","textAlignment":"left","name":"","url":"https://ralfvanveen.com/wp-content/uploads/2021/06/Placeholder-_-Glossary.svg","caption":"","showPreview":true},"children":[{"id":"11","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph","styles":{}}],"children":[]}]}]},{"id":"12","type":"table","props":{"textColor":"default"},"content":{"type":"tableContent","columnWidths":[null,null],"rows":[{"cells":[{"type":"tableCell","content":[{"type":"text","text":"Table Cell","styles":{}}],"props":{"colspan":1,"rowspan":1,"backgroundColor":"default","textColor":"default","textAlignment":"left"}},{"type":"tableCell","content":[{"type":"text","text":"Table Cell","styles":{}}],"props":{"colspan":1,"rowspan":1,"backgroundColor":"default","textColor":"default","textAlignment":"left"}}]},{"cells":[{"type":"tableCell","content":[{"type":"text","text":"Table Cell","styles":{}}],"props":{"colspan":1,"rowspan":1,"backgroundColor":"default","textColor":"default","textAlignment":"left"}},{"type":"tableCell","content":[{"type":"text","text":"Table Cell","styles":{}}],"props":{"colspan":1,"rowspan":1,"backgroundColor":"default","textColor":"default","textAlignment":"left"}}]}]},"children":[]}],"blockCutAtStart":"2"} +{"_meta":{"startPos":21,"endPos":276},"blocks":[{"id":"2","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"d Paragraph 1","styles":{}}],"children":[]},{"id":"3","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},{"id":"4","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]},{"id":"5","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2,"isTogglable":false},"content":[{"type":"text","text":"Heading 2","styles":{}}],"children":[{"id":"6","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},{"id":"7","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},{"id":"8","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]}]},{"id":"9","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2,"isTogglable":false},"content":[{"type":"text","text":"Bold","styles":{"bold":true}},{"type":"text","text":"Italic","styles":{"italic":true}},{"type":"text","text":"Regular","styles":{}}],"children":[{"id":"10","type":"image","props":{"backgroundColor":"default","textAlignment":"left","name":"","url":"https://ralfvanveen.com/wp-content/uploads/2021/06/Placeholder-_-Glossary.svg","caption":"","showPreview":true},"children":[{"id":"11","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph","styles":{}}],"children":[]}]}]},{"id":"12","type":"table","props":{"textColor":"default"},"content":{"type":"tableContent","columnWidths":[null,null],"rows":[{"cells":[{"type":"tableCell","content":[{"type":"text","text":"Table Cell","styles":{}}],"props":{"colspan":1,"rowspan":1,"backgroundColor":"default","textColor":"default","textAlignment":"left"}},{"type":"tableCell","content":[{"type":"text","text":"Table Cell","styles":{}}],"props":{"colspan":1,"rowspan":1,"backgroundColor":"default","textColor":"default","textAlignment":"left"}}]},{"cells":[{"type":"tableCell","content":[{"type":"text","text":"Table Cell","styles":{}}],"props":{"colspan":1,"rowspan":1,"backgroundColor":"default","textColor":"default","textAlignment":"left"}},{"type":"tableCell","content":[{"type":"text","text":"Table Cell","styles":{}}],"props":{"colspan":1,"rowspan":1,"backgroundColor":"default","textColor":"default","textAlignment":"left"}}]}]},"children":[]}],"blockCutAtStart":"2"} +{"_meta":{"startPos":22,"endPos":276},"blocks":[{"id":"2","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":" Paragraph 1","styles":{}}],"children":[]},{"id":"3","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},{"id":"4","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]},{"id":"5","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2,"isTogglable":false},"content":[{"type":"text","text":"Heading 2","styles":{}}],"children":[{"id":"6","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},{"id":"7","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},{"id":"8","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]}]},{"id":"9","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2,"isTogglable":false},"content":[{"type":"text","text":"Bold","styles":{"bold":true}},{"type":"text","text":"Italic","styles":{"italic":true}},{"type":"text","text":"Regular","styles":{}}],"children":[{"id":"10","type":"image","props":{"backgroundColor":"default","textAlignment":"left","name":"","url":"https://ralfvanveen.com/wp-content/uploads/2021/06/Placeholder-_-Glossary.svg","caption":"","showPreview":true},"children":[{"id":"11","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph","styles":{}}],"children":[]}]}]},{"id":"12","type":"table","props":{"textColor":"default"},"content":{"type":"tableContent","columnWidths":[null,null],"rows":[{"cells":[{"type":"tableCell","content":[{"type":"text","text":"Table Cell","styles":{}}],"props":{"colspan":1,"rowspan":1,"backgroundColor":"default","textColor":"default","textAlignment":"left"}},{"type":"tableCell","content":[{"type":"text","text":"Table Cell","styles":{}}],"props":{"colspan":1,"rowspan":1,"backgroundColor":"default","textColor":"default","textAlignment":"left"}}]},{"cells":[{"type":"tableCell","content":[{"type":"text","text":"Table Cell","styles":{}}],"props":{"colspan":1,"rowspan":1,"backgroundColor":"default","textColor":"default","textAlignment":"left"}},{"type":"tableCell","content":[{"type":"text","text":"Table Cell","styles":{}}],"props":{"colspan":1,"rowspan":1,"backgroundColor":"default","textColor":"default","textAlignment":"left"}}]}]},"children":[]}],"blockCutAtStart":"2"} +{"_meta":{"startPos":23,"endPos":276},"blocks":[{"id":"2","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Paragraph 1","styles":{}}],"children":[]},{"id":"3","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},{"id":"4","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]},{"id":"5","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2,"isTogglable":false},"content":[{"type":"text","text":"Heading 2","styles":{}}],"children":[{"id":"6","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},{"id":"7","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},{"id":"8","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]}]},{"id":"9","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2,"isTogglable":false},"content":[{"type":"text","text":"Bold","styles":{"bold":true}},{"type":"text","text":"Italic","styles":{"italic":true}},{"type":"text","text":"Regular","styles":{}}],"children":[{"id":"10","type":"image","props":{"backgroundColor":"default","textAlignment":"left","name":"","url":"https://ralfvanveen.com/wp-content/uploads/2021/06/Placeholder-_-Glossary.svg","caption":"","showPreview":true},"children":[{"id":"11","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph","styles":{}}],"children":[]}]}]},{"id":"12","type":"table","props":{"textColor":"default"},"content":{"type":"tableContent","columnWidths":[null,null],"rows":[{"cells":[{"type":"tableCell","content":[{"type":"text","text":"Table Cell","styles":{}}],"props":{"colspan":1,"rowspan":1,"backgroundColor":"default","textColor":"default","textAlignment":"left"}},{"type":"tableCell","content":[{"type":"text","text":"Table Cell","styles":{}}],"props":{"colspan":1,"rowspan":1,"backgroundColor":"default","textColor":"default","textAlignment":"left"}}]},{"cells":[{"type":"tableCell","content":[{"type":"text","text":"Table Cell","styles":{}}],"props":{"colspan":1,"rowspan":1,"backgroundColor":"default","textColor":"default","textAlignment":"left"}},{"type":"tableCell","content":[{"type":"text","text":"Table Cell","styles":{}}],"props":{"colspan":1,"rowspan":1,"backgroundColor":"default","textColor":"default","textAlignment":"left"}}]}]},"children":[]}],"blockCutAtStart":"2"} +{"_meta":{"startPos":24,"endPos":276},"blocks":[{"id":"2","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"aragraph 1","styles":{}}],"children":[]},{"id":"3","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},{"id":"4","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]},{"id":"5","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2,"isTogglable":false},"content":[{"type":"text","text":"Heading 2","styles":{}}],"children":[{"id":"6","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},{"id":"7","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},{"id":"8","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]}]},{"id":"9","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2,"isTogglable":false},"content":[{"type":"text","text":"Bold","styles":{"bold":true}},{"type":"text","text":"Italic","styles":{"italic":true}},{"type":"text","text":"Regular","styles":{}}],"children":[{"id":"10","type":"image","props":{"backgroundColor":"default","textAlignment":"left","name":"","url":"https://ralfvanveen.com/wp-content/uploads/2021/06/Placeholder-_-Glossary.svg","caption":"","showPreview":true},"children":[{"id":"11","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph","styles":{}}],"children":[]}]}]},{"id":"12","type":"table","props":{"textColor":"default"},"content":{"type":"tableContent","columnWidths":[null,null],"rows":[{"cells":[{"type":"tableCell","content":[{"type":"text","text":"Table Cell","styles":{}}],"props":{"colspan":1,"rowspan":1,"backgroundColor":"default","textColor":"default","textAlignment":"left"}},{"type":"tableCell","content":[{"type":"text","text":"Table Cell","styles":{}}],"props":{"colspan":1,"rowspan":1,"backgroundColor":"default","textColor":"default","textAlignment":"left"}}]},{"cells":[{"type":"tableCell","content":[{"type":"text","text":"Table Cell","styles":{}}],"props":{"colspan":1,"rowspan":1,"backgroundColor":"default","textColor":"default","textAlignment":"left"}},{"type":"tableCell","content":[{"type":"text","text":"Table Cell","styles":{}}],"props":{"colspan":1,"rowspan":1,"backgroundColor":"default","textColor":"default","textAlignment":"left"}}]}]},"children":[]}],"blockCutAtStart":"2"} +{"_meta":{"startPos":25,"endPos":276},"blocks":[{"id":"2","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"ragraph 1","styles":{}}],"children":[]},{"id":"3","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},{"id":"4","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]},{"id":"5","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2,"isTogglable":false},"content":[{"type":"text","text":"Heading 2","styles":{}}],"children":[{"id":"6","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},{"id":"7","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},{"id":"8","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]}]},{"id":"9","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2,"isTogglable":false},"content":[{"type":"text","text":"Bold","styles":{"bold":true}},{"type":"text","text":"Italic","styles":{"italic":true}},{"type":"text","text":"Regular","styles":{}}],"children":[{"id":"10","type":"image","props":{"backgroundColor":"default","textAlignment":"left","name":"","url":"https://ralfvanveen.com/wp-content/uploads/2021/06/Placeholder-_-Glossary.svg","caption":"","showPreview":true},"children":[{"id":"11","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph","styles":{}}],"children":[]}]}]},{"id":"12","type":"table","props":{"textColor":"default"},"content":{"type":"tableContent","columnWidths":[null,null],"rows":[{"cells":[{"type":"tableCell","content":[{"type":"text","text":"Table Cell","styles":{}}],"props":{"colspan":1,"rowspan":1,"backgroundColor":"default","textColor":"default","textAlignment":"left"}},{"type":"tableCell","content":[{"type":"text","text":"Table Cell","styles":{}}],"props":{"colspan":1,"rowspan":1,"backgroundColor":"default","textColor":"default","textAlignment":"left"}}]},{"cells":[{"type":"tableCell","content":[{"type":"text","text":"Table Cell","styles":{}}],"props":{"colspan":1,"rowspan":1,"backgroundColor":"default","textColor":"default","textAlignment":"left"}},{"type":"tableCell","content":[{"type":"text","text":"Table Cell","styles":{}}],"props":{"colspan":1,"rowspan":1,"backgroundColor":"default","textColor":"default","textAlignment":"left"}}]}]},"children":[]}],"blockCutAtStart":"2"} +{"_meta":{"startPos":26,"endPos":276},"blocks":[{"id":"2","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"agraph 1","styles":{}}],"children":[]},{"id":"3","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},{"id":"4","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]},{"id":"5","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2,"isTogglable":false},"content":[{"type":"text","text":"Heading 2","styles":{}}],"children":[{"id":"6","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},{"id":"7","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},{"id":"8","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]}]},{"id":"9","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2,"isTogglable":false},"content":[{"type":"text","text":"Bold","styles":{"bold":true}},{"type":"text","text":"Italic","styles":{"italic":true}},{"type":"text","text":"Regular","styles":{}}],"children":[{"id":"10","type":"image","props":{"backgroundColor":"default","textAlignment":"left","name":"","url":"https://ralfvanveen.com/wp-content/uploads/2021/06/Placeholder-_-Glossary.svg","caption":"","showPreview":true},"children":[{"id":"11","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph","styles":{}}],"children":[]}]}]},{"id":"12","type":"table","props":{"textColor":"default"},"content":{"type":"tableContent","columnWidths":[null,null],"rows":[{"cells":[{"type":"tableCell","content":[{"type":"text","text":"Table Cell","styles":{}}],"props":{"colspan":1,"rowspan":1,"backgroundColor":"default","textColor":"default","textAlignment":"left"}},{"type":"tableCell","content":[{"type":"text","text":"Table Cell","styles":{}}],"props":{"colspan":1,"rowspan":1,"backgroundColor":"default","textColor":"default","textAlignment":"left"}}]},{"cells":[{"type":"tableCell","content":[{"type":"text","text":"Table Cell","styles":{}}],"props":{"colspan":1,"rowspan":1,"backgroundColor":"default","textColor":"default","textAlignment":"left"}},{"type":"tableCell","content":[{"type":"text","text":"Table Cell","styles":{}}],"props":{"colspan":1,"rowspan":1,"backgroundColor":"default","textColor":"default","textAlignment":"left"}}]}]},"children":[]}],"blockCutAtStart":"2"} +{"_meta":{"startPos":27,"endPos":276},"blocks":[{"id":"2","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"graph 1","styles":{}}],"children":[]},{"id":"3","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},{"id":"4","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]},{"id":"5","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2,"isTogglable":false},"content":[{"type":"text","text":"Heading 2","styles":{}}],"children":[{"id":"6","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},{"id":"7","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},{"id":"8","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]}]},{"id":"9","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2,"isTogglable":false},"content":[{"type":"text","text":"Bold","styles":{"bold":true}},{"type":"text","text":"Italic","styles":{"italic":true}},{"type":"text","text":"Regular","styles":{}}],"children":[{"id":"10","type":"image","props":{"backgroundColor":"default","textAlignment":"left","name":"","url":"https://ralfvanveen.com/wp-content/uploads/2021/06/Placeholder-_-Glossary.svg","caption":"","showPreview":true},"children":[{"id":"11","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph","styles":{}}],"children":[]}]}]},{"id":"12","type":"table","props":{"textColor":"default"},"content":{"type":"tableContent","columnWidths":[null,null],"rows":[{"cells":[{"type":"tableCell","content":[{"type":"text","text":"Table Cell","styles":{}}],"props":{"colspan":1,"rowspan":1,"backgroundColor":"default","textColor":"default","textAlignment":"left"}},{"type":"tableCell","content":[{"type":"text","text":"Table Cell","styles":{}}],"props":{"colspan":1,"rowspan":1,"backgroundColor":"default","textColor":"default","textAlignment":"left"}}]},{"cells":[{"type":"tableCell","content":[{"type":"text","text":"Table Cell","styles":{}}],"props":{"colspan":1,"rowspan":1,"backgroundColor":"default","textColor":"default","textAlignment":"left"}},{"type":"tableCell","content":[{"type":"text","text":"Table Cell","styles":{}}],"props":{"colspan":1,"rowspan":1,"backgroundColor":"default","textColor":"default","textAlignment":"left"}}]}]},"children":[]}],"blockCutAtStart":"2"} +{"_meta":{"startPos":28,"endPos":276},"blocks":[{"id":"2","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"raph 1","styles":{}}],"children":[]},{"id":"3","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},{"id":"4","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]},{"id":"5","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2,"isTogglable":false},"content":[{"type":"text","text":"Heading 2","styles":{}}],"children":[{"id":"6","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},{"id":"7","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},{"id":"8","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]}]},{"id":"9","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2,"isTogglable":false},"content":[{"type":"text","text":"Bold","styles":{"bold":true}},{"type":"text","text":"Italic","styles":{"italic":true}},{"type":"text","text":"Regular","styles":{}}],"children":[{"id":"10","type":"image","props":{"backgroundColor":"default","textAlignment":"left","name":"","url":"https://ralfvanveen.com/wp-content/uploads/2021/06/Placeholder-_-Glossary.svg","caption":"","showPreview":true},"children":[{"id":"11","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph","styles":{}}],"children":[]}]}]},{"id":"12","type":"table","props":{"textColor":"default"},"content":{"type":"tableContent","columnWidths":[null,null],"rows":[{"cells":[{"type":"tableCell","content":[{"type":"text","text":"Table Cell","styles":{}}],"props":{"colspan":1,"rowspan":1,"backgroundColor":"default","textColor":"default","textAlignment":"left"}},{"type":"tableCell","content":[{"type":"text","text":"Table Cell","styles":{}}],"props":{"colspan":1,"rowspan":1,"backgroundColor":"default","textColor":"default","textAlignment":"left"}}]},{"cells":[{"type":"tableCell","content":[{"type":"text","text":"Table Cell","styles":{}}],"props":{"colspan":1,"rowspan":1,"backgroundColor":"default","textColor":"default","textAlignment":"left"}},{"type":"tableCell","content":[{"type":"text","text":"Table Cell","styles":{}}],"props":{"colspan":1,"rowspan":1,"backgroundColor":"default","textColor":"default","textAlignment":"left"}}]}]},"children":[]}],"blockCutAtStart":"2"} +{"_meta":{"startPos":29,"endPos":276},"blocks":[{"id":"2","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"aph 1","styles":{}}],"children":[]},{"id":"3","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},{"id":"4","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]},{"id":"5","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2,"isTogglable":false},"content":[{"type":"text","text":"Heading 2","styles":{}}],"children":[{"id":"6","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},{"id":"7","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},{"id":"8","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]}]},{"id":"9","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2,"isTogglable":false},"content":[{"type":"text","text":"Bold","styles":{"bold":true}},{"type":"text","text":"Italic","styles":{"italic":true}},{"type":"text","text":"Regular","styles":{}}],"children":[{"id":"10","type":"image","props":{"backgroundColor":"default","textAlignment":"left","name":"","url":"https://ralfvanveen.com/wp-content/uploads/2021/06/Placeholder-_-Glossary.svg","caption":"","showPreview":true},"children":[{"id":"11","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph","styles":{}}],"children":[]}]}]},{"id":"12","type":"table","props":{"textColor":"default"},"content":{"type":"tableContent","columnWidths":[null,null],"rows":[{"cells":[{"type":"tableCell","content":[{"type":"text","text":"Table Cell","styles":{}}],"props":{"colspan":1,"rowspan":1,"backgroundColor":"default","textColor":"default","textAlignment":"left"}},{"type":"tableCell","content":[{"type":"text","text":"Table Cell","styles":{}}],"props":{"colspan":1,"rowspan":1,"backgroundColor":"default","textColor":"default","textAlignment":"left"}}]},{"cells":[{"type":"tableCell","content":[{"type":"text","text":"Table Cell","styles":{}}],"props":{"colspan":1,"rowspan":1,"backgroundColor":"default","textColor":"default","textAlignment":"left"}},{"type":"tableCell","content":[{"type":"text","text":"Table Cell","styles":{}}],"props":{"colspan":1,"rowspan":1,"backgroundColor":"default","textColor":"default","textAlignment":"left"}}]}]},"children":[]}],"blockCutAtStart":"2"} +{"_meta":{"startPos":30,"endPos":276},"blocks":[{"id":"2","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"ph 1","styles":{}}],"children":[]},{"id":"3","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},{"id":"4","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]},{"id":"5","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2,"isTogglable":false},"content":[{"type":"text","text":"Heading 2","styles":{}}],"children":[{"id":"6","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},{"id":"7","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},{"id":"8","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]}]},{"id":"9","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2,"isTogglable":false},"content":[{"type":"text","text":"Bold","styles":{"bold":true}},{"type":"text","text":"Italic","styles":{"italic":true}},{"type":"text","text":"Regular","styles":{}}],"children":[{"id":"10","type":"image","props":{"backgroundColor":"default","textAlignment":"left","name":"","url":"https://ralfvanveen.com/wp-content/uploads/2021/06/Placeholder-_-Glossary.svg","caption":"","showPreview":true},"children":[{"id":"11","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph","styles":{}}],"children":[]}]}]},{"id":"12","type":"table","props":{"textColor":"default"},"content":{"type":"tableContent","columnWidths":[null,null],"rows":[{"cells":[{"type":"tableCell","content":[{"type":"text","text":"Table Cell","styles":{}}],"props":{"colspan":1,"rowspan":1,"backgroundColor":"default","textColor":"default","textAlignment":"left"}},{"type":"tableCell","content":[{"type":"text","text":"Table Cell","styles":{}}],"props":{"colspan":1,"rowspan":1,"backgroundColor":"default","textColor":"default","textAlignment":"left"}}]},{"cells":[{"type":"tableCell","content":[{"type":"text","text":"Table Cell","styles":{}}],"props":{"colspan":1,"rowspan":1,"backgroundColor":"default","textColor":"default","textAlignment":"left"}},{"type":"tableCell","content":[{"type":"text","text":"Table Cell","styles":{}}],"props":{"colspan":1,"rowspan":1,"backgroundColor":"default","textColor":"default","textAlignment":"left"}}]}]},"children":[]}],"blockCutAtStart":"2"} +{"_meta":{"startPos":31,"endPos":276},"blocks":[{"id":"2","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"h 1","styles":{}}],"children":[]},{"id":"3","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},{"id":"4","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]},{"id":"5","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2,"isTogglable":false},"content":[{"type":"text","text":"Heading 2","styles":{}}],"children":[{"id":"6","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},{"id":"7","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},{"id":"8","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]}]},{"id":"9","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2,"isTogglable":false},"content":[{"type":"text","text":"Bold","styles":{"bold":true}},{"type":"text","text":"Italic","styles":{"italic":true}},{"type":"text","text":"Regular","styles":{}}],"children":[{"id":"10","type":"image","props":{"backgroundColor":"default","textAlignment":"left","name":"","url":"https://ralfvanveen.com/wp-content/uploads/2021/06/Placeholder-_-Glossary.svg","caption":"","showPreview":true},"children":[{"id":"11","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph","styles":{}}],"children":[]}]}]},{"id":"12","type":"table","props":{"textColor":"default"},"content":{"type":"tableContent","columnWidths":[null,null],"rows":[{"cells":[{"type":"tableCell","content":[{"type":"text","text":"Table Cell","styles":{}}],"props":{"colspan":1,"rowspan":1,"backgroundColor":"default","textColor":"default","textAlignment":"left"}},{"type":"tableCell","content":[{"type":"text","text":"Table Cell","styles":{}}],"props":{"colspan":1,"rowspan":1,"backgroundColor":"default","textColor":"default","textAlignment":"left"}}]},{"cells":[{"type":"tableCell","content":[{"type":"text","text":"Table Cell","styles":{}}],"props":{"colspan":1,"rowspan":1,"backgroundColor":"default","textColor":"default","textAlignment":"left"}},{"type":"tableCell","content":[{"type":"text","text":"Table Cell","styles":{}}],"props":{"colspan":1,"rowspan":1,"backgroundColor":"default","textColor":"default","textAlignment":"left"}}]}]},"children":[]}],"blockCutAtStart":"2"} +{"_meta":{"startPos":32,"endPos":276},"blocks":[{"id":"2","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":" 1","styles":{}}],"children":[]},{"id":"3","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},{"id":"4","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]},{"id":"5","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2,"isTogglable":false},"content":[{"type":"text","text":"Heading 2","styles":{}}],"children":[{"id":"6","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},{"id":"7","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},{"id":"8","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]}]},{"id":"9","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2,"isTogglable":false},"content":[{"type":"text","text":"Bold","styles":{"bold":true}},{"type":"text","text":"Italic","styles":{"italic":true}},{"type":"text","text":"Regular","styles":{}}],"children":[{"id":"10","type":"image","props":{"backgroundColor":"default","textAlignment":"left","name":"","url":"https://ralfvanveen.com/wp-content/uploads/2021/06/Placeholder-_-Glossary.svg","caption":"","showPreview":true},"children":[{"id":"11","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph","styles":{}}],"children":[]}]}]},{"id":"12","type":"table","props":{"textColor":"default"},"content":{"type":"tableContent","columnWidths":[null,null],"rows":[{"cells":[{"type":"tableCell","content":[{"type":"text","text":"Table Cell","styles":{}}],"props":{"colspan":1,"rowspan":1,"backgroundColor":"default","textColor":"default","textAlignment":"left"}},{"type":"tableCell","content":[{"type":"text","text":"Table Cell","styles":{}}],"props":{"colspan":1,"rowspan":1,"backgroundColor":"default","textColor":"default","textAlignment":"left"}}]},{"cells":[{"type":"tableCell","content":[{"type":"text","text":"Table Cell","styles":{}}],"props":{"colspan":1,"rowspan":1,"backgroundColor":"default","textColor":"default","textAlignment":"left"}},{"type":"tableCell","content":[{"type":"text","text":"Table Cell","styles":{}}],"props":{"colspan":1,"rowspan":1,"backgroundColor":"default","textColor":"default","textAlignment":"left"}}]}]},"children":[]}],"blockCutAtStart":"2"} +{"_meta":{"startPos":33,"endPos":276},"blocks":[{"id":"2","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"1","styles":{}}],"children":[]},{"id":"3","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},{"id":"4","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]},{"id":"5","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2,"isTogglable":false},"content":[{"type":"text","text":"Heading 2","styles":{}}],"children":[{"id":"6","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},{"id":"7","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},{"id":"8","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]}]},{"id":"9","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2,"isTogglable":false},"content":[{"type":"text","text":"Bold","styles":{"bold":true}},{"type":"text","text":"Italic","styles":{"italic":true}},{"type":"text","text":"Regular","styles":{}}],"children":[{"id":"10","type":"image","props":{"backgroundColor":"default","textAlignment":"left","name":"","url":"https://ralfvanveen.com/wp-content/uploads/2021/06/Placeholder-_-Glossary.svg","caption":"","showPreview":true},"children":[{"id":"11","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph","styles":{}}],"children":[]}]}]},{"id":"12","type":"table","props":{"textColor":"default"},"content":{"type":"tableContent","columnWidths":[null,null],"rows":[{"cells":[{"type":"tableCell","content":[{"type":"text","text":"Table Cell","styles":{}}],"props":{"colspan":1,"rowspan":1,"backgroundColor":"default","textColor":"default","textAlignment":"left"}},{"type":"tableCell","content":[{"type":"text","text":"Table Cell","styles":{}}],"props":{"colspan":1,"rowspan":1,"backgroundColor":"default","textColor":"default","textAlignment":"left"}}]},{"cells":[{"type":"tableCell","content":[{"type":"text","text":"Table Cell","styles":{}}],"props":{"colspan":1,"rowspan":1,"backgroundColor":"default","textColor":"default","textAlignment":"left"}},{"type":"tableCell","content":[{"type":"text","text":"Table Cell","styles":{}}],"props":{"colspan":1,"rowspan":1,"backgroundColor":"default","textColor":"default","textAlignment":"left"}}]}]},"children":[]}],"blockCutAtStart":"2"} +{"_meta":{"startPos":36,"endPos":276},"blocks":[{"id":"3","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},{"id":"4","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]},{"id":"5","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2,"isTogglable":false},"content":[{"type":"text","text":"Heading 2","styles":{}}],"children":[{"id":"6","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},{"id":"7","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},{"id":"8","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]}]},{"id":"9","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2,"isTogglable":false},"content":[{"type":"text","text":"Bold","styles":{"bold":true}},{"type":"text","text":"Italic","styles":{"italic":true}},{"type":"text","text":"Regular","styles":{}}],"children":[{"id":"10","type":"image","props":{"backgroundColor":"default","textAlignment":"left","name":"","url":"https://ralfvanveen.com/wp-content/uploads/2021/06/Placeholder-_-Glossary.svg","caption":"","showPreview":true},"children":[{"id":"11","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph","styles":{}}],"children":[]}]}]},{"id":"12","type":"table","props":{"textColor":"default"},"content":{"type":"tableContent","columnWidths":[null,null],"rows":[{"cells":[{"type":"tableCell","content":[{"type":"text","text":"Table Cell","styles":{}}],"props":{"colspan":1,"rowspan":1,"backgroundColor":"default","textColor":"default","textAlignment":"left"}},{"type":"tableCell","content":[{"type":"text","text":"Table Cell","styles":{}}],"props":{"colspan":1,"rowspan":1,"backgroundColor":"default","textColor":"default","textAlignment":"left"}}]},{"cells":[{"type":"tableCell","content":[{"type":"text","text":"Table Cell","styles":{}}],"props":{"colspan":1,"rowspan":1,"backgroundColor":"default","textColor":"default","textAlignment":"left"}},{"type":"tableCell","content":[{"type":"text","text":"Table Cell","styles":{}}],"props":{"colspan":1,"rowspan":1,"backgroundColor":"default","textColor":"default","textAlignment":"left"}}]}]},"children":[]}]} +{"_meta":{"startPos":36,"endPos":276},"blocks":[{"id":"3","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},{"id":"4","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]},{"id":"5","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2,"isTogglable":false},"content":[{"type":"text","text":"Heading 2","styles":{}}],"children":[{"id":"6","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},{"id":"7","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},{"id":"8","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]}]},{"id":"9","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2,"isTogglable":false},"content":[{"type":"text","text":"Bold","styles":{"bold":true}},{"type":"text","text":"Italic","styles":{"italic":true}},{"type":"text","text":"Regular","styles":{}}],"children":[{"id":"10","type":"image","props":{"backgroundColor":"default","textAlignment":"left","name":"","url":"https://ralfvanveen.com/wp-content/uploads/2021/06/Placeholder-_-Glossary.svg","caption":"","showPreview":true},"children":[{"id":"11","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph","styles":{}}],"children":[]}]}]},{"id":"12","type":"table","props":{"textColor":"default"},"content":{"type":"tableContent","columnWidths":[null,null],"rows":[{"cells":[{"type":"tableCell","content":[{"type":"text","text":"Table Cell","styles":{}}],"props":{"colspan":1,"rowspan":1,"backgroundColor":"default","textColor":"default","textAlignment":"left"}},{"type":"tableCell","content":[{"type":"text","text":"Table Cell","styles":{}}],"props":{"colspan":1,"rowspan":1,"backgroundColor":"default","textColor":"default","textAlignment":"left"}}]},{"cells":[{"type":"tableCell","content":[{"type":"text","text":"Table Cell","styles":{}}],"props":{"colspan":1,"rowspan":1,"backgroundColor":"default","textColor":"default","textAlignment":"left"}},{"type":"tableCell","content":[{"type":"text","text":"Table Cell","styles":{}}],"props":{"colspan":1,"rowspan":1,"backgroundColor":"default","textColor":"default","textAlignment":"left"}}]}]},"children":[]}]} +{"_meta":{"startPos":36,"endPos":276},"blocks":[{"id":"3","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},{"id":"4","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]},{"id":"5","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2,"isTogglable":false},"content":[{"type":"text","text":"Heading 2","styles":{}}],"children":[{"id":"6","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},{"id":"7","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},{"id":"8","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]}]},{"id":"9","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2,"isTogglable":false},"content":[{"type":"text","text":"Bold","styles":{"bold":true}},{"type":"text","text":"Italic","styles":{"italic":true}},{"type":"text","text":"Regular","styles":{}}],"children":[{"id":"10","type":"image","props":{"backgroundColor":"default","textAlignment":"left","name":"","url":"https://ralfvanveen.com/wp-content/uploads/2021/06/Placeholder-_-Glossary.svg","caption":"","showPreview":true},"children":[{"id":"11","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph","styles":{}}],"children":[]}]}]},{"id":"12","type":"table","props":{"textColor":"default"},"content":{"type":"tableContent","columnWidths":[null,null],"rows":[{"cells":[{"type":"tableCell","content":[{"type":"text","text":"Table Cell","styles":{}}],"props":{"colspan":1,"rowspan":1,"backgroundColor":"default","textColor":"default","textAlignment":"left"}},{"type":"tableCell","content":[{"type":"text","text":"Table Cell","styles":{}}],"props":{"colspan":1,"rowspan":1,"backgroundColor":"default","textColor":"default","textAlignment":"left"}}]},{"cells":[{"type":"tableCell","content":[{"type":"text","text":"Table Cell","styles":{}}],"props":{"colspan":1,"rowspan":1,"backgroundColor":"default","textColor":"default","textAlignment":"left"}},{"type":"tableCell","content":[{"type":"text","text":"Table Cell","styles":{}}],"props":{"colspan":1,"rowspan":1,"backgroundColor":"default","textColor":"default","textAlignment":"left"}}]}]},"children":[]}]} +{"_meta":{"startPos":36,"endPos":276},"blocks":[{"id":"3","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},{"id":"4","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]},{"id":"5","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2,"isTogglable":false},"content":[{"type":"text","text":"Heading 2","styles":{}}],"children":[{"id":"6","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},{"id":"7","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},{"id":"8","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]}]},{"id":"9","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2,"isTogglable":false},"content":[{"type":"text","text":"Bold","styles":{"bold":true}},{"type":"text","text":"Italic","styles":{"italic":true}},{"type":"text","text":"Regular","styles":{}}],"children":[{"id":"10","type":"image","props":{"backgroundColor":"default","textAlignment":"left","name":"","url":"https://ralfvanveen.com/wp-content/uploads/2021/06/Placeholder-_-Glossary.svg","caption":"","showPreview":true},"children":[{"id":"11","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph","styles":{}}],"children":[]}]}]},{"id":"12","type":"table","props":{"textColor":"default"},"content":{"type":"tableContent","columnWidths":[null,null],"rows":[{"cells":[{"type":"tableCell","content":[{"type":"text","text":"Table Cell","styles":{}}],"props":{"colspan":1,"rowspan":1,"backgroundColor":"default","textColor":"default","textAlignment":"left"}},{"type":"tableCell","content":[{"type":"text","text":"Table Cell","styles":{}}],"props":{"colspan":1,"rowspan":1,"backgroundColor":"default","textColor":"default","textAlignment":"left"}}]},{"cells":[{"type":"tableCell","content":[{"type":"text","text":"Table Cell","styles":{}}],"props":{"colspan":1,"rowspan":1,"backgroundColor":"default","textColor":"default","textAlignment":"left"}},{"type":"tableCell","content":[{"type":"text","text":"Table Cell","styles":{}}],"props":{"colspan":1,"rowspan":1,"backgroundColor":"default","textColor":"default","textAlignment":"left"}}]}]},"children":[]}]} +{"_meta":{"startPos":36,"endPos":276},"blocks":[{"id":"3","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},{"id":"4","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]},{"id":"5","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2,"isTogglable":false},"content":[{"type":"text","text":"Heading 2","styles":{}}],"children":[{"id":"6","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},{"id":"7","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},{"id":"8","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]}]},{"id":"9","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2,"isTogglable":false},"content":[{"type":"text","text":"Bold","styles":{"bold":true}},{"type":"text","text":"Italic","styles":{"italic":true}},{"type":"text","text":"Regular","styles":{}}],"children":[{"id":"10","type":"image","props":{"backgroundColor":"default","textAlignment":"left","name":"","url":"https://ralfvanveen.com/wp-content/uploads/2021/06/Placeholder-_-Glossary.svg","caption":"","showPreview":true},"children":[{"id":"11","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph","styles":{}}],"children":[]}]}]},{"id":"12","type":"table","props":{"textColor":"default"},"content":{"type":"tableContent","columnWidths":[null,null],"rows":[{"cells":[{"type":"tableCell","content":[{"type":"text","text":"Table Cell","styles":{}}],"props":{"colspan":1,"rowspan":1,"backgroundColor":"default","textColor":"default","textAlignment":"left"}},{"type":"tableCell","content":[{"type":"text","text":"Table Cell","styles":{}}],"props":{"colspan":1,"rowspan":1,"backgroundColor":"default","textColor":"default","textAlignment":"left"}}]},{"cells":[{"type":"tableCell","content":[{"type":"text","text":"Table Cell","styles":{}}],"props":{"colspan":1,"rowspan":1,"backgroundColor":"default","textColor":"default","textAlignment":"left"}},{"type":"tableCell","content":[{"type":"text","text":"Table Cell","styles":{}}],"props":{"colspan":1,"rowspan":1,"backgroundColor":"default","textColor":"default","textAlignment":"left"}}]}]},"children":[]}]} +{"_meta":{"startPos":39,"endPos":276},"blocks":[{"id":"3","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"ested Paragraph 2","styles":{}}],"children":[]},{"id":"4","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]},{"id":"5","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2,"isTogglable":false},"content":[{"type":"text","text":"Heading 2","styles":{}}],"children":[{"id":"6","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},{"id":"7","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},{"id":"8","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]}]},{"id":"9","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2,"isTogglable":false},"content":[{"type":"text","text":"Bold","styles":{"bold":true}},{"type":"text","text":"Italic","styles":{"italic":true}},{"type":"text","text":"Regular","styles":{}}],"children":[{"id":"10","type":"image","props":{"backgroundColor":"default","textAlignment":"left","name":"","url":"https://ralfvanveen.com/wp-content/uploads/2021/06/Placeholder-_-Glossary.svg","caption":"","showPreview":true},"children":[{"id":"11","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph","styles":{}}],"children":[]}]}]},{"id":"12","type":"table","props":{"textColor":"default"},"content":{"type":"tableContent","columnWidths":[null,null],"rows":[{"cells":[{"type":"tableCell","content":[{"type":"text","text":"Table Cell","styles":{}}],"props":{"colspan":1,"rowspan":1,"backgroundColor":"default","textColor":"default","textAlignment":"left"}},{"type":"tableCell","content":[{"type":"text","text":"Table Cell","styles":{}}],"props":{"colspan":1,"rowspan":1,"backgroundColor":"default","textColor":"default","textAlignment":"left"}}]},{"cells":[{"type":"tableCell","content":[{"type":"text","text":"Table Cell","styles":{}}],"props":{"colspan":1,"rowspan":1,"backgroundColor":"default","textColor":"default","textAlignment":"left"}},{"type":"tableCell","content":[{"type":"text","text":"Table Cell","styles":{}}],"props":{"colspan":1,"rowspan":1,"backgroundColor":"default","textColor":"default","textAlignment":"left"}}]}]},"children":[]}],"blockCutAtStart":"3"} +{"_meta":{"startPos":40,"endPos":276},"blocks":[{"id":"3","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"sted Paragraph 2","styles":{}}],"children":[]},{"id":"4","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]},{"id":"5","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2,"isTogglable":false},"content":[{"type":"text","text":"Heading 2","styles":{}}],"children":[{"id":"6","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},{"id":"7","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},{"id":"8","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]}]},{"id":"9","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2,"isTogglable":false},"content":[{"type":"text","text":"Bold","styles":{"bold":true}},{"type":"text","text":"Italic","styles":{"italic":true}},{"type":"text","text":"Regular","styles":{}}],"children":[{"id":"10","type":"image","props":{"backgroundColor":"default","textAlignment":"left","name":"","url":"https://ralfvanveen.com/wp-content/uploads/2021/06/Placeholder-_-Glossary.svg","caption":"","showPreview":true},"children":[{"id":"11","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph","styles":{}}],"children":[]}]}]},{"id":"12","type":"table","props":{"textColor":"default"},"content":{"type":"tableContent","columnWidths":[null,null],"rows":[{"cells":[{"type":"tableCell","content":[{"type":"text","text":"Table Cell","styles":{}}],"props":{"colspan":1,"rowspan":1,"backgroundColor":"default","textColor":"default","textAlignment":"left"}},{"type":"tableCell","content":[{"type":"text","text":"Table Cell","styles":{}}],"props":{"colspan":1,"rowspan":1,"backgroundColor":"default","textColor":"default","textAlignment":"left"}}]},{"cells":[{"type":"tableCell","content":[{"type":"text","text":"Table Cell","styles":{}}],"props":{"colspan":1,"rowspan":1,"backgroundColor":"default","textColor":"default","textAlignment":"left"}},{"type":"tableCell","content":[{"type":"text","text":"Table Cell","styles":{}}],"props":{"colspan":1,"rowspan":1,"backgroundColor":"default","textColor":"default","textAlignment":"left"}}]}]},"children":[]}],"blockCutAtStart":"3"} +{"_meta":{"startPos":41,"endPos":276},"blocks":[{"id":"3","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"ted Paragraph 2","styles":{}}],"children":[]},{"id":"4","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]},{"id":"5","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2,"isTogglable":false},"content":[{"type":"text","text":"Heading 2","styles":{}}],"children":[{"id":"6","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},{"id":"7","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},{"id":"8","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]}]},{"id":"9","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2,"isTogglable":false},"content":[{"type":"text","text":"Bold","styles":{"bold":true}},{"type":"text","text":"Italic","styles":{"italic":true}},{"type":"text","text":"Regular","styles":{}}],"children":[{"id":"10","type":"image","props":{"backgroundColor":"default","textAlignment":"left","name":"","url":"https://ralfvanveen.com/wp-content/uploads/2021/06/Placeholder-_-Glossary.svg","caption":"","showPreview":true},"children":[{"id":"11","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph","styles":{}}],"children":[]}]}]},{"id":"12","type":"table","props":{"textColor":"default"},"content":{"type":"tableContent","columnWidths":[null,null],"rows":[{"cells":[{"type":"tableCell","content":[{"type":"text","text":"Table Cell","styles":{}}],"props":{"colspan":1,"rowspan":1,"backgroundColor":"default","textColor":"default","textAlignment":"left"}},{"type":"tableCell","content":[{"type":"text","text":"Table Cell","styles":{}}],"props":{"colspan":1,"rowspan":1,"backgroundColor":"default","textColor":"default","textAlignment":"left"}}]},{"cells":[{"type":"tableCell","content":[{"type":"text","text":"Table Cell","styles":{}}],"props":{"colspan":1,"rowspan":1,"backgroundColor":"default","textColor":"default","textAlignment":"left"}},{"type":"tableCell","content":[{"type":"text","text":"Table Cell","styles":{}}],"props":{"colspan":1,"rowspan":1,"backgroundColor":"default","textColor":"default","textAlignment":"left"}}]}]},"children":[]}],"blockCutAtStart":"3"} +{"_meta":{"startPos":42,"endPos":276},"blocks":[{"id":"3","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"ed Paragraph 2","styles":{}}],"children":[]},{"id":"4","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]},{"id":"5","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2,"isTogglable":false},"content":[{"type":"text","text":"Heading 2","styles":{}}],"children":[{"id":"6","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},{"id":"7","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},{"id":"8","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]}]},{"id":"9","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2,"isTogglable":false},"content":[{"type":"text","text":"Bold","styles":{"bold":true}},{"type":"text","text":"Italic","styles":{"italic":true}},{"type":"text","text":"Regular","styles":{}}],"children":[{"id":"10","type":"image","props":{"backgroundColor":"default","textAlignment":"left","name":"","url":"https://ralfvanveen.com/wp-content/uploads/2021/06/Placeholder-_-Glossary.svg","caption":"","showPreview":true},"children":[{"id":"11","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph","styles":{}}],"children":[]}]}]},{"id":"12","type":"table","props":{"textColor":"default"},"content":{"type":"tableContent","columnWidths":[null,null],"rows":[{"cells":[{"type":"tableCell","content":[{"type":"text","text":"Table Cell","styles":{}}],"props":{"colspan":1,"rowspan":1,"backgroundColor":"default","textColor":"default","textAlignment":"left"}},{"type":"tableCell","content":[{"type":"text","text":"Table Cell","styles":{}}],"props":{"colspan":1,"rowspan":1,"backgroundColor":"default","textColor":"default","textAlignment":"left"}}]},{"cells":[{"type":"tableCell","content":[{"type":"text","text":"Table Cell","styles":{}}],"props":{"colspan":1,"rowspan":1,"backgroundColor":"default","textColor":"default","textAlignment":"left"}},{"type":"tableCell","content":[{"type":"text","text":"Table Cell","styles":{}}],"props":{"colspan":1,"rowspan":1,"backgroundColor":"default","textColor":"default","textAlignment":"left"}}]}]},"children":[]}],"blockCutAtStart":"3"} +{"_meta":{"startPos":43,"endPos":276},"blocks":[{"id":"3","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"d Paragraph 2","styles":{}}],"children":[]},{"id":"4","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]},{"id":"5","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2,"isTogglable":false},"content":[{"type":"text","text":"Heading 2","styles":{}}],"children":[{"id":"6","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},{"id":"7","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},{"id":"8","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]}]},{"id":"9","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2,"isTogglable":false},"content":[{"type":"text","text":"Bold","styles":{"bold":true}},{"type":"text","text":"Italic","styles":{"italic":true}},{"type":"text","text":"Regular","styles":{}}],"children":[{"id":"10","type":"image","props":{"backgroundColor":"default","textAlignment":"left","name":"","url":"https://ralfvanveen.com/wp-content/uploads/2021/06/Placeholder-_-Glossary.svg","caption":"","showPreview":true},"children":[{"id":"11","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph","styles":{}}],"children":[]}]}]},{"id":"12","type":"table","props":{"textColor":"default"},"content":{"type":"tableContent","columnWidths":[null,null],"rows":[{"cells":[{"type":"tableCell","content":[{"type":"text","text":"Table Cell","styles":{}}],"props":{"colspan":1,"rowspan":1,"backgroundColor":"default","textColor":"default","textAlignment":"left"}},{"type":"tableCell","content":[{"type":"text","text":"Table Cell","styles":{}}],"props":{"colspan":1,"rowspan":1,"backgroundColor":"default","textColor":"default","textAlignment":"left"}}]},{"cells":[{"type":"tableCell","content":[{"type":"text","text":"Table Cell","styles":{}}],"props":{"colspan":1,"rowspan":1,"backgroundColor":"default","textColor":"default","textAlignment":"left"}},{"type":"tableCell","content":[{"type":"text","text":"Table Cell","styles":{}}],"props":{"colspan":1,"rowspan":1,"backgroundColor":"default","textColor":"default","textAlignment":"left"}}]}]},"children":[]}],"blockCutAtStart":"3"} +{"_meta":{"startPos":44,"endPos":276},"blocks":[{"id":"3","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":" Paragraph 2","styles":{}}],"children":[]},{"id":"4","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]},{"id":"5","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2,"isTogglable":false},"content":[{"type":"text","text":"Heading 2","styles":{}}],"children":[{"id":"6","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},{"id":"7","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},{"id":"8","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]}]},{"id":"9","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2,"isTogglable":false},"content":[{"type":"text","text":"Bold","styles":{"bold":true}},{"type":"text","text":"Italic","styles":{"italic":true}},{"type":"text","text":"Regular","styles":{}}],"children":[{"id":"10","type":"image","props":{"backgroundColor":"default","textAlignment":"left","name":"","url":"https://ralfvanveen.com/wp-content/uploads/2021/06/Placeholder-_-Glossary.svg","caption":"","showPreview":true},"children":[{"id":"11","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph","styles":{}}],"children":[]}]}]},{"id":"12","type":"table","props":{"textColor":"default"},"content":{"type":"tableContent","columnWidths":[null,null],"rows":[{"cells":[{"type":"tableCell","content":[{"type":"text","text":"Table Cell","styles":{}}],"props":{"colspan":1,"rowspan":1,"backgroundColor":"default","textColor":"default","textAlignment":"left"}},{"type":"tableCell","content":[{"type":"text","text":"Table Cell","styles":{}}],"props":{"colspan":1,"rowspan":1,"backgroundColor":"default","textColor":"default","textAlignment":"left"}}]},{"cells":[{"type":"tableCell","content":[{"type":"text","text":"Table Cell","styles":{}}],"props":{"colspan":1,"rowspan":1,"backgroundColor":"default","textColor":"default","textAlignment":"left"}},{"type":"tableCell","content":[{"type":"text","text":"Table Cell","styles":{}}],"props":{"colspan":1,"rowspan":1,"backgroundColor":"default","textColor":"default","textAlignment":"left"}}]}]},"children":[]}],"blockCutAtStart":"3"} +{"_meta":{"startPos":45,"endPos":276},"blocks":[{"id":"3","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Paragraph 2","styles":{}}],"children":[]},{"id":"4","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]},{"id":"5","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2,"isTogglable":false},"content":[{"type":"text","text":"Heading 2","styles":{}}],"children":[{"id":"6","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},{"id":"7","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},{"id":"8","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]}]},{"id":"9","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2,"isTogglable":false},"content":[{"type":"text","text":"Bold","styles":{"bold":true}},{"type":"text","text":"Italic","styles":{"italic":true}},{"type":"text","text":"Regular","styles":{}}],"children":[{"id":"10","type":"image","props":{"backgroundColor":"default","textAlignment":"left","name":"","url":"https://ralfvanveen.com/wp-content/uploads/2021/06/Placeholder-_-Glossary.svg","caption":"","showPreview":true},"children":[{"id":"11","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph","styles":{}}],"children":[]}]}]},{"id":"12","type":"table","props":{"textColor":"default"},"content":{"type":"tableContent","columnWidths":[null,null],"rows":[{"cells":[{"type":"tableCell","content":[{"type":"text","text":"Table Cell","styles":{}}],"props":{"colspan":1,"rowspan":1,"backgroundColor":"default","textColor":"default","textAlignment":"left"}},{"type":"tableCell","content":[{"type":"text","text":"Table Cell","styles":{}}],"props":{"colspan":1,"rowspan":1,"backgroundColor":"default","textColor":"default","textAlignment":"left"}}]},{"cells":[{"type":"tableCell","content":[{"type":"text","text":"Table Cell","styles":{}}],"props":{"colspan":1,"rowspan":1,"backgroundColor":"default","textColor":"default","textAlignment":"left"}},{"type":"tableCell","content":[{"type":"text","text":"Table Cell","styles":{}}],"props":{"colspan":1,"rowspan":1,"backgroundColor":"default","textColor":"default","textAlignment":"left"}}]}]},"children":[]}],"blockCutAtStart":"3"} +{"_meta":{"startPos":46,"endPos":276},"blocks":[{"id":"3","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"aragraph 2","styles":{}}],"children":[]},{"id":"4","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]},{"id":"5","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2,"isTogglable":false},"content":[{"type":"text","text":"Heading 2","styles":{}}],"children":[{"id":"6","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},{"id":"7","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},{"id":"8","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]}]},{"id":"9","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2,"isTogglable":false},"content":[{"type":"text","text":"Bold","styles":{"bold":true}},{"type":"text","text":"Italic","styles":{"italic":true}},{"type":"text","text":"Regular","styles":{}}],"children":[{"id":"10","type":"image","props":{"backgroundColor":"default","textAlignment":"left","name":"","url":"https://ralfvanveen.com/wp-content/uploads/2021/06/Placeholder-_-Glossary.svg","caption":"","showPreview":true},"children":[{"id":"11","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph","styles":{}}],"children":[]}]}]},{"id":"12","type":"table","props":{"textColor":"default"},"content":{"type":"tableContent","columnWidths":[null,null],"rows":[{"cells":[{"type":"tableCell","content":[{"type":"text","text":"Table Cell","styles":{}}],"props":{"colspan":1,"rowspan":1,"backgroundColor":"default","textColor":"default","textAlignment":"left"}},{"type":"tableCell","content":[{"type":"text","text":"Table Cell","styles":{}}],"props":{"colspan":1,"rowspan":1,"backgroundColor":"default","textColor":"default","textAlignment":"left"}}]},{"cells":[{"type":"tableCell","content":[{"type":"text","text":"Table Cell","styles":{}}],"props":{"colspan":1,"rowspan":1,"backgroundColor":"default","textColor":"default","textAlignment":"left"}},{"type":"tableCell","content":[{"type":"text","text":"Table Cell","styles":{}}],"props":{"colspan":1,"rowspan":1,"backgroundColor":"default","textColor":"default","textAlignment":"left"}}]}]},"children":[]}],"blockCutAtStart":"3"} +{"_meta":{"startPos":47,"endPos":276},"blocks":[{"id":"3","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"ragraph 2","styles":{}}],"children":[]},{"id":"4","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]},{"id":"5","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2,"isTogglable":false},"content":[{"type":"text","text":"Heading 2","styles":{}}],"children":[{"id":"6","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},{"id":"7","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},{"id":"8","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]}]},{"id":"9","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2,"isTogglable":false},"content":[{"type":"text","text":"Bold","styles":{"bold":true}},{"type":"text","text":"Italic","styles":{"italic":true}},{"type":"text","text":"Regular","styles":{}}],"children":[{"id":"10","type":"image","props":{"backgroundColor":"default","textAlignment":"left","name":"","url":"https://ralfvanveen.com/wp-content/uploads/2021/06/Placeholder-_-Glossary.svg","caption":"","showPreview":true},"children":[{"id":"11","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph","styles":{}}],"children":[]}]}]},{"id":"12","type":"table","props":{"textColor":"default"},"content":{"type":"tableContent","columnWidths":[null,null],"rows":[{"cells":[{"type":"tableCell","content":[{"type":"text","text":"Table Cell","styles":{}}],"props":{"colspan":1,"rowspan":1,"backgroundColor":"default","textColor":"default","textAlignment":"left"}},{"type":"tableCell","content":[{"type":"text","text":"Table Cell","styles":{}}],"props":{"colspan":1,"rowspan":1,"backgroundColor":"default","textColor":"default","textAlignment":"left"}}]},{"cells":[{"type":"tableCell","content":[{"type":"text","text":"Table Cell","styles":{}}],"props":{"colspan":1,"rowspan":1,"backgroundColor":"default","textColor":"default","textAlignment":"left"}},{"type":"tableCell","content":[{"type":"text","text":"Table Cell","styles":{}}],"props":{"colspan":1,"rowspan":1,"backgroundColor":"default","textColor":"default","textAlignment":"left"}}]}]},"children":[]}],"blockCutAtStart":"3"} +{"_meta":{"startPos":48,"endPos":276},"blocks":[{"id":"3","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"agraph 2","styles":{}}],"children":[]},{"id":"4","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]},{"id":"5","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2,"isTogglable":false},"content":[{"type":"text","text":"Heading 2","styles":{}}],"children":[{"id":"6","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},{"id":"7","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},{"id":"8","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]}]},{"id":"9","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2,"isTogglable":false},"content":[{"type":"text","text":"Bold","styles":{"bold":true}},{"type":"text","text":"Italic","styles":{"italic":true}},{"type":"text","text":"Regular","styles":{}}],"children":[{"id":"10","type":"image","props":{"backgroundColor":"default","textAlignment":"left","name":"","url":"https://ralfvanveen.com/wp-content/uploads/2021/06/Placeholder-_-Glossary.svg","caption":"","showPreview":true},"children":[{"id":"11","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph","styles":{}}],"children":[]}]}]},{"id":"12","type":"table","props":{"textColor":"default"},"content":{"type":"tableContent","columnWidths":[null,null],"rows":[{"cells":[{"type":"tableCell","content":[{"type":"text","text":"Table Cell","styles":{}}],"props":{"colspan":1,"rowspan":1,"backgroundColor":"default","textColor":"default","textAlignment":"left"}},{"type":"tableCell","content":[{"type":"text","text":"Table Cell","styles":{}}],"props":{"colspan":1,"rowspan":1,"backgroundColor":"default","textColor":"default","textAlignment":"left"}}]},{"cells":[{"type":"tableCell","content":[{"type":"text","text":"Table Cell","styles":{}}],"props":{"colspan":1,"rowspan":1,"backgroundColor":"default","textColor":"default","textAlignment":"left"}},{"type":"tableCell","content":[{"type":"text","text":"Table Cell","styles":{}}],"props":{"colspan":1,"rowspan":1,"backgroundColor":"default","textColor":"default","textAlignment":"left"}}]}]},"children":[]}],"blockCutAtStart":"3"} +{"_meta":{"startPos":49,"endPos":276},"blocks":[{"id":"3","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"graph 2","styles":{}}],"children":[]},{"id":"4","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]},{"id":"5","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2,"isTogglable":false},"content":[{"type":"text","text":"Heading 2","styles":{}}],"children":[{"id":"6","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},{"id":"7","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},{"id":"8","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]}]},{"id":"9","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2,"isTogglable":false},"content":[{"type":"text","text":"Bold","styles":{"bold":true}},{"type":"text","text":"Italic","styles":{"italic":true}},{"type":"text","text":"Regular","styles":{}}],"children":[{"id":"10","type":"image","props":{"backgroundColor":"default","textAlignment":"left","name":"","url":"https://ralfvanveen.com/wp-content/uploads/2021/06/Placeholder-_-Glossary.svg","caption":"","showPreview":true},"children":[{"id":"11","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph","styles":{}}],"children":[]}]}]},{"id":"12","type":"table","props":{"textColor":"default"},"content":{"type":"tableContent","columnWidths":[null,null],"rows":[{"cells":[{"type":"tableCell","content":[{"type":"text","text":"Table Cell","styles":{}}],"props":{"colspan":1,"rowspan":1,"backgroundColor":"default","textColor":"default","textAlignment":"left"}},{"type":"tableCell","content":[{"type":"text","text":"Table Cell","styles":{}}],"props":{"colspan":1,"rowspan":1,"backgroundColor":"default","textColor":"default","textAlignment":"left"}}]},{"cells":[{"type":"tableCell","content":[{"type":"text","text":"Table Cell","styles":{}}],"props":{"colspan":1,"rowspan":1,"backgroundColor":"default","textColor":"default","textAlignment":"left"}},{"type":"tableCell","content":[{"type":"text","text":"Table Cell","styles":{}}],"props":{"colspan":1,"rowspan":1,"backgroundColor":"default","textColor":"default","textAlignment":"left"}}]}]},"children":[]}],"blockCutAtStart":"3"} +{"_meta":{"startPos":50,"endPos":276},"blocks":[{"id":"3","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"raph 2","styles":{}}],"children":[]},{"id":"4","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]},{"id":"5","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2,"isTogglable":false},"content":[{"type":"text","text":"Heading 2","styles":{}}],"children":[{"id":"6","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},{"id":"7","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},{"id":"8","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]}]},{"id":"9","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2,"isTogglable":false},"content":[{"type":"text","text":"Bold","styles":{"bold":true}},{"type":"text","text":"Italic","styles":{"italic":true}},{"type":"text","text":"Regular","styles":{}}],"children":[{"id":"10","type":"image","props":{"backgroundColor":"default","textAlignment":"left","name":"","url":"https://ralfvanveen.com/wp-content/uploads/2021/06/Placeholder-_-Glossary.svg","caption":"","showPreview":true},"children":[{"id":"11","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph","styles":{}}],"children":[]}]}]},{"id":"12","type":"table","props":{"textColor":"default"},"content":{"type":"tableContent","columnWidths":[null,null],"rows":[{"cells":[{"type":"tableCell","content":[{"type":"text","text":"Table Cell","styles":{}}],"props":{"colspan":1,"rowspan":1,"backgroundColor":"default","textColor":"default","textAlignment":"left"}},{"type":"tableCell","content":[{"type":"text","text":"Table Cell","styles":{}}],"props":{"colspan":1,"rowspan":1,"backgroundColor":"default","textColor":"default","textAlignment":"left"}}]},{"cells":[{"type":"tableCell","content":[{"type":"text","text":"Table Cell","styles":{}}],"props":{"colspan":1,"rowspan":1,"backgroundColor":"default","textColor":"default","textAlignment":"left"}},{"type":"tableCell","content":[{"type":"text","text":"Table Cell","styles":{}}],"props":{"colspan":1,"rowspan":1,"backgroundColor":"default","textColor":"default","textAlignment":"left"}}]}]},"children":[]}],"blockCutAtStart":"3"} +{"_meta":{"startPos":51,"endPos":276},"blocks":[{"id":"3","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"aph 2","styles":{}}],"children":[]},{"id":"4","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]},{"id":"5","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2,"isTogglable":false},"content":[{"type":"text","text":"Heading 2","styles":{}}],"children":[{"id":"6","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},{"id":"7","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},{"id":"8","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]}]},{"id":"9","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2,"isTogglable":false},"content":[{"type":"text","text":"Bold","styles":{"bold":true}},{"type":"text","text":"Italic","styles":{"italic":true}},{"type":"text","text":"Regular","styles":{}}],"children":[{"id":"10","type":"image","props":{"backgroundColor":"default","textAlignment":"left","name":"","url":"https://ralfvanveen.com/wp-content/uploads/2021/06/Placeholder-_-Glossary.svg","caption":"","showPreview":true},"children":[{"id":"11","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph","styles":{}}],"children":[]}]}]},{"id":"12","type":"table","props":{"textColor":"default"},"content":{"type":"tableContent","columnWidths":[null,null],"rows":[{"cells":[{"type":"tableCell","content":[{"type":"text","text":"Table Cell","styles":{}}],"props":{"colspan":1,"rowspan":1,"backgroundColor":"default","textColor":"default","textAlignment":"left"}},{"type":"tableCell","content":[{"type":"text","text":"Table Cell","styles":{}}],"props":{"colspan":1,"rowspan":1,"backgroundColor":"default","textColor":"default","textAlignment":"left"}}]},{"cells":[{"type":"tableCell","content":[{"type":"text","text":"Table Cell","styles":{}}],"props":{"colspan":1,"rowspan":1,"backgroundColor":"default","textColor":"default","textAlignment":"left"}},{"type":"tableCell","content":[{"type":"text","text":"Table Cell","styles":{}}],"props":{"colspan":1,"rowspan":1,"backgroundColor":"default","textColor":"default","textAlignment":"left"}}]}]},"children":[]}],"blockCutAtStart":"3"} +{"_meta":{"startPos":52,"endPos":276},"blocks":[{"id":"3","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"ph 2","styles":{}}],"children":[]},{"id":"4","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]},{"id":"5","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2,"isTogglable":false},"content":[{"type":"text","text":"Heading 2","styles":{}}],"children":[{"id":"6","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},{"id":"7","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},{"id":"8","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]}]},{"id":"9","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2,"isTogglable":false},"content":[{"type":"text","text":"Bold","styles":{"bold":true}},{"type":"text","text":"Italic","styles":{"italic":true}},{"type":"text","text":"Regular","styles":{}}],"children":[{"id":"10","type":"image","props":{"backgroundColor":"default","textAlignment":"left","name":"","url":"https://ralfvanveen.com/wp-content/uploads/2021/06/Placeholder-_-Glossary.svg","caption":"","showPreview":true},"children":[{"id":"11","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph","styles":{}}],"children":[]}]}]},{"id":"12","type":"table","props":{"textColor":"default"},"content":{"type":"tableContent","columnWidths":[null,null],"rows":[{"cells":[{"type":"tableCell","content":[{"type":"text","text":"Table Cell","styles":{}}],"props":{"colspan":1,"rowspan":1,"backgroundColor":"default","textColor":"default","textAlignment":"left"}},{"type":"tableCell","content":[{"type":"text","text":"Table Cell","styles":{}}],"props":{"colspan":1,"rowspan":1,"backgroundColor":"default","textColor":"default","textAlignment":"left"}}]},{"cells":[{"type":"tableCell","content":[{"type":"text","text":"Table Cell","styles":{}}],"props":{"colspan":1,"rowspan":1,"backgroundColor":"default","textColor":"default","textAlignment":"left"}},{"type":"tableCell","content":[{"type":"text","text":"Table Cell","styles":{}}],"props":{"colspan":1,"rowspan":1,"backgroundColor":"default","textColor":"default","textAlignment":"left"}}]}]},"children":[]}],"blockCutAtStart":"3"} +{"_meta":{"startPos":53,"endPos":276},"blocks":[{"id":"3","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"h 2","styles":{}}],"children":[]},{"id":"4","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]},{"id":"5","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2,"isTogglable":false},"content":[{"type":"text","text":"Heading 2","styles":{}}],"children":[{"id":"6","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},{"id":"7","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},{"id":"8","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]}]},{"id":"9","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2,"isTogglable":false},"content":[{"type":"text","text":"Bold","styles":{"bold":true}},{"type":"text","text":"Italic","styles":{"italic":true}},{"type":"text","text":"Regular","styles":{}}],"children":[{"id":"10","type":"image","props":{"backgroundColor":"default","textAlignment":"left","name":"","url":"https://ralfvanveen.com/wp-content/uploads/2021/06/Placeholder-_-Glossary.svg","caption":"","showPreview":true},"children":[{"id":"11","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph","styles":{}}],"children":[]}]}]},{"id":"12","type":"table","props":{"textColor":"default"},"content":{"type":"tableContent","columnWidths":[null,null],"rows":[{"cells":[{"type":"tableCell","content":[{"type":"text","text":"Table Cell","styles":{}}],"props":{"colspan":1,"rowspan":1,"backgroundColor":"default","textColor":"default","textAlignment":"left"}},{"type":"tableCell","content":[{"type":"text","text":"Table Cell","styles":{}}],"props":{"colspan":1,"rowspan":1,"backgroundColor":"default","textColor":"default","textAlignment":"left"}}]},{"cells":[{"type":"tableCell","content":[{"type":"text","text":"Table Cell","styles":{}}],"props":{"colspan":1,"rowspan":1,"backgroundColor":"default","textColor":"default","textAlignment":"left"}},{"type":"tableCell","content":[{"type":"text","text":"Table Cell","styles":{}}],"props":{"colspan":1,"rowspan":1,"backgroundColor":"default","textColor":"default","textAlignment":"left"}}]}]},"children":[]}],"blockCutAtStart":"3"} +{"_meta":{"startPos":54,"endPos":276},"blocks":[{"id":"3","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":" 2","styles":{}}],"children":[]},{"id":"4","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]},{"id":"5","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2,"isTogglable":false},"content":[{"type":"text","text":"Heading 2","styles":{}}],"children":[{"id":"6","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},{"id":"7","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},{"id":"8","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]}]},{"id":"9","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2,"isTogglable":false},"content":[{"type":"text","text":"Bold","styles":{"bold":true}},{"type":"text","text":"Italic","styles":{"italic":true}},{"type":"text","text":"Regular","styles":{}}],"children":[{"id":"10","type":"image","props":{"backgroundColor":"default","textAlignment":"left","name":"","url":"https://ralfvanveen.com/wp-content/uploads/2021/06/Placeholder-_-Glossary.svg","caption":"","showPreview":true},"children":[{"id":"11","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph","styles":{}}],"children":[]}]}]},{"id":"12","type":"table","props":{"textColor":"default"},"content":{"type":"tableContent","columnWidths":[null,null],"rows":[{"cells":[{"type":"tableCell","content":[{"type":"text","text":"Table Cell","styles":{}}],"props":{"colspan":1,"rowspan":1,"backgroundColor":"default","textColor":"default","textAlignment":"left"}},{"type":"tableCell","content":[{"type":"text","text":"Table Cell","styles":{}}],"props":{"colspan":1,"rowspan":1,"backgroundColor":"default","textColor":"default","textAlignment":"left"}}]},{"cells":[{"type":"tableCell","content":[{"type":"text","text":"Table Cell","styles":{}}],"props":{"colspan":1,"rowspan":1,"backgroundColor":"default","textColor":"default","textAlignment":"left"}},{"type":"tableCell","content":[{"type":"text","text":"Table Cell","styles":{}}],"props":{"colspan":1,"rowspan":1,"backgroundColor":"default","textColor":"default","textAlignment":"left"}}]}]},"children":[]}],"blockCutAtStart":"3"} +{"_meta":{"startPos":55,"endPos":276},"blocks":[{"id":"3","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"2","styles":{}}],"children":[]},{"id":"4","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]},{"id":"5","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2,"isTogglable":false},"content":[{"type":"text","text":"Heading 2","styles":{}}],"children":[{"id":"6","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},{"id":"7","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},{"id":"8","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]}]},{"id":"9","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2,"isTogglable":false},"content":[{"type":"text","text":"Bold","styles":{"bold":true}},{"type":"text","text":"Italic","styles":{"italic":true}},{"type":"text","text":"Regular","styles":{}}],"children":[{"id":"10","type":"image","props":{"backgroundColor":"default","textAlignment":"left","name":"","url":"https://ralfvanveen.com/wp-content/uploads/2021/06/Placeholder-_-Glossary.svg","caption":"","showPreview":true},"children":[{"id":"11","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph","styles":{}}],"children":[]}]}]},{"id":"12","type":"table","props":{"textColor":"default"},"content":{"type":"tableContent","columnWidths":[null,null],"rows":[{"cells":[{"type":"tableCell","content":[{"type":"text","text":"Table Cell","styles":{}}],"props":{"colspan":1,"rowspan":1,"backgroundColor":"default","textColor":"default","textAlignment":"left"}},{"type":"tableCell","content":[{"type":"text","text":"Table Cell","styles":{}}],"props":{"colspan":1,"rowspan":1,"backgroundColor":"default","textColor":"default","textAlignment":"left"}}]},{"cells":[{"type":"tableCell","content":[{"type":"text","text":"Table Cell","styles":{}}],"props":{"colspan":1,"rowspan":1,"backgroundColor":"default","textColor":"default","textAlignment":"left"}},{"type":"tableCell","content":[{"type":"text","text":"Table Cell","styles":{}}],"props":{"colspan":1,"rowspan":1,"backgroundColor":"default","textColor":"default","textAlignment":"left"}}]}]},"children":[]}],"blockCutAtStart":"3"} +{"_meta":{"startPos":58,"endPos":276},"blocks":[{"id":"4","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]},{"id":"5","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2,"isTogglable":false},"content":[{"type":"text","text":"Heading 2","styles":{}}],"children":[{"id":"6","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},{"id":"7","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},{"id":"8","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]}]},{"id":"9","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2,"isTogglable":false},"content":[{"type":"text","text":"Bold","styles":{"bold":true}},{"type":"text","text":"Italic","styles":{"italic":true}},{"type":"text","text":"Regular","styles":{}}],"children":[{"id":"10","type":"image","props":{"backgroundColor":"default","textAlignment":"left","name":"","url":"https://ralfvanveen.com/wp-content/uploads/2021/06/Placeholder-_-Glossary.svg","caption":"","showPreview":true},"children":[{"id":"11","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph","styles":{}}],"children":[]}]}]},{"id":"12","type":"table","props":{"textColor":"default"},"content":{"type":"tableContent","columnWidths":[null,null],"rows":[{"cells":[{"type":"tableCell","content":[{"type":"text","text":"Table Cell","styles":{}}],"props":{"colspan":1,"rowspan":1,"backgroundColor":"default","textColor":"default","textAlignment":"left"}},{"type":"tableCell","content":[{"type":"text","text":"Table Cell","styles":{}}],"props":{"colspan":1,"rowspan":1,"backgroundColor":"default","textColor":"default","textAlignment":"left"}}]},{"cells":[{"type":"tableCell","content":[{"type":"text","text":"Table Cell","styles":{}}],"props":{"colspan":1,"rowspan":1,"backgroundColor":"default","textColor":"default","textAlignment":"left"}},{"type":"tableCell","content":[{"type":"text","text":"Table Cell","styles":{}}],"props":{"colspan":1,"rowspan":1,"backgroundColor":"default","textColor":"default","textAlignment":"left"}}]}]},"children":[]}]} +{"_meta":{"startPos":58,"endPos":276},"blocks":[{"id":"4","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]},{"id":"5","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2,"isTogglable":false},"content":[{"type":"text","text":"Heading 2","styles":{}}],"children":[{"id":"6","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},{"id":"7","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},{"id":"8","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]}]},{"id":"9","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2,"isTogglable":false},"content":[{"type":"text","text":"Bold","styles":{"bold":true}},{"type":"text","text":"Italic","styles":{"italic":true}},{"type":"text","text":"Regular","styles":{}}],"children":[{"id":"10","type":"image","props":{"backgroundColor":"default","textAlignment":"left","name":"","url":"https://ralfvanveen.com/wp-content/uploads/2021/06/Placeholder-_-Glossary.svg","caption":"","showPreview":true},"children":[{"id":"11","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph","styles":{}}],"children":[]}]}]},{"id":"12","type":"table","props":{"textColor":"default"},"content":{"type":"tableContent","columnWidths":[null,null],"rows":[{"cells":[{"type":"tableCell","content":[{"type":"text","text":"Table Cell","styles":{}}],"props":{"colspan":1,"rowspan":1,"backgroundColor":"default","textColor":"default","textAlignment":"left"}},{"type":"tableCell","content":[{"type":"text","text":"Table Cell","styles":{}}],"props":{"colspan":1,"rowspan":1,"backgroundColor":"default","textColor":"default","textAlignment":"left"}}]},{"cells":[{"type":"tableCell","content":[{"type":"text","text":"Table Cell","styles":{}}],"props":{"colspan":1,"rowspan":1,"backgroundColor":"default","textColor":"default","textAlignment":"left"}},{"type":"tableCell","content":[{"type":"text","text":"Table Cell","styles":{}}],"props":{"colspan":1,"rowspan":1,"backgroundColor":"default","textColor":"default","textAlignment":"left"}}]}]},"children":[]}]} +{"_meta":{"startPos":58,"endPos":276},"blocks":[{"id":"4","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]},{"id":"5","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2,"isTogglable":false},"content":[{"type":"text","text":"Heading 2","styles":{}}],"children":[{"id":"6","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},{"id":"7","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},{"id":"8","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]}]},{"id":"9","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2,"isTogglable":false},"content":[{"type":"text","text":"Bold","styles":{"bold":true}},{"type":"text","text":"Italic","styles":{"italic":true}},{"type":"text","text":"Regular","styles":{}}],"children":[{"id":"10","type":"image","props":{"backgroundColor":"default","textAlignment":"left","name":"","url":"https://ralfvanveen.com/wp-content/uploads/2021/06/Placeholder-_-Glossary.svg","caption":"","showPreview":true},"children":[{"id":"11","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph","styles":{}}],"children":[]}]}]},{"id":"12","type":"table","props":{"textColor":"default"},"content":{"type":"tableContent","columnWidths":[null,null],"rows":[{"cells":[{"type":"tableCell","content":[{"type":"text","text":"Table Cell","styles":{}}],"props":{"colspan":1,"rowspan":1,"backgroundColor":"default","textColor":"default","textAlignment":"left"}},{"type":"tableCell","content":[{"type":"text","text":"Table Cell","styles":{}}],"props":{"colspan":1,"rowspan":1,"backgroundColor":"default","textColor":"default","textAlignment":"left"}}]},{"cells":[{"type":"tableCell","content":[{"type":"text","text":"Table Cell","styles":{}}],"props":{"colspan":1,"rowspan":1,"backgroundColor":"default","textColor":"default","textAlignment":"left"}},{"type":"tableCell","content":[{"type":"text","text":"Table Cell","styles":{}}],"props":{"colspan":1,"rowspan":1,"backgroundColor":"default","textColor":"default","textAlignment":"left"}}]}]},"children":[]}]} +{"_meta":{"startPos":58,"endPos":276},"blocks":[{"id":"4","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]},{"id":"5","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2,"isTogglable":false},"content":[{"type":"text","text":"Heading 2","styles":{}}],"children":[{"id":"6","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},{"id":"7","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},{"id":"8","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]}]},{"id":"9","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2,"isTogglable":false},"content":[{"type":"text","text":"Bold","styles":{"bold":true}},{"type":"text","text":"Italic","styles":{"italic":true}},{"type":"text","text":"Regular","styles":{}}],"children":[{"id":"10","type":"image","props":{"backgroundColor":"default","textAlignment":"left","name":"","url":"https://ralfvanveen.com/wp-content/uploads/2021/06/Placeholder-_-Glossary.svg","caption":"","showPreview":true},"children":[{"id":"11","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph","styles":{}}],"children":[]}]}]},{"id":"12","type":"table","props":{"textColor":"default"},"content":{"type":"tableContent","columnWidths":[null,null],"rows":[{"cells":[{"type":"tableCell","content":[{"type":"text","text":"Table Cell","styles":{}}],"props":{"colspan":1,"rowspan":1,"backgroundColor":"default","textColor":"default","textAlignment":"left"}},{"type":"tableCell","content":[{"type":"text","text":"Table Cell","styles":{}}],"props":{"colspan":1,"rowspan":1,"backgroundColor":"default","textColor":"default","textAlignment":"left"}}]},{"cells":[{"type":"tableCell","content":[{"type":"text","text":"Table Cell","styles":{}}],"props":{"colspan":1,"rowspan":1,"backgroundColor":"default","textColor":"default","textAlignment":"left"}},{"type":"tableCell","content":[{"type":"text","text":"Table Cell","styles":{}}],"props":{"colspan":1,"rowspan":1,"backgroundColor":"default","textColor":"default","textAlignment":"left"}}]}]},"children":[]}]} +{"_meta":{"startPos":58,"endPos":276},"blocks":[{"id":"4","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]},{"id":"5","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2,"isTogglable":false},"content":[{"type":"text","text":"Heading 2","styles":{}}],"children":[{"id":"6","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},{"id":"7","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},{"id":"8","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]}]},{"id":"9","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2,"isTogglable":false},"content":[{"type":"text","text":"Bold","styles":{"bold":true}},{"type":"text","text":"Italic","styles":{"italic":true}},{"type":"text","text":"Regular","styles":{}}],"children":[{"id":"10","type":"image","props":{"backgroundColor":"default","textAlignment":"left","name":"","url":"https://ralfvanveen.com/wp-content/uploads/2021/06/Placeholder-_-Glossary.svg","caption":"","showPreview":true},"children":[{"id":"11","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph","styles":{}}],"children":[]}]}]},{"id":"12","type":"table","props":{"textColor":"default"},"content":{"type":"tableContent","columnWidths":[null,null],"rows":[{"cells":[{"type":"tableCell","content":[{"type":"text","text":"Table Cell","styles":{}}],"props":{"colspan":1,"rowspan":1,"backgroundColor":"default","textColor":"default","textAlignment":"left"}},{"type":"tableCell","content":[{"type":"text","text":"Table Cell","styles":{}}],"props":{"colspan":1,"rowspan":1,"backgroundColor":"default","textColor":"default","textAlignment":"left"}}]},{"cells":[{"type":"tableCell","content":[{"type":"text","text":"Table Cell","styles":{}}],"props":{"colspan":1,"rowspan":1,"backgroundColor":"default","textColor":"default","textAlignment":"left"}},{"type":"tableCell","content":[{"type":"text","text":"Table Cell","styles":{}}],"props":{"colspan":1,"rowspan":1,"backgroundColor":"default","textColor":"default","textAlignment":"left"}}]}]},"children":[]}]} +{"_meta":{"startPos":61,"endPos":276},"blocks":[{"id":"4","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"ested Paragraph 3","styles":{}}],"children":[]},{"id":"5","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2,"isTogglable":false},"content":[{"type":"text","text":"Heading 2","styles":{}}],"children":[{"id":"6","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},{"id":"7","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},{"id":"8","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]}]},{"id":"9","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2,"isTogglable":false},"content":[{"type":"text","text":"Bold","styles":{"bold":true}},{"type":"text","text":"Italic","styles":{"italic":true}},{"type":"text","text":"Regular","styles":{}}],"children":[{"id":"10","type":"image","props":{"backgroundColor":"default","textAlignment":"left","name":"","url":"https://ralfvanveen.com/wp-content/uploads/2021/06/Placeholder-_-Glossary.svg","caption":"","showPreview":true},"children":[{"id":"11","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph","styles":{}}],"children":[]}]}]},{"id":"12","type":"table","props":{"textColor":"default"},"content":{"type":"tableContent","columnWidths":[null,null],"rows":[{"cells":[{"type":"tableCell","content":[{"type":"text","text":"Table Cell","styles":{}}],"props":{"colspan":1,"rowspan":1,"backgroundColor":"default","textColor":"default","textAlignment":"left"}},{"type":"tableCell","content":[{"type":"text","text":"Table Cell","styles":{}}],"props":{"colspan":1,"rowspan":1,"backgroundColor":"default","textColor":"default","textAlignment":"left"}}]},{"cells":[{"type":"tableCell","content":[{"type":"text","text":"Table Cell","styles":{}}],"props":{"colspan":1,"rowspan":1,"backgroundColor":"default","textColor":"default","textAlignment":"left"}},{"type":"tableCell","content":[{"type":"text","text":"Table Cell","styles":{}}],"props":{"colspan":1,"rowspan":1,"backgroundColor":"default","textColor":"default","textAlignment":"left"}}]}]},"children":[]}],"blockCutAtStart":"4"} +{"_meta":{"startPos":62,"endPos":276},"blocks":[{"id":"4","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"sted Paragraph 3","styles":{}}],"children":[]},{"id":"5","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2,"isTogglable":false},"content":[{"type":"text","text":"Heading 2","styles":{}}],"children":[{"id":"6","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},{"id":"7","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},{"id":"8","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]}]},{"id":"9","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2,"isTogglable":false},"content":[{"type":"text","text":"Bold","styles":{"bold":true}},{"type":"text","text":"Italic","styles":{"italic":true}},{"type":"text","text":"Regular","styles":{}}],"children":[{"id":"10","type":"image","props":{"backgroundColor":"default","textAlignment":"left","name":"","url":"https://ralfvanveen.com/wp-content/uploads/2021/06/Placeholder-_-Glossary.svg","caption":"","showPreview":true},"children":[{"id":"11","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph","styles":{}}],"children":[]}]}]},{"id":"12","type":"table","props":{"textColor":"default"},"content":{"type":"tableContent","columnWidths":[null,null],"rows":[{"cells":[{"type":"tableCell","content":[{"type":"text","text":"Table Cell","styles":{}}],"props":{"colspan":1,"rowspan":1,"backgroundColor":"default","textColor":"default","textAlignment":"left"}},{"type":"tableCell","content":[{"type":"text","text":"Table Cell","styles":{}}],"props":{"colspan":1,"rowspan":1,"backgroundColor":"default","textColor":"default","textAlignment":"left"}}]},{"cells":[{"type":"tableCell","content":[{"type":"text","text":"Table Cell","styles":{}}],"props":{"colspan":1,"rowspan":1,"backgroundColor":"default","textColor":"default","textAlignment":"left"}},{"type":"tableCell","content":[{"type":"text","text":"Table Cell","styles":{}}],"props":{"colspan":1,"rowspan":1,"backgroundColor":"default","textColor":"default","textAlignment":"left"}}]}]},"children":[]}],"blockCutAtStart":"4"} +{"_meta":{"startPos":63,"endPos":276},"blocks":[{"id":"4","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"ted Paragraph 3","styles":{}}],"children":[]},{"id":"5","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2,"isTogglable":false},"content":[{"type":"text","text":"Heading 2","styles":{}}],"children":[{"id":"6","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},{"id":"7","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},{"id":"8","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]}]},{"id":"9","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2,"isTogglable":false},"content":[{"type":"text","text":"Bold","styles":{"bold":true}},{"type":"text","text":"Italic","styles":{"italic":true}},{"type":"text","text":"Regular","styles":{}}],"children":[{"id":"10","type":"image","props":{"backgroundColor":"default","textAlignment":"left","name":"","url":"https://ralfvanveen.com/wp-content/uploads/2021/06/Placeholder-_-Glossary.svg","caption":"","showPreview":true},"children":[{"id":"11","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph","styles":{}}],"children":[]}]}]},{"id":"12","type":"table","props":{"textColor":"default"},"content":{"type":"tableContent","columnWidths":[null,null],"rows":[{"cells":[{"type":"tableCell","content":[{"type":"text","text":"Table Cell","styles":{}}],"props":{"colspan":1,"rowspan":1,"backgroundColor":"default","textColor":"default","textAlignment":"left"}},{"type":"tableCell","content":[{"type":"text","text":"Table Cell","styles":{}}],"props":{"colspan":1,"rowspan":1,"backgroundColor":"default","textColor":"default","textAlignment":"left"}}]},{"cells":[{"type":"tableCell","content":[{"type":"text","text":"Table Cell","styles":{}}],"props":{"colspan":1,"rowspan":1,"backgroundColor":"default","textColor":"default","textAlignment":"left"}},{"type":"tableCell","content":[{"type":"text","text":"Table Cell","styles":{}}],"props":{"colspan":1,"rowspan":1,"backgroundColor":"default","textColor":"default","textAlignment":"left"}}]}]},"children":[]}],"blockCutAtStart":"4"} +{"_meta":{"startPos":64,"endPos":276},"blocks":[{"id":"4","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"ed Paragraph 3","styles":{}}],"children":[]},{"id":"5","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2,"isTogglable":false},"content":[{"type":"text","text":"Heading 2","styles":{}}],"children":[{"id":"6","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},{"id":"7","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},{"id":"8","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]}]},{"id":"9","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2,"isTogglable":false},"content":[{"type":"text","text":"Bold","styles":{"bold":true}},{"type":"text","text":"Italic","styles":{"italic":true}},{"type":"text","text":"Regular","styles":{}}],"children":[{"id":"10","type":"image","props":{"backgroundColor":"default","textAlignment":"left","name":"","url":"https://ralfvanveen.com/wp-content/uploads/2021/06/Placeholder-_-Glossary.svg","caption":"","showPreview":true},"children":[{"id":"11","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph","styles":{}}],"children":[]}]}]},{"id":"12","type":"table","props":{"textColor":"default"},"content":{"type":"tableContent","columnWidths":[null,null],"rows":[{"cells":[{"type":"tableCell","content":[{"type":"text","text":"Table Cell","styles":{}}],"props":{"colspan":1,"rowspan":1,"backgroundColor":"default","textColor":"default","textAlignment":"left"}},{"type":"tableCell","content":[{"type":"text","text":"Table Cell","styles":{}}],"props":{"colspan":1,"rowspan":1,"backgroundColor":"default","textColor":"default","textAlignment":"left"}}]},{"cells":[{"type":"tableCell","content":[{"type":"text","text":"Table Cell","styles":{}}],"props":{"colspan":1,"rowspan":1,"backgroundColor":"default","textColor":"default","textAlignment":"left"}},{"type":"tableCell","content":[{"type":"text","text":"Table Cell","styles":{}}],"props":{"colspan":1,"rowspan":1,"backgroundColor":"default","textColor":"default","textAlignment":"left"}}]}]},"children":[]}],"blockCutAtStart":"4"} +{"_meta":{"startPos":65,"endPos":276},"blocks":[{"id":"4","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"d Paragraph 3","styles":{}}],"children":[]},{"id":"5","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2,"isTogglable":false},"content":[{"type":"text","text":"Heading 2","styles":{}}],"children":[{"id":"6","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},{"id":"7","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},{"id":"8","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]}]},{"id":"9","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2,"isTogglable":false},"content":[{"type":"text","text":"Bold","styles":{"bold":true}},{"type":"text","text":"Italic","styles":{"italic":true}},{"type":"text","text":"Regular","styles":{}}],"children":[{"id":"10","type":"image","props":{"backgroundColor":"default","textAlignment":"left","name":"","url":"https://ralfvanveen.com/wp-content/uploads/2021/06/Placeholder-_-Glossary.svg","caption":"","showPreview":true},"children":[{"id":"11","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph","styles":{}}],"children":[]}]}]},{"id":"12","type":"table","props":{"textColor":"default"},"content":{"type":"tableContent","columnWidths":[null,null],"rows":[{"cells":[{"type":"tableCell","content":[{"type":"text","text":"Table Cell","styles":{}}],"props":{"colspan":1,"rowspan":1,"backgroundColor":"default","textColor":"default","textAlignment":"left"}},{"type":"tableCell","content":[{"type":"text","text":"Table Cell","styles":{}}],"props":{"colspan":1,"rowspan":1,"backgroundColor":"default","textColor":"default","textAlignment":"left"}}]},{"cells":[{"type":"tableCell","content":[{"type":"text","text":"Table Cell","styles":{}}],"props":{"colspan":1,"rowspan":1,"backgroundColor":"default","textColor":"default","textAlignment":"left"}},{"type":"tableCell","content":[{"type":"text","text":"Table Cell","styles":{}}],"props":{"colspan":1,"rowspan":1,"backgroundColor":"default","textColor":"default","textAlignment":"left"}}]}]},"children":[]}],"blockCutAtStart":"4"} +{"_meta":{"startPos":66,"endPos":276},"blocks":[{"id":"4","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":" Paragraph 3","styles":{}}],"children":[]},{"id":"5","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2,"isTogglable":false},"content":[{"type":"text","text":"Heading 2","styles":{}}],"children":[{"id":"6","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},{"id":"7","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},{"id":"8","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]}]},{"id":"9","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2,"isTogglable":false},"content":[{"type":"text","text":"Bold","styles":{"bold":true}},{"type":"text","text":"Italic","styles":{"italic":true}},{"type":"text","text":"Regular","styles":{}}],"children":[{"id":"10","type":"image","props":{"backgroundColor":"default","textAlignment":"left","name":"","url":"https://ralfvanveen.com/wp-content/uploads/2021/06/Placeholder-_-Glossary.svg","caption":"","showPreview":true},"children":[{"id":"11","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph","styles":{}}],"children":[]}]}]},{"id":"12","type":"table","props":{"textColor":"default"},"content":{"type":"tableContent","columnWidths":[null,null],"rows":[{"cells":[{"type":"tableCell","content":[{"type":"text","text":"Table Cell","styles":{}}],"props":{"colspan":1,"rowspan":1,"backgroundColor":"default","textColor":"default","textAlignment":"left"}},{"type":"tableCell","content":[{"type":"text","text":"Table Cell","styles":{}}],"props":{"colspan":1,"rowspan":1,"backgroundColor":"default","textColor":"default","textAlignment":"left"}}]},{"cells":[{"type":"tableCell","content":[{"type":"text","text":"Table Cell","styles":{}}],"props":{"colspan":1,"rowspan":1,"backgroundColor":"default","textColor":"default","textAlignment":"left"}},{"type":"tableCell","content":[{"type":"text","text":"Table Cell","styles":{}}],"props":{"colspan":1,"rowspan":1,"backgroundColor":"default","textColor":"default","textAlignment":"left"}}]}]},"children":[]}],"blockCutAtStart":"4"} +{"_meta":{"startPos":67,"endPos":276},"blocks":[{"id":"4","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Paragraph 3","styles":{}}],"children":[]},{"id":"5","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2,"isTogglable":false},"content":[{"type":"text","text":"Heading 2","styles":{}}],"children":[{"id":"6","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},{"id":"7","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},{"id":"8","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]}]},{"id":"9","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2,"isTogglable":false},"content":[{"type":"text","text":"Bold","styles":{"bold":true}},{"type":"text","text":"Italic","styles":{"italic":true}},{"type":"text","text":"Regular","styles":{}}],"children":[{"id":"10","type":"image","props":{"backgroundColor":"default","textAlignment":"left","name":"","url":"https://ralfvanveen.com/wp-content/uploads/2021/06/Placeholder-_-Glossary.svg","caption":"","showPreview":true},"children":[{"id":"11","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph","styles":{}}],"children":[]}]}]},{"id":"12","type":"table","props":{"textColor":"default"},"content":{"type":"tableContent","columnWidths":[null,null],"rows":[{"cells":[{"type":"tableCell","content":[{"type":"text","text":"Table Cell","styles":{}}],"props":{"colspan":1,"rowspan":1,"backgroundColor":"default","textColor":"default","textAlignment":"left"}},{"type":"tableCell","content":[{"type":"text","text":"Table Cell","styles":{}}],"props":{"colspan":1,"rowspan":1,"backgroundColor":"default","textColor":"default","textAlignment":"left"}}]},{"cells":[{"type":"tableCell","content":[{"type":"text","text":"Table Cell","styles":{}}],"props":{"colspan":1,"rowspan":1,"backgroundColor":"default","textColor":"default","textAlignment":"left"}},{"type":"tableCell","content":[{"type":"text","text":"Table Cell","styles":{}}],"props":{"colspan":1,"rowspan":1,"backgroundColor":"default","textColor":"default","textAlignment":"left"}}]}]},"children":[]}],"blockCutAtStart":"4"} +{"_meta":{"startPos":68,"endPos":276},"blocks":[{"id":"4","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"aragraph 3","styles":{}}],"children":[]},{"id":"5","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2,"isTogglable":false},"content":[{"type":"text","text":"Heading 2","styles":{}}],"children":[{"id":"6","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},{"id":"7","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},{"id":"8","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]}]},{"id":"9","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2,"isTogglable":false},"content":[{"type":"text","text":"Bold","styles":{"bold":true}},{"type":"text","text":"Italic","styles":{"italic":true}},{"type":"text","text":"Regular","styles":{}}],"children":[{"id":"10","type":"image","props":{"backgroundColor":"default","textAlignment":"left","name":"","url":"https://ralfvanveen.com/wp-content/uploads/2021/06/Placeholder-_-Glossary.svg","caption":"","showPreview":true},"children":[{"id":"11","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph","styles":{}}],"children":[]}]}]},{"id":"12","type":"table","props":{"textColor":"default"},"content":{"type":"tableContent","columnWidths":[null,null],"rows":[{"cells":[{"type":"tableCell","content":[{"type":"text","text":"Table Cell","styles":{}}],"props":{"colspan":1,"rowspan":1,"backgroundColor":"default","textColor":"default","textAlignment":"left"}},{"type":"tableCell","content":[{"type":"text","text":"Table Cell","styles":{}}],"props":{"colspan":1,"rowspan":1,"backgroundColor":"default","textColor":"default","textAlignment":"left"}}]},{"cells":[{"type":"tableCell","content":[{"type":"text","text":"Table Cell","styles":{}}],"props":{"colspan":1,"rowspan":1,"backgroundColor":"default","textColor":"default","textAlignment":"left"}},{"type":"tableCell","content":[{"type":"text","text":"Table Cell","styles":{}}],"props":{"colspan":1,"rowspan":1,"backgroundColor":"default","textColor":"default","textAlignment":"left"}}]}]},"children":[]}],"blockCutAtStart":"4"} +{"_meta":{"startPos":69,"endPos":276},"blocks":[{"id":"4","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"ragraph 3","styles":{}}],"children":[]},{"id":"5","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2,"isTogglable":false},"content":[{"type":"text","text":"Heading 2","styles":{}}],"children":[{"id":"6","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},{"id":"7","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},{"id":"8","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]}]},{"id":"9","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2,"isTogglable":false},"content":[{"type":"text","text":"Bold","styles":{"bold":true}},{"type":"text","text":"Italic","styles":{"italic":true}},{"type":"text","text":"Regular","styles":{}}],"children":[{"id":"10","type":"image","props":{"backgroundColor":"default","textAlignment":"left","name":"","url":"https://ralfvanveen.com/wp-content/uploads/2021/06/Placeholder-_-Glossary.svg","caption":"","showPreview":true},"children":[{"id":"11","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph","styles":{}}],"children":[]}]}]},{"id":"12","type":"table","props":{"textColor":"default"},"content":{"type":"tableContent","columnWidths":[null,null],"rows":[{"cells":[{"type":"tableCell","content":[{"type":"text","text":"Table Cell","styles":{}}],"props":{"colspan":1,"rowspan":1,"backgroundColor":"default","textColor":"default","textAlignment":"left"}},{"type":"tableCell","content":[{"type":"text","text":"Table Cell","styles":{}}],"props":{"colspan":1,"rowspan":1,"backgroundColor":"default","textColor":"default","textAlignment":"left"}}]},{"cells":[{"type":"tableCell","content":[{"type":"text","text":"Table Cell","styles":{}}],"props":{"colspan":1,"rowspan":1,"backgroundColor":"default","textColor":"default","textAlignment":"left"}},{"type":"tableCell","content":[{"type":"text","text":"Table Cell","styles":{}}],"props":{"colspan":1,"rowspan":1,"backgroundColor":"default","textColor":"default","textAlignment":"left"}}]}]},"children":[]}],"blockCutAtStart":"4"} +{"_meta":{"startPos":70,"endPos":276},"blocks":[{"id":"4","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"agraph 3","styles":{}}],"children":[]},{"id":"5","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2,"isTogglable":false},"content":[{"type":"text","text":"Heading 2","styles":{}}],"children":[{"id":"6","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},{"id":"7","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},{"id":"8","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]}]},{"id":"9","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2,"isTogglable":false},"content":[{"type":"text","text":"Bold","styles":{"bold":true}},{"type":"text","text":"Italic","styles":{"italic":true}},{"type":"text","text":"Regular","styles":{}}],"children":[{"id":"10","type":"image","props":{"backgroundColor":"default","textAlignment":"left","name":"","url":"https://ralfvanveen.com/wp-content/uploads/2021/06/Placeholder-_-Glossary.svg","caption":"","showPreview":true},"children":[{"id":"11","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph","styles":{}}],"children":[]}]}]},{"id":"12","type":"table","props":{"textColor":"default"},"content":{"type":"tableContent","columnWidths":[null,null],"rows":[{"cells":[{"type":"tableCell","content":[{"type":"text","text":"Table Cell","styles":{}}],"props":{"colspan":1,"rowspan":1,"backgroundColor":"default","textColor":"default","textAlignment":"left"}},{"type":"tableCell","content":[{"type":"text","text":"Table Cell","styles":{}}],"props":{"colspan":1,"rowspan":1,"backgroundColor":"default","textColor":"default","textAlignment":"left"}}]},{"cells":[{"type":"tableCell","content":[{"type":"text","text":"Table Cell","styles":{}}],"props":{"colspan":1,"rowspan":1,"backgroundColor":"default","textColor":"default","textAlignment":"left"}},{"type":"tableCell","content":[{"type":"text","text":"Table Cell","styles":{}}],"props":{"colspan":1,"rowspan":1,"backgroundColor":"default","textColor":"default","textAlignment":"left"}}]}]},"children":[]}],"blockCutAtStart":"4"} +{"_meta":{"startPos":71,"endPos":276},"blocks":[{"id":"4","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"graph 3","styles":{}}],"children":[]},{"id":"5","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2,"isTogglable":false},"content":[{"type":"text","text":"Heading 2","styles":{}}],"children":[{"id":"6","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},{"id":"7","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},{"id":"8","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]}]},{"id":"9","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2,"isTogglable":false},"content":[{"type":"text","text":"Bold","styles":{"bold":true}},{"type":"text","text":"Italic","styles":{"italic":true}},{"type":"text","text":"Regular","styles":{}}],"children":[{"id":"10","type":"image","props":{"backgroundColor":"default","textAlignment":"left","name":"","url":"https://ralfvanveen.com/wp-content/uploads/2021/06/Placeholder-_-Glossary.svg","caption":"","showPreview":true},"children":[{"id":"11","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph","styles":{}}],"children":[]}]}]},{"id":"12","type":"table","props":{"textColor":"default"},"content":{"type":"tableContent","columnWidths":[null,null],"rows":[{"cells":[{"type":"tableCell","content":[{"type":"text","text":"Table Cell","styles":{}}],"props":{"colspan":1,"rowspan":1,"backgroundColor":"default","textColor":"default","textAlignment":"left"}},{"type":"tableCell","content":[{"type":"text","text":"Table Cell","styles":{}}],"props":{"colspan":1,"rowspan":1,"backgroundColor":"default","textColor":"default","textAlignment":"left"}}]},{"cells":[{"type":"tableCell","content":[{"type":"text","text":"Table Cell","styles":{}}],"props":{"colspan":1,"rowspan":1,"backgroundColor":"default","textColor":"default","textAlignment":"left"}},{"type":"tableCell","content":[{"type":"text","text":"Table Cell","styles":{}}],"props":{"colspan":1,"rowspan":1,"backgroundColor":"default","textColor":"default","textAlignment":"left"}}]}]},"children":[]}],"blockCutAtStart":"4"} +{"_meta":{"startPos":72,"endPos":276},"blocks":[{"id":"4","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"raph 3","styles":{}}],"children":[]},{"id":"5","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2,"isTogglable":false},"content":[{"type":"text","text":"Heading 2","styles":{}}],"children":[{"id":"6","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},{"id":"7","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},{"id":"8","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]}]},{"id":"9","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2,"isTogglable":false},"content":[{"type":"text","text":"Bold","styles":{"bold":true}},{"type":"text","text":"Italic","styles":{"italic":true}},{"type":"text","text":"Regular","styles":{}}],"children":[{"id":"10","type":"image","props":{"backgroundColor":"default","textAlignment":"left","name":"","url":"https://ralfvanveen.com/wp-content/uploads/2021/06/Placeholder-_-Glossary.svg","caption":"","showPreview":true},"children":[{"id":"11","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph","styles":{}}],"children":[]}]}]},{"id":"12","type":"table","props":{"textColor":"default"},"content":{"type":"tableContent","columnWidths":[null,null],"rows":[{"cells":[{"type":"tableCell","content":[{"type":"text","text":"Table Cell","styles":{}}],"props":{"colspan":1,"rowspan":1,"backgroundColor":"default","textColor":"default","textAlignment":"left"}},{"type":"tableCell","content":[{"type":"text","text":"Table Cell","styles":{}}],"props":{"colspan":1,"rowspan":1,"backgroundColor":"default","textColor":"default","textAlignment":"left"}}]},{"cells":[{"type":"tableCell","content":[{"type":"text","text":"Table Cell","styles":{}}],"props":{"colspan":1,"rowspan":1,"backgroundColor":"default","textColor":"default","textAlignment":"left"}},{"type":"tableCell","content":[{"type":"text","text":"Table Cell","styles":{}}],"props":{"colspan":1,"rowspan":1,"backgroundColor":"default","textColor":"default","textAlignment":"left"}}]}]},"children":[]}],"blockCutAtStart":"4"} +{"_meta":{"startPos":73,"endPos":276},"blocks":[{"id":"4","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"aph 3","styles":{}}],"children":[]},{"id":"5","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2,"isTogglable":false},"content":[{"type":"text","text":"Heading 2","styles":{}}],"children":[{"id":"6","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},{"id":"7","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},{"id":"8","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]}]},{"id":"9","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2,"isTogglable":false},"content":[{"type":"text","text":"Bold","styles":{"bold":true}},{"type":"text","text":"Italic","styles":{"italic":true}},{"type":"text","text":"Regular","styles":{}}],"children":[{"id":"10","type":"image","props":{"backgroundColor":"default","textAlignment":"left","name":"","url":"https://ralfvanveen.com/wp-content/uploads/2021/06/Placeholder-_-Glossary.svg","caption":"","showPreview":true},"children":[{"id":"11","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph","styles":{}}],"children":[]}]}]},{"id":"12","type":"table","props":{"textColor":"default"},"content":{"type":"tableContent","columnWidths":[null,null],"rows":[{"cells":[{"type":"tableCell","content":[{"type":"text","text":"Table Cell","styles":{}}],"props":{"colspan":1,"rowspan":1,"backgroundColor":"default","textColor":"default","textAlignment":"left"}},{"type":"tableCell","content":[{"type":"text","text":"Table Cell","styles":{}}],"props":{"colspan":1,"rowspan":1,"backgroundColor":"default","textColor":"default","textAlignment":"left"}}]},{"cells":[{"type":"tableCell","content":[{"type":"text","text":"Table Cell","styles":{}}],"props":{"colspan":1,"rowspan":1,"backgroundColor":"default","textColor":"default","textAlignment":"left"}},{"type":"tableCell","content":[{"type":"text","text":"Table Cell","styles":{}}],"props":{"colspan":1,"rowspan":1,"backgroundColor":"default","textColor":"default","textAlignment":"left"}}]}]},"children":[]}],"blockCutAtStart":"4"} +{"_meta":{"startPos":74,"endPos":276},"blocks":[{"id":"4","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"ph 3","styles":{}}],"children":[]},{"id":"5","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2,"isTogglable":false},"content":[{"type":"text","text":"Heading 2","styles":{}}],"children":[{"id":"6","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},{"id":"7","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},{"id":"8","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]}]},{"id":"9","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2,"isTogglable":false},"content":[{"type":"text","text":"Bold","styles":{"bold":true}},{"type":"text","text":"Italic","styles":{"italic":true}},{"type":"text","text":"Regular","styles":{}}],"children":[{"id":"10","type":"image","props":{"backgroundColor":"default","textAlignment":"left","name":"","url":"https://ralfvanveen.com/wp-content/uploads/2021/06/Placeholder-_-Glossary.svg","caption":"","showPreview":true},"children":[{"id":"11","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph","styles":{}}],"children":[]}]}]},{"id":"12","type":"table","props":{"textColor":"default"},"content":{"type":"tableContent","columnWidths":[null,null],"rows":[{"cells":[{"type":"tableCell","content":[{"type":"text","text":"Table Cell","styles":{}}],"props":{"colspan":1,"rowspan":1,"backgroundColor":"default","textColor":"default","textAlignment":"left"}},{"type":"tableCell","content":[{"type":"text","text":"Table Cell","styles":{}}],"props":{"colspan":1,"rowspan":1,"backgroundColor":"default","textColor":"default","textAlignment":"left"}}]},{"cells":[{"type":"tableCell","content":[{"type":"text","text":"Table Cell","styles":{}}],"props":{"colspan":1,"rowspan":1,"backgroundColor":"default","textColor":"default","textAlignment":"left"}},{"type":"tableCell","content":[{"type":"text","text":"Table Cell","styles":{}}],"props":{"colspan":1,"rowspan":1,"backgroundColor":"default","textColor":"default","textAlignment":"left"}}]}]},"children":[]}],"blockCutAtStart":"4"} +{"_meta":{"startPos":75,"endPos":276},"blocks":[{"id":"4","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"h 3","styles":{}}],"children":[]},{"id":"5","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2,"isTogglable":false},"content":[{"type":"text","text":"Heading 2","styles":{}}],"children":[{"id":"6","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},{"id":"7","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},{"id":"8","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]}]},{"id":"9","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2,"isTogglable":false},"content":[{"type":"text","text":"Bold","styles":{"bold":true}},{"type":"text","text":"Italic","styles":{"italic":true}},{"type":"text","text":"Regular","styles":{}}],"children":[{"id":"10","type":"image","props":{"backgroundColor":"default","textAlignment":"left","name":"","url":"https://ralfvanveen.com/wp-content/uploads/2021/06/Placeholder-_-Glossary.svg","caption":"","showPreview":true},"children":[{"id":"11","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph","styles":{}}],"children":[]}]}]},{"id":"12","type":"table","props":{"textColor":"default"},"content":{"type":"tableContent","columnWidths":[null,null],"rows":[{"cells":[{"type":"tableCell","content":[{"type":"text","text":"Table Cell","styles":{}}],"props":{"colspan":1,"rowspan":1,"backgroundColor":"default","textColor":"default","textAlignment":"left"}},{"type":"tableCell","content":[{"type":"text","text":"Table Cell","styles":{}}],"props":{"colspan":1,"rowspan":1,"backgroundColor":"default","textColor":"default","textAlignment":"left"}}]},{"cells":[{"type":"tableCell","content":[{"type":"text","text":"Table Cell","styles":{}}],"props":{"colspan":1,"rowspan":1,"backgroundColor":"default","textColor":"default","textAlignment":"left"}},{"type":"tableCell","content":[{"type":"text","text":"Table Cell","styles":{}}],"props":{"colspan":1,"rowspan":1,"backgroundColor":"default","textColor":"default","textAlignment":"left"}}]}]},"children":[]}],"blockCutAtStart":"4"} +{"_meta":{"startPos":76,"endPos":276},"blocks":[{"id":"4","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":" 3","styles":{}}],"children":[]},{"id":"5","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2,"isTogglable":false},"content":[{"type":"text","text":"Heading 2","styles":{}}],"children":[{"id":"6","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},{"id":"7","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},{"id":"8","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]}]},{"id":"9","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2,"isTogglable":false},"content":[{"type":"text","text":"Bold","styles":{"bold":true}},{"type":"text","text":"Italic","styles":{"italic":true}},{"type":"text","text":"Regular","styles":{}}],"children":[{"id":"10","type":"image","props":{"backgroundColor":"default","textAlignment":"left","name":"","url":"https://ralfvanveen.com/wp-content/uploads/2021/06/Placeholder-_-Glossary.svg","caption":"","showPreview":true},"children":[{"id":"11","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph","styles":{}}],"children":[]}]}]},{"id":"12","type":"table","props":{"textColor":"default"},"content":{"type":"tableContent","columnWidths":[null,null],"rows":[{"cells":[{"type":"tableCell","content":[{"type":"text","text":"Table Cell","styles":{}}],"props":{"colspan":1,"rowspan":1,"backgroundColor":"default","textColor":"default","textAlignment":"left"}},{"type":"tableCell","content":[{"type":"text","text":"Table Cell","styles":{}}],"props":{"colspan":1,"rowspan":1,"backgroundColor":"default","textColor":"default","textAlignment":"left"}}]},{"cells":[{"type":"tableCell","content":[{"type":"text","text":"Table Cell","styles":{}}],"props":{"colspan":1,"rowspan":1,"backgroundColor":"default","textColor":"default","textAlignment":"left"}},{"type":"tableCell","content":[{"type":"text","text":"Table Cell","styles":{}}],"props":{"colspan":1,"rowspan":1,"backgroundColor":"default","textColor":"default","textAlignment":"left"}}]}]},"children":[]}],"blockCutAtStart":"4"} +{"_meta":{"startPos":77,"endPos":276},"blocks":[{"id":"4","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"3","styles":{}}],"children":[]},{"id":"5","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2,"isTogglable":false},"content":[{"type":"text","text":"Heading 2","styles":{}}],"children":[{"id":"6","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},{"id":"7","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},{"id":"8","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]}]},{"id":"9","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2,"isTogglable":false},"content":[{"type":"text","text":"Bold","styles":{"bold":true}},{"type":"text","text":"Italic","styles":{"italic":true}},{"type":"text","text":"Regular","styles":{}}],"children":[{"id":"10","type":"image","props":{"backgroundColor":"default","textAlignment":"left","name":"","url":"https://ralfvanveen.com/wp-content/uploads/2021/06/Placeholder-_-Glossary.svg","caption":"","showPreview":true},"children":[{"id":"11","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph","styles":{}}],"children":[]}]}]},{"id":"12","type":"table","props":{"textColor":"default"},"content":{"type":"tableContent","columnWidths":[null,null],"rows":[{"cells":[{"type":"tableCell","content":[{"type":"text","text":"Table Cell","styles":{}}],"props":{"colspan":1,"rowspan":1,"backgroundColor":"default","textColor":"default","textAlignment":"left"}},{"type":"tableCell","content":[{"type":"text","text":"Table Cell","styles":{}}],"props":{"colspan":1,"rowspan":1,"backgroundColor":"default","textColor":"default","textAlignment":"left"}}]},{"cells":[{"type":"tableCell","content":[{"type":"text","text":"Table Cell","styles":{}}],"props":{"colspan":1,"rowspan":1,"backgroundColor":"default","textColor":"default","textAlignment":"left"}},{"type":"tableCell","content":[{"type":"text","text":"Table Cell","styles":{}}],"props":{"colspan":1,"rowspan":1,"backgroundColor":"default","textColor":"default","textAlignment":"left"}}]}]},"children":[]}],"blockCutAtStart":"4"} +{"_meta":{"startPos":82,"endPos":276},"blocks":[{"id":"5","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2,"isTogglable":false},"content":[{"type":"text","text":"Heading 2","styles":{}}],"children":[{"id":"6","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},{"id":"7","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},{"id":"8","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]}]},{"id":"9","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2,"isTogglable":false},"content":[{"type":"text","text":"Bold","styles":{"bold":true}},{"type":"text","text":"Italic","styles":{"italic":true}},{"type":"text","text":"Regular","styles":{}}],"children":[{"id":"10","type":"image","props":{"backgroundColor":"default","textAlignment":"left","name":"","url":"https://ralfvanveen.com/wp-content/uploads/2021/06/Placeholder-_-Glossary.svg","caption":"","showPreview":true},"children":[{"id":"11","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph","styles":{}}],"children":[]}]}]},{"id":"12","type":"table","props":{"textColor":"default"},"content":{"type":"tableContent","columnWidths":[null,null],"rows":[{"cells":[{"type":"tableCell","content":[{"type":"text","text":"Table Cell","styles":{}}],"props":{"colspan":1,"rowspan":1,"backgroundColor":"default","textColor":"default","textAlignment":"left"}},{"type":"tableCell","content":[{"type":"text","text":"Table Cell","styles":{}}],"props":{"colspan":1,"rowspan":1,"backgroundColor":"default","textColor":"default","textAlignment":"left"}}]},{"cells":[{"type":"tableCell","content":[{"type":"text","text":"Table Cell","styles":{}}],"props":{"colspan":1,"rowspan":1,"backgroundColor":"default","textColor":"default","textAlignment":"left"}},{"type":"tableCell","content":[{"type":"text","text":"Table Cell","styles":{}}],"props":{"colspan":1,"rowspan":1,"backgroundColor":"default","textColor":"default","textAlignment":"left"}}]}]},"children":[]}]} +{"_meta":{"startPos":82,"endPos":276},"blocks":[{"id":"5","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2,"isTogglable":false},"content":[{"type":"text","text":"Heading 2","styles":{}}],"children":[{"id":"6","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},{"id":"7","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},{"id":"8","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]}]},{"id":"9","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2,"isTogglable":false},"content":[{"type":"text","text":"Bold","styles":{"bold":true}},{"type":"text","text":"Italic","styles":{"italic":true}},{"type":"text","text":"Regular","styles":{}}],"children":[{"id":"10","type":"image","props":{"backgroundColor":"default","textAlignment":"left","name":"","url":"https://ralfvanveen.com/wp-content/uploads/2021/06/Placeholder-_-Glossary.svg","caption":"","showPreview":true},"children":[{"id":"11","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph","styles":{}}],"children":[]}]}]},{"id":"12","type":"table","props":{"textColor":"default"},"content":{"type":"tableContent","columnWidths":[null,null],"rows":[{"cells":[{"type":"tableCell","content":[{"type":"text","text":"Table Cell","styles":{}}],"props":{"colspan":1,"rowspan":1,"backgroundColor":"default","textColor":"default","textAlignment":"left"}},{"type":"tableCell","content":[{"type":"text","text":"Table Cell","styles":{}}],"props":{"colspan":1,"rowspan":1,"backgroundColor":"default","textColor":"default","textAlignment":"left"}}]},{"cells":[{"type":"tableCell","content":[{"type":"text","text":"Table Cell","styles":{}}],"props":{"colspan":1,"rowspan":1,"backgroundColor":"default","textColor":"default","textAlignment":"left"}},{"type":"tableCell","content":[{"type":"text","text":"Table Cell","styles":{}}],"props":{"colspan":1,"rowspan":1,"backgroundColor":"default","textColor":"default","textAlignment":"left"}}]}]},"children":[]}]} +{"_meta":{"startPos":82,"endPos":276},"blocks":[{"id":"5","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2,"isTogglable":false},"content":[{"type":"text","text":"Heading 2","styles":{}}],"children":[{"id":"6","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},{"id":"7","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},{"id":"8","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]}]},{"id":"9","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2,"isTogglable":false},"content":[{"type":"text","text":"Bold","styles":{"bold":true}},{"type":"text","text":"Italic","styles":{"italic":true}},{"type":"text","text":"Regular","styles":{}}],"children":[{"id":"10","type":"image","props":{"backgroundColor":"default","textAlignment":"left","name":"","url":"https://ralfvanveen.com/wp-content/uploads/2021/06/Placeholder-_-Glossary.svg","caption":"","showPreview":true},"children":[{"id":"11","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph","styles":{}}],"children":[]}]}]},{"id":"12","type":"table","props":{"textColor":"default"},"content":{"type":"tableContent","columnWidths":[null,null],"rows":[{"cells":[{"type":"tableCell","content":[{"type":"text","text":"Table Cell","styles":{}}],"props":{"colspan":1,"rowspan":1,"backgroundColor":"default","textColor":"default","textAlignment":"left"}},{"type":"tableCell","content":[{"type":"text","text":"Table Cell","styles":{}}],"props":{"colspan":1,"rowspan":1,"backgroundColor":"default","textColor":"default","textAlignment":"left"}}]},{"cells":[{"type":"tableCell","content":[{"type":"text","text":"Table Cell","styles":{}}],"props":{"colspan":1,"rowspan":1,"backgroundColor":"default","textColor":"default","textAlignment":"left"}},{"type":"tableCell","content":[{"type":"text","text":"Table Cell","styles":{}}],"props":{"colspan":1,"rowspan":1,"backgroundColor":"default","textColor":"default","textAlignment":"left"}}]}]},"children":[]}]} +{"_meta":{"startPos":82,"endPos":276},"blocks":[{"id":"5","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2,"isTogglable":false},"content":[{"type":"text","text":"Heading 2","styles":{}}],"children":[{"id":"6","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},{"id":"7","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},{"id":"8","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]}]},{"id":"9","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2,"isTogglable":false},"content":[{"type":"text","text":"Bold","styles":{"bold":true}},{"type":"text","text":"Italic","styles":{"italic":true}},{"type":"text","text":"Regular","styles":{}}],"children":[{"id":"10","type":"image","props":{"backgroundColor":"default","textAlignment":"left","name":"","url":"https://ralfvanveen.com/wp-content/uploads/2021/06/Placeholder-_-Glossary.svg","caption":"","showPreview":true},"children":[{"id":"11","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph","styles":{}}],"children":[]}]}]},{"id":"12","type":"table","props":{"textColor":"default"},"content":{"type":"tableContent","columnWidths":[null,null],"rows":[{"cells":[{"type":"tableCell","content":[{"type":"text","text":"Table Cell","styles":{}}],"props":{"colspan":1,"rowspan":1,"backgroundColor":"default","textColor":"default","textAlignment":"left"}},{"type":"tableCell","content":[{"type":"text","text":"Table Cell","styles":{}}],"props":{"colspan":1,"rowspan":1,"backgroundColor":"default","textColor":"default","textAlignment":"left"}}]},{"cells":[{"type":"tableCell","content":[{"type":"text","text":"Table Cell","styles":{}}],"props":{"colspan":1,"rowspan":1,"backgroundColor":"default","textColor":"default","textAlignment":"left"}},{"type":"tableCell","content":[{"type":"text","text":"Table Cell","styles":{}}],"props":{"colspan":1,"rowspan":1,"backgroundColor":"default","textColor":"default","textAlignment":"left"}}]}]},"children":[]}]} +{"_meta":{"startPos":82,"endPos":276},"blocks":[{"id":"5","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2,"isTogglable":false},"content":[{"type":"text","text":"Heading 2","styles":{}}],"children":[{"id":"6","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},{"id":"7","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},{"id":"8","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]}]},{"id":"9","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2,"isTogglable":false},"content":[{"type":"text","text":"Bold","styles":{"bold":true}},{"type":"text","text":"Italic","styles":{"italic":true}},{"type":"text","text":"Regular","styles":{}}],"children":[{"id":"10","type":"image","props":{"backgroundColor":"default","textAlignment":"left","name":"","url":"https://ralfvanveen.com/wp-content/uploads/2021/06/Placeholder-_-Glossary.svg","caption":"","showPreview":true},"children":[{"id":"11","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph","styles":{}}],"children":[]}]}]},{"id":"12","type":"table","props":{"textColor":"default"},"content":{"type":"tableContent","columnWidths":[null,null],"rows":[{"cells":[{"type":"tableCell","content":[{"type":"text","text":"Table Cell","styles":{}}],"props":{"colspan":1,"rowspan":1,"backgroundColor":"default","textColor":"default","textAlignment":"left"}},{"type":"tableCell","content":[{"type":"text","text":"Table Cell","styles":{}}],"props":{"colspan":1,"rowspan":1,"backgroundColor":"default","textColor":"default","textAlignment":"left"}}]},{"cells":[{"type":"tableCell","content":[{"type":"text","text":"Table Cell","styles":{}}],"props":{"colspan":1,"rowspan":1,"backgroundColor":"default","textColor":"default","textAlignment":"left"}},{"type":"tableCell","content":[{"type":"text","text":"Table Cell","styles":{}}],"props":{"colspan":1,"rowspan":1,"backgroundColor":"default","textColor":"default","textAlignment":"left"}}]}]},"children":[]}]} +{"_meta":{"startPos":82,"endPos":276},"blocks":[{"id":"5","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2,"isTogglable":false},"content":[{"type":"text","text":"Heading 2","styles":{}}],"children":[{"id":"6","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},{"id":"7","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},{"id":"8","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]}]},{"id":"9","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2,"isTogglable":false},"content":[{"type":"text","text":"Bold","styles":{"bold":true}},{"type":"text","text":"Italic","styles":{"italic":true}},{"type":"text","text":"Regular","styles":{}}],"children":[{"id":"10","type":"image","props":{"backgroundColor":"default","textAlignment":"left","name":"","url":"https://ralfvanveen.com/wp-content/uploads/2021/06/Placeholder-_-Glossary.svg","caption":"","showPreview":true},"children":[{"id":"11","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph","styles":{}}],"children":[]}]}]},{"id":"12","type":"table","props":{"textColor":"default"},"content":{"type":"tableContent","columnWidths":[null,null],"rows":[{"cells":[{"type":"tableCell","content":[{"type":"text","text":"Table Cell","styles":{}}],"props":{"colspan":1,"rowspan":1,"backgroundColor":"default","textColor":"default","textAlignment":"left"}},{"type":"tableCell","content":[{"type":"text","text":"Table Cell","styles":{}}],"props":{"colspan":1,"rowspan":1,"backgroundColor":"default","textColor":"default","textAlignment":"left"}}]},{"cells":[{"type":"tableCell","content":[{"type":"text","text":"Table Cell","styles":{}}],"props":{"colspan":1,"rowspan":1,"backgroundColor":"default","textColor":"default","textAlignment":"left"}},{"type":"tableCell","content":[{"type":"text","text":"Table Cell","styles":{}}],"props":{"colspan":1,"rowspan":1,"backgroundColor":"default","textColor":"default","textAlignment":"left"}}]}]},"children":[]}]} +{"_meta":{"startPos":82,"endPos":276},"blocks":[{"id":"5","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2,"isTogglable":false},"content":[{"type":"text","text":"Heading 2","styles":{}}],"children":[{"id":"6","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},{"id":"7","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},{"id":"8","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]}]},{"id":"9","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2,"isTogglable":false},"content":[{"type":"text","text":"Bold","styles":{"bold":true}},{"type":"text","text":"Italic","styles":{"italic":true}},{"type":"text","text":"Regular","styles":{}}],"children":[{"id":"10","type":"image","props":{"backgroundColor":"default","textAlignment":"left","name":"","url":"https://ralfvanveen.com/wp-content/uploads/2021/06/Placeholder-_-Glossary.svg","caption":"","showPreview":true},"children":[{"id":"11","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph","styles":{}}],"children":[]}]}]},{"id":"12","type":"table","props":{"textColor":"default"},"content":{"type":"tableContent","columnWidths":[null,null],"rows":[{"cells":[{"type":"tableCell","content":[{"type":"text","text":"Table Cell","styles":{}}],"props":{"colspan":1,"rowspan":1,"backgroundColor":"default","textColor":"default","textAlignment":"left"}},{"type":"tableCell","content":[{"type":"text","text":"Table Cell","styles":{}}],"props":{"colspan":1,"rowspan":1,"backgroundColor":"default","textColor":"default","textAlignment":"left"}}]},{"cells":[{"type":"tableCell","content":[{"type":"text","text":"Table Cell","styles":{}}],"props":{"colspan":1,"rowspan":1,"backgroundColor":"default","textColor":"default","textAlignment":"left"}},{"type":"tableCell","content":[{"type":"text","text":"Table Cell","styles":{}}],"props":{"colspan":1,"rowspan":1,"backgroundColor":"default","textColor":"default","textAlignment":"left"}}]}]},"children":[]}]} +{"_meta":{"startPos":85,"endPos":276},"blocks":[{"id":"5","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2,"isTogglable":false},"content":[{"type":"text","text":"eading 2","styles":{}}],"children":[{"id":"6","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},{"id":"7","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},{"id":"8","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]}]},{"id":"9","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2,"isTogglable":false},"content":[{"type":"text","text":"Bold","styles":{"bold":true}},{"type":"text","text":"Italic","styles":{"italic":true}},{"type":"text","text":"Regular","styles":{}}],"children":[{"id":"10","type":"image","props":{"backgroundColor":"default","textAlignment":"left","name":"","url":"https://ralfvanveen.com/wp-content/uploads/2021/06/Placeholder-_-Glossary.svg","caption":"","showPreview":true},"children":[{"id":"11","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph","styles":{}}],"children":[]}]}]},{"id":"12","type":"table","props":{"textColor":"default"},"content":{"type":"tableContent","columnWidths":[null,null],"rows":[{"cells":[{"type":"tableCell","content":[{"type":"text","text":"Table Cell","styles":{}}],"props":{"colspan":1,"rowspan":1,"backgroundColor":"default","textColor":"default","textAlignment":"left"}},{"type":"tableCell","content":[{"type":"text","text":"Table Cell","styles":{}}],"props":{"colspan":1,"rowspan":1,"backgroundColor":"default","textColor":"default","textAlignment":"left"}}]},{"cells":[{"type":"tableCell","content":[{"type":"text","text":"Table Cell","styles":{}}],"props":{"colspan":1,"rowspan":1,"backgroundColor":"default","textColor":"default","textAlignment":"left"}},{"type":"tableCell","content":[{"type":"text","text":"Table Cell","styles":{}}],"props":{"colspan":1,"rowspan":1,"backgroundColor":"default","textColor":"default","textAlignment":"left"}}]}]},"children":[]}],"blockCutAtStart":"5"} +{"_meta":{"startPos":86,"endPos":276},"blocks":[{"id":"5","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2,"isTogglable":false},"content":[{"type":"text","text":"ading 2","styles":{}}],"children":[{"id":"6","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},{"id":"7","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},{"id":"8","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]}]},{"id":"9","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2,"isTogglable":false},"content":[{"type":"text","text":"Bold","styles":{"bold":true}},{"type":"text","text":"Italic","styles":{"italic":true}},{"type":"text","text":"Regular","styles":{}}],"children":[{"id":"10","type":"image","props":{"backgroundColor":"default","textAlignment":"left","name":"","url":"https://ralfvanveen.com/wp-content/uploads/2021/06/Placeholder-_-Glossary.svg","caption":"","showPreview":true},"children":[{"id":"11","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph","styles":{}}],"children":[]}]}]},{"id":"12","type":"table","props":{"textColor":"default"},"content":{"type":"tableContent","columnWidths":[null,null],"rows":[{"cells":[{"type":"tableCell","content":[{"type":"text","text":"Table Cell","styles":{}}],"props":{"colspan":1,"rowspan":1,"backgroundColor":"default","textColor":"default","textAlignment":"left"}},{"type":"tableCell","content":[{"type":"text","text":"Table Cell","styles":{}}],"props":{"colspan":1,"rowspan":1,"backgroundColor":"default","textColor":"default","textAlignment":"left"}}]},{"cells":[{"type":"tableCell","content":[{"type":"text","text":"Table Cell","styles":{}}],"props":{"colspan":1,"rowspan":1,"backgroundColor":"default","textColor":"default","textAlignment":"left"}},{"type":"tableCell","content":[{"type":"text","text":"Table Cell","styles":{}}],"props":{"colspan":1,"rowspan":1,"backgroundColor":"default","textColor":"default","textAlignment":"left"}}]}]},"children":[]}],"blockCutAtStart":"5"} +{"_meta":{"startPos":87,"endPos":276},"blocks":[{"id":"5","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2,"isTogglable":false},"content":[{"type":"text","text":"ding 2","styles":{}}],"children":[{"id":"6","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},{"id":"7","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},{"id":"8","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]}]},{"id":"9","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2,"isTogglable":false},"content":[{"type":"text","text":"Bold","styles":{"bold":true}},{"type":"text","text":"Italic","styles":{"italic":true}},{"type":"text","text":"Regular","styles":{}}],"children":[{"id":"10","type":"image","props":{"backgroundColor":"default","textAlignment":"left","name":"","url":"https://ralfvanveen.com/wp-content/uploads/2021/06/Placeholder-_-Glossary.svg","caption":"","showPreview":true},"children":[{"id":"11","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph","styles":{}}],"children":[]}]}]},{"id":"12","type":"table","props":{"textColor":"default"},"content":{"type":"tableContent","columnWidths":[null,null],"rows":[{"cells":[{"type":"tableCell","content":[{"type":"text","text":"Table Cell","styles":{}}],"props":{"colspan":1,"rowspan":1,"backgroundColor":"default","textColor":"default","textAlignment":"left"}},{"type":"tableCell","content":[{"type":"text","text":"Table Cell","styles":{}}],"props":{"colspan":1,"rowspan":1,"backgroundColor":"default","textColor":"default","textAlignment":"left"}}]},{"cells":[{"type":"tableCell","content":[{"type":"text","text":"Table Cell","styles":{}}],"props":{"colspan":1,"rowspan":1,"backgroundColor":"default","textColor":"default","textAlignment":"left"}},{"type":"tableCell","content":[{"type":"text","text":"Table Cell","styles":{}}],"props":{"colspan":1,"rowspan":1,"backgroundColor":"default","textColor":"default","textAlignment":"left"}}]}]},"children":[]}],"blockCutAtStart":"5"} +{"_meta":{"startPos":88,"endPos":276},"blocks":[{"id":"5","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2,"isTogglable":false},"content":[{"type":"text","text":"ing 2","styles":{}}],"children":[{"id":"6","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},{"id":"7","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},{"id":"8","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]}]},{"id":"9","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2,"isTogglable":false},"content":[{"type":"text","text":"Bold","styles":{"bold":true}},{"type":"text","text":"Italic","styles":{"italic":true}},{"type":"text","text":"Regular","styles":{}}],"children":[{"id":"10","type":"image","props":{"backgroundColor":"default","textAlignment":"left","name":"","url":"https://ralfvanveen.com/wp-content/uploads/2021/06/Placeholder-_-Glossary.svg","caption":"","showPreview":true},"children":[{"id":"11","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph","styles":{}}],"children":[]}]}]},{"id":"12","type":"table","props":{"textColor":"default"},"content":{"type":"tableContent","columnWidths":[null,null],"rows":[{"cells":[{"type":"tableCell","content":[{"type":"text","text":"Table Cell","styles":{}}],"props":{"colspan":1,"rowspan":1,"backgroundColor":"default","textColor":"default","textAlignment":"left"}},{"type":"tableCell","content":[{"type":"text","text":"Table Cell","styles":{}}],"props":{"colspan":1,"rowspan":1,"backgroundColor":"default","textColor":"default","textAlignment":"left"}}]},{"cells":[{"type":"tableCell","content":[{"type":"text","text":"Table Cell","styles":{}}],"props":{"colspan":1,"rowspan":1,"backgroundColor":"default","textColor":"default","textAlignment":"left"}},{"type":"tableCell","content":[{"type":"text","text":"Table Cell","styles":{}}],"props":{"colspan":1,"rowspan":1,"backgroundColor":"default","textColor":"default","textAlignment":"left"}}]}]},"children":[]}],"blockCutAtStart":"5"} +{"_meta":{"startPos":89,"endPos":276},"blocks":[{"id":"5","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2,"isTogglable":false},"content":[{"type":"text","text":"ng 2","styles":{}}],"children":[{"id":"6","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},{"id":"7","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},{"id":"8","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]}]},{"id":"9","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2,"isTogglable":false},"content":[{"type":"text","text":"Bold","styles":{"bold":true}},{"type":"text","text":"Italic","styles":{"italic":true}},{"type":"text","text":"Regular","styles":{}}],"children":[{"id":"10","type":"image","props":{"backgroundColor":"default","textAlignment":"left","name":"","url":"https://ralfvanveen.com/wp-content/uploads/2021/06/Placeholder-_-Glossary.svg","caption":"","showPreview":true},"children":[{"id":"11","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph","styles":{}}],"children":[]}]}]},{"id":"12","type":"table","props":{"textColor":"default"},"content":{"type":"tableContent","columnWidths":[null,null],"rows":[{"cells":[{"type":"tableCell","content":[{"type":"text","text":"Table Cell","styles":{}}],"props":{"colspan":1,"rowspan":1,"backgroundColor":"default","textColor":"default","textAlignment":"left"}},{"type":"tableCell","content":[{"type":"text","text":"Table Cell","styles":{}}],"props":{"colspan":1,"rowspan":1,"backgroundColor":"default","textColor":"default","textAlignment":"left"}}]},{"cells":[{"type":"tableCell","content":[{"type":"text","text":"Table Cell","styles":{}}],"props":{"colspan":1,"rowspan":1,"backgroundColor":"default","textColor":"default","textAlignment":"left"}},{"type":"tableCell","content":[{"type":"text","text":"Table Cell","styles":{}}],"props":{"colspan":1,"rowspan":1,"backgroundColor":"default","textColor":"default","textAlignment":"left"}}]}]},"children":[]}],"blockCutAtStart":"5"} +{"_meta":{"startPos":90,"endPos":276},"blocks":[{"id":"5","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2,"isTogglable":false},"content":[{"type":"text","text":"g 2","styles":{}}],"children":[{"id":"6","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},{"id":"7","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},{"id":"8","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]}]},{"id":"9","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2,"isTogglable":false},"content":[{"type":"text","text":"Bold","styles":{"bold":true}},{"type":"text","text":"Italic","styles":{"italic":true}},{"type":"text","text":"Regular","styles":{}}],"children":[{"id":"10","type":"image","props":{"backgroundColor":"default","textAlignment":"left","name":"","url":"https://ralfvanveen.com/wp-content/uploads/2021/06/Placeholder-_-Glossary.svg","caption":"","showPreview":true},"children":[{"id":"11","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph","styles":{}}],"children":[]}]}]},{"id":"12","type":"table","props":{"textColor":"default"},"content":{"type":"tableContent","columnWidths":[null,null],"rows":[{"cells":[{"type":"tableCell","content":[{"type":"text","text":"Table Cell","styles":{}}],"props":{"colspan":1,"rowspan":1,"backgroundColor":"default","textColor":"default","textAlignment":"left"}},{"type":"tableCell","content":[{"type":"text","text":"Table Cell","styles":{}}],"props":{"colspan":1,"rowspan":1,"backgroundColor":"default","textColor":"default","textAlignment":"left"}}]},{"cells":[{"type":"tableCell","content":[{"type":"text","text":"Table Cell","styles":{}}],"props":{"colspan":1,"rowspan":1,"backgroundColor":"default","textColor":"default","textAlignment":"left"}},{"type":"tableCell","content":[{"type":"text","text":"Table Cell","styles":{}}],"props":{"colspan":1,"rowspan":1,"backgroundColor":"default","textColor":"default","textAlignment":"left"}}]}]},"children":[]}],"blockCutAtStart":"5"} +{"_meta":{"startPos":91,"endPos":276},"blocks":[{"id":"5","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2,"isTogglable":false},"content":[{"type":"text","text":" 2","styles":{}}],"children":[{"id":"6","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},{"id":"7","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},{"id":"8","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]}]},{"id":"9","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2,"isTogglable":false},"content":[{"type":"text","text":"Bold","styles":{"bold":true}},{"type":"text","text":"Italic","styles":{"italic":true}},{"type":"text","text":"Regular","styles":{}}],"children":[{"id":"10","type":"image","props":{"backgroundColor":"default","textAlignment":"left","name":"","url":"https://ralfvanveen.com/wp-content/uploads/2021/06/Placeholder-_-Glossary.svg","caption":"","showPreview":true},"children":[{"id":"11","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph","styles":{}}],"children":[]}]}]},{"id":"12","type":"table","props":{"textColor":"default"},"content":{"type":"tableContent","columnWidths":[null,null],"rows":[{"cells":[{"type":"tableCell","content":[{"type":"text","text":"Table Cell","styles":{}}],"props":{"colspan":1,"rowspan":1,"backgroundColor":"default","textColor":"default","textAlignment":"left"}},{"type":"tableCell","content":[{"type":"text","text":"Table Cell","styles":{}}],"props":{"colspan":1,"rowspan":1,"backgroundColor":"default","textColor":"default","textAlignment":"left"}}]},{"cells":[{"type":"tableCell","content":[{"type":"text","text":"Table Cell","styles":{}}],"props":{"colspan":1,"rowspan":1,"backgroundColor":"default","textColor":"default","textAlignment":"left"}},{"type":"tableCell","content":[{"type":"text","text":"Table Cell","styles":{}}],"props":{"colspan":1,"rowspan":1,"backgroundColor":"default","textColor":"default","textAlignment":"left"}}]}]},"children":[]}],"blockCutAtStart":"5"} +{"_meta":{"startPos":92,"endPos":276},"blocks":[{"id":"5","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2,"isTogglable":false},"content":[{"type":"text","text":"2","styles":{}}],"children":[{"id":"6","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},{"id":"7","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},{"id":"8","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]}]},{"id":"9","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2,"isTogglable":false},"content":[{"type":"text","text":"Bold","styles":{"bold":true}},{"type":"text","text":"Italic","styles":{"italic":true}},{"type":"text","text":"Regular","styles":{}}],"children":[{"id":"10","type":"image","props":{"backgroundColor":"default","textAlignment":"left","name":"","url":"https://ralfvanveen.com/wp-content/uploads/2021/06/Placeholder-_-Glossary.svg","caption":"","showPreview":true},"children":[{"id":"11","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph","styles":{}}],"children":[]}]}]},{"id":"12","type":"table","props":{"textColor":"default"},"content":{"type":"tableContent","columnWidths":[null,null],"rows":[{"cells":[{"type":"tableCell","content":[{"type":"text","text":"Table Cell","styles":{}}],"props":{"colspan":1,"rowspan":1,"backgroundColor":"default","textColor":"default","textAlignment":"left"}},{"type":"tableCell","content":[{"type":"text","text":"Table Cell","styles":{}}],"props":{"colspan":1,"rowspan":1,"backgroundColor":"default","textColor":"default","textAlignment":"left"}}]},{"cells":[{"type":"tableCell","content":[{"type":"text","text":"Table Cell","styles":{}}],"props":{"colspan":1,"rowspan":1,"backgroundColor":"default","textColor":"default","textAlignment":"left"}},{"type":"tableCell","content":[{"type":"text","text":"Table Cell","styles":{}}],"props":{"colspan":1,"rowspan":1,"backgroundColor":"default","textColor":"default","textAlignment":"left"}}]}]},"children":[]}],"blockCutAtStart":"5"} +{"_meta":{"startPos":94,"endPos":276},"blocks":[{"id":"6","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},{"id":"7","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},{"id":"8","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]},{"id":"9","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2,"isTogglable":false},"content":[{"type":"text","text":"Bold","styles":{"bold":true}},{"type":"text","text":"Italic","styles":{"italic":true}},{"type":"text","text":"Regular","styles":{}}],"children":[{"id":"10","type":"image","props":{"backgroundColor":"default","textAlignment":"left","name":"","url":"https://ralfvanveen.com/wp-content/uploads/2021/06/Placeholder-_-Glossary.svg","caption":"","showPreview":true},"children":[{"id":"11","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph","styles":{}}],"children":[]}]}]},{"id":"12","type":"table","props":{"textColor":"default"},"content":{"type":"tableContent","columnWidths":[null,null],"rows":[{"cells":[{"type":"tableCell","content":[{"type":"text","text":"Table Cell","styles":{}}],"props":{"colspan":1,"rowspan":1,"backgroundColor":"default","textColor":"default","textAlignment":"left"}},{"type":"tableCell","content":[{"type":"text","text":"Table Cell","styles":{}}],"props":{"colspan":1,"rowspan":1,"backgroundColor":"default","textColor":"default","textAlignment":"left"}}]},{"cells":[{"type":"tableCell","content":[{"type":"text","text":"Table Cell","styles":{}}],"props":{"colspan":1,"rowspan":1,"backgroundColor":"default","textColor":"default","textAlignment":"left"}},{"type":"tableCell","content":[{"type":"text","text":"Table Cell","styles":{}}],"props":{"colspan":1,"rowspan":1,"backgroundColor":"default","textColor":"default","textAlignment":"left"}}]}]},"children":[]}]} +{"_meta":{"startPos":94,"endPos":276},"blocks":[{"id":"6","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},{"id":"7","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},{"id":"8","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]},{"id":"9","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2,"isTogglable":false},"content":[{"type":"text","text":"Bold","styles":{"bold":true}},{"type":"text","text":"Italic","styles":{"italic":true}},{"type":"text","text":"Regular","styles":{}}],"children":[{"id":"10","type":"image","props":{"backgroundColor":"default","textAlignment":"left","name":"","url":"https://ralfvanveen.com/wp-content/uploads/2021/06/Placeholder-_-Glossary.svg","caption":"","showPreview":true},"children":[{"id":"11","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph","styles":{}}],"children":[]}]}]},{"id":"12","type":"table","props":{"textColor":"default"},"content":{"type":"tableContent","columnWidths":[null,null],"rows":[{"cells":[{"type":"tableCell","content":[{"type":"text","text":"Table Cell","styles":{}}],"props":{"colspan":1,"rowspan":1,"backgroundColor":"default","textColor":"default","textAlignment":"left"}},{"type":"tableCell","content":[{"type":"text","text":"Table Cell","styles":{}}],"props":{"colspan":1,"rowspan":1,"backgroundColor":"default","textColor":"default","textAlignment":"left"}}]},{"cells":[{"type":"tableCell","content":[{"type":"text","text":"Table Cell","styles":{}}],"props":{"colspan":1,"rowspan":1,"backgroundColor":"default","textColor":"default","textAlignment":"left"}},{"type":"tableCell","content":[{"type":"text","text":"Table Cell","styles":{}}],"props":{"colspan":1,"rowspan":1,"backgroundColor":"default","textColor":"default","textAlignment":"left"}}]}]},"children":[]}]} +{"_meta":{"startPos":94,"endPos":276},"blocks":[{"id":"6","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},{"id":"7","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},{"id":"8","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]},{"id":"9","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2,"isTogglable":false},"content":[{"type":"text","text":"Bold","styles":{"bold":true}},{"type":"text","text":"Italic","styles":{"italic":true}},{"type":"text","text":"Regular","styles":{}}],"children":[{"id":"10","type":"image","props":{"backgroundColor":"default","textAlignment":"left","name":"","url":"https://ralfvanveen.com/wp-content/uploads/2021/06/Placeholder-_-Glossary.svg","caption":"","showPreview":true},"children":[{"id":"11","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph","styles":{}}],"children":[]}]}]},{"id":"12","type":"table","props":{"textColor":"default"},"content":{"type":"tableContent","columnWidths":[null,null],"rows":[{"cells":[{"type":"tableCell","content":[{"type":"text","text":"Table Cell","styles":{}}],"props":{"colspan":1,"rowspan":1,"backgroundColor":"default","textColor":"default","textAlignment":"left"}},{"type":"tableCell","content":[{"type":"text","text":"Table Cell","styles":{}}],"props":{"colspan":1,"rowspan":1,"backgroundColor":"default","textColor":"default","textAlignment":"left"}}]},{"cells":[{"type":"tableCell","content":[{"type":"text","text":"Table Cell","styles":{}}],"props":{"colspan":1,"rowspan":1,"backgroundColor":"default","textColor":"default","textAlignment":"left"}},{"type":"tableCell","content":[{"type":"text","text":"Table Cell","styles":{}}],"props":{"colspan":1,"rowspan":1,"backgroundColor":"default","textColor":"default","textAlignment":"left"}}]}]},"children":[]}]} +{"_meta":{"startPos":94,"endPos":276},"blocks":[{"id":"6","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},{"id":"7","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},{"id":"8","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]},{"id":"9","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2,"isTogglable":false},"content":[{"type":"text","text":"Bold","styles":{"bold":true}},{"type":"text","text":"Italic","styles":{"italic":true}},{"type":"text","text":"Regular","styles":{}}],"children":[{"id":"10","type":"image","props":{"backgroundColor":"default","textAlignment":"left","name":"","url":"https://ralfvanveen.com/wp-content/uploads/2021/06/Placeholder-_-Glossary.svg","caption":"","showPreview":true},"children":[{"id":"11","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph","styles":{}}],"children":[]}]}]},{"id":"12","type":"table","props":{"textColor":"default"},"content":{"type":"tableContent","columnWidths":[null,null],"rows":[{"cells":[{"type":"tableCell","content":[{"type":"text","text":"Table Cell","styles":{}}],"props":{"colspan":1,"rowspan":1,"backgroundColor":"default","textColor":"default","textAlignment":"left"}},{"type":"tableCell","content":[{"type":"text","text":"Table Cell","styles":{}}],"props":{"colspan":1,"rowspan":1,"backgroundColor":"default","textColor":"default","textAlignment":"left"}}]},{"cells":[{"type":"tableCell","content":[{"type":"text","text":"Table Cell","styles":{}}],"props":{"colspan":1,"rowspan":1,"backgroundColor":"default","textColor":"default","textAlignment":"left"}},{"type":"tableCell","content":[{"type":"text","text":"Table Cell","styles":{}}],"props":{"colspan":1,"rowspan":1,"backgroundColor":"default","textColor":"default","textAlignment":"left"}}]}]},"children":[]}]} +{"_meta":{"startPos":94,"endPos":276},"blocks":[{"id":"6","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},{"id":"7","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},{"id":"8","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]},{"id":"9","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2,"isTogglable":false},"content":[{"type":"text","text":"Bold","styles":{"bold":true}},{"type":"text","text":"Italic","styles":{"italic":true}},{"type":"text","text":"Regular","styles":{}}],"children":[{"id":"10","type":"image","props":{"backgroundColor":"default","textAlignment":"left","name":"","url":"https://ralfvanveen.com/wp-content/uploads/2021/06/Placeholder-_-Glossary.svg","caption":"","showPreview":true},"children":[{"id":"11","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph","styles":{}}],"children":[]}]}]},{"id":"12","type":"table","props":{"textColor":"default"},"content":{"type":"tableContent","columnWidths":[null,null],"rows":[{"cells":[{"type":"tableCell","content":[{"type":"text","text":"Table Cell","styles":{}}],"props":{"colspan":1,"rowspan":1,"backgroundColor":"default","textColor":"default","textAlignment":"left"}},{"type":"tableCell","content":[{"type":"text","text":"Table Cell","styles":{}}],"props":{"colspan":1,"rowspan":1,"backgroundColor":"default","textColor":"default","textAlignment":"left"}}]},{"cells":[{"type":"tableCell","content":[{"type":"text","text":"Table Cell","styles":{}}],"props":{"colspan":1,"rowspan":1,"backgroundColor":"default","textColor":"default","textAlignment":"left"}},{"type":"tableCell","content":[{"type":"text","text":"Table Cell","styles":{}}],"props":{"colspan":1,"rowspan":1,"backgroundColor":"default","textColor":"default","textAlignment":"left"}}]}]},"children":[]}]} +{"_meta":{"startPos":98,"endPos":276},"blocks":[{"id":"6","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"ested Paragraph 1","styles":{}}],"children":[]},{"id":"7","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},{"id":"8","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]},{"id":"9","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2,"isTogglable":false},"content":[{"type":"text","text":"Bold","styles":{"bold":true}},{"type":"text","text":"Italic","styles":{"italic":true}},{"type":"text","text":"Regular","styles":{}}],"children":[{"id":"10","type":"image","props":{"backgroundColor":"default","textAlignment":"left","name":"","url":"https://ralfvanveen.com/wp-content/uploads/2021/06/Placeholder-_-Glossary.svg","caption":"","showPreview":true},"children":[{"id":"11","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph","styles":{}}],"children":[]}]}]},{"id":"12","type":"table","props":{"textColor":"default"},"content":{"type":"tableContent","columnWidths":[null,null],"rows":[{"cells":[{"type":"tableCell","content":[{"type":"text","text":"Table Cell","styles":{}}],"props":{"colspan":1,"rowspan":1,"backgroundColor":"default","textColor":"default","textAlignment":"left"}},{"type":"tableCell","content":[{"type":"text","text":"Table Cell","styles":{}}],"props":{"colspan":1,"rowspan":1,"backgroundColor":"default","textColor":"default","textAlignment":"left"}}]},{"cells":[{"type":"tableCell","content":[{"type":"text","text":"Table Cell","styles":{}}],"props":{"colspan":1,"rowspan":1,"backgroundColor":"default","textColor":"default","textAlignment":"left"}},{"type":"tableCell","content":[{"type":"text","text":"Table Cell","styles":{}}],"props":{"colspan":1,"rowspan":1,"backgroundColor":"default","textColor":"default","textAlignment":"left"}}]}]},"children":[]}],"blockCutAtStart":"6"} +{"_meta":{"startPos":99,"endPos":276},"blocks":[{"id":"6","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"sted Paragraph 1","styles":{}}],"children":[]},{"id":"7","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},{"id":"8","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]},{"id":"9","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2,"isTogglable":false},"content":[{"type":"text","text":"Bold","styles":{"bold":true}},{"type":"text","text":"Italic","styles":{"italic":true}},{"type":"text","text":"Regular","styles":{}}],"children":[{"id":"10","type":"image","props":{"backgroundColor":"default","textAlignment":"left","name":"","url":"https://ralfvanveen.com/wp-content/uploads/2021/06/Placeholder-_-Glossary.svg","caption":"","showPreview":true},"children":[{"id":"11","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph","styles":{}}],"children":[]}]}]},{"id":"12","type":"table","props":{"textColor":"default"},"content":{"type":"tableContent","columnWidths":[null,null],"rows":[{"cells":[{"type":"tableCell","content":[{"type":"text","text":"Table Cell","styles":{}}],"props":{"colspan":1,"rowspan":1,"backgroundColor":"default","textColor":"default","textAlignment":"left"}},{"type":"tableCell","content":[{"type":"text","text":"Table Cell","styles":{}}],"props":{"colspan":1,"rowspan":1,"backgroundColor":"default","textColor":"default","textAlignment":"left"}}]},{"cells":[{"type":"tableCell","content":[{"type":"text","text":"Table Cell","styles":{}}],"props":{"colspan":1,"rowspan":1,"backgroundColor":"default","textColor":"default","textAlignment":"left"}},{"type":"tableCell","content":[{"type":"text","text":"Table Cell","styles":{}}],"props":{"colspan":1,"rowspan":1,"backgroundColor":"default","textColor":"default","textAlignment":"left"}}]}]},"children":[]}],"blockCutAtStart":"6"} +{"_meta":{"startPos":100,"endPos":276},"blocks":[{"id":"6","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"ted Paragraph 1","styles":{}}],"children":[]},{"id":"7","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},{"id":"8","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]},{"id":"9","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2,"isTogglable":false},"content":[{"type":"text","text":"Bold","styles":{"bold":true}},{"type":"text","text":"Italic","styles":{"italic":true}},{"type":"text","text":"Regular","styles":{}}],"children":[{"id":"10","type":"image","props":{"backgroundColor":"default","textAlignment":"left","name":"","url":"https://ralfvanveen.com/wp-content/uploads/2021/06/Placeholder-_-Glossary.svg","caption":"","showPreview":true},"children":[{"id":"11","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph","styles":{}}],"children":[]}]}]},{"id":"12","type":"table","props":{"textColor":"default"},"content":{"type":"tableContent","columnWidths":[null,null],"rows":[{"cells":[{"type":"tableCell","content":[{"type":"text","text":"Table Cell","styles":{}}],"props":{"colspan":1,"rowspan":1,"backgroundColor":"default","textColor":"default","textAlignment":"left"}},{"type":"tableCell","content":[{"type":"text","text":"Table Cell","styles":{}}],"props":{"colspan":1,"rowspan":1,"backgroundColor":"default","textColor":"default","textAlignment":"left"}}]},{"cells":[{"type":"tableCell","content":[{"type":"text","text":"Table Cell","styles":{}}],"props":{"colspan":1,"rowspan":1,"backgroundColor":"default","textColor":"default","textAlignment":"left"}},{"type":"tableCell","content":[{"type":"text","text":"Table Cell","styles":{}}],"props":{"colspan":1,"rowspan":1,"backgroundColor":"default","textColor":"default","textAlignment":"left"}}]}]},"children":[]}],"blockCutAtStart":"6"} +{"_meta":{"startPos":101,"endPos":276},"blocks":[{"id":"6","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"ed Paragraph 1","styles":{}}],"children":[]},{"id":"7","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},{"id":"8","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]},{"id":"9","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2,"isTogglable":false},"content":[{"type":"text","text":"Bold","styles":{"bold":true}},{"type":"text","text":"Italic","styles":{"italic":true}},{"type":"text","text":"Regular","styles":{}}],"children":[{"id":"10","type":"image","props":{"backgroundColor":"default","textAlignment":"left","name":"","url":"https://ralfvanveen.com/wp-content/uploads/2021/06/Placeholder-_-Glossary.svg","caption":"","showPreview":true},"children":[{"id":"11","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph","styles":{}}],"children":[]}]}]},{"id":"12","type":"table","props":{"textColor":"default"},"content":{"type":"tableContent","columnWidths":[null,null],"rows":[{"cells":[{"type":"tableCell","content":[{"type":"text","text":"Table Cell","styles":{}}],"props":{"colspan":1,"rowspan":1,"backgroundColor":"default","textColor":"default","textAlignment":"left"}},{"type":"tableCell","content":[{"type":"text","text":"Table Cell","styles":{}}],"props":{"colspan":1,"rowspan":1,"backgroundColor":"default","textColor":"default","textAlignment":"left"}}]},{"cells":[{"type":"tableCell","content":[{"type":"text","text":"Table Cell","styles":{}}],"props":{"colspan":1,"rowspan":1,"backgroundColor":"default","textColor":"default","textAlignment":"left"}},{"type":"tableCell","content":[{"type":"text","text":"Table Cell","styles":{}}],"props":{"colspan":1,"rowspan":1,"backgroundColor":"default","textColor":"default","textAlignment":"left"}}]}]},"children":[]}],"blockCutAtStart":"6"} +{"_meta":{"startPos":102,"endPos":276},"blocks":[{"id":"6","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"d Paragraph 1","styles":{}}],"children":[]},{"id":"7","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},{"id":"8","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]},{"id":"9","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2,"isTogglable":false},"content":[{"type":"text","text":"Bold","styles":{"bold":true}},{"type":"text","text":"Italic","styles":{"italic":true}},{"type":"text","text":"Regular","styles":{}}],"children":[{"id":"10","type":"image","props":{"backgroundColor":"default","textAlignment":"left","name":"","url":"https://ralfvanveen.com/wp-content/uploads/2021/06/Placeholder-_-Glossary.svg","caption":"","showPreview":true},"children":[{"id":"11","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph","styles":{}}],"children":[]}]}]},{"id":"12","type":"table","props":{"textColor":"default"},"content":{"type":"tableContent","columnWidths":[null,null],"rows":[{"cells":[{"type":"tableCell","content":[{"type":"text","text":"Table Cell","styles":{}}],"props":{"colspan":1,"rowspan":1,"backgroundColor":"default","textColor":"default","textAlignment":"left"}},{"type":"tableCell","content":[{"type":"text","text":"Table Cell","styles":{}}],"props":{"colspan":1,"rowspan":1,"backgroundColor":"default","textColor":"default","textAlignment":"left"}}]},{"cells":[{"type":"tableCell","content":[{"type":"text","text":"Table Cell","styles":{}}],"props":{"colspan":1,"rowspan":1,"backgroundColor":"default","textColor":"default","textAlignment":"left"}},{"type":"tableCell","content":[{"type":"text","text":"Table Cell","styles":{}}],"props":{"colspan":1,"rowspan":1,"backgroundColor":"default","textColor":"default","textAlignment":"left"}}]}]},"children":[]}],"blockCutAtStart":"6"} +{"_meta":{"startPos":103,"endPos":276},"blocks":[{"id":"6","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":" Paragraph 1","styles":{}}],"children":[]},{"id":"7","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},{"id":"8","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]},{"id":"9","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2,"isTogglable":false},"content":[{"type":"text","text":"Bold","styles":{"bold":true}},{"type":"text","text":"Italic","styles":{"italic":true}},{"type":"text","text":"Regular","styles":{}}],"children":[{"id":"10","type":"image","props":{"backgroundColor":"default","textAlignment":"left","name":"","url":"https://ralfvanveen.com/wp-content/uploads/2021/06/Placeholder-_-Glossary.svg","caption":"","showPreview":true},"children":[{"id":"11","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph","styles":{}}],"children":[]}]}]},{"id":"12","type":"table","props":{"textColor":"default"},"content":{"type":"tableContent","columnWidths":[null,null],"rows":[{"cells":[{"type":"tableCell","content":[{"type":"text","text":"Table Cell","styles":{}}],"props":{"colspan":1,"rowspan":1,"backgroundColor":"default","textColor":"default","textAlignment":"left"}},{"type":"tableCell","content":[{"type":"text","text":"Table Cell","styles":{}}],"props":{"colspan":1,"rowspan":1,"backgroundColor":"default","textColor":"default","textAlignment":"left"}}]},{"cells":[{"type":"tableCell","content":[{"type":"text","text":"Table Cell","styles":{}}],"props":{"colspan":1,"rowspan":1,"backgroundColor":"default","textColor":"default","textAlignment":"left"}},{"type":"tableCell","content":[{"type":"text","text":"Table Cell","styles":{}}],"props":{"colspan":1,"rowspan":1,"backgroundColor":"default","textColor":"default","textAlignment":"left"}}]}]},"children":[]}],"blockCutAtStart":"6"} +{"_meta":{"startPos":104,"endPos":276},"blocks":[{"id":"6","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Paragraph 1","styles":{}}],"children":[]},{"id":"7","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},{"id":"8","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]},{"id":"9","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2,"isTogglable":false},"content":[{"type":"text","text":"Bold","styles":{"bold":true}},{"type":"text","text":"Italic","styles":{"italic":true}},{"type":"text","text":"Regular","styles":{}}],"children":[{"id":"10","type":"image","props":{"backgroundColor":"default","textAlignment":"left","name":"","url":"https://ralfvanveen.com/wp-content/uploads/2021/06/Placeholder-_-Glossary.svg","caption":"","showPreview":true},"children":[{"id":"11","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph","styles":{}}],"children":[]}]}]},{"id":"12","type":"table","props":{"textColor":"default"},"content":{"type":"tableContent","columnWidths":[null,null],"rows":[{"cells":[{"type":"tableCell","content":[{"type":"text","text":"Table Cell","styles":{}}],"props":{"colspan":1,"rowspan":1,"backgroundColor":"default","textColor":"default","textAlignment":"left"}},{"type":"tableCell","content":[{"type":"text","text":"Table Cell","styles":{}}],"props":{"colspan":1,"rowspan":1,"backgroundColor":"default","textColor":"default","textAlignment":"left"}}]},{"cells":[{"type":"tableCell","content":[{"type":"text","text":"Table Cell","styles":{}}],"props":{"colspan":1,"rowspan":1,"backgroundColor":"default","textColor":"default","textAlignment":"left"}},{"type":"tableCell","content":[{"type":"text","text":"Table Cell","styles":{}}],"props":{"colspan":1,"rowspan":1,"backgroundColor":"default","textColor":"default","textAlignment":"left"}}]}]},"children":[]}],"blockCutAtStart":"6"} +{"_meta":{"startPos":105,"endPos":276},"blocks":[{"id":"6","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"aragraph 1","styles":{}}],"children":[]},{"id":"7","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},{"id":"8","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]},{"id":"9","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2,"isTogglable":false},"content":[{"type":"text","text":"Bold","styles":{"bold":true}},{"type":"text","text":"Italic","styles":{"italic":true}},{"type":"text","text":"Regular","styles":{}}],"children":[{"id":"10","type":"image","props":{"backgroundColor":"default","textAlignment":"left","name":"","url":"https://ralfvanveen.com/wp-content/uploads/2021/06/Placeholder-_-Glossary.svg","caption":"","showPreview":true},"children":[{"id":"11","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph","styles":{}}],"children":[]}]}]},{"id":"12","type":"table","props":{"textColor":"default"},"content":{"type":"tableContent","columnWidths":[null,null],"rows":[{"cells":[{"type":"tableCell","content":[{"type":"text","text":"Table Cell","styles":{}}],"props":{"colspan":1,"rowspan":1,"backgroundColor":"default","textColor":"default","textAlignment":"left"}},{"type":"tableCell","content":[{"type":"text","text":"Table Cell","styles":{}}],"props":{"colspan":1,"rowspan":1,"backgroundColor":"default","textColor":"default","textAlignment":"left"}}]},{"cells":[{"type":"tableCell","content":[{"type":"text","text":"Table Cell","styles":{}}],"props":{"colspan":1,"rowspan":1,"backgroundColor":"default","textColor":"default","textAlignment":"left"}},{"type":"tableCell","content":[{"type":"text","text":"Table Cell","styles":{}}],"props":{"colspan":1,"rowspan":1,"backgroundColor":"default","textColor":"default","textAlignment":"left"}}]}]},"children":[]}],"blockCutAtStart":"6"} +{"_meta":{"startPos":106,"endPos":276},"blocks":[{"id":"6","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"ragraph 1","styles":{}}],"children":[]},{"id":"7","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},{"id":"8","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]},{"id":"9","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2,"isTogglable":false},"content":[{"type":"text","text":"Bold","styles":{"bold":true}},{"type":"text","text":"Italic","styles":{"italic":true}},{"type":"text","text":"Regular","styles":{}}],"children":[{"id":"10","type":"image","props":{"backgroundColor":"default","textAlignment":"left","name":"","url":"https://ralfvanveen.com/wp-content/uploads/2021/06/Placeholder-_-Glossary.svg","caption":"","showPreview":true},"children":[{"id":"11","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph","styles":{}}],"children":[]}]}]},{"id":"12","type":"table","props":{"textColor":"default"},"content":{"type":"tableContent","columnWidths":[null,null],"rows":[{"cells":[{"type":"tableCell","content":[{"type":"text","text":"Table Cell","styles":{}}],"props":{"colspan":1,"rowspan":1,"backgroundColor":"default","textColor":"default","textAlignment":"left"}},{"type":"tableCell","content":[{"type":"text","text":"Table Cell","styles":{}}],"props":{"colspan":1,"rowspan":1,"backgroundColor":"default","textColor":"default","textAlignment":"left"}}]},{"cells":[{"type":"tableCell","content":[{"type":"text","text":"Table Cell","styles":{}}],"props":{"colspan":1,"rowspan":1,"backgroundColor":"default","textColor":"default","textAlignment":"left"}},{"type":"tableCell","content":[{"type":"text","text":"Table Cell","styles":{}}],"props":{"colspan":1,"rowspan":1,"backgroundColor":"default","textColor":"default","textAlignment":"left"}}]}]},"children":[]}],"blockCutAtStart":"6"} +{"_meta":{"startPos":107,"endPos":276},"blocks":[{"id":"6","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"agraph 1","styles":{}}],"children":[]},{"id":"7","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},{"id":"8","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]},{"id":"9","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2,"isTogglable":false},"content":[{"type":"text","text":"Bold","styles":{"bold":true}},{"type":"text","text":"Italic","styles":{"italic":true}},{"type":"text","text":"Regular","styles":{}}],"children":[{"id":"10","type":"image","props":{"backgroundColor":"default","textAlignment":"left","name":"","url":"https://ralfvanveen.com/wp-content/uploads/2021/06/Placeholder-_-Glossary.svg","caption":"","showPreview":true},"children":[{"id":"11","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph","styles":{}}],"children":[]}]}]},{"id":"12","type":"table","props":{"textColor":"default"},"content":{"type":"tableContent","columnWidths":[null,null],"rows":[{"cells":[{"type":"tableCell","content":[{"type":"text","text":"Table Cell","styles":{}}],"props":{"colspan":1,"rowspan":1,"backgroundColor":"default","textColor":"default","textAlignment":"left"}},{"type":"tableCell","content":[{"type":"text","text":"Table Cell","styles":{}}],"props":{"colspan":1,"rowspan":1,"backgroundColor":"default","textColor":"default","textAlignment":"left"}}]},{"cells":[{"type":"tableCell","content":[{"type":"text","text":"Table Cell","styles":{}}],"props":{"colspan":1,"rowspan":1,"backgroundColor":"default","textColor":"default","textAlignment":"left"}},{"type":"tableCell","content":[{"type":"text","text":"Table Cell","styles":{}}],"props":{"colspan":1,"rowspan":1,"backgroundColor":"default","textColor":"default","textAlignment":"left"}}]}]},"children":[]}],"blockCutAtStart":"6"} +{"_meta":{"startPos":108,"endPos":276},"blocks":[{"id":"6","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"graph 1","styles":{}}],"children":[]},{"id":"7","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},{"id":"8","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]},{"id":"9","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2,"isTogglable":false},"content":[{"type":"text","text":"Bold","styles":{"bold":true}},{"type":"text","text":"Italic","styles":{"italic":true}},{"type":"text","text":"Regular","styles":{}}],"children":[{"id":"10","type":"image","props":{"backgroundColor":"default","textAlignment":"left","name":"","url":"https://ralfvanveen.com/wp-content/uploads/2021/06/Placeholder-_-Glossary.svg","caption":"","showPreview":true},"children":[{"id":"11","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph","styles":{}}],"children":[]}]}]},{"id":"12","type":"table","props":{"textColor":"default"},"content":{"type":"tableContent","columnWidths":[null,null],"rows":[{"cells":[{"type":"tableCell","content":[{"type":"text","text":"Table Cell","styles":{}}],"props":{"colspan":1,"rowspan":1,"backgroundColor":"default","textColor":"default","textAlignment":"left"}},{"type":"tableCell","content":[{"type":"text","text":"Table Cell","styles":{}}],"props":{"colspan":1,"rowspan":1,"backgroundColor":"default","textColor":"default","textAlignment":"left"}}]},{"cells":[{"type":"tableCell","content":[{"type":"text","text":"Table Cell","styles":{}}],"props":{"colspan":1,"rowspan":1,"backgroundColor":"default","textColor":"default","textAlignment":"left"}},{"type":"tableCell","content":[{"type":"text","text":"Table Cell","styles":{}}],"props":{"colspan":1,"rowspan":1,"backgroundColor":"default","textColor":"default","textAlignment":"left"}}]}]},"children":[]}],"blockCutAtStart":"6"} +{"_meta":{"startPos":109,"endPos":276},"blocks":[{"id":"6","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"raph 1","styles":{}}],"children":[]},{"id":"7","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},{"id":"8","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]},{"id":"9","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2,"isTogglable":false},"content":[{"type":"text","text":"Bold","styles":{"bold":true}},{"type":"text","text":"Italic","styles":{"italic":true}},{"type":"text","text":"Regular","styles":{}}],"children":[{"id":"10","type":"image","props":{"backgroundColor":"default","textAlignment":"left","name":"","url":"https://ralfvanveen.com/wp-content/uploads/2021/06/Placeholder-_-Glossary.svg","caption":"","showPreview":true},"children":[{"id":"11","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph","styles":{}}],"children":[]}]}]},{"id":"12","type":"table","props":{"textColor":"default"},"content":{"type":"tableContent","columnWidths":[null,null],"rows":[{"cells":[{"type":"tableCell","content":[{"type":"text","text":"Table Cell","styles":{}}],"props":{"colspan":1,"rowspan":1,"backgroundColor":"default","textColor":"default","textAlignment":"left"}},{"type":"tableCell","content":[{"type":"text","text":"Table Cell","styles":{}}],"props":{"colspan":1,"rowspan":1,"backgroundColor":"default","textColor":"default","textAlignment":"left"}}]},{"cells":[{"type":"tableCell","content":[{"type":"text","text":"Table Cell","styles":{}}],"props":{"colspan":1,"rowspan":1,"backgroundColor":"default","textColor":"default","textAlignment":"left"}},{"type":"tableCell","content":[{"type":"text","text":"Table Cell","styles":{}}],"props":{"colspan":1,"rowspan":1,"backgroundColor":"default","textColor":"default","textAlignment":"left"}}]}]},"children":[]}],"blockCutAtStart":"6"} +{"_meta":{"startPos":110,"endPos":276},"blocks":[{"id":"6","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"aph 1","styles":{}}],"children":[]},{"id":"7","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},{"id":"8","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]},{"id":"9","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2,"isTogglable":false},"content":[{"type":"text","text":"Bold","styles":{"bold":true}},{"type":"text","text":"Italic","styles":{"italic":true}},{"type":"text","text":"Regular","styles":{}}],"children":[{"id":"10","type":"image","props":{"backgroundColor":"default","textAlignment":"left","name":"","url":"https://ralfvanveen.com/wp-content/uploads/2021/06/Placeholder-_-Glossary.svg","caption":"","showPreview":true},"children":[{"id":"11","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph","styles":{}}],"children":[]}]}]},{"id":"12","type":"table","props":{"textColor":"default"},"content":{"type":"tableContent","columnWidths":[null,null],"rows":[{"cells":[{"type":"tableCell","content":[{"type":"text","text":"Table Cell","styles":{}}],"props":{"colspan":1,"rowspan":1,"backgroundColor":"default","textColor":"default","textAlignment":"left"}},{"type":"tableCell","content":[{"type":"text","text":"Table Cell","styles":{}}],"props":{"colspan":1,"rowspan":1,"backgroundColor":"default","textColor":"default","textAlignment":"left"}}]},{"cells":[{"type":"tableCell","content":[{"type":"text","text":"Table Cell","styles":{}}],"props":{"colspan":1,"rowspan":1,"backgroundColor":"default","textColor":"default","textAlignment":"left"}},{"type":"tableCell","content":[{"type":"text","text":"Table Cell","styles":{}}],"props":{"colspan":1,"rowspan":1,"backgroundColor":"default","textColor":"default","textAlignment":"left"}}]}]},"children":[]}],"blockCutAtStart":"6"} +{"_meta":{"startPos":111,"endPos":276},"blocks":[{"id":"6","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"ph 1","styles":{}}],"children":[]},{"id":"7","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},{"id":"8","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]},{"id":"9","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2,"isTogglable":false},"content":[{"type":"text","text":"Bold","styles":{"bold":true}},{"type":"text","text":"Italic","styles":{"italic":true}},{"type":"text","text":"Regular","styles":{}}],"children":[{"id":"10","type":"image","props":{"backgroundColor":"default","textAlignment":"left","name":"","url":"https://ralfvanveen.com/wp-content/uploads/2021/06/Placeholder-_-Glossary.svg","caption":"","showPreview":true},"children":[{"id":"11","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph","styles":{}}],"children":[]}]}]},{"id":"12","type":"table","props":{"textColor":"default"},"content":{"type":"tableContent","columnWidths":[null,null],"rows":[{"cells":[{"type":"tableCell","content":[{"type":"text","text":"Table Cell","styles":{}}],"props":{"colspan":1,"rowspan":1,"backgroundColor":"default","textColor":"default","textAlignment":"left"}},{"type":"tableCell","content":[{"type":"text","text":"Table Cell","styles":{}}],"props":{"colspan":1,"rowspan":1,"backgroundColor":"default","textColor":"default","textAlignment":"left"}}]},{"cells":[{"type":"tableCell","content":[{"type":"text","text":"Table Cell","styles":{}}],"props":{"colspan":1,"rowspan":1,"backgroundColor":"default","textColor":"default","textAlignment":"left"}},{"type":"tableCell","content":[{"type":"text","text":"Table Cell","styles":{}}],"props":{"colspan":1,"rowspan":1,"backgroundColor":"default","textColor":"default","textAlignment":"left"}}]}]},"children":[]}],"blockCutAtStart":"6"} +{"_meta":{"startPos":112,"endPos":276},"blocks":[{"id":"6","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"h 1","styles":{}}],"children":[]},{"id":"7","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},{"id":"8","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]},{"id":"9","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2,"isTogglable":false},"content":[{"type":"text","text":"Bold","styles":{"bold":true}},{"type":"text","text":"Italic","styles":{"italic":true}},{"type":"text","text":"Regular","styles":{}}],"children":[{"id":"10","type":"image","props":{"backgroundColor":"default","textAlignment":"left","name":"","url":"https://ralfvanveen.com/wp-content/uploads/2021/06/Placeholder-_-Glossary.svg","caption":"","showPreview":true},"children":[{"id":"11","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph","styles":{}}],"children":[]}]}]},{"id":"12","type":"table","props":{"textColor":"default"},"content":{"type":"tableContent","columnWidths":[null,null],"rows":[{"cells":[{"type":"tableCell","content":[{"type":"text","text":"Table Cell","styles":{}}],"props":{"colspan":1,"rowspan":1,"backgroundColor":"default","textColor":"default","textAlignment":"left"}},{"type":"tableCell","content":[{"type":"text","text":"Table Cell","styles":{}}],"props":{"colspan":1,"rowspan":1,"backgroundColor":"default","textColor":"default","textAlignment":"left"}}]},{"cells":[{"type":"tableCell","content":[{"type":"text","text":"Table Cell","styles":{}}],"props":{"colspan":1,"rowspan":1,"backgroundColor":"default","textColor":"default","textAlignment":"left"}},{"type":"tableCell","content":[{"type":"text","text":"Table Cell","styles":{}}],"props":{"colspan":1,"rowspan":1,"backgroundColor":"default","textColor":"default","textAlignment":"left"}}]}]},"children":[]}],"blockCutAtStart":"6"} +{"_meta":{"startPos":113,"endPos":276},"blocks":[{"id":"6","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":" 1","styles":{}}],"children":[]},{"id":"7","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},{"id":"8","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]},{"id":"9","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2,"isTogglable":false},"content":[{"type":"text","text":"Bold","styles":{"bold":true}},{"type":"text","text":"Italic","styles":{"italic":true}},{"type":"text","text":"Regular","styles":{}}],"children":[{"id":"10","type":"image","props":{"backgroundColor":"default","textAlignment":"left","name":"","url":"https://ralfvanveen.com/wp-content/uploads/2021/06/Placeholder-_-Glossary.svg","caption":"","showPreview":true},"children":[{"id":"11","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph","styles":{}}],"children":[]}]}]},{"id":"12","type":"table","props":{"textColor":"default"},"content":{"type":"tableContent","columnWidths":[null,null],"rows":[{"cells":[{"type":"tableCell","content":[{"type":"text","text":"Table Cell","styles":{}}],"props":{"colspan":1,"rowspan":1,"backgroundColor":"default","textColor":"default","textAlignment":"left"}},{"type":"tableCell","content":[{"type":"text","text":"Table Cell","styles":{}}],"props":{"colspan":1,"rowspan":1,"backgroundColor":"default","textColor":"default","textAlignment":"left"}}]},{"cells":[{"type":"tableCell","content":[{"type":"text","text":"Table Cell","styles":{}}],"props":{"colspan":1,"rowspan":1,"backgroundColor":"default","textColor":"default","textAlignment":"left"}},{"type":"tableCell","content":[{"type":"text","text":"Table Cell","styles":{}}],"props":{"colspan":1,"rowspan":1,"backgroundColor":"default","textColor":"default","textAlignment":"left"}}]}]},"children":[]}],"blockCutAtStart":"6"} +{"_meta":{"startPos":114,"endPos":276},"blocks":[{"id":"6","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"1","styles":{}}],"children":[]},{"id":"7","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},{"id":"8","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]},{"id":"9","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2,"isTogglable":false},"content":[{"type":"text","text":"Bold","styles":{"bold":true}},{"type":"text","text":"Italic","styles":{"italic":true}},{"type":"text","text":"Regular","styles":{}}],"children":[{"id":"10","type":"image","props":{"backgroundColor":"default","textAlignment":"left","name":"","url":"https://ralfvanveen.com/wp-content/uploads/2021/06/Placeholder-_-Glossary.svg","caption":"","showPreview":true},"children":[{"id":"11","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph","styles":{}}],"children":[]}]}]},{"id":"12","type":"table","props":{"textColor":"default"},"content":{"type":"tableContent","columnWidths":[null,null],"rows":[{"cells":[{"type":"tableCell","content":[{"type":"text","text":"Table Cell","styles":{}}],"props":{"colspan":1,"rowspan":1,"backgroundColor":"default","textColor":"default","textAlignment":"left"}},{"type":"tableCell","content":[{"type":"text","text":"Table Cell","styles":{}}],"props":{"colspan":1,"rowspan":1,"backgroundColor":"default","textColor":"default","textAlignment":"left"}}]},{"cells":[{"type":"tableCell","content":[{"type":"text","text":"Table Cell","styles":{}}],"props":{"colspan":1,"rowspan":1,"backgroundColor":"default","textColor":"default","textAlignment":"left"}},{"type":"tableCell","content":[{"type":"text","text":"Table Cell","styles":{}}],"props":{"colspan":1,"rowspan":1,"backgroundColor":"default","textColor":"default","textAlignment":"left"}}]}]},"children":[]}],"blockCutAtStart":"6"} +{"_meta":{"startPos":117,"endPos":276},"blocks":[{"id":"7","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},{"id":"8","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]},{"id":"9","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2,"isTogglable":false},"content":[{"type":"text","text":"Bold","styles":{"bold":true}},{"type":"text","text":"Italic","styles":{"italic":true}},{"type":"text","text":"Regular","styles":{}}],"children":[{"id":"10","type":"image","props":{"backgroundColor":"default","textAlignment":"left","name":"","url":"https://ralfvanveen.com/wp-content/uploads/2021/06/Placeholder-_-Glossary.svg","caption":"","showPreview":true},"children":[{"id":"11","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph","styles":{}}],"children":[]}]}]},{"id":"12","type":"table","props":{"textColor":"default"},"content":{"type":"tableContent","columnWidths":[null,null],"rows":[{"cells":[{"type":"tableCell","content":[{"type":"text","text":"Table Cell","styles":{}}],"props":{"colspan":1,"rowspan":1,"backgroundColor":"default","textColor":"default","textAlignment":"left"}},{"type":"tableCell","content":[{"type":"text","text":"Table Cell","styles":{}}],"props":{"colspan":1,"rowspan":1,"backgroundColor":"default","textColor":"default","textAlignment":"left"}}]},{"cells":[{"type":"tableCell","content":[{"type":"text","text":"Table Cell","styles":{}}],"props":{"colspan":1,"rowspan":1,"backgroundColor":"default","textColor":"default","textAlignment":"left"}},{"type":"tableCell","content":[{"type":"text","text":"Table Cell","styles":{}}],"props":{"colspan":1,"rowspan":1,"backgroundColor":"default","textColor":"default","textAlignment":"left"}}]}]},"children":[]}]} +{"_meta":{"startPos":117,"endPos":276},"blocks":[{"id":"7","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},{"id":"8","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]},{"id":"9","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2,"isTogglable":false},"content":[{"type":"text","text":"Bold","styles":{"bold":true}},{"type":"text","text":"Italic","styles":{"italic":true}},{"type":"text","text":"Regular","styles":{}}],"children":[{"id":"10","type":"image","props":{"backgroundColor":"default","textAlignment":"left","name":"","url":"https://ralfvanveen.com/wp-content/uploads/2021/06/Placeholder-_-Glossary.svg","caption":"","showPreview":true},"children":[{"id":"11","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph","styles":{}}],"children":[]}]}]},{"id":"12","type":"table","props":{"textColor":"default"},"content":{"type":"tableContent","columnWidths":[null,null],"rows":[{"cells":[{"type":"tableCell","content":[{"type":"text","text":"Table Cell","styles":{}}],"props":{"colspan":1,"rowspan":1,"backgroundColor":"default","textColor":"default","textAlignment":"left"}},{"type":"tableCell","content":[{"type":"text","text":"Table Cell","styles":{}}],"props":{"colspan":1,"rowspan":1,"backgroundColor":"default","textColor":"default","textAlignment":"left"}}]},{"cells":[{"type":"tableCell","content":[{"type":"text","text":"Table Cell","styles":{}}],"props":{"colspan":1,"rowspan":1,"backgroundColor":"default","textColor":"default","textAlignment":"left"}},{"type":"tableCell","content":[{"type":"text","text":"Table Cell","styles":{}}],"props":{"colspan":1,"rowspan":1,"backgroundColor":"default","textColor":"default","textAlignment":"left"}}]}]},"children":[]}]} +{"_meta":{"startPos":117,"endPos":276},"blocks":[{"id":"7","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},{"id":"8","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]},{"id":"9","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2,"isTogglable":false},"content":[{"type":"text","text":"Bold","styles":{"bold":true}},{"type":"text","text":"Italic","styles":{"italic":true}},{"type":"text","text":"Regular","styles":{}}],"children":[{"id":"10","type":"image","props":{"backgroundColor":"default","textAlignment":"left","name":"","url":"https://ralfvanveen.com/wp-content/uploads/2021/06/Placeholder-_-Glossary.svg","caption":"","showPreview":true},"children":[{"id":"11","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph","styles":{}}],"children":[]}]}]},{"id":"12","type":"table","props":{"textColor":"default"},"content":{"type":"tableContent","columnWidths":[null,null],"rows":[{"cells":[{"type":"tableCell","content":[{"type":"text","text":"Table Cell","styles":{}}],"props":{"colspan":1,"rowspan":1,"backgroundColor":"default","textColor":"default","textAlignment":"left"}},{"type":"tableCell","content":[{"type":"text","text":"Table Cell","styles":{}}],"props":{"colspan":1,"rowspan":1,"backgroundColor":"default","textColor":"default","textAlignment":"left"}}]},{"cells":[{"type":"tableCell","content":[{"type":"text","text":"Table Cell","styles":{}}],"props":{"colspan":1,"rowspan":1,"backgroundColor":"default","textColor":"default","textAlignment":"left"}},{"type":"tableCell","content":[{"type":"text","text":"Table Cell","styles":{}}],"props":{"colspan":1,"rowspan":1,"backgroundColor":"default","textColor":"default","textAlignment":"left"}}]}]},"children":[]}]} +{"_meta":{"startPos":117,"endPos":276},"blocks":[{"id":"7","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},{"id":"8","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]},{"id":"9","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2,"isTogglable":false},"content":[{"type":"text","text":"Bold","styles":{"bold":true}},{"type":"text","text":"Italic","styles":{"italic":true}},{"type":"text","text":"Regular","styles":{}}],"children":[{"id":"10","type":"image","props":{"backgroundColor":"default","textAlignment":"left","name":"","url":"https://ralfvanveen.com/wp-content/uploads/2021/06/Placeholder-_-Glossary.svg","caption":"","showPreview":true},"children":[{"id":"11","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph","styles":{}}],"children":[]}]}]},{"id":"12","type":"table","props":{"textColor":"default"},"content":{"type":"tableContent","columnWidths":[null,null],"rows":[{"cells":[{"type":"tableCell","content":[{"type":"text","text":"Table Cell","styles":{}}],"props":{"colspan":1,"rowspan":1,"backgroundColor":"default","textColor":"default","textAlignment":"left"}},{"type":"tableCell","content":[{"type":"text","text":"Table Cell","styles":{}}],"props":{"colspan":1,"rowspan":1,"backgroundColor":"default","textColor":"default","textAlignment":"left"}}]},{"cells":[{"type":"tableCell","content":[{"type":"text","text":"Table Cell","styles":{}}],"props":{"colspan":1,"rowspan":1,"backgroundColor":"default","textColor":"default","textAlignment":"left"}},{"type":"tableCell","content":[{"type":"text","text":"Table Cell","styles":{}}],"props":{"colspan":1,"rowspan":1,"backgroundColor":"default","textColor":"default","textAlignment":"left"}}]}]},"children":[]}]} +{"_meta":{"startPos":117,"endPos":276},"blocks":[{"id":"7","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},{"id":"8","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]},{"id":"9","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2,"isTogglable":false},"content":[{"type":"text","text":"Bold","styles":{"bold":true}},{"type":"text","text":"Italic","styles":{"italic":true}},{"type":"text","text":"Regular","styles":{}}],"children":[{"id":"10","type":"image","props":{"backgroundColor":"default","textAlignment":"left","name":"","url":"https://ralfvanveen.com/wp-content/uploads/2021/06/Placeholder-_-Glossary.svg","caption":"","showPreview":true},"children":[{"id":"11","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph","styles":{}}],"children":[]}]}]},{"id":"12","type":"table","props":{"textColor":"default"},"content":{"type":"tableContent","columnWidths":[null,null],"rows":[{"cells":[{"type":"tableCell","content":[{"type":"text","text":"Table Cell","styles":{}}],"props":{"colspan":1,"rowspan":1,"backgroundColor":"default","textColor":"default","textAlignment":"left"}},{"type":"tableCell","content":[{"type":"text","text":"Table Cell","styles":{}}],"props":{"colspan":1,"rowspan":1,"backgroundColor":"default","textColor":"default","textAlignment":"left"}}]},{"cells":[{"type":"tableCell","content":[{"type":"text","text":"Table Cell","styles":{}}],"props":{"colspan":1,"rowspan":1,"backgroundColor":"default","textColor":"default","textAlignment":"left"}},{"type":"tableCell","content":[{"type":"text","text":"Table Cell","styles":{}}],"props":{"colspan":1,"rowspan":1,"backgroundColor":"default","textColor":"default","textAlignment":"left"}}]}]},"children":[]}]} +{"_meta":{"startPos":120,"endPos":276},"blocks":[{"id":"7","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"ested Paragraph 2","styles":{}}],"children":[]},{"id":"8","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]},{"id":"9","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2,"isTogglable":false},"content":[{"type":"text","text":"Bold","styles":{"bold":true}},{"type":"text","text":"Italic","styles":{"italic":true}},{"type":"text","text":"Regular","styles":{}}],"children":[{"id":"10","type":"image","props":{"backgroundColor":"default","textAlignment":"left","name":"","url":"https://ralfvanveen.com/wp-content/uploads/2021/06/Placeholder-_-Glossary.svg","caption":"","showPreview":true},"children":[{"id":"11","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph","styles":{}}],"children":[]}]}]},{"id":"12","type":"table","props":{"textColor":"default"},"content":{"type":"tableContent","columnWidths":[null,null],"rows":[{"cells":[{"type":"tableCell","content":[{"type":"text","text":"Table Cell","styles":{}}],"props":{"colspan":1,"rowspan":1,"backgroundColor":"default","textColor":"default","textAlignment":"left"}},{"type":"tableCell","content":[{"type":"text","text":"Table Cell","styles":{}}],"props":{"colspan":1,"rowspan":1,"backgroundColor":"default","textColor":"default","textAlignment":"left"}}]},{"cells":[{"type":"tableCell","content":[{"type":"text","text":"Table Cell","styles":{}}],"props":{"colspan":1,"rowspan":1,"backgroundColor":"default","textColor":"default","textAlignment":"left"}},{"type":"tableCell","content":[{"type":"text","text":"Table Cell","styles":{}}],"props":{"colspan":1,"rowspan":1,"backgroundColor":"default","textColor":"default","textAlignment":"left"}}]}]},"children":[]}],"blockCutAtStart":"7"} +{"_meta":{"startPos":121,"endPos":276},"blocks":[{"id":"7","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"sted Paragraph 2","styles":{}}],"children":[]},{"id":"8","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]},{"id":"9","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2,"isTogglable":false},"content":[{"type":"text","text":"Bold","styles":{"bold":true}},{"type":"text","text":"Italic","styles":{"italic":true}},{"type":"text","text":"Regular","styles":{}}],"children":[{"id":"10","type":"image","props":{"backgroundColor":"default","textAlignment":"left","name":"","url":"https://ralfvanveen.com/wp-content/uploads/2021/06/Placeholder-_-Glossary.svg","caption":"","showPreview":true},"children":[{"id":"11","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph","styles":{}}],"children":[]}]}]},{"id":"12","type":"table","props":{"textColor":"default"},"content":{"type":"tableContent","columnWidths":[null,null],"rows":[{"cells":[{"type":"tableCell","content":[{"type":"text","text":"Table Cell","styles":{}}],"props":{"colspan":1,"rowspan":1,"backgroundColor":"default","textColor":"default","textAlignment":"left"}},{"type":"tableCell","content":[{"type":"text","text":"Table Cell","styles":{}}],"props":{"colspan":1,"rowspan":1,"backgroundColor":"default","textColor":"default","textAlignment":"left"}}]},{"cells":[{"type":"tableCell","content":[{"type":"text","text":"Table Cell","styles":{}}],"props":{"colspan":1,"rowspan":1,"backgroundColor":"default","textColor":"default","textAlignment":"left"}},{"type":"tableCell","content":[{"type":"text","text":"Table Cell","styles":{}}],"props":{"colspan":1,"rowspan":1,"backgroundColor":"default","textColor":"default","textAlignment":"left"}}]}]},"children":[]}],"blockCutAtStart":"7"} +{"_meta":{"startPos":122,"endPos":276},"blocks":[{"id":"7","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"ted Paragraph 2","styles":{}}],"children":[]},{"id":"8","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]},{"id":"9","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2,"isTogglable":false},"content":[{"type":"text","text":"Bold","styles":{"bold":true}},{"type":"text","text":"Italic","styles":{"italic":true}},{"type":"text","text":"Regular","styles":{}}],"children":[{"id":"10","type":"image","props":{"backgroundColor":"default","textAlignment":"left","name":"","url":"https://ralfvanveen.com/wp-content/uploads/2021/06/Placeholder-_-Glossary.svg","caption":"","showPreview":true},"children":[{"id":"11","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph","styles":{}}],"children":[]}]}]},{"id":"12","type":"table","props":{"textColor":"default"},"content":{"type":"tableContent","columnWidths":[null,null],"rows":[{"cells":[{"type":"tableCell","content":[{"type":"text","text":"Table Cell","styles":{}}],"props":{"colspan":1,"rowspan":1,"backgroundColor":"default","textColor":"default","textAlignment":"left"}},{"type":"tableCell","content":[{"type":"text","text":"Table Cell","styles":{}}],"props":{"colspan":1,"rowspan":1,"backgroundColor":"default","textColor":"default","textAlignment":"left"}}]},{"cells":[{"type":"tableCell","content":[{"type":"text","text":"Table Cell","styles":{}}],"props":{"colspan":1,"rowspan":1,"backgroundColor":"default","textColor":"default","textAlignment":"left"}},{"type":"tableCell","content":[{"type":"text","text":"Table Cell","styles":{}}],"props":{"colspan":1,"rowspan":1,"backgroundColor":"default","textColor":"default","textAlignment":"left"}}]}]},"children":[]}],"blockCutAtStart":"7"} +{"_meta":{"startPos":123,"endPos":276},"blocks":[{"id":"7","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"ed Paragraph 2","styles":{}}],"children":[]},{"id":"8","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]},{"id":"9","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2,"isTogglable":false},"content":[{"type":"text","text":"Bold","styles":{"bold":true}},{"type":"text","text":"Italic","styles":{"italic":true}},{"type":"text","text":"Regular","styles":{}}],"children":[{"id":"10","type":"image","props":{"backgroundColor":"default","textAlignment":"left","name":"","url":"https://ralfvanveen.com/wp-content/uploads/2021/06/Placeholder-_-Glossary.svg","caption":"","showPreview":true},"children":[{"id":"11","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph","styles":{}}],"children":[]}]}]},{"id":"12","type":"table","props":{"textColor":"default"},"content":{"type":"tableContent","columnWidths":[null,null],"rows":[{"cells":[{"type":"tableCell","content":[{"type":"text","text":"Table Cell","styles":{}}],"props":{"colspan":1,"rowspan":1,"backgroundColor":"default","textColor":"default","textAlignment":"left"}},{"type":"tableCell","content":[{"type":"text","text":"Table Cell","styles":{}}],"props":{"colspan":1,"rowspan":1,"backgroundColor":"default","textColor":"default","textAlignment":"left"}}]},{"cells":[{"type":"tableCell","content":[{"type":"text","text":"Table Cell","styles":{}}],"props":{"colspan":1,"rowspan":1,"backgroundColor":"default","textColor":"default","textAlignment":"left"}},{"type":"tableCell","content":[{"type":"text","text":"Table Cell","styles":{}}],"props":{"colspan":1,"rowspan":1,"backgroundColor":"default","textColor":"default","textAlignment":"left"}}]}]},"children":[]}],"blockCutAtStart":"7"} +{"_meta":{"startPos":124,"endPos":276},"blocks":[{"id":"7","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"d Paragraph 2","styles":{}}],"children":[]},{"id":"8","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]},{"id":"9","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2,"isTogglable":false},"content":[{"type":"text","text":"Bold","styles":{"bold":true}},{"type":"text","text":"Italic","styles":{"italic":true}},{"type":"text","text":"Regular","styles":{}}],"children":[{"id":"10","type":"image","props":{"backgroundColor":"default","textAlignment":"left","name":"","url":"https://ralfvanveen.com/wp-content/uploads/2021/06/Placeholder-_-Glossary.svg","caption":"","showPreview":true},"children":[{"id":"11","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph","styles":{}}],"children":[]}]}]},{"id":"12","type":"table","props":{"textColor":"default"},"content":{"type":"tableContent","columnWidths":[null,null],"rows":[{"cells":[{"type":"tableCell","content":[{"type":"text","text":"Table Cell","styles":{}}],"props":{"colspan":1,"rowspan":1,"backgroundColor":"default","textColor":"default","textAlignment":"left"}},{"type":"tableCell","content":[{"type":"text","text":"Table Cell","styles":{}}],"props":{"colspan":1,"rowspan":1,"backgroundColor":"default","textColor":"default","textAlignment":"left"}}]},{"cells":[{"type":"tableCell","content":[{"type":"text","text":"Table Cell","styles":{}}],"props":{"colspan":1,"rowspan":1,"backgroundColor":"default","textColor":"default","textAlignment":"left"}},{"type":"tableCell","content":[{"type":"text","text":"Table Cell","styles":{}}],"props":{"colspan":1,"rowspan":1,"backgroundColor":"default","textColor":"default","textAlignment":"left"}}]}]},"children":[]}],"blockCutAtStart":"7"} +{"_meta":{"startPos":125,"endPos":276},"blocks":[{"id":"7","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":" Paragraph 2","styles":{}}],"children":[]},{"id":"8","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]},{"id":"9","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2,"isTogglable":false},"content":[{"type":"text","text":"Bold","styles":{"bold":true}},{"type":"text","text":"Italic","styles":{"italic":true}},{"type":"text","text":"Regular","styles":{}}],"children":[{"id":"10","type":"image","props":{"backgroundColor":"default","textAlignment":"left","name":"","url":"https://ralfvanveen.com/wp-content/uploads/2021/06/Placeholder-_-Glossary.svg","caption":"","showPreview":true},"children":[{"id":"11","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph","styles":{}}],"children":[]}]}]},{"id":"12","type":"table","props":{"textColor":"default"},"content":{"type":"tableContent","columnWidths":[null,null],"rows":[{"cells":[{"type":"tableCell","content":[{"type":"text","text":"Table Cell","styles":{}}],"props":{"colspan":1,"rowspan":1,"backgroundColor":"default","textColor":"default","textAlignment":"left"}},{"type":"tableCell","content":[{"type":"text","text":"Table Cell","styles":{}}],"props":{"colspan":1,"rowspan":1,"backgroundColor":"default","textColor":"default","textAlignment":"left"}}]},{"cells":[{"type":"tableCell","content":[{"type":"text","text":"Table Cell","styles":{}}],"props":{"colspan":1,"rowspan":1,"backgroundColor":"default","textColor":"default","textAlignment":"left"}},{"type":"tableCell","content":[{"type":"text","text":"Table Cell","styles":{}}],"props":{"colspan":1,"rowspan":1,"backgroundColor":"default","textColor":"default","textAlignment":"left"}}]}]},"children":[]}],"blockCutAtStart":"7"} +{"_meta":{"startPos":126,"endPos":276},"blocks":[{"id":"7","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Paragraph 2","styles":{}}],"children":[]},{"id":"8","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]},{"id":"9","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2,"isTogglable":false},"content":[{"type":"text","text":"Bold","styles":{"bold":true}},{"type":"text","text":"Italic","styles":{"italic":true}},{"type":"text","text":"Regular","styles":{}}],"children":[{"id":"10","type":"image","props":{"backgroundColor":"default","textAlignment":"left","name":"","url":"https://ralfvanveen.com/wp-content/uploads/2021/06/Placeholder-_-Glossary.svg","caption":"","showPreview":true},"children":[{"id":"11","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph","styles":{}}],"children":[]}]}]},{"id":"12","type":"table","props":{"textColor":"default"},"content":{"type":"tableContent","columnWidths":[null,null],"rows":[{"cells":[{"type":"tableCell","content":[{"type":"text","text":"Table Cell","styles":{}}],"props":{"colspan":1,"rowspan":1,"backgroundColor":"default","textColor":"default","textAlignment":"left"}},{"type":"tableCell","content":[{"type":"text","text":"Table Cell","styles":{}}],"props":{"colspan":1,"rowspan":1,"backgroundColor":"default","textColor":"default","textAlignment":"left"}}]},{"cells":[{"type":"tableCell","content":[{"type":"text","text":"Table Cell","styles":{}}],"props":{"colspan":1,"rowspan":1,"backgroundColor":"default","textColor":"default","textAlignment":"left"}},{"type":"tableCell","content":[{"type":"text","text":"Table Cell","styles":{}}],"props":{"colspan":1,"rowspan":1,"backgroundColor":"default","textColor":"default","textAlignment":"left"}}]}]},"children":[]}],"blockCutAtStart":"7"} +{"_meta":{"startPos":127,"endPos":276},"blocks":[{"id":"7","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"aragraph 2","styles":{}}],"children":[]},{"id":"8","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]},{"id":"9","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2,"isTogglable":false},"content":[{"type":"text","text":"Bold","styles":{"bold":true}},{"type":"text","text":"Italic","styles":{"italic":true}},{"type":"text","text":"Regular","styles":{}}],"children":[{"id":"10","type":"image","props":{"backgroundColor":"default","textAlignment":"left","name":"","url":"https://ralfvanveen.com/wp-content/uploads/2021/06/Placeholder-_-Glossary.svg","caption":"","showPreview":true},"children":[{"id":"11","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph","styles":{}}],"children":[]}]}]},{"id":"12","type":"table","props":{"textColor":"default"},"content":{"type":"tableContent","columnWidths":[null,null],"rows":[{"cells":[{"type":"tableCell","content":[{"type":"text","text":"Table Cell","styles":{}}],"props":{"colspan":1,"rowspan":1,"backgroundColor":"default","textColor":"default","textAlignment":"left"}},{"type":"tableCell","content":[{"type":"text","text":"Table Cell","styles":{}}],"props":{"colspan":1,"rowspan":1,"backgroundColor":"default","textColor":"default","textAlignment":"left"}}]},{"cells":[{"type":"tableCell","content":[{"type":"text","text":"Table Cell","styles":{}}],"props":{"colspan":1,"rowspan":1,"backgroundColor":"default","textColor":"default","textAlignment":"left"}},{"type":"tableCell","content":[{"type":"text","text":"Table Cell","styles":{}}],"props":{"colspan":1,"rowspan":1,"backgroundColor":"default","textColor":"default","textAlignment":"left"}}]}]},"children":[]}],"blockCutAtStart":"7"} +{"_meta":{"startPos":128,"endPos":276},"blocks":[{"id":"7","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"ragraph 2","styles":{}}],"children":[]},{"id":"8","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]},{"id":"9","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2,"isTogglable":false},"content":[{"type":"text","text":"Bold","styles":{"bold":true}},{"type":"text","text":"Italic","styles":{"italic":true}},{"type":"text","text":"Regular","styles":{}}],"children":[{"id":"10","type":"image","props":{"backgroundColor":"default","textAlignment":"left","name":"","url":"https://ralfvanveen.com/wp-content/uploads/2021/06/Placeholder-_-Glossary.svg","caption":"","showPreview":true},"children":[{"id":"11","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph","styles":{}}],"children":[]}]}]},{"id":"12","type":"table","props":{"textColor":"default"},"content":{"type":"tableContent","columnWidths":[null,null],"rows":[{"cells":[{"type":"tableCell","content":[{"type":"text","text":"Table Cell","styles":{}}],"props":{"colspan":1,"rowspan":1,"backgroundColor":"default","textColor":"default","textAlignment":"left"}},{"type":"tableCell","content":[{"type":"text","text":"Table Cell","styles":{}}],"props":{"colspan":1,"rowspan":1,"backgroundColor":"default","textColor":"default","textAlignment":"left"}}]},{"cells":[{"type":"tableCell","content":[{"type":"text","text":"Table Cell","styles":{}}],"props":{"colspan":1,"rowspan":1,"backgroundColor":"default","textColor":"default","textAlignment":"left"}},{"type":"tableCell","content":[{"type":"text","text":"Table Cell","styles":{}}],"props":{"colspan":1,"rowspan":1,"backgroundColor":"default","textColor":"default","textAlignment":"left"}}]}]},"children":[]}],"blockCutAtStart":"7"} +{"_meta":{"startPos":129,"endPos":276},"blocks":[{"id":"7","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"agraph 2","styles":{}}],"children":[]},{"id":"8","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]},{"id":"9","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2,"isTogglable":false},"content":[{"type":"text","text":"Bold","styles":{"bold":true}},{"type":"text","text":"Italic","styles":{"italic":true}},{"type":"text","text":"Regular","styles":{}}],"children":[{"id":"10","type":"image","props":{"backgroundColor":"default","textAlignment":"left","name":"","url":"https://ralfvanveen.com/wp-content/uploads/2021/06/Placeholder-_-Glossary.svg","caption":"","showPreview":true},"children":[{"id":"11","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph","styles":{}}],"children":[]}]}]},{"id":"12","type":"table","props":{"textColor":"default"},"content":{"type":"tableContent","columnWidths":[null,null],"rows":[{"cells":[{"type":"tableCell","content":[{"type":"text","text":"Table Cell","styles":{}}],"props":{"colspan":1,"rowspan":1,"backgroundColor":"default","textColor":"default","textAlignment":"left"}},{"type":"tableCell","content":[{"type":"text","text":"Table Cell","styles":{}}],"props":{"colspan":1,"rowspan":1,"backgroundColor":"default","textColor":"default","textAlignment":"left"}}]},{"cells":[{"type":"tableCell","content":[{"type":"text","text":"Table Cell","styles":{}}],"props":{"colspan":1,"rowspan":1,"backgroundColor":"default","textColor":"default","textAlignment":"left"}},{"type":"tableCell","content":[{"type":"text","text":"Table Cell","styles":{}}],"props":{"colspan":1,"rowspan":1,"backgroundColor":"default","textColor":"default","textAlignment":"left"}}]}]},"children":[]}],"blockCutAtStart":"7"} +{"_meta":{"startPos":130,"endPos":276},"blocks":[{"id":"7","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"graph 2","styles":{}}],"children":[]},{"id":"8","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]},{"id":"9","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2,"isTogglable":false},"content":[{"type":"text","text":"Bold","styles":{"bold":true}},{"type":"text","text":"Italic","styles":{"italic":true}},{"type":"text","text":"Regular","styles":{}}],"children":[{"id":"10","type":"image","props":{"backgroundColor":"default","textAlignment":"left","name":"","url":"https://ralfvanveen.com/wp-content/uploads/2021/06/Placeholder-_-Glossary.svg","caption":"","showPreview":true},"children":[{"id":"11","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph","styles":{}}],"children":[]}]}]},{"id":"12","type":"table","props":{"textColor":"default"},"content":{"type":"tableContent","columnWidths":[null,null],"rows":[{"cells":[{"type":"tableCell","content":[{"type":"text","text":"Table Cell","styles":{}}],"props":{"colspan":1,"rowspan":1,"backgroundColor":"default","textColor":"default","textAlignment":"left"}},{"type":"tableCell","content":[{"type":"text","text":"Table Cell","styles":{}}],"props":{"colspan":1,"rowspan":1,"backgroundColor":"default","textColor":"default","textAlignment":"left"}}]},{"cells":[{"type":"tableCell","content":[{"type":"text","text":"Table Cell","styles":{}}],"props":{"colspan":1,"rowspan":1,"backgroundColor":"default","textColor":"default","textAlignment":"left"}},{"type":"tableCell","content":[{"type":"text","text":"Table Cell","styles":{}}],"props":{"colspan":1,"rowspan":1,"backgroundColor":"default","textColor":"default","textAlignment":"left"}}]}]},"children":[]}],"blockCutAtStart":"7"} +{"_meta":{"startPos":131,"endPos":276},"blocks":[{"id":"7","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"raph 2","styles":{}}],"children":[]},{"id":"8","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]},{"id":"9","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2,"isTogglable":false},"content":[{"type":"text","text":"Bold","styles":{"bold":true}},{"type":"text","text":"Italic","styles":{"italic":true}},{"type":"text","text":"Regular","styles":{}}],"children":[{"id":"10","type":"image","props":{"backgroundColor":"default","textAlignment":"left","name":"","url":"https://ralfvanveen.com/wp-content/uploads/2021/06/Placeholder-_-Glossary.svg","caption":"","showPreview":true},"children":[{"id":"11","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph","styles":{}}],"children":[]}]}]},{"id":"12","type":"table","props":{"textColor":"default"},"content":{"type":"tableContent","columnWidths":[null,null],"rows":[{"cells":[{"type":"tableCell","content":[{"type":"text","text":"Table Cell","styles":{}}],"props":{"colspan":1,"rowspan":1,"backgroundColor":"default","textColor":"default","textAlignment":"left"}},{"type":"tableCell","content":[{"type":"text","text":"Table Cell","styles":{}}],"props":{"colspan":1,"rowspan":1,"backgroundColor":"default","textColor":"default","textAlignment":"left"}}]},{"cells":[{"type":"tableCell","content":[{"type":"text","text":"Table Cell","styles":{}}],"props":{"colspan":1,"rowspan":1,"backgroundColor":"default","textColor":"default","textAlignment":"left"}},{"type":"tableCell","content":[{"type":"text","text":"Table Cell","styles":{}}],"props":{"colspan":1,"rowspan":1,"backgroundColor":"default","textColor":"default","textAlignment":"left"}}]}]},"children":[]}],"blockCutAtStart":"7"} +{"_meta":{"startPos":132,"endPos":276},"blocks":[{"id":"7","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"aph 2","styles":{}}],"children":[]},{"id":"8","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]},{"id":"9","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2,"isTogglable":false},"content":[{"type":"text","text":"Bold","styles":{"bold":true}},{"type":"text","text":"Italic","styles":{"italic":true}},{"type":"text","text":"Regular","styles":{}}],"children":[{"id":"10","type":"image","props":{"backgroundColor":"default","textAlignment":"left","name":"","url":"https://ralfvanveen.com/wp-content/uploads/2021/06/Placeholder-_-Glossary.svg","caption":"","showPreview":true},"children":[{"id":"11","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph","styles":{}}],"children":[]}]}]},{"id":"12","type":"table","props":{"textColor":"default"},"content":{"type":"tableContent","columnWidths":[null,null],"rows":[{"cells":[{"type":"tableCell","content":[{"type":"text","text":"Table Cell","styles":{}}],"props":{"colspan":1,"rowspan":1,"backgroundColor":"default","textColor":"default","textAlignment":"left"}},{"type":"tableCell","content":[{"type":"text","text":"Table Cell","styles":{}}],"props":{"colspan":1,"rowspan":1,"backgroundColor":"default","textColor":"default","textAlignment":"left"}}]},{"cells":[{"type":"tableCell","content":[{"type":"text","text":"Table Cell","styles":{}}],"props":{"colspan":1,"rowspan":1,"backgroundColor":"default","textColor":"default","textAlignment":"left"}},{"type":"tableCell","content":[{"type":"text","text":"Table Cell","styles":{}}],"props":{"colspan":1,"rowspan":1,"backgroundColor":"default","textColor":"default","textAlignment":"left"}}]}]},"children":[]}],"blockCutAtStart":"7"} +{"_meta":{"startPos":133,"endPos":276},"blocks":[{"id":"7","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"ph 2","styles":{}}],"children":[]},{"id":"8","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]},{"id":"9","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2,"isTogglable":false},"content":[{"type":"text","text":"Bold","styles":{"bold":true}},{"type":"text","text":"Italic","styles":{"italic":true}},{"type":"text","text":"Regular","styles":{}}],"children":[{"id":"10","type":"image","props":{"backgroundColor":"default","textAlignment":"left","name":"","url":"https://ralfvanveen.com/wp-content/uploads/2021/06/Placeholder-_-Glossary.svg","caption":"","showPreview":true},"children":[{"id":"11","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph","styles":{}}],"children":[]}]}]},{"id":"12","type":"table","props":{"textColor":"default"},"content":{"type":"tableContent","columnWidths":[null,null],"rows":[{"cells":[{"type":"tableCell","content":[{"type":"text","text":"Table Cell","styles":{}}],"props":{"colspan":1,"rowspan":1,"backgroundColor":"default","textColor":"default","textAlignment":"left"}},{"type":"tableCell","content":[{"type":"text","text":"Table Cell","styles":{}}],"props":{"colspan":1,"rowspan":1,"backgroundColor":"default","textColor":"default","textAlignment":"left"}}]},{"cells":[{"type":"tableCell","content":[{"type":"text","text":"Table Cell","styles":{}}],"props":{"colspan":1,"rowspan":1,"backgroundColor":"default","textColor":"default","textAlignment":"left"}},{"type":"tableCell","content":[{"type":"text","text":"Table Cell","styles":{}}],"props":{"colspan":1,"rowspan":1,"backgroundColor":"default","textColor":"default","textAlignment":"left"}}]}]},"children":[]}],"blockCutAtStart":"7"} +{"_meta":{"startPos":134,"endPos":276},"blocks":[{"id":"7","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"h 2","styles":{}}],"children":[]},{"id":"8","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]},{"id":"9","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2,"isTogglable":false},"content":[{"type":"text","text":"Bold","styles":{"bold":true}},{"type":"text","text":"Italic","styles":{"italic":true}},{"type":"text","text":"Regular","styles":{}}],"children":[{"id":"10","type":"image","props":{"backgroundColor":"default","textAlignment":"left","name":"","url":"https://ralfvanveen.com/wp-content/uploads/2021/06/Placeholder-_-Glossary.svg","caption":"","showPreview":true},"children":[{"id":"11","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph","styles":{}}],"children":[]}]}]},{"id":"12","type":"table","props":{"textColor":"default"},"content":{"type":"tableContent","columnWidths":[null,null],"rows":[{"cells":[{"type":"tableCell","content":[{"type":"text","text":"Table Cell","styles":{}}],"props":{"colspan":1,"rowspan":1,"backgroundColor":"default","textColor":"default","textAlignment":"left"}},{"type":"tableCell","content":[{"type":"text","text":"Table Cell","styles":{}}],"props":{"colspan":1,"rowspan":1,"backgroundColor":"default","textColor":"default","textAlignment":"left"}}]},{"cells":[{"type":"tableCell","content":[{"type":"text","text":"Table Cell","styles":{}}],"props":{"colspan":1,"rowspan":1,"backgroundColor":"default","textColor":"default","textAlignment":"left"}},{"type":"tableCell","content":[{"type":"text","text":"Table Cell","styles":{}}],"props":{"colspan":1,"rowspan":1,"backgroundColor":"default","textColor":"default","textAlignment":"left"}}]}]},"children":[]}],"blockCutAtStart":"7"} +{"_meta":{"startPos":135,"endPos":276},"blocks":[{"id":"7","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":" 2","styles":{}}],"children":[]},{"id":"8","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]},{"id":"9","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2,"isTogglable":false},"content":[{"type":"text","text":"Bold","styles":{"bold":true}},{"type":"text","text":"Italic","styles":{"italic":true}},{"type":"text","text":"Regular","styles":{}}],"children":[{"id":"10","type":"image","props":{"backgroundColor":"default","textAlignment":"left","name":"","url":"https://ralfvanveen.com/wp-content/uploads/2021/06/Placeholder-_-Glossary.svg","caption":"","showPreview":true},"children":[{"id":"11","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph","styles":{}}],"children":[]}]}]},{"id":"12","type":"table","props":{"textColor":"default"},"content":{"type":"tableContent","columnWidths":[null,null],"rows":[{"cells":[{"type":"tableCell","content":[{"type":"text","text":"Table Cell","styles":{}}],"props":{"colspan":1,"rowspan":1,"backgroundColor":"default","textColor":"default","textAlignment":"left"}},{"type":"tableCell","content":[{"type":"text","text":"Table Cell","styles":{}}],"props":{"colspan":1,"rowspan":1,"backgroundColor":"default","textColor":"default","textAlignment":"left"}}]},{"cells":[{"type":"tableCell","content":[{"type":"text","text":"Table Cell","styles":{}}],"props":{"colspan":1,"rowspan":1,"backgroundColor":"default","textColor":"default","textAlignment":"left"}},{"type":"tableCell","content":[{"type":"text","text":"Table Cell","styles":{}}],"props":{"colspan":1,"rowspan":1,"backgroundColor":"default","textColor":"default","textAlignment":"left"}}]}]},"children":[]}],"blockCutAtStart":"7"} +{"_meta":{"startPos":136,"endPos":276},"blocks":[{"id":"7","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"2","styles":{}}],"children":[]},{"id":"8","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]},{"id":"9","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2,"isTogglable":false},"content":[{"type":"text","text":"Bold","styles":{"bold":true}},{"type":"text","text":"Italic","styles":{"italic":true}},{"type":"text","text":"Regular","styles":{}}],"children":[{"id":"10","type":"image","props":{"backgroundColor":"default","textAlignment":"left","name":"","url":"https://ralfvanveen.com/wp-content/uploads/2021/06/Placeholder-_-Glossary.svg","caption":"","showPreview":true},"children":[{"id":"11","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph","styles":{}}],"children":[]}]}]},{"id":"12","type":"table","props":{"textColor":"default"},"content":{"type":"tableContent","columnWidths":[null,null],"rows":[{"cells":[{"type":"tableCell","content":[{"type":"text","text":"Table Cell","styles":{}}],"props":{"colspan":1,"rowspan":1,"backgroundColor":"default","textColor":"default","textAlignment":"left"}},{"type":"tableCell","content":[{"type":"text","text":"Table Cell","styles":{}}],"props":{"colspan":1,"rowspan":1,"backgroundColor":"default","textColor":"default","textAlignment":"left"}}]},{"cells":[{"type":"tableCell","content":[{"type":"text","text":"Table Cell","styles":{}}],"props":{"colspan":1,"rowspan":1,"backgroundColor":"default","textColor":"default","textAlignment":"left"}},{"type":"tableCell","content":[{"type":"text","text":"Table Cell","styles":{}}],"props":{"colspan":1,"rowspan":1,"backgroundColor":"default","textColor":"default","textAlignment":"left"}}]}]},"children":[]}],"blockCutAtStart":"7"} +{"_meta":{"startPos":139,"endPos":276},"blocks":[{"id":"8","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]},{"id":"9","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2,"isTogglable":false},"content":[{"type":"text","text":"Bold","styles":{"bold":true}},{"type":"text","text":"Italic","styles":{"italic":true}},{"type":"text","text":"Regular","styles":{}}],"children":[{"id":"10","type":"image","props":{"backgroundColor":"default","textAlignment":"left","name":"","url":"https://ralfvanveen.com/wp-content/uploads/2021/06/Placeholder-_-Glossary.svg","caption":"","showPreview":true},"children":[{"id":"11","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph","styles":{}}],"children":[]}]}]},{"id":"12","type":"table","props":{"textColor":"default"},"content":{"type":"tableContent","columnWidths":[null,null],"rows":[{"cells":[{"type":"tableCell","content":[{"type":"text","text":"Table Cell","styles":{}}],"props":{"colspan":1,"rowspan":1,"backgroundColor":"default","textColor":"default","textAlignment":"left"}},{"type":"tableCell","content":[{"type":"text","text":"Table Cell","styles":{}}],"props":{"colspan":1,"rowspan":1,"backgroundColor":"default","textColor":"default","textAlignment":"left"}}]},{"cells":[{"type":"tableCell","content":[{"type":"text","text":"Table Cell","styles":{}}],"props":{"colspan":1,"rowspan":1,"backgroundColor":"default","textColor":"default","textAlignment":"left"}},{"type":"tableCell","content":[{"type":"text","text":"Table Cell","styles":{}}],"props":{"colspan":1,"rowspan":1,"backgroundColor":"default","textColor":"default","textAlignment":"left"}}]}]},"children":[]}]} +{"_meta":{"startPos":139,"endPos":276},"blocks":[{"id":"8","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]},{"id":"9","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2,"isTogglable":false},"content":[{"type":"text","text":"Bold","styles":{"bold":true}},{"type":"text","text":"Italic","styles":{"italic":true}},{"type":"text","text":"Regular","styles":{}}],"children":[{"id":"10","type":"image","props":{"backgroundColor":"default","textAlignment":"left","name":"","url":"https://ralfvanveen.com/wp-content/uploads/2021/06/Placeholder-_-Glossary.svg","caption":"","showPreview":true},"children":[{"id":"11","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph","styles":{}}],"children":[]}]}]},{"id":"12","type":"table","props":{"textColor":"default"},"content":{"type":"tableContent","columnWidths":[null,null],"rows":[{"cells":[{"type":"tableCell","content":[{"type":"text","text":"Table Cell","styles":{}}],"props":{"colspan":1,"rowspan":1,"backgroundColor":"default","textColor":"default","textAlignment":"left"}},{"type":"tableCell","content":[{"type":"text","text":"Table Cell","styles":{}}],"props":{"colspan":1,"rowspan":1,"backgroundColor":"default","textColor":"default","textAlignment":"left"}}]},{"cells":[{"type":"tableCell","content":[{"type":"text","text":"Table Cell","styles":{}}],"props":{"colspan":1,"rowspan":1,"backgroundColor":"default","textColor":"default","textAlignment":"left"}},{"type":"tableCell","content":[{"type":"text","text":"Table Cell","styles":{}}],"props":{"colspan":1,"rowspan":1,"backgroundColor":"default","textColor":"default","textAlignment":"left"}}]}]},"children":[]}]} +{"_meta":{"startPos":139,"endPos":276},"blocks":[{"id":"8","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]},{"id":"9","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2,"isTogglable":false},"content":[{"type":"text","text":"Bold","styles":{"bold":true}},{"type":"text","text":"Italic","styles":{"italic":true}},{"type":"text","text":"Regular","styles":{}}],"children":[{"id":"10","type":"image","props":{"backgroundColor":"default","textAlignment":"left","name":"","url":"https://ralfvanveen.com/wp-content/uploads/2021/06/Placeholder-_-Glossary.svg","caption":"","showPreview":true},"children":[{"id":"11","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph","styles":{}}],"children":[]}]}]},{"id":"12","type":"table","props":{"textColor":"default"},"content":{"type":"tableContent","columnWidths":[null,null],"rows":[{"cells":[{"type":"tableCell","content":[{"type":"text","text":"Table Cell","styles":{}}],"props":{"colspan":1,"rowspan":1,"backgroundColor":"default","textColor":"default","textAlignment":"left"}},{"type":"tableCell","content":[{"type":"text","text":"Table Cell","styles":{}}],"props":{"colspan":1,"rowspan":1,"backgroundColor":"default","textColor":"default","textAlignment":"left"}}]},{"cells":[{"type":"tableCell","content":[{"type":"text","text":"Table Cell","styles":{}}],"props":{"colspan":1,"rowspan":1,"backgroundColor":"default","textColor":"default","textAlignment":"left"}},{"type":"tableCell","content":[{"type":"text","text":"Table Cell","styles":{}}],"props":{"colspan":1,"rowspan":1,"backgroundColor":"default","textColor":"default","textAlignment":"left"}}]}]},"children":[]}]} +{"_meta":{"startPos":139,"endPos":276},"blocks":[{"id":"8","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]},{"id":"9","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2,"isTogglable":false},"content":[{"type":"text","text":"Bold","styles":{"bold":true}},{"type":"text","text":"Italic","styles":{"italic":true}},{"type":"text","text":"Regular","styles":{}}],"children":[{"id":"10","type":"image","props":{"backgroundColor":"default","textAlignment":"left","name":"","url":"https://ralfvanveen.com/wp-content/uploads/2021/06/Placeholder-_-Glossary.svg","caption":"","showPreview":true},"children":[{"id":"11","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph","styles":{}}],"children":[]}]}]},{"id":"12","type":"table","props":{"textColor":"default"},"content":{"type":"tableContent","columnWidths":[null,null],"rows":[{"cells":[{"type":"tableCell","content":[{"type":"text","text":"Table Cell","styles":{}}],"props":{"colspan":1,"rowspan":1,"backgroundColor":"default","textColor":"default","textAlignment":"left"}},{"type":"tableCell","content":[{"type":"text","text":"Table Cell","styles":{}}],"props":{"colspan":1,"rowspan":1,"backgroundColor":"default","textColor":"default","textAlignment":"left"}}]},{"cells":[{"type":"tableCell","content":[{"type":"text","text":"Table Cell","styles":{}}],"props":{"colspan":1,"rowspan":1,"backgroundColor":"default","textColor":"default","textAlignment":"left"}},{"type":"tableCell","content":[{"type":"text","text":"Table Cell","styles":{}}],"props":{"colspan":1,"rowspan":1,"backgroundColor":"default","textColor":"default","textAlignment":"left"}}]}]},"children":[]}]} +{"_meta":{"startPos":139,"endPos":276},"blocks":[{"id":"8","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]},{"id":"9","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2,"isTogglable":false},"content":[{"type":"text","text":"Bold","styles":{"bold":true}},{"type":"text","text":"Italic","styles":{"italic":true}},{"type":"text","text":"Regular","styles":{}}],"children":[{"id":"10","type":"image","props":{"backgroundColor":"default","textAlignment":"left","name":"","url":"https://ralfvanveen.com/wp-content/uploads/2021/06/Placeholder-_-Glossary.svg","caption":"","showPreview":true},"children":[{"id":"11","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph","styles":{}}],"children":[]}]}]},{"id":"12","type":"table","props":{"textColor":"default"},"content":{"type":"tableContent","columnWidths":[null,null],"rows":[{"cells":[{"type":"tableCell","content":[{"type":"text","text":"Table Cell","styles":{}}],"props":{"colspan":1,"rowspan":1,"backgroundColor":"default","textColor":"default","textAlignment":"left"}},{"type":"tableCell","content":[{"type":"text","text":"Table Cell","styles":{}}],"props":{"colspan":1,"rowspan":1,"backgroundColor":"default","textColor":"default","textAlignment":"left"}}]},{"cells":[{"type":"tableCell","content":[{"type":"text","text":"Table Cell","styles":{}}],"props":{"colspan":1,"rowspan":1,"backgroundColor":"default","textColor":"default","textAlignment":"left"}},{"type":"tableCell","content":[{"type":"text","text":"Table Cell","styles":{}}],"props":{"colspan":1,"rowspan":1,"backgroundColor":"default","textColor":"default","textAlignment":"left"}}]}]},"children":[]}]} +{"_meta":{"startPos":142,"endPos":276},"blocks":[{"id":"8","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"ested Paragraph 3","styles":{}}],"children":[]},{"id":"9","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2,"isTogglable":false},"content":[{"type":"text","text":"Bold","styles":{"bold":true}},{"type":"text","text":"Italic","styles":{"italic":true}},{"type":"text","text":"Regular","styles":{}}],"children":[{"id":"10","type":"image","props":{"backgroundColor":"default","textAlignment":"left","name":"","url":"https://ralfvanveen.com/wp-content/uploads/2021/06/Placeholder-_-Glossary.svg","caption":"","showPreview":true},"children":[{"id":"11","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph","styles":{}}],"children":[]}]}]},{"id":"12","type":"table","props":{"textColor":"default"},"content":{"type":"tableContent","columnWidths":[null,null],"rows":[{"cells":[{"type":"tableCell","content":[{"type":"text","text":"Table Cell","styles":{}}],"props":{"colspan":1,"rowspan":1,"backgroundColor":"default","textColor":"default","textAlignment":"left"}},{"type":"tableCell","content":[{"type":"text","text":"Table Cell","styles":{}}],"props":{"colspan":1,"rowspan":1,"backgroundColor":"default","textColor":"default","textAlignment":"left"}}]},{"cells":[{"type":"tableCell","content":[{"type":"text","text":"Table Cell","styles":{}}],"props":{"colspan":1,"rowspan":1,"backgroundColor":"default","textColor":"default","textAlignment":"left"}},{"type":"tableCell","content":[{"type":"text","text":"Table Cell","styles":{}}],"props":{"colspan":1,"rowspan":1,"backgroundColor":"default","textColor":"default","textAlignment":"left"}}]}]},"children":[]}],"blockCutAtStart":"8"} +{"_meta":{"startPos":143,"endPos":276},"blocks":[{"id":"8","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"sted Paragraph 3","styles":{}}],"children":[]},{"id":"9","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2,"isTogglable":false},"content":[{"type":"text","text":"Bold","styles":{"bold":true}},{"type":"text","text":"Italic","styles":{"italic":true}},{"type":"text","text":"Regular","styles":{}}],"children":[{"id":"10","type":"image","props":{"backgroundColor":"default","textAlignment":"left","name":"","url":"https://ralfvanveen.com/wp-content/uploads/2021/06/Placeholder-_-Glossary.svg","caption":"","showPreview":true},"children":[{"id":"11","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph","styles":{}}],"children":[]}]}]},{"id":"12","type":"table","props":{"textColor":"default"},"content":{"type":"tableContent","columnWidths":[null,null],"rows":[{"cells":[{"type":"tableCell","content":[{"type":"text","text":"Table Cell","styles":{}}],"props":{"colspan":1,"rowspan":1,"backgroundColor":"default","textColor":"default","textAlignment":"left"}},{"type":"tableCell","content":[{"type":"text","text":"Table Cell","styles":{}}],"props":{"colspan":1,"rowspan":1,"backgroundColor":"default","textColor":"default","textAlignment":"left"}}]},{"cells":[{"type":"tableCell","content":[{"type":"text","text":"Table Cell","styles":{}}],"props":{"colspan":1,"rowspan":1,"backgroundColor":"default","textColor":"default","textAlignment":"left"}},{"type":"tableCell","content":[{"type":"text","text":"Table Cell","styles":{}}],"props":{"colspan":1,"rowspan":1,"backgroundColor":"default","textColor":"default","textAlignment":"left"}}]}]},"children":[]}],"blockCutAtStart":"8"} +{"_meta":{"startPos":144,"endPos":276},"blocks":[{"id":"8","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"ted Paragraph 3","styles":{}}],"children":[]},{"id":"9","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2,"isTogglable":false},"content":[{"type":"text","text":"Bold","styles":{"bold":true}},{"type":"text","text":"Italic","styles":{"italic":true}},{"type":"text","text":"Regular","styles":{}}],"children":[{"id":"10","type":"image","props":{"backgroundColor":"default","textAlignment":"left","name":"","url":"https://ralfvanveen.com/wp-content/uploads/2021/06/Placeholder-_-Glossary.svg","caption":"","showPreview":true},"children":[{"id":"11","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph","styles":{}}],"children":[]}]}]},{"id":"12","type":"table","props":{"textColor":"default"},"content":{"type":"tableContent","columnWidths":[null,null],"rows":[{"cells":[{"type":"tableCell","content":[{"type":"text","text":"Table Cell","styles":{}}],"props":{"colspan":1,"rowspan":1,"backgroundColor":"default","textColor":"default","textAlignment":"left"}},{"type":"tableCell","content":[{"type":"text","text":"Table Cell","styles":{}}],"props":{"colspan":1,"rowspan":1,"backgroundColor":"default","textColor":"default","textAlignment":"left"}}]},{"cells":[{"type":"tableCell","content":[{"type":"text","text":"Table Cell","styles":{}}],"props":{"colspan":1,"rowspan":1,"backgroundColor":"default","textColor":"default","textAlignment":"left"}},{"type":"tableCell","content":[{"type":"text","text":"Table Cell","styles":{}}],"props":{"colspan":1,"rowspan":1,"backgroundColor":"default","textColor":"default","textAlignment":"left"}}]}]},"children":[]}],"blockCutAtStart":"8"} +{"_meta":{"startPos":145,"endPos":276},"blocks":[{"id":"8","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"ed Paragraph 3","styles":{}}],"children":[]},{"id":"9","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2,"isTogglable":false},"content":[{"type":"text","text":"Bold","styles":{"bold":true}},{"type":"text","text":"Italic","styles":{"italic":true}},{"type":"text","text":"Regular","styles":{}}],"children":[{"id":"10","type":"image","props":{"backgroundColor":"default","textAlignment":"left","name":"","url":"https://ralfvanveen.com/wp-content/uploads/2021/06/Placeholder-_-Glossary.svg","caption":"","showPreview":true},"children":[{"id":"11","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph","styles":{}}],"children":[]}]}]},{"id":"12","type":"table","props":{"textColor":"default"},"content":{"type":"tableContent","columnWidths":[null,null],"rows":[{"cells":[{"type":"tableCell","content":[{"type":"text","text":"Table Cell","styles":{}}],"props":{"colspan":1,"rowspan":1,"backgroundColor":"default","textColor":"default","textAlignment":"left"}},{"type":"tableCell","content":[{"type":"text","text":"Table Cell","styles":{}}],"props":{"colspan":1,"rowspan":1,"backgroundColor":"default","textColor":"default","textAlignment":"left"}}]},{"cells":[{"type":"tableCell","content":[{"type":"text","text":"Table Cell","styles":{}}],"props":{"colspan":1,"rowspan":1,"backgroundColor":"default","textColor":"default","textAlignment":"left"}},{"type":"tableCell","content":[{"type":"text","text":"Table Cell","styles":{}}],"props":{"colspan":1,"rowspan":1,"backgroundColor":"default","textColor":"default","textAlignment":"left"}}]}]},"children":[]}],"blockCutAtStart":"8"} +{"_meta":{"startPos":146,"endPos":276},"blocks":[{"id":"8","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"d Paragraph 3","styles":{}}],"children":[]},{"id":"9","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2,"isTogglable":false},"content":[{"type":"text","text":"Bold","styles":{"bold":true}},{"type":"text","text":"Italic","styles":{"italic":true}},{"type":"text","text":"Regular","styles":{}}],"children":[{"id":"10","type":"image","props":{"backgroundColor":"default","textAlignment":"left","name":"","url":"https://ralfvanveen.com/wp-content/uploads/2021/06/Placeholder-_-Glossary.svg","caption":"","showPreview":true},"children":[{"id":"11","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph","styles":{}}],"children":[]}]}]},{"id":"12","type":"table","props":{"textColor":"default"},"content":{"type":"tableContent","columnWidths":[null,null],"rows":[{"cells":[{"type":"tableCell","content":[{"type":"text","text":"Table Cell","styles":{}}],"props":{"colspan":1,"rowspan":1,"backgroundColor":"default","textColor":"default","textAlignment":"left"}},{"type":"tableCell","content":[{"type":"text","text":"Table Cell","styles":{}}],"props":{"colspan":1,"rowspan":1,"backgroundColor":"default","textColor":"default","textAlignment":"left"}}]},{"cells":[{"type":"tableCell","content":[{"type":"text","text":"Table Cell","styles":{}}],"props":{"colspan":1,"rowspan":1,"backgroundColor":"default","textColor":"default","textAlignment":"left"}},{"type":"tableCell","content":[{"type":"text","text":"Table Cell","styles":{}}],"props":{"colspan":1,"rowspan":1,"backgroundColor":"default","textColor":"default","textAlignment":"left"}}]}]},"children":[]}],"blockCutAtStart":"8"} +{"_meta":{"startPos":147,"endPos":276},"blocks":[{"id":"8","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":" Paragraph 3","styles":{}}],"children":[]},{"id":"9","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2,"isTogglable":false},"content":[{"type":"text","text":"Bold","styles":{"bold":true}},{"type":"text","text":"Italic","styles":{"italic":true}},{"type":"text","text":"Regular","styles":{}}],"children":[{"id":"10","type":"image","props":{"backgroundColor":"default","textAlignment":"left","name":"","url":"https://ralfvanveen.com/wp-content/uploads/2021/06/Placeholder-_-Glossary.svg","caption":"","showPreview":true},"children":[{"id":"11","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph","styles":{}}],"children":[]}]}]},{"id":"12","type":"table","props":{"textColor":"default"},"content":{"type":"tableContent","columnWidths":[null,null],"rows":[{"cells":[{"type":"tableCell","content":[{"type":"text","text":"Table Cell","styles":{}}],"props":{"colspan":1,"rowspan":1,"backgroundColor":"default","textColor":"default","textAlignment":"left"}},{"type":"tableCell","content":[{"type":"text","text":"Table Cell","styles":{}}],"props":{"colspan":1,"rowspan":1,"backgroundColor":"default","textColor":"default","textAlignment":"left"}}]},{"cells":[{"type":"tableCell","content":[{"type":"text","text":"Table Cell","styles":{}}],"props":{"colspan":1,"rowspan":1,"backgroundColor":"default","textColor":"default","textAlignment":"left"}},{"type":"tableCell","content":[{"type":"text","text":"Table Cell","styles":{}}],"props":{"colspan":1,"rowspan":1,"backgroundColor":"default","textColor":"default","textAlignment":"left"}}]}]},"children":[]}],"blockCutAtStart":"8"} +{"_meta":{"startPos":148,"endPos":276},"blocks":[{"id":"8","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Paragraph 3","styles":{}}],"children":[]},{"id":"9","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2,"isTogglable":false},"content":[{"type":"text","text":"Bold","styles":{"bold":true}},{"type":"text","text":"Italic","styles":{"italic":true}},{"type":"text","text":"Regular","styles":{}}],"children":[{"id":"10","type":"image","props":{"backgroundColor":"default","textAlignment":"left","name":"","url":"https://ralfvanveen.com/wp-content/uploads/2021/06/Placeholder-_-Glossary.svg","caption":"","showPreview":true},"children":[{"id":"11","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph","styles":{}}],"children":[]}]}]},{"id":"12","type":"table","props":{"textColor":"default"},"content":{"type":"tableContent","columnWidths":[null,null],"rows":[{"cells":[{"type":"tableCell","content":[{"type":"text","text":"Table Cell","styles":{}}],"props":{"colspan":1,"rowspan":1,"backgroundColor":"default","textColor":"default","textAlignment":"left"}},{"type":"tableCell","content":[{"type":"text","text":"Table Cell","styles":{}}],"props":{"colspan":1,"rowspan":1,"backgroundColor":"default","textColor":"default","textAlignment":"left"}}]},{"cells":[{"type":"tableCell","content":[{"type":"text","text":"Table Cell","styles":{}}],"props":{"colspan":1,"rowspan":1,"backgroundColor":"default","textColor":"default","textAlignment":"left"}},{"type":"tableCell","content":[{"type":"text","text":"Table Cell","styles":{}}],"props":{"colspan":1,"rowspan":1,"backgroundColor":"default","textColor":"default","textAlignment":"left"}}]}]},"children":[]}],"blockCutAtStart":"8"} +{"_meta":{"startPos":149,"endPos":276},"blocks":[{"id":"8","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"aragraph 3","styles":{}}],"children":[]},{"id":"9","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2,"isTogglable":false},"content":[{"type":"text","text":"Bold","styles":{"bold":true}},{"type":"text","text":"Italic","styles":{"italic":true}},{"type":"text","text":"Regular","styles":{}}],"children":[{"id":"10","type":"image","props":{"backgroundColor":"default","textAlignment":"left","name":"","url":"https://ralfvanveen.com/wp-content/uploads/2021/06/Placeholder-_-Glossary.svg","caption":"","showPreview":true},"children":[{"id":"11","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph","styles":{}}],"children":[]}]}]},{"id":"12","type":"table","props":{"textColor":"default"},"content":{"type":"tableContent","columnWidths":[null,null],"rows":[{"cells":[{"type":"tableCell","content":[{"type":"text","text":"Table Cell","styles":{}}],"props":{"colspan":1,"rowspan":1,"backgroundColor":"default","textColor":"default","textAlignment":"left"}},{"type":"tableCell","content":[{"type":"text","text":"Table Cell","styles":{}}],"props":{"colspan":1,"rowspan":1,"backgroundColor":"default","textColor":"default","textAlignment":"left"}}]},{"cells":[{"type":"tableCell","content":[{"type":"text","text":"Table Cell","styles":{}}],"props":{"colspan":1,"rowspan":1,"backgroundColor":"default","textColor":"default","textAlignment":"left"}},{"type":"tableCell","content":[{"type":"text","text":"Table Cell","styles":{}}],"props":{"colspan":1,"rowspan":1,"backgroundColor":"default","textColor":"default","textAlignment":"left"}}]}]},"children":[]}],"blockCutAtStart":"8"} +{"_meta":{"startPos":150,"endPos":276},"blocks":[{"id":"8","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"ragraph 3","styles":{}}],"children":[]},{"id":"9","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2,"isTogglable":false},"content":[{"type":"text","text":"Bold","styles":{"bold":true}},{"type":"text","text":"Italic","styles":{"italic":true}},{"type":"text","text":"Regular","styles":{}}],"children":[{"id":"10","type":"image","props":{"backgroundColor":"default","textAlignment":"left","name":"","url":"https://ralfvanveen.com/wp-content/uploads/2021/06/Placeholder-_-Glossary.svg","caption":"","showPreview":true},"children":[{"id":"11","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph","styles":{}}],"children":[]}]}]},{"id":"12","type":"table","props":{"textColor":"default"},"content":{"type":"tableContent","columnWidths":[null,null],"rows":[{"cells":[{"type":"tableCell","content":[{"type":"text","text":"Table Cell","styles":{}}],"props":{"colspan":1,"rowspan":1,"backgroundColor":"default","textColor":"default","textAlignment":"left"}},{"type":"tableCell","content":[{"type":"text","text":"Table Cell","styles":{}}],"props":{"colspan":1,"rowspan":1,"backgroundColor":"default","textColor":"default","textAlignment":"left"}}]},{"cells":[{"type":"tableCell","content":[{"type":"text","text":"Table Cell","styles":{}}],"props":{"colspan":1,"rowspan":1,"backgroundColor":"default","textColor":"default","textAlignment":"left"}},{"type":"tableCell","content":[{"type":"text","text":"Table Cell","styles":{}}],"props":{"colspan":1,"rowspan":1,"backgroundColor":"default","textColor":"default","textAlignment":"left"}}]}]},"children":[]}],"blockCutAtStart":"8"} +{"_meta":{"startPos":151,"endPos":276},"blocks":[{"id":"8","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"agraph 3","styles":{}}],"children":[]},{"id":"9","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2,"isTogglable":false},"content":[{"type":"text","text":"Bold","styles":{"bold":true}},{"type":"text","text":"Italic","styles":{"italic":true}},{"type":"text","text":"Regular","styles":{}}],"children":[{"id":"10","type":"image","props":{"backgroundColor":"default","textAlignment":"left","name":"","url":"https://ralfvanveen.com/wp-content/uploads/2021/06/Placeholder-_-Glossary.svg","caption":"","showPreview":true},"children":[{"id":"11","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph","styles":{}}],"children":[]}]}]},{"id":"12","type":"table","props":{"textColor":"default"},"content":{"type":"tableContent","columnWidths":[null,null],"rows":[{"cells":[{"type":"tableCell","content":[{"type":"text","text":"Table Cell","styles":{}}],"props":{"colspan":1,"rowspan":1,"backgroundColor":"default","textColor":"default","textAlignment":"left"}},{"type":"tableCell","content":[{"type":"text","text":"Table Cell","styles":{}}],"props":{"colspan":1,"rowspan":1,"backgroundColor":"default","textColor":"default","textAlignment":"left"}}]},{"cells":[{"type":"tableCell","content":[{"type":"text","text":"Table Cell","styles":{}}],"props":{"colspan":1,"rowspan":1,"backgroundColor":"default","textColor":"default","textAlignment":"left"}},{"type":"tableCell","content":[{"type":"text","text":"Table Cell","styles":{}}],"props":{"colspan":1,"rowspan":1,"backgroundColor":"default","textColor":"default","textAlignment":"left"}}]}]},"children":[]}],"blockCutAtStart":"8"} +{"_meta":{"startPos":152,"endPos":276},"blocks":[{"id":"8","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"graph 3","styles":{}}],"children":[]},{"id":"9","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2,"isTogglable":false},"content":[{"type":"text","text":"Bold","styles":{"bold":true}},{"type":"text","text":"Italic","styles":{"italic":true}},{"type":"text","text":"Regular","styles":{}}],"children":[{"id":"10","type":"image","props":{"backgroundColor":"default","textAlignment":"left","name":"","url":"https://ralfvanveen.com/wp-content/uploads/2021/06/Placeholder-_-Glossary.svg","caption":"","showPreview":true},"children":[{"id":"11","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph","styles":{}}],"children":[]}]}]},{"id":"12","type":"table","props":{"textColor":"default"},"content":{"type":"tableContent","columnWidths":[null,null],"rows":[{"cells":[{"type":"tableCell","content":[{"type":"text","text":"Table Cell","styles":{}}],"props":{"colspan":1,"rowspan":1,"backgroundColor":"default","textColor":"default","textAlignment":"left"}},{"type":"tableCell","content":[{"type":"text","text":"Table Cell","styles":{}}],"props":{"colspan":1,"rowspan":1,"backgroundColor":"default","textColor":"default","textAlignment":"left"}}]},{"cells":[{"type":"tableCell","content":[{"type":"text","text":"Table Cell","styles":{}}],"props":{"colspan":1,"rowspan":1,"backgroundColor":"default","textColor":"default","textAlignment":"left"}},{"type":"tableCell","content":[{"type":"text","text":"Table Cell","styles":{}}],"props":{"colspan":1,"rowspan":1,"backgroundColor":"default","textColor":"default","textAlignment":"left"}}]}]},"children":[]}],"blockCutAtStart":"8"} +{"_meta":{"startPos":153,"endPos":276},"blocks":[{"id":"8","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"raph 3","styles":{}}],"children":[]},{"id":"9","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2,"isTogglable":false},"content":[{"type":"text","text":"Bold","styles":{"bold":true}},{"type":"text","text":"Italic","styles":{"italic":true}},{"type":"text","text":"Regular","styles":{}}],"children":[{"id":"10","type":"image","props":{"backgroundColor":"default","textAlignment":"left","name":"","url":"https://ralfvanveen.com/wp-content/uploads/2021/06/Placeholder-_-Glossary.svg","caption":"","showPreview":true},"children":[{"id":"11","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph","styles":{}}],"children":[]}]}]},{"id":"12","type":"table","props":{"textColor":"default"},"content":{"type":"tableContent","columnWidths":[null,null],"rows":[{"cells":[{"type":"tableCell","content":[{"type":"text","text":"Table Cell","styles":{}}],"props":{"colspan":1,"rowspan":1,"backgroundColor":"default","textColor":"default","textAlignment":"left"}},{"type":"tableCell","content":[{"type":"text","text":"Table Cell","styles":{}}],"props":{"colspan":1,"rowspan":1,"backgroundColor":"default","textColor":"default","textAlignment":"left"}}]},{"cells":[{"type":"tableCell","content":[{"type":"text","text":"Table Cell","styles":{}}],"props":{"colspan":1,"rowspan":1,"backgroundColor":"default","textColor":"default","textAlignment":"left"}},{"type":"tableCell","content":[{"type":"text","text":"Table Cell","styles":{}}],"props":{"colspan":1,"rowspan":1,"backgroundColor":"default","textColor":"default","textAlignment":"left"}}]}]},"children":[]}],"blockCutAtStart":"8"} +{"_meta":{"startPos":154,"endPos":276},"blocks":[{"id":"8","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"aph 3","styles":{}}],"children":[]},{"id":"9","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2,"isTogglable":false},"content":[{"type":"text","text":"Bold","styles":{"bold":true}},{"type":"text","text":"Italic","styles":{"italic":true}},{"type":"text","text":"Regular","styles":{}}],"children":[{"id":"10","type":"image","props":{"backgroundColor":"default","textAlignment":"left","name":"","url":"https://ralfvanveen.com/wp-content/uploads/2021/06/Placeholder-_-Glossary.svg","caption":"","showPreview":true},"children":[{"id":"11","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph","styles":{}}],"children":[]}]}]},{"id":"12","type":"table","props":{"textColor":"default"},"content":{"type":"tableContent","columnWidths":[null,null],"rows":[{"cells":[{"type":"tableCell","content":[{"type":"text","text":"Table Cell","styles":{}}],"props":{"colspan":1,"rowspan":1,"backgroundColor":"default","textColor":"default","textAlignment":"left"}},{"type":"tableCell","content":[{"type":"text","text":"Table Cell","styles":{}}],"props":{"colspan":1,"rowspan":1,"backgroundColor":"default","textColor":"default","textAlignment":"left"}}]},{"cells":[{"type":"tableCell","content":[{"type":"text","text":"Table Cell","styles":{}}],"props":{"colspan":1,"rowspan":1,"backgroundColor":"default","textColor":"default","textAlignment":"left"}},{"type":"tableCell","content":[{"type":"text","text":"Table Cell","styles":{}}],"props":{"colspan":1,"rowspan":1,"backgroundColor":"default","textColor":"default","textAlignment":"left"}}]}]},"children":[]}],"blockCutAtStart":"8"} +{"_meta":{"startPos":155,"endPos":276},"blocks":[{"id":"8","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"ph 3","styles":{}}],"children":[]},{"id":"9","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2,"isTogglable":false},"content":[{"type":"text","text":"Bold","styles":{"bold":true}},{"type":"text","text":"Italic","styles":{"italic":true}},{"type":"text","text":"Regular","styles":{}}],"children":[{"id":"10","type":"image","props":{"backgroundColor":"default","textAlignment":"left","name":"","url":"https://ralfvanveen.com/wp-content/uploads/2021/06/Placeholder-_-Glossary.svg","caption":"","showPreview":true},"children":[{"id":"11","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph","styles":{}}],"children":[]}]}]},{"id":"12","type":"table","props":{"textColor":"default"},"content":{"type":"tableContent","columnWidths":[null,null],"rows":[{"cells":[{"type":"tableCell","content":[{"type":"text","text":"Table Cell","styles":{}}],"props":{"colspan":1,"rowspan":1,"backgroundColor":"default","textColor":"default","textAlignment":"left"}},{"type":"tableCell","content":[{"type":"text","text":"Table Cell","styles":{}}],"props":{"colspan":1,"rowspan":1,"backgroundColor":"default","textColor":"default","textAlignment":"left"}}]},{"cells":[{"type":"tableCell","content":[{"type":"text","text":"Table Cell","styles":{}}],"props":{"colspan":1,"rowspan":1,"backgroundColor":"default","textColor":"default","textAlignment":"left"}},{"type":"tableCell","content":[{"type":"text","text":"Table Cell","styles":{}}],"props":{"colspan":1,"rowspan":1,"backgroundColor":"default","textColor":"default","textAlignment":"left"}}]}]},"children":[]}],"blockCutAtStart":"8"} +{"_meta":{"startPos":156,"endPos":276},"blocks":[{"id":"8","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"h 3","styles":{}}],"children":[]},{"id":"9","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2,"isTogglable":false},"content":[{"type":"text","text":"Bold","styles":{"bold":true}},{"type":"text","text":"Italic","styles":{"italic":true}},{"type":"text","text":"Regular","styles":{}}],"children":[{"id":"10","type":"image","props":{"backgroundColor":"default","textAlignment":"left","name":"","url":"https://ralfvanveen.com/wp-content/uploads/2021/06/Placeholder-_-Glossary.svg","caption":"","showPreview":true},"children":[{"id":"11","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph","styles":{}}],"children":[]}]}]},{"id":"12","type":"table","props":{"textColor":"default"},"content":{"type":"tableContent","columnWidths":[null,null],"rows":[{"cells":[{"type":"tableCell","content":[{"type":"text","text":"Table Cell","styles":{}}],"props":{"colspan":1,"rowspan":1,"backgroundColor":"default","textColor":"default","textAlignment":"left"}},{"type":"tableCell","content":[{"type":"text","text":"Table Cell","styles":{}}],"props":{"colspan":1,"rowspan":1,"backgroundColor":"default","textColor":"default","textAlignment":"left"}}]},{"cells":[{"type":"tableCell","content":[{"type":"text","text":"Table Cell","styles":{}}],"props":{"colspan":1,"rowspan":1,"backgroundColor":"default","textColor":"default","textAlignment":"left"}},{"type":"tableCell","content":[{"type":"text","text":"Table Cell","styles":{}}],"props":{"colspan":1,"rowspan":1,"backgroundColor":"default","textColor":"default","textAlignment":"left"}}]}]},"children":[]}],"blockCutAtStart":"8"} +{"_meta":{"startPos":157,"endPos":276},"blocks":[{"id":"8","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":" 3","styles":{}}],"children":[]},{"id":"9","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2,"isTogglable":false},"content":[{"type":"text","text":"Bold","styles":{"bold":true}},{"type":"text","text":"Italic","styles":{"italic":true}},{"type":"text","text":"Regular","styles":{}}],"children":[{"id":"10","type":"image","props":{"backgroundColor":"default","textAlignment":"left","name":"","url":"https://ralfvanveen.com/wp-content/uploads/2021/06/Placeholder-_-Glossary.svg","caption":"","showPreview":true},"children":[{"id":"11","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph","styles":{}}],"children":[]}]}]},{"id":"12","type":"table","props":{"textColor":"default"},"content":{"type":"tableContent","columnWidths":[null,null],"rows":[{"cells":[{"type":"tableCell","content":[{"type":"text","text":"Table Cell","styles":{}}],"props":{"colspan":1,"rowspan":1,"backgroundColor":"default","textColor":"default","textAlignment":"left"}},{"type":"tableCell","content":[{"type":"text","text":"Table Cell","styles":{}}],"props":{"colspan":1,"rowspan":1,"backgroundColor":"default","textColor":"default","textAlignment":"left"}}]},{"cells":[{"type":"tableCell","content":[{"type":"text","text":"Table Cell","styles":{}}],"props":{"colspan":1,"rowspan":1,"backgroundColor":"default","textColor":"default","textAlignment":"left"}},{"type":"tableCell","content":[{"type":"text","text":"Table Cell","styles":{}}],"props":{"colspan":1,"rowspan":1,"backgroundColor":"default","textColor":"default","textAlignment":"left"}}]}]},"children":[]}],"blockCutAtStart":"8"} +{"_meta":{"startPos":158,"endPos":276},"blocks":[{"id":"8","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"3","styles":{}}],"children":[]},{"id":"9","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2,"isTogglable":false},"content":[{"type":"text","text":"Bold","styles":{"bold":true}},{"type":"text","text":"Italic","styles":{"italic":true}},{"type":"text","text":"Regular","styles":{}}],"children":[{"id":"10","type":"image","props":{"backgroundColor":"default","textAlignment":"left","name":"","url":"https://ralfvanveen.com/wp-content/uploads/2021/06/Placeholder-_-Glossary.svg","caption":"","showPreview":true},"children":[{"id":"11","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph","styles":{}}],"children":[]}]}]},{"id":"12","type":"table","props":{"textColor":"default"},"content":{"type":"tableContent","columnWidths":[null,null],"rows":[{"cells":[{"type":"tableCell","content":[{"type":"text","text":"Table Cell","styles":{}}],"props":{"colspan":1,"rowspan":1,"backgroundColor":"default","textColor":"default","textAlignment":"left"}},{"type":"tableCell","content":[{"type":"text","text":"Table Cell","styles":{}}],"props":{"colspan":1,"rowspan":1,"backgroundColor":"default","textColor":"default","textAlignment":"left"}}]},{"cells":[{"type":"tableCell","content":[{"type":"text","text":"Table Cell","styles":{}}],"props":{"colspan":1,"rowspan":1,"backgroundColor":"default","textColor":"default","textAlignment":"left"}},{"type":"tableCell","content":[{"type":"text","text":"Table Cell","styles":{}}],"props":{"colspan":1,"rowspan":1,"backgroundColor":"default","textColor":"default","textAlignment":"left"}}]}]},"children":[]}],"blockCutAtStart":"8"} +{"_meta":{"startPos":163,"endPos":276},"blocks":[{"id":"9","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2,"isTogglable":false},"content":[{"type":"text","text":"Bold","styles":{"bold":true}},{"type":"text","text":"Italic","styles":{"italic":true}},{"type":"text","text":"Regular","styles":{}}],"children":[{"id":"10","type":"image","props":{"backgroundColor":"default","textAlignment":"left","name":"","url":"https://ralfvanveen.com/wp-content/uploads/2021/06/Placeholder-_-Glossary.svg","caption":"","showPreview":true},"children":[{"id":"11","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph","styles":{}}],"children":[]}]}]},{"id":"12","type":"table","props":{"textColor":"default"},"content":{"type":"tableContent","columnWidths":[null,null],"rows":[{"cells":[{"type":"tableCell","content":[{"type":"text","text":"Table Cell","styles":{}}],"props":{"colspan":1,"rowspan":1,"backgroundColor":"default","textColor":"default","textAlignment":"left"}},{"type":"tableCell","content":[{"type":"text","text":"Table Cell","styles":{}}],"props":{"colspan":1,"rowspan":1,"backgroundColor":"default","textColor":"default","textAlignment":"left"}}]},{"cells":[{"type":"tableCell","content":[{"type":"text","text":"Table Cell","styles":{}}],"props":{"colspan":1,"rowspan":1,"backgroundColor":"default","textColor":"default","textAlignment":"left"}},{"type":"tableCell","content":[{"type":"text","text":"Table Cell","styles":{}}],"props":{"colspan":1,"rowspan":1,"backgroundColor":"default","textColor":"default","textAlignment":"left"}}]}]},"children":[]}]} +{"_meta":{"startPos":163,"endPos":276},"blocks":[{"id":"9","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2,"isTogglable":false},"content":[{"type":"text","text":"Bold","styles":{"bold":true}},{"type":"text","text":"Italic","styles":{"italic":true}},{"type":"text","text":"Regular","styles":{}}],"children":[{"id":"10","type":"image","props":{"backgroundColor":"default","textAlignment":"left","name":"","url":"https://ralfvanveen.com/wp-content/uploads/2021/06/Placeholder-_-Glossary.svg","caption":"","showPreview":true},"children":[{"id":"11","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph","styles":{}}],"children":[]}]}]},{"id":"12","type":"table","props":{"textColor":"default"},"content":{"type":"tableContent","columnWidths":[null,null],"rows":[{"cells":[{"type":"tableCell","content":[{"type":"text","text":"Table Cell","styles":{}}],"props":{"colspan":1,"rowspan":1,"backgroundColor":"default","textColor":"default","textAlignment":"left"}},{"type":"tableCell","content":[{"type":"text","text":"Table Cell","styles":{}}],"props":{"colspan":1,"rowspan":1,"backgroundColor":"default","textColor":"default","textAlignment":"left"}}]},{"cells":[{"type":"tableCell","content":[{"type":"text","text":"Table Cell","styles":{}}],"props":{"colspan":1,"rowspan":1,"backgroundColor":"default","textColor":"default","textAlignment":"left"}},{"type":"tableCell","content":[{"type":"text","text":"Table Cell","styles":{}}],"props":{"colspan":1,"rowspan":1,"backgroundColor":"default","textColor":"default","textAlignment":"left"}}]}]},"children":[]}]} +{"_meta":{"startPos":163,"endPos":276},"blocks":[{"id":"9","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2,"isTogglable":false},"content":[{"type":"text","text":"Bold","styles":{"bold":true}},{"type":"text","text":"Italic","styles":{"italic":true}},{"type":"text","text":"Regular","styles":{}}],"children":[{"id":"10","type":"image","props":{"backgroundColor":"default","textAlignment":"left","name":"","url":"https://ralfvanveen.com/wp-content/uploads/2021/06/Placeholder-_-Glossary.svg","caption":"","showPreview":true},"children":[{"id":"11","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph","styles":{}}],"children":[]}]}]},{"id":"12","type":"table","props":{"textColor":"default"},"content":{"type":"tableContent","columnWidths":[null,null],"rows":[{"cells":[{"type":"tableCell","content":[{"type":"text","text":"Table Cell","styles":{}}],"props":{"colspan":1,"rowspan":1,"backgroundColor":"default","textColor":"default","textAlignment":"left"}},{"type":"tableCell","content":[{"type":"text","text":"Table Cell","styles":{}}],"props":{"colspan":1,"rowspan":1,"backgroundColor":"default","textColor":"default","textAlignment":"left"}}]},{"cells":[{"type":"tableCell","content":[{"type":"text","text":"Table Cell","styles":{}}],"props":{"colspan":1,"rowspan":1,"backgroundColor":"default","textColor":"default","textAlignment":"left"}},{"type":"tableCell","content":[{"type":"text","text":"Table Cell","styles":{}}],"props":{"colspan":1,"rowspan":1,"backgroundColor":"default","textColor":"default","textAlignment":"left"}}]}]},"children":[]}]} +{"_meta":{"startPos":163,"endPos":276},"blocks":[{"id":"9","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2,"isTogglable":false},"content":[{"type":"text","text":"Bold","styles":{"bold":true}},{"type":"text","text":"Italic","styles":{"italic":true}},{"type":"text","text":"Regular","styles":{}}],"children":[{"id":"10","type":"image","props":{"backgroundColor":"default","textAlignment":"left","name":"","url":"https://ralfvanveen.com/wp-content/uploads/2021/06/Placeholder-_-Glossary.svg","caption":"","showPreview":true},"children":[{"id":"11","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph","styles":{}}],"children":[]}]}]},{"id":"12","type":"table","props":{"textColor":"default"},"content":{"type":"tableContent","columnWidths":[null,null],"rows":[{"cells":[{"type":"tableCell","content":[{"type":"text","text":"Table Cell","styles":{}}],"props":{"colspan":1,"rowspan":1,"backgroundColor":"default","textColor":"default","textAlignment":"left"}},{"type":"tableCell","content":[{"type":"text","text":"Table Cell","styles":{}}],"props":{"colspan":1,"rowspan":1,"backgroundColor":"default","textColor":"default","textAlignment":"left"}}]},{"cells":[{"type":"tableCell","content":[{"type":"text","text":"Table Cell","styles":{}}],"props":{"colspan":1,"rowspan":1,"backgroundColor":"default","textColor":"default","textAlignment":"left"}},{"type":"tableCell","content":[{"type":"text","text":"Table Cell","styles":{}}],"props":{"colspan":1,"rowspan":1,"backgroundColor":"default","textColor":"default","textAlignment":"left"}}]}]},"children":[]}]} +{"_meta":{"startPos":163,"endPos":276},"blocks":[{"id":"9","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2,"isTogglable":false},"content":[{"type":"text","text":"Bold","styles":{"bold":true}},{"type":"text","text":"Italic","styles":{"italic":true}},{"type":"text","text":"Regular","styles":{}}],"children":[{"id":"10","type":"image","props":{"backgroundColor":"default","textAlignment":"left","name":"","url":"https://ralfvanveen.com/wp-content/uploads/2021/06/Placeholder-_-Glossary.svg","caption":"","showPreview":true},"children":[{"id":"11","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph","styles":{}}],"children":[]}]}]},{"id":"12","type":"table","props":{"textColor":"default"},"content":{"type":"tableContent","columnWidths":[null,null],"rows":[{"cells":[{"type":"tableCell","content":[{"type":"text","text":"Table Cell","styles":{}}],"props":{"colspan":1,"rowspan":1,"backgroundColor":"default","textColor":"default","textAlignment":"left"}},{"type":"tableCell","content":[{"type":"text","text":"Table Cell","styles":{}}],"props":{"colspan":1,"rowspan":1,"backgroundColor":"default","textColor":"default","textAlignment":"left"}}]},{"cells":[{"type":"tableCell","content":[{"type":"text","text":"Table Cell","styles":{}}],"props":{"colspan":1,"rowspan":1,"backgroundColor":"default","textColor":"default","textAlignment":"left"}},{"type":"tableCell","content":[{"type":"text","text":"Table Cell","styles":{}}],"props":{"colspan":1,"rowspan":1,"backgroundColor":"default","textColor":"default","textAlignment":"left"}}]}]},"children":[]}]} +{"_meta":{"startPos":163,"endPos":276},"blocks":[{"id":"9","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2,"isTogglable":false},"content":[{"type":"text","text":"Bold","styles":{"bold":true}},{"type":"text","text":"Italic","styles":{"italic":true}},{"type":"text","text":"Regular","styles":{}}],"children":[{"id":"10","type":"image","props":{"backgroundColor":"default","textAlignment":"left","name":"","url":"https://ralfvanveen.com/wp-content/uploads/2021/06/Placeholder-_-Glossary.svg","caption":"","showPreview":true},"children":[{"id":"11","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph","styles":{}}],"children":[]}]}]},{"id":"12","type":"table","props":{"textColor":"default"},"content":{"type":"tableContent","columnWidths":[null,null],"rows":[{"cells":[{"type":"tableCell","content":[{"type":"text","text":"Table Cell","styles":{}}],"props":{"colspan":1,"rowspan":1,"backgroundColor":"default","textColor":"default","textAlignment":"left"}},{"type":"tableCell","content":[{"type":"text","text":"Table Cell","styles":{}}],"props":{"colspan":1,"rowspan":1,"backgroundColor":"default","textColor":"default","textAlignment":"left"}}]},{"cells":[{"type":"tableCell","content":[{"type":"text","text":"Table Cell","styles":{}}],"props":{"colspan":1,"rowspan":1,"backgroundColor":"default","textColor":"default","textAlignment":"left"}},{"type":"tableCell","content":[{"type":"text","text":"Table Cell","styles":{}}],"props":{"colspan":1,"rowspan":1,"backgroundColor":"default","textColor":"default","textAlignment":"left"}}]}]},"children":[]}]} +{"_meta":{"startPos":163,"endPos":276},"blocks":[{"id":"9","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2,"isTogglable":false},"content":[{"type":"text","text":"Bold","styles":{"bold":true}},{"type":"text","text":"Italic","styles":{"italic":true}},{"type":"text","text":"Regular","styles":{}}],"children":[{"id":"10","type":"image","props":{"backgroundColor":"default","textAlignment":"left","name":"","url":"https://ralfvanveen.com/wp-content/uploads/2021/06/Placeholder-_-Glossary.svg","caption":"","showPreview":true},"children":[{"id":"11","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph","styles":{}}],"children":[]}]}]},{"id":"12","type":"table","props":{"textColor":"default"},"content":{"type":"tableContent","columnWidths":[null,null],"rows":[{"cells":[{"type":"tableCell","content":[{"type":"text","text":"Table Cell","styles":{}}],"props":{"colspan":1,"rowspan":1,"backgroundColor":"default","textColor":"default","textAlignment":"left"}},{"type":"tableCell","content":[{"type":"text","text":"Table Cell","styles":{}}],"props":{"colspan":1,"rowspan":1,"backgroundColor":"default","textColor":"default","textAlignment":"left"}}]},{"cells":[{"type":"tableCell","content":[{"type":"text","text":"Table Cell","styles":{}}],"props":{"colspan":1,"rowspan":1,"backgroundColor":"default","textColor":"default","textAlignment":"left"}},{"type":"tableCell","content":[{"type":"text","text":"Table Cell","styles":{}}],"props":{"colspan":1,"rowspan":1,"backgroundColor":"default","textColor":"default","textAlignment":"left"}}]}]},"children":[]}]} +{"_meta":{"startPos":166,"endPos":276},"blocks":[{"id":"9","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2,"isTogglable":false},"content":[{"type":"text","text":"old","styles":{"bold":true}},{"type":"text","text":"Italic","styles":{"italic":true}},{"type":"text","text":"Regular","styles":{}}],"children":[{"id":"10","type":"image","props":{"backgroundColor":"default","textAlignment":"left","name":"","url":"https://ralfvanveen.com/wp-content/uploads/2021/06/Placeholder-_-Glossary.svg","caption":"","showPreview":true},"children":[{"id":"11","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph","styles":{}}],"children":[]}]}]},{"id":"12","type":"table","props":{"textColor":"default"},"content":{"type":"tableContent","columnWidths":[null,null],"rows":[{"cells":[{"type":"tableCell","content":[{"type":"text","text":"Table Cell","styles":{}}],"props":{"colspan":1,"rowspan":1,"backgroundColor":"default","textColor":"default","textAlignment":"left"}},{"type":"tableCell","content":[{"type":"text","text":"Table Cell","styles":{}}],"props":{"colspan":1,"rowspan":1,"backgroundColor":"default","textColor":"default","textAlignment":"left"}}]},{"cells":[{"type":"tableCell","content":[{"type":"text","text":"Table Cell","styles":{}}],"props":{"colspan":1,"rowspan":1,"backgroundColor":"default","textColor":"default","textAlignment":"left"}},{"type":"tableCell","content":[{"type":"text","text":"Table Cell","styles":{}}],"props":{"colspan":1,"rowspan":1,"backgroundColor":"default","textColor":"default","textAlignment":"left"}}]}]},"children":[]}],"blockCutAtStart":"9"} +{"_meta":{"startPos":167,"endPos":276},"blocks":[{"id":"9","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2,"isTogglable":false},"content":[{"type":"text","text":"ld","styles":{"bold":true}},{"type":"text","text":"Italic","styles":{"italic":true}},{"type":"text","text":"Regular","styles":{}}],"children":[{"id":"10","type":"image","props":{"backgroundColor":"default","textAlignment":"left","name":"","url":"https://ralfvanveen.com/wp-content/uploads/2021/06/Placeholder-_-Glossary.svg","caption":"","showPreview":true},"children":[{"id":"11","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph","styles":{}}],"children":[]}]}]},{"id":"12","type":"table","props":{"textColor":"default"},"content":{"type":"tableContent","columnWidths":[null,null],"rows":[{"cells":[{"type":"tableCell","content":[{"type":"text","text":"Table Cell","styles":{}}],"props":{"colspan":1,"rowspan":1,"backgroundColor":"default","textColor":"default","textAlignment":"left"}},{"type":"tableCell","content":[{"type":"text","text":"Table Cell","styles":{}}],"props":{"colspan":1,"rowspan":1,"backgroundColor":"default","textColor":"default","textAlignment":"left"}}]},{"cells":[{"type":"tableCell","content":[{"type":"text","text":"Table Cell","styles":{}}],"props":{"colspan":1,"rowspan":1,"backgroundColor":"default","textColor":"default","textAlignment":"left"}},{"type":"tableCell","content":[{"type":"text","text":"Table Cell","styles":{}}],"props":{"colspan":1,"rowspan":1,"backgroundColor":"default","textColor":"default","textAlignment":"left"}}]}]},"children":[]}],"blockCutAtStart":"9"} +{"_meta":{"startPos":168,"endPos":276},"blocks":[{"id":"9","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2,"isTogglable":false},"content":[{"type":"text","text":"d","styles":{"bold":true}},{"type":"text","text":"Italic","styles":{"italic":true}},{"type":"text","text":"Regular","styles":{}}],"children":[{"id":"10","type":"image","props":{"backgroundColor":"default","textAlignment":"left","name":"","url":"https://ralfvanveen.com/wp-content/uploads/2021/06/Placeholder-_-Glossary.svg","caption":"","showPreview":true},"children":[{"id":"11","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph","styles":{}}],"children":[]}]}]},{"id":"12","type":"table","props":{"textColor":"default"},"content":{"type":"tableContent","columnWidths":[null,null],"rows":[{"cells":[{"type":"tableCell","content":[{"type":"text","text":"Table Cell","styles":{}}],"props":{"colspan":1,"rowspan":1,"backgroundColor":"default","textColor":"default","textAlignment":"left"}},{"type":"tableCell","content":[{"type":"text","text":"Table Cell","styles":{}}],"props":{"colspan":1,"rowspan":1,"backgroundColor":"default","textColor":"default","textAlignment":"left"}}]},{"cells":[{"type":"tableCell","content":[{"type":"text","text":"Table Cell","styles":{}}],"props":{"colspan":1,"rowspan":1,"backgroundColor":"default","textColor":"default","textAlignment":"left"}},{"type":"tableCell","content":[{"type":"text","text":"Table Cell","styles":{}}],"props":{"colspan":1,"rowspan":1,"backgroundColor":"default","textColor":"default","textAlignment":"left"}}]}]},"children":[]}],"blockCutAtStart":"9"} +{"_meta":{"startPos":169,"endPos":276},"blocks":[{"id":"9","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2,"isTogglable":false},"content":[{"type":"text","text":"Italic","styles":{"italic":true}},{"type":"text","text":"Regular","styles":{}}],"children":[{"id":"10","type":"image","props":{"backgroundColor":"default","textAlignment":"left","name":"","url":"https://ralfvanveen.com/wp-content/uploads/2021/06/Placeholder-_-Glossary.svg","caption":"","showPreview":true},"children":[{"id":"11","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph","styles":{}}],"children":[]}]}]},{"id":"12","type":"table","props":{"textColor":"default"},"content":{"type":"tableContent","columnWidths":[null,null],"rows":[{"cells":[{"type":"tableCell","content":[{"type":"text","text":"Table Cell","styles":{}}],"props":{"colspan":1,"rowspan":1,"backgroundColor":"default","textColor":"default","textAlignment":"left"}},{"type":"tableCell","content":[{"type":"text","text":"Table Cell","styles":{}}],"props":{"colspan":1,"rowspan":1,"backgroundColor":"default","textColor":"default","textAlignment":"left"}}]},{"cells":[{"type":"tableCell","content":[{"type":"text","text":"Table Cell","styles":{}}],"props":{"colspan":1,"rowspan":1,"backgroundColor":"default","textColor":"default","textAlignment":"left"}},{"type":"tableCell","content":[{"type":"text","text":"Table Cell","styles":{}}],"props":{"colspan":1,"rowspan":1,"backgroundColor":"default","textColor":"default","textAlignment":"left"}}]}]},"children":[]}],"blockCutAtStart":"9"} +{"_meta":{"startPos":170,"endPos":276},"blocks":[{"id":"9","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2,"isTogglable":false},"content":[{"type":"text","text":"talic","styles":{"italic":true}},{"type":"text","text":"Regular","styles":{}}],"children":[{"id":"10","type":"image","props":{"backgroundColor":"default","textAlignment":"left","name":"","url":"https://ralfvanveen.com/wp-content/uploads/2021/06/Placeholder-_-Glossary.svg","caption":"","showPreview":true},"children":[{"id":"11","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph","styles":{}}],"children":[]}]}]},{"id":"12","type":"table","props":{"textColor":"default"},"content":{"type":"tableContent","columnWidths":[null,null],"rows":[{"cells":[{"type":"tableCell","content":[{"type":"text","text":"Table Cell","styles":{}}],"props":{"colspan":1,"rowspan":1,"backgroundColor":"default","textColor":"default","textAlignment":"left"}},{"type":"tableCell","content":[{"type":"text","text":"Table Cell","styles":{}}],"props":{"colspan":1,"rowspan":1,"backgroundColor":"default","textColor":"default","textAlignment":"left"}}]},{"cells":[{"type":"tableCell","content":[{"type":"text","text":"Table Cell","styles":{}}],"props":{"colspan":1,"rowspan":1,"backgroundColor":"default","textColor":"default","textAlignment":"left"}},{"type":"tableCell","content":[{"type":"text","text":"Table Cell","styles":{}}],"props":{"colspan":1,"rowspan":1,"backgroundColor":"default","textColor":"default","textAlignment":"left"}}]}]},"children":[]}],"blockCutAtStart":"9"} +{"_meta":{"startPos":171,"endPos":276},"blocks":[{"id":"9","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2,"isTogglable":false},"content":[{"type":"text","text":"alic","styles":{"italic":true}},{"type":"text","text":"Regular","styles":{}}],"children":[{"id":"10","type":"image","props":{"backgroundColor":"default","textAlignment":"left","name":"","url":"https://ralfvanveen.com/wp-content/uploads/2021/06/Placeholder-_-Glossary.svg","caption":"","showPreview":true},"children":[{"id":"11","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph","styles":{}}],"children":[]}]}]},{"id":"12","type":"table","props":{"textColor":"default"},"content":{"type":"tableContent","columnWidths":[null,null],"rows":[{"cells":[{"type":"tableCell","content":[{"type":"text","text":"Table Cell","styles":{}}],"props":{"colspan":1,"rowspan":1,"backgroundColor":"default","textColor":"default","textAlignment":"left"}},{"type":"tableCell","content":[{"type":"text","text":"Table Cell","styles":{}}],"props":{"colspan":1,"rowspan":1,"backgroundColor":"default","textColor":"default","textAlignment":"left"}}]},{"cells":[{"type":"tableCell","content":[{"type":"text","text":"Table Cell","styles":{}}],"props":{"colspan":1,"rowspan":1,"backgroundColor":"default","textColor":"default","textAlignment":"left"}},{"type":"tableCell","content":[{"type":"text","text":"Table Cell","styles":{}}],"props":{"colspan":1,"rowspan":1,"backgroundColor":"default","textColor":"default","textAlignment":"left"}}]}]},"children":[]}],"blockCutAtStart":"9"} +{"_meta":{"startPos":172,"endPos":276},"blocks":[{"id":"9","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2,"isTogglable":false},"content":[{"type":"text","text":"lic","styles":{"italic":true}},{"type":"text","text":"Regular","styles":{}}],"children":[{"id":"10","type":"image","props":{"backgroundColor":"default","textAlignment":"left","name":"","url":"https://ralfvanveen.com/wp-content/uploads/2021/06/Placeholder-_-Glossary.svg","caption":"","showPreview":true},"children":[{"id":"11","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph","styles":{}}],"children":[]}]}]},{"id":"12","type":"table","props":{"textColor":"default"},"content":{"type":"tableContent","columnWidths":[null,null],"rows":[{"cells":[{"type":"tableCell","content":[{"type":"text","text":"Table Cell","styles":{}}],"props":{"colspan":1,"rowspan":1,"backgroundColor":"default","textColor":"default","textAlignment":"left"}},{"type":"tableCell","content":[{"type":"text","text":"Table Cell","styles":{}}],"props":{"colspan":1,"rowspan":1,"backgroundColor":"default","textColor":"default","textAlignment":"left"}}]},{"cells":[{"type":"tableCell","content":[{"type":"text","text":"Table Cell","styles":{}}],"props":{"colspan":1,"rowspan":1,"backgroundColor":"default","textColor":"default","textAlignment":"left"}},{"type":"tableCell","content":[{"type":"text","text":"Table Cell","styles":{}}],"props":{"colspan":1,"rowspan":1,"backgroundColor":"default","textColor":"default","textAlignment":"left"}}]}]},"children":[]}],"blockCutAtStart":"9"} +{"_meta":{"startPos":173,"endPos":276},"blocks":[{"id":"9","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2,"isTogglable":false},"content":[{"type":"text","text":"ic","styles":{"italic":true}},{"type":"text","text":"Regular","styles":{}}],"children":[{"id":"10","type":"image","props":{"backgroundColor":"default","textAlignment":"left","name":"","url":"https://ralfvanveen.com/wp-content/uploads/2021/06/Placeholder-_-Glossary.svg","caption":"","showPreview":true},"children":[{"id":"11","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph","styles":{}}],"children":[]}]}]},{"id":"12","type":"table","props":{"textColor":"default"},"content":{"type":"tableContent","columnWidths":[null,null],"rows":[{"cells":[{"type":"tableCell","content":[{"type":"text","text":"Table Cell","styles":{}}],"props":{"colspan":1,"rowspan":1,"backgroundColor":"default","textColor":"default","textAlignment":"left"}},{"type":"tableCell","content":[{"type":"text","text":"Table Cell","styles":{}}],"props":{"colspan":1,"rowspan":1,"backgroundColor":"default","textColor":"default","textAlignment":"left"}}]},{"cells":[{"type":"tableCell","content":[{"type":"text","text":"Table Cell","styles":{}}],"props":{"colspan":1,"rowspan":1,"backgroundColor":"default","textColor":"default","textAlignment":"left"}},{"type":"tableCell","content":[{"type":"text","text":"Table Cell","styles":{}}],"props":{"colspan":1,"rowspan":1,"backgroundColor":"default","textColor":"default","textAlignment":"left"}}]}]},"children":[]}],"blockCutAtStart":"9"} +{"_meta":{"startPos":174,"endPos":276},"blocks":[{"id":"9","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2,"isTogglable":false},"content":[{"type":"text","text":"c","styles":{"italic":true}},{"type":"text","text":"Regular","styles":{}}],"children":[{"id":"10","type":"image","props":{"backgroundColor":"default","textAlignment":"left","name":"","url":"https://ralfvanveen.com/wp-content/uploads/2021/06/Placeholder-_-Glossary.svg","caption":"","showPreview":true},"children":[{"id":"11","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph","styles":{}}],"children":[]}]}]},{"id":"12","type":"table","props":{"textColor":"default"},"content":{"type":"tableContent","columnWidths":[null,null],"rows":[{"cells":[{"type":"tableCell","content":[{"type":"text","text":"Table Cell","styles":{}}],"props":{"colspan":1,"rowspan":1,"backgroundColor":"default","textColor":"default","textAlignment":"left"}},{"type":"tableCell","content":[{"type":"text","text":"Table Cell","styles":{}}],"props":{"colspan":1,"rowspan":1,"backgroundColor":"default","textColor":"default","textAlignment":"left"}}]},{"cells":[{"type":"tableCell","content":[{"type":"text","text":"Table Cell","styles":{}}],"props":{"colspan":1,"rowspan":1,"backgroundColor":"default","textColor":"default","textAlignment":"left"}},{"type":"tableCell","content":[{"type":"text","text":"Table Cell","styles":{}}],"props":{"colspan":1,"rowspan":1,"backgroundColor":"default","textColor":"default","textAlignment":"left"}}]}]},"children":[]}],"blockCutAtStart":"9"} +{"_meta":{"startPos":175,"endPos":276},"blocks":[{"id":"9","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2,"isTogglable":false},"content":[{"type":"text","text":"Regular","styles":{}}],"children":[{"id":"10","type":"image","props":{"backgroundColor":"default","textAlignment":"left","name":"","url":"https://ralfvanveen.com/wp-content/uploads/2021/06/Placeholder-_-Glossary.svg","caption":"","showPreview":true},"children":[{"id":"11","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph","styles":{}}],"children":[]}]}]},{"id":"12","type":"table","props":{"textColor":"default"},"content":{"type":"tableContent","columnWidths":[null,null],"rows":[{"cells":[{"type":"tableCell","content":[{"type":"text","text":"Table Cell","styles":{}}],"props":{"colspan":1,"rowspan":1,"backgroundColor":"default","textColor":"default","textAlignment":"left"}},{"type":"tableCell","content":[{"type":"text","text":"Table Cell","styles":{}}],"props":{"colspan":1,"rowspan":1,"backgroundColor":"default","textColor":"default","textAlignment":"left"}}]},{"cells":[{"type":"tableCell","content":[{"type":"text","text":"Table Cell","styles":{}}],"props":{"colspan":1,"rowspan":1,"backgroundColor":"default","textColor":"default","textAlignment":"left"}},{"type":"tableCell","content":[{"type":"text","text":"Table Cell","styles":{}}],"props":{"colspan":1,"rowspan":1,"backgroundColor":"default","textColor":"default","textAlignment":"left"}}]}]},"children":[]}],"blockCutAtStart":"9"} +{"_meta":{"startPos":176,"endPos":276},"blocks":[{"id":"9","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2,"isTogglable":false},"content":[{"type":"text","text":"egular","styles":{}}],"children":[{"id":"10","type":"image","props":{"backgroundColor":"default","textAlignment":"left","name":"","url":"https://ralfvanveen.com/wp-content/uploads/2021/06/Placeholder-_-Glossary.svg","caption":"","showPreview":true},"children":[{"id":"11","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph","styles":{}}],"children":[]}]}]},{"id":"12","type":"table","props":{"textColor":"default"},"content":{"type":"tableContent","columnWidths":[null,null],"rows":[{"cells":[{"type":"tableCell","content":[{"type":"text","text":"Table Cell","styles":{}}],"props":{"colspan":1,"rowspan":1,"backgroundColor":"default","textColor":"default","textAlignment":"left"}},{"type":"tableCell","content":[{"type":"text","text":"Table Cell","styles":{}}],"props":{"colspan":1,"rowspan":1,"backgroundColor":"default","textColor":"default","textAlignment":"left"}}]},{"cells":[{"type":"tableCell","content":[{"type":"text","text":"Table Cell","styles":{}}],"props":{"colspan":1,"rowspan":1,"backgroundColor":"default","textColor":"default","textAlignment":"left"}},{"type":"tableCell","content":[{"type":"text","text":"Table Cell","styles":{}}],"props":{"colspan":1,"rowspan":1,"backgroundColor":"default","textColor":"default","textAlignment":"left"}}]}]},"children":[]}],"blockCutAtStart":"9"} +{"_meta":{"startPos":177,"endPos":276},"blocks":[{"id":"9","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2,"isTogglable":false},"content":[{"type":"text","text":"gular","styles":{}}],"children":[{"id":"10","type":"image","props":{"backgroundColor":"default","textAlignment":"left","name":"","url":"https://ralfvanveen.com/wp-content/uploads/2021/06/Placeholder-_-Glossary.svg","caption":"","showPreview":true},"children":[{"id":"11","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph","styles":{}}],"children":[]}]}]},{"id":"12","type":"table","props":{"textColor":"default"},"content":{"type":"tableContent","columnWidths":[null,null],"rows":[{"cells":[{"type":"tableCell","content":[{"type":"text","text":"Table Cell","styles":{}}],"props":{"colspan":1,"rowspan":1,"backgroundColor":"default","textColor":"default","textAlignment":"left"}},{"type":"tableCell","content":[{"type":"text","text":"Table Cell","styles":{}}],"props":{"colspan":1,"rowspan":1,"backgroundColor":"default","textColor":"default","textAlignment":"left"}}]},{"cells":[{"type":"tableCell","content":[{"type":"text","text":"Table Cell","styles":{}}],"props":{"colspan":1,"rowspan":1,"backgroundColor":"default","textColor":"default","textAlignment":"left"}},{"type":"tableCell","content":[{"type":"text","text":"Table Cell","styles":{}}],"props":{"colspan":1,"rowspan":1,"backgroundColor":"default","textColor":"default","textAlignment":"left"}}]}]},"children":[]}],"blockCutAtStart":"9"} +{"_meta":{"startPos":178,"endPos":276},"blocks":[{"id":"9","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2,"isTogglable":false},"content":[{"type":"text","text":"ular","styles":{}}],"children":[{"id":"10","type":"image","props":{"backgroundColor":"default","textAlignment":"left","name":"","url":"https://ralfvanveen.com/wp-content/uploads/2021/06/Placeholder-_-Glossary.svg","caption":"","showPreview":true},"children":[{"id":"11","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph","styles":{}}],"children":[]}]}]},{"id":"12","type":"table","props":{"textColor":"default"},"content":{"type":"tableContent","columnWidths":[null,null],"rows":[{"cells":[{"type":"tableCell","content":[{"type":"text","text":"Table Cell","styles":{}}],"props":{"colspan":1,"rowspan":1,"backgroundColor":"default","textColor":"default","textAlignment":"left"}},{"type":"tableCell","content":[{"type":"text","text":"Table Cell","styles":{}}],"props":{"colspan":1,"rowspan":1,"backgroundColor":"default","textColor":"default","textAlignment":"left"}}]},{"cells":[{"type":"tableCell","content":[{"type":"text","text":"Table Cell","styles":{}}],"props":{"colspan":1,"rowspan":1,"backgroundColor":"default","textColor":"default","textAlignment":"left"}},{"type":"tableCell","content":[{"type":"text","text":"Table Cell","styles":{}}],"props":{"colspan":1,"rowspan":1,"backgroundColor":"default","textColor":"default","textAlignment":"left"}}]}]},"children":[]}],"blockCutAtStart":"9"} +{"_meta":{"startPos":179,"endPos":276},"blocks":[{"id":"9","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2,"isTogglable":false},"content":[{"type":"text","text":"lar","styles":{}}],"children":[{"id":"10","type":"image","props":{"backgroundColor":"default","textAlignment":"left","name":"","url":"https://ralfvanveen.com/wp-content/uploads/2021/06/Placeholder-_-Glossary.svg","caption":"","showPreview":true},"children":[{"id":"11","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph","styles":{}}],"children":[]}]}]},{"id":"12","type":"table","props":{"textColor":"default"},"content":{"type":"tableContent","columnWidths":[null,null],"rows":[{"cells":[{"type":"tableCell","content":[{"type":"text","text":"Table Cell","styles":{}}],"props":{"colspan":1,"rowspan":1,"backgroundColor":"default","textColor":"default","textAlignment":"left"}},{"type":"tableCell","content":[{"type":"text","text":"Table Cell","styles":{}}],"props":{"colspan":1,"rowspan":1,"backgroundColor":"default","textColor":"default","textAlignment":"left"}}]},{"cells":[{"type":"tableCell","content":[{"type":"text","text":"Table Cell","styles":{}}],"props":{"colspan":1,"rowspan":1,"backgroundColor":"default","textColor":"default","textAlignment":"left"}},{"type":"tableCell","content":[{"type":"text","text":"Table Cell","styles":{}}],"props":{"colspan":1,"rowspan":1,"backgroundColor":"default","textColor":"default","textAlignment":"left"}}]}]},"children":[]}],"blockCutAtStart":"9"} +{"_meta":{"startPos":180,"endPos":276},"blocks":[{"id":"9","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2,"isTogglable":false},"content":[{"type":"text","text":"ar","styles":{}}],"children":[{"id":"10","type":"image","props":{"backgroundColor":"default","textAlignment":"left","name":"","url":"https://ralfvanveen.com/wp-content/uploads/2021/06/Placeholder-_-Glossary.svg","caption":"","showPreview":true},"children":[{"id":"11","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph","styles":{}}],"children":[]}]}]},{"id":"12","type":"table","props":{"textColor":"default"},"content":{"type":"tableContent","columnWidths":[null,null],"rows":[{"cells":[{"type":"tableCell","content":[{"type":"text","text":"Table Cell","styles":{}}],"props":{"colspan":1,"rowspan":1,"backgroundColor":"default","textColor":"default","textAlignment":"left"}},{"type":"tableCell","content":[{"type":"text","text":"Table Cell","styles":{}}],"props":{"colspan":1,"rowspan":1,"backgroundColor":"default","textColor":"default","textAlignment":"left"}}]},{"cells":[{"type":"tableCell","content":[{"type":"text","text":"Table Cell","styles":{}}],"props":{"colspan":1,"rowspan":1,"backgroundColor":"default","textColor":"default","textAlignment":"left"}},{"type":"tableCell","content":[{"type":"text","text":"Table Cell","styles":{}}],"props":{"colspan":1,"rowspan":1,"backgroundColor":"default","textColor":"default","textAlignment":"left"}}]}]},"children":[]}],"blockCutAtStart":"9"} +{"_meta":{"startPos":181,"endPos":276},"blocks":[{"id":"9","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2,"isTogglable":false},"content":[{"type":"text","text":"r","styles":{}}],"children":[{"id":"10","type":"image","props":{"backgroundColor":"default","textAlignment":"left","name":"","url":"https://ralfvanveen.com/wp-content/uploads/2021/06/Placeholder-_-Glossary.svg","caption":"","showPreview":true},"children":[{"id":"11","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph","styles":{}}],"children":[]}]}]},{"id":"12","type":"table","props":{"textColor":"default"},"content":{"type":"tableContent","columnWidths":[null,null],"rows":[{"cells":[{"type":"tableCell","content":[{"type":"text","text":"Table Cell","styles":{}}],"props":{"colspan":1,"rowspan":1,"backgroundColor":"default","textColor":"default","textAlignment":"left"}},{"type":"tableCell","content":[{"type":"text","text":"Table Cell","styles":{}}],"props":{"colspan":1,"rowspan":1,"backgroundColor":"default","textColor":"default","textAlignment":"left"}}]},{"cells":[{"type":"tableCell","content":[{"type":"text","text":"Table Cell","styles":{}}],"props":{"colspan":1,"rowspan":1,"backgroundColor":"default","textColor":"default","textAlignment":"left"}},{"type":"tableCell","content":[{"type":"text","text":"Table Cell","styles":{}}],"props":{"colspan":1,"rowspan":1,"backgroundColor":"default","textColor":"default","textAlignment":"left"}}]}]},"children":[]}],"blockCutAtStart":"9"} {"_meta":{"startPos":183,"endPos":276},"blocks":[{"id":"10","type":"image","props":{"backgroundColor":"default","textAlignment":"left","name":"","url":"https://ralfvanveen.com/wp-content/uploads/2021/06/Placeholder-_-Glossary.svg","caption":"","showPreview":true},"children":[{"id":"11","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph","styles":{}}],"children":[]}]},{"id":"12","type":"table","props":{"textColor":"default"},"content":{"type":"tableContent","columnWidths":[null,null],"rows":[{"cells":[{"type":"tableCell","content":[{"type":"text","text":"Table Cell","styles":{}}],"props":{"colspan":1,"rowspan":1,"backgroundColor":"default","textColor":"default","textAlignment":"left"}},{"type":"tableCell","content":[{"type":"text","text":"Table Cell","styles":{}}],"props":{"colspan":1,"rowspan":1,"backgroundColor":"default","textColor":"default","textAlignment":"left"}}]},{"cells":[{"type":"tableCell","content":[{"type":"text","text":"Table Cell","styles":{}}],"props":{"colspan":1,"rowspan":1,"backgroundColor":"default","textColor":"default","textAlignment":"left"}},{"type":"tableCell","content":[{"type":"text","text":"Table Cell","styles":{}}],"props":{"colspan":1,"rowspan":1,"backgroundColor":"default","textColor":"default","textAlignment":"left"}}]}]},"children":[]}]} {"_meta":{"startPos":183,"endPos":276},"blocks":[{"id":"10","type":"image","props":{"backgroundColor":"default","textAlignment":"left","name":"","url":"https://ralfvanveen.com/wp-content/uploads/2021/06/Placeholder-_-Glossary.svg","caption":"","showPreview":true},"children":[{"id":"11","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph","styles":{}}],"children":[]}]},{"id":"12","type":"table","props":{"textColor":"default"},"content":{"type":"tableContent","columnWidths":[null,null],"rows":[{"cells":[{"type":"tableCell","content":[{"type":"text","text":"Table Cell","styles":{}}],"props":{"colspan":1,"rowspan":1,"backgroundColor":"default","textColor":"default","textAlignment":"left"}},{"type":"tableCell","content":[{"type":"text","text":"Table Cell","styles":{}}],"props":{"colspan":1,"rowspan":1,"backgroundColor":"default","textColor":"default","textAlignment":"left"}}]},{"cells":[{"type":"tableCell","content":[{"type":"text","text":"Table Cell","styles":{}}],"props":{"colspan":1,"rowspan":1,"backgroundColor":"default","textColor":"default","textAlignment":"left"}},{"type":"tableCell","content":[{"type":"text","text":"Table Cell","styles":{}}],"props":{"colspan":1,"rowspan":1,"backgroundColor":"default","textColor":"default","textAlignment":"left"}}]}]},"children":[]}]} {"_meta":{"startPos":183,"endPos":276},"blocks":[{"id":"10","type":"image","props":{"backgroundColor":"default","textAlignment":"left","name":"","url":"https://ralfvanveen.com/wp-content/uploads/2021/06/Placeholder-_-Glossary.svg","caption":"","showPreview":true},"children":[{"id":"11","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph","styles":{}}],"children":[]}]},{"id":"12","type":"table","props":{"textColor":"default"},"content":{"type":"tableContent","columnWidths":[null,null],"rows":[{"cells":[{"type":"tableCell","content":[{"type":"text","text":"Table Cell","styles":{}}],"props":{"colspan":1,"rowspan":1,"backgroundColor":"default","textColor":"default","textAlignment":"left"}},{"type":"tableCell","content":[{"type":"text","text":"Table Cell","styles":{}}],"props":{"colspan":1,"rowspan":1,"backgroundColor":"default","textColor":"default","textAlignment":"left"}}]},{"cells":[{"type":"tableCell","content":[{"type":"text","text":"Table Cell","styles":{}}],"props":{"colspan":1,"rowspan":1,"backgroundColor":"default","textColor":"default","textAlignment":"left"}},{"type":"tableCell","content":[{"type":"text","text":"Table Cell","styles":{}}],"props":{"colspan":1,"rowspan":1,"backgroundColor":"default","textColor":"default","textAlignment":"left"}}]}]},"children":[]}]} From ff157b3855e8c438bca6a6e8c4d29893e0c65e92 Mon Sep 17 00:00:00 2001 From: Matthew Lipski Date: Wed, 11 Jun 2025 18:34:49 +0200 Subject: [PATCH 18/34] Updated PW tests --- .../ariakit-slash-menu-chromium-linux.png | Bin 46351 -> 45808 bytes .../ariakit-slash-menu-firefox-linux.png | Bin 72724 -> 75139 bytes .../ariakit-slash-menu-webkit-linux.png | Bin 152287 -> 161119 bytes .../headings-json-chromium-linux.json | 18 ++++++++++++------ .../dragdropnested-chromium-linux.json | 9 ++++++--- .../dragdropnested-webkit-linux.json | 9 ++++++--- .../dragdropsingle-chromium-linux.json | 9 ++++++--- .../dragdropsingle-webkit-linux.json | 9 ++++++--- ...dnonselectedemptyblock-chromium-linux.json | 6 ++++-- ...ddnonselectedemptyblock-firefox-linux.json | 6 ++++-- ...addnonselectedemptyblock-webkit-linux.json | 6 ++++-- ...dragHandleDocStructure-chromium-linux.json | 6 ++++-- .../dragHandleDocStructure-firefox-linux.json | 6 ++++-- .../dragHandleDocStructure-webkit-linux.json | 6 ++++-- .../draghandleadd-chromium-linux.json | 6 ++++-- .../draghandleadd-firefox-linux.json | 6 ++++-- .../draghandleadd-webkit-linux.json | 6 ++++-- ...draghandlenesteddelete-chromium-linux.json | 3 ++- .../draghandlenesteddelete-firefox-linux.json | 3 ++- .../draghandlenesteddelete-webkit-linux.json | 3 ++- .../dragImage-chromium-linux.json | 3 ++- .../dragImage-firefox-linux.json | 3 ++- .../dragImage-webkit-linux.json | 3 ++- ...seIndentMultipleBlocks-chromium-linux.json | 9 ++++++--- ...aseIndentMultipleBlocks-firefox-linux.json | 9 ++++++--- ...easeIndentMultipleBlocks-webkit-linux.json | 9 ++++++--- ...reaseIndentSingleBlock-chromium-linux.json | 9 ++++++--- ...creaseIndentSingleBlock-firefox-linux.json | 9 ++++++--- ...ecreaseIndentSingleBlock-webkit-linux.json | 9 ++++++--- ...seIndentMultipleBlocks-chromium-linux.json | 9 ++++++--- ...aseIndentMultipleBlocks-firefox-linux.json | 9 ++++++--- ...easeIndentMultipleBlocks-webkit-linux.json | 9 ++++++--- ...reaseIndentSingleBlock-chromium-linux.json | 9 ++++++--- ...creaseIndentSingleBlock-firefox-linux.json | 9 ++++++--- ...ncreaseIndentSingleBlock-webkit-linux.json | 9 ++++++--- ...terPreservesMarks-json-chromium-linux.json | 3 ++- ...nterPreservesMarks-json-firefox-linux.json | 3 ++- ...enterPreservesMarks-json-webkit-linux.json | 3 ++- ...ervesNestedBlocks-json-chromium-linux.json | 9 ++++++--- ...servesNestedBlocks-json-firefox-linux.json | 9 ++++++--- ...eservesNestedBlocks-json-webkit-linux.json | 9 ++++++--- ...SelectionNotEmpty-json-chromium-linux.json | 3 ++- ...rSelectionNotEmpty-json-firefox-linux.json | 3 ++- ...erSelectionNotEmpty-json-webkit-linux.json | 3 ++- .../heading1Shortcut-json-chromium-linux.json | 3 ++- .../heading1Shortcut-json-firefox-linux.json | 3 ++- .../heading1Shortcut-json-webkit-linux.json | 3 ++- .../heading2Shortcut-json-chromium-linux.json | 3 ++- .../heading2Shortcut-json-firefox-linux.json | 3 ++- .../heading2Shortcut-json-webkit-linux.json | 3 ++- .../heading3Shortcut-json-chromium-linux.json | 3 ++- .../heading3Shortcut-json-firefox-linux.json | 3 ++- .../heading3Shortcut-json-webkit-linux.json | 3 ++- .../shadcn-slash-menu-chromium-linux.png | Bin 55729 -> 58846 bytes .../shadcn-slash-menu-firefox-linux.png | Bin 86890 -> 92665 bytes .../shadcn-slash-menu-webkit-linux.png | Bin 171043 -> 187154 bytes .../docStructureSnapshot-chromium-linux.json | 9 ++++++--- .../docStructureSnapshot-firefox-linux.json | 9 ++++++--- .../docStructureSnapshot-webkit-linux.json | 9 ++++++--- .../dark-slash-menu-chromium-linux.png | Bin 51986 -> 56285 bytes .../dark-slash-menu-firefox-linux.png | Bin 75559 -> 81250 bytes .../dark-slash-menu-webkit-linux.png | Bin 157943 -> 172297 bytes 62 files changed, 222 insertions(+), 111 deletions(-) diff --git a/tests/src/end-to-end/ariakit/ariakit.test.ts-snapshots/ariakit-slash-menu-chromium-linux.png b/tests/src/end-to-end/ariakit/ariakit.test.ts-snapshots/ariakit-slash-menu-chromium-linux.png index c43724c202009f4de2ed43eb019c76e3a0871db9..5d0c1e9ed670290e84b47ea12cde754d4aa17ef1 100644 GIT binary patch delta 29643 zcmd422UJt-wl0jlQ7wQJQ7j-uK&sRaX-X9_^dca=ODDimQ9uy*1Oe$vCy>wy1Og~c z={>X%H1q(Gk^~5Wf8pL|mwWcv_niOUe~kYf!?B22dDnW|ob#E_Gvk(z{+c^l#`*_v z;~s&E1N>(by9Di!@ztSs&Pm-dyK8nl_k#%6S*sb|8`*z87`&lxKKdg&ed8UAG#%Yl zx`(RDPhKa4KX}CQR`=fH2UJfljwMy6g|8CNZ?L`3sPaC-ZF1Jv=N9 zop=@{^v&)&XXbeHoU*NbpITp5W=d*iCUzZgCvH)F#m0-2`Zhx{r>i%96a{h6F}|_* zbc7CUS}*D753j~&k3T)UHb1^fckJ+wq@zdJ53gkxPd6W4U*!Ekck=KLp%X_%53f&e zGr#z6bOC_3{-5^oUv=@~&8IHqMX1{zKYVL)#4UkTzrI+uT5Q97602ZWB)@bVs~-Y< z7+Drr^^>yyW3Jrco^?>%V{(`85BZO6LZmst-swgUZJx)qxIlo&=bVH(hg3bOap#(<9(a2_0`?L_NI9%PU}Haw~L-0G;o-iCkvs-=?|Wfy8khwm4{D)eQ0 zJ15F$qGx?3x*GOHCyX%}AvI{Wmh~3?#$mwUb zV8n;cd1S_X?d9LPf_~~gEk{`CwG4k)x)HwPSfR_|_ey4wJP7pbH6$gw8x^l#)gLPE z&+gn{aO0jzmEuwgwf|E!^ER*k(+ErX&b0n=yESJuRRUzaW4sxunu|AmiQ}2`ogEvw z#sO|~<69+k$BcbYciIz|G$!@Vq`C9?K*a8FvREvb*lA}-x+-lD>q0iCO&t75@sNBR zL;9+q3a(`HIgq83Y((J26&0q|nN~Iw;^O2DREtqUQKn9LA0}#D5a2`U@mEAVrH>+) z0uaKcODgo2!Sx?6J4*j_zzHHKhF)qjY^f495X`G~9N{nbOP6$;ybFtgI%Ht6U7SjL z8yai-8@>1@QzUUYcs^vEUvFyZ(v1DESAEYH_!4l7hhb1ZX$}{NcX&>){44pjIzd77s)71IBss>nLd!}+^IQf9q)6CYU~0r;>=*LSxEI&OyzLOU>jNftoaf6 z2JV@za60;#r)W!J>)Q+UjJrT1k-8tVIK71`$K+xQmF|FhZs>;Q-O39QvDbL>Ir%=n zyRNjzIOxOd|4L>E>Cw0$O9i*l&#~eNeQEfI#fQ=vy7Dl@?IT27s#9I8zC*$bSenf+ z=f&d5>#OcDRd*_tk#a&zoE8f_cR}+Re+}Fw!QmGeh7gHL`{k$B05lcL6TI@hbG0C> zw|!qPoIBr6Y~|yKqYRg{yN7(#6dY;mkma^?6S{(J3iugYkE4C*czkK=)O#p{-XDFg zJ!@MhKL;<_Ql`CrwsQNQDq=ZKafJ~4BEtH&lRK2i&1j0^ulFy{QrD@yTotc&B0zIq zX0B_F4kFoO=w?g-?frFk+Ehj3VcW-RB@>k#xFJ^H{JiDM93y2#f8X%PT+kTldilg6 zsrr12k2xmw{lb$g)C~FV=v?83UPU=T1Y=a`4y$m^MJIfJ=r)0H;b}v%aZ5a#LN)rA z2X>4P3I1+;`H|nY^yuhBznm3)asAhXOKHef4!}cuW3~MTN&4(K=)Z7bvQ!0F!Nqq*obMO^tkoii?f(s8|vW)s=(0QNdM zJ9Tz&!`hRi5{bYjtP*i798rAk=fP?%kFj^ULQ<0F;Rf*j!Qwb$=!@rh8M^%=0w`cg zvRgu}ZC&q|-v7MlhU(S8mpHdpag|=!tr0sIw{+Ax^mJRM!cS8z_%KBWbJyz%h7Mh4SKYiZs1T%|iBq$*>^9LGn?HQqYY(Nr~Y z3Q4Z;`GDXrU%%`D=-OFdT1T`r z@J9u+H}(-@qOaXJ?-QyTZ%lu_$J)9e*ru(fk%+w9*yc?FyzCFLi06{yjE&x3I;IZgYqdQqv_T(PD zMaOyw#;@f^`~6&jliVF%$8f&1=FM!cO57J6)c5naa&)t|t5UDCFt2GM=t=yf&^cC< zq>zs1Uwu06!#kl~O3>S@C-qI2YR>u&P_Uoyb(S;tVtL{mL|BQdTFGI}(UlJ$`f>#Q zD9nTmGNP{d0%4zq*15ahs*@U9oKg~2?`>sQJ-&Nci+M{+7_~@^U7&Ib`&Zf@^c@9_ zt``ev0Qn*G_~FGl9Sdo@K5cyHXVpuzXRb`e`H12Y7b(r?DxRtQ!~k@I(=v){tnF$1 zi^PhA1_U90CC%wB_ic#SI}Q6L*X8`%Q1uBO%%mHT66*2iaVCuxp%^Z#;pa%lJhZY2 zMkhnfw@Eq#=wkP$*vTk&2z01j&n5($%YF9f6>wTGZd;4psBnf23u*+yDVKXQ?>YJP zejcnBuVEGBn6rZ2pzo>>a-MT!5fc*e6lP)RTCJ6Zry?q`9y#w^|D5GD zmDEYZ2vnKXymW>?s^<;AaJ)B{L#b>q+fZ42<#m{5bmS%a4i%`qm0y3kIzD?n!?k1z z;UHzwWd}D)PpMfj4Uhbo5BjJVcMOT1`%W*mDRu#*Z@ zFiJGJ9qW=(!)83^`GkK!M~ZzuhE;5W(R~0W@F98YXTSeDSP7|JuBg}b zQJ*Gti_5V@YNN}jNx2J=Uq#ggPATeVX0eFb)O;I>*wi+$oZMJnX%rIifhotsKH*bO zCHpi>tkwAw)2Bi)WMeRRiw*;_95NMF!P5rL+f%x8oj&;1Xq!G3m8!9f(B%|fd;c+v z*Glk)S$o96jbB2-yx~L7Jrk@?S$K?*xP~OOyT*(O5<+GL+{l9JK|h(ry6_JMv|as` zd*M!zA1y_&@2wcR&UITZO48Q(or@ktvnQF{YAja0y&f-7<`7$6Edq3%Q&6}Q_WkSX zk(=ByG4({rcM9G%DC}4a3Ss*(+*+z1)Sm(r) zakbkL62{TuM*%Dvu?6=nw&WC+3f>R!d;7;xYebE#Hj^d#&~WeU<%*;osLa!ebux9j zZJygfue9W_rGMn*9a1_%*L++MG*M~Rpo=LKAo~9Nx}l(D6gaxAf|*#DiB)&SU?;1V zs<^Ssm~m`p@Fn*uw|k>gCZ4^G^CC`}P_ugiGdd0nUYAdOBlREhN|sU6SRA zsnB#)Ivv)7{bb5CoxYI@V}&;6;moFgYEvt0POyXC0QBTY*c?MMofK#l=wvSXz5M?h z{s9N|zlC8S{`i+ru8i5|-szCi7@oYu(0Y_xMX2-@?wSw?{nt&H#W8KgY}P$%Ids?${Y~7w2nFAmjYp z4t8#1q3kDQSM4kT_IvGI4wFzZE~R(bu~3EEo(H2(#I%EQ9y_rNoxxj5mm#CZP2k1( zshn-=W2<=LVRaEg`IB$&VYpi#C%k_H8uDH3phW3zjRfDpvJ0)s z$mH;t1`T9ZTq%<+Z*Uw1A#BLYcJl=SBt4CIZGS2K=eP<&h3YJnV z*%iG@`zEed1?$Q#Of=Liim9K68L9%UqHF7~dNh)CI=tNmGpRpA}2fdt136n%r#}gZm7$3cAdqAt2bEwQ# z$x%gBHF|WDF>qm6od^gSMxxW`r1OAeyCPh!`~(pfAf>ocL>czIEpKu#}SBt=m(u`4VBfZNY431uOmfuU3R-F#mPv8j*rT*IK3(jHR7CHs)Mcet- zkzykcKL$EP+bj=pv`?7uyD2sL?Cg7M)FkVdVxT|Y^7+vgY&Q11GZ&IYtoBzNl;p0& z^<^qhm-K*LgRI?QeNufitgFJ%=3^`Y=-tgUP3#EeW7_0(I#*iR*Nf{Sjg+LpN;sT| z&z?U{t07Eiu-s?jxa)3#s~>B?uPi10ZWjzxpY8I|(S3Xhq9Rhz-g?Ku51#!W;#oW0 z01X4sma_JjXcXK*TGLLNhlWP}>MnV@1;*}^@Rh)1(>D=3S6#Cg^Yk7-UD-o(x%Jo> z$2#1jPDyOeeqmI21_m29mFZ53mRguuCW7z`5xFtOh6e#is zdz&5xbkh+|^_hvch)C)J_hi4Xukv0Kw?}A7-`^nG(>tIS!Vq{4)_M4V?eBV_8%hV8 zN(FjZjbDHh#-Z{8ve*HcVh%C*7~%CkIeDjB5h^77<4-Uco&O@&+zfa2nm&@b7c|$I zXmvoc66vad2}~-Y93qdb#QFdB{oo1ZdYN^wx6nj^Hc>XZL;zB;)lJ$VW)K56G}lZ1 zs0tw}wdsJ0+h4^sj#nSL=2b&?KQRC29teW%afd84Wg04C*)T>R)m(`>3?*34g24>} zBi*>pz_Rm&DfCzC1wHN9l?f3J@Jr+4Ajq78xzFA*mVV*hS@Ae%Inuf=)7DZW0p>(s zOse{hTJ=? z;NdVNw_9z2^9O?&ipj;%kwSuA>Le6>=hRC!hXi|q#MW1Rbcn+}de<(7qc{>OC*}k; z>54SdNrWAh_A??-WX(Y&4|`Qp5V95a$!eKwGN^|0m&Y;5a^uR=-A7mMG+yxyi>Vw? zcXE@g(#DdXK=n;;11Ubzx9zh+9YSTncb8^9!ruJqahs@ajOFyOuK~GRVvSAn$$(xv zxy*SP)rqptsd_;D;%535)0LKw=z3{Ef9s6#ZMp9RlzV4m%B`W>MweOwo{_uq-BT+Z za%o;zL$ix{_IEjs*SObBd%lW=#73*DVs>i%?gNCb_r57HfX@evFXU27Y@RPP4#wVI zG%k{cGW6vbZX>w=4Vc=ZCKM`f@S2u5en^H`Fs47RB6xWW*!XJ%nn*&H6LT7-3&PO` zn3Z(rJW7cyaf$Lm4-9T*PTH_J(nUX%hFr6hKNFk86BMRA&R+>@jj=FLrJp1O*h`HM z0?vJ3Zs+5v@o^_xDukj<@0qI7cbzlWQf+-MhtMs~C%953`LA={sEahzF_^19TR`c0 zJR-X6Sdc|I>VhMzezJ{eSHsJV8`oKQKvnL74(5{j``CK@4vMgfk+85&35;1JbIRew zcTwhnk>JW)3zi|Wc^5NFSIrF^w=A+3Nc{~)V}mfm@J2Bx%xrgL`I8yA6z=SYxyaE9 z(?X;XcfrB%bI<#iXk}^R`qK3EnZqp#P#%Ip*T;PP4kwi3RK~Xnbba{`AC$e~N=%qU z6{UWf@xC0lLtWZ!X>z{wY|WmsKBO%my*<>1)UJZeJE8J@FHM4{Cv_Q^)?X3#jaYMU zF91`lp4a~dO#cVCvwQYt4j(ugs$TznFC17cZwUAg$K z&fwri4)Cl$u3MlqxB5iaX3uw(;cSA}AooR0dKR=e0@*t#8I0B^@RN11tNw2O1z-k( zYfpZ2<@f4_gD|N1)m^O2diI!iE3>d)K~_+HC2cnn?5mZmDa5wr!LGSM?M=BGQM={6i*?y#(lF=_pr^kUVxc z#+Xd5$RC{$rDqu!DZ7xk9>8wAda8hNa_ej9T#**U)hz(Vl-Brg6;o0zX$gDZ|OY%^c4U1X~uKP$zlDJiES_u zh%BDGMexTDSWgQlgH#&zDC`W%Ued&=u2$AaCnE&(beJ;M`}BkX(`xbZH^C@b^23Z0@#v6PuTroR0pnZGF*q zig4y76`3DpJ;<4;84Y~YWv8HCq9NVA&K8m*Q~a?V?jozGaD;|edY#v^XG^su)z8~fbyXBs>Y*6vtKG+`de7tGAbkxnKpvl_%*9aD4_}@aXz<&$ErmGrYpX>xM`=82N ziujzfDI(ADy5)QICX?_3d`TYd{dk8Ox(2{(!gd;(Puw6_G1*I*Vg>{i}JiNw96a>x>!ipclNE z7`Gw&d}WzA#+A(~X0WOdCNBu**HNLa1`)xyZD#(EM93cU6+>t%O@wNW0X}k{i=({8 zT@l8*|Ar>aqJ1*_AF_lXl1#hXRp~{};Mp(h?r5{7oB%yc?WMmGhmZaUoTsC^3j7um z{7+a!rF;LuBKi*g2aEXMBoT>EcW5Px(TlQLvKfU0R=j(c7BC1Nf8^c&3gX%awLKQh z+nS|}JNQ$cV?Zo~=QHvbpt>>r(Pyw33LnACtmMZ`b}eUFqJtntW__HTzj;Nn0V;3! z7zzY=tH{YvE~)4jQ;@Ub)~v=p$&(8iI)c51Sc_vGh*u za4a!3L8PNPHTZ*vVo?b}sOQd}D}Fi!q;7wv>L_MT2xvkA8!3~a3-G|E(I*Cm6O0MD z;^Q5r#i)tJ)-nZ5$>zZD142WgArs{5o=RrA_OYR@Q*%#vbVm4FWPW;Zg2BBp-C>a0 zw}k@!zoZ>0ZxK{~1A|Wf&a=Pi@w^t=!&1Axzv1^{p90wcQ9am~8)29^gKC)H{#ighiiUJ3Js;RE< z_v|l;8xDlbu<51CtVa_WJJkIpmZ`s~Et$~2vz7mutn`1T74Q#ad)f1?g}N)2HW%2aIAuXDCkDN?~@GZ8bf zA^mD@rE-(T-i|Ag9(q0RvS@M5|xs+orvHw9t{zkbPSGy{d_VG&lb5{Fv4w-@T?G*Q&^}7CFv<;_3sj^LwqE_}3nf>A8U2HO;sImJFA%_It<~aVIW5wy zsrn7X4K&+NW6e1z`Bn?rQX z`qF*FI{wB(E?-6V*I1c{@%yz;Fhe%?-eoHTMU%afAarEwnZj6w)!adZ31~Q3y0GZm zO%U=hl9CaF&(O75JmY^bDknQ}6^xJo-ZYik0fSRuXu<@BCcL66o*&uN-ZQmOcF z7u#gkbyx;qh&1fA2a*u@ylm~mVwCgn8mDRMH0pCvF-_MQVnoH=tBIVJ^cKZvTB|K*zOX57OeCjmggKvmVC_~==RPdR0JwDF19JA+CqDPQ=qL}4@rJAL)cmDq3-j(cVz ztu?)Ik&flr`j&>i_dGiXdJD=X^KFQv`gwy@uG!E^cw1~Gilf7C#L`$0UM0;>KowOM zu2KBDt0P(KJApg@`4odgRKKdA3`l;3^%xkmr znGZ5vm=9}Rt<8^QufeQq+ipy)W`-GPcTnKY5)XbpGj^3{aWS@>G3Dh=n)LG3mmH!= zY1)O|co-Dc-~bFkg`HpB@ zK_%3@*rR)2&}&iuFe&;9)G7*9B+cX^jW+ZDGf=NnCz@Q5;O@hX3Cb+0j>cMq2?LLw zK*X*TlxG>E0k4U17N$vo>17)V8bszIATl2ycou&+rQ4P+-1l)c!~+K;`49$Zt27_- zWz6Sf&jofcVy~?}q)EgsC*dEY=velFskJD)Y5wX7!+TtpG<^~n!UJ>E-qnPeRl&~A z-9*c5apwrQpw|Z-#WLl&r!Jb<)y7IZUdItT`zE64wVoj1tgkw-?>`1iUH0sGzt#HLsI z=46q5FM0pXsEm7rKBj(j^;Rn?XX-w7|M zsi0d#Sf(yGi6L~i!7aG*xNrubP)f$VZ#o=D3X zsI~M)dg}*ulXZSTjG^T(1hv<4Z)#S`XLyLfgni@RQTz0c=&$ba%=ItesO(d=5$E$- zwFa9rcl@(yLt^g~@Tm%~$>aAN&B553UB-*FJd$Q{?1hWiPDee-yKDD%ixaVEJV=++ z5I?6U?Rz~5jjk=KmZDct^^sgr1^$_!UNPr|Kupr8@U-RpLw?#U`3A(ou+wKk?@GT~ z7aAVYBlL8)!eZ0=1-Zx(j=tmKw0iJjJhNW(?+kWkd_D(G;T{}60i0fi_lhGrsQGr&xle!4w>QVCCku~J2~nmkI)etEF` z#`XU@mKyl)$#g+K`)^_V|7#Qv#vfqc|Bj}vJw(V)z03nQf3|5E-2xN?cc<#=^)edT zlSU0iK9nNRLm@|xt^kir2=UaFw^ssxt*JPCtCqG3{gDDRZuJ)&EaQm^GDocHwn+t9 zLPVPC#@I0jzYNn5Qr5wIiZl;MdEgZMYk3h3yCVgNC3UcKE-P@2A+2Nl&H{U*PQFHDoBHyu=G z_jW3i@0bTH)w3BXJzvv(F9?bbH=59U%WYjqleI9W#sxG*=gJ*R=w_nF{$y9FWrI)w zoKnlAu-#l|z+169foV#Gqkv!Q5o?OKjVyt@JxWDGz(d_EZ=U^r70RmR!X=jX)mc&^ zz^b4K0Qj$N)n5r%yhdq6Gb!jz1kU}OOIVo3E7lGSjjq!st;|B^-YitiuSD$6`190m zK7)P%U)%U7NIyK~F}hztU|qYW;@@M z%9Dn@MQBe~x5g`7O3}Zz68b_ndn8%jcl7`+Y{Ige z6lvAbMr1$oXr571eCTSu3o^sia({V<)~B@DgTeS2ZcZ3w?(O07L_#SW->aiV6ew+d zl&lat2%|gTM*4bAPl06PP5#1!rt~II*}!P`1wIbsa)+i-d!67fn=IvTyCef?Jn+nr z1KX_a7%Dgjtk>EP4aJ>E>fuxx-AP|o+F3@5SO)&;PMrUFvrc-uwLtOtTCREE;^bUf zJ*zt|nAGNB*|2#mYj>ps2UVZ#F>2iCvufI&$P--9T{ZDjAR&~thY$9fGkA+j<*Cwo zA)9SL)8hVGh}^`^m)p|7?h4-(6g9UblsewD^Rvrj=kq3UM;}Tp;6uVK1J-v6tQz*F zX=+(0B2sbvdxA(XEpg+`7Oqji z27PcLYj1nFX23Rgs6PCF}6rhQcI-8;;RGwc^vuK&v3kEiIs%^&+9PuiqmS zNk&=JO}&u4_qZTWD6X)&I$=R^Yb*;`I|z0D)yk)|)hlhaKhY#@Kpf7Lg)TUmxTVG* zpJNO~f;U}6La8LQ2e#37>8HPR1)Bg|p*qN^hhbi&Jaz#T6yEeCYtL?5?q8QTMVG`E2TV0!l|3Zt*@} zZk#EPvkD~dH0?xdtGZWCZ+dQ>Vp@PX}s$CSV3>=P)p zSWXZKSoPRnBlIa8AoM`BwDMt&Y-U^b-vtuBx!ediNYs{KtuyMOeeK_WJDlFBkcCj< zE&|>dx<05!l$m@^i0wi&Oq<6KjlL@$MKtWpFMpTww-9rnZnDu&@%~jB4g4?KXpr@G zhe*rQ9W$2si@!f4n8Eh{RUr--|Nj>Xu){C@hs8YLFa8@*!jIpot(9Du>xbA1paLZ1 zWcA0^UGesqIxhJp2snp@!(h=O|@B zC?gaQq(w!}@wK!T0pV!hLO6Z9A@ARC^|GM!>5xjU z*O@#HJ=0&o>GU)|%&xb6N>fjXbsz@zkC$>NKpmXE<*%FX# zVD`~SWQD|@vkP1!Bai682i*4uM1@oYB{M8Z&veEe%?wyu%HGxY0`r_obtr@Jg(Dzg z^;@s>^iCr&>th&^iWz%peF__EvPA_21MGgxyUxR_x56wvN*ZbjDG3puWAb6rNPj~} zdHG1Cb$w>uhFAF|;H7UuoYw00TDw*oXPu!3c^+k-phw&*fyv`0WDb=U9n7FI;-l6@ zwawRNlQm2Y_DY8RoT_RI`pC|phl{DY>>mO0Y!=!F6Vdch#}9T_2!kZy(X|fkF9+TY zDH|SWo3pSS>X|tFuS5IKDdhBqqi=}I<#^(6TDACS1D9hXu3H87d20_v+xA80AkrAF zn;EG|J^1;4psRAsjsdK)n+f=L_Gs#zP6At^dxf&}(m|KMAzu?Nbp9RpR(RMLj$J!} zlH*Q1sQV@UUYzNGr=?Ig{?_+Ogl#0E;~~4k4m`#TAnyLc#cGrz>x!!o9bUi6MJ)cD z7rN%p%r9P=jg&Js)6L(fJ4rVKJUXl-Gyf^W z`u@vP(Q#&%rY>_#hB;`3>4Z4I++^JcyTD2<@Dm;49GLFf4-*_@^f;Mbx&U@t0%swlD?=~oNWg+qH<_7Mz5=I^4{F9A3nFkkt? zjD-lATp_TOVPrAQ;;`S?!{33%MIVC{?jRmV*xkzro#sL@Kw<|Q8uRd*V(g$*X?_K= z3C8p&%>+yCcgy(*P}jdZFSF!uO6@6pImo%rSh|g$TdzO^J1jn$;E!z#)PjtFf(Mh; zmD&=+Ak6!53!u<`Hwmo*KCqePur}y4iX$%d>JrGLgR0g)RSm@iI9Lv|U{=m7@9nvE z1`0u$>zt?$cL&8{k|84Ry#C*1Ckl1VU6*6ELLcatF)(9G*`PeSrv|Q0tNN8zYfSD(u)BIwt!fC2i}x;1soY&?0Imy??3X* zbL*2rGP2hYF84GRBMucJ16^sL+9Wfjop%2piWe;C@$V0{BTk)}@5vpcBgkklSA{P@ zw3oZ+TGSPA55-+TvgfLaaXizFKb|BI?&S=sR1gp#ov z4F9}g!WY#_j60^~1G)6GEfW+JgF29Y$OI0WQ(bwk<;>BJivUXt`Iw;aEhBKqGpnHY zEo0W66idxE{OmTo!_U@aoA{=Nw~Kk4<$>Mq3EZ&>A97LJU zQ4qR>rCc5-1QvzxqOR~^l><9Uj!G>$ryFUi`eZnCZn%0oA7A`9<4fRq^ zV+*mW!SDzg{15p>0q7*tr z89@7$H$*6fBaz{{LvBtQb77%NWcAM;#%g>^4r^CW|3f~fu3)tt8&=bOcirNq=G)}l zmuT^X#^0337ivSZbtE2Xe4I#aL_U1JQF}nvIM0cB6bw(-?^DYl1u*oF%k zUK&pw*h59N`Slb>nX-Rt=-2jU%b-)I?Xm4(ECIWq-_1Fa*=G9^9o-hoij^kze2Lr}LD^y)+CEzFs}l339Q5i4ZQ9qO^H^3OH9!6vGjuQBie)||=v``_Bbp^fp~E9L6;F+QSDa}Ub+_npjoW2$ zn|3fbtY&l#k_MlrE(Wq$V+Ie65jXsDu=Mn|U!M*xokt}`xk!ho6z1w9@_Kitn<=S4 zBdsYkAI?*cosNM^2#gH7xAyG!ml5mikWUyw3T%{&9taQGe_YJthsmWffAz=m59AJJ zJXXtv8?JnCsa_}sD2$Z1Lz{NNxs=~v3*U?Vv%Vdz26qYj9~5^nI3?+pRdqWRZ|oswLlqkj4`J81W_rHqHzVYSh-Ij!_U77toT zF$?ua$1Dqm0=E_ih6?nIjEv$?B7OMo6mb#s)?jyc_nUKUu_&-8J^eX&GCDE@D(*Xy ze+f4|7WdJ)^ycyXOM%z67@(3Z{dOq76+ftk*$#=1NEr&gbb$mw_Skw$At^Ae-^C}(mW&vjqv1RBkfLh)r5OHsT zVqYF#f6&VUw%El>>ivbSALUO(2$xco6PjbDAGj4xQ(R~#C za}mDN!0qsc*+%&BCf5wx$f{p*a&psFo=A+Vky=uI{pEVx_K$D*8BX!JVMhh@hII0x zb4N@Mq;od>D)pHr<$!OWql6w-*r?dC-7z<|v|RJ6m!p8ew0vp8Zs5HaD&%P>k+uNr zFDL9I>IYE*CFDovN`#acu?Ndhml%HP5VV7wZT~Y&+#ix z#x-K*qH)Dv{A~$_g7n?IZ#hVY`6e}pGr(sFg9|Z*13s^9C$*zOuc0kHoSmJ2!8Oz7 z9_OW;wMd5bPnjB1bZ$rGUcOXAbPb4jt;wORHk{p=?=Rz#NPGOjCH31-)|mzM;Sysf zV?-?Lo%k}-OOo|#j%w!X#c$ZQCk%Vw+~TRx?jNg~h% z+CC}Jl#js=4yPfyX*>G2ejW)>k%vq-+x->lQzC2bWr?rDpavZ4LHpzMwbqryG<~cY zG#DYVCn}cVEa@tB-brSpF#ZENX{=}33m$xM5I~~dKYgvY&k8Ob=Cx#WdVSX6U_BWi z^QdsnPookfRz5SJj68s8*atye5J?1FY`-5p&vVu;-#_hCYlqujJD?>4qvj2XRhoU( z?X2yOoQ#X?-NmEbbRv13jw?SJ$VM4drCGzEedmihhqT>D17Vsu>XU^?TRozZM)4Dm z6V|{PamX{1J3cM_pq=zyUL}9JZ=D#{Jn&jmBaIV=0zusmAZ$!rb(Fp#=!5Lup%>`a zUJn%ayiWoGPL&?Rx+5o7_m?+up_>dLO%pJ~Vx_$wOs8;-dmCLm!M~K1j`8I0SLt7q z9IDuI<5giv<`yC2$@4GK+?2J(M6AD@o_F>6KI@CKF(*#(Ifs?%gs9AJpeOo+InCE^q6pO`G-(f}mb zk0?G%wZ3P2<;IgLLZ0R%Vx+64F*MmDU(RL8mx`|Um^*=ji+|tw^P&li9uweKm$!EO zCG%H=(coj#*yY&#iTh`ArlK^Ho;-AORT%u`GM76$$$<6Qd+Zc)r}Dgd(KtPQieyOX zWx&C*Z2wxq+6YHr&FJe#9(&Kxb?;Ll@8?Y(lX-h2R8vnk4V1VFfSDOadJqt}_jGp; z6G&H2pEPTqUgJFe#WN+W;Bpc?B2h`gc{BeSBxzq;MmlF=A|r8<*mh%(-eGp2SFL`2 zhxFvkH6J9)n@sCnQc^;zzPRggKWvdSCy>dUYE4nPH{hdk!FKdK&NX))_2kW9G2H&? zgZCOQja-7H3_gK^)x)CT`VBNOq|~ysX@8fXfqgILQ!wQU&9fiY^!~hLH_2%k;z&iy z=t#7D2$T~Hwskz~BV>V_So)*>yhGyqn8(Pe__?G`c)U^cV@e&XKW9;$BO%-gK=df} z3u%Z<)SU;PK*x9pGJE&Q9tY%~ZP97S4zJ*g*vlFmx{s#ses*nQD|jP;{)19HVvk-n zOXZI*Gk?1hF7o>P{UQs7@u>ZfpO%o(>{R%f_XQ90C7^nnALa~uoWgBctL^Kb-7|f! z-lI*S%&B{W08~!?&|9?U16DI*@9p~?lT=$qBrTFlWf|b+A|{U?VEwAUA<^m;Y0M?} zMpBa#wRNO*TJBW8)9k@@mArII9m1Mo`vhy8Qj&O5Mo@jfK>rsJ3HbyDo1#W9PsSF! zhkT-#z0Z5&7fJB1JPajI#ee~bA8W_@nuDBNthk?-(9Bh?*$$vK)vNYgz~=kkw;VbY zFD@pfQvn*spK_({e~3_sNxh;+yKryW5==&Qik;w)Df)Pn!KWUZMO$(Bk7^elUn|RD zd`FxTZEI*}CoumHP?7AZyQeWvr+X%`;GrqK$L)AS!P_;8Hcah?c^eWvNb~bfE7R*1 z0_p%%(fnb&+np>A>`G>ghfVGmT77&+Ut2UA5!YmOv2A&IS)Vd@Pgq1mL|8ZktTHN* zIz`v4Y<*D>hx}{@B7yyu)=X)hi02LXk{c+_2^GmjY+HAo|e) zqqVZ_YuvcJ28b|n&wkPEidP@r`5t2`gFoPy4BB(MEpHIi(EK6?cVgqtTO?@kieuf zSgv|+yorZH{jC}WnisrSzUPBGd+HOlq`5)%i6-hD?(?_jKw>G;$P#=VySdlXDsl=6 zA>4=3qzZJe^5&>Dn}C2pAq6HbcXtHkloqu3AzQF+w1r^#gKqu?x~zp zNL)iOiT2sje{H(<`5e%W)-A=<`4c)E>n`c?N`J<<8{0+f>*UHkQA#~w~DTI^J90j%Y3jMJ$*L7~Qa-px!qMr7&RxZN} zn&n%B^r6hBZB|x#dwXw28?mw?&lnPtc)5-v>l%!a; z_}Z2n-qcEo@MdRxbHRZPXP%ywmX>i(2|8yFP#lwE;_ zk2mDM`I;HV>?hf~DWtWmUO(OWfjOK1ohFcOXOcNwRd)WCb78!CUC~IqeAi~KK#S=I zH~&#Ht55K>F~^prVz_CteO*ef$wb-aSB4>>KGRT^>c`c|ceqhSMMX;q@A6<^1j?li zW=WXVnA$;*0pvu5hvLiSbI@HN9XNRCW5*KXvoKxd2d~{1FyZdA4>x6 zykSmtceIh{cS9S^ISG_h# z{J`&APX>F>jl+y=u046b;FNx;vHZ%YbQZ}l(A)dM8|R=<1qgVnn`(?0@>HCM1>61Q zq@r`z^708T1~6X(HmA?+=tJ$^|5MwU$3xxk{eP}D6`~Cp%O$DoT-LIk6fz7UWX4*u zjAckh)^A-|D#e8;Bg!(Cu}s#9v6U;zZfr3`YREQ(AMoim7MmT6v|vC>tc)7QMh#7$bRqJXB>RoE?9?`wU+Nx~Sqc`CQZ<4#gz z-XY!n>8fTx3jzxN1chc$-4!(9pBzV-`a9CN73YGlUJeF&B8hqypPKvqg zdW>ZE33LiyDmfD;7tR|-1t!{0!zB6bu4P%w(xm%*;G5&F+yPG+P;3Oz! zB}ilfzP9!msfYV$kd~=-E(FI((@Xv zuZetTBk zfUxqP6AlRWZ()*uxsU&J7cuuU?4T8461CZ&V!~{IiSaEaaR<`f%2MxUQ(u1B?L@5j z8jltvlkT-tc&|CBGT2s`nSJ1iQA~f3#Y)(k5Je=8N50H?AmdI>2-({40>F`H&TpLz z5Q(RJ;~#P_5I;-_5xi}Zt{*e^M*APygO2b3yC@I`7I=H@K$7`=0cg(lRNIR#jFnI* z&762KUfpm7`&bAB;+NSzd3_hYk5#@%{lpu7GmhEKc!>_|iMyd5rOBn`cIU)n8W5wE zMf{iXhGx!%K?5tc{qkyKU6)eHDdq7KRbhF2F*BEKg!-CmCxXH%MGAQai&VNWD$TXi zYfM}*@>AFf)hZJz>C=Dwr6a-Az_jvW2I_r4R8=8WVIJ{`BUXFwP8v@7n^VUu;PL8; zfNsSc1|mn_Fj_jX_}~?~`?C`rC*?_|!d5Ihvl?4(=c;LZh8>S)$BLBfr(0{dL(J^UraJMogjkOyG3Xl=5I({cpOvYWtUFx0p(^dUD7()rJf5dS-Q@BmS8e5)c81 zqj43eVvC|)&oK}v)+Yg-;R76p1p8m0!QLBBXRg1y+#J|czIM<86RE1?fodEiSEaWc zhgA2iZdAj$82O3W(=;h}iAu2UC1On8+nIi(`h*y?jGeF$N8X#=&ktTkobq|(O4;Gc z*x+cIdBl`+j^G`NU7%ymV<6K~BPQaDRf~U{i0~e(Yjs0#LeJL#bA%W{&UJ#MlS0?DbyKeKwzwiu z{FwNmr;#&0d*mKVKd#a23P}yxYhqe&pDtgXll0!YLO1?z0O;LB=A1`cg(VHj3X*j;by)(ySUma6+T_)M$6@q@rn) znfxvFdV=J^q_oZ)1FfK?ujT#rlw04%42|np2S=kJetEV< zKUPF*P|p_zo8MqdP-!Ot7aP8&;?L@H)r;*`Z@C&i)Tt8eh}P)#t<}Sdl!|j?q4TU4 zs3OdD>v6Ly*z2a@Oih2C2l<2txkO(CLZcdTKZ?uF{i6f8ks%cqg5T%eR+Q zyRPD$*oI7WL-SY6n7{XitPpq1NNY(KGlR?;5bb%*%ahVRaf5yxY zf2iu+zq9mWhJH<=ds3l??&-Fk3*s1M;ZGlyoska!Txw})aaf~1(XYrq-f|;7rP0JX z^POKF)?eB`E(h=jKd;7WfG7mU8>xC!3?~J`zG|kK^;ji|et^)ATJkjwsjdk-vs_R~ zauL8>^9CEXnBq;=&}wt-24w!J$nAtY+ANMT+`GMj_6Kx29dr-S4qV9Up41H6_?~Gh z%E0=qFor396YY07c$Ue7Vj#5l@*ZD!6r9S9)>!eDZNE2=PwsD@_>>B_9$)t`Y?G-C zT_1+>{YsJFU-orw%#1yvsTCE_ zF(B4nTj$v`ixa7aSPQMAF}z5+Fv_lWpHCHrcw?2F>HOI^$n8( z@0c5?#I7+lSNc*3ar&YkYy7=B2WQ@-Kv+@$WpR{69*^K1+ZZe4X)5<&*KK^PgP>bR z6Ad)1YETaQ##dcW&NS_iEjjW2fop>wZLsPkXzSRP=yIhm zMm&yU^~JsDX2a+d%fePoCLwjEgY~Qyo7AW+wp+E5IXPzn?Xi_ zO7nP=SIb9a#Y8l3DX6KDa}JLFE&2iE=V2#QXZZvDY)=Vm7B7UG2AU`#v3StNa6q%z z22A%ZSK5nQ{jhddrm_pMUBCNvFTKZqsXit32w#bo9bg${*__LiLywu+%J!plB+bdW z;r>bszbeS@ce4Jto+2w1Z@$;^2;!@`8&1LmXb{=UeKM7CQYFd>VFFRLQ2L+>NeW~3 zn5W5cqe$ri=z$jCFKT&sb4<;NtB?n-fa9jJmpcVoYDp- ztp3y0T>|w*yUr=>t@jlIxc>IHACzc=37vCHY-+nwwP_L^;enHAmlB5)yelPIWE0U6 zBt8Pe54k03QF`?|KkRnq>%9uM?e_ip0#%rn0l)2g*07s%=@rUr`FXqT38zYGE8%4L zk!=#RU+e;4kvS#HLKB+EUkH=IhQ~)T3_LA7*)K;_CE?S*fT!p`e8_|gwK7Rgv_3F+n zp3vpT@BpOJf$3xmR;l{43J~L5VUsw5J4y$p;BT}dHA|I>MfsuDNkza= zAduGaCa;4j01O;7mlN`jU7nd4D4l3e?N*)z`4?YOOg&P?0wzHrZ|FlUN-fKX|zvtP3~+f zj1@#XdRl7S44aMw(G2k&RAMW5eqGJJv0E3hnn((v1IELy61Y$9GBGuMt`%&Bkfi4Y z0js!rOc2Z@do%tFI5l7cStzjTfkh~Efo*vU-1z>@;JLQu)B#4#>NJn?5*=vW;k%Yc_>g3Qi4_oDWbTvqYkzq>kM;J|LXks z*vuQI21}kKV_&!EQ%L0IkQ=TkRjaIzv?4G8i0?uOhDrov6 z6$M{h1h8ij`>~o__K)Pphm|`pP&tsCyqZ7vaoSTG<9Ej%!g^YY_d9(lAYUjc6Y9B1D&^N+y!8U9W`t)`X_I zb|xwy+SCmfmCF)bo^cQJ+LpoTm#jW(wk%{3Bj_j!ukK!nhc~2+GE3t6q~f|R0)~T@ zD7=K3&CRwlT9D~TAaZ$_ZB@QMZ}3R+Qd!gG^7oPL`LcqCs4{8^%0_UU{VOLt-KIr8 z!-}Zt(6}?SJEp#;r)TN@+Xe`fIsQ4giBS765rP57fdAkm8}|PLmnqNwCtSt^Cv-yC;x9^Gu3oJJ%pJpnWxw{1?^rDw z9P~S%sp_E5*9|NVha&-jj-ediC+(D>agJcmS*C1~2=SWlCFr|;!z8)V*|?=e!Bd)Z z`aa_WyaCi(s3lanKX9I%Jg-MZgu8nQC<)8GC{f4o6YI=e@{~b;SQ%N5as!c4<%;?b z#Ksj&&7y{CSxXBrzbM$SHIAoqVTngSNItpY2%kt^eK*f58(G<5r1)`#lWw{QS}zf* zP3_NcnH;$G5PY?=i-E zT$es=liic0+`4(3inlCMKR2LCI2qA7gUR(O!dd)uriiE*d3J;g=jPUW%&Ybx(AWef*dcHBuN;8&=3n|<*a&4sI5_q5?nHnQDC!E>UIg8Rs9zV>)&7d$W2~oVTjAf$ zQ_Ann9!u0i;7xdXNsqc|C}m9Z6>3tw4v8ezt;^D|jK|8BaTWMNb!%}4EOhD69(x73 zQSE7CjbqlaKfET*{CT2a9|of{W+2_4maJHFqwp%Tlz?ccm+cq4k1j0_^}cx2@X)EC z;uUeiF=f>2*S$QzjkF|O}54LQX?^c5H;e(Yf`-)z-fVkYDnb@nn}RC&o< zWtu~gfuUI6ujSVJb#5)46ZlYpz8|2}5tQ5bNJ}z4*J{D8pJ`OC(B2c>x4mC>^AFp+ z0%3^=7qH6cvU$kcpJAj9vya{}zFkGZ;N$ySn8LDo>lGH>bX`oO7rOD`Q$?93Us*5O z`_>eSN>9RZ=?Uvet81SjMH zLQ?0+QxQ&*ki=u&j)TW7`@9MG!&T#hui0E7dhCQWZG3adYARc<#7aQI#c@(sun0S2 z+6Km^4g)4Nvs4JCVrT}HWCpMulS7kt}3`dR)hJ)rTIu+Yf}!9O7dl_SzPCyrE; zoYN2J5S0`Z0%`3nE`+24G0Q?czZC0R0V@?rk_b>0B3|Ss)OTCxuKfi6`sve zo^akjV8G`H?_Vw1#)_+6uhgP3iCd><&_!Z|mw%50%I)m%c5*b_nbS6f`i{9}!$j+5 zq|GDrbtA-I^*i+4umyfrd@XrUH4rZRPg20|H;IZWT$UY5i`< z2Lt>!?cdV(BK{mJQ=eihTwEr``Nt>5>Q~!FwlE*iUQyC9Rlj#-{0TVdK8ci?XZnk0CNN`e3|Ud0Wl|tJXsE$ zEQf=^L~ihqVA%_s=bJq~3V-AU9BO{#1@3B?MS$Qp{)BXRk8#T&CU;IR`)g;eo_~(pcS4zv7DddK?w+mO%O#b; z$K7WKC!TcUF#9^Gdt?@GjX)H3?yVu_su-ctqTA*w5YJTnqzi3XMZA`V!M?IH$`&R{G84B&O|mA9 zZ)o#f7F6*gqfkbV@kf=XN+d+y_TDIDCLH&VMqE)7m*2aX!Hc8U)D2`DmyEcimmV$` z;bJ{@VQ>1N?)A2Kc;0a%rO7DYuW+K>A~Az+w+*2Odt9FNHF#Br2k)_KJo1H1`KM7C z707NO4_FbS?y;wuO~xGfW4GU6chg|E%21WIvq`cf_4AND>harpd-%Jw|EawItkuL9 zala>4TzYewoDnZ!X%0unDsQ09NUq|}s|nYE8ote%5rhE2MM=TAZ>h%RS>Wq68P4H+ zl?6|Q9UG1E-Lm?(RdURs`y2HhXjIY>?;3Y7J;T&56qNnsXdSjf89^eEEJi>b5UDVE z1Y3T;^86p=cP3kYW7IrCV*6~%8uVpk`h9I_r!(}WuMvE}vT{%yh+q16TgtY@sS%Fd z3yF=XYfmv?*W4l{7jahKr|;HF#ikVBWO?;-@`JGLPZYVav_plt1( z)I>sTd0y2L+%lf!@=nvxuh$_>cG%-BNPxU$8*hQ%XGfxZ zNm=KCZ{Mr{98=@E3xqzfRcx#3jinr&S!R$9YtpoiHH+PvkJ1?;ei$1&{*ypd-q!t& zG~Lfd?u}yFBSh$UR3Av^B;4P=zt~M-)|k`ar!pW-0o%Jnn>!^TSjqZD8pjr!C-|7sl*)C+j|Er6@&2W zS9-PWixWNr-wYV9{DZ682!7!iFd{rjO48o^{&|~!vz08J9h+-@@g*GD4ViVL>-;J& zzQI`b%v344@L}SVGv6$y4$JzZ6J;j%8PoTW+ru5ZgG2YF0I<$N=izqq3R7FVgc&Bc{UYbPd5F`WQ>Yvy<&~i^XGV& zRemb~vZ^usgKFAq(AF*;9j$F09S&jB%XizUsbo@XD!q`Odkb!|!0F}|Gs^G;o@K0rB$gyJ4ecSBXb&e>RaQ%-%mHW7Lgn=uV_Q z!_XE4ThGPJUZNY!WAgBfCCZ8ww*OUs-lBH-CJY2_QoF$B!w z?vW?tZ;oIRMLu`dEZ7UX-SGN|8}KJ9d*;vI{Y#<|XggDN@PT0K>#;tHXQ%KvJ)c}w948G9AWB=2PX=`?=yBK2FZ3()h%@|iaiz-E`fSw zI+`1TGBlE$K3MVf9Ud-Li=-EG#EAPRH_evuN=0Wb_r)5;|IZlUQH8=E5P+o|;OX|z zm!F-*R(1s7w>Yl6xyUX-cW?SYVq{%~O*eO!jE#R@p6!S7Y$$V|q?dL68qPi%PjHP@ zq#E~AkJC~3PGef1^Z282hfp6!H?Mwv_rLlhuu9xl{xuZ1(f#L8z_$j%;oBUeA{(D| zjdOys03RvH7$h??89Q%JbZvbSu0F8zB#hNNQO6pG%WvimT+8~yR*~&)Ot+EK7rm=o zz_wS2v#bO0<2PfTcWO~L3hz&(ACtvd#hoE;OA;Z0fSLS&*B`;1|+@W zgkbdyP$OgE78JAw{Pn=N7E>h-JJ8wOJZ0qCVT@JW3u?$!KSRjTvdP%pc8@0(Iz)y2 z9biH)qMqwio$dfK<&Ql~CqAKXZ7fG;GIrnI`E4~*-o-x2U>MwfCZLnAkKjY$t-#6F zo}S0wXS(KMG7P{mCSt<^AQx2iO_x?4?abFOnCD%#?}W0dv|>!s7@iK@XmJQg)3mdh zEs<09xdARzVsCGILXPOxLcc}L$D1U|XR&Z6P-|iQjYAQ<4~21%8XSN(5-7^e>7Jg; zt^`U6HMFXvYH)Zp)&^0okYKme4onN)`{gj2#ej$PU7yF4?%HdEswzz=eae*b`kF?2q9I)3MX zLh^Tl^o|R7wd~l&tj2dr<#U%Pj_{nE9D@w``~2!BBcX5(604K4>hH+~ZWc5k;W^Fo z>hq&>S9&(d(n5g6>lo}UENU+?h^aOPVY*NIqHeC6PB zYyZ;4C5b&d4ct6m2piL%4i3(XLEnNR>&*drjN$=IF7!Xy#=55=^K_> z18)nn?~tpDKhIlbzP@YM3ITs>q0710kYYXU0&^jK$OArt+l!VX| zYJiQ>dkMWsZ=plz+!gme_kF+jeBXD@x$n92&k7-V)?9PVHJ>rYGiFw&Plhj?%wv8C zOiI#Mj440_KX30Dx?S(NP!{x=23KOchAO3PnW<&ZpQHOsGz=ICkzmPqX#aI_frjRH z8kIjD>3t4KQul$050h_1|7o$&fps&wu5M;ShsT`w=enVsL>_0evB zbm=+s)8`Lr2h~SvmTH1Bi`Hb@47*CNsq_NLoeIYhR;?6QE?en#1)a#BW3u#|C#!?< z=)`Hj_WXB-*C(hiPQ9VIKs{cg{p~sRSpD#Knp4ylXHK5DMm^qTpsl7JU%z=sbB6lj z!fz+R=SB z;FnwCK3;uOD`{0r_GmRo%!;xQ>|C`S-j}rVbIhNzXwNgg7&qp#HN6?J64)*)Sullb z3_o7W$Tjtw*quFIYN$KoayTiLI}A|*BQKeNBN(#e_hWZC*&iTRzn~OOOqvyq`jA^6 z54w(x+P=T;|LVX8km=>PUy!tGMjb*|@Gb}z`MjEHFsPE3tJIAkY8KPEAgLB+jKy|D(_sney_f2>qnZ}tXCj|qMJ-@@JhwjPo9xeW`0W_ zcv_ysiFhyLH#(==gTj4VeSHZTyORRNV~GcIWGUm?6z9X;WV!8*7sn^STk@PH?;P`M zCX*`PpA!-(e)>Z^e^A!Tb1Qb}6|{26@-H5mI3?zg0NCLw!r=WP%c%EsjFdu2kKBv7 zXOxMd+{%MGksOaehKa(7iNNMs4XzwB-^FQ`bYhsT)DL#a?C*7Z?yS7(#%=mwO2dH&Z&XK53OjzUhT&i zj0#->z zA6Am@a>^8FfqmX4!H#x@rx(M+O+x){haC`}IZ>_wlaF?@7qUZCm~WyyM@{f22z z8`>}ZIBi7^yg#31DRo*}K)-60#5R6x)A{&e?%-6QCvdb-p6qv6u5hqCNq>>9GttDp znmTh!!I{g<-g(1sv!U|m@>IiW{ro^5Y{YXsSL-9$$98EgqA`TiZ?z3=pKJ;ccU)Ww zu_KHY;M|IMEHx&x(bU|R>%4lY759g6C-S$0Skq{%$8b-a!6fe9}48Z>!KV z)nKgh_o64^vffjlJm#u-h^?s92Vt|DjOmHjc(JV&?UZZh)c zbT_g2BK=C@vH!{&KSj6lk(|%=nM3m)wWATcc@HWm9rB%I*h=;waMaqKLuO9hStV{Z z<`2+T^!}O%?_B8bzGk|(B2#2wa_msxvlZnzR(|*32mR4D4{-QyC26O--kHo!B46U% z?G*zKqmE}|_UOirdpXSxR}%|s-})dZ9Nu%UKMNuU%3qd8vG}jGmCxn~RxNJN;G2_M z?UX-6M+3o9ENwL%2zrfPE8EfHb)go@BpqqQP(<)MEvaV+j!^0x#Ocw&l~gp z2XzT6urC4ydw=ziI%sZ%GG4n;;ld^*tDV6sM+c-i@)#|-^U0HKj{agTby&FvPN2-7 zop`uG59eg|J)9U4IiBLlt?)C~dH>VAlgJkYJh>!fVkqi6#Xf1t?I+;9_`TU6*JNkB zl^20d-XiZxaULAt%uFg?PN#W}9e8;khI0ZI4p!zeGdrJmrf^bY@}9d3G2x@T^~Fb3 zjW@OA*XA1d$@D9uauv>2OI3S3Eq=)rhjl|NIk}dhU&j~?4^*8*>z zB>C1IcR!(A^h{ilU2B||GCNQhV^kDNJ}85jFe<+H3xCk=OW9*rIG#TyT~S=>t(06o z-n|;qdzD_{;K%W@ng2AY7b`*t==Yn$Y9&dp{gKR6UrrxC`9!!%TgFS5)}`TK!{$rA z(jqFD)4%2zwub0=aA=`Mn@ySQYi&THlpM7k4%sLBO~3arkXh1%Rhqa_5KnHv2rlbeSc5yY z4d3Z;Zn@5$>rK=4iNxSNJyX4)c7+vHrmi;e-Yrk`yzRVG(FKA zeCfhPY9m7*(&n!U(9q0r(VU`SHR!8p2prT*%3dQ!9l`&@1pB|pufYFKlKx-B_%}l2 z0Y2EXG&CVGMp#w}V>>Rrk(Yk$csFZo{cqHvf6e-wX6Wfaj!a#$uZ#m+u{*lJ^f<)% z8XO(pEaPO99;elcY(IVMj1_&$IQh=Rekhrep&O)5Hd=);G+5fL_GZi;JQl)77ZCH zh3^w8cS;Z?m3##yrcb%7B5vD3+s-~WN+)|jpYjFpb_dztCqeAWlG1=_?OK8jiX!KVnjS<^LS+sumv1}nzUH+DknV1Y@+-(}lIqe|NMST=SJ|*NTe)jV zL)s_js&ouuY9OUH2`~m{l+0Bzu;*uuVs&^iT|9pL818Q-?)&`l#gpoIKO6sgTauex zp+mjhn2Kq9v2i@Y;7jRrFVe|}fZ~}q?SDZBh8X%Qgi<$SJd4ixeDPCpN_={zrj8bn zST8<3HRET>+U^=L)&sdpT+I~+BN@5C{?9%ZP6YtvdJ~-6)nUJG-y;bJ-A1U2^BKrY zYqbl1t2$CNbO;TPFHSmB@jT39*;uKQ(I}R#8@trXCvZ3u9hhp{^fP~UH2JfUATFPV z4IH9+Zkkj5HyB5Cjtrp8mpxx8ld7!N@c+3@5Htm-Q2f_8bmF zm1JS@3@C*(WA>R~7H*s+F8kzge7ef_z8JPJTvFc1wZ5PI!M_^X@e$OO z-Xq&oOiavJ?hH+F8l_(5*nM>KS98ww+m5-3bwE{^Yco!JRl@I?_W6xf9XeTcVhm~q z6%Jn(P`uk4-Y@I1Z&fGB#dBxv#w=99O1OSB?1Z!X-w0CrT*My)a9iC7PC8ycmNDL1 zU5lH5KW`=T3vEchsN7HxelItf(d|D?`Iwj~#m?k9AlXyBy@hSAjicwd#zt+>9qnia zi=PHGG#!s=&MX@wTz@SUC%B&d3FVYo!1Ms7o7*mzV=H8xlkeK5yp{@XrDfCfucEc1?*hEuvKq%e;K?# z#}a}1*&Au`-7(ruO!cLgR$Z}*M>QX{gSueop?58*c_^9IiiW}p-a!e8OZGTCcb?!z zMF|tLb*Gc^TFoYJh^zoaJxUG0wCgt(RG4_Yz#-Xu4HIzRMTLJ0wvL zE;Bfbu&j9xoar{MBrk;S7z#Z=vOSWQ3es-J!C;`o#gK-!$;C%wF2x^lxKociBkbRh*Zz zoi@7udEsp&&^)M3{#|@%D|5uD*I4=511R|U2&h_!tjI<~7SJ`NA_FA(p-#sVd_Ozzp@Kj+g4lpsof9^-%&%LpT7920?o|fjn`pfQ~PDKN|!wLb;hj z%Zm4|*FOtnKsw1ldzNFs%dRFqqB)Z%lv$R-NUqp)yRC)#kY_67sMgxY$i;kGCx7+K zn8cvC;LyCr^n;w-_=QMHU-^$$Xpe6#t^@3esqf`C@b(v<|NMQbEEt@}uZMnIv85S$ zYf%DJ#_C~P^$=x)Io>d|_FyIM92cVoU!(`*d_0d!`6oqMC9w+;gf1OguBM`x^WVR; zHtDDi2z;H2x9BH0CLl%;A|~oYoh|uEXi8$LKGxc!$E^^7*QZS}BB1KXinLrC(%C)T zMC`@qu`Ls~1OgdEwV-JD{K8vZ>Q$Knb=0)^=-z>{ZWiP^j+@a)wRSbN8sf7UaEfPL zkm&R|J!R`H25}~3`fMy0BUj*ZFSi<#qHSy%L=Kx-tD!*asE~I-Nk8Bj4pH>t2=BaA znW8JPU!;3y3yOdwB;jlwrLyrYWs~|uq%&&@KT?Md_0zTrsip%N=Ed{7p2Zrfd`8I;5DZm)$^@GJj~}T)T8C_`H(TR%L6pkzXP? zTgPDwuA6_pMsWd4;i6l7)`YGpk`Oa@X}Mh5OJ06 z%15wRfyA`b_;fo|S!(v68{4ixpgkA@XaP}fKTO_F?tU{%%WV~134T<#VwK*Kz|?2|ZDXZ12i|5gw$83{C9rZ)I)_uT zyP(B*3xsR+bZm`X&rFLF@W@4J7@AqgOLs;^k50DFh4}SGyT)LfM<+t!WINze;azTm ze&PJe2z$A0`*KDtd8!+oVUq5Go48LGBvjboDbOjx1F-JKP6sr?bIIVnFL4Id7zZAt zlL0%E#JTU4mkpVXBGZeRMcRcpVu{5Q-VEX|TU{=6=IrMzmYS>e=h!zv#--_;MPlvJ zCi(`E;yOqN7 zqqy)7ub+Hzb|ZMAa{6GBjerWto!=!Vv&=ev@BOt-jUf+pcT#N^II!;=C=hxY8fI;x3cNJ!vGmIHZbZ@hZ`>Xo5BiReRd+A;*6_@C5F$3?odXg(3} z=sV&8dsb%ljzyy}Dus^@Hjm<8*HJZ^nO>3iI~<~~sw^2v+x7LR)OU=jDQHnkF{0aJ zz~o?62@z379xuxboQnj^r}Kl8Sy|-}1F+lKC3PIF{42Bou=Abs&Ye4#ZpfB+u8dMU zfekJ+*VWZc)SO))Vb9Xv7_I`2A@pZKI`q-!^@(gXhTk4BIKTjmepawD^x^{9TI+12 zU)9JpzUeLlWGbyvXY_Z=cA~<)Lc>94$2I;yeI!+Pmc6L|6d>+wcG6=(8+$*oq8tb`y8Zc35u{eF4PZ#(4+_BKrM>G$(B8ksgt8#p&p?YxCOO-Q6Qj zo@14MYGKWy?FGIZGR|?e{8f*wBhYq|W)GQ-2-$A&1n7owAPX6ub^~v)YpBRUnz77cW7BJ9I(+&KDNkJ+P+YZ(cvfmgp%87{;+V|z`#);aWiOGvU zr=e?=^#Gr_%!=gghMPc>h;yj(@sbD6dL}wd9@Lr@oy@($g5gIlz0K3AZS81D{aRM^ zB3_w<$ux2|7K-Y?#^$VK3ApnF2u3O!CXcw9FdOCc4dRd~?}3z*l=%2~9~VCm4alCn z``Z1Uh8QvxR*8dP6MC=+$O69q=x7*Mh@9`ksG#>Kz*;UKqFe_I)5hGb2$iUA`niT^ zRe9@t)F`G%n?F0}+FI5()T9amifFGRG2rDYD^~!6Pn~8@LS@!w0?f2Dj{%O>)*7)% zI&M>t69EFQ`7NNKzw_f_>fI)5+N+Mq$s*Es_m=kUzC&L;bX{!iHfNCcSlw5ob=jHI zeU!Gm074?qlUm1Z$2&*G2_Qk~4U%jhwXw8);N>S?eOxP~q1{H>+f!f*DYCp{XOu_~qpjfR6TDpopA>pXHu8i4OFVqbB zncjDCJbt~gDG;2pMqK(MUxq&I3G;?ze{x;3AJ+f{-M#q?AY69+=?YriUK5>3n7N^U z+bTlbc!J$~@qX1&F5184Vp`eda(}&ObY4v#a7*imA}>}g8ZMhVtsGG`-u>G^&V7Gf z3{r4I(4d0%gRCjR-bug5LV=$6b?s3Wrz^jRfAP*dkg%BZlXCnp)uC@VFSBmrF;kqd zDH{g|2issZFrrdbX5zcs@dlg-U<;JGx#^_;`51)y-k+%~jCi|);5b%W?pusXWs4=& zSjOs&6!j5NKGQWwxZ&Vl@>EgVa?u;(sS1DVB$W}PRl9eo1C=5Hc?;%{#}9OK)mq_iG|#VsFd)0{K&~2V^}JhracgfTjIRH#elf0gqrkd+#(PWs zJePRJcxyxEdE#)(%+Mnul<&nt6(xK!Y`RdsQ98^7N^%hc+|pRRij%2dp3 z)8=@%N3k;!J*1sxyJwIq@PtQp~jTj&}9N(*wwI2{39`Z-BlolL9h`!kXOHJz#7&W~^@3gfZK^1#nP_=BLCDDFUzgDi{5ys>Gb{TvK%pkj~c!E9X5|kT}Jf$3JJr@iM2DEr)jFILAk{+ zPF$l~oUCzNxmrUfz{JkU$wOlqUhxy`z}V$jT^xR4$@-;raadiiNJ{+JmKM z`;?WcS8EnVv0!>MmWv(gBzy4OxpQruH`zTL##9th7i!8*UG)WF@_iIM4Y*N?DHVnJ4pAJ)dXWISV>Rx{h{dUNWm z(`bd4!l<&0xOfo=Sd_FGt)Cp4fT$%5V$?+YTxPL#Q&WT5Mk>4thsgeGwJcIj!*gyA zl7XXLo~p_M(y8IEY6^hQLjMObI^~i3J_|c*y0Z_dUI!Z}C9L?1{>dMphjn=YtV z98XTB`TS_;&(AQE87tNI^*yM!;eo>+%$l(&_->X`e8z5Y0?UU2g&IN_X_xJuo&HYC z`Y;X-nF^csxo(B>qE`>E&T1x0Kk$C#wz>K#F5^k1T{`rKJ_}xV<{a zTFdY3{C?Bt5+{&F*^X>3VO1ctiXYFuP(URmRT2x2ruq!zj}JC9Gh8R@LPaWfQl-wy zkIgtrfe)@`tsDSCJeha`s!MBKwt4WPL6i<2yVb!;VaGK{&7`+5c6Ic9yx zPE<20x@z}eW|(aO&4lg{XuZ{n6fEe1M~akimHdkU!l+2gxA`^3#^tLG{%$Y3QN*kf zHZ@kKtrvm87d3=%4o2-P{JULw5SUX(Ts)qj5p)th0xrdP}05gvI;&AB6h8<#DqYO`rPp3 z#pmS$-Mk-lTDQM@w;B}Qic;iNd|K+pl#3{XUnc3cO1h7TZe%7Q2zY5h3a;b}sE$9i zNtV}3$LU?0Nxk14c-kuI2U%zP62DjaHG<<%I;waOP`gpsQ~Yo&eJ>p0v}*5B)YeQ3 zp3RWD2s%#Ts`C*@2E|NB|0{(RgY-<@=-B34wZ zP)9=DPuDd;a9vT*??P9k`Lv>$C_lJjrU=TFL8vQ-M1{nI1*uV?l8+@euP#xGM~YN^ z_8l`=G<-q>PNByoXMedifd6l{jlXr;f5-XpR|w$Wa*zDi-N@63CYRY5yE^FbP&s)E$Ps6V?YFF8Xjz{qzGk@(91Qwxyp%{z)oGeB=$a$^} zc0|gDv^Ymd!GDw56Z-r7_2ZHCZB!!CSP}%y-%n*UalPyiCNT}IJh)) z7JRmeHB{lU!HT)>yN)h=(pd+J=PlCba+-ue<0WelaEZutXI@3xcK4GRI-#;MMFJ@e zP~4A82#Li@6L#?uX?oZnE+ddYhNQ_KS(v9}C*apmlq136mx*r~Qc2}kY!Gdi7joBC z5TMrg12Dtu+8OcAdfO>h(Vl?2QQz$tcEx57n znGDu|gU!r*4{ZG@9_c!6xudoQHBFZE3Sy$(Jq1KnLzmEUq9qGtBUs_U+`?jF{Lgnj zlx4s1H)jdn(#4ht1g3l5gy_8mz7GPGv4x+Yaur4O5xB>H`EpPU>=)0^&uc8{-XkK@ zrd527RG!j76oFhkFH~E6dbQtmMXN5J8Q?-IE0k1=i^1A`)t!BTA`! zAoB@XLg6HcS*?Vmy8n6%&U{o(h_3No&HN;H*4~&(OE;L#o5Y=Z zj7t$v6n}upll>9_I2`Ul1_mXLb>OXEuSkle*dYb=Gnh$ok1tyfepG8NWH~$tP-pk& zMXViQ_Pvw@R{330FsTi~wEKF)7g`0+W7O#4?DTL*lzuTu^c)c}zn4^|<4I&wncK_H zQCG$jfk_oFr{Is^VYe3mJ&A}d$6YL*cJ!l~q= zHTxB_`IgG#qpV3wA8+T-;~ksa#A|Z0{(HVQ>8?lUwTOJ1vEf4KPJnM8M)pCWj^I(Kfpo-U@>S*^7pO`{{AF+Z!KOeajPi2 z9GuGw6SX15FweGRf5g&GRv|ID?MG?17KhySu#5qS`?M4!DsAO_XPb66;&Q&oxF76f zxi zE_)aAw*X+lL5}*ke9tPg8=DNin#C6KrI=cDTb?WSzlMbGS2EOKf{kv|O_br92%i+` zp)R$0R?x+vuv8!X@3>cx$6^k-I`PKMf`KqQNk7xZgrp($mwn0mpHy7!L%Ea5iVZib z;uoFlfNl&&Q2uPWqi$<=SC&*9t`ZcuDGUkEPZ-7}A58H)e*Ac)>KHs5%!uJPV>zAY z7cox8YBSbD62^U0*4G{G%EkB{TMX4Ekv4*yjr_%;6lwK~y|J`<8U}$T?aVf6#==9| zH!r7K4uzrPT+(6+wZUR~0@Z-AxV}FI9Q*g>m{uJht`vL!UX9cnd4}|WdGEcw-SJ`K z71k;44p> zBOGlb$_sQnkr)9b6jN76jHs4aR#|q^Sx|+@2f?@ZR+mVgA0Jq)fc){jQ%^(p(%?mj zOapZ#UXY;Y+mwd7$#EItu@X|b*D&yFW%_pW=B6-&5H-Q~ASFY94PYhni#sNE*W<3BM?L9~JwWY9`6~` zZRC8}^8V4xrHiM?F#nI(g@kgV6sO85nisiLp`^K<6Oa`X+gPjTRM?%05~*0NQLU}3 zuRmAauTH#8&yJE9N%H0a3P@=nz6`!erSS%4ep{upN&D@`y9#1jfsW`Qvd4o&g}pR| z!G$-&S(+K$WRGHRM$p3gf^zs|hDNgf&v$2!n}J;s%8MioW+PM#U3jz|HYQe}um5$W zMk9AKQUjp1FWnUX#o&=63fn7Vz}iG@f#Ba+Itv&gYpSas>{lJ{A06%&dka#7w}AZN z2J%++5C37eS;8`ZcP5lc0_#L6y;!K8;9}>sz30(kN@ee&p>HvnwF&zSy{Y;ap)j$R zE55-6)*4%Ktuo7SV|F$+@41vvWi#slHYGY+$O$D`4&PSRJF%ZdY8T z+j#XGuq&e(l#WZF*J~6Y8f!Bu4J;e5)4bjvz3_Tp*SYyi)~^PB%%gk+WULc)q3mEa zV542(7$ma<@7L^Z^EO%>GA{5xGiAUR3jPZwHt=-U<;}J4KFZ4Vb#-BK`-N(WA1HvY zuUq&vR+;Th`&pS{WO(@T&e9JsH5{l-28YX2{8xs6$;oyiU`@zUV&Z8_V&jzYUh2rCcYw@*m&Wl zPXloHo+RF?MJ=aYm4hQuF8uqXR%m!=*o_+lt~)zw#Ns%URgImsv8>&y!2KT3_(D$H z0o9B3-PvT%2Z`)bPQIY9L9|=lm2@sQ0_7k6Sm=rVWvfAiszT$2puLodhAJti_p!~e za}oF0=LAt*^`Xmlk#VBV#ppW)9>Uf@r{=f$&#q#4H33ynic~={fjUgVaK;@Is9O=-0W?2o?bMRB)>6k(Jffd&cHg+~JI6A#-F=GjsO-0g)BB_T8;5&BP7 zhf+fwtk#=?k&G;B=EQW9l$$Bn9*MQCXPYyjuUdOW6jz8kS-%8!Pge;j)cJs7zv*L& zSW+)2OU(Rod1-bE6>j>PonacoJ8E1`HM^yIVJMPx%N75};G5*)NWpF>`ey>BVZS(g zAvTK-Ty(qj^K-sRnJINkL`3T}h*Dh*?x3r|p&irLt%y?0ECWf6bFPs2ne;&!ram2G z#RhJB769Fa3I4!PAcz!fRMRrnv-dh-u-M(R09kt4ss8w?qPCt!f@vv^71f|Ru<{n9 zN=sD#|4eZZ-uHXfLSgu>RYw^|5=uz>T2j`Bn3Jmr=5+Z1 zDHm{|mV`Z&5cKiz78kh0=Me=|DFG+qAM8dT2{X!Nz zq0A}XOHWH;2zotsAF}kMGn(7Z2K~wFO0j{zN#y?q<&WL&_?z!9i}x)7nc@B{*TEH# z=lL1XX%kU=vK|8tW(w5&dxBgxqRbZ3QkL4JXoye8oma}gj$bfR5^{n#$<;lTxUL(D zw!|n(2&(D7^t3x7%?K#ZAS|^n@Vww|?^+D9V;kgeey#uC3jk68?mrg*r1p$61~&WV zGTT|f;Q?8lOid10r@`Gg^?Imte=_m-L2mKZ;$I#x&!fx%$8Rm&*?Jds$I|W8nZ3AT z<3Jg^B-xa72k&EVZbvo6%#WhT|A-LpU z$^q3f(toSG*c;TC)Tmxn;4ic4X3e)2(WPv&VB_)Z2@bH5url?<9I}Kc3D}l3R>9=xesKL46(SbI zMAdS?)P{G0NF515ztAPV>2G-`Tu|CME?Hv{+}C)kH`egbJd{!Bw}FI*+a^3O_(=_g zkHzeNBN4RKpl`B3D{S9-_SYK*OHIE0v0m3p9t~yIhMvCK!EOL=Lq~G{VpYuG8dMSo5r^M zG^3jjXf6N|5J-Bq44vvv(aYYImCeR1j1qnRhC&`|D_KvT`9>`k5Q zf6^;Vc5Goyq9TEWiJpRJ78o$Y%C&vnug%bY&x^w*#b-;o{0iiT&rWJar!Fdnw0%Z9H(G$CxLm_NvCpYZ%P5A}4zzNffjW zqsD#N?cx2aVj*Y=HGMs$2(0Y9?Nq<3&8SzSFl<{OR0dFuuy_@EEAHy-Sgw!vWrbr7 zp7#SA3pY?-zWA>G37iF`5+FH!Z1ln^2mm?3w;CH8aW}v_AanhH_-)@H@caQ!Bdz)@ zz)~dqEOJ@T1aFG14dKpfL2bc}5qoUiHGeq`W~oktqECvT&p>Dp=K%T)irKboJp|xN zo$7raZ+X2Tj;HA2ou=R^=AD$5~qci#jHu8X(E`SKQm zCJv`!896!PcIFA1YBIGvmJ33lC?2gOQ0h2(pR>rrvT-QE`M#XHHLKST6pC5W$$gWM z$XmFQ<)OBXtmWWkwiAY#5C%i9@40^%@qy-X?YVNNj+SrFaH_Q}?EdIphgs`*$y0rF z3AK^sp%S2Ek)6GKwiO-Kv0)WYhzcB36N5zP9XgjkijLKpA;WQ_P5R%v^tc#F&y<*@ zP&kje@2^)}bETYWIlPnh?==j#Nt-7>> zgcjU5!C?k!op~5m8cGHze}U~kf?MEU(CxC5=j5+OTnS_V$E>29+`eGqHQS^6`vZmm!b1$P3a@H2>fv(oC5d}fWXpA z2;)?6cN)-2b3NMBtxuBg-oG6$?SnX&`;crp|3&VXQgZcbTw8LLcxQ2&3Bb}^o*?4B zj9yFQfys=`OMtbt0Z--wG_2y43j%?7Y%m^WX105<(JqtN7RoLKvVjn%VxNtf)=>pI zBET)#1F~tEQDJ%KGt0U}h0)#I4e#T{Lo&X-^5q}KPsA3jhdhj8x4cbh*IJ$ZH>Mh+ zi25CrAi;G(k#C64b!UL&c;gv6RGgyr#qOS1h!E&b7&Pr)M3BuHjkqLCXFpU?dO_5k zk?gJg3heTj04E!KLiiE5AK6aLy?K{TzgqND@Nm=xTBMTTIJA2_%jmN?W z7hB<@`;EVZ6D7Lj54S;&v9l_*oH>nTxgC+w?9qw?kkF;s6c%xL-YrYb>Dm=$g+pi8 z5h1T^$N)zAB6eWYUFm%RM_Ec{t%SWt$v=Dx6WRZ&n*=b>Re{yz8y=u+0;@Wh7OC28 zb#_uUK&B@QI?5?LC29E7A~6J`{d>+ZEyJ%ZVp%eD^5eiW@gYhe14OQc--w~lQJ)aV z=-q)7NayZ`j(ISSU{BlC7P6ttePWO{l-O~#e{m~V{YSS#ZvnWKK!)P>n6Fz}#r56k zHLxhmO;sbZ`WCId7ONJ@a_G3a#4o;mZho&@+^6tIH32{`5b(AzNHiI>ND|`%O~}gE zOUr(ej6G04S~GtdyO)nTlz`ZsWNh#iQN};zEh%o?TVOyxm}J?br_Wzzp7#_iC1@yt zE;`|KJEtv%*Ajnwls8YSeZ5+{*1I>Y|6eF571kq;Kv5#M2&0C|<6QF`d=)!rZVc%^ z%~nko(-1TIIB({_Rr|tEC<~H6JbN|9jxnHBQ9JNiz^9j{x&%d9?K^KAgUO@FU~VC-v;M!)mk09vE2FRtRT8+McPWE zFo0dtqwySGv9Aq zQgGn(o|C{vww{!Wh%-1xXvSfaH^BPKVwbJ>(d_X-vNLh3*Jp)D!8!Xaw#17mzL#xJ zp;Xfd%xgM^s%RgtiyT`FZ7UpaD69+= zX0W_Ad-XFg@PC$D{#k7Sy?)~@K)e{(Pk<%JT;%XPm%|Xe?YuGem+W#}McfZ@oNQYm z9!Ck*TGr>+<+mYT5`y3t9mJJRzIxlc+QSQR-DZ?vnUi$TmYuPnd$m0wYrfAIo?)B+ z({)2Igm^dK@iKwsB0b?X>+i0$roz$trDgUIXK*XdHuoOs?RKaVF^)+I7# ztXYbeRlg(hc~v0;%Py>NHg9}S)4<}8VzGT@Fo(6Fdq}FDz~@D^O?JoQ_mv;a-2CdX zRySrL)_yiGUc7K~Deoquq?IW98V%!U#V9ViyiHBw;sFEbxSia zU1T17@*|p)jL`(^C}BC(!$;cDBECQAzc##je{!J5PTQnSi5RHtk zPxF`3Uu|Gu0A9HJR{=?iEfmCMu;X1EPWZ(;rzD@l{zghU#>qt1b>c^Sb0`GsvP-^d zS^lIB^uUA>U6$dNdo>9>b)F#+A1pK4V2-j5^7nUVYUjZZZs8j9Z)S)T9lx?z-wZUS zdn`0B?YGu4^&3hlhu9+~3`vp4Y5j z%U_;N7pVY?S2Kb05c|D}_^VMF?PCja^XqAw(MO{I;X|8^c`zzDd2E=y>S)6l#7~am zY*bLVI{wIqwL)wrJ@_=uxKV8u1axY!_R7ugxLj9ybQ`OZHCX$SOKe_mLBHP61Qd2; zZYnBhT3`Q7=c+b?TKsR7;$kxs_j{UUR8wZ<6h1~~A_9{*Jx#wQoM9@)#Mayj>n=fk zcn9#3N%9x@b27kpG$Zpe_0;gMVk*h^I5IHI6)%+y0vPNtECrbV(CT zNh5q^*6H`_Bb-JXf7vwzMyPg;RDjc3!fY_-YTqGm*Fx6M&zSc<;r|eHIulu~ubi%V zDWpNmRivI0d0BMTpeRm-@m7|O2#YV573x+5XND2ZU`!k%ZDbdHFfpNDg@jwTc-$1T zZ$fOUD4(f$>1ayJB`#wV(`?Qyq~FYVek*&Dwp_2-R#92*PU}1%5Pk)mhq2UMbD(A8 z`XAcQu==LuUzzMlChehVdN(bbba3hDAj=_h;uJ~AVhZ$ZFuyj);I$y014)^WdBpuF zcX3_)t|ULEn+XPos`;^5GZ2$9LC*A*QMF>7x_n>hWu!_VgFsl zv=8*XKj+@e4Q`9M9me<_v~lQ7dVgxr-@}xV8Tn&Ope+W2o>q}69Zt6*zuw?Wzn8-r zM9Z?=7ag?q>{@y{ZA6b6x*^AVAk#3L2dh2^Eb@ZX`uRBsNbK2NMp_MTgO)8l?6XE8 zSsbElbscV`ZOxq>X#@H_vOhvwj8w8_rdxB|J3nUiTGioRSvqL@puN^WL`le~QsZb|01AIfNaOS*Hw>2PP&x}?_ zCke17B0r^R>Jr)zouTy1mzBM(jkV&Y4S=GJJfr4_I);w8IM%-EyS@zwVe%#)}0q>Uns6)EDmBF@Tbw%kzssf@nskN6R6r#w+3VN?;4&slV{2Yt!rep8-J1oZrT$EGN;4{)<&^0E=^mtQE2O> z=|WA=YhO~Te#hWamjqk!S>!^DqI^Q*)H)i<;Jurz8#<*N47I%;uvL)I3@^}3(V^?M zUg0`NjErjTkI$Zjyq(IrE(M+~`z_Vd5~XvVOQ-5n{&BUMoN^H>u5CS8uKwM#fS;I6E?_KiAL`pnbox2LsW-|gsz+DM!v92C< zI8XHO50PoLN{i{2=~wiQs@r1UPM>21PpCzo@$ghX;mX(sckPRdO7HdVIZzx*#|<$I zHH~xko3{>b+02m%&^EdzLRp8)R-JjRkdg;*d-b~M<(fuo;+L&ZdjzFukwcZ1&*ln# zuFq8WvZD0;q5PMDI=u)=>`P@s7%{RlfZ@KemQdfu&Ax(uCQv1KZvRV@6Vt|-Je5Eb zc_75SDvOQQmk@)14#5nob6f$R?5-=Be`yleVCmImvaV_SOs~6y3AJA8yICu21uz%K zLfnS(>le*47R!PW?D=1^^RL-T3^mRfRoy@n(6lMMlaSsXW}X6v$60kc=O5AdW7tCL zKxX^yEd9*P452J`)Pp>@HSF3R`tjq^K%ouR{shf9E9kPyOKkb^W(7+Q$b_Odwhj~_ zF&|c9urT8Cad*`SOL=`ANpB7qkt^4o2D^j$rdU{%Q-{g1SG^@E8x8LCM5fy>e4hcG zE;U-+wV$xO$O0?F?EwG5Wl$Xg@e^1TcX4xbv$ah)0s*ZDq0{zP6>V;A4lEQ^k*2}< zC^*RmBB+Ljdwq1wB&?GSS~91!)K}tO$W}=w0&k_)it`76aT2=#CWqfH((SZ%e0r9N z#AkT~j4y68Mn_nU*blWsg@uJtjlDyXAV38-&%r=s3kn)JuHfKTU#0GfgjKH4XE#y~ zdBojO0TDf}fr`B*(h3j4B1t-nY@tl8;`kqwgJ9$Peb_B~iq!qw=;Q$Z;YLBbITAOh zzg%?3udV8}wzo?qw1Qi2gneM?E{wH{4JfrL0VB;j+9jI`-|<5ttoLEs;5KF-RO`&a z!NHy~IN=iV{i-gX%^R63J4#&f&DgNSLzxt%!@5Vt&uQQg=_%2RNu0(;rnlZ02%Z(I z>3?NOa-%CnP4=^nxeH$QW)g`m_sj(dR{L{a$BoUicndBYz6b-i=9J}F2PbHSUlA1d z=FOY7aMAT)-#E0J zV=OpZFt(E@a;U`>a4p{VW-@E|q=q|-YbQ4BNEr7pxzjfwlBK-eT>4|G8D6cxY*d+FcN7VJ9+iOye9 z!f?HXezFp6uH5+4xPAhV>H4Y@maU4j%E~fpU~YPp-U5iy(8x+qg~x!{tQ;2z#$pPS zVoIC#M`n;6=!QfG#$D*s8rhO$1~;s`HQ{Rm7klWxF_0beqeCy;W-${9W|jJ=o3fBT za86brNJm}DP*O5Un3YsCzzqLXj2>K@kuzASHAN(jh?TEtEO&zBBXAnwhn} zcdc)p|Bx8Yb8?<@etZA+-r3B^(S~mD>$NNK6ZPUn84Z4=$s1XN>;=^#h1QJ-^EWo- zqh}t> zOlT{~|$#u*gy3fWAc}VqCzv zD09-~#fguo0<@!}_OE_#+-?4zpV98Un^u*d_BjkT1c5i(~TT< zZY@K!a=#9}p@8Brh2JG58sVR1Vh?>u=i{LCkeA z$ihm7Z<)xESb#M_g)YCg>49a^PCClQb0+(a@d#opuscB>vIKhR>*=*K4{+ z;5bU4_<}_y*l!p-s70wh%5#V5uC8Uh{Vj_aV8rv!ssmX>g0{01ugRJIzh3nGTn|lH znliw(v8oh9oIXBg)_3u~XAS09lHCm592m{S8;((pJF<+2bTYpw6=H*$*wY%o9)FC`}@Ct35Hln03?P)eIGzpv*4 z3a^)yK}tb0^=+#0q{@o=sZk^RF{)B}2uLNUI*Yc>{AFU+gkJop^9RUJ8u;^U!;Pew zZ1K($RmK&AE~0Fp^}cVwyyg(Cls)L;<^znwGLvBCi5Hp*$TxS{TnN)1!dSn_N=g*S zHk@l#a$~p}&;2&J(EW*XrYJQ%ZlpKtv+xwKQ}JGl!C{Zv8O0rH=}#WRKj8*{!N%Uf2FuT@AOUA ze?r92-;g)}XeHQwt0lpaq9|?o2i3D^3M4oWmfotDLe6Gjo{NFAKd^s(zXUpmNzEQt zM9oMY9{?22EJjPF-tf338r0e@98F)lC>3`@8{u+ERe=3I*mczUJr;e6zHjk;^lQHs zk!#0i*0OBm)F}k8vyNFn17wi)pkMz1K-}D_{X=lhU!mB@rZ$@kPw@}i-8!lGLV)4n zti{e(&>OI~x36AetU7-DI1nYlw-&YExdyO+Ex`8^)uP%GzZW=+!DVM}pMskKXERVr z5*$P+hvmU+brrfnJxT7Uxs2Z3!u1p6WGW*f%KI$a)pbo*YjU!( zvvaYtCQ15ld0MxgmgvL;PYr~(hOe%!mX%$-NvM|@ofnp?nyT&FXsR~PU;(e@%J?AT zG4;K0+g(fm>oYMhzrOU|Jzds+aq8>4;<1+_0Y@8CJ8nY49*a{Z%=yg8n;bdHe?&*x zYoto{2tY@D%*HU76QCgl9K)7^pZyO=ofaq#Dk5}?sa%|O=KMQpv#%kHGiO_La_%*4_Ue52 zrgDKP!Ksi*kQkpA@FjLq@{Foer524Xo8AaQXCq!x<7<|&kLtZ!-5>P|<`cNXCkxVH zx;&v;QECQfo$p-gkO^1-@)GQ#wKU4?{JC@I+}uZsnW>)TzXa84An2@g(nr@yJJT&7@E;*A_vUidS;GZhq5&#R<3&L#ehltrpMcGM6 zi(p>cn|Yf*oO#prHq>3fV1iVRo`?>G8;x02uP+-na{FOi1h*K)JM_Y!vs45$*L4B_^F!M#3%YdKl-<;h}^I(a&s z36XhOkE$)DN^DO*fF5SrtLm#Ve*ICG7ccSK7V)&ky4-G>Z~jEmNVktBeo^eZQ0(DWcNE^%`IB%s1t?!|}@%9*cu_CSiQ1<9Rv@D4Ap=G>FAH;G&<(kk9IQ))3aFa(&m z_R&u5NwB^fPJ;8=<*K7r2Mcz;@&z+RfdNw4B!Y225?^}9Pqtp$Xnc~5v1L0cA0F~} zu*%gW>}~G|!5`P=U&a8cAOzg!$m`ph@8dYGFdm9~1p$)^p08r`1@7H z#%frwTXZtC`xCZq)jQjY0pGLmmMqGE_DW%Ll8Zo!P-Tf$vXT$V82PF!Ygnqqv}%W3 z3Zbk9q*_{&iI4CRkL}f)XtMPTht`<;OYDE?%Rkb`{g^tdf#ML%Mi2w8z-~zqd4W5L zD&-5$Paw+>MVu(Jldh`Y@Wa zFuCZTuFVXHc&@!hECKqB)S`rn5l?>iS?S9b&0-S7lS+jK^TsRBqDBRh%sB>z0BYCuBUzEolH*gaWd{g&KT`eZheh% z>wuBZIHCw~sX;4GAK!9ufC0GkQy=ntb7D2j^SGslBwsLjfEUxxD}1*EtGtdvpi6FP z=aaBOYaRXO0rvABlqbgE_hUJ{WFZfFi0^XaBY_lLju_U)wKN@{_$l}ER!4RH^>52p z^Wmw+(JhEBhaATt7xCHOTmvWI8pM8UL;x19LIcNZx(9%2#I+@Nh^#EX*EQY#{`UaC zh0{|SOWVWPgJFf&PL;;R2GTeRQGp=^kzm2oFmajZP6K(6P663t%+OPyG)h*2G#~2p z#ehLQ&T%Ns&=&s7P@5r>8#o@W`!T&OUylc2YXjdL1-XY)9;QSjwcEEz$-lPk-|c2E zu`i6X&PP7LOzfA%O9Tpbvi{WkZl4h(E-M=Z^scg?SR1NzMz+sCc5^G~au@;93Q*mG z0(f`<@&xmm2ynwQWpa=FK@X*ac7!32F~?7x|GYKijKXXUkq(zh!1X}pH94G=Kb$

0>cx6SExb`Z{Xx3+zs# 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 RWhwk`+vc5{5;mIq{x6I>T_*ql literal 72724 zcmeFZXH-<#);78+GAJO3m_Q_mf&@iGa+yE{0f8bXML=@SsZbF!7zm041F6V479iRP z5+!F)$yuW0Z*B$J)2F}jy?5LncicPfpFVx)+Iz1x*9^~`^O@_OvZCB}n!Pj#f^5Hd z;hYMBki)-X>ZmB-e`>wD)DeUoxp?lhnyda;7v=Mvf3=tW2zli|agULlMCJ+uY3P+J zLL8w?yoWyCrOtRmwHvFp?XY1kN1W@GV{$?VFYF|#5E~q7QL-})*E3=2$dHg)ophK- z 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⪚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 Wci&SD|L1o`1^R*Z-3@*a4m?fUr*Jf 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

5!JorsA@b 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

acqCG_VmP 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 delta 110258 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%0ABoym)bWZoskQI=v@@~p%dRQi^~aMpzk-Pg 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

Zvr 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

>TYKIRmfN6L6= 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 TrW0mI7r@@Cxg~1T!C(Fbn(;0v diff --git a/tests/src/end-to-end/copypaste/copypaste.test.ts-snapshots/headings-json-chromium-linux.json b/tests/src/end-to-end/copypaste/copypaste.test.ts-snapshots/headings-json-chromium-linux.json index efc45cfa6f..55f4a1d69e 100644 --- a/tests/src/end-to-end/copypaste/copypaste.test.ts-snapshots/headings-json-chromium-linux.json +++ b/tests/src/end-to-end/copypaste/copypaste.test.ts-snapshots/headings-json-chromium-linux.json @@ -16,7 +16,8 @@ "type": "heading", "attrs": { "textAlignment": "left", - "level": 1 + "level": 1, + "isTogglable": false }, "content": [ { @@ -39,7 +40,8 @@ "type": "heading", "attrs": { "textAlignment": "left", - "level": 2 + "level": 2, + "isTogglable": false }, "content": [ { @@ -62,7 +64,8 @@ "type": "heading", "attrs": { "textAlignment": "left", - "level": 3 + "level": 3, + "isTogglable": false }, "content": [ { @@ -101,7 +104,8 @@ "type": "heading", "attrs": { "textAlignment": "left", - "level": 1 + "level": 1, + "isTogglable": false }, "content": [ { @@ -124,7 +128,8 @@ "type": "heading", "attrs": { "textAlignment": "left", - "level": 2 + "level": 2, + "isTogglable": false }, "content": [ { @@ -147,7 +152,8 @@ "type": "heading", "attrs": { "textAlignment": "left", - "level": 3 + "level": 3, + "isTogglable": false }, "content": [ { diff --git a/tests/src/end-to-end/dragdrop/dragdrop.test.ts-snapshots/dragdropnested-chromium-linux.json b/tests/src/end-to-end/dragdrop/dragdrop.test.ts-snapshots/dragdropnested-chromium-linux.json index 99709a25e1..a49c490a25 100644 --- a/tests/src/end-to-end/dragdrop/dragdrop.test.ts-snapshots/dragdropnested-chromium-linux.json +++ b/tests/src/end-to-end/dragdrop/dragdrop.test.ts-snapshots/dragdropnested-chromium-linux.json @@ -39,7 +39,8 @@ "type": "heading", "attrs": { "textAlignment": "left", - "level": 1 + "level": 1, + "isTogglable": false }, "content": [ { @@ -85,7 +86,8 @@ "type": "heading", "attrs": { "textAlignment": "left", - "level": 2 + "level": 2, + "isTogglable": false }, "content": [ { @@ -116,7 +118,8 @@ "type": "heading", "attrs": { "textAlignment": "left", - "level": 3 + "level": 3, + "isTogglable": false }, "content": [ { diff --git a/tests/src/end-to-end/dragdrop/dragdrop.test.ts-snapshots/dragdropnested-webkit-linux.json b/tests/src/end-to-end/dragdrop/dragdrop.test.ts-snapshots/dragdropnested-webkit-linux.json index 99709a25e1..a49c490a25 100644 --- a/tests/src/end-to-end/dragdrop/dragdrop.test.ts-snapshots/dragdropnested-webkit-linux.json +++ b/tests/src/end-to-end/dragdrop/dragdrop.test.ts-snapshots/dragdropnested-webkit-linux.json @@ -39,7 +39,8 @@ "type": "heading", "attrs": { "textAlignment": "left", - "level": 1 + "level": 1, + "isTogglable": false }, "content": [ { @@ -85,7 +86,8 @@ "type": "heading", "attrs": { "textAlignment": "left", - "level": 2 + "level": 2, + "isTogglable": false }, "content": [ { @@ -116,7 +118,8 @@ "type": "heading", "attrs": { "textAlignment": "left", - "level": 3 + "level": 3, + "isTogglable": false }, "content": [ { diff --git a/tests/src/end-to-end/dragdrop/dragdrop.test.ts-snapshots/dragdropsingle-chromium-linux.json b/tests/src/end-to-end/dragdrop/dragdrop.test.ts-snapshots/dragdropsingle-chromium-linux.json index ed1986da9f..6a8cecc3a8 100644 --- a/tests/src/end-to-end/dragdrop/dragdrop.test.ts-snapshots/dragdropsingle-chromium-linux.json +++ b/tests/src/end-to-end/dragdrop/dragdrop.test.ts-snapshots/dragdropsingle-chromium-linux.json @@ -16,7 +16,8 @@ "type": "heading", "attrs": { "textAlignment": "left", - "level": 2 + "level": 2, + "isTogglable": false }, "content": [ { @@ -39,7 +40,8 @@ "type": "heading", "attrs": { "textAlignment": "left", - "level": 1 + "level": 1, + "isTogglable": false }, "content": [ { @@ -62,7 +64,8 @@ "type": "heading", "attrs": { "textAlignment": "left", - "level": 3 + "level": 3, + "isTogglable": false }, "content": [ { diff --git a/tests/src/end-to-end/dragdrop/dragdrop.test.ts-snapshots/dragdropsingle-webkit-linux.json b/tests/src/end-to-end/dragdrop/dragdrop.test.ts-snapshots/dragdropsingle-webkit-linux.json index ed1986da9f..6a8cecc3a8 100644 --- a/tests/src/end-to-end/dragdrop/dragdrop.test.ts-snapshots/dragdropsingle-webkit-linux.json +++ b/tests/src/end-to-end/dragdrop/dragdrop.test.ts-snapshots/dragdropsingle-webkit-linux.json @@ -16,7 +16,8 @@ "type": "heading", "attrs": { "textAlignment": "left", - "level": 2 + "level": 2, + "isTogglable": false }, "content": [ { @@ -39,7 +40,8 @@ "type": "heading", "attrs": { "textAlignment": "left", - "level": 1 + "level": 1, + "isTogglable": false }, "content": [ { @@ -62,7 +64,8 @@ "type": "heading", "attrs": { "textAlignment": "left", - "level": 3 + "level": 3, + "isTogglable": false }, "content": [ { diff --git a/tests/src/end-to-end/draghandle/draghandle.test.ts-snapshots/addnonselectedemptyblock-chromium-linux.json b/tests/src/end-to-end/draghandle/draghandle.test.ts-snapshots/addnonselectedemptyblock-chromium-linux.json index 19315d70ba..83dc6ae496 100644 --- a/tests/src/end-to-end/draghandle/draghandle.test.ts-snapshots/addnonselectedemptyblock-chromium-linux.json +++ b/tests/src/end-to-end/draghandle/draghandle.test.ts-snapshots/addnonselectedemptyblock-chromium-linux.json @@ -16,7 +16,8 @@ "type": "heading", "attrs": { "textAlignment": "left", - "level": 1 + "level": 1, + "isTogglable": false }, "content": [ { @@ -39,7 +40,8 @@ "type": "heading", "attrs": { "textAlignment": "left", - "level": 1 + "level": 1, + "isTogglable": true } } ] diff --git a/tests/src/end-to-end/draghandle/draghandle.test.ts-snapshots/addnonselectedemptyblock-firefox-linux.json b/tests/src/end-to-end/draghandle/draghandle.test.ts-snapshots/addnonselectedemptyblock-firefox-linux.json index 19315d70ba..83dc6ae496 100644 --- a/tests/src/end-to-end/draghandle/draghandle.test.ts-snapshots/addnonselectedemptyblock-firefox-linux.json +++ b/tests/src/end-to-end/draghandle/draghandle.test.ts-snapshots/addnonselectedemptyblock-firefox-linux.json @@ -16,7 +16,8 @@ "type": "heading", "attrs": { "textAlignment": "left", - "level": 1 + "level": 1, + "isTogglable": false }, "content": [ { @@ -39,7 +40,8 @@ "type": "heading", "attrs": { "textAlignment": "left", - "level": 1 + "level": 1, + "isTogglable": true } } ] diff --git a/tests/src/end-to-end/draghandle/draghandle.test.ts-snapshots/addnonselectedemptyblock-webkit-linux.json b/tests/src/end-to-end/draghandle/draghandle.test.ts-snapshots/addnonselectedemptyblock-webkit-linux.json index 19315d70ba..83dc6ae496 100644 --- a/tests/src/end-to-end/draghandle/draghandle.test.ts-snapshots/addnonselectedemptyblock-webkit-linux.json +++ b/tests/src/end-to-end/draghandle/draghandle.test.ts-snapshots/addnonselectedemptyblock-webkit-linux.json @@ -16,7 +16,8 @@ "type": "heading", "attrs": { "textAlignment": "left", - "level": 1 + "level": 1, + "isTogglable": false }, "content": [ { @@ -39,7 +40,8 @@ "type": "heading", "attrs": { "textAlignment": "left", - "level": 1 + "level": 1, + "isTogglable": true } } ] diff --git a/tests/src/end-to-end/draghandle/draghandle.test.ts-snapshots/dragHandleDocStructure-chromium-linux.json b/tests/src/end-to-end/draghandle/draghandle.test.ts-snapshots/dragHandleDocStructure-chromium-linux.json index e53d0ece8b..ba945734a9 100644 --- a/tests/src/end-to-end/draghandle/draghandle.test.ts-snapshots/dragHandleDocStructure-chromium-linux.json +++ b/tests/src/end-to-end/draghandle/draghandle.test.ts-snapshots/dragHandleDocStructure-chromium-linux.json @@ -16,7 +16,8 @@ "type": "heading", "attrs": { "textAlignment": "left", - "level": 1 + "level": 1, + "isTogglable": false }, "content": [ { @@ -39,7 +40,8 @@ "type": "heading", "attrs": { "textAlignment": "left", - "level": 3 + "level": 3, + "isTogglable": false }, "content": [ { diff --git a/tests/src/end-to-end/draghandle/draghandle.test.ts-snapshots/dragHandleDocStructure-firefox-linux.json b/tests/src/end-to-end/draghandle/draghandle.test.ts-snapshots/dragHandleDocStructure-firefox-linux.json index e53d0ece8b..ba945734a9 100644 --- a/tests/src/end-to-end/draghandle/draghandle.test.ts-snapshots/dragHandleDocStructure-firefox-linux.json +++ b/tests/src/end-to-end/draghandle/draghandle.test.ts-snapshots/dragHandleDocStructure-firefox-linux.json @@ -16,7 +16,8 @@ "type": "heading", "attrs": { "textAlignment": "left", - "level": 1 + "level": 1, + "isTogglable": false }, "content": [ { @@ -39,7 +40,8 @@ "type": "heading", "attrs": { "textAlignment": "left", - "level": 3 + "level": 3, + "isTogglable": false }, "content": [ { diff --git a/tests/src/end-to-end/draghandle/draghandle.test.ts-snapshots/dragHandleDocStructure-webkit-linux.json b/tests/src/end-to-end/draghandle/draghandle.test.ts-snapshots/dragHandleDocStructure-webkit-linux.json index e53d0ece8b..ba945734a9 100644 --- a/tests/src/end-to-end/draghandle/draghandle.test.ts-snapshots/dragHandleDocStructure-webkit-linux.json +++ b/tests/src/end-to-end/draghandle/draghandle.test.ts-snapshots/dragHandleDocStructure-webkit-linux.json @@ -16,7 +16,8 @@ "type": "heading", "attrs": { "textAlignment": "left", - "level": 1 + "level": 1, + "isTogglable": false }, "content": [ { @@ -39,7 +40,8 @@ "type": "heading", "attrs": { "textAlignment": "left", - "level": 3 + "level": 3, + "isTogglable": false }, "content": [ { diff --git a/tests/src/end-to-end/draghandle/draghandle.test.ts-snapshots/draghandleadd-chromium-linux.json b/tests/src/end-to-end/draghandle/draghandle.test.ts-snapshots/draghandleadd-chromium-linux.json index 9ce857ec27..97a3d97dc1 100644 --- a/tests/src/end-to-end/draghandle/draghandle.test.ts-snapshots/draghandleadd-chromium-linux.json +++ b/tests/src/end-to-end/draghandle/draghandle.test.ts-snapshots/draghandleadd-chromium-linux.json @@ -16,7 +16,8 @@ "type": "heading", "attrs": { "textAlignment": "left", - "level": 1 + "level": 1, + "isTogglable": false }, "content": [ { @@ -39,7 +40,8 @@ "type": "heading", "attrs": { "textAlignment": "left", - "level": 2 + "level": 2, + "isTogglable": true }, "content": [ { diff --git a/tests/src/end-to-end/draghandle/draghandle.test.ts-snapshots/draghandleadd-firefox-linux.json b/tests/src/end-to-end/draghandle/draghandle.test.ts-snapshots/draghandleadd-firefox-linux.json index 9ce857ec27..97a3d97dc1 100644 --- a/tests/src/end-to-end/draghandle/draghandle.test.ts-snapshots/draghandleadd-firefox-linux.json +++ b/tests/src/end-to-end/draghandle/draghandle.test.ts-snapshots/draghandleadd-firefox-linux.json @@ -16,7 +16,8 @@ "type": "heading", "attrs": { "textAlignment": "left", - "level": 1 + "level": 1, + "isTogglable": false }, "content": [ { @@ -39,7 +40,8 @@ "type": "heading", "attrs": { "textAlignment": "left", - "level": 2 + "level": 2, + "isTogglable": true }, "content": [ { diff --git a/tests/src/end-to-end/draghandle/draghandle.test.ts-snapshots/draghandleadd-webkit-linux.json b/tests/src/end-to-end/draghandle/draghandle.test.ts-snapshots/draghandleadd-webkit-linux.json index 9ce857ec27..97a3d97dc1 100644 --- a/tests/src/end-to-end/draghandle/draghandle.test.ts-snapshots/draghandleadd-webkit-linux.json +++ b/tests/src/end-to-end/draghandle/draghandle.test.ts-snapshots/draghandleadd-webkit-linux.json @@ -16,7 +16,8 @@ "type": "heading", "attrs": { "textAlignment": "left", - "level": 1 + "level": 1, + "isTogglable": false }, "content": [ { @@ -39,7 +40,8 @@ "type": "heading", "attrs": { "textAlignment": "left", - "level": 2 + "level": 2, + "isTogglable": true }, "content": [ { diff --git a/tests/src/end-to-end/draghandle/draghandle.test.ts-snapshots/draghandlenesteddelete-chromium-linux.json b/tests/src/end-to-end/draghandle/draghandle.test.ts-snapshots/draghandlenesteddelete-chromium-linux.json index c2c50f0bf5..33f9c4b226 100644 --- a/tests/src/end-to-end/draghandle/draghandle.test.ts-snapshots/draghandlenesteddelete-chromium-linux.json +++ b/tests/src/end-to-end/draghandle/draghandle.test.ts-snapshots/draghandlenesteddelete-chromium-linux.json @@ -16,7 +16,8 @@ "type": "heading", "attrs": { "textAlignment": "left", - "level": 1 + "level": 1, + "isTogglable": false }, "content": [ { diff --git a/tests/src/end-to-end/draghandle/draghandle.test.ts-snapshots/draghandlenesteddelete-firefox-linux.json b/tests/src/end-to-end/draghandle/draghandle.test.ts-snapshots/draghandlenesteddelete-firefox-linux.json index c2c50f0bf5..33f9c4b226 100644 --- a/tests/src/end-to-end/draghandle/draghandle.test.ts-snapshots/draghandlenesteddelete-firefox-linux.json +++ b/tests/src/end-to-end/draghandle/draghandle.test.ts-snapshots/draghandlenesteddelete-firefox-linux.json @@ -16,7 +16,8 @@ "type": "heading", "attrs": { "textAlignment": "left", - "level": 1 + "level": 1, + "isTogglable": false }, "content": [ { diff --git a/tests/src/end-to-end/draghandle/draghandle.test.ts-snapshots/draghandlenesteddelete-webkit-linux.json b/tests/src/end-to-end/draghandle/draghandle.test.ts-snapshots/draghandlenesteddelete-webkit-linux.json index c2c50f0bf5..33f9c4b226 100644 --- a/tests/src/end-to-end/draghandle/draghandle.test.ts-snapshots/draghandlenesteddelete-webkit-linux.json +++ b/tests/src/end-to-end/draghandle/draghandle.test.ts-snapshots/draghandlenesteddelete-webkit-linux.json @@ -16,7 +16,8 @@ "type": "heading", "attrs": { "textAlignment": "left", - "level": 1 + "level": 1, + "isTogglable": false }, "content": [ { diff --git a/tests/src/end-to-end/images/images.test.ts-snapshots/dragImage-chromium-linux.json b/tests/src/end-to-end/images/images.test.ts-snapshots/dragImage-chromium-linux.json index e93714dbe8..b2b1143f9e 100644 --- a/tests/src/end-to-end/images/images.test.ts-snapshots/dragImage-chromium-linux.json +++ b/tests/src/end-to-end/images/images.test.ts-snapshots/dragImage-chromium-linux.json @@ -16,7 +16,8 @@ "type": "heading", "attrs": { "textAlignment": "left", - "level": 1 + "level": 1, + "isTogglable": false }, "content": [ { diff --git a/tests/src/end-to-end/images/images.test.ts-snapshots/dragImage-firefox-linux.json b/tests/src/end-to-end/images/images.test.ts-snapshots/dragImage-firefox-linux.json index e93714dbe8..b2b1143f9e 100644 --- a/tests/src/end-to-end/images/images.test.ts-snapshots/dragImage-firefox-linux.json +++ b/tests/src/end-to-end/images/images.test.ts-snapshots/dragImage-firefox-linux.json @@ -16,7 +16,8 @@ "type": "heading", "attrs": { "textAlignment": "left", - "level": 1 + "level": 1, + "isTogglable": false }, "content": [ { diff --git a/tests/src/end-to-end/images/images.test.ts-snapshots/dragImage-webkit-linux.json b/tests/src/end-to-end/images/images.test.ts-snapshots/dragImage-webkit-linux.json index e93714dbe8..b2b1143f9e 100644 --- a/tests/src/end-to-end/images/images.test.ts-snapshots/dragImage-webkit-linux.json +++ b/tests/src/end-to-end/images/images.test.ts-snapshots/dragImage-webkit-linux.json @@ -16,7 +16,8 @@ "type": "heading", "attrs": { "textAlignment": "left", - "level": 1 + "level": 1, + "isTogglable": false }, "content": [ { diff --git a/tests/src/end-to-end/indentation/indentation.test.ts-snapshots/decreaseIndentMultipleBlocks-chromium-linux.json b/tests/src/end-to-end/indentation/indentation.test.ts-snapshots/decreaseIndentMultipleBlocks-chromium-linux.json index 5288ef0bc6..03f80472dd 100644 --- a/tests/src/end-to-end/indentation/indentation.test.ts-snapshots/decreaseIndentMultipleBlocks-chromium-linux.json +++ b/tests/src/end-to-end/indentation/indentation.test.ts-snapshots/decreaseIndentMultipleBlocks-chromium-linux.json @@ -39,7 +39,8 @@ "type": "heading", "attrs": { "textAlignment": "left", - "level": 1 + "level": 1, + "isTogglable": false }, "content": [ { @@ -66,7 +67,8 @@ "type": "heading", "attrs": { "textAlignment": "left", - "level": 2 + "level": 2, + "isTogglable": false }, "content": [ { @@ -89,7 +91,8 @@ "type": "heading", "attrs": { "textAlignment": "left", - "level": 3 + "level": 3, + "isTogglable": false }, "content": [ { diff --git a/tests/src/end-to-end/indentation/indentation.test.ts-snapshots/decreaseIndentMultipleBlocks-firefox-linux.json b/tests/src/end-to-end/indentation/indentation.test.ts-snapshots/decreaseIndentMultipleBlocks-firefox-linux.json index 5288ef0bc6..03f80472dd 100644 --- a/tests/src/end-to-end/indentation/indentation.test.ts-snapshots/decreaseIndentMultipleBlocks-firefox-linux.json +++ b/tests/src/end-to-end/indentation/indentation.test.ts-snapshots/decreaseIndentMultipleBlocks-firefox-linux.json @@ -39,7 +39,8 @@ "type": "heading", "attrs": { "textAlignment": "left", - "level": 1 + "level": 1, + "isTogglable": false }, "content": [ { @@ -66,7 +67,8 @@ "type": "heading", "attrs": { "textAlignment": "left", - "level": 2 + "level": 2, + "isTogglable": false }, "content": [ { @@ -89,7 +91,8 @@ "type": "heading", "attrs": { "textAlignment": "left", - "level": 3 + "level": 3, + "isTogglable": false }, "content": [ { diff --git a/tests/src/end-to-end/indentation/indentation.test.ts-snapshots/decreaseIndentMultipleBlocks-webkit-linux.json b/tests/src/end-to-end/indentation/indentation.test.ts-snapshots/decreaseIndentMultipleBlocks-webkit-linux.json index 5288ef0bc6..03f80472dd 100644 --- a/tests/src/end-to-end/indentation/indentation.test.ts-snapshots/decreaseIndentMultipleBlocks-webkit-linux.json +++ b/tests/src/end-to-end/indentation/indentation.test.ts-snapshots/decreaseIndentMultipleBlocks-webkit-linux.json @@ -39,7 +39,8 @@ "type": "heading", "attrs": { "textAlignment": "left", - "level": 1 + "level": 1, + "isTogglable": false }, "content": [ { @@ -66,7 +67,8 @@ "type": "heading", "attrs": { "textAlignment": "left", - "level": 2 + "level": 2, + "isTogglable": false }, "content": [ { @@ -89,7 +91,8 @@ "type": "heading", "attrs": { "textAlignment": "left", - "level": 3 + "level": 3, + "isTogglable": false }, "content": [ { diff --git a/tests/src/end-to-end/indentation/indentation.test.ts-snapshots/decreaseIndentSingleBlock-chromium-linux.json b/tests/src/end-to-end/indentation/indentation.test.ts-snapshots/decreaseIndentSingleBlock-chromium-linux.json index 2993f24a93..07f2036f41 100644 --- a/tests/src/end-to-end/indentation/indentation.test.ts-snapshots/decreaseIndentSingleBlock-chromium-linux.json +++ b/tests/src/end-to-end/indentation/indentation.test.ts-snapshots/decreaseIndentSingleBlock-chromium-linux.json @@ -39,7 +39,8 @@ "type": "heading", "attrs": { "textAlignment": "left", - "level": 1 + "level": 1, + "isTogglable": false }, "content": [ { @@ -66,7 +67,8 @@ "type": "heading", "attrs": { "textAlignment": "left", - "level": 2 + "level": 2, + "isTogglable": false }, "content": [ { @@ -90,7 +92,8 @@ "type": "heading", "attrs": { "textAlignment": "left", - "level": 3 + "level": 3, + "isTogglable": false }, "content": [ { diff --git a/tests/src/end-to-end/indentation/indentation.test.ts-snapshots/decreaseIndentSingleBlock-firefox-linux.json b/tests/src/end-to-end/indentation/indentation.test.ts-snapshots/decreaseIndentSingleBlock-firefox-linux.json index 2993f24a93..07f2036f41 100644 --- a/tests/src/end-to-end/indentation/indentation.test.ts-snapshots/decreaseIndentSingleBlock-firefox-linux.json +++ b/tests/src/end-to-end/indentation/indentation.test.ts-snapshots/decreaseIndentSingleBlock-firefox-linux.json @@ -39,7 +39,8 @@ "type": "heading", "attrs": { "textAlignment": "left", - "level": 1 + "level": 1, + "isTogglable": false }, "content": [ { @@ -66,7 +67,8 @@ "type": "heading", "attrs": { "textAlignment": "left", - "level": 2 + "level": 2, + "isTogglable": false }, "content": [ { @@ -90,7 +92,8 @@ "type": "heading", "attrs": { "textAlignment": "left", - "level": 3 + "level": 3, + "isTogglable": false }, "content": [ { diff --git a/tests/src/end-to-end/indentation/indentation.test.ts-snapshots/decreaseIndentSingleBlock-webkit-linux.json b/tests/src/end-to-end/indentation/indentation.test.ts-snapshots/decreaseIndentSingleBlock-webkit-linux.json index 2993f24a93..07f2036f41 100644 --- a/tests/src/end-to-end/indentation/indentation.test.ts-snapshots/decreaseIndentSingleBlock-webkit-linux.json +++ b/tests/src/end-to-end/indentation/indentation.test.ts-snapshots/decreaseIndentSingleBlock-webkit-linux.json @@ -39,7 +39,8 @@ "type": "heading", "attrs": { "textAlignment": "left", - "level": 1 + "level": 1, + "isTogglable": false }, "content": [ { @@ -66,7 +67,8 @@ "type": "heading", "attrs": { "textAlignment": "left", - "level": 2 + "level": 2, + "isTogglable": false }, "content": [ { @@ -90,7 +92,8 @@ "type": "heading", "attrs": { "textAlignment": "left", - "level": 3 + "level": 3, + "isTogglable": false }, "content": [ { diff --git a/tests/src/end-to-end/indentation/indentation.test.ts-snapshots/increaseIndentMultipleBlocks-chromium-linux.json b/tests/src/end-to-end/indentation/indentation.test.ts-snapshots/increaseIndentMultipleBlocks-chromium-linux.json index d4a3ed8ab1..f3088fe418 100644 --- a/tests/src/end-to-end/indentation/indentation.test.ts-snapshots/increaseIndentMultipleBlocks-chromium-linux.json +++ b/tests/src/end-to-end/indentation/indentation.test.ts-snapshots/increaseIndentMultipleBlocks-chromium-linux.json @@ -39,7 +39,8 @@ "type": "heading", "attrs": { "textAlignment": "left", - "level": 1 + "level": 1, + "isTogglable": false }, "content": [ { @@ -63,7 +64,8 @@ "type": "heading", "attrs": { "textAlignment": "left", - "level": 2 + "level": 2, + "isTogglable": false }, "content": [ { @@ -86,7 +88,8 @@ "type": "heading", "attrs": { "textAlignment": "left", - "level": 3 + "level": 3, + "isTogglable": false }, "content": [ { diff --git a/tests/src/end-to-end/indentation/indentation.test.ts-snapshots/increaseIndentMultipleBlocks-firefox-linux.json b/tests/src/end-to-end/indentation/indentation.test.ts-snapshots/increaseIndentMultipleBlocks-firefox-linux.json index d4a3ed8ab1..f3088fe418 100644 --- a/tests/src/end-to-end/indentation/indentation.test.ts-snapshots/increaseIndentMultipleBlocks-firefox-linux.json +++ b/tests/src/end-to-end/indentation/indentation.test.ts-snapshots/increaseIndentMultipleBlocks-firefox-linux.json @@ -39,7 +39,8 @@ "type": "heading", "attrs": { "textAlignment": "left", - "level": 1 + "level": 1, + "isTogglable": false }, "content": [ { @@ -63,7 +64,8 @@ "type": "heading", "attrs": { "textAlignment": "left", - "level": 2 + "level": 2, + "isTogglable": false }, "content": [ { @@ -86,7 +88,8 @@ "type": "heading", "attrs": { "textAlignment": "left", - "level": 3 + "level": 3, + "isTogglable": false }, "content": [ { diff --git a/tests/src/end-to-end/indentation/indentation.test.ts-snapshots/increaseIndentMultipleBlocks-webkit-linux.json b/tests/src/end-to-end/indentation/indentation.test.ts-snapshots/increaseIndentMultipleBlocks-webkit-linux.json index d4a3ed8ab1..f3088fe418 100644 --- a/tests/src/end-to-end/indentation/indentation.test.ts-snapshots/increaseIndentMultipleBlocks-webkit-linux.json +++ b/tests/src/end-to-end/indentation/indentation.test.ts-snapshots/increaseIndentMultipleBlocks-webkit-linux.json @@ -39,7 +39,8 @@ "type": "heading", "attrs": { "textAlignment": "left", - "level": 1 + "level": 1, + "isTogglable": false }, "content": [ { @@ -63,7 +64,8 @@ "type": "heading", "attrs": { "textAlignment": "left", - "level": 2 + "level": 2, + "isTogglable": false }, "content": [ { @@ -86,7 +88,8 @@ "type": "heading", "attrs": { "textAlignment": "left", - "level": 3 + "level": 3, + "isTogglable": false }, "content": [ { diff --git a/tests/src/end-to-end/indentation/indentation.test.ts-snapshots/increaseIndentSingleBlock-chromium-linux.json b/tests/src/end-to-end/indentation/indentation.test.ts-snapshots/increaseIndentSingleBlock-chromium-linux.json index bc1b12c720..785cb87875 100644 --- a/tests/src/end-to-end/indentation/indentation.test.ts-snapshots/increaseIndentSingleBlock-chromium-linux.json +++ b/tests/src/end-to-end/indentation/indentation.test.ts-snapshots/increaseIndentSingleBlock-chromium-linux.json @@ -39,7 +39,8 @@ "type": "heading", "attrs": { "textAlignment": "left", - "level": 1 + "level": 1, + "isTogglable": false }, "content": [ { @@ -63,7 +64,8 @@ "type": "heading", "attrs": { "textAlignment": "left", - "level": 2 + "level": 2, + "isTogglable": false }, "content": [ { @@ -90,7 +92,8 @@ "type": "heading", "attrs": { "textAlignment": "left", - "level": 3 + "level": 3, + "isTogglable": false }, "content": [ { diff --git a/tests/src/end-to-end/indentation/indentation.test.ts-snapshots/increaseIndentSingleBlock-firefox-linux.json b/tests/src/end-to-end/indentation/indentation.test.ts-snapshots/increaseIndentSingleBlock-firefox-linux.json index bc1b12c720..785cb87875 100644 --- a/tests/src/end-to-end/indentation/indentation.test.ts-snapshots/increaseIndentSingleBlock-firefox-linux.json +++ b/tests/src/end-to-end/indentation/indentation.test.ts-snapshots/increaseIndentSingleBlock-firefox-linux.json @@ -39,7 +39,8 @@ "type": "heading", "attrs": { "textAlignment": "left", - "level": 1 + "level": 1, + "isTogglable": false }, "content": [ { @@ -63,7 +64,8 @@ "type": "heading", "attrs": { "textAlignment": "left", - "level": 2 + "level": 2, + "isTogglable": false }, "content": [ { @@ -90,7 +92,8 @@ "type": "heading", "attrs": { "textAlignment": "left", - "level": 3 + "level": 3, + "isTogglable": false }, "content": [ { diff --git a/tests/src/end-to-end/indentation/indentation.test.ts-snapshots/increaseIndentSingleBlock-webkit-linux.json b/tests/src/end-to-end/indentation/indentation.test.ts-snapshots/increaseIndentSingleBlock-webkit-linux.json index bc1b12c720..785cb87875 100644 --- a/tests/src/end-to-end/indentation/indentation.test.ts-snapshots/increaseIndentSingleBlock-webkit-linux.json +++ b/tests/src/end-to-end/indentation/indentation.test.ts-snapshots/increaseIndentSingleBlock-webkit-linux.json @@ -39,7 +39,8 @@ "type": "heading", "attrs": { "textAlignment": "left", - "level": 1 + "level": 1, + "isTogglable": false }, "content": [ { @@ -63,7 +64,8 @@ "type": "heading", "attrs": { "textAlignment": "left", - "level": 2 + "level": 2, + "isTogglable": false }, "content": [ { @@ -90,7 +92,8 @@ "type": "heading", "attrs": { "textAlignment": "left", - "level": 3 + "level": 3, + "isTogglable": false }, "content": [ { diff --git a/tests/src/end-to-end/keyboardhandlers/keyboardhandlers.test.ts-snapshots/enterPreservesMarks-json-chromium-linux.json b/tests/src/end-to-end/keyboardhandlers/keyboardhandlers.test.ts-snapshots/enterPreservesMarks-json-chromium-linux.json index 7bbe2698b0..4fe093b06f 100644 --- a/tests/src/end-to-end/keyboardhandlers/keyboardhandlers.test.ts-snapshots/enterPreservesMarks-json-chromium-linux.json +++ b/tests/src/end-to-end/keyboardhandlers/keyboardhandlers.test.ts-snapshots/enterPreservesMarks-json-chromium-linux.json @@ -16,7 +16,8 @@ "type": "heading", "attrs": { "textAlignment": "left", - "level": 1 + "level": 1, + "isTogglable": false }, "content": [ { diff --git a/tests/src/end-to-end/keyboardhandlers/keyboardhandlers.test.ts-snapshots/enterPreservesMarks-json-firefox-linux.json b/tests/src/end-to-end/keyboardhandlers/keyboardhandlers.test.ts-snapshots/enterPreservesMarks-json-firefox-linux.json index 7bbe2698b0..4fe093b06f 100644 --- a/tests/src/end-to-end/keyboardhandlers/keyboardhandlers.test.ts-snapshots/enterPreservesMarks-json-firefox-linux.json +++ b/tests/src/end-to-end/keyboardhandlers/keyboardhandlers.test.ts-snapshots/enterPreservesMarks-json-firefox-linux.json @@ -16,7 +16,8 @@ "type": "heading", "attrs": { "textAlignment": "left", - "level": 1 + "level": 1, + "isTogglable": false }, "content": [ { diff --git a/tests/src/end-to-end/keyboardhandlers/keyboardhandlers.test.ts-snapshots/enterPreservesMarks-json-webkit-linux.json b/tests/src/end-to-end/keyboardhandlers/keyboardhandlers.test.ts-snapshots/enterPreservesMarks-json-webkit-linux.json index 7bbe2698b0..4fe093b06f 100644 --- a/tests/src/end-to-end/keyboardhandlers/keyboardhandlers.test.ts-snapshots/enterPreservesMarks-json-webkit-linux.json +++ b/tests/src/end-to-end/keyboardhandlers/keyboardhandlers.test.ts-snapshots/enterPreservesMarks-json-webkit-linux.json @@ -16,7 +16,8 @@ "type": "heading", "attrs": { "textAlignment": "left", - "level": 1 + "level": 1, + "isTogglable": false }, "content": [ { diff --git a/tests/src/end-to-end/keyboardhandlers/keyboardhandlers.test.ts-snapshots/enterPreservesNestedBlocks-json-chromium-linux.json b/tests/src/end-to-end/keyboardhandlers/keyboardhandlers.test.ts-snapshots/enterPreservesNestedBlocks-json-chromium-linux.json index 54f4b071cf..0bb095bcb4 100644 --- a/tests/src/end-to-end/keyboardhandlers/keyboardhandlers.test.ts-snapshots/enterPreservesNestedBlocks-json-chromium-linux.json +++ b/tests/src/end-to-end/keyboardhandlers/keyboardhandlers.test.ts-snapshots/enterPreservesNestedBlocks-json-chromium-linux.json @@ -16,7 +16,8 @@ "type": "heading", "attrs": { "textAlignment": "left", - "level": 1 + "level": 1, + "isTogglable": false }, "content": [ { @@ -62,7 +63,8 @@ "type": "heading", "attrs": { "textAlignment": "left", - "level": 2 + "level": 2, + "isTogglable": false }, "content": [ { @@ -85,7 +87,8 @@ "type": "heading", "attrs": { "textAlignment": "left", - "level": 3 + "level": 3, + "isTogglable": false }, "content": [ { diff --git a/tests/src/end-to-end/keyboardhandlers/keyboardhandlers.test.ts-snapshots/enterPreservesNestedBlocks-json-firefox-linux.json b/tests/src/end-to-end/keyboardhandlers/keyboardhandlers.test.ts-snapshots/enterPreservesNestedBlocks-json-firefox-linux.json index 54f4b071cf..0bb095bcb4 100644 --- a/tests/src/end-to-end/keyboardhandlers/keyboardhandlers.test.ts-snapshots/enterPreservesNestedBlocks-json-firefox-linux.json +++ b/tests/src/end-to-end/keyboardhandlers/keyboardhandlers.test.ts-snapshots/enterPreservesNestedBlocks-json-firefox-linux.json @@ -16,7 +16,8 @@ "type": "heading", "attrs": { "textAlignment": "left", - "level": 1 + "level": 1, + "isTogglable": false }, "content": [ { @@ -62,7 +63,8 @@ "type": "heading", "attrs": { "textAlignment": "left", - "level": 2 + "level": 2, + "isTogglable": false }, "content": [ { @@ -85,7 +87,8 @@ "type": "heading", "attrs": { "textAlignment": "left", - "level": 3 + "level": 3, + "isTogglable": false }, "content": [ { diff --git a/tests/src/end-to-end/keyboardhandlers/keyboardhandlers.test.ts-snapshots/enterPreservesNestedBlocks-json-webkit-linux.json b/tests/src/end-to-end/keyboardhandlers/keyboardhandlers.test.ts-snapshots/enterPreservesNestedBlocks-json-webkit-linux.json index 54f4b071cf..0bb095bcb4 100644 --- a/tests/src/end-to-end/keyboardhandlers/keyboardhandlers.test.ts-snapshots/enterPreservesNestedBlocks-json-webkit-linux.json +++ b/tests/src/end-to-end/keyboardhandlers/keyboardhandlers.test.ts-snapshots/enterPreservesNestedBlocks-json-webkit-linux.json @@ -16,7 +16,8 @@ "type": "heading", "attrs": { "textAlignment": "left", - "level": 1 + "level": 1, + "isTogglable": false }, "content": [ { @@ -62,7 +63,8 @@ "type": "heading", "attrs": { "textAlignment": "left", - "level": 2 + "level": 2, + "isTogglable": false }, "content": [ { @@ -85,7 +87,8 @@ "type": "heading", "attrs": { "textAlignment": "left", - "level": 3 + "level": 3, + "isTogglable": false }, "content": [ { diff --git a/tests/src/end-to-end/keyboardhandlers/keyboardhandlers.test.ts-snapshots/enterSelectionNotEmpty-json-chromium-linux.json b/tests/src/end-to-end/keyboardhandlers/keyboardhandlers.test.ts-snapshots/enterSelectionNotEmpty-json-chromium-linux.json index fd8b56e4ae..5917a11d2f 100644 --- a/tests/src/end-to-end/keyboardhandlers/keyboardhandlers.test.ts-snapshots/enterSelectionNotEmpty-json-chromium-linux.json +++ b/tests/src/end-to-end/keyboardhandlers/keyboardhandlers.test.ts-snapshots/enterSelectionNotEmpty-json-chromium-linux.json @@ -16,7 +16,8 @@ "type": "heading", "attrs": { "textAlignment": "left", - "level": 1 + "level": 1, + "isTogglable": false }, "content": [ { diff --git a/tests/src/end-to-end/keyboardhandlers/keyboardhandlers.test.ts-snapshots/enterSelectionNotEmpty-json-firefox-linux.json b/tests/src/end-to-end/keyboardhandlers/keyboardhandlers.test.ts-snapshots/enterSelectionNotEmpty-json-firefox-linux.json index fd8b56e4ae..5917a11d2f 100644 --- a/tests/src/end-to-end/keyboardhandlers/keyboardhandlers.test.ts-snapshots/enterSelectionNotEmpty-json-firefox-linux.json +++ b/tests/src/end-to-end/keyboardhandlers/keyboardhandlers.test.ts-snapshots/enterSelectionNotEmpty-json-firefox-linux.json @@ -16,7 +16,8 @@ "type": "heading", "attrs": { "textAlignment": "left", - "level": 1 + "level": 1, + "isTogglable": false }, "content": [ { diff --git a/tests/src/end-to-end/keyboardhandlers/keyboardhandlers.test.ts-snapshots/enterSelectionNotEmpty-json-webkit-linux.json b/tests/src/end-to-end/keyboardhandlers/keyboardhandlers.test.ts-snapshots/enterSelectionNotEmpty-json-webkit-linux.json index fd8b56e4ae..5917a11d2f 100644 --- a/tests/src/end-to-end/keyboardhandlers/keyboardhandlers.test.ts-snapshots/enterSelectionNotEmpty-json-webkit-linux.json +++ b/tests/src/end-to-end/keyboardhandlers/keyboardhandlers.test.ts-snapshots/enterSelectionNotEmpty-json-webkit-linux.json @@ -16,7 +16,8 @@ "type": "heading", "attrs": { "textAlignment": "left", - "level": 1 + "level": 1, + "isTogglable": false }, "content": [ { diff --git a/tests/src/end-to-end/keyboardhandlers/keyboardhandlers.test.ts-snapshots/heading1Shortcut-json-chromium-linux.json b/tests/src/end-to-end/keyboardhandlers/keyboardhandlers.test.ts-snapshots/heading1Shortcut-json-chromium-linux.json index 230355b71c..aef4bc54a5 100644 --- a/tests/src/end-to-end/keyboardhandlers/keyboardhandlers.test.ts-snapshots/heading1Shortcut-json-chromium-linux.json +++ b/tests/src/end-to-end/keyboardhandlers/keyboardhandlers.test.ts-snapshots/heading1Shortcut-json-chromium-linux.json @@ -16,7 +16,8 @@ "type": "heading", "attrs": { "textAlignment": "left", - "level": 1 + "level": 1, + "isTogglable": false }, "content": [ { diff --git a/tests/src/end-to-end/keyboardhandlers/keyboardhandlers.test.ts-snapshots/heading1Shortcut-json-firefox-linux.json b/tests/src/end-to-end/keyboardhandlers/keyboardhandlers.test.ts-snapshots/heading1Shortcut-json-firefox-linux.json index 230355b71c..aef4bc54a5 100644 --- a/tests/src/end-to-end/keyboardhandlers/keyboardhandlers.test.ts-snapshots/heading1Shortcut-json-firefox-linux.json +++ b/tests/src/end-to-end/keyboardhandlers/keyboardhandlers.test.ts-snapshots/heading1Shortcut-json-firefox-linux.json @@ -16,7 +16,8 @@ "type": "heading", "attrs": { "textAlignment": "left", - "level": 1 + "level": 1, + "isTogglable": false }, "content": [ { diff --git a/tests/src/end-to-end/keyboardhandlers/keyboardhandlers.test.ts-snapshots/heading1Shortcut-json-webkit-linux.json b/tests/src/end-to-end/keyboardhandlers/keyboardhandlers.test.ts-snapshots/heading1Shortcut-json-webkit-linux.json index 230355b71c..aef4bc54a5 100644 --- a/tests/src/end-to-end/keyboardhandlers/keyboardhandlers.test.ts-snapshots/heading1Shortcut-json-webkit-linux.json +++ b/tests/src/end-to-end/keyboardhandlers/keyboardhandlers.test.ts-snapshots/heading1Shortcut-json-webkit-linux.json @@ -16,7 +16,8 @@ "type": "heading", "attrs": { "textAlignment": "left", - "level": 1 + "level": 1, + "isTogglable": false }, "content": [ { diff --git a/tests/src/end-to-end/keyboardhandlers/keyboardhandlers.test.ts-snapshots/heading2Shortcut-json-chromium-linux.json b/tests/src/end-to-end/keyboardhandlers/keyboardhandlers.test.ts-snapshots/heading2Shortcut-json-chromium-linux.json index 7e11edba36..3bf07c78e3 100644 --- a/tests/src/end-to-end/keyboardhandlers/keyboardhandlers.test.ts-snapshots/heading2Shortcut-json-chromium-linux.json +++ b/tests/src/end-to-end/keyboardhandlers/keyboardhandlers.test.ts-snapshots/heading2Shortcut-json-chromium-linux.json @@ -16,7 +16,8 @@ "type": "heading", "attrs": { "textAlignment": "left", - "level": 2 + "level": 2, + "isTogglable": false }, "content": [ { diff --git a/tests/src/end-to-end/keyboardhandlers/keyboardhandlers.test.ts-snapshots/heading2Shortcut-json-firefox-linux.json b/tests/src/end-to-end/keyboardhandlers/keyboardhandlers.test.ts-snapshots/heading2Shortcut-json-firefox-linux.json index 7e11edba36..3bf07c78e3 100644 --- a/tests/src/end-to-end/keyboardhandlers/keyboardhandlers.test.ts-snapshots/heading2Shortcut-json-firefox-linux.json +++ b/tests/src/end-to-end/keyboardhandlers/keyboardhandlers.test.ts-snapshots/heading2Shortcut-json-firefox-linux.json @@ -16,7 +16,8 @@ "type": "heading", "attrs": { "textAlignment": "left", - "level": 2 + "level": 2, + "isTogglable": false }, "content": [ { diff --git a/tests/src/end-to-end/keyboardhandlers/keyboardhandlers.test.ts-snapshots/heading2Shortcut-json-webkit-linux.json b/tests/src/end-to-end/keyboardhandlers/keyboardhandlers.test.ts-snapshots/heading2Shortcut-json-webkit-linux.json index 7e11edba36..3bf07c78e3 100644 --- a/tests/src/end-to-end/keyboardhandlers/keyboardhandlers.test.ts-snapshots/heading2Shortcut-json-webkit-linux.json +++ b/tests/src/end-to-end/keyboardhandlers/keyboardhandlers.test.ts-snapshots/heading2Shortcut-json-webkit-linux.json @@ -16,7 +16,8 @@ "type": "heading", "attrs": { "textAlignment": "left", - "level": 2 + "level": 2, + "isTogglable": false }, "content": [ { diff --git a/tests/src/end-to-end/keyboardhandlers/keyboardhandlers.test.ts-snapshots/heading3Shortcut-json-chromium-linux.json b/tests/src/end-to-end/keyboardhandlers/keyboardhandlers.test.ts-snapshots/heading3Shortcut-json-chromium-linux.json index 159ff7605b..c2e0d3825e 100644 --- a/tests/src/end-to-end/keyboardhandlers/keyboardhandlers.test.ts-snapshots/heading3Shortcut-json-chromium-linux.json +++ b/tests/src/end-to-end/keyboardhandlers/keyboardhandlers.test.ts-snapshots/heading3Shortcut-json-chromium-linux.json @@ -16,7 +16,8 @@ "type": "heading", "attrs": { "textAlignment": "left", - "level": 3 + "level": 3, + "isTogglable": false }, "content": [ { diff --git a/tests/src/end-to-end/keyboardhandlers/keyboardhandlers.test.ts-snapshots/heading3Shortcut-json-firefox-linux.json b/tests/src/end-to-end/keyboardhandlers/keyboardhandlers.test.ts-snapshots/heading3Shortcut-json-firefox-linux.json index 159ff7605b..c2e0d3825e 100644 --- a/tests/src/end-to-end/keyboardhandlers/keyboardhandlers.test.ts-snapshots/heading3Shortcut-json-firefox-linux.json +++ b/tests/src/end-to-end/keyboardhandlers/keyboardhandlers.test.ts-snapshots/heading3Shortcut-json-firefox-linux.json @@ -16,7 +16,8 @@ "type": "heading", "attrs": { "textAlignment": "left", - "level": 3 + "level": 3, + "isTogglable": false }, "content": [ { diff --git a/tests/src/end-to-end/keyboardhandlers/keyboardhandlers.test.ts-snapshots/heading3Shortcut-json-webkit-linux.json b/tests/src/end-to-end/keyboardhandlers/keyboardhandlers.test.ts-snapshots/heading3Shortcut-json-webkit-linux.json index 159ff7605b..c2e0d3825e 100644 --- a/tests/src/end-to-end/keyboardhandlers/keyboardhandlers.test.ts-snapshots/heading3Shortcut-json-webkit-linux.json +++ b/tests/src/end-to-end/keyboardhandlers/keyboardhandlers.test.ts-snapshots/heading3Shortcut-json-webkit-linux.json @@ -16,7 +16,8 @@ "type": "heading", "attrs": { "textAlignment": "left", - "level": 3 + "level": 3, + "isTogglable": false }, "content": [ { diff --git a/tests/src/end-to-end/shadcn/shadcn.test.ts-snapshots/shadcn-slash-menu-chromium-linux.png b/tests/src/end-to-end/shadcn/shadcn.test.ts-snapshots/shadcn-slash-menu-chromium-linux.png index 5361d238b469557b1c3afffc5b5a084bf9c216f6..0b505bdefdfbd7d08f928fee5917983ac606ab67 100644 GIT binary patch literal 58846 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

;KJ5LS^pqrHIxL+pc3xG!9;-=cj$m*ta>ahq_M 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 =0GNJ;D54@C)E4j-4k59k?yPn7!j zW@8OJ9P^a%k6U)pMH}YtoRT3BYh}>N?rLokC+mKUb3d^QB<7!S0?YWVpht0d!i|6S#62E6}Uj;$7 z9UF2KLP<$!c$g+PHxoJ1Wjp^;OG#x*iz#%bHti>rD6%_fv8Z2gZh^tYQf%RQ5hkj@ zb3eU(f%7S{&e&N=eI-xj8p2dmUN%p!$5t84!KQUDZR9RnZ3z@GJ&83}E>n-yld8X^ z3@FJj7X!-Y{wb3vK~{dKCsfJW%`9nIG{725S#TG06sU&<6~lc7)?aC_qN+7CZ)E2} zt-x7{wq_c0KDj)sINXyjJe9}&d2pGptPVd=>27I9>9mhmy*rP+K1%T#T%X^myqmu=(+ zp{J+jFDrGP$RjiCjdMG6&oe7tnqaKCQ<;&#tGQ+*!Ur9*bJ>tdo4aK)CPTOI z8vcsAxuPBgvwQ{+%FELauV21s(#AdjV(LoO7ojSKa0T+ZK`STe$;l0CNRO%K=zfCp z(7x>9Z?2+cNeM$A%+qkCS?HWSs!DQ(UDyr80AXr)y?XtKgaplfKK&_|@W0J-pm3bN z9~@BLezmEwv~>06;mNDzdZUqqhG#2?PfQ-}Y}j2`<8&nPnX*rp8Rz|*CT%8CKuvvW z*MGJ8GT!ABryOz4Db_az-P2w21{XBZ|Qi(g}N?O(Yy zX{TfSf_|PbZ?2>A(r4dQyL?L?{ORMW&fCS?&qxqPNv@I^{7W|hy7U)tfNrssDw$!T zr>7r$T207;KG_bRB*0(u!3BLTnZSJ?P5vTv5I;KRO3oVw-A4f8_`&)ITdVJ8}A5xNce%?7!vY{ToTMoPC)^G^YjMnW3coY7=HvX{JNlnZrK3gd9C}=Yd3!R3I8z(-)-?=-EP+(KF8bl z7OVcI!(Uv7l^O118_37k1^xa9{{1@s`_@A5H|yFa$Py<1*W@C^)vf_MEehW%_4cE8YQF48Riq(X~?- zPM_sd=}5J%>)gk{&?3;#XtDi`-1BMdk8W&Q4d#2g`njxgN@xNA8==gh diff --git a/tests/src/end-to-end/shadcn/shadcn.test.ts-snapshots/shadcn-slash-menu-firefox-linux.png b/tests/src/end-to-end/shadcn/shadcn.test.ts-snapshots/shadcn-slash-menu-firefox-linux.png index 6ae912b64751db2376fd585fa2f86c6dbdcd42ca..159c55987e62cdf5658fb36be6e720650ef1a536 100644 GIT binary patch delta 69821 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�jnYJ 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�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%0ACG(Qx!rpozdw1HG0S)PeBQ6u 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 delta 63951 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 diff --git a/tests/src/end-to-end/shadcn/shadcn.test.ts-snapshots/shadcn-slash-menu-webkit-linux.png b/tests/src/end-to-end/shadcn/shadcn.test.ts-snapshots/shadcn-slash-menu-webkit-linux.png index a9024820c18af2b5fca58767f8b99b948a3543a9..ae4505b41f54720dd34a0c2565c9d498a21266c2 100644 GIT binary patch delta 143094 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 z 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 Y%euJIQn4LT0}9Mt`8yf6AN>1&0gn3go&W#< delta 128371 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%0D5tbLs7cZ2VC_?In(QnuzV??91I(So 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 z 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 E0a=3!>i_@% literal 51986 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

$bG@-UCcz6Z6>{$14+3C0}Dhd#P9UaSb+3B7+ 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­!6QK5T7+jer&J^RR`G3%H_)Yi9IPLp`mdZwL(d5 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

~hIEqJi?Z;N;qPkiEnC=cdlv`s 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 literal 75559 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 diff --git a/tests/src/end-to-end/theming/theming.test.ts-snapshots/dark-slash-menu-webkit-linux.png b/tests/src/end-to-end/theming/theming.test.ts-snapshots/dark-slash-menu-webkit-linux.png index af9d51afd3aeb7bf1537fc0c531c88ca5902771d..aff2b296f3dafbd063e85c819d279cbb31352451 100644 GIT binary patch delta 127676 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 KBW|PlU;hP2md8;5 delta 113420 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

`|)k?q6N2v0m53 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 Date: Thu, 12 Jun 2025 11:16:18 +0200 Subject: [PATCH 19/34] fix tests --- ...block_1_ec2702feb0163c2eea453ebbb35e8cb0.json} | 4 ++-- ...(end)_1_7547123227251b645c9897f903e0a332.json} | 4 ++-- ... doc)_1_07f373ebdd9c563dd024e0593612c388.json} | 4 ++-- ...(end)_1_21c422d948aff3b4031ecdffe277fd5e.json} | 4 ++-- ...tart)_1_30627de1de8d2aa1a3a2966a1e038f94.json} | 4 ++-- ...block_1_6bfc033f2d5eb6fcf39ce9aa29fa02c3.json} | 4 ++-- ...(end)_1_f54209a0498441f24a0460267e6cfdf4.json} | 4 ++-- ... doc)_1_c63578d88c96a0e47bf5049bbf58d7f5.json} | 4 ++-- ...(end)_1_d0bdd09006f472b4f0207e09df7777c0.json} | 4 ++-- ...tart)_1_fbddf6d65bb6643003c54b0caa83328f.json} | 4 ++-- ...graph_1_6d103103a8429b4dc2b692a2e0f2e87c.json} | 4 ++-- ...ction_1_ca185676c21707be2b3524b104786716.json} | 4 ++-- ...agraph_1_211d1a76157b3968b2ecf2431ed3568f.json | 15 --------------- ...agraph_1_ac819658049a539464409126d78b28b9.json | 15 +++++++++++++++ ...ection_1_8092e1583e60700c3cff810383dbf5ad.json | 15 +++++++++++++++ ...ection_1_d7907adc86da5742363bfc4422e490e6.json | 15 --------------- ...block_1_8d44ebaea2f98ebce7ee55018566d58f.json} | 4 ++-- ...block_1_36655a38a1c62948339f0d02946eb12f.json} | 4 ++-- ...tting_1_f664ec2dfaf4e2eced9ec208120e58f5.json} | 4 ++-- ... mark_1_7acde107f819f02c23027cf695038987.json} | 4 ++-- ... link_1_129497a3cfedbeb2e6c0f7393907dbed.json} | 4 ++-- ...ntent_1_cfc8b8d4d737d81a277c54e9f233e36d.json} | 4 ++-- ...ntent_1_a5d76e4c49a826b8ea557b145d9ae031.json} | 4 ++-- ...ntion_1_e3413734761ef09ecdaa4405eebc2270.json} | 4 ++-- ...pdate_1_3a7c8c9226849f9944bd292913f98378.json} | 4 ++-- ... mark_1_a2c73491035a2dd505256c43cb2cb466.json} | 4 ++-- ...ntion_1_fbd394f02b4ae12bd97cf7fcc16b0617.json} | 4 ++-- ...ntent_1_c0b98fb14b676e013dac242e3b780010.json} | 4 ++-- ... prop_1_f6389b6d035ba33efd700c280c71e8b0.json} | 4 ++-- ... text_1_ff2a0f907f3058aba57bff972b122139.json} | 4 ++-- ...raph)_1_95394155502fb86c32c6eb86165bc783.json} | 4 ++-- ...word)_1_3440feeb72fe9252f575ed2caaed88ca.json} | 4 ++-- ...ction_1_a1c443203ee18f4ec6d71349d0c57311.json} | 4 ++-- ... list_1_641282d2e6c4ebf728bf3d68a286275b.json} | 4 ++-- ...ntent_1_6e4f57cf3fcf574fce4674028b82932a.json} | 4 ++-- ... prop_1_8f2af0a60aa814f37e730a6c820f86ba.json} | 4 ++-- ...ntent_1_186fdd764189ded0af0303b0d412aa20.json} | 4 ++-- ... type_1_d3172a9b36406fd1f8f62a2e92cbb161.json} | 4 ++-- ...atting_1_465acdd71f0f7d1debc94d768f6b1a2d.json | 15 --------------- ...atting_1_7d12dc86d97bceb7672af8f644a8e79e.json | 15 +++++++++++++++ ... mark_1_4a9889fbd54ce235fcecdfb0a530431d.json} | 4 ++-- ... link_1_f332a26d1db62c0a9cb51445c281a2b7.json} | 4 ++-- ...ntent_1_10ac370799c69df6f3d041eedb3d2472.json} | 4 ++-- ...ontent_1_096bf0c83a98b9245c4c2a0d4e7a8c2e.json | 15 +++++++++++++++ ...ontent_1_63585984d1d9b7291dec2b0607f94922.json | 15 --------------- ...ention_1_0f7fbf9a209e76a3ff44110a5fbe3bed.json | 15 --------------- ...ention_1_5f5ce5453abb4636f25ff782110d7226.json | 15 +++++++++++++++ ...pdate_1_8542a7a8e4efe3ccde6b3adc4c77b132.json} | 4 ++-- ...e mark_1_9dab505f307954501700ec020f6bd7c3.json | 15 --------------- ...e mark_1_f0ec6a3da54723cb333b7c7ca11c6496.json | 15 +++++++++++++++ ...ention_1_17dc3d8c194646451e873fad764cf266.json | 15 +++++++++++++++ ...ention_1_9f350039f2cb03f51f6bbe34ba4c044a.json | 15 --------------- ...ontent_1_227b2d39791a0ef10449233995f36b2f.json | 15 --------------- ...ontent_1_54cde846a56747d40bf32ef3e660bc18.json | 15 +++++++++++++++ ... prop_1_3cd1b65f227c6e8946230899bd334990.json} | 4 ++-- ... text_1_8fd61178795235d2f7c3a46ed5c1a1fc.json} | 4 ++-- ...raph)_1_68428df2323f980073c56959b5e5592a.json} | 4 ++-- ...word)_1_fcea684e1046247de9494412e5098d53.json} | 4 ++-- ...ction_1_ac70d79d18996d3e08a6559885013c70.json} | 4 ++-- ...o list_1_92a38569e8e9c873af8553e1607a7ba7.json | 15 +++++++++++++++ ...o list_1_f8fd91cad88cfec6db2a906b564d39d3.json | 15 --------------- ...ontent_1_43d5973147f933116f10f4eb6d3397e6.json | 15 --------------- ...ontent_1_a4ddde00c3875d2cf2396b340029cbdd.json | 15 +++++++++++++++ ... prop_1_ae61cf288535fdbe1bbb5dfe30414566.json} | 4 ++-- ...ntent_1_afc4e7b2974a37fa22c2e033f00945bf.json} | 4 ++-- ... type_1_2ae2921e287bba5542cd135b44ba405b.json} | 4 ++-- 66 files changed, 242 insertions(+), 242 deletions(-) rename packages/xl-ai/src/api/formats/json/__snapshots__/json.test.ts/Add/__msw_snapshots__/openai.chat/gpt-4o-2024-08-06 (non-streaming)/{Add heading (h1) and code block_1_de090d20b11b4bb2d5f1e55b4669dd05.json => Add heading (h1) and code block_1_ec2702feb0163c2eea453ebbb35e8cb0.json} (76%) rename packages/xl-ai/src/api/formats/json/__snapshots__/json.test.ts/Add/__msw_snapshots__/openai.chat/gpt-4o-2024-08-06 (non-streaming)/{add a list (end)_1_6170e1a128bc5fcf5bdbd602a65f68f5.json => add a list (end)_1_7547123227251b645c9897f903e0a332.json} (77%) rename packages/xl-ai/src/api/formats/json/__snapshots__/json.test.ts/Add/__msw_snapshots__/openai.chat/gpt-4o-2024-08-06 (non-streaming)/{add a new paragraph (empty doc)_1_6db4dac44191debdf051e91dc24b1050.json => add a new paragraph (empty doc)_1_07f373ebdd9c563dd024e0593612c388.json} (75%) rename packages/xl-ai/src/api/formats/json/__snapshots__/json.test.ts/Add/__msw_snapshots__/openai.chat/gpt-4o-2024-08-06 (non-streaming)/{add a new paragraph (end)_1_da7cf102da03c6720d1622ee775fd9e3.json => add a new paragraph (end)_1_21c422d948aff3b4031ecdffe277fd5e.json} (73%) rename packages/xl-ai/src/api/formats/json/__snapshots__/json.test.ts/Add/__msw_snapshots__/openai.chat/gpt-4o-2024-08-06 (non-streaming)/{add a new paragraph (start)_1_bf855370e65f4e83c5b0c4c60c1fcaf7.json => add a new paragraph (start)_1_30627de1de8d2aa1a3a2966a1e038f94.json} (72%) rename packages/xl-ai/src/api/formats/json/__snapshots__/json.test.ts/Add/__msw_snapshots__/openai.chat/gpt-4o-2024-08-06 (streaming)/{Add heading (h1) and code block_1_c767e4bdf809979c479b2633c1dff0be.json => Add heading (h1) and code block_1_6bfc033f2d5eb6fcf39ce9aa29fa02c3.json} (62%) rename packages/xl-ai/src/api/formats/json/__snapshots__/json.test.ts/Add/__msw_snapshots__/openai.chat/gpt-4o-2024-08-06 (streaming)/{add a list (end)_1_30f2ad3b3cacd97a9e1b913a25dd1ecb.json => add a list (end)_1_f54209a0498441f24a0460267e6cfdf4.json} (64%) rename packages/xl-ai/src/api/formats/json/__snapshots__/json.test.ts/Add/__msw_snapshots__/openai.chat/gpt-4o-2024-08-06 (streaming)/{add a new paragraph (empty doc)_1_a23033a325ecab1bc26b6551fffc10b8.json => add a new paragraph (empty doc)_1_c63578d88c96a0e47bf5049bbf58d7f5.json} (65%) rename packages/xl-ai/src/api/formats/json/__snapshots__/json.test.ts/Add/__msw_snapshots__/openai.chat/gpt-4o-2024-08-06 (streaming)/{add a new paragraph (end)_1_21c5b987634e5a995d462e25540b219b.json => add a new paragraph (end)_1_d0bdd09006f472b4f0207e09df7777c0.json} (66%) rename packages/xl-ai/src/api/formats/json/__snapshots__/json.test.ts/Add/__msw_snapshots__/openai.chat/gpt-4o-2024-08-06 (streaming)/{add a new paragraph (start)_1_c0cf824d11f88bc4d15116d0d6d2e566.json => add a new paragraph (start)_1_fbddf6d65bb6643003c54b0caa83328f.json} (65%) rename packages/xl-ai/src/api/formats/json/__snapshots__/json.test.ts/Combined/__msw_snapshots__/openai.chat/gpt-4o-2024-08-06 (non-streaming)/{add and update paragraph_1_332e73f6f9fae1e63bee6e8fa2e6bace.json => add and update paragraph_1_6d103103a8429b4dc2b692a2e0f2e87c.json} (79%) rename packages/xl-ai/src/api/formats/json/__snapshots__/json.test.ts/Combined/__msw_snapshots__/openai.chat/gpt-4o-2024-08-06 (non-streaming)/{add paragraph and update selection_1_caeb25fbcd6743ad509ab18526f09180.json => add paragraph and update selection_1_ca185676c21707be2b3524b104786716.json} (79%) delete mode 100644 packages/xl-ai/src/api/formats/json/__snapshots__/json.test.ts/Combined/__msw_snapshots__/openai.chat/gpt-4o-2024-08-06 (streaming)/add and update paragraph_1_211d1a76157b3968b2ecf2431ed3568f.json create mode 100644 packages/xl-ai/src/api/formats/json/__snapshots__/json.test.ts/Combined/__msw_snapshots__/openai.chat/gpt-4o-2024-08-06 (streaming)/add and update paragraph_1_ac819658049a539464409126d78b28b9.json create mode 100644 packages/xl-ai/src/api/formats/json/__snapshots__/json.test.ts/Combined/__msw_snapshots__/openai.chat/gpt-4o-2024-08-06 (streaming)/add paragraph and update selection_1_8092e1583e60700c3cff810383dbf5ad.json delete mode 100644 packages/xl-ai/src/api/formats/json/__snapshots__/json.test.ts/Combined/__msw_snapshots__/openai.chat/gpt-4o-2024-08-06 (streaming)/add paragraph and update selection_1_d7907adc86da5742363bfc4422e490e6.json rename packages/xl-ai/src/api/formats/json/__snapshots__/json.test.ts/Delete/__msw_snapshots__/openai.chat/gpt-4o-2024-08-06 (non-streaming)/{delete first block_1_6dfa5f6bda6403c2b113e80050926615.json => delete first block_1_8d44ebaea2f98ebce7ee55018566d58f.json} (78%) rename packages/xl-ai/src/api/formats/json/__snapshots__/json.test.ts/Delete/__msw_snapshots__/openai.chat/gpt-4o-2024-08-06 (streaming)/{delete first block_1_b617aa877adc416fcd68a26dccc50250.json => delete first block_1_36655a38a1c62948339f0d02946eb12f.json} (64%) rename packages/xl-ai/src/api/formats/json/__snapshots__/json.test.ts/Update/__msw_snapshots__/openai.chat/gpt-4o-2024-08-06 (non-streaming)/{clear block formatting_1_5dc94725d66fef1cf55ecdd13d6215db.json => clear block formatting_1_f664ec2dfaf4e2eced9ec208120e58f5.json} (72%) rename packages/xl-ai/src/api/formats/json/__snapshots__/json.test.ts/Update/__msw_snapshots__/openai.chat/gpt-4o-2024-08-06 (non-streaming)/{drop mark and link and change text within mark_1_4940825808a5cebfe1112339d0e46b02.json => drop mark and link and change text within mark_1_7acde107f819f02c23027cf695038987.json} (79%) rename packages/xl-ai/src/api/formats/json/__snapshots__/json.test.ts/Update/__msw_snapshots__/openai.chat/gpt-4o-2024-08-06 (non-streaming)/{drop mark and link_1_95883a1d5573bc4bd59c964e8a9612d9.json => drop mark and link_1_129497a3cfedbeb2e6c0f7393907dbed.json} (79%) rename packages/xl-ai/src/api/formats/json/__snapshots__/json.test.ts/Update/__msw_snapshots__/openai.chat/gpt-4o-2024-08-06 (non-streaming)/{modify nested content_1_2469da70e564277ce14ceb2997fa1ee6.json => modify nested content_1_cfc8b8d4d737d81a277c54e9f233e36d.json} (73%) rename packages/xl-ai/src/api/formats/json/__snapshots__/json.test.ts/Update/__msw_snapshots__/openai.chat/gpt-4o-2024-08-06 (non-streaming)/{modify parent content_1_664184e2b9e2ab2b645c796cf2b5bfbc.json => modify parent content_1_a5d76e4c49a826b8ea557b145d9ae031.json} (67%) rename packages/xl-ai/src/api/formats/json/__snapshots__/json.test.ts/Update/__msw_snapshots__/openai.chat/gpt-4o-2024-08-06 (non-streaming)/{plain source block, add mention_1_da70f6a7005c5a2cd1c59c6aec2e00d1.json => plain source block, add mention_1_e3413734761ef09ecdaa4405eebc2270.json} (76%) rename packages/xl-ai/src/api/formats/json/__snapshots__/json.test.ts/Update/__msw_snapshots__/openai.chat/gpt-4o-2024-08-06 (non-streaming)/{standard update_1_33f94825f7b576fd6127f7d9bd7fce26.json => standard update_1_3a7c8c9226849f9944bd292913f98378.json} (78%) rename packages/xl-ai/src/api/formats/json/__snapshots__/json.test.ts/Update/__msw_snapshots__/openai.chat/gpt-4o-2024-08-06 (non-streaming)/{styles + ic in source block, remove mark_1_c150e47a9b82794fb8a35afdc01cecda.json => styles + ic in source block, remove mark_1_a2c73491035a2dd505256c43cb2cb466.json} (68%) rename packages/xl-ai/src/api/formats/json/__snapshots__/json.test.ts/Update/__msw_snapshots__/openai.chat/gpt-4o-2024-08-06 (non-streaming)/{styles + ic in source block, remove mention_1_809be514a611ead86c2544d7bc18e20c.json => styles + ic in source block, remove mention_1_fbd394f02b4ae12bd97cf7fcc16b0617.json} (80%) rename packages/xl-ai/src/api/formats/json/__snapshots__/json.test.ts/Update/__msw_snapshots__/openai.chat/gpt-4o-2024-08-06 (non-streaming)/{styles + ic in source block, replace content_1_01bf45b503cc910c44eb50e8871fa8c4.json => styles + ic in source block, replace content_1_c0b98fb14b676e013dac242e3b780010.json} (75%) rename packages/xl-ai/src/api/formats/json/__snapshots__/json.test.ts/Update/__msw_snapshots__/openai.chat/gpt-4o-2024-08-06 (non-streaming)/{styles + ic in source block, update mention prop_1_31953da370a6a555a754b2de179700e3.json => styles + ic in source block, update mention prop_1_f6389b6d035ba33efd700c280c71e8b0.json} (68%) rename packages/xl-ai/src/api/formats/json/__snapshots__/json.test.ts/Update/__msw_snapshots__/openai.chat/gpt-4o-2024-08-06 (non-streaming)/{styles + ic in source block, update text_1_a9197bf847d922be5a027e3eef814938.json => styles + ic in source block, update text_1_ff2a0f907f3058aba57bff972b122139.json} (77%) rename packages/xl-ai/src/api/formats/json/__snapshots__/json.test.ts/Update/__msw_snapshots__/openai.chat/gpt-4o-2024-08-06 (non-streaming)/{styles + ic in target block, add mark (paragraph)_1_283d64ac64a0475a920cd735f74c7c46.json => styles + ic in target block, add mark (paragraph)_1_95394155502fb86c32c6eb86165bc783.json} (75%) rename packages/xl-ai/src/api/formats/json/__snapshots__/json.test.ts/Update/__msw_snapshots__/openai.chat/gpt-4o-2024-08-06 (non-streaming)/{styles + ic in target block, add mark (word)_1_104a77db5c366a62c8a9f28f5591e4d3.json => styles + ic in target block, add mark (word)_1_3440feeb72fe9252f575ed2caaed88ca.json} (75%) rename packages/xl-ai/src/api/formats/json/__snapshots__/json.test.ts/Update/__msw_snapshots__/openai.chat/gpt-4o-2024-08-06 (non-streaming)/{translate selection_1_e06a86826098274cfb35046f8f5f67a5.json => translate selection_1_a1c443203ee18f4ec6d71349d0c57311.json} (77%) rename packages/xl-ai/src/api/formats/json/__snapshots__/json.test.ts/Update/__msw_snapshots__/openai.chat/gpt-4o-2024-08-06 (non-streaming)/{turn paragraphs into list_1_c704dd8060467f285e008fcfa10bd3b9.json => turn paragraphs into list_1_641282d2e6c4ebf728bf3d68a286275b.json} (74%) rename packages/xl-ai/src/api/formats/json/__snapshots__/json.test.ts/Update/__msw_snapshots__/openai.chat/gpt-4o-2024-08-06 (non-streaming)/{update block prop and content_1_cad8678d1ad078c86688dfc8856de388.json => update block prop and content_1_6e4f57cf3fcf574fce4674028b82932a.json} (76%) rename packages/xl-ai/src/api/formats/json/__snapshots__/json.test.ts/Update/__msw_snapshots__/openai.chat/gpt-4o-2024-08-06 (non-streaming)/{update block prop_1_3096bcb834d46b65acda47ac696971bc.json => update block prop_1_8f2af0a60aa814f37e730a6c820f86ba.json} (78%) rename packages/xl-ai/src/api/formats/json/__snapshots__/json.test.ts/Update/__msw_snapshots__/openai.chat/gpt-4o-2024-08-06 (non-streaming)/{update block type and content_1_aff5d525223cbc4304faac012ac837bd.json => update block type and content_1_186fdd764189ded0af0303b0d412aa20.json} (80%) rename packages/xl-ai/src/api/formats/json/__snapshots__/json.test.ts/Update/__msw_snapshots__/openai.chat/gpt-4o-2024-08-06 (non-streaming)/{update block type_1_0160577344039e4ee9505b5b766bfc1f.json => update block type_1_d3172a9b36406fd1f8f62a2e92cbb161.json} (79%) delete mode 100644 packages/xl-ai/src/api/formats/json/__snapshots__/json.test.ts/Update/__msw_snapshots__/openai.chat/gpt-4o-2024-08-06 (streaming)/clear block formatting_1_465acdd71f0f7d1debc94d768f6b1a2d.json create mode 100644 packages/xl-ai/src/api/formats/json/__snapshots__/json.test.ts/Update/__msw_snapshots__/openai.chat/gpt-4o-2024-08-06 (streaming)/clear block formatting_1_7d12dc86d97bceb7672af8f644a8e79e.json rename packages/xl-ai/src/api/formats/json/__snapshots__/json.test.ts/Update/__msw_snapshots__/openai.chat/gpt-4o-2024-08-06 (streaming)/{drop mark and link and change text within mark_1_18dd7d90cf25ffaa7f09dca505490e61.json => drop mark and link and change text within mark_1_4a9889fbd54ce235fcecdfb0a530431d.json} (53%) rename packages/xl-ai/src/api/formats/json/__snapshots__/json.test.ts/Update/__msw_snapshots__/openai.chat/gpt-4o-2024-08-06 (streaming)/{drop mark and link_1_5e7d41c01c74c1666bc6651c5a66b3c9.json => drop mark and link_1_f332a26d1db62c0a9cb51445c281a2b7.json} (54%) rename packages/xl-ai/src/api/formats/json/__snapshots__/json.test.ts/Update/__msw_snapshots__/openai.chat/gpt-4o-2024-08-06 (streaming)/{modify nested content_1_8fdf78b590467ff53ebd509818c3413f.json => modify nested content_1_10ac370799c69df6f3d041eedb3d2472.json} (52%) create mode 100644 packages/xl-ai/src/api/formats/json/__snapshots__/json.test.ts/Update/__msw_snapshots__/openai.chat/gpt-4o-2024-08-06 (streaming)/modify parent content_1_096bf0c83a98b9245c4c2a0d4e7a8c2e.json delete mode 100644 packages/xl-ai/src/api/formats/json/__snapshots__/json.test.ts/Update/__msw_snapshots__/openai.chat/gpt-4o-2024-08-06 (streaming)/modify parent content_1_63585984d1d9b7291dec2b0607f94922.json delete mode 100644 packages/xl-ai/src/api/formats/json/__snapshots__/json.test.ts/Update/__msw_snapshots__/openai.chat/gpt-4o-2024-08-06 (streaming)/plain source block, add mention_1_0f7fbf9a209e76a3ff44110a5fbe3bed.json create mode 100644 packages/xl-ai/src/api/formats/json/__snapshots__/json.test.ts/Update/__msw_snapshots__/openai.chat/gpt-4o-2024-08-06 (streaming)/plain source block, add mention_1_5f5ce5453abb4636f25ff782110d7226.json rename packages/xl-ai/src/api/formats/json/__snapshots__/json.test.ts/Update/__msw_snapshots__/openai.chat/gpt-4o-2024-08-06 (streaming)/{standard update_1_fbc43c15ba5fa3944ee25a2a9497d1cb.json => standard update_1_8542a7a8e4efe3ccde6b3adc4c77b132.json} (54%) delete mode 100644 packages/xl-ai/src/api/formats/json/__snapshots__/json.test.ts/Update/__msw_snapshots__/openai.chat/gpt-4o-2024-08-06 (streaming)/styles + ic in source block, remove mark_1_9dab505f307954501700ec020f6bd7c3.json create mode 100644 packages/xl-ai/src/api/formats/json/__snapshots__/json.test.ts/Update/__msw_snapshots__/openai.chat/gpt-4o-2024-08-06 (streaming)/styles + ic in source block, remove mark_1_f0ec6a3da54723cb333b7c7ca11c6496.json create mode 100644 packages/xl-ai/src/api/formats/json/__snapshots__/json.test.ts/Update/__msw_snapshots__/openai.chat/gpt-4o-2024-08-06 (streaming)/styles + ic in source block, remove mention_1_17dc3d8c194646451e873fad764cf266.json delete mode 100644 packages/xl-ai/src/api/formats/json/__snapshots__/json.test.ts/Update/__msw_snapshots__/openai.chat/gpt-4o-2024-08-06 (streaming)/styles + ic in source block, remove mention_1_9f350039f2cb03f51f6bbe34ba4c044a.json delete mode 100644 packages/xl-ai/src/api/formats/json/__snapshots__/json.test.ts/Update/__msw_snapshots__/openai.chat/gpt-4o-2024-08-06 (streaming)/styles + ic in source block, replace content_1_227b2d39791a0ef10449233995f36b2f.json create mode 100644 packages/xl-ai/src/api/formats/json/__snapshots__/json.test.ts/Update/__msw_snapshots__/openai.chat/gpt-4o-2024-08-06 (streaming)/styles + ic in source block, replace content_1_54cde846a56747d40bf32ef3e660bc18.json rename packages/xl-ai/src/api/formats/json/__snapshots__/json.test.ts/Update/__msw_snapshots__/openai.chat/gpt-4o-2024-08-06 (streaming)/{styles + ic in source block, update mention prop_1_841b722aad575282b313ceb633a220e6.json => styles + ic in source block, update mention prop_1_3cd1b65f227c6e8946230899bd334990.json} (62%) rename packages/xl-ai/src/api/formats/json/__snapshots__/json.test.ts/Update/__msw_snapshots__/openai.chat/gpt-4o-2024-08-06 (streaming)/{styles + ic in source block, update text_1_bdf5f405ea3b8d9aadf31a40b1d32e78.json => styles + ic in source block, update text_1_8fd61178795235d2f7c3a46ed5c1a1fc.json} (62%) rename packages/xl-ai/src/api/formats/json/__snapshots__/json.test.ts/Update/__msw_snapshots__/openai.chat/gpt-4o-2024-08-06 (streaming)/{styles + ic in target block, add mark (paragraph)_1_3b0a65bb924ff954776356237aaf040b.json => styles + ic in target block, add mark (paragraph)_1_68428df2323f980073c56959b5e5592a.json} (66%) rename packages/xl-ai/src/api/formats/json/__snapshots__/json.test.ts/Update/__msw_snapshots__/openai.chat/gpt-4o-2024-08-06 (streaming)/{styles + ic in target block, add mark (word)_1_8d6ac75d2fe03ed372dc4dfb15b98743.json => styles + ic in target block, add mark (word)_1_fcea684e1046247de9494412e5098d53.json} (51%) rename packages/xl-ai/src/api/formats/json/__snapshots__/json.test.ts/Update/__msw_snapshots__/openai.chat/gpt-4o-2024-08-06 (streaming)/{translate selection_1_3f8ef537734ef9b7d2142c49bde8cbdd.json => translate selection_1_ac70d79d18996d3e08a6559885013c70.json} (54%) create mode 100644 packages/xl-ai/src/api/formats/json/__snapshots__/json.test.ts/Update/__msw_snapshots__/openai.chat/gpt-4o-2024-08-06 (streaming)/turn paragraphs into list_1_92a38569e8e9c873af8553e1607a7ba7.json delete mode 100644 packages/xl-ai/src/api/formats/json/__snapshots__/json.test.ts/Update/__msw_snapshots__/openai.chat/gpt-4o-2024-08-06 (streaming)/turn paragraphs into list_1_f8fd91cad88cfec6db2a906b564d39d3.json delete mode 100644 packages/xl-ai/src/api/formats/json/__snapshots__/json.test.ts/Update/__msw_snapshots__/openai.chat/gpt-4o-2024-08-06 (streaming)/update block prop and content_1_43d5973147f933116f10f4eb6d3397e6.json create mode 100644 packages/xl-ai/src/api/formats/json/__snapshots__/json.test.ts/Update/__msw_snapshots__/openai.chat/gpt-4o-2024-08-06 (streaming)/update block prop and content_1_a4ddde00c3875d2cf2396b340029cbdd.json rename packages/xl-ai/src/api/formats/json/__snapshots__/json.test.ts/Update/__msw_snapshots__/openai.chat/gpt-4o-2024-08-06 (streaming)/{update block prop_1_ee851cec429cc29d5405179c1adb8b21.json => update block prop_1_ae61cf288535fdbe1bbb5dfe30414566.json} (51%) rename packages/xl-ai/src/api/formats/json/__snapshots__/json.test.ts/Update/__msw_snapshots__/openai.chat/gpt-4o-2024-08-06 (streaming)/{update block type and content_1_5a7248b251deacea1a5b64dadf15ec95.json => update block type and content_1_afc4e7b2974a37fa22c2e033f00945bf.json} (53%) rename packages/xl-ai/src/api/formats/json/__snapshots__/json.test.ts/Update/__msw_snapshots__/openai.chat/gpt-4o-2024-08-06 (streaming)/{update block type_1_b6f799a650384ed95bc3120ab70452bf.json => update block type_1_2ae2921e287bba5542cd135b44ba405b.json} (52%) diff --git a/packages/xl-ai/src/api/formats/json/__snapshots__/json.test.ts/Add/__msw_snapshots__/openai.chat/gpt-4o-2024-08-06 (non-streaming)/Add heading (h1) and code block_1_de090d20b11b4bb2d5f1e55b4669dd05.json b/packages/xl-ai/src/api/formats/json/__snapshots__/json.test.ts/Add/__msw_snapshots__/openai.chat/gpt-4o-2024-08-06 (non-streaming)/Add heading (h1) and code block_1_ec2702feb0163c2eea453ebbb35e8cb0.json similarity index 76% rename from packages/xl-ai/src/api/formats/json/__snapshots__/json.test.ts/Add/__msw_snapshots__/openai.chat/gpt-4o-2024-08-06 (non-streaming)/Add heading (h1) and code block_1_de090d20b11b4bb2d5f1e55b4669dd05.json rename to packages/xl-ai/src/api/formats/json/__snapshots__/json.test.ts/Add/__msw_snapshots__/openai.chat/gpt-4o-2024-08-06 (non-streaming)/Add heading (h1) and code block_1_ec2702feb0163c2eea453ebbb35e8cb0.json index 1d846c9329..8d1e46c696 100644 --- a/packages/xl-ai/src/api/formats/json/__snapshots__/json.test.ts/Add/__msw_snapshots__/openai.chat/gpt-4o-2024-08-06 (non-streaming)/Add heading (h1) and code block_1_de090d20b11b4bb2d5f1e55b4669dd05.json +++ b/packages/xl-ai/src/api/formats/json/__snapshots__/json.test.ts/Add/__msw_snapshots__/openai.chat/gpt-4o-2024-08-06 (non-streaming)/Add heading (h1) and code block_1_ec2702feb0163c2eea453ebbb35e8cb0.json @@ -2,14 +2,14 @@ "request": { "method": "POST", "url": "https://localhost:3000/ai?provider=openai&url=https%3A%2F%2Fapi.openai.com%2Fv1%2Fchat%2Fcompletions", - "body": "{\"model\":\"gpt-4o-2024-08-06\",\"temperature\":0,\"messages\":[{\"role\":\"system\",\"content\":\"You're manipulating a text document using JSON blocks. \\n Make sure to follow the json schema provided. When referencing ids they MUST be EXACTLY the same (including the trailing $). \\n This is the document as an array of JSON blocks (the cursor is BETWEEN two blocks as indicated by cursor: true):\"},{\"role\":\"system\",\"content\":\"[{\\\"id\\\":\\\"ref1$\\\",\\\"block\\\":{\\\"id\\\":\\\"ref1\\\",\\\"type\\\":\\\"paragraph\\\",\\\"props\\\":{\\\"textColor\\\":\\\"default\\\",\\\"backgroundColor\\\":\\\"default\\\",\\\"textAlignment\\\":\\\"left\\\"},\\\"content\\\":[{\\\"type\\\":\\\"text\\\",\\\"text\\\":\\\"Hello, world!\\\",\\\"styles\\\":{}}]}},{\\\"cursor\\\":true},{\\\"id\\\":\\\"ref2$\\\",\\\"block\\\":{\\\"id\\\":\\\"ref2\\\",\\\"type\\\":\\\"paragraph\\\",\\\"props\\\":{\\\"textColor\\\":\\\"default\\\",\\\"backgroundColor\\\":\\\"default\\\",\\\"textAlignment\\\":\\\"left\\\"},\\\"content\\\":[{\\\"type\\\":\\\"text\\\",\\\"text\\\":\\\"How are you?\\\",\\\"styles\\\":{}}]}}]\"},{\"role\":\"system\",\"content\":\"The user asks you to do the following:\"},{\"role\":\"user\",\"content\":\"at the end of doc, add a h1 heading `Code` and a javascript code block with `console.log('hello world');`\"},{\"role\":\"system\",\"content\":\"First, determine what part of the document the user is talking about. You SHOULD probably take cursor info into account if needed.\\n EXAMPLE: if user says \\\"below\\\" (without pointing to a specific part of the document) he / she probably indicates the block(s) after the cursor. \\n EXAMPLE: If you want to insert content AT the cursor position (UNLESS indicated otherwise by the user), then you need `referenceId` to point to the block before the cursor with position `after` (or block below and `before`).\\n \\n Prefer updating existing blocks over removing and adding (but this also depends on the user's question).\"}],\"tool_choice\":{\"type\":\"function\",\"function\":{\"name\":\"json\"}},\"tools\":[{\"type\":\"function\",\"function\":{\"name\":\"json\",\"description\":\"Respond with a JSON object.\",\"parameters\":{\"type\":\"object\",\"properties\":{\"operations\":{\"type\":\"array\",\"items\":{\"anyOf\":[{\"type\":\"object\",\"description\":\"Update a block, the new block will replace the existing block.\",\"properties\":{\"type\":{\"type\":\"string\",\"enum\":[\"update\"]},\"id\":{\"type\":\"string\",\"description\":\"id of block to update\"},\"block\":{\"$ref\":\"#/$defs/block\"}},\"required\":[\"type\",\"id\",\"block\"],\"additionalProperties\":false},{\"type\":\"object\",\"description\":\"Insert new blocks\",\"properties\":{\"type\":{\"type\":\"string\",\"enum\":[\"add\"]},\"referenceId\":{\"type\":\"string\",\"description\":\"MUST be an id of a block in the document\"},\"position\":{\"type\":\"string\",\"enum\":[\"before\",\"after\"],\"description\":\"`after` to add blocks AFTER (below) the block with `referenceId`, `before` to add the block BEFORE (above)\"},\"blocks\":{\"items\":{\"$ref\":\"#/$defs/block\"},\"type\":\"array\"}},\"required\":[\"type\",\"referenceId\",\"position\",\"blocks\"],\"additionalProperties\":false},{\"type\":\"object\",\"description\":\"Delete a block\",\"properties\":{\"type\":{\"type\":\"string\",\"enum\":[\"delete\"]},\"id\":{\"type\":\"string\",\"description\":\"id of block to delete\"}},\"required\":[\"type\",\"id\"],\"additionalProperties\":false}]}}},\"additionalProperties\":false,\"required\":[\"operations\"],\"$defs\":{\"styles\":{\"type\":\"object\",\"properties\":{\"bold\":{\"type\":\"boolean\"},\"italic\":{\"type\":\"boolean\"},\"underline\":{\"type\":\"boolean\"},\"strike\":{\"type\":\"boolean\"},\"code\":{\"type\":\"boolean\"},\"textColor\":{\"type\":\"string\"},\"backgroundColor\":{\"type\":\"string\"}},\"additionalProperties\":false},\"styledtext\":{\"type\":\"object\",\"properties\":{\"type\":{\"type\":\"string\",\"enum\":[\"text\"]},\"text\":{\"type\":\"string\"},\"styles\":{\"$ref\":\"#/$defs/styles\"}},\"additionalProperties\":false,\"required\":[\"type\",\"text\"]},\"inlinecontent\":{\"type\":\"array\",\"items\":{\"anyOf\":[{\"type\":\"object\",\"properties\":{\"type\":{\"type\":\"string\",\"enum\":[\"mention\"]},\"props\":{\"type\":\"object\",\"properties\":{\"user\":{\"type\":\"string\"}},\"additionalProperties\":false}},\"additionalProperties\":false,\"required\":[\"type\"]},{\"$ref\":\"#/$defs/styledtext\"},{\"type\":\"object\",\"properties\":{\"type\":{\"type\":\"string\",\"enum\":[\"link\"]},\"content\":{\"type\":\"array\",\"items\":{\"$ref\":\"#/$defs/styledtext\"}},\"href\":{\"type\":\"string\"}},\"additionalProperties\":false,\"required\":[\"type\",\"href\",\"content\"]}]}},\"block\":{\"anyOf\":[{\"type\":\"object\",\"properties\":{\"type\":{\"type\":\"string\",\"enum\":[\"paragraph\",\"quote\",\"bulletListItem\",\"numberedListItem\"]},\"content\":{\"$ref\":\"#/$defs/inlinecontent\"},\"props\":{\"type\":\"object\",\"properties\":{},\"additionalProperties\":false}},\"additionalProperties\":false,\"required\":[\"type\"]},{\"type\":\"object\",\"properties\":{\"type\":{\"type\":\"string\",\"enum\":[\"heading\"]},\"content\":{\"$ref\":\"#/$defs/inlinecontent\"},\"props\":{\"type\":\"object\",\"properties\":{\"level\":{\"type\":\"number\",\"enum\":[1,2,3]}},\"additionalProperties\":false}},\"additionalProperties\":false,\"required\":[\"type\"]},{\"type\":\"object\",\"properties\":{\"type\":{\"type\":\"string\",\"enum\":[\"codeBlock\"]},\"content\":{\"$ref\":\"#/$defs/inlinecontent\"},\"props\":{\"type\":\"object\",\"properties\":{\"language\":{\"type\":\"string\"}},\"additionalProperties\":false}},\"additionalProperties\":false,\"required\":[\"type\"]},{\"type\":\"object\",\"properties\":{\"type\":{\"type\":\"string\",\"enum\":[\"checkListItem\"]},\"content\":{\"$ref\":\"#/$defs/inlinecontent\"},\"props\":{\"type\":\"object\",\"properties\":{\"checked\":{\"type\":\"boolean\"}},\"additionalProperties\":false}},\"additionalProperties\":false,\"required\":[\"type\"]},{\"type\":\"object\",\"properties\":{\"type\":{\"type\":\"string\",\"enum\":[\"table\"]},\"content\":{\"type\":\"object\",\"properties\":{}},\"props\":{\"type\":\"object\",\"properties\":{},\"additionalProperties\":false}},\"additionalProperties\":false,\"required\":[\"type\"]}]}}}}}]}", + "body": "{\"model\":\"gpt-4o-2024-08-06\",\"temperature\":0,\"messages\":[{\"role\":\"system\",\"content\":\"You're manipulating a text document using JSON blocks. \\n Make sure to follow the json schema provided. When referencing ids they MUST be EXACTLY the same (including the trailing $). \\n This is the document as an array of JSON blocks (the cursor is BETWEEN two blocks as indicated by cursor: true):\"},{\"role\":\"system\",\"content\":\"[{\\\"id\\\":\\\"ref1$\\\",\\\"block\\\":{\\\"id\\\":\\\"ref1\\\",\\\"type\\\":\\\"paragraph\\\",\\\"props\\\":{\\\"textColor\\\":\\\"default\\\",\\\"backgroundColor\\\":\\\"default\\\",\\\"textAlignment\\\":\\\"left\\\"},\\\"content\\\":[{\\\"type\\\":\\\"text\\\",\\\"text\\\":\\\"Hello, world!\\\",\\\"styles\\\":{}}]}},{\\\"cursor\\\":true},{\\\"id\\\":\\\"ref2$\\\",\\\"block\\\":{\\\"id\\\":\\\"ref2\\\",\\\"type\\\":\\\"paragraph\\\",\\\"props\\\":{\\\"textColor\\\":\\\"default\\\",\\\"backgroundColor\\\":\\\"default\\\",\\\"textAlignment\\\":\\\"left\\\"},\\\"content\\\":[{\\\"type\\\":\\\"text\\\",\\\"text\\\":\\\"How are you?\\\",\\\"styles\\\":{}}]}}]\"},{\"role\":\"system\",\"content\":\"The user asks you to do the following:\"},{\"role\":\"user\",\"content\":\"at the end of doc, add a h1 heading `Code` and a javascript code block with `console.log('hello world');`\"},{\"role\":\"system\",\"content\":\"First, determine what part of the document the user is talking about. You SHOULD probably take cursor info into account if needed.\\n EXAMPLE: if user says \\\"below\\\" (without pointing to a specific part of the document) he / she probably indicates the block(s) after the cursor. \\n EXAMPLE: If you want to insert content AT the cursor position (UNLESS indicated otherwise by the user), then you need `referenceId` to point to the block before the cursor with position `after` (or block below and `before`).\\n \\n Prefer updating existing blocks over removing and adding (but this also depends on the user's question).\"}],\"tool_choice\":{\"type\":\"function\",\"function\":{\"name\":\"json\"}},\"tools\":[{\"type\":\"function\",\"function\":{\"name\":\"json\",\"description\":\"Respond with a JSON object.\",\"parameters\":{\"type\":\"object\",\"properties\":{\"operations\":{\"type\":\"array\",\"items\":{\"anyOf\":[{\"type\":\"object\",\"description\":\"Update a block, the new block will replace the existing block.\",\"properties\":{\"type\":{\"type\":\"string\",\"enum\":[\"update\"]},\"id\":{\"type\":\"string\",\"description\":\"id of block to update\"},\"block\":{\"$ref\":\"#/$defs/block\"}},\"required\":[\"type\",\"id\",\"block\"],\"additionalProperties\":false},{\"type\":\"object\",\"description\":\"Insert new blocks\",\"properties\":{\"type\":{\"type\":\"string\",\"enum\":[\"add\"]},\"referenceId\":{\"type\":\"string\",\"description\":\"MUST be an id of a block in the document\"},\"position\":{\"type\":\"string\",\"enum\":[\"before\",\"after\"],\"description\":\"`after` to add blocks AFTER (below) the block with `referenceId`, `before` to add the block BEFORE (above)\"},\"blocks\":{\"items\":{\"$ref\":\"#/$defs/block\"},\"type\":\"array\"}},\"required\":[\"type\",\"referenceId\",\"position\",\"blocks\"],\"additionalProperties\":false},{\"type\":\"object\",\"description\":\"Delete a block\",\"properties\":{\"type\":{\"type\":\"string\",\"enum\":[\"delete\"]},\"id\":{\"type\":\"string\",\"description\":\"id of block to delete\"}},\"required\":[\"type\",\"id\"],\"additionalProperties\":false}]}}},\"additionalProperties\":false,\"required\":[\"operations\"],\"$defs\":{\"styles\":{\"type\":\"object\",\"properties\":{\"bold\":{\"type\":\"boolean\"},\"italic\":{\"type\":\"boolean\"},\"underline\":{\"type\":\"boolean\"},\"strike\":{\"type\":\"boolean\"},\"code\":{\"type\":\"boolean\"},\"textColor\":{\"type\":\"string\"},\"backgroundColor\":{\"type\":\"string\"}},\"additionalProperties\":false},\"styledtext\":{\"type\":\"object\",\"properties\":{\"type\":{\"type\":\"string\",\"enum\":[\"text\"]},\"text\":{\"type\":\"string\"},\"styles\":{\"$ref\":\"#/$defs/styles\"}},\"additionalProperties\":false,\"required\":[\"type\",\"text\"]},\"inlinecontent\":{\"type\":\"array\",\"items\":{\"anyOf\":[{\"type\":\"object\",\"properties\":{\"type\":{\"type\":\"string\",\"enum\":[\"mention\"]},\"props\":{\"type\":\"object\",\"properties\":{\"user\":{\"type\":\"string\"}},\"additionalProperties\":false}},\"additionalProperties\":false,\"required\":[\"type\"]},{\"$ref\":\"#/$defs/styledtext\"},{\"type\":\"object\",\"properties\":{\"type\":{\"type\":\"string\",\"enum\":[\"link\"]},\"content\":{\"type\":\"array\",\"items\":{\"$ref\":\"#/$defs/styledtext\"}},\"href\":{\"type\":\"string\"}},\"additionalProperties\":false,\"required\":[\"type\",\"href\",\"content\"]}]}},\"block\":{\"anyOf\":[{\"type\":\"object\",\"properties\":{\"type\":{\"type\":\"string\",\"enum\":[\"paragraph\",\"quote\",\"toggleListItem\",\"bulletListItem\",\"numberedListItem\"]},\"content\":{\"$ref\":\"#/$defs/inlinecontent\"},\"props\":{\"type\":\"object\",\"properties\":{},\"additionalProperties\":false}},\"additionalProperties\":false,\"required\":[\"type\"]},{\"type\":\"object\",\"properties\":{\"type\":{\"type\":\"string\",\"enum\":[\"heading\"]},\"content\":{\"$ref\":\"#/$defs/inlinecontent\"},\"props\":{\"type\":\"object\",\"properties\":{\"level\":{\"type\":\"number\",\"enum\":[1,2,3]},\"isTogglable\":{\"type\":\"boolean\"}},\"additionalProperties\":false}},\"additionalProperties\":false,\"required\":[\"type\"]},{\"type\":\"object\",\"properties\":{\"type\":{\"type\":\"string\",\"enum\":[\"codeBlock\"]},\"content\":{\"$ref\":\"#/$defs/inlinecontent\"},\"props\":{\"type\":\"object\",\"properties\":{\"language\":{\"type\":\"string\"}},\"additionalProperties\":false}},\"additionalProperties\":false,\"required\":[\"type\"]},{\"type\":\"object\",\"properties\":{\"type\":{\"type\":\"string\",\"enum\":[\"checkListItem\"]},\"content\":{\"$ref\":\"#/$defs/inlinecontent\"},\"props\":{\"type\":\"object\",\"properties\":{\"checked\":{\"type\":\"boolean\"}},\"additionalProperties\":false}},\"additionalProperties\":false,\"required\":[\"type\"]},{\"type\":\"object\",\"properties\":{\"type\":{\"type\":\"string\",\"enum\":[\"table\"]},\"content\":{\"type\":\"object\",\"properties\":{}},\"props\":{\"type\":\"object\",\"properties\":{},\"additionalProperties\":false}},\"additionalProperties\":false,\"required\":[\"type\"]}]}}}}}]}", "headers": [], "cookies": [] }, "response": { "status": 200, "statusText": "", - "body": "{\n \"id\": \"chatcmpl-BgV8aYNlU7MRm91LlyaZXYg3MQbCb\",\n \"object\": \"chat.completion\",\n \"created\": 1749469168,\n \"model\": \"gpt-4o-2024-08-06\",\n \"choices\": [\n {\n \"index\": 0,\n \"message\": {\n \"role\": \"assistant\",\n \"content\": null,\n \"tool_calls\": [\n {\n \"id\": \"call_A03liz5Jg5DXVjFKFJ4NDoty\",\n \"type\": \"function\",\n \"function\": {\n \"name\": \"json\",\n \"arguments\": \"{\\\"operations\\\":[{\\\"type\\\":\\\"add\\\",\\\"referenceId\\\":\\\"ref2$\\\",\\\"position\\\":\\\"after\\\",\\\"blocks\\\":[{\\\"type\\\":\\\"heading\\\",\\\"content\\\":[{\\\"type\\\":\\\"text\\\",\\\"text\\\":\\\"Code\\\"}],\\\"props\\\":{\\\"level\\\":1}},{\\\"type\\\":\\\"codeBlock\\\",\\\"content\\\":[{\\\"type\\\":\\\"text\\\",\\\"text\\\":\\\"console.log('hello world');\\\"}],\\\"props\\\":{\\\"language\\\":\\\"javascript\\\"}}]}]}\"\n }\n }\n ],\n \"refusal\": null,\n \"annotations\": []\n },\n \"logprobs\": null,\n \"finish_reason\": \"stop\"\n }\n ],\n \"usage\": {\n \"prompt_tokens\": 1011,\n \"completion_tokens\": 75,\n \"total_tokens\": 1086,\n \"prompt_tokens_details\": {\n \"cached_tokens\": 0,\n \"audio_tokens\": 0\n },\n \"completion_tokens_details\": {\n \"reasoning_tokens\": 0,\n \"audio_tokens\": 0,\n \"accepted_prediction_tokens\": 0,\n \"rejected_prediction_tokens\": 0\n }\n },\n \"service_tier\": \"default\",\n \"system_fingerprint\": \"fp_a288987b44\"\n}\n", + "body": "{\n \"id\": \"chatcmpl-BhXnb7GNhA6pIYDCaX6Cs2nBnENV9\",\n \"object\": \"chat.completion\",\n \"created\": 1749717727,\n \"model\": \"gpt-4o-2024-08-06\",\n \"choices\": [\n {\n \"index\": 0,\n \"message\": {\n \"role\": \"assistant\",\n \"content\": null,\n \"tool_calls\": [\n {\n \"id\": \"call_KOZ0VquzRKd1lWIwPK4CJVOi\",\n \"type\": \"function\",\n \"function\": {\n \"name\": \"json\",\n \"arguments\": \"{\\\"operations\\\":[{\\\"type\\\":\\\"add\\\",\\\"referenceId\\\":\\\"ref2$\\\",\\\"position\\\":\\\"after\\\",\\\"blocks\\\":[{\\\"type\\\":\\\"heading\\\",\\\"content\\\":[{\\\"type\\\":\\\"text\\\",\\\"text\\\":\\\"Code\\\"}],\\\"props\\\":{\\\"level\\\":1}},{\\\"type\\\":\\\"codeBlock\\\",\\\"content\\\":[{\\\"type\\\":\\\"text\\\",\\\"text\\\":\\\"console.log('hello world');\\\"}],\\\"props\\\":{\\\"language\\\":\\\"javascript\\\"}}]}]}\"\n }\n }\n ],\n \"refusal\": null,\n \"annotations\": []\n },\n \"logprobs\": null,\n \"finish_reason\": \"stop\"\n }\n ],\n \"usage\": {\n \"prompt_tokens\": 1039,\n \"completion_tokens\": 75,\n \"total_tokens\": 1114,\n \"prompt_tokens_details\": {\n \"cached_tokens\": 0,\n \"audio_tokens\": 0\n },\n \"completion_tokens_details\": {\n \"reasoning_tokens\": 0,\n \"audio_tokens\": 0,\n \"accepted_prediction_tokens\": 0,\n \"rejected_prediction_tokens\": 0\n }\n },\n \"service_tier\": \"default\",\n \"system_fingerprint\": \"fp_07871e2ad8\"\n}\n", "headers": [] } } \ No newline at end of file diff --git a/packages/xl-ai/src/api/formats/json/__snapshots__/json.test.ts/Add/__msw_snapshots__/openai.chat/gpt-4o-2024-08-06 (non-streaming)/add a list (end)_1_6170e1a128bc5fcf5bdbd602a65f68f5.json b/packages/xl-ai/src/api/formats/json/__snapshots__/json.test.ts/Add/__msw_snapshots__/openai.chat/gpt-4o-2024-08-06 (non-streaming)/add a list (end)_1_7547123227251b645c9897f903e0a332.json similarity index 77% rename from packages/xl-ai/src/api/formats/json/__snapshots__/json.test.ts/Add/__msw_snapshots__/openai.chat/gpt-4o-2024-08-06 (non-streaming)/add a list (end)_1_6170e1a128bc5fcf5bdbd602a65f68f5.json rename to packages/xl-ai/src/api/formats/json/__snapshots__/json.test.ts/Add/__msw_snapshots__/openai.chat/gpt-4o-2024-08-06 (non-streaming)/add a list (end)_1_7547123227251b645c9897f903e0a332.json index 8c61f3331e..3372c97f2b 100644 --- a/packages/xl-ai/src/api/formats/json/__snapshots__/json.test.ts/Add/__msw_snapshots__/openai.chat/gpt-4o-2024-08-06 (non-streaming)/add a list (end)_1_6170e1a128bc5fcf5bdbd602a65f68f5.json +++ b/packages/xl-ai/src/api/formats/json/__snapshots__/json.test.ts/Add/__msw_snapshots__/openai.chat/gpt-4o-2024-08-06 (non-streaming)/add a list (end)_1_7547123227251b645c9897f903e0a332.json @@ -2,14 +2,14 @@ "request": { "method": "POST", "url": "https://localhost:3000/ai?provider=openai&url=https%3A%2F%2Fapi.openai.com%2Fv1%2Fchat%2Fcompletions", - "body": "{\"model\":\"gpt-4o-2024-08-06\",\"temperature\":0,\"messages\":[{\"role\":\"system\",\"content\":\"You're manipulating a text document using JSON blocks. \\n Make sure to follow the json schema provided. When referencing ids they MUST be EXACTLY the same (including the trailing $). \\n This is the document as an array of JSON blocks (the cursor is BETWEEN two blocks as indicated by cursor: true):\"},{\"role\":\"system\",\"content\":\"[{\\\"id\\\":\\\"ref1$\\\",\\\"block\\\":{\\\"id\\\":\\\"ref1\\\",\\\"type\\\":\\\"paragraph\\\",\\\"props\\\":{\\\"textColor\\\":\\\"default\\\",\\\"backgroundColor\\\":\\\"default\\\",\\\"textAlignment\\\":\\\"left\\\"},\\\"content\\\":[{\\\"type\\\":\\\"text\\\",\\\"text\\\":\\\"Hello, world!\\\",\\\"styles\\\":{}}]}},{\\\"cursor\\\":true},{\\\"id\\\":\\\"ref2$\\\",\\\"block\\\":{\\\"id\\\":\\\"ref2\\\",\\\"type\\\":\\\"paragraph\\\",\\\"props\\\":{\\\"textColor\\\":\\\"default\\\",\\\"backgroundColor\\\":\\\"default\\\",\\\"textAlignment\\\":\\\"left\\\"},\\\"content\\\":[{\\\"type\\\":\\\"text\\\",\\\"text\\\":\\\"How are you?\\\",\\\"styles\\\":{}}]}}]\"},{\"role\":\"system\",\"content\":\"The user asks you to do the following:\"},{\"role\":\"user\",\"content\":\"add a list with the items 'Apples' and 'Bananas' after the last sentence\"},{\"role\":\"system\",\"content\":\"First, determine what part of the document the user is talking about. You SHOULD probably take cursor info into account if needed.\\n EXAMPLE: if user says \\\"below\\\" (without pointing to a specific part of the document) he / she probably indicates the block(s) after the cursor. \\n EXAMPLE: If you want to insert content AT the cursor position (UNLESS indicated otherwise by the user), then you need `referenceId` to point to the block before the cursor with position `after` (or block below and `before`).\\n \\n Prefer updating existing blocks over removing and adding (but this also depends on the user's question).\"}],\"tool_choice\":{\"type\":\"function\",\"function\":{\"name\":\"json\"}},\"tools\":[{\"type\":\"function\",\"function\":{\"name\":\"json\",\"description\":\"Respond with a JSON object.\",\"parameters\":{\"type\":\"object\",\"properties\":{\"operations\":{\"type\":\"array\",\"items\":{\"anyOf\":[{\"type\":\"object\",\"description\":\"Update a block, the new block will replace the existing block.\",\"properties\":{\"type\":{\"type\":\"string\",\"enum\":[\"update\"]},\"id\":{\"type\":\"string\",\"description\":\"id of block to update\"},\"block\":{\"$ref\":\"#/$defs/block\"}},\"required\":[\"type\",\"id\",\"block\"],\"additionalProperties\":false},{\"type\":\"object\",\"description\":\"Insert new blocks\",\"properties\":{\"type\":{\"type\":\"string\",\"enum\":[\"add\"]},\"referenceId\":{\"type\":\"string\",\"description\":\"MUST be an id of a block in the document\"},\"position\":{\"type\":\"string\",\"enum\":[\"before\",\"after\"],\"description\":\"`after` to add blocks AFTER (below) the block with `referenceId`, `before` to add the block BEFORE (above)\"},\"blocks\":{\"items\":{\"$ref\":\"#/$defs/block\"},\"type\":\"array\"}},\"required\":[\"type\",\"referenceId\",\"position\",\"blocks\"],\"additionalProperties\":false},{\"type\":\"object\",\"description\":\"Delete a block\",\"properties\":{\"type\":{\"type\":\"string\",\"enum\":[\"delete\"]},\"id\":{\"type\":\"string\",\"description\":\"id of block to delete\"}},\"required\":[\"type\",\"id\"],\"additionalProperties\":false}]}}},\"additionalProperties\":false,\"required\":[\"operations\"],\"$defs\":{\"styles\":{\"type\":\"object\",\"properties\":{\"bold\":{\"type\":\"boolean\"},\"italic\":{\"type\":\"boolean\"},\"underline\":{\"type\":\"boolean\"},\"strike\":{\"type\":\"boolean\"},\"code\":{\"type\":\"boolean\"},\"textColor\":{\"type\":\"string\"},\"backgroundColor\":{\"type\":\"string\"}},\"additionalProperties\":false},\"styledtext\":{\"type\":\"object\",\"properties\":{\"type\":{\"type\":\"string\",\"enum\":[\"text\"]},\"text\":{\"type\":\"string\"},\"styles\":{\"$ref\":\"#/$defs/styles\"}},\"additionalProperties\":false,\"required\":[\"type\",\"text\"]},\"inlinecontent\":{\"type\":\"array\",\"items\":{\"anyOf\":[{\"type\":\"object\",\"properties\":{\"type\":{\"type\":\"string\",\"enum\":[\"mention\"]},\"props\":{\"type\":\"object\",\"properties\":{\"user\":{\"type\":\"string\"}},\"additionalProperties\":false}},\"additionalProperties\":false,\"required\":[\"type\"]},{\"$ref\":\"#/$defs/styledtext\"},{\"type\":\"object\",\"properties\":{\"type\":{\"type\":\"string\",\"enum\":[\"link\"]},\"content\":{\"type\":\"array\",\"items\":{\"$ref\":\"#/$defs/styledtext\"}},\"href\":{\"type\":\"string\"}},\"additionalProperties\":false,\"required\":[\"type\",\"href\",\"content\"]}]}},\"block\":{\"anyOf\":[{\"type\":\"object\",\"properties\":{\"type\":{\"type\":\"string\",\"enum\":[\"paragraph\",\"quote\",\"bulletListItem\",\"numberedListItem\"]},\"content\":{\"$ref\":\"#/$defs/inlinecontent\"},\"props\":{\"type\":\"object\",\"properties\":{},\"additionalProperties\":false}},\"additionalProperties\":false,\"required\":[\"type\"]},{\"type\":\"object\",\"properties\":{\"type\":{\"type\":\"string\",\"enum\":[\"heading\"]},\"content\":{\"$ref\":\"#/$defs/inlinecontent\"},\"props\":{\"type\":\"object\",\"properties\":{\"level\":{\"type\":\"number\",\"enum\":[1,2,3]}},\"additionalProperties\":false}},\"additionalProperties\":false,\"required\":[\"type\"]},{\"type\":\"object\",\"properties\":{\"type\":{\"type\":\"string\",\"enum\":[\"codeBlock\"]},\"content\":{\"$ref\":\"#/$defs/inlinecontent\"},\"props\":{\"type\":\"object\",\"properties\":{\"language\":{\"type\":\"string\"}},\"additionalProperties\":false}},\"additionalProperties\":false,\"required\":[\"type\"]},{\"type\":\"object\",\"properties\":{\"type\":{\"type\":\"string\",\"enum\":[\"checkListItem\"]},\"content\":{\"$ref\":\"#/$defs/inlinecontent\"},\"props\":{\"type\":\"object\",\"properties\":{\"checked\":{\"type\":\"boolean\"}},\"additionalProperties\":false}},\"additionalProperties\":false,\"required\":[\"type\"]},{\"type\":\"object\",\"properties\":{\"type\":{\"type\":\"string\",\"enum\":[\"table\"]},\"content\":{\"type\":\"object\",\"properties\":{}},\"props\":{\"type\":\"object\",\"properties\":{},\"additionalProperties\":false}},\"additionalProperties\":false,\"required\":[\"type\"]}]}}}}}]}", + "body": "{\"model\":\"gpt-4o-2024-08-06\",\"temperature\":0,\"messages\":[{\"role\":\"system\",\"content\":\"You're manipulating a text document using JSON blocks. \\n Make sure to follow the json schema provided. When referencing ids they MUST be EXACTLY the same (including the trailing $). \\n This is the document as an array of JSON blocks (the cursor is BETWEEN two blocks as indicated by cursor: true):\"},{\"role\":\"system\",\"content\":\"[{\\\"id\\\":\\\"ref1$\\\",\\\"block\\\":{\\\"id\\\":\\\"ref1\\\",\\\"type\\\":\\\"paragraph\\\",\\\"props\\\":{\\\"textColor\\\":\\\"default\\\",\\\"backgroundColor\\\":\\\"default\\\",\\\"textAlignment\\\":\\\"left\\\"},\\\"content\\\":[{\\\"type\\\":\\\"text\\\",\\\"text\\\":\\\"Hello, world!\\\",\\\"styles\\\":{}}]}},{\\\"cursor\\\":true},{\\\"id\\\":\\\"ref2$\\\",\\\"block\\\":{\\\"id\\\":\\\"ref2\\\",\\\"type\\\":\\\"paragraph\\\",\\\"props\\\":{\\\"textColor\\\":\\\"default\\\",\\\"backgroundColor\\\":\\\"default\\\",\\\"textAlignment\\\":\\\"left\\\"},\\\"content\\\":[{\\\"type\\\":\\\"text\\\",\\\"text\\\":\\\"How are you?\\\",\\\"styles\\\":{}}]}}]\"},{\"role\":\"system\",\"content\":\"The user asks you to do the following:\"},{\"role\":\"user\",\"content\":\"add a list with the items 'Apples' and 'Bananas' after the last sentence\"},{\"role\":\"system\",\"content\":\"First, determine what part of the document the user is talking about. You SHOULD probably take cursor info into account if needed.\\n EXAMPLE: if user says \\\"below\\\" (without pointing to a specific part of the document) he / she probably indicates the block(s) after the cursor. \\n EXAMPLE: If you want to insert content AT the cursor position (UNLESS indicated otherwise by the user), then you need `referenceId` to point to the block before the cursor with position `after` (or block below and `before`).\\n \\n Prefer updating existing blocks over removing and adding (but this also depends on the user's question).\"}],\"tool_choice\":{\"type\":\"function\",\"function\":{\"name\":\"json\"}},\"tools\":[{\"type\":\"function\",\"function\":{\"name\":\"json\",\"description\":\"Respond with a JSON object.\",\"parameters\":{\"type\":\"object\",\"properties\":{\"operations\":{\"type\":\"array\",\"items\":{\"anyOf\":[{\"type\":\"object\",\"description\":\"Update a block, the new block will replace the existing block.\",\"properties\":{\"type\":{\"type\":\"string\",\"enum\":[\"update\"]},\"id\":{\"type\":\"string\",\"description\":\"id of block to update\"},\"block\":{\"$ref\":\"#/$defs/block\"}},\"required\":[\"type\",\"id\",\"block\"],\"additionalProperties\":false},{\"type\":\"object\",\"description\":\"Insert new blocks\",\"properties\":{\"type\":{\"type\":\"string\",\"enum\":[\"add\"]},\"referenceId\":{\"type\":\"string\",\"description\":\"MUST be an id of a block in the document\"},\"position\":{\"type\":\"string\",\"enum\":[\"before\",\"after\"],\"description\":\"`after` to add blocks AFTER (below) the block with `referenceId`, `before` to add the block BEFORE (above)\"},\"blocks\":{\"items\":{\"$ref\":\"#/$defs/block\"},\"type\":\"array\"}},\"required\":[\"type\",\"referenceId\",\"position\",\"blocks\"],\"additionalProperties\":false},{\"type\":\"object\",\"description\":\"Delete a block\",\"properties\":{\"type\":{\"type\":\"string\",\"enum\":[\"delete\"]},\"id\":{\"type\":\"string\",\"description\":\"id of block to delete\"}},\"required\":[\"type\",\"id\"],\"additionalProperties\":false}]}}},\"additionalProperties\":false,\"required\":[\"operations\"],\"$defs\":{\"styles\":{\"type\":\"object\",\"properties\":{\"bold\":{\"type\":\"boolean\"},\"italic\":{\"type\":\"boolean\"},\"underline\":{\"type\":\"boolean\"},\"strike\":{\"type\":\"boolean\"},\"code\":{\"type\":\"boolean\"},\"textColor\":{\"type\":\"string\"},\"backgroundColor\":{\"type\":\"string\"}},\"additionalProperties\":false},\"styledtext\":{\"type\":\"object\",\"properties\":{\"type\":{\"type\":\"string\",\"enum\":[\"text\"]},\"text\":{\"type\":\"string\"},\"styles\":{\"$ref\":\"#/$defs/styles\"}},\"additionalProperties\":false,\"required\":[\"type\",\"text\"]},\"inlinecontent\":{\"type\":\"array\",\"items\":{\"anyOf\":[{\"type\":\"object\",\"properties\":{\"type\":{\"type\":\"string\",\"enum\":[\"mention\"]},\"props\":{\"type\":\"object\",\"properties\":{\"user\":{\"type\":\"string\"}},\"additionalProperties\":false}},\"additionalProperties\":false,\"required\":[\"type\"]},{\"$ref\":\"#/$defs/styledtext\"},{\"type\":\"object\",\"properties\":{\"type\":{\"type\":\"string\",\"enum\":[\"link\"]},\"content\":{\"type\":\"array\",\"items\":{\"$ref\":\"#/$defs/styledtext\"}},\"href\":{\"type\":\"string\"}},\"additionalProperties\":false,\"required\":[\"type\",\"href\",\"content\"]}]}},\"block\":{\"anyOf\":[{\"type\":\"object\",\"properties\":{\"type\":{\"type\":\"string\",\"enum\":[\"paragraph\",\"quote\",\"toggleListItem\",\"bulletListItem\",\"numberedListItem\"]},\"content\":{\"$ref\":\"#/$defs/inlinecontent\"},\"props\":{\"type\":\"object\",\"properties\":{},\"additionalProperties\":false}},\"additionalProperties\":false,\"required\":[\"type\"]},{\"type\":\"object\",\"properties\":{\"type\":{\"type\":\"string\",\"enum\":[\"heading\"]},\"content\":{\"$ref\":\"#/$defs/inlinecontent\"},\"props\":{\"type\":\"object\",\"properties\":{\"level\":{\"type\":\"number\",\"enum\":[1,2,3]},\"isTogglable\":{\"type\":\"boolean\"}},\"additionalProperties\":false}},\"additionalProperties\":false,\"required\":[\"type\"]},{\"type\":\"object\",\"properties\":{\"type\":{\"type\":\"string\",\"enum\":[\"codeBlock\"]},\"content\":{\"$ref\":\"#/$defs/inlinecontent\"},\"props\":{\"type\":\"object\",\"properties\":{\"language\":{\"type\":\"string\"}},\"additionalProperties\":false}},\"additionalProperties\":false,\"required\":[\"type\"]},{\"type\":\"object\",\"properties\":{\"type\":{\"type\":\"string\",\"enum\":[\"checkListItem\"]},\"content\":{\"$ref\":\"#/$defs/inlinecontent\"},\"props\":{\"type\":\"object\",\"properties\":{\"checked\":{\"type\":\"boolean\"}},\"additionalProperties\":false}},\"additionalProperties\":false,\"required\":[\"type\"]},{\"type\":\"object\",\"properties\":{\"type\":{\"type\":\"string\",\"enum\":[\"table\"]},\"content\":{\"type\":\"object\",\"properties\":{}},\"props\":{\"type\":\"object\",\"properties\":{},\"additionalProperties\":false}},\"additionalProperties\":false,\"required\":[\"type\"]}]}}}}}]}", "headers": [], "cookies": [] }, "response": { "status": 200, "statusText": "", - "body": "{\n \"id\": \"chatcmpl-BgV8ZScrOSso3iA00aoYsLuFkg4tF\",\n \"object\": \"chat.completion\",\n \"created\": 1749469167,\n \"model\": \"gpt-4o-2024-08-06\",\n \"choices\": [\n {\n \"index\": 0,\n \"message\": {\n \"role\": \"assistant\",\n \"content\": null,\n \"tool_calls\": [\n {\n \"id\": \"call_niIBzCpSNKaBReCiX2WCWL8C\",\n \"type\": \"function\",\n \"function\": {\n \"name\": \"json\",\n \"arguments\": \"{\\\"operations\\\":[{\\\"type\\\":\\\"add\\\",\\\"referenceId\\\":\\\"ref2$\\\",\\\"position\\\":\\\"after\\\",\\\"blocks\\\":[{\\\"type\\\":\\\"bulletListItem\\\",\\\"content\\\":[{\\\"type\\\":\\\"text\\\",\\\"text\\\":\\\"Apples\\\"}]},{\\\"type\\\":\\\"bulletListItem\\\",\\\"content\\\":[{\\\"type\\\":\\\"text\\\",\\\"text\\\":\\\"Bananas\\\"}]}]}]}\"\n }\n }\n ],\n \"refusal\": null,\n \"annotations\": []\n },\n \"logprobs\": null,\n \"finish_reason\": \"stop\"\n }\n ],\n \"usage\": {\n \"prompt_tokens\": 1002,\n \"completion_tokens\": 63,\n \"total_tokens\": 1065,\n \"prompt_tokens_details\": {\n \"cached_tokens\": 0,\n \"audio_tokens\": 0\n },\n \"completion_tokens_details\": {\n \"reasoning_tokens\": 0,\n \"audio_tokens\": 0,\n \"accepted_prediction_tokens\": 0,\n \"rejected_prediction_tokens\": 0\n }\n },\n \"service_tier\": \"default\",\n \"system_fingerprint\": \"fp_a288987b44\"\n}\n", + "body": "{\n \"id\": \"chatcmpl-BhYK3WIGUhlWeRDju6eocw9dHNlVr\",\n \"object\": \"chat.completion\",\n \"created\": 1749719739,\n \"model\": \"gpt-4o-2024-08-06\",\n \"choices\": [\n {\n \"index\": 0,\n \"message\": {\n \"role\": \"assistant\",\n \"content\": null,\n \"tool_calls\": [\n {\n \"id\": \"call_KycOk51hQdeYFMa0KiE4E4bz\",\n \"type\": \"function\",\n \"function\": {\n \"name\": \"json\",\n \"arguments\": \"{\\\"operations\\\":[{\\\"type\\\":\\\"add\\\",\\\"referenceId\\\":\\\"ref2$\\\",\\\"position\\\":\\\"after\\\",\\\"blocks\\\":[{\\\"type\\\":\\\"bulletListItem\\\",\\\"content\\\":[{\\\"type\\\":\\\"text\\\",\\\"text\\\":\\\"Apples\\\"}]},{\\\"type\\\":\\\"bulletListItem\\\",\\\"content\\\":[{\\\"type\\\":\\\"text\\\",\\\"text\\\":\\\"Bananas\\\"}]}]}]}\"\n }\n }\n ],\n \"refusal\": null,\n \"annotations\": []\n },\n \"logprobs\": null,\n \"finish_reason\": \"stop\"\n }\n ],\n \"usage\": {\n \"prompt_tokens\": 1030,\n \"completion_tokens\": 63,\n \"total_tokens\": 1093,\n \"prompt_tokens_details\": {\n \"cached_tokens\": 0,\n \"audio_tokens\": 0\n },\n \"completion_tokens_details\": {\n \"reasoning_tokens\": 0,\n \"audio_tokens\": 0,\n \"accepted_prediction_tokens\": 0,\n \"rejected_prediction_tokens\": 0\n }\n },\n \"service_tier\": \"default\",\n \"system_fingerprint\": \"fp_a288987b44\"\n}\n", "headers": [] } } \ No newline at end of file diff --git a/packages/xl-ai/src/api/formats/json/__snapshots__/json.test.ts/Add/__msw_snapshots__/openai.chat/gpt-4o-2024-08-06 (non-streaming)/add a new paragraph (empty doc)_1_6db4dac44191debdf051e91dc24b1050.json b/packages/xl-ai/src/api/formats/json/__snapshots__/json.test.ts/Add/__msw_snapshots__/openai.chat/gpt-4o-2024-08-06 (non-streaming)/add a new paragraph (empty doc)_1_07f373ebdd9c563dd024e0593612c388.json similarity index 75% rename from packages/xl-ai/src/api/formats/json/__snapshots__/json.test.ts/Add/__msw_snapshots__/openai.chat/gpt-4o-2024-08-06 (non-streaming)/add a new paragraph (empty doc)_1_6db4dac44191debdf051e91dc24b1050.json rename to packages/xl-ai/src/api/formats/json/__snapshots__/json.test.ts/Add/__msw_snapshots__/openai.chat/gpt-4o-2024-08-06 (non-streaming)/add a new paragraph (empty doc)_1_07f373ebdd9c563dd024e0593612c388.json index 1566215756..3358afcade 100644 --- a/packages/xl-ai/src/api/formats/json/__snapshots__/json.test.ts/Add/__msw_snapshots__/openai.chat/gpt-4o-2024-08-06 (non-streaming)/add a new paragraph (empty doc)_1_6db4dac44191debdf051e91dc24b1050.json +++ b/packages/xl-ai/src/api/formats/json/__snapshots__/json.test.ts/Add/__msw_snapshots__/openai.chat/gpt-4o-2024-08-06 (non-streaming)/add a new paragraph (empty doc)_1_07f373ebdd9c563dd024e0593612c388.json @@ -2,14 +2,14 @@ "request": { "method": "POST", "url": "https://localhost:3000/ai?provider=openai&url=https%3A%2F%2Fapi.openai.com%2Fv1%2Fchat%2Fcompletions", - "body": "{\"model\":\"gpt-4o-2024-08-06\",\"temperature\":0,\"messages\":[{\"role\":\"system\",\"content\":\"You're manipulating a text document using JSON blocks. \\n Make sure to follow the json schema provided. When referencing ids they MUST be EXACTLY the same (including the trailing $). \\n This is the document as an array of JSON blocks (the cursor is BETWEEN two blocks as indicated by cursor: true):\"},{\"role\":\"system\",\"content\":\"[{\\\"id\\\":\\\"ref1$\\\",\\\"block\\\":{\\\"id\\\":\\\"ref1\\\",\\\"type\\\":\\\"paragraph\\\",\\\"props\\\":{\\\"textColor\\\":\\\"default\\\",\\\"backgroundColor\\\":\\\"default\\\",\\\"textAlignment\\\":\\\"left\\\"},\\\"content\\\":[]}},{\\\"cursor\\\":true}]\"},{\"role\":\"system\",\"content\":\"Because the actual document is empty, this is an example document to understand the schema:\"},{\"role\":\"system\",\"content\":\"{\\\"id\\\":\\\"ref3\\\",\\\"type\\\":\\\"paragraph\\\",\\\"content\\\":[{\\\"type\\\":\\\"text\\\",\\\"text\\\":\\\"Hello, world! \\\",\\\"styles\\\":{}},{\\\"type\\\":\\\"text\\\",\\\"text\\\":\\\"Bold text. \\\",\\\"styles\\\":{\\\"bold\\\":true}},{\\\"type\\\":\\\"link\\\",\\\"href\\\":\\\"https://www.w3.org\\\",\\\"content\\\":\\\"Link.\\\"}]}\"},{\"role\":\"system\",\"content\":\"The user asks you to do the following:\"},{\"role\":\"user\",\"content\":\"write a new paragraph with the text 'You look great today!'\"},{\"role\":\"system\",\"content\":\"First, determine what part of the document the user is talking about. You SHOULD probably take cursor info into account if needed.\\n EXAMPLE: if user says \\\"below\\\" (without pointing to a specific part of the document) he / she probably indicates the block(s) after the cursor. \\n EXAMPLE: If you want to insert content AT the cursor position (UNLESS indicated otherwise by the user), then you need `referenceId` to point to the block before the cursor with position `after` (or block below and `before`).\\n \\n Because the document is empty, first update the empty block before adding new blocks.\"}],\"tool_choice\":{\"type\":\"function\",\"function\":{\"name\":\"json\"}},\"tools\":[{\"type\":\"function\",\"function\":{\"name\":\"json\",\"description\":\"Respond with a JSON object.\",\"parameters\":{\"type\":\"object\",\"properties\":{\"operations\":{\"type\":\"array\",\"items\":{\"anyOf\":[{\"type\":\"object\",\"description\":\"Update a block, the new block will replace the existing block.\",\"properties\":{\"type\":{\"type\":\"string\",\"enum\":[\"update\"]},\"id\":{\"type\":\"string\",\"description\":\"id of block to update\"},\"block\":{\"$ref\":\"#/$defs/block\"}},\"required\":[\"type\",\"id\",\"block\"],\"additionalProperties\":false},{\"type\":\"object\",\"description\":\"Insert new blocks\",\"properties\":{\"type\":{\"type\":\"string\",\"enum\":[\"add\"]},\"referenceId\":{\"type\":\"string\",\"description\":\"MUST be an id of a block in the document\"},\"position\":{\"type\":\"string\",\"enum\":[\"before\",\"after\"],\"description\":\"`after` to add blocks AFTER (below) the block with `referenceId`, `before` to add the block BEFORE (above)\"},\"blocks\":{\"items\":{\"$ref\":\"#/$defs/block\"},\"type\":\"array\"}},\"required\":[\"type\",\"referenceId\",\"position\",\"blocks\"],\"additionalProperties\":false},{\"type\":\"object\",\"description\":\"Delete a block\",\"properties\":{\"type\":{\"type\":\"string\",\"enum\":[\"delete\"]},\"id\":{\"type\":\"string\",\"description\":\"id of block to delete\"}},\"required\":[\"type\",\"id\"],\"additionalProperties\":false}]}}},\"additionalProperties\":false,\"required\":[\"operations\"],\"$defs\":{\"styles\":{\"type\":\"object\",\"properties\":{\"bold\":{\"type\":\"boolean\"},\"italic\":{\"type\":\"boolean\"},\"underline\":{\"type\":\"boolean\"},\"strike\":{\"type\":\"boolean\"},\"code\":{\"type\":\"boolean\"},\"textColor\":{\"type\":\"string\"},\"backgroundColor\":{\"type\":\"string\"}},\"additionalProperties\":false},\"styledtext\":{\"type\":\"object\",\"properties\":{\"type\":{\"type\":\"string\",\"enum\":[\"text\"]},\"text\":{\"type\":\"string\"},\"styles\":{\"$ref\":\"#/$defs/styles\"}},\"additionalProperties\":false,\"required\":[\"type\",\"text\"]},\"inlinecontent\":{\"type\":\"array\",\"items\":{\"anyOf\":[{\"$ref\":\"#/$defs/styledtext\"},{\"type\":\"object\",\"properties\":{\"type\":{\"type\":\"string\",\"enum\":[\"link\"]},\"content\":{\"type\":\"array\",\"items\":{\"$ref\":\"#/$defs/styledtext\"}},\"href\":{\"type\":\"string\"}},\"additionalProperties\":false,\"required\":[\"type\",\"href\",\"content\"]}]}},\"block\":{\"anyOf\":[{\"type\":\"object\",\"properties\":{\"type\":{\"type\":\"string\",\"enum\":[\"paragraph\",\"quote\",\"bulletListItem\",\"numberedListItem\"]},\"content\":{\"$ref\":\"#/$defs/inlinecontent\"},\"props\":{\"type\":\"object\",\"properties\":{},\"additionalProperties\":false}},\"additionalProperties\":false,\"required\":[\"type\"]},{\"type\":\"object\",\"properties\":{\"type\":{\"type\":\"string\",\"enum\":[\"heading\"]},\"content\":{\"$ref\":\"#/$defs/inlinecontent\"},\"props\":{\"type\":\"object\",\"properties\":{\"level\":{\"type\":\"number\",\"enum\":[1,2,3]}},\"additionalProperties\":false}},\"additionalProperties\":false,\"required\":[\"type\"]},{\"type\":\"object\",\"properties\":{\"type\":{\"type\":\"string\",\"enum\":[\"codeBlock\"]},\"content\":{\"$ref\":\"#/$defs/inlinecontent\"},\"props\":{\"type\":\"object\",\"properties\":{\"language\":{\"type\":\"string\"}},\"additionalProperties\":false}},\"additionalProperties\":false,\"required\":[\"type\"]},{\"type\":\"object\",\"properties\":{\"type\":{\"type\":\"string\",\"enum\":[\"checkListItem\"]},\"content\":{\"$ref\":\"#/$defs/inlinecontent\"},\"props\":{\"type\":\"object\",\"properties\":{\"checked\":{\"type\":\"boolean\"}},\"additionalProperties\":false}},\"additionalProperties\":false,\"required\":[\"type\"]},{\"type\":\"object\",\"properties\":{\"type\":{\"type\":\"string\",\"enum\":[\"table\"]},\"content\":{\"type\":\"object\",\"properties\":{}},\"props\":{\"type\":\"object\",\"properties\":{},\"additionalProperties\":false}},\"additionalProperties\":false,\"required\":[\"type\"]}]}}}}}]}", + "body": "{\"model\":\"gpt-4o-2024-08-06\",\"temperature\":0,\"messages\":[{\"role\":\"system\",\"content\":\"You're manipulating a text document using JSON blocks. \\n Make sure to follow the json schema provided. When referencing ids they MUST be EXACTLY the same (including the trailing $). \\n This is the document as an array of JSON blocks (the cursor is BETWEEN two blocks as indicated by cursor: true):\"},{\"role\":\"system\",\"content\":\"[{\\\"id\\\":\\\"ref1$\\\",\\\"block\\\":{\\\"id\\\":\\\"ref1\\\",\\\"type\\\":\\\"paragraph\\\",\\\"props\\\":{\\\"textColor\\\":\\\"default\\\",\\\"backgroundColor\\\":\\\"default\\\",\\\"textAlignment\\\":\\\"left\\\"},\\\"content\\\":[]}},{\\\"cursor\\\":true}]\"},{\"role\":\"system\",\"content\":\"Because the actual document is empty, this is an example document to understand the schema:\"},{\"role\":\"system\",\"content\":\"{\\\"id\\\":\\\"ref3\\\",\\\"type\\\":\\\"paragraph\\\",\\\"content\\\":[{\\\"type\\\":\\\"text\\\",\\\"text\\\":\\\"Hello, world! \\\",\\\"styles\\\":{}},{\\\"type\\\":\\\"text\\\",\\\"text\\\":\\\"Bold text. \\\",\\\"styles\\\":{\\\"bold\\\":true}},{\\\"type\\\":\\\"link\\\",\\\"href\\\":\\\"https://www.w3.org\\\",\\\"content\\\":\\\"Link.\\\"}]}\"},{\"role\":\"system\",\"content\":\"The user asks you to do the following:\"},{\"role\":\"user\",\"content\":\"write a new paragraph with the text 'You look great today!'\"},{\"role\":\"system\",\"content\":\"First, determine what part of the document the user is talking about. You SHOULD probably take cursor info into account if needed.\\n EXAMPLE: if user says \\\"below\\\" (without pointing to a specific part of the document) he / she probably indicates the block(s) after the cursor. \\n EXAMPLE: If you want to insert content AT the cursor position (UNLESS indicated otherwise by the user), then you need `referenceId` to point to the block before the cursor with position `after` (or block below and `before`).\\n \\n Because the document is empty, first update the empty block before adding new blocks.\"}],\"tool_choice\":{\"type\":\"function\",\"function\":{\"name\":\"json\"}},\"tools\":[{\"type\":\"function\",\"function\":{\"name\":\"json\",\"description\":\"Respond with a JSON object.\",\"parameters\":{\"type\":\"object\",\"properties\":{\"operations\":{\"type\":\"array\",\"items\":{\"anyOf\":[{\"type\":\"object\",\"description\":\"Update a block, the new block will replace the existing block.\",\"properties\":{\"type\":{\"type\":\"string\",\"enum\":[\"update\"]},\"id\":{\"type\":\"string\",\"description\":\"id of block to update\"},\"block\":{\"$ref\":\"#/$defs/block\"}},\"required\":[\"type\",\"id\",\"block\"],\"additionalProperties\":false},{\"type\":\"object\",\"description\":\"Insert new blocks\",\"properties\":{\"type\":{\"type\":\"string\",\"enum\":[\"add\"]},\"referenceId\":{\"type\":\"string\",\"description\":\"MUST be an id of a block in the document\"},\"position\":{\"type\":\"string\",\"enum\":[\"before\",\"after\"],\"description\":\"`after` to add blocks AFTER (below) the block with `referenceId`, `before` to add the block BEFORE (above)\"},\"blocks\":{\"items\":{\"$ref\":\"#/$defs/block\"},\"type\":\"array\"}},\"required\":[\"type\",\"referenceId\",\"position\",\"blocks\"],\"additionalProperties\":false},{\"type\":\"object\",\"description\":\"Delete a block\",\"properties\":{\"type\":{\"type\":\"string\",\"enum\":[\"delete\"]},\"id\":{\"type\":\"string\",\"description\":\"id of block to delete\"}},\"required\":[\"type\",\"id\"],\"additionalProperties\":false}]}}},\"additionalProperties\":false,\"required\":[\"operations\"],\"$defs\":{\"styles\":{\"type\":\"object\",\"properties\":{\"bold\":{\"type\":\"boolean\"},\"italic\":{\"type\":\"boolean\"},\"underline\":{\"type\":\"boolean\"},\"strike\":{\"type\":\"boolean\"},\"code\":{\"type\":\"boolean\"},\"textColor\":{\"type\":\"string\"},\"backgroundColor\":{\"type\":\"string\"}},\"additionalProperties\":false},\"styledtext\":{\"type\":\"object\",\"properties\":{\"type\":{\"type\":\"string\",\"enum\":[\"text\"]},\"text\":{\"type\":\"string\"},\"styles\":{\"$ref\":\"#/$defs/styles\"}},\"additionalProperties\":false,\"required\":[\"type\",\"text\"]},\"inlinecontent\":{\"type\":\"array\",\"items\":{\"anyOf\":[{\"$ref\":\"#/$defs/styledtext\"},{\"type\":\"object\",\"properties\":{\"type\":{\"type\":\"string\",\"enum\":[\"link\"]},\"content\":{\"type\":\"array\",\"items\":{\"$ref\":\"#/$defs/styledtext\"}},\"href\":{\"type\":\"string\"}},\"additionalProperties\":false,\"required\":[\"type\",\"href\",\"content\"]}]}},\"block\":{\"anyOf\":[{\"type\":\"object\",\"properties\":{\"type\":{\"type\":\"string\",\"enum\":[\"paragraph\",\"quote\",\"toggleListItem\",\"bulletListItem\",\"numberedListItem\"]},\"content\":{\"$ref\":\"#/$defs/inlinecontent\"},\"props\":{\"type\":\"object\",\"properties\":{},\"additionalProperties\":false}},\"additionalProperties\":false,\"required\":[\"type\"]},{\"type\":\"object\",\"properties\":{\"type\":{\"type\":\"string\",\"enum\":[\"heading\"]},\"content\":{\"$ref\":\"#/$defs/inlinecontent\"},\"props\":{\"type\":\"object\",\"properties\":{\"level\":{\"type\":\"number\",\"enum\":[1,2,3]},\"isTogglable\":{\"type\":\"boolean\"}},\"additionalProperties\":false}},\"additionalProperties\":false,\"required\":[\"type\"]},{\"type\":\"object\",\"properties\":{\"type\":{\"type\":\"string\",\"enum\":[\"codeBlock\"]},\"content\":{\"$ref\":\"#/$defs/inlinecontent\"},\"props\":{\"type\":\"object\",\"properties\":{\"language\":{\"type\":\"string\"}},\"additionalProperties\":false}},\"additionalProperties\":false,\"required\":[\"type\"]},{\"type\":\"object\",\"properties\":{\"type\":{\"type\":\"string\",\"enum\":[\"checkListItem\"]},\"content\":{\"$ref\":\"#/$defs/inlinecontent\"},\"props\":{\"type\":\"object\",\"properties\":{\"checked\":{\"type\":\"boolean\"}},\"additionalProperties\":false}},\"additionalProperties\":false,\"required\":[\"type\"]},{\"type\":\"object\",\"properties\":{\"type\":{\"type\":\"string\",\"enum\":[\"table\"]},\"content\":{\"type\":\"object\",\"properties\":{}},\"props\":{\"type\":\"object\",\"properties\":{},\"additionalProperties\":false}},\"additionalProperties\":false,\"required\":[\"type\"]}]}}}}}]}", "headers": [], "cookies": [] }, "response": { "status": 200, "statusText": "", - "body": "{\n \"id\": \"chatcmpl-BgV8afINYCNsqWKzuBAl07UWhQIfC\",\n \"object\": \"chat.completion\",\n \"created\": 1749469168,\n \"model\": \"gpt-4o-2024-08-06\",\n \"choices\": [\n {\n \"index\": 0,\n \"message\": {\n \"role\": \"assistant\",\n \"content\": null,\n \"tool_calls\": [\n {\n \"id\": \"call_gZWPOXaC57tkjsHvPpRT1p4u\",\n \"type\": \"function\",\n \"function\": {\n \"name\": \"json\",\n \"arguments\": \"{\\\"operations\\\":[{\\\"type\\\":\\\"update\\\",\\\"id\\\":\\\"ref1$\\\",\\\"block\\\":{\\\"type\\\":\\\"paragraph\\\",\\\"content\\\":[{\\\"type\\\":\\\"text\\\",\\\"text\\\":\\\"You look great today!\\\"}]}}]}\"\n }\n }\n ],\n \"refusal\": null,\n \"annotations\": []\n },\n \"logprobs\": null,\n \"finish_reason\": \"stop\"\n }\n ],\n \"usage\": {\n \"prompt_tokens\": 891,\n \"completion_tokens\": 37,\n \"total_tokens\": 928,\n \"prompt_tokens_details\": {\n \"cached_tokens\": 0,\n \"audio_tokens\": 0\n },\n \"completion_tokens_details\": {\n \"reasoning_tokens\": 0,\n \"audio_tokens\": 0,\n \"accepted_prediction_tokens\": 0,\n \"rejected_prediction_tokens\": 0\n }\n },\n \"service_tier\": \"default\",\n \"system_fingerprint\": \"fp_a288987b44\"\n}\n", + "body": "{\n \"id\": \"chatcmpl-BhXndsRfPrWr5DSR8t96mrw1HKLw3\",\n \"object\": \"chat.completion\",\n \"created\": 1749717729,\n \"model\": \"gpt-4o-2024-08-06\",\n \"choices\": [\n {\n \"index\": 0,\n \"message\": {\n \"role\": \"assistant\",\n \"content\": null,\n \"tool_calls\": [\n {\n \"id\": \"call_0YHv5D1BwdEsmtJUOZSz7PlP\",\n \"type\": \"function\",\n \"function\": {\n \"name\": \"json\",\n \"arguments\": \"{\\\"operations\\\":[{\\\"type\\\":\\\"update\\\",\\\"id\\\":\\\"ref1$\\\",\\\"block\\\":{\\\"type\\\":\\\"paragraph\\\",\\\"content\\\":[{\\\"type\\\":\\\"text\\\",\\\"text\\\":\\\"You look great today!\\\"}]}}]}\"\n }\n }\n ],\n \"refusal\": null,\n \"annotations\": []\n },\n \"logprobs\": null,\n \"finish_reason\": \"stop\"\n }\n ],\n \"usage\": {\n \"prompt_tokens\": 919,\n \"completion_tokens\": 37,\n \"total_tokens\": 956,\n \"prompt_tokens_details\": {\n \"cached_tokens\": 0,\n \"audio_tokens\": 0\n },\n \"completion_tokens_details\": {\n \"reasoning_tokens\": 0,\n \"audio_tokens\": 0,\n \"accepted_prediction_tokens\": 0,\n \"rejected_prediction_tokens\": 0\n }\n },\n \"service_tier\": \"default\",\n \"system_fingerprint\": \"fp_a288987b44\"\n}\n", "headers": [] } } \ No newline at end of file diff --git a/packages/xl-ai/src/api/formats/json/__snapshots__/json.test.ts/Add/__msw_snapshots__/openai.chat/gpt-4o-2024-08-06 (non-streaming)/add a new paragraph (end)_1_da7cf102da03c6720d1622ee775fd9e3.json b/packages/xl-ai/src/api/formats/json/__snapshots__/json.test.ts/Add/__msw_snapshots__/openai.chat/gpt-4o-2024-08-06 (non-streaming)/add a new paragraph (end)_1_21c422d948aff3b4031ecdffe277fd5e.json similarity index 73% rename from packages/xl-ai/src/api/formats/json/__snapshots__/json.test.ts/Add/__msw_snapshots__/openai.chat/gpt-4o-2024-08-06 (non-streaming)/add a new paragraph (end)_1_da7cf102da03c6720d1622ee775fd9e3.json rename to packages/xl-ai/src/api/formats/json/__snapshots__/json.test.ts/Add/__msw_snapshots__/openai.chat/gpt-4o-2024-08-06 (non-streaming)/add a new paragraph (end)_1_21c422d948aff3b4031ecdffe277fd5e.json index 6b96c8b425..18ebc53c11 100644 --- a/packages/xl-ai/src/api/formats/json/__snapshots__/json.test.ts/Add/__msw_snapshots__/openai.chat/gpt-4o-2024-08-06 (non-streaming)/add a new paragraph (end)_1_da7cf102da03c6720d1622ee775fd9e3.json +++ b/packages/xl-ai/src/api/formats/json/__snapshots__/json.test.ts/Add/__msw_snapshots__/openai.chat/gpt-4o-2024-08-06 (non-streaming)/add a new paragraph (end)_1_21c422d948aff3b4031ecdffe277fd5e.json @@ -2,14 +2,14 @@ "request": { "method": "POST", "url": "https://localhost:3000/ai?provider=openai&url=https%3A%2F%2Fapi.openai.com%2Fv1%2Fchat%2Fcompletions", - "body": "{\"model\":\"gpt-4o-2024-08-06\",\"temperature\":0,\"messages\":[{\"role\":\"system\",\"content\":\"You're manipulating a text document using JSON blocks. \\n Make sure to follow the json schema provided. When referencing ids they MUST be EXACTLY the same (including the trailing $). \\n This is the document as an array of JSON blocks (the cursor is BETWEEN two blocks as indicated by cursor: true):\"},{\"role\":\"system\",\"content\":\"[{\\\"id\\\":\\\"ref1$\\\",\\\"block\\\":{\\\"id\\\":\\\"ref1\\\",\\\"type\\\":\\\"paragraph\\\",\\\"props\\\":{\\\"textColor\\\":\\\"default\\\",\\\"backgroundColor\\\":\\\"default\\\",\\\"textAlignment\\\":\\\"left\\\"},\\\"content\\\":[{\\\"type\\\":\\\"text\\\",\\\"text\\\":\\\"Hello, world!\\\",\\\"styles\\\":{}}]}},{\\\"cursor\\\":true},{\\\"id\\\":\\\"ref2$\\\",\\\"block\\\":{\\\"id\\\":\\\"ref2\\\",\\\"type\\\":\\\"paragraph\\\",\\\"props\\\":{\\\"textColor\\\":\\\"default\\\",\\\"backgroundColor\\\":\\\"default\\\",\\\"textAlignment\\\":\\\"left\\\"},\\\"content\\\":[{\\\"type\\\":\\\"text\\\",\\\"text\\\":\\\"How are you?\\\",\\\"styles\\\":{}}]}}]\"},{\"role\":\"system\",\"content\":\"The user asks you to do the following:\"},{\"role\":\"user\",\"content\":\"add a new paragraph with the text 'You look great today!' after the last sentence\"},{\"role\":\"system\",\"content\":\"First, determine what part of the document the user is talking about. You SHOULD probably take cursor info into account if needed.\\n EXAMPLE: if user says \\\"below\\\" (without pointing to a specific part of the document) he / she probably indicates the block(s) after the cursor. \\n EXAMPLE: If you want to insert content AT the cursor position (UNLESS indicated otherwise by the user), then you need `referenceId` to point to the block before the cursor with position `after` (or block below and `before`).\\n \\n Prefer updating existing blocks over removing and adding (but this also depends on the user's question).\"}],\"tool_choice\":{\"type\":\"function\",\"function\":{\"name\":\"json\"}},\"tools\":[{\"type\":\"function\",\"function\":{\"name\":\"json\",\"description\":\"Respond with a JSON object.\",\"parameters\":{\"type\":\"object\",\"properties\":{\"operations\":{\"type\":\"array\",\"items\":{\"anyOf\":[{\"type\":\"object\",\"description\":\"Update a block, the new block will replace the existing block.\",\"properties\":{\"type\":{\"type\":\"string\",\"enum\":[\"update\"]},\"id\":{\"type\":\"string\",\"description\":\"id of block to update\"},\"block\":{\"$ref\":\"#/$defs/block\"}},\"required\":[\"type\",\"id\",\"block\"],\"additionalProperties\":false},{\"type\":\"object\",\"description\":\"Insert new blocks\",\"properties\":{\"type\":{\"type\":\"string\",\"enum\":[\"add\"]},\"referenceId\":{\"type\":\"string\",\"description\":\"MUST be an id of a block in the document\"},\"position\":{\"type\":\"string\",\"enum\":[\"before\",\"after\"],\"description\":\"`after` to add blocks AFTER (below) the block with `referenceId`, `before` to add the block BEFORE (above)\"},\"blocks\":{\"items\":{\"$ref\":\"#/$defs/block\"},\"type\":\"array\"}},\"required\":[\"type\",\"referenceId\",\"position\",\"blocks\"],\"additionalProperties\":false},{\"type\":\"object\",\"description\":\"Delete a block\",\"properties\":{\"type\":{\"type\":\"string\",\"enum\":[\"delete\"]},\"id\":{\"type\":\"string\",\"description\":\"id of block to delete\"}},\"required\":[\"type\",\"id\"],\"additionalProperties\":false}]}}},\"additionalProperties\":false,\"required\":[\"operations\"],\"$defs\":{\"styles\":{\"type\":\"object\",\"properties\":{\"bold\":{\"type\":\"boolean\"},\"italic\":{\"type\":\"boolean\"},\"underline\":{\"type\":\"boolean\"},\"strike\":{\"type\":\"boolean\"},\"code\":{\"type\":\"boolean\"},\"textColor\":{\"type\":\"string\"},\"backgroundColor\":{\"type\":\"string\"}},\"additionalProperties\":false},\"styledtext\":{\"type\":\"object\",\"properties\":{\"type\":{\"type\":\"string\",\"enum\":[\"text\"]},\"text\":{\"type\":\"string\"},\"styles\":{\"$ref\":\"#/$defs/styles\"}},\"additionalProperties\":false,\"required\":[\"type\",\"text\"]},\"inlinecontent\":{\"type\":\"array\",\"items\":{\"anyOf\":[{\"type\":\"object\",\"properties\":{\"type\":{\"type\":\"string\",\"enum\":[\"mention\"]},\"props\":{\"type\":\"object\",\"properties\":{\"user\":{\"type\":\"string\"}},\"additionalProperties\":false}},\"additionalProperties\":false,\"required\":[\"type\"]},{\"$ref\":\"#/$defs/styledtext\"},{\"type\":\"object\",\"properties\":{\"type\":{\"type\":\"string\",\"enum\":[\"link\"]},\"content\":{\"type\":\"array\",\"items\":{\"$ref\":\"#/$defs/styledtext\"}},\"href\":{\"type\":\"string\"}},\"additionalProperties\":false,\"required\":[\"type\",\"href\",\"content\"]}]}},\"block\":{\"anyOf\":[{\"type\":\"object\",\"properties\":{\"type\":{\"type\":\"string\",\"enum\":[\"paragraph\",\"quote\",\"bulletListItem\",\"numberedListItem\"]},\"content\":{\"$ref\":\"#/$defs/inlinecontent\"},\"props\":{\"type\":\"object\",\"properties\":{},\"additionalProperties\":false}},\"additionalProperties\":false,\"required\":[\"type\"]},{\"type\":\"object\",\"properties\":{\"type\":{\"type\":\"string\",\"enum\":[\"heading\"]},\"content\":{\"$ref\":\"#/$defs/inlinecontent\"},\"props\":{\"type\":\"object\",\"properties\":{\"level\":{\"type\":\"number\",\"enum\":[1,2,3]}},\"additionalProperties\":false}},\"additionalProperties\":false,\"required\":[\"type\"]},{\"type\":\"object\",\"properties\":{\"type\":{\"type\":\"string\",\"enum\":[\"codeBlock\"]},\"content\":{\"$ref\":\"#/$defs/inlinecontent\"},\"props\":{\"type\":\"object\",\"properties\":{\"language\":{\"type\":\"string\"}},\"additionalProperties\":false}},\"additionalProperties\":false,\"required\":[\"type\"]},{\"type\":\"object\",\"properties\":{\"type\":{\"type\":\"string\",\"enum\":[\"checkListItem\"]},\"content\":{\"$ref\":\"#/$defs/inlinecontent\"},\"props\":{\"type\":\"object\",\"properties\":{\"checked\":{\"type\":\"boolean\"}},\"additionalProperties\":false}},\"additionalProperties\":false,\"required\":[\"type\"]},{\"type\":\"object\",\"properties\":{\"type\":{\"type\":\"string\",\"enum\":[\"table\"]},\"content\":{\"type\":\"object\",\"properties\":{}},\"props\":{\"type\":\"object\",\"properties\":{},\"additionalProperties\":false}},\"additionalProperties\":false,\"required\":[\"type\"]}]}}}}}]}", + "body": "{\"model\":\"gpt-4o-2024-08-06\",\"temperature\":0,\"messages\":[{\"role\":\"system\",\"content\":\"You're manipulating a text document using JSON blocks. \\n Make sure to follow the json schema provided. When referencing ids they MUST be EXACTLY the same (including the trailing $). \\n This is the document as an array of JSON blocks (the cursor is BETWEEN two blocks as indicated by cursor: true):\"},{\"role\":\"system\",\"content\":\"[{\\\"id\\\":\\\"ref1$\\\",\\\"block\\\":{\\\"id\\\":\\\"ref1\\\",\\\"type\\\":\\\"paragraph\\\",\\\"props\\\":{\\\"textColor\\\":\\\"default\\\",\\\"backgroundColor\\\":\\\"default\\\",\\\"textAlignment\\\":\\\"left\\\"},\\\"content\\\":[{\\\"type\\\":\\\"text\\\",\\\"text\\\":\\\"Hello, world!\\\",\\\"styles\\\":{}}]}},{\\\"cursor\\\":true},{\\\"id\\\":\\\"ref2$\\\",\\\"block\\\":{\\\"id\\\":\\\"ref2\\\",\\\"type\\\":\\\"paragraph\\\",\\\"props\\\":{\\\"textColor\\\":\\\"default\\\",\\\"backgroundColor\\\":\\\"default\\\",\\\"textAlignment\\\":\\\"left\\\"},\\\"content\\\":[{\\\"type\\\":\\\"text\\\",\\\"text\\\":\\\"How are you?\\\",\\\"styles\\\":{}}]}}]\"},{\"role\":\"system\",\"content\":\"The user asks you to do the following:\"},{\"role\":\"user\",\"content\":\"add a new paragraph with the text 'You look great today!' after the last sentence\"},{\"role\":\"system\",\"content\":\"First, determine what part of the document the user is talking about. You SHOULD probably take cursor info into account if needed.\\n EXAMPLE: if user says \\\"below\\\" (without pointing to a specific part of the document) he / she probably indicates the block(s) after the cursor. \\n EXAMPLE: If you want to insert content AT the cursor position (UNLESS indicated otherwise by the user), then you need `referenceId` to point to the block before the cursor with position `after` (or block below and `before`).\\n \\n Prefer updating existing blocks over removing and adding (but this also depends on the user's question).\"}],\"tool_choice\":{\"type\":\"function\",\"function\":{\"name\":\"json\"}},\"tools\":[{\"type\":\"function\",\"function\":{\"name\":\"json\",\"description\":\"Respond with a JSON object.\",\"parameters\":{\"type\":\"object\",\"properties\":{\"operations\":{\"type\":\"array\",\"items\":{\"anyOf\":[{\"type\":\"object\",\"description\":\"Update a block, the new block will replace the existing block.\",\"properties\":{\"type\":{\"type\":\"string\",\"enum\":[\"update\"]},\"id\":{\"type\":\"string\",\"description\":\"id of block to update\"},\"block\":{\"$ref\":\"#/$defs/block\"}},\"required\":[\"type\",\"id\",\"block\"],\"additionalProperties\":false},{\"type\":\"object\",\"description\":\"Insert new blocks\",\"properties\":{\"type\":{\"type\":\"string\",\"enum\":[\"add\"]},\"referenceId\":{\"type\":\"string\",\"description\":\"MUST be an id of a block in the document\"},\"position\":{\"type\":\"string\",\"enum\":[\"before\",\"after\"],\"description\":\"`after` to add blocks AFTER (below) the block with `referenceId`, `before` to add the block BEFORE (above)\"},\"blocks\":{\"items\":{\"$ref\":\"#/$defs/block\"},\"type\":\"array\"}},\"required\":[\"type\",\"referenceId\",\"position\",\"blocks\"],\"additionalProperties\":false},{\"type\":\"object\",\"description\":\"Delete a block\",\"properties\":{\"type\":{\"type\":\"string\",\"enum\":[\"delete\"]},\"id\":{\"type\":\"string\",\"description\":\"id of block to delete\"}},\"required\":[\"type\",\"id\"],\"additionalProperties\":false}]}}},\"additionalProperties\":false,\"required\":[\"operations\"],\"$defs\":{\"styles\":{\"type\":\"object\",\"properties\":{\"bold\":{\"type\":\"boolean\"},\"italic\":{\"type\":\"boolean\"},\"underline\":{\"type\":\"boolean\"},\"strike\":{\"type\":\"boolean\"},\"code\":{\"type\":\"boolean\"},\"textColor\":{\"type\":\"string\"},\"backgroundColor\":{\"type\":\"string\"}},\"additionalProperties\":false},\"styledtext\":{\"type\":\"object\",\"properties\":{\"type\":{\"type\":\"string\",\"enum\":[\"text\"]},\"text\":{\"type\":\"string\"},\"styles\":{\"$ref\":\"#/$defs/styles\"}},\"additionalProperties\":false,\"required\":[\"type\",\"text\"]},\"inlinecontent\":{\"type\":\"array\",\"items\":{\"anyOf\":[{\"type\":\"object\",\"properties\":{\"type\":{\"type\":\"string\",\"enum\":[\"mention\"]},\"props\":{\"type\":\"object\",\"properties\":{\"user\":{\"type\":\"string\"}},\"additionalProperties\":false}},\"additionalProperties\":false,\"required\":[\"type\"]},{\"$ref\":\"#/$defs/styledtext\"},{\"type\":\"object\",\"properties\":{\"type\":{\"type\":\"string\",\"enum\":[\"link\"]},\"content\":{\"type\":\"array\",\"items\":{\"$ref\":\"#/$defs/styledtext\"}},\"href\":{\"type\":\"string\"}},\"additionalProperties\":false,\"required\":[\"type\",\"href\",\"content\"]}]}},\"block\":{\"anyOf\":[{\"type\":\"object\",\"properties\":{\"type\":{\"type\":\"string\",\"enum\":[\"paragraph\",\"quote\",\"toggleListItem\",\"bulletListItem\",\"numberedListItem\"]},\"content\":{\"$ref\":\"#/$defs/inlinecontent\"},\"props\":{\"type\":\"object\",\"properties\":{},\"additionalProperties\":false}},\"additionalProperties\":false,\"required\":[\"type\"]},{\"type\":\"object\",\"properties\":{\"type\":{\"type\":\"string\",\"enum\":[\"heading\"]},\"content\":{\"$ref\":\"#/$defs/inlinecontent\"},\"props\":{\"type\":\"object\",\"properties\":{\"level\":{\"type\":\"number\",\"enum\":[1,2,3]},\"isTogglable\":{\"type\":\"boolean\"}},\"additionalProperties\":false}},\"additionalProperties\":false,\"required\":[\"type\"]},{\"type\":\"object\",\"properties\":{\"type\":{\"type\":\"string\",\"enum\":[\"codeBlock\"]},\"content\":{\"$ref\":\"#/$defs/inlinecontent\"},\"props\":{\"type\":\"object\",\"properties\":{\"language\":{\"type\":\"string\"}},\"additionalProperties\":false}},\"additionalProperties\":false,\"required\":[\"type\"]},{\"type\":\"object\",\"properties\":{\"type\":{\"type\":\"string\",\"enum\":[\"checkListItem\"]},\"content\":{\"$ref\":\"#/$defs/inlinecontent\"},\"props\":{\"type\":\"object\",\"properties\":{\"checked\":{\"type\":\"boolean\"}},\"additionalProperties\":false}},\"additionalProperties\":false,\"required\":[\"type\"]},{\"type\":\"object\",\"properties\":{\"type\":{\"type\":\"string\",\"enum\":[\"table\"]},\"content\":{\"type\":\"object\",\"properties\":{}},\"props\":{\"type\":\"object\",\"properties\":{},\"additionalProperties\":false}},\"additionalProperties\":false,\"required\":[\"type\"]}]}}}}}]}", "headers": [], "cookies": [] }, "response": { "status": 200, "statusText": "", - "body": "{\n \"id\": \"chatcmpl-BgV8YMGOs3A0htdAn6OP2d8ycrVEF\",\n \"object\": \"chat.completion\",\n \"created\": 1749469166,\n \"model\": \"gpt-4o-2024-08-06\",\n \"choices\": [\n {\n \"index\": 0,\n \"message\": {\n \"role\": \"assistant\",\n \"content\": null,\n \"tool_calls\": [\n {\n \"id\": \"call_VD17Pog5utIqC5LEwPVRNnNi\",\n \"type\": \"function\",\n \"function\": {\n \"name\": \"json\",\n \"arguments\": \"{\\\"operations\\\":[{\\\"type\\\":\\\"add\\\",\\\"referenceId\\\":\\\"ref2$\\\",\\\"position\\\":\\\"after\\\",\\\"blocks\\\":[{\\\"type\\\":\\\"paragraph\\\",\\\"content\\\":[{\\\"type\\\":\\\"text\\\",\\\"text\\\":\\\"You look great today!\\\"}]}]}]}\"\n }\n }\n ],\n \"refusal\": null,\n \"annotations\": []\n },\n \"logprobs\": null,\n \"finish_reason\": \"stop\"\n }\n ],\n \"usage\": {\n \"prompt_tokens\": 1000,\n \"completion_tokens\": 44,\n \"total_tokens\": 1044,\n \"prompt_tokens_details\": {\n \"cached_tokens\": 0,\n \"audio_tokens\": 0\n },\n \"completion_tokens_details\": {\n \"reasoning_tokens\": 0,\n \"audio_tokens\": 0,\n \"accepted_prediction_tokens\": 0,\n \"rejected_prediction_tokens\": 0\n }\n },\n \"service_tier\": \"default\",\n \"system_fingerprint\": \"fp_a288987b44\"\n}\n", + "body": "{\n \"id\": \"chatcmpl-BhXnZnS3kyqlr7ohNn5Ea1TmvzzXV\",\n \"object\": \"chat.completion\",\n \"created\": 1749717725,\n \"model\": \"gpt-4o-2024-08-06\",\n \"choices\": [\n {\n \"index\": 0,\n \"message\": {\n \"role\": \"assistant\",\n \"content\": null,\n \"tool_calls\": [\n {\n \"id\": \"call_DU2t7qSTBNMzmmbFI1z9mRhU\",\n \"type\": \"function\",\n \"function\": {\n \"name\": \"json\",\n \"arguments\": \"{\\\"operations\\\":[{\\\"type\\\":\\\"add\\\",\\\"referenceId\\\":\\\"ref2$\\\",\\\"position\\\":\\\"after\\\",\\\"blocks\\\":[{\\\"type\\\":\\\"paragraph\\\",\\\"content\\\":[{\\\"type\\\":\\\"text\\\",\\\"text\\\":\\\"You look great today!\\\"}]}]}]}\"\n }\n }\n ],\n \"refusal\": null,\n \"annotations\": []\n },\n \"logprobs\": null,\n \"finish_reason\": \"stop\"\n }\n ],\n \"usage\": {\n \"prompt_tokens\": 1028,\n \"completion_tokens\": 44,\n \"total_tokens\": 1072,\n \"prompt_tokens_details\": {\n \"cached_tokens\": 1024,\n \"audio_tokens\": 0\n },\n \"completion_tokens_details\": {\n \"reasoning_tokens\": 0,\n \"audio_tokens\": 0,\n \"accepted_prediction_tokens\": 0,\n \"rejected_prediction_tokens\": 0\n }\n },\n \"service_tier\": \"default\",\n \"system_fingerprint\": \"fp_a288987b44\"\n}\n", "headers": [] } } \ No newline at end of file diff --git a/packages/xl-ai/src/api/formats/json/__snapshots__/json.test.ts/Add/__msw_snapshots__/openai.chat/gpt-4o-2024-08-06 (non-streaming)/add a new paragraph (start)_1_bf855370e65f4e83c5b0c4c60c1fcaf7.json b/packages/xl-ai/src/api/formats/json/__snapshots__/json.test.ts/Add/__msw_snapshots__/openai.chat/gpt-4o-2024-08-06 (non-streaming)/add a new paragraph (start)_1_30627de1de8d2aa1a3a2966a1e038f94.json similarity index 72% rename from packages/xl-ai/src/api/formats/json/__snapshots__/json.test.ts/Add/__msw_snapshots__/openai.chat/gpt-4o-2024-08-06 (non-streaming)/add a new paragraph (start)_1_bf855370e65f4e83c5b0c4c60c1fcaf7.json rename to packages/xl-ai/src/api/formats/json/__snapshots__/json.test.ts/Add/__msw_snapshots__/openai.chat/gpt-4o-2024-08-06 (non-streaming)/add a new paragraph (start)_1_30627de1de8d2aa1a3a2966a1e038f94.json index 8267e1d6e3..867eb7c8fb 100644 --- a/packages/xl-ai/src/api/formats/json/__snapshots__/json.test.ts/Add/__msw_snapshots__/openai.chat/gpt-4o-2024-08-06 (non-streaming)/add a new paragraph (start)_1_bf855370e65f4e83c5b0c4c60c1fcaf7.json +++ b/packages/xl-ai/src/api/formats/json/__snapshots__/json.test.ts/Add/__msw_snapshots__/openai.chat/gpt-4o-2024-08-06 (non-streaming)/add a new paragraph (start)_1_30627de1de8d2aa1a3a2966a1e038f94.json @@ -2,14 +2,14 @@ "request": { "method": "POST", "url": "https://localhost:3000/ai?provider=openai&url=https%3A%2F%2Fapi.openai.com%2Fv1%2Fchat%2Fcompletions", - "body": "{\"model\":\"gpt-4o-2024-08-06\",\"temperature\":0,\"messages\":[{\"role\":\"system\",\"content\":\"You're manipulating a text document using JSON blocks. \\n Make sure to follow the json schema provided. When referencing ids they MUST be EXACTLY the same (including the trailing $). \\n This is the document as an array of JSON blocks (the cursor is BETWEEN two blocks as indicated by cursor: true):\"},{\"role\":\"system\",\"content\":\"[{\\\"id\\\":\\\"ref1$\\\",\\\"block\\\":{\\\"id\\\":\\\"ref1\\\",\\\"type\\\":\\\"paragraph\\\",\\\"props\\\":{\\\"textColor\\\":\\\"default\\\",\\\"backgroundColor\\\":\\\"default\\\",\\\"textAlignment\\\":\\\"left\\\"},\\\"content\\\":[{\\\"type\\\":\\\"text\\\",\\\"text\\\":\\\"Hello, world!\\\",\\\"styles\\\":{}}]}},{\\\"cursor\\\":true},{\\\"id\\\":\\\"ref2$\\\",\\\"block\\\":{\\\"id\\\":\\\"ref2\\\",\\\"type\\\":\\\"paragraph\\\",\\\"props\\\":{\\\"textColor\\\":\\\"default\\\",\\\"backgroundColor\\\":\\\"default\\\",\\\"textAlignment\\\":\\\"left\\\"},\\\"content\\\":[{\\\"type\\\":\\\"text\\\",\\\"text\\\":\\\"How are you?\\\",\\\"styles\\\":{}}]}}]\"},{\"role\":\"system\",\"content\":\"The user asks you to do the following:\"},{\"role\":\"user\",\"content\":\"add a new paragraph with the text 'You look great today!' before the first sentence\"},{\"role\":\"system\",\"content\":\"First, determine what part of the document the user is talking about. You SHOULD probably take cursor info into account if needed.\\n EXAMPLE: if user says \\\"below\\\" (without pointing to a specific part of the document) he / she probably indicates the block(s) after the cursor. \\n EXAMPLE: If you want to insert content AT the cursor position (UNLESS indicated otherwise by the user), then you need `referenceId` to point to the block before the cursor with position `after` (or block below and `before`).\\n \\n Prefer updating existing blocks over removing and adding (but this also depends on the user's question).\"}],\"tool_choice\":{\"type\":\"function\",\"function\":{\"name\":\"json\"}},\"tools\":[{\"type\":\"function\",\"function\":{\"name\":\"json\",\"description\":\"Respond with a JSON object.\",\"parameters\":{\"type\":\"object\",\"properties\":{\"operations\":{\"type\":\"array\",\"items\":{\"anyOf\":[{\"type\":\"object\",\"description\":\"Update a block, the new block will replace the existing block.\",\"properties\":{\"type\":{\"type\":\"string\",\"enum\":[\"update\"]},\"id\":{\"type\":\"string\",\"description\":\"id of block to update\"},\"block\":{\"$ref\":\"#/$defs/block\"}},\"required\":[\"type\",\"id\",\"block\"],\"additionalProperties\":false},{\"type\":\"object\",\"description\":\"Insert new blocks\",\"properties\":{\"type\":{\"type\":\"string\",\"enum\":[\"add\"]},\"referenceId\":{\"type\":\"string\",\"description\":\"MUST be an id of a block in the document\"},\"position\":{\"type\":\"string\",\"enum\":[\"before\",\"after\"],\"description\":\"`after` to add blocks AFTER (below) the block with `referenceId`, `before` to add the block BEFORE (above)\"},\"blocks\":{\"items\":{\"$ref\":\"#/$defs/block\"},\"type\":\"array\"}},\"required\":[\"type\",\"referenceId\",\"position\",\"blocks\"],\"additionalProperties\":false},{\"type\":\"object\",\"description\":\"Delete a block\",\"properties\":{\"type\":{\"type\":\"string\",\"enum\":[\"delete\"]},\"id\":{\"type\":\"string\",\"description\":\"id of block to delete\"}},\"required\":[\"type\",\"id\"],\"additionalProperties\":false}]}}},\"additionalProperties\":false,\"required\":[\"operations\"],\"$defs\":{\"styles\":{\"type\":\"object\",\"properties\":{\"bold\":{\"type\":\"boolean\"},\"italic\":{\"type\":\"boolean\"},\"underline\":{\"type\":\"boolean\"},\"strike\":{\"type\":\"boolean\"},\"code\":{\"type\":\"boolean\"},\"textColor\":{\"type\":\"string\"},\"backgroundColor\":{\"type\":\"string\"}},\"additionalProperties\":false},\"styledtext\":{\"type\":\"object\",\"properties\":{\"type\":{\"type\":\"string\",\"enum\":[\"text\"]},\"text\":{\"type\":\"string\"},\"styles\":{\"$ref\":\"#/$defs/styles\"}},\"additionalProperties\":false,\"required\":[\"type\",\"text\"]},\"inlinecontent\":{\"type\":\"array\",\"items\":{\"anyOf\":[{\"type\":\"object\",\"properties\":{\"type\":{\"type\":\"string\",\"enum\":[\"mention\"]},\"props\":{\"type\":\"object\",\"properties\":{\"user\":{\"type\":\"string\"}},\"additionalProperties\":false}},\"additionalProperties\":false,\"required\":[\"type\"]},{\"$ref\":\"#/$defs/styledtext\"},{\"type\":\"object\",\"properties\":{\"type\":{\"type\":\"string\",\"enum\":[\"link\"]},\"content\":{\"type\":\"array\",\"items\":{\"$ref\":\"#/$defs/styledtext\"}},\"href\":{\"type\":\"string\"}},\"additionalProperties\":false,\"required\":[\"type\",\"href\",\"content\"]}]}},\"block\":{\"anyOf\":[{\"type\":\"object\",\"properties\":{\"type\":{\"type\":\"string\",\"enum\":[\"paragraph\",\"quote\",\"bulletListItem\",\"numberedListItem\"]},\"content\":{\"$ref\":\"#/$defs/inlinecontent\"},\"props\":{\"type\":\"object\",\"properties\":{},\"additionalProperties\":false}},\"additionalProperties\":false,\"required\":[\"type\"]},{\"type\":\"object\",\"properties\":{\"type\":{\"type\":\"string\",\"enum\":[\"heading\"]},\"content\":{\"$ref\":\"#/$defs/inlinecontent\"},\"props\":{\"type\":\"object\",\"properties\":{\"level\":{\"type\":\"number\",\"enum\":[1,2,3]}},\"additionalProperties\":false}},\"additionalProperties\":false,\"required\":[\"type\"]},{\"type\":\"object\",\"properties\":{\"type\":{\"type\":\"string\",\"enum\":[\"codeBlock\"]},\"content\":{\"$ref\":\"#/$defs/inlinecontent\"},\"props\":{\"type\":\"object\",\"properties\":{\"language\":{\"type\":\"string\"}},\"additionalProperties\":false}},\"additionalProperties\":false,\"required\":[\"type\"]},{\"type\":\"object\",\"properties\":{\"type\":{\"type\":\"string\",\"enum\":[\"checkListItem\"]},\"content\":{\"$ref\":\"#/$defs/inlinecontent\"},\"props\":{\"type\":\"object\",\"properties\":{\"checked\":{\"type\":\"boolean\"}},\"additionalProperties\":false}},\"additionalProperties\":false,\"required\":[\"type\"]},{\"type\":\"object\",\"properties\":{\"type\":{\"type\":\"string\",\"enum\":[\"table\"]},\"content\":{\"type\":\"object\",\"properties\":{}},\"props\":{\"type\":\"object\",\"properties\":{},\"additionalProperties\":false}},\"additionalProperties\":false,\"required\":[\"type\"]}]}}}}}]}", + "body": "{\"model\":\"gpt-4o-2024-08-06\",\"temperature\":0,\"messages\":[{\"role\":\"system\",\"content\":\"You're manipulating a text document using JSON blocks. \\n Make sure to follow the json schema provided. When referencing ids they MUST be EXACTLY the same (including the trailing $). \\n This is the document as an array of JSON blocks (the cursor is BETWEEN two blocks as indicated by cursor: true):\"},{\"role\":\"system\",\"content\":\"[{\\\"id\\\":\\\"ref1$\\\",\\\"block\\\":{\\\"id\\\":\\\"ref1\\\",\\\"type\\\":\\\"paragraph\\\",\\\"props\\\":{\\\"textColor\\\":\\\"default\\\",\\\"backgroundColor\\\":\\\"default\\\",\\\"textAlignment\\\":\\\"left\\\"},\\\"content\\\":[{\\\"type\\\":\\\"text\\\",\\\"text\\\":\\\"Hello, world!\\\",\\\"styles\\\":{}}]}},{\\\"cursor\\\":true},{\\\"id\\\":\\\"ref2$\\\",\\\"block\\\":{\\\"id\\\":\\\"ref2\\\",\\\"type\\\":\\\"paragraph\\\",\\\"props\\\":{\\\"textColor\\\":\\\"default\\\",\\\"backgroundColor\\\":\\\"default\\\",\\\"textAlignment\\\":\\\"left\\\"},\\\"content\\\":[{\\\"type\\\":\\\"text\\\",\\\"text\\\":\\\"How are you?\\\",\\\"styles\\\":{}}]}}]\"},{\"role\":\"system\",\"content\":\"The user asks you to do the following:\"},{\"role\":\"user\",\"content\":\"add a new paragraph with the text 'You look great today!' before the first sentence\"},{\"role\":\"system\",\"content\":\"First, determine what part of the document the user is talking about. You SHOULD probably take cursor info into account if needed.\\n EXAMPLE: if user says \\\"below\\\" (without pointing to a specific part of the document) he / she probably indicates the block(s) after the cursor. \\n EXAMPLE: If you want to insert content AT the cursor position (UNLESS indicated otherwise by the user), then you need `referenceId` to point to the block before the cursor with position `after` (or block below and `before`).\\n \\n Prefer updating existing blocks over removing and adding (but this also depends on the user's question).\"}],\"tool_choice\":{\"type\":\"function\",\"function\":{\"name\":\"json\"}},\"tools\":[{\"type\":\"function\",\"function\":{\"name\":\"json\",\"description\":\"Respond with a JSON object.\",\"parameters\":{\"type\":\"object\",\"properties\":{\"operations\":{\"type\":\"array\",\"items\":{\"anyOf\":[{\"type\":\"object\",\"description\":\"Update a block, the new block will replace the existing block.\",\"properties\":{\"type\":{\"type\":\"string\",\"enum\":[\"update\"]},\"id\":{\"type\":\"string\",\"description\":\"id of block to update\"},\"block\":{\"$ref\":\"#/$defs/block\"}},\"required\":[\"type\",\"id\",\"block\"],\"additionalProperties\":false},{\"type\":\"object\",\"description\":\"Insert new blocks\",\"properties\":{\"type\":{\"type\":\"string\",\"enum\":[\"add\"]},\"referenceId\":{\"type\":\"string\",\"description\":\"MUST be an id of a block in the document\"},\"position\":{\"type\":\"string\",\"enum\":[\"before\",\"after\"],\"description\":\"`after` to add blocks AFTER (below) the block with `referenceId`, `before` to add the block BEFORE (above)\"},\"blocks\":{\"items\":{\"$ref\":\"#/$defs/block\"},\"type\":\"array\"}},\"required\":[\"type\",\"referenceId\",\"position\",\"blocks\"],\"additionalProperties\":false},{\"type\":\"object\",\"description\":\"Delete a block\",\"properties\":{\"type\":{\"type\":\"string\",\"enum\":[\"delete\"]},\"id\":{\"type\":\"string\",\"description\":\"id of block to delete\"}},\"required\":[\"type\",\"id\"],\"additionalProperties\":false}]}}},\"additionalProperties\":false,\"required\":[\"operations\"],\"$defs\":{\"styles\":{\"type\":\"object\",\"properties\":{\"bold\":{\"type\":\"boolean\"},\"italic\":{\"type\":\"boolean\"},\"underline\":{\"type\":\"boolean\"},\"strike\":{\"type\":\"boolean\"},\"code\":{\"type\":\"boolean\"},\"textColor\":{\"type\":\"string\"},\"backgroundColor\":{\"type\":\"string\"}},\"additionalProperties\":false},\"styledtext\":{\"type\":\"object\",\"properties\":{\"type\":{\"type\":\"string\",\"enum\":[\"text\"]},\"text\":{\"type\":\"string\"},\"styles\":{\"$ref\":\"#/$defs/styles\"}},\"additionalProperties\":false,\"required\":[\"type\",\"text\"]},\"inlinecontent\":{\"type\":\"array\",\"items\":{\"anyOf\":[{\"type\":\"object\",\"properties\":{\"type\":{\"type\":\"string\",\"enum\":[\"mention\"]},\"props\":{\"type\":\"object\",\"properties\":{\"user\":{\"type\":\"string\"}},\"additionalProperties\":false}},\"additionalProperties\":false,\"required\":[\"type\"]},{\"$ref\":\"#/$defs/styledtext\"},{\"type\":\"object\",\"properties\":{\"type\":{\"type\":\"string\",\"enum\":[\"link\"]},\"content\":{\"type\":\"array\",\"items\":{\"$ref\":\"#/$defs/styledtext\"}},\"href\":{\"type\":\"string\"}},\"additionalProperties\":false,\"required\":[\"type\",\"href\",\"content\"]}]}},\"block\":{\"anyOf\":[{\"type\":\"object\",\"properties\":{\"type\":{\"type\":\"string\",\"enum\":[\"paragraph\",\"quote\",\"toggleListItem\",\"bulletListItem\",\"numberedListItem\"]},\"content\":{\"$ref\":\"#/$defs/inlinecontent\"},\"props\":{\"type\":\"object\",\"properties\":{},\"additionalProperties\":false}},\"additionalProperties\":false,\"required\":[\"type\"]},{\"type\":\"object\",\"properties\":{\"type\":{\"type\":\"string\",\"enum\":[\"heading\"]},\"content\":{\"$ref\":\"#/$defs/inlinecontent\"},\"props\":{\"type\":\"object\",\"properties\":{\"level\":{\"type\":\"number\",\"enum\":[1,2,3]},\"isTogglable\":{\"type\":\"boolean\"}},\"additionalProperties\":false}},\"additionalProperties\":false,\"required\":[\"type\"]},{\"type\":\"object\",\"properties\":{\"type\":{\"type\":\"string\",\"enum\":[\"codeBlock\"]},\"content\":{\"$ref\":\"#/$defs/inlinecontent\"},\"props\":{\"type\":\"object\",\"properties\":{\"language\":{\"type\":\"string\"}},\"additionalProperties\":false}},\"additionalProperties\":false,\"required\":[\"type\"]},{\"type\":\"object\",\"properties\":{\"type\":{\"type\":\"string\",\"enum\":[\"checkListItem\"]},\"content\":{\"$ref\":\"#/$defs/inlinecontent\"},\"props\":{\"type\":\"object\",\"properties\":{\"checked\":{\"type\":\"boolean\"}},\"additionalProperties\":false}},\"additionalProperties\":false,\"required\":[\"type\"]},{\"type\":\"object\",\"properties\":{\"type\":{\"type\":\"string\",\"enum\":[\"table\"]},\"content\":{\"type\":\"object\",\"properties\":{}},\"props\":{\"type\":\"object\",\"properties\":{},\"additionalProperties\":false}},\"additionalProperties\":false,\"required\":[\"type\"]}]}}}}}]}", "headers": [], "cookies": [] }, "response": { "status": 200, "statusText": "", - "body": "{\n \"id\": \"chatcmpl-BgV8X5LyHy7iEKw4WjOklltxqt745\",\n \"object\": \"chat.completion\",\n \"created\": 1749469165,\n \"model\": \"gpt-4o-2024-08-06\",\n \"choices\": [\n {\n \"index\": 0,\n \"message\": {\n \"role\": \"assistant\",\n \"content\": null,\n \"tool_calls\": [\n {\n \"id\": \"call_RczAJozKMICXf5ElJDUwypoF\",\n \"type\": \"function\",\n \"function\": {\n \"name\": \"json\",\n \"arguments\": \"{\\\"operations\\\":[{\\\"type\\\":\\\"add\\\",\\\"referenceId\\\":\\\"ref1$\\\",\\\"position\\\":\\\"before\\\",\\\"blocks\\\":[{\\\"type\\\":\\\"paragraph\\\",\\\"content\\\":[{\\\"type\\\":\\\"text\\\",\\\"text\\\":\\\"You look great today!\\\"}]}]}]}\"\n }\n }\n ],\n \"refusal\": null,\n \"annotations\": []\n },\n \"logprobs\": null,\n \"finish_reason\": \"stop\"\n }\n ],\n \"usage\": {\n \"prompt_tokens\": 1000,\n \"completion_tokens\": 44,\n \"total_tokens\": 1044,\n \"prompt_tokens_details\": {\n \"cached_tokens\": 0,\n \"audio_tokens\": 0\n },\n \"completion_tokens_details\": {\n \"reasoning_tokens\": 0,\n \"audio_tokens\": 0,\n \"accepted_prediction_tokens\": 0,\n \"rejected_prediction_tokens\": 0\n }\n },\n \"service_tier\": \"default\",\n \"system_fingerprint\": \"fp_a288987b44\"\n}\n", + "body": "{\n \"id\": \"chatcmpl-BhXnXvpUbcca6S3XYWFAwbn8MxgpG\",\n \"object\": \"chat.completion\",\n \"created\": 1749717723,\n \"model\": \"gpt-4o-2024-08-06\",\n \"choices\": [\n {\n \"index\": 0,\n \"message\": {\n \"role\": \"assistant\",\n \"content\": null,\n \"tool_calls\": [\n {\n \"id\": \"call_AdAkJScLC0EdwPcZmXrqZJUE\",\n \"type\": \"function\",\n \"function\": {\n \"name\": \"json\",\n \"arguments\": \"{\\\"operations\\\":[{\\\"type\\\":\\\"add\\\",\\\"referenceId\\\":\\\"ref1$\\\",\\\"position\\\":\\\"before\\\",\\\"blocks\\\":[{\\\"type\\\":\\\"paragraph\\\",\\\"content\\\":[{\\\"type\\\":\\\"text\\\",\\\"text\\\":\\\"You look great today!\\\"}]}]}]}\"\n }\n }\n ],\n \"refusal\": null,\n \"annotations\": []\n },\n \"logprobs\": null,\n \"finish_reason\": \"stop\"\n }\n ],\n \"usage\": {\n \"prompt_tokens\": 1028,\n \"completion_tokens\": 44,\n \"total_tokens\": 1072,\n \"prompt_tokens_details\": {\n \"cached_tokens\": 1024,\n \"audio_tokens\": 0\n },\n \"completion_tokens_details\": {\n \"reasoning_tokens\": 0,\n \"audio_tokens\": 0,\n \"accepted_prediction_tokens\": 0,\n \"rejected_prediction_tokens\": 0\n }\n },\n \"service_tier\": \"default\",\n \"system_fingerprint\": \"fp_a288987b44\"\n}\n", "headers": [] } } \ No newline at end of file diff --git a/packages/xl-ai/src/api/formats/json/__snapshots__/json.test.ts/Add/__msw_snapshots__/openai.chat/gpt-4o-2024-08-06 (streaming)/Add heading (h1) and code block_1_c767e4bdf809979c479b2633c1dff0be.json b/packages/xl-ai/src/api/formats/json/__snapshots__/json.test.ts/Add/__msw_snapshots__/openai.chat/gpt-4o-2024-08-06 (streaming)/Add heading (h1) and code block_1_6bfc033f2d5eb6fcf39ce9aa29fa02c3.json similarity index 62% rename from packages/xl-ai/src/api/formats/json/__snapshots__/json.test.ts/Add/__msw_snapshots__/openai.chat/gpt-4o-2024-08-06 (streaming)/Add heading (h1) and code block_1_c767e4bdf809979c479b2633c1dff0be.json rename to packages/xl-ai/src/api/formats/json/__snapshots__/json.test.ts/Add/__msw_snapshots__/openai.chat/gpt-4o-2024-08-06 (streaming)/Add heading (h1) and code block_1_6bfc033f2d5eb6fcf39ce9aa29fa02c3.json index 51e7263ccd..d812c5c1aa 100644 --- a/packages/xl-ai/src/api/formats/json/__snapshots__/json.test.ts/Add/__msw_snapshots__/openai.chat/gpt-4o-2024-08-06 (streaming)/Add heading (h1) and code block_1_c767e4bdf809979c479b2633c1dff0be.json +++ b/packages/xl-ai/src/api/formats/json/__snapshots__/json.test.ts/Add/__msw_snapshots__/openai.chat/gpt-4o-2024-08-06 (streaming)/Add heading (h1) and code block_1_6bfc033f2d5eb6fcf39ce9aa29fa02c3.json @@ -2,14 +2,14 @@ "request": { "method": "POST", "url": "https://localhost:3000/ai?provider=openai&url=https%3A%2F%2Fapi.openai.com%2Fv1%2Fchat%2Fcompletions", - "body": "{\"model\":\"gpt-4o-2024-08-06\",\"temperature\":0,\"messages\":[{\"role\":\"system\",\"content\":\"You're manipulating a text document using JSON blocks. \\n Make sure to follow the json schema provided. When referencing ids they MUST be EXACTLY the same (including the trailing $). \\n This is the document as an array of JSON blocks (the cursor is BETWEEN two blocks as indicated by cursor: true):\"},{\"role\":\"system\",\"content\":\"[{\\\"id\\\":\\\"ref1$\\\",\\\"block\\\":{\\\"id\\\":\\\"ref1\\\",\\\"type\\\":\\\"paragraph\\\",\\\"props\\\":{\\\"textColor\\\":\\\"default\\\",\\\"backgroundColor\\\":\\\"default\\\",\\\"textAlignment\\\":\\\"left\\\"},\\\"content\\\":[{\\\"type\\\":\\\"text\\\",\\\"text\\\":\\\"Hello, world!\\\",\\\"styles\\\":{}}]}},{\\\"cursor\\\":true},{\\\"id\\\":\\\"ref2$\\\",\\\"block\\\":{\\\"id\\\":\\\"ref2\\\",\\\"type\\\":\\\"paragraph\\\",\\\"props\\\":{\\\"textColor\\\":\\\"default\\\",\\\"backgroundColor\\\":\\\"default\\\",\\\"textAlignment\\\":\\\"left\\\"},\\\"content\\\":[{\\\"type\\\":\\\"text\\\",\\\"text\\\":\\\"How are you?\\\",\\\"styles\\\":{}}]}}]\"},{\"role\":\"system\",\"content\":\"The user asks you to do the following:\"},{\"role\":\"user\",\"content\":\"at the end of doc, add a h1 heading `Code` and a javascript code block with `console.log('hello world');`\"},{\"role\":\"system\",\"content\":\"First, determine what part of the document the user is talking about. You SHOULD probably take cursor info into account if needed.\\n EXAMPLE: if user says \\\"below\\\" (without pointing to a specific part of the document) he / she probably indicates the block(s) after the cursor. \\n EXAMPLE: If you want to insert content AT the cursor position (UNLESS indicated otherwise by the user), then you need `referenceId` to point to the block before the cursor with position `after` (or block below and `before`).\\n \\n Prefer updating existing blocks over removing and adding (but this also depends on the user's question).\"}],\"tool_choice\":{\"type\":\"function\",\"function\":{\"name\":\"json\"}},\"tools\":[{\"type\":\"function\",\"function\":{\"name\":\"json\",\"description\":\"Respond with a JSON object.\",\"parameters\":{\"type\":\"object\",\"properties\":{\"operations\":{\"type\":\"array\",\"items\":{\"anyOf\":[{\"type\":\"object\",\"description\":\"Update a block, the new block will replace the existing block.\",\"properties\":{\"type\":{\"type\":\"string\",\"enum\":[\"update\"]},\"id\":{\"type\":\"string\",\"description\":\"id of block to update\"},\"block\":{\"$ref\":\"#/$defs/block\"}},\"required\":[\"type\",\"id\",\"block\"],\"additionalProperties\":false},{\"type\":\"object\",\"description\":\"Insert new blocks\",\"properties\":{\"type\":{\"type\":\"string\",\"enum\":[\"add\"]},\"referenceId\":{\"type\":\"string\",\"description\":\"MUST be an id of a block in the document\"},\"position\":{\"type\":\"string\",\"enum\":[\"before\",\"after\"],\"description\":\"`after` to add blocks AFTER (below) the block with `referenceId`, `before` to add the block BEFORE (above)\"},\"blocks\":{\"items\":{\"$ref\":\"#/$defs/block\"},\"type\":\"array\"}},\"required\":[\"type\",\"referenceId\",\"position\",\"blocks\"],\"additionalProperties\":false},{\"type\":\"object\",\"description\":\"Delete a block\",\"properties\":{\"type\":{\"type\":\"string\",\"enum\":[\"delete\"]},\"id\":{\"type\":\"string\",\"description\":\"id of block to delete\"}},\"required\":[\"type\",\"id\"],\"additionalProperties\":false}]}}},\"additionalProperties\":false,\"required\":[\"operations\"],\"$defs\":{\"styles\":{\"type\":\"object\",\"properties\":{\"bold\":{\"type\":\"boolean\"},\"italic\":{\"type\":\"boolean\"},\"underline\":{\"type\":\"boolean\"},\"strike\":{\"type\":\"boolean\"},\"code\":{\"type\":\"boolean\"},\"textColor\":{\"type\":\"string\"},\"backgroundColor\":{\"type\":\"string\"}},\"additionalProperties\":false},\"styledtext\":{\"type\":\"object\",\"properties\":{\"type\":{\"type\":\"string\",\"enum\":[\"text\"]},\"text\":{\"type\":\"string\"},\"styles\":{\"$ref\":\"#/$defs/styles\"}},\"additionalProperties\":false,\"required\":[\"type\",\"text\"]},\"inlinecontent\":{\"type\":\"array\",\"items\":{\"anyOf\":[{\"type\":\"object\",\"properties\":{\"type\":{\"type\":\"string\",\"enum\":[\"mention\"]},\"props\":{\"type\":\"object\",\"properties\":{\"user\":{\"type\":\"string\"}},\"additionalProperties\":false}},\"additionalProperties\":false,\"required\":[\"type\"]},{\"$ref\":\"#/$defs/styledtext\"},{\"type\":\"object\",\"properties\":{\"type\":{\"type\":\"string\",\"enum\":[\"link\"]},\"content\":{\"type\":\"array\",\"items\":{\"$ref\":\"#/$defs/styledtext\"}},\"href\":{\"type\":\"string\"}},\"additionalProperties\":false,\"required\":[\"type\",\"href\",\"content\"]}]}},\"block\":{\"anyOf\":[{\"type\":\"object\",\"properties\":{\"type\":{\"type\":\"string\",\"enum\":[\"paragraph\",\"quote\",\"bulletListItem\",\"numberedListItem\"]},\"content\":{\"$ref\":\"#/$defs/inlinecontent\"},\"props\":{\"type\":\"object\",\"properties\":{},\"additionalProperties\":false}},\"additionalProperties\":false,\"required\":[\"type\"]},{\"type\":\"object\",\"properties\":{\"type\":{\"type\":\"string\",\"enum\":[\"heading\"]},\"content\":{\"$ref\":\"#/$defs/inlinecontent\"},\"props\":{\"type\":\"object\",\"properties\":{\"level\":{\"type\":\"number\",\"enum\":[1,2,3]}},\"additionalProperties\":false}},\"additionalProperties\":false,\"required\":[\"type\"]},{\"type\":\"object\",\"properties\":{\"type\":{\"type\":\"string\",\"enum\":[\"codeBlock\"]},\"content\":{\"$ref\":\"#/$defs/inlinecontent\"},\"props\":{\"type\":\"object\",\"properties\":{\"language\":{\"type\":\"string\"}},\"additionalProperties\":false}},\"additionalProperties\":false,\"required\":[\"type\"]},{\"type\":\"object\",\"properties\":{\"type\":{\"type\":\"string\",\"enum\":[\"checkListItem\"]},\"content\":{\"$ref\":\"#/$defs/inlinecontent\"},\"props\":{\"type\":\"object\",\"properties\":{\"checked\":{\"type\":\"boolean\"}},\"additionalProperties\":false}},\"additionalProperties\":false,\"required\":[\"type\"]},{\"type\":\"object\",\"properties\":{\"type\":{\"type\":\"string\",\"enum\":[\"table\"]},\"content\":{\"type\":\"object\",\"properties\":{}},\"props\":{\"type\":\"object\",\"properties\":{},\"additionalProperties\":false}},\"additionalProperties\":false,\"required\":[\"type\"]}]}}}}}],\"stream\":true}", + "body": "{\"model\":\"gpt-4o-2024-08-06\",\"temperature\":0,\"messages\":[{\"role\":\"system\",\"content\":\"You're manipulating a text document using JSON blocks. \\n Make sure to follow the json schema provided. When referencing ids they MUST be EXACTLY the same (including the trailing $). \\n This is the document as an array of JSON blocks (the cursor is BETWEEN two blocks as indicated by cursor: true):\"},{\"role\":\"system\",\"content\":\"[{\\\"id\\\":\\\"ref1$\\\",\\\"block\\\":{\\\"id\\\":\\\"ref1\\\",\\\"type\\\":\\\"paragraph\\\",\\\"props\\\":{\\\"textColor\\\":\\\"default\\\",\\\"backgroundColor\\\":\\\"default\\\",\\\"textAlignment\\\":\\\"left\\\"},\\\"content\\\":[{\\\"type\\\":\\\"text\\\",\\\"text\\\":\\\"Hello, world!\\\",\\\"styles\\\":{}}]}},{\\\"cursor\\\":true},{\\\"id\\\":\\\"ref2$\\\",\\\"block\\\":{\\\"id\\\":\\\"ref2\\\",\\\"type\\\":\\\"paragraph\\\",\\\"props\\\":{\\\"textColor\\\":\\\"default\\\",\\\"backgroundColor\\\":\\\"default\\\",\\\"textAlignment\\\":\\\"left\\\"},\\\"content\\\":[{\\\"type\\\":\\\"text\\\",\\\"text\\\":\\\"How are you?\\\",\\\"styles\\\":{}}]}}]\"},{\"role\":\"system\",\"content\":\"The user asks you to do the following:\"},{\"role\":\"user\",\"content\":\"at the end of doc, add a h1 heading `Code` and a javascript code block with `console.log('hello world');`\"},{\"role\":\"system\",\"content\":\"First, determine what part of the document the user is talking about. You SHOULD probably take cursor info into account if needed.\\n EXAMPLE: if user says \\\"below\\\" (without pointing to a specific part of the document) he / she probably indicates the block(s) after the cursor. \\n EXAMPLE: If you want to insert content AT the cursor position (UNLESS indicated otherwise by the user), then you need `referenceId` to point to the block before the cursor with position `after` (or block below and `before`).\\n \\n Prefer updating existing blocks over removing and adding (but this also depends on the user's question).\"}],\"tool_choice\":{\"type\":\"function\",\"function\":{\"name\":\"json\"}},\"tools\":[{\"type\":\"function\",\"function\":{\"name\":\"json\",\"description\":\"Respond with a JSON object.\",\"parameters\":{\"type\":\"object\",\"properties\":{\"operations\":{\"type\":\"array\",\"items\":{\"anyOf\":[{\"type\":\"object\",\"description\":\"Update a block, the new block will replace the existing block.\",\"properties\":{\"type\":{\"type\":\"string\",\"enum\":[\"update\"]},\"id\":{\"type\":\"string\",\"description\":\"id of block to update\"},\"block\":{\"$ref\":\"#/$defs/block\"}},\"required\":[\"type\",\"id\",\"block\"],\"additionalProperties\":false},{\"type\":\"object\",\"description\":\"Insert new blocks\",\"properties\":{\"type\":{\"type\":\"string\",\"enum\":[\"add\"]},\"referenceId\":{\"type\":\"string\",\"description\":\"MUST be an id of a block in the document\"},\"position\":{\"type\":\"string\",\"enum\":[\"before\",\"after\"],\"description\":\"`after` to add blocks AFTER (below) the block with `referenceId`, `before` to add the block BEFORE (above)\"},\"blocks\":{\"items\":{\"$ref\":\"#/$defs/block\"},\"type\":\"array\"}},\"required\":[\"type\",\"referenceId\",\"position\",\"blocks\"],\"additionalProperties\":false},{\"type\":\"object\",\"description\":\"Delete a block\",\"properties\":{\"type\":{\"type\":\"string\",\"enum\":[\"delete\"]},\"id\":{\"type\":\"string\",\"description\":\"id of block to delete\"}},\"required\":[\"type\",\"id\"],\"additionalProperties\":false}]}}},\"additionalProperties\":false,\"required\":[\"operations\"],\"$defs\":{\"styles\":{\"type\":\"object\",\"properties\":{\"bold\":{\"type\":\"boolean\"},\"italic\":{\"type\":\"boolean\"},\"underline\":{\"type\":\"boolean\"},\"strike\":{\"type\":\"boolean\"},\"code\":{\"type\":\"boolean\"},\"textColor\":{\"type\":\"string\"},\"backgroundColor\":{\"type\":\"string\"}},\"additionalProperties\":false},\"styledtext\":{\"type\":\"object\",\"properties\":{\"type\":{\"type\":\"string\",\"enum\":[\"text\"]},\"text\":{\"type\":\"string\"},\"styles\":{\"$ref\":\"#/$defs/styles\"}},\"additionalProperties\":false,\"required\":[\"type\",\"text\"]},\"inlinecontent\":{\"type\":\"array\",\"items\":{\"anyOf\":[{\"type\":\"object\",\"properties\":{\"type\":{\"type\":\"string\",\"enum\":[\"mention\"]},\"props\":{\"type\":\"object\",\"properties\":{\"user\":{\"type\":\"string\"}},\"additionalProperties\":false}},\"additionalProperties\":false,\"required\":[\"type\"]},{\"$ref\":\"#/$defs/styledtext\"},{\"type\":\"object\",\"properties\":{\"type\":{\"type\":\"string\",\"enum\":[\"link\"]},\"content\":{\"type\":\"array\",\"items\":{\"$ref\":\"#/$defs/styledtext\"}},\"href\":{\"type\":\"string\"}},\"additionalProperties\":false,\"required\":[\"type\",\"href\",\"content\"]}]}},\"block\":{\"anyOf\":[{\"type\":\"object\",\"properties\":{\"type\":{\"type\":\"string\",\"enum\":[\"paragraph\",\"quote\",\"toggleListItem\",\"bulletListItem\",\"numberedListItem\"]},\"content\":{\"$ref\":\"#/$defs/inlinecontent\"},\"props\":{\"type\":\"object\",\"properties\":{},\"additionalProperties\":false}},\"additionalProperties\":false,\"required\":[\"type\"]},{\"type\":\"object\",\"properties\":{\"type\":{\"type\":\"string\",\"enum\":[\"heading\"]},\"content\":{\"$ref\":\"#/$defs/inlinecontent\"},\"props\":{\"type\":\"object\",\"properties\":{\"level\":{\"type\":\"number\",\"enum\":[1,2,3]},\"isTogglable\":{\"type\":\"boolean\"}},\"additionalProperties\":false}},\"additionalProperties\":false,\"required\":[\"type\"]},{\"type\":\"object\",\"properties\":{\"type\":{\"type\":\"string\",\"enum\":[\"codeBlock\"]},\"content\":{\"$ref\":\"#/$defs/inlinecontent\"},\"props\":{\"type\":\"object\",\"properties\":{\"language\":{\"type\":\"string\"}},\"additionalProperties\":false}},\"additionalProperties\":false,\"required\":[\"type\"]},{\"type\":\"object\",\"properties\":{\"type\":{\"type\":\"string\",\"enum\":[\"checkListItem\"]},\"content\":{\"$ref\":\"#/$defs/inlinecontent\"},\"props\":{\"type\":\"object\",\"properties\":{\"checked\":{\"type\":\"boolean\"}},\"additionalProperties\":false}},\"additionalProperties\":false,\"required\":[\"type\"]},{\"type\":\"object\",\"properties\":{\"type\":{\"type\":\"string\",\"enum\":[\"table\"]},\"content\":{\"type\":\"object\",\"properties\":{}},\"props\":{\"type\":\"object\",\"properties\":{},\"additionalProperties\":false}},\"additionalProperties\":false,\"required\":[\"type\"]}]}}}}}],\"stream\":true}", "headers": [], "cookies": [] }, "response": { "status": 200, "statusText": "", - "body": "data: {\"id\":\"chatcmpl-BgV8OXVIDkbJdkfmwaLijA7gLfxzm\",\"object\":\"chat.completion.chunk\",\"created\":1749469156,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_a288987b44\",\"choices\":[{\"index\":0,\"delta\":{\"role\":\"assistant\",\"content\":null,\"tool_calls\":[{\"index\":0,\"id\":\"call_4V5C5x681SPQ4Uyn2BtQXgdm\",\"type\":\"function\",\"function\":{\"name\":\"json\",\"arguments\":\"\"}}],\"refusal\":null},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BgV8OXVIDkbJdkfmwaLijA7gLfxzm\",\"object\":\"chat.completion.chunk\",\"created\":1749469156,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_a288987b44\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"{\\\"\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BgV8OXVIDkbJdkfmwaLijA7gLfxzm\",\"object\":\"chat.completion.chunk\",\"created\":1749469156,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_a288987b44\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"operations\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BgV8OXVIDkbJdkfmwaLijA7gLfxzm\",\"object\":\"chat.completion.chunk\",\"created\":1749469156,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_a288987b44\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"\\\":[\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BgV8OXVIDkbJdkfmwaLijA7gLfxzm\",\"object\":\"chat.completion.chunk\",\"created\":1749469156,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_a288987b44\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"{\\\"\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BgV8OXVIDkbJdkfmwaLijA7gLfxzm\",\"object\":\"chat.completion.chunk\",\"created\":1749469156,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_a288987b44\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"type\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BgV8OXVIDkbJdkfmwaLijA7gLfxzm\",\"object\":\"chat.completion.chunk\",\"created\":1749469156,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_a288987b44\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"\\\":\\\"\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BgV8OXVIDkbJdkfmwaLijA7gLfxzm\",\"object\":\"chat.completion.chunk\",\"created\":1749469156,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_a288987b44\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"add\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BgV8OXVIDkbJdkfmwaLijA7gLfxzm\",\"object\":\"chat.completion.chunk\",\"created\":1749469156,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_a288987b44\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"\\\",\\\"\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BgV8OXVIDkbJdkfmwaLijA7gLfxzm\",\"object\":\"chat.completion.chunk\",\"created\":1749469156,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_a288987b44\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"reference\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BgV8OXVIDkbJdkfmwaLijA7gLfxzm\",\"object\":\"chat.completion.chunk\",\"created\":1749469156,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_a288987b44\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"Id\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BgV8OXVIDkbJdkfmwaLijA7gLfxzm\",\"object\":\"chat.completion.chunk\",\"created\":1749469156,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_a288987b44\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"\\\":\\\"\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BgV8OXVIDkbJdkfmwaLijA7gLfxzm\",\"object\":\"chat.completion.chunk\",\"created\":1749469156,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_a288987b44\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"ref\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BgV8OXVIDkbJdkfmwaLijA7gLfxzm\",\"object\":\"chat.completion.chunk\",\"created\":1749469156,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_a288987b44\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"2\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BgV8OXVIDkbJdkfmwaLijA7gLfxzm\",\"object\":\"chat.completion.chunk\",\"created\":1749469156,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_a288987b44\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"$\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BgV8OXVIDkbJdkfmwaLijA7gLfxzm\",\"object\":\"chat.completion.chunk\",\"created\":1749469156,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_a288987b44\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"\\\",\\\"\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BgV8OXVIDkbJdkfmwaLijA7gLfxzm\",\"object\":\"chat.completion.chunk\",\"created\":1749469156,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_a288987b44\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"position\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BgV8OXVIDkbJdkfmwaLijA7gLfxzm\",\"object\":\"chat.completion.chunk\",\"created\":1749469156,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_a288987b44\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"\\\":\\\"\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BgV8OXVIDkbJdkfmwaLijA7gLfxzm\",\"object\":\"chat.completion.chunk\",\"created\":1749469156,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_a288987b44\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"after\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BgV8OXVIDkbJdkfmwaLijA7gLfxzm\",\"object\":\"chat.completion.chunk\",\"created\":1749469156,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_a288987b44\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"\\\",\\\"\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BgV8OXVIDkbJdkfmwaLijA7gLfxzm\",\"object\":\"chat.completion.chunk\",\"created\":1749469156,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_a288987b44\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"blocks\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BgV8OXVIDkbJdkfmwaLijA7gLfxzm\",\"object\":\"chat.completion.chunk\",\"created\":1749469156,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_a288987b44\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"\\\":[\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BgV8OXVIDkbJdkfmwaLijA7gLfxzm\",\"object\":\"chat.completion.chunk\",\"created\":1749469156,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_a288987b44\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"{\\\"\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BgV8OXVIDkbJdkfmwaLijA7gLfxzm\",\"object\":\"chat.completion.chunk\",\"created\":1749469156,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_a288987b44\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"type\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BgV8OXVIDkbJdkfmwaLijA7gLfxzm\",\"object\":\"chat.completion.chunk\",\"created\":1749469156,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_a288987b44\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"\\\":\\\"\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BgV8OXVIDkbJdkfmwaLijA7gLfxzm\",\"object\":\"chat.completion.chunk\",\"created\":1749469156,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_a288987b44\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"heading\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BgV8OXVIDkbJdkfmwaLijA7gLfxzm\",\"object\":\"chat.completion.chunk\",\"created\":1749469156,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_a288987b44\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"\\\",\\\"\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BgV8OXVIDkbJdkfmwaLijA7gLfxzm\",\"object\":\"chat.completion.chunk\",\"created\":1749469156,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_a288987b44\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"content\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BgV8OXVIDkbJdkfmwaLijA7gLfxzm\",\"object\":\"chat.completion.chunk\",\"created\":1749469156,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_a288987b44\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"\\\":[\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BgV8OXVIDkbJdkfmwaLijA7gLfxzm\",\"object\":\"chat.completion.chunk\",\"created\":1749469156,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_a288987b44\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"{\\\"\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BgV8OXVIDkbJdkfmwaLijA7gLfxzm\",\"object\":\"chat.completion.chunk\",\"created\":1749469156,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_a288987b44\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"type\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BgV8OXVIDkbJdkfmwaLijA7gLfxzm\",\"object\":\"chat.completion.chunk\",\"created\":1749469156,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_a288987b44\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"\\\":\\\"\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BgV8OXVIDkbJdkfmwaLijA7gLfxzm\",\"object\":\"chat.completion.chunk\",\"created\":1749469156,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_a288987b44\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"text\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BgV8OXVIDkbJdkfmwaLijA7gLfxzm\",\"object\":\"chat.completion.chunk\",\"created\":1749469156,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_a288987b44\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"\\\",\\\"\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BgV8OXVIDkbJdkfmwaLijA7gLfxzm\",\"object\":\"chat.completion.chunk\",\"created\":1749469156,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_a288987b44\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"text\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BgV8OXVIDkbJdkfmwaLijA7gLfxzm\",\"object\":\"chat.completion.chunk\",\"created\":1749469156,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_a288987b44\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"\\\":\\\"\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BgV8OXVIDkbJdkfmwaLijA7gLfxzm\",\"object\":\"chat.completion.chunk\",\"created\":1749469156,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_a288987b44\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"Code\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BgV8OXVIDkbJdkfmwaLijA7gLfxzm\",\"object\":\"chat.completion.chunk\",\"created\":1749469156,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_a288987b44\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"\\\"}\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BgV8OXVIDkbJdkfmwaLijA7gLfxzm\",\"object\":\"chat.completion.chunk\",\"created\":1749469156,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_a288987b44\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"],\\\"\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BgV8OXVIDkbJdkfmwaLijA7gLfxzm\",\"object\":\"chat.completion.chunk\",\"created\":1749469156,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_a288987b44\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"props\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BgV8OXVIDkbJdkfmwaLijA7gLfxzm\",\"object\":\"chat.completion.chunk\",\"created\":1749469156,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_a288987b44\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"\\\":{\\\"\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BgV8OXVIDkbJdkfmwaLijA7gLfxzm\",\"object\":\"chat.completion.chunk\",\"created\":1749469156,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_a288987b44\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"level\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BgV8OXVIDkbJdkfmwaLijA7gLfxzm\",\"object\":\"chat.completion.chunk\",\"created\":1749469156,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_a288987b44\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"\\\":\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BgV8OXVIDkbJdkfmwaLijA7gLfxzm\",\"object\":\"chat.completion.chunk\",\"created\":1749469156,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_a288987b44\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"1\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BgV8OXVIDkbJdkfmwaLijA7gLfxzm\",\"object\":\"chat.completion.chunk\",\"created\":1749469156,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_a288987b44\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"}},\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BgV8OXVIDkbJdkfmwaLijA7gLfxzm\",\"object\":\"chat.completion.chunk\",\"created\":1749469156,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_a288987b44\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"{\\\"\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BgV8OXVIDkbJdkfmwaLijA7gLfxzm\",\"object\":\"chat.completion.chunk\",\"created\":1749469156,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_a288987b44\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"type\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BgV8OXVIDkbJdkfmwaLijA7gLfxzm\",\"object\":\"chat.completion.chunk\",\"created\":1749469156,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_a288987b44\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"\\\":\\\"\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BgV8OXVIDkbJdkfmwaLijA7gLfxzm\",\"object\":\"chat.completion.chunk\",\"created\":1749469156,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_a288987b44\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"code\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BgV8OXVIDkbJdkfmwaLijA7gLfxzm\",\"object\":\"chat.completion.chunk\",\"created\":1749469156,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_a288987b44\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"Block\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BgV8OXVIDkbJdkfmwaLijA7gLfxzm\",\"object\":\"chat.completion.chunk\",\"created\":1749469156,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_a288987b44\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"\\\",\\\"\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BgV8OXVIDkbJdkfmwaLijA7gLfxzm\",\"object\":\"chat.completion.chunk\",\"created\":1749469156,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_a288987b44\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"content\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BgV8OXVIDkbJdkfmwaLijA7gLfxzm\",\"object\":\"chat.completion.chunk\",\"created\":1749469156,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_a288987b44\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"\\\":[\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BgV8OXVIDkbJdkfmwaLijA7gLfxzm\",\"object\":\"chat.completion.chunk\",\"created\":1749469156,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_a288987b44\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"{\\\"\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BgV8OXVIDkbJdkfmwaLijA7gLfxzm\",\"object\":\"chat.completion.chunk\",\"created\":1749469156,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_a288987b44\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"type\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BgV8OXVIDkbJdkfmwaLijA7gLfxzm\",\"object\":\"chat.completion.chunk\",\"created\":1749469156,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_a288987b44\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"\\\":\\\"\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BgV8OXVIDkbJdkfmwaLijA7gLfxzm\",\"object\":\"chat.completion.chunk\",\"created\":1749469156,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_a288987b44\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"text\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BgV8OXVIDkbJdkfmwaLijA7gLfxzm\",\"object\":\"chat.completion.chunk\",\"created\":1749469156,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_a288987b44\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"\\\",\\\"\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BgV8OXVIDkbJdkfmwaLijA7gLfxzm\",\"object\":\"chat.completion.chunk\",\"created\":1749469156,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_a288987b44\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"text\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BgV8OXVIDkbJdkfmwaLijA7gLfxzm\",\"object\":\"chat.completion.chunk\",\"created\":1749469156,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_a288987b44\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"\\\":\\\"\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BgV8OXVIDkbJdkfmwaLijA7gLfxzm\",\"object\":\"chat.completion.chunk\",\"created\":1749469156,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_a288987b44\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"console\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BgV8OXVIDkbJdkfmwaLijA7gLfxzm\",\"object\":\"chat.completion.chunk\",\"created\":1749469156,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_a288987b44\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\".log\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BgV8OXVIDkbJdkfmwaLijA7gLfxzm\",\"object\":\"chat.completion.chunk\",\"created\":1749469156,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_a288987b44\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"('\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BgV8OXVIDkbJdkfmwaLijA7gLfxzm\",\"object\":\"chat.completion.chunk\",\"created\":1749469156,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_a288987b44\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"hello\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BgV8OXVIDkbJdkfmwaLijA7gLfxzm\",\"object\":\"chat.completion.chunk\",\"created\":1749469156,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_a288987b44\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\" world\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BgV8OXVIDkbJdkfmwaLijA7gLfxzm\",\"object\":\"chat.completion.chunk\",\"created\":1749469156,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_a288987b44\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"');\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BgV8OXVIDkbJdkfmwaLijA7gLfxzm\",\"object\":\"chat.completion.chunk\",\"created\":1749469156,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_a288987b44\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"\\\"}\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BgV8OXVIDkbJdkfmwaLijA7gLfxzm\",\"object\":\"chat.completion.chunk\",\"created\":1749469156,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_a288987b44\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"],\\\"\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BgV8OXVIDkbJdkfmwaLijA7gLfxzm\",\"object\":\"chat.completion.chunk\",\"created\":1749469156,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_a288987b44\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"props\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BgV8OXVIDkbJdkfmwaLijA7gLfxzm\",\"object\":\"chat.completion.chunk\",\"created\":1749469156,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_a288987b44\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"\\\":{\\\"\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BgV8OXVIDkbJdkfmwaLijA7gLfxzm\",\"object\":\"chat.completion.chunk\",\"created\":1749469156,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_a288987b44\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"language\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BgV8OXVIDkbJdkfmwaLijA7gLfxzm\",\"object\":\"chat.completion.chunk\",\"created\":1749469156,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_a288987b44\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"\\\":\\\"\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BgV8OXVIDkbJdkfmwaLijA7gLfxzm\",\"object\":\"chat.completion.chunk\",\"created\":1749469156,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_a288987b44\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"javascript\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BgV8OXVIDkbJdkfmwaLijA7gLfxzm\",\"object\":\"chat.completion.chunk\",\"created\":1749469156,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_a288987b44\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"\\\"}}\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BgV8OXVIDkbJdkfmwaLijA7gLfxzm\",\"object\":\"chat.completion.chunk\",\"created\":1749469156,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_a288987b44\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"]}\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BgV8OXVIDkbJdkfmwaLijA7gLfxzm\",\"object\":\"chat.completion.chunk\",\"created\":1749469156,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_a288987b44\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"]}\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BgV8OXVIDkbJdkfmwaLijA7gLfxzm\",\"object\":\"chat.completion.chunk\",\"created\":1749469156,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_a288987b44\",\"choices\":[{\"index\":0,\"delta\":{},\"logprobs\":null,\"finish_reason\":\"stop\"}]}\n\ndata: [DONE]\n\n", + "body": "data: {\"id\":\"chatcmpl-BhXmv3uArBPWuj11Lro3sG6io4l0m\",\"object\":\"chat.completion.chunk\",\"created\":1749717685,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_a288987b44\",\"choices\":[{\"index\":0,\"delta\":{\"role\":\"assistant\",\"content\":null,\"tool_calls\":[{\"index\":0,\"id\":\"call_sqBfsJfcP3rzHgkYvUvm6QUS\",\"type\":\"function\",\"function\":{\"name\":\"json\",\"arguments\":\"\"}}],\"refusal\":null},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BhXmv3uArBPWuj11Lro3sG6io4l0m\",\"object\":\"chat.completion.chunk\",\"created\":1749717685,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_a288987b44\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"{\\\"\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BhXmv3uArBPWuj11Lro3sG6io4l0m\",\"object\":\"chat.completion.chunk\",\"created\":1749717685,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_a288987b44\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"operations\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BhXmv3uArBPWuj11Lro3sG6io4l0m\",\"object\":\"chat.completion.chunk\",\"created\":1749717685,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_a288987b44\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"\\\":[\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BhXmv3uArBPWuj11Lro3sG6io4l0m\",\"object\":\"chat.completion.chunk\",\"created\":1749717685,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_a288987b44\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"{\\\"\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BhXmv3uArBPWuj11Lro3sG6io4l0m\",\"object\":\"chat.completion.chunk\",\"created\":1749717685,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_a288987b44\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"type\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BhXmv3uArBPWuj11Lro3sG6io4l0m\",\"object\":\"chat.completion.chunk\",\"created\":1749717685,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_a288987b44\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"\\\":\\\"\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BhXmv3uArBPWuj11Lro3sG6io4l0m\",\"object\":\"chat.completion.chunk\",\"created\":1749717685,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_a288987b44\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"add\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BhXmv3uArBPWuj11Lro3sG6io4l0m\",\"object\":\"chat.completion.chunk\",\"created\":1749717685,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_a288987b44\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"\\\",\\\"\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BhXmv3uArBPWuj11Lro3sG6io4l0m\",\"object\":\"chat.completion.chunk\",\"created\":1749717685,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_a288987b44\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"reference\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BhXmv3uArBPWuj11Lro3sG6io4l0m\",\"object\":\"chat.completion.chunk\",\"created\":1749717685,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_a288987b44\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"Id\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BhXmv3uArBPWuj11Lro3sG6io4l0m\",\"object\":\"chat.completion.chunk\",\"created\":1749717685,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_a288987b44\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"\\\":\\\"\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BhXmv3uArBPWuj11Lro3sG6io4l0m\",\"object\":\"chat.completion.chunk\",\"created\":1749717685,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_a288987b44\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"ref\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BhXmv3uArBPWuj11Lro3sG6io4l0m\",\"object\":\"chat.completion.chunk\",\"created\":1749717685,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_a288987b44\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"2\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BhXmv3uArBPWuj11Lro3sG6io4l0m\",\"object\":\"chat.completion.chunk\",\"created\":1749717685,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_a288987b44\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"$\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BhXmv3uArBPWuj11Lro3sG6io4l0m\",\"object\":\"chat.completion.chunk\",\"created\":1749717685,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_a288987b44\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"\\\",\\\"\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BhXmv3uArBPWuj11Lro3sG6io4l0m\",\"object\":\"chat.completion.chunk\",\"created\":1749717685,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_a288987b44\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"position\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BhXmv3uArBPWuj11Lro3sG6io4l0m\",\"object\":\"chat.completion.chunk\",\"created\":1749717685,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_a288987b44\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"\\\":\\\"\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BhXmv3uArBPWuj11Lro3sG6io4l0m\",\"object\":\"chat.completion.chunk\",\"created\":1749717685,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_a288987b44\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"after\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BhXmv3uArBPWuj11Lro3sG6io4l0m\",\"object\":\"chat.completion.chunk\",\"created\":1749717685,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_a288987b44\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"\\\",\\\"\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BhXmv3uArBPWuj11Lro3sG6io4l0m\",\"object\":\"chat.completion.chunk\",\"created\":1749717685,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_a288987b44\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"blocks\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BhXmv3uArBPWuj11Lro3sG6io4l0m\",\"object\":\"chat.completion.chunk\",\"created\":1749717685,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_a288987b44\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"\\\":[\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BhXmv3uArBPWuj11Lro3sG6io4l0m\",\"object\":\"chat.completion.chunk\",\"created\":1749717685,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_a288987b44\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"{\\\"\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BhXmv3uArBPWuj11Lro3sG6io4l0m\",\"object\":\"chat.completion.chunk\",\"created\":1749717685,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_a288987b44\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"type\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BhXmv3uArBPWuj11Lro3sG6io4l0m\",\"object\":\"chat.completion.chunk\",\"created\":1749717685,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_a288987b44\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"\\\":\\\"\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BhXmv3uArBPWuj11Lro3sG6io4l0m\",\"object\":\"chat.completion.chunk\",\"created\":1749717685,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_a288987b44\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"heading\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BhXmv3uArBPWuj11Lro3sG6io4l0m\",\"object\":\"chat.completion.chunk\",\"created\":1749717685,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_a288987b44\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"\\\",\\\"\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BhXmv3uArBPWuj11Lro3sG6io4l0m\",\"object\":\"chat.completion.chunk\",\"created\":1749717685,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_a288987b44\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"content\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BhXmv3uArBPWuj11Lro3sG6io4l0m\",\"object\":\"chat.completion.chunk\",\"created\":1749717685,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_a288987b44\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"\\\":[\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BhXmv3uArBPWuj11Lro3sG6io4l0m\",\"object\":\"chat.completion.chunk\",\"created\":1749717685,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_a288987b44\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"{\\\"\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BhXmv3uArBPWuj11Lro3sG6io4l0m\",\"object\":\"chat.completion.chunk\",\"created\":1749717685,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_a288987b44\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"type\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BhXmv3uArBPWuj11Lro3sG6io4l0m\",\"object\":\"chat.completion.chunk\",\"created\":1749717685,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_a288987b44\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"\\\":\\\"\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BhXmv3uArBPWuj11Lro3sG6io4l0m\",\"object\":\"chat.completion.chunk\",\"created\":1749717685,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_a288987b44\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"text\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BhXmv3uArBPWuj11Lro3sG6io4l0m\",\"object\":\"chat.completion.chunk\",\"created\":1749717685,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_a288987b44\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"\\\",\\\"\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BhXmv3uArBPWuj11Lro3sG6io4l0m\",\"object\":\"chat.completion.chunk\",\"created\":1749717685,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_a288987b44\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"text\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BhXmv3uArBPWuj11Lro3sG6io4l0m\",\"object\":\"chat.completion.chunk\",\"created\":1749717685,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_a288987b44\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"\\\":\\\"\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BhXmv3uArBPWuj11Lro3sG6io4l0m\",\"object\":\"chat.completion.chunk\",\"created\":1749717685,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_a288987b44\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"Code\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BhXmv3uArBPWuj11Lro3sG6io4l0m\",\"object\":\"chat.completion.chunk\",\"created\":1749717685,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_a288987b44\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"\\\"}\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BhXmv3uArBPWuj11Lro3sG6io4l0m\",\"object\":\"chat.completion.chunk\",\"created\":1749717685,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_a288987b44\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"],\\\"\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BhXmv3uArBPWuj11Lro3sG6io4l0m\",\"object\":\"chat.completion.chunk\",\"created\":1749717685,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_a288987b44\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"props\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BhXmv3uArBPWuj11Lro3sG6io4l0m\",\"object\":\"chat.completion.chunk\",\"created\":1749717685,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_a288987b44\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"\\\":{\\\"\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BhXmv3uArBPWuj11Lro3sG6io4l0m\",\"object\":\"chat.completion.chunk\",\"created\":1749717685,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_a288987b44\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"level\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BhXmv3uArBPWuj11Lro3sG6io4l0m\",\"object\":\"chat.completion.chunk\",\"created\":1749717685,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_a288987b44\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"\\\":\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BhXmv3uArBPWuj11Lro3sG6io4l0m\",\"object\":\"chat.completion.chunk\",\"created\":1749717685,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_a288987b44\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"1\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BhXmv3uArBPWuj11Lro3sG6io4l0m\",\"object\":\"chat.completion.chunk\",\"created\":1749717685,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_a288987b44\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"}},\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BhXmv3uArBPWuj11Lro3sG6io4l0m\",\"object\":\"chat.completion.chunk\",\"created\":1749717685,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_a288987b44\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"{\\\"\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BhXmv3uArBPWuj11Lro3sG6io4l0m\",\"object\":\"chat.completion.chunk\",\"created\":1749717685,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_a288987b44\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"type\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BhXmv3uArBPWuj11Lro3sG6io4l0m\",\"object\":\"chat.completion.chunk\",\"created\":1749717685,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_a288987b44\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"\\\":\\\"\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BhXmv3uArBPWuj11Lro3sG6io4l0m\",\"object\":\"chat.completion.chunk\",\"created\":1749717685,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_a288987b44\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"code\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BhXmv3uArBPWuj11Lro3sG6io4l0m\",\"object\":\"chat.completion.chunk\",\"created\":1749717685,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_a288987b44\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"Block\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BhXmv3uArBPWuj11Lro3sG6io4l0m\",\"object\":\"chat.completion.chunk\",\"created\":1749717685,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_a288987b44\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"\\\",\\\"\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BhXmv3uArBPWuj11Lro3sG6io4l0m\",\"object\":\"chat.completion.chunk\",\"created\":1749717685,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_a288987b44\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"content\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BhXmv3uArBPWuj11Lro3sG6io4l0m\",\"object\":\"chat.completion.chunk\",\"created\":1749717685,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_a288987b44\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"\\\":[\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BhXmv3uArBPWuj11Lro3sG6io4l0m\",\"object\":\"chat.completion.chunk\",\"created\":1749717685,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_a288987b44\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"{\\\"\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BhXmv3uArBPWuj11Lro3sG6io4l0m\",\"object\":\"chat.completion.chunk\",\"created\":1749717685,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_a288987b44\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"type\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BhXmv3uArBPWuj11Lro3sG6io4l0m\",\"object\":\"chat.completion.chunk\",\"created\":1749717685,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_a288987b44\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"\\\":\\\"\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BhXmv3uArBPWuj11Lro3sG6io4l0m\",\"object\":\"chat.completion.chunk\",\"created\":1749717685,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_a288987b44\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"text\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BhXmv3uArBPWuj11Lro3sG6io4l0m\",\"object\":\"chat.completion.chunk\",\"created\":1749717685,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_a288987b44\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"\\\",\\\"\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BhXmv3uArBPWuj11Lro3sG6io4l0m\",\"object\":\"chat.completion.chunk\",\"created\":1749717685,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_a288987b44\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"text\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BhXmv3uArBPWuj11Lro3sG6io4l0m\",\"object\":\"chat.completion.chunk\",\"created\":1749717685,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_a288987b44\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"\\\":\\\"\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BhXmv3uArBPWuj11Lro3sG6io4l0m\",\"object\":\"chat.completion.chunk\",\"created\":1749717685,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_a288987b44\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"console\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BhXmv3uArBPWuj11Lro3sG6io4l0m\",\"object\":\"chat.completion.chunk\",\"created\":1749717685,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_a288987b44\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\".log\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BhXmv3uArBPWuj11Lro3sG6io4l0m\",\"object\":\"chat.completion.chunk\",\"created\":1749717685,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_a288987b44\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"('\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BhXmv3uArBPWuj11Lro3sG6io4l0m\",\"object\":\"chat.completion.chunk\",\"created\":1749717685,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_a288987b44\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"hello\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BhXmv3uArBPWuj11Lro3sG6io4l0m\",\"object\":\"chat.completion.chunk\",\"created\":1749717685,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_a288987b44\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\" world\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BhXmv3uArBPWuj11Lro3sG6io4l0m\",\"object\":\"chat.completion.chunk\",\"created\":1749717685,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_a288987b44\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"');\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BhXmv3uArBPWuj11Lro3sG6io4l0m\",\"object\":\"chat.completion.chunk\",\"created\":1749717685,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_a288987b44\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"\\\"}\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BhXmv3uArBPWuj11Lro3sG6io4l0m\",\"object\":\"chat.completion.chunk\",\"created\":1749717685,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_a288987b44\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"],\\\"\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BhXmv3uArBPWuj11Lro3sG6io4l0m\",\"object\":\"chat.completion.chunk\",\"created\":1749717685,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_a288987b44\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"props\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BhXmv3uArBPWuj11Lro3sG6io4l0m\",\"object\":\"chat.completion.chunk\",\"created\":1749717685,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_a288987b44\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"\\\":{\\\"\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BhXmv3uArBPWuj11Lro3sG6io4l0m\",\"object\":\"chat.completion.chunk\",\"created\":1749717685,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_a288987b44\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"language\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BhXmv3uArBPWuj11Lro3sG6io4l0m\",\"object\":\"chat.completion.chunk\",\"created\":1749717685,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_a288987b44\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"\\\":\\\"\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BhXmv3uArBPWuj11Lro3sG6io4l0m\",\"object\":\"chat.completion.chunk\",\"created\":1749717685,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_a288987b44\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"javascript\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BhXmv3uArBPWuj11Lro3sG6io4l0m\",\"object\":\"chat.completion.chunk\",\"created\":1749717685,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_a288987b44\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"\\\"}}\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BhXmv3uArBPWuj11Lro3sG6io4l0m\",\"object\":\"chat.completion.chunk\",\"created\":1749717685,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_a288987b44\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"]}\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BhXmv3uArBPWuj11Lro3sG6io4l0m\",\"object\":\"chat.completion.chunk\",\"created\":1749717685,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_a288987b44\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"]}\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BhXmv3uArBPWuj11Lro3sG6io4l0m\",\"object\":\"chat.completion.chunk\",\"created\":1749717685,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_a288987b44\",\"choices\":[{\"index\":0,\"delta\":{},\"logprobs\":null,\"finish_reason\":\"stop\"}]}\n\ndata: [DONE]\n\n", "headers": [] } } \ No newline at end of file diff --git a/packages/xl-ai/src/api/formats/json/__snapshots__/json.test.ts/Add/__msw_snapshots__/openai.chat/gpt-4o-2024-08-06 (streaming)/add a list (end)_1_30f2ad3b3cacd97a9e1b913a25dd1ecb.json b/packages/xl-ai/src/api/formats/json/__snapshots__/json.test.ts/Add/__msw_snapshots__/openai.chat/gpt-4o-2024-08-06 (streaming)/add a list (end)_1_f54209a0498441f24a0460267e6cfdf4.json similarity index 64% rename from packages/xl-ai/src/api/formats/json/__snapshots__/json.test.ts/Add/__msw_snapshots__/openai.chat/gpt-4o-2024-08-06 (streaming)/add a list (end)_1_30f2ad3b3cacd97a9e1b913a25dd1ecb.json rename to packages/xl-ai/src/api/formats/json/__snapshots__/json.test.ts/Add/__msw_snapshots__/openai.chat/gpt-4o-2024-08-06 (streaming)/add a list (end)_1_f54209a0498441f24a0460267e6cfdf4.json index 8dc9ac86c5..a58ad73a65 100644 --- a/packages/xl-ai/src/api/formats/json/__snapshots__/json.test.ts/Add/__msw_snapshots__/openai.chat/gpt-4o-2024-08-06 (streaming)/add a list (end)_1_30f2ad3b3cacd97a9e1b913a25dd1ecb.json +++ b/packages/xl-ai/src/api/formats/json/__snapshots__/json.test.ts/Add/__msw_snapshots__/openai.chat/gpt-4o-2024-08-06 (streaming)/add a list (end)_1_f54209a0498441f24a0460267e6cfdf4.json @@ -2,14 +2,14 @@ "request": { "method": "POST", "url": "https://localhost:3000/ai?provider=openai&url=https%3A%2F%2Fapi.openai.com%2Fv1%2Fchat%2Fcompletions", - "body": "{\"model\":\"gpt-4o-2024-08-06\",\"temperature\":0,\"messages\":[{\"role\":\"system\",\"content\":\"You're manipulating a text document using JSON blocks. \\n Make sure to follow the json schema provided. When referencing ids they MUST be EXACTLY the same (including the trailing $). \\n This is the document as an array of JSON blocks (the cursor is BETWEEN two blocks as indicated by cursor: true):\"},{\"role\":\"system\",\"content\":\"[{\\\"id\\\":\\\"ref1$\\\",\\\"block\\\":{\\\"id\\\":\\\"ref1\\\",\\\"type\\\":\\\"paragraph\\\",\\\"props\\\":{\\\"textColor\\\":\\\"default\\\",\\\"backgroundColor\\\":\\\"default\\\",\\\"textAlignment\\\":\\\"left\\\"},\\\"content\\\":[{\\\"type\\\":\\\"text\\\",\\\"text\\\":\\\"Hello, world!\\\",\\\"styles\\\":{}}]}},{\\\"cursor\\\":true},{\\\"id\\\":\\\"ref2$\\\",\\\"block\\\":{\\\"id\\\":\\\"ref2\\\",\\\"type\\\":\\\"paragraph\\\",\\\"props\\\":{\\\"textColor\\\":\\\"default\\\",\\\"backgroundColor\\\":\\\"default\\\",\\\"textAlignment\\\":\\\"left\\\"},\\\"content\\\":[{\\\"type\\\":\\\"text\\\",\\\"text\\\":\\\"How are you?\\\",\\\"styles\\\":{}}]}}]\"},{\"role\":\"system\",\"content\":\"The user asks you to do the following:\"},{\"role\":\"user\",\"content\":\"add a list with the items 'Apples' and 'Bananas' after the last sentence\"},{\"role\":\"system\",\"content\":\"First, determine what part of the document the user is talking about. You SHOULD probably take cursor info into account if needed.\\n EXAMPLE: if user says \\\"below\\\" (without pointing to a specific part of the document) he / she probably indicates the block(s) after the cursor. \\n EXAMPLE: If you want to insert content AT the cursor position (UNLESS indicated otherwise by the user), then you need `referenceId` to point to the block before the cursor with position `after` (or block below and `before`).\\n \\n Prefer updating existing blocks over removing and adding (but this also depends on the user's question).\"}],\"tool_choice\":{\"type\":\"function\",\"function\":{\"name\":\"json\"}},\"tools\":[{\"type\":\"function\",\"function\":{\"name\":\"json\",\"description\":\"Respond with a JSON object.\",\"parameters\":{\"type\":\"object\",\"properties\":{\"operations\":{\"type\":\"array\",\"items\":{\"anyOf\":[{\"type\":\"object\",\"description\":\"Update a block, the new block will replace the existing block.\",\"properties\":{\"type\":{\"type\":\"string\",\"enum\":[\"update\"]},\"id\":{\"type\":\"string\",\"description\":\"id of block to update\"},\"block\":{\"$ref\":\"#/$defs/block\"}},\"required\":[\"type\",\"id\",\"block\"],\"additionalProperties\":false},{\"type\":\"object\",\"description\":\"Insert new blocks\",\"properties\":{\"type\":{\"type\":\"string\",\"enum\":[\"add\"]},\"referenceId\":{\"type\":\"string\",\"description\":\"MUST be an id of a block in the document\"},\"position\":{\"type\":\"string\",\"enum\":[\"before\",\"after\"],\"description\":\"`after` to add blocks AFTER (below) the block with `referenceId`, `before` to add the block BEFORE (above)\"},\"blocks\":{\"items\":{\"$ref\":\"#/$defs/block\"},\"type\":\"array\"}},\"required\":[\"type\",\"referenceId\",\"position\",\"blocks\"],\"additionalProperties\":false},{\"type\":\"object\",\"description\":\"Delete a block\",\"properties\":{\"type\":{\"type\":\"string\",\"enum\":[\"delete\"]},\"id\":{\"type\":\"string\",\"description\":\"id of block to delete\"}},\"required\":[\"type\",\"id\"],\"additionalProperties\":false}]}}},\"additionalProperties\":false,\"required\":[\"operations\"],\"$defs\":{\"styles\":{\"type\":\"object\",\"properties\":{\"bold\":{\"type\":\"boolean\"},\"italic\":{\"type\":\"boolean\"},\"underline\":{\"type\":\"boolean\"},\"strike\":{\"type\":\"boolean\"},\"code\":{\"type\":\"boolean\"},\"textColor\":{\"type\":\"string\"},\"backgroundColor\":{\"type\":\"string\"}},\"additionalProperties\":false},\"styledtext\":{\"type\":\"object\",\"properties\":{\"type\":{\"type\":\"string\",\"enum\":[\"text\"]},\"text\":{\"type\":\"string\"},\"styles\":{\"$ref\":\"#/$defs/styles\"}},\"additionalProperties\":false,\"required\":[\"type\",\"text\"]},\"inlinecontent\":{\"type\":\"array\",\"items\":{\"anyOf\":[{\"type\":\"object\",\"properties\":{\"type\":{\"type\":\"string\",\"enum\":[\"mention\"]},\"props\":{\"type\":\"object\",\"properties\":{\"user\":{\"type\":\"string\"}},\"additionalProperties\":false}},\"additionalProperties\":false,\"required\":[\"type\"]},{\"$ref\":\"#/$defs/styledtext\"},{\"type\":\"object\",\"properties\":{\"type\":{\"type\":\"string\",\"enum\":[\"link\"]},\"content\":{\"type\":\"array\",\"items\":{\"$ref\":\"#/$defs/styledtext\"}},\"href\":{\"type\":\"string\"}},\"additionalProperties\":false,\"required\":[\"type\",\"href\",\"content\"]}]}},\"block\":{\"anyOf\":[{\"type\":\"object\",\"properties\":{\"type\":{\"type\":\"string\",\"enum\":[\"paragraph\",\"quote\",\"bulletListItem\",\"numberedListItem\"]},\"content\":{\"$ref\":\"#/$defs/inlinecontent\"},\"props\":{\"type\":\"object\",\"properties\":{},\"additionalProperties\":false}},\"additionalProperties\":false,\"required\":[\"type\"]},{\"type\":\"object\",\"properties\":{\"type\":{\"type\":\"string\",\"enum\":[\"heading\"]},\"content\":{\"$ref\":\"#/$defs/inlinecontent\"},\"props\":{\"type\":\"object\",\"properties\":{\"level\":{\"type\":\"number\",\"enum\":[1,2,3]}},\"additionalProperties\":false}},\"additionalProperties\":false,\"required\":[\"type\"]},{\"type\":\"object\",\"properties\":{\"type\":{\"type\":\"string\",\"enum\":[\"codeBlock\"]},\"content\":{\"$ref\":\"#/$defs/inlinecontent\"},\"props\":{\"type\":\"object\",\"properties\":{\"language\":{\"type\":\"string\"}},\"additionalProperties\":false}},\"additionalProperties\":false,\"required\":[\"type\"]},{\"type\":\"object\",\"properties\":{\"type\":{\"type\":\"string\",\"enum\":[\"checkListItem\"]},\"content\":{\"$ref\":\"#/$defs/inlinecontent\"},\"props\":{\"type\":\"object\",\"properties\":{\"checked\":{\"type\":\"boolean\"}},\"additionalProperties\":false}},\"additionalProperties\":false,\"required\":[\"type\"]},{\"type\":\"object\",\"properties\":{\"type\":{\"type\":\"string\",\"enum\":[\"table\"]},\"content\":{\"type\":\"object\",\"properties\":{}},\"props\":{\"type\":\"object\",\"properties\":{},\"additionalProperties\":false}},\"additionalProperties\":false,\"required\":[\"type\"]}]}}}}}],\"stream\":true}", + "body": "{\"model\":\"gpt-4o-2024-08-06\",\"temperature\":0,\"messages\":[{\"role\":\"system\",\"content\":\"You're manipulating a text document using JSON blocks. \\n Make sure to follow the json schema provided. When referencing ids they MUST be EXACTLY the same (including the trailing $). \\n This is the document as an array of JSON blocks (the cursor is BETWEEN two blocks as indicated by cursor: true):\"},{\"role\":\"system\",\"content\":\"[{\\\"id\\\":\\\"ref1$\\\",\\\"block\\\":{\\\"id\\\":\\\"ref1\\\",\\\"type\\\":\\\"paragraph\\\",\\\"props\\\":{\\\"textColor\\\":\\\"default\\\",\\\"backgroundColor\\\":\\\"default\\\",\\\"textAlignment\\\":\\\"left\\\"},\\\"content\\\":[{\\\"type\\\":\\\"text\\\",\\\"text\\\":\\\"Hello, world!\\\",\\\"styles\\\":{}}]}},{\\\"cursor\\\":true},{\\\"id\\\":\\\"ref2$\\\",\\\"block\\\":{\\\"id\\\":\\\"ref2\\\",\\\"type\\\":\\\"paragraph\\\",\\\"props\\\":{\\\"textColor\\\":\\\"default\\\",\\\"backgroundColor\\\":\\\"default\\\",\\\"textAlignment\\\":\\\"left\\\"},\\\"content\\\":[{\\\"type\\\":\\\"text\\\",\\\"text\\\":\\\"How are you?\\\",\\\"styles\\\":{}}]}}]\"},{\"role\":\"system\",\"content\":\"The user asks you to do the following:\"},{\"role\":\"user\",\"content\":\"add a list with the items 'Apples' and 'Bananas' after the last sentence\"},{\"role\":\"system\",\"content\":\"First, determine what part of the document the user is talking about. You SHOULD probably take cursor info into account if needed.\\n EXAMPLE: if user says \\\"below\\\" (without pointing to a specific part of the document) he / she probably indicates the block(s) after the cursor. \\n EXAMPLE: If you want to insert content AT the cursor position (UNLESS indicated otherwise by the user), then you need `referenceId` to point to the block before the cursor with position `after` (or block below and `before`).\\n \\n Prefer updating existing blocks over removing and adding (but this also depends on the user's question).\"}],\"tool_choice\":{\"type\":\"function\",\"function\":{\"name\":\"json\"}},\"tools\":[{\"type\":\"function\",\"function\":{\"name\":\"json\",\"description\":\"Respond with a JSON object.\",\"parameters\":{\"type\":\"object\",\"properties\":{\"operations\":{\"type\":\"array\",\"items\":{\"anyOf\":[{\"type\":\"object\",\"description\":\"Update a block, the new block will replace the existing block.\",\"properties\":{\"type\":{\"type\":\"string\",\"enum\":[\"update\"]},\"id\":{\"type\":\"string\",\"description\":\"id of block to update\"},\"block\":{\"$ref\":\"#/$defs/block\"}},\"required\":[\"type\",\"id\",\"block\"],\"additionalProperties\":false},{\"type\":\"object\",\"description\":\"Insert new blocks\",\"properties\":{\"type\":{\"type\":\"string\",\"enum\":[\"add\"]},\"referenceId\":{\"type\":\"string\",\"description\":\"MUST be an id of a block in the document\"},\"position\":{\"type\":\"string\",\"enum\":[\"before\",\"after\"],\"description\":\"`after` to add blocks AFTER (below) the block with `referenceId`, `before` to add the block BEFORE (above)\"},\"blocks\":{\"items\":{\"$ref\":\"#/$defs/block\"},\"type\":\"array\"}},\"required\":[\"type\",\"referenceId\",\"position\",\"blocks\"],\"additionalProperties\":false},{\"type\":\"object\",\"description\":\"Delete a block\",\"properties\":{\"type\":{\"type\":\"string\",\"enum\":[\"delete\"]},\"id\":{\"type\":\"string\",\"description\":\"id of block to delete\"}},\"required\":[\"type\",\"id\"],\"additionalProperties\":false}]}}},\"additionalProperties\":false,\"required\":[\"operations\"],\"$defs\":{\"styles\":{\"type\":\"object\",\"properties\":{\"bold\":{\"type\":\"boolean\"},\"italic\":{\"type\":\"boolean\"},\"underline\":{\"type\":\"boolean\"},\"strike\":{\"type\":\"boolean\"},\"code\":{\"type\":\"boolean\"},\"textColor\":{\"type\":\"string\"},\"backgroundColor\":{\"type\":\"string\"}},\"additionalProperties\":false},\"styledtext\":{\"type\":\"object\",\"properties\":{\"type\":{\"type\":\"string\",\"enum\":[\"text\"]},\"text\":{\"type\":\"string\"},\"styles\":{\"$ref\":\"#/$defs/styles\"}},\"additionalProperties\":false,\"required\":[\"type\",\"text\"]},\"inlinecontent\":{\"type\":\"array\",\"items\":{\"anyOf\":[{\"type\":\"object\",\"properties\":{\"type\":{\"type\":\"string\",\"enum\":[\"mention\"]},\"props\":{\"type\":\"object\",\"properties\":{\"user\":{\"type\":\"string\"}},\"additionalProperties\":false}},\"additionalProperties\":false,\"required\":[\"type\"]},{\"$ref\":\"#/$defs/styledtext\"},{\"type\":\"object\",\"properties\":{\"type\":{\"type\":\"string\",\"enum\":[\"link\"]},\"content\":{\"type\":\"array\",\"items\":{\"$ref\":\"#/$defs/styledtext\"}},\"href\":{\"type\":\"string\"}},\"additionalProperties\":false,\"required\":[\"type\",\"href\",\"content\"]}]}},\"block\":{\"anyOf\":[{\"type\":\"object\",\"properties\":{\"type\":{\"type\":\"string\",\"enum\":[\"paragraph\",\"quote\",\"toggleListItem\",\"bulletListItem\",\"numberedListItem\"]},\"content\":{\"$ref\":\"#/$defs/inlinecontent\"},\"props\":{\"type\":\"object\",\"properties\":{},\"additionalProperties\":false}},\"additionalProperties\":false,\"required\":[\"type\"]},{\"type\":\"object\",\"properties\":{\"type\":{\"type\":\"string\",\"enum\":[\"heading\"]},\"content\":{\"$ref\":\"#/$defs/inlinecontent\"},\"props\":{\"type\":\"object\",\"properties\":{\"level\":{\"type\":\"number\",\"enum\":[1,2,3]},\"isTogglable\":{\"type\":\"boolean\"}},\"additionalProperties\":false}},\"additionalProperties\":false,\"required\":[\"type\"]},{\"type\":\"object\",\"properties\":{\"type\":{\"type\":\"string\",\"enum\":[\"codeBlock\"]},\"content\":{\"$ref\":\"#/$defs/inlinecontent\"},\"props\":{\"type\":\"object\",\"properties\":{\"language\":{\"type\":\"string\"}},\"additionalProperties\":false}},\"additionalProperties\":false,\"required\":[\"type\"]},{\"type\":\"object\",\"properties\":{\"type\":{\"type\":\"string\",\"enum\":[\"checkListItem\"]},\"content\":{\"$ref\":\"#/$defs/inlinecontent\"},\"props\":{\"type\":\"object\",\"properties\":{\"checked\":{\"type\":\"boolean\"}},\"additionalProperties\":false}},\"additionalProperties\":false,\"required\":[\"type\"]},{\"type\":\"object\",\"properties\":{\"type\":{\"type\":\"string\",\"enum\":[\"table\"]},\"content\":{\"type\":\"object\",\"properties\":{}},\"props\":{\"type\":\"object\",\"properties\":{},\"additionalProperties\":false}},\"additionalProperties\":false,\"required\":[\"type\"]}]}}}}}],\"stream\":true}", "headers": [], "cookies": [] }, "response": { "status": 200, "statusText": "", - "body": "data: {\"id\":\"chatcmpl-BgV8MxMvBGqgMIgl4FXlw9GQ6ZAs8\",\"object\":\"chat.completion.chunk\",\"created\":1749469154,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_a288987b44\",\"choices\":[{\"index\":0,\"delta\":{\"role\":\"assistant\",\"content\":null,\"tool_calls\":[{\"index\":0,\"id\":\"call_wqnsBqLL24UbVrnPyVkvPNcP\",\"type\":\"function\",\"function\":{\"name\":\"json\",\"arguments\":\"\"}}],\"refusal\":null},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BgV8MxMvBGqgMIgl4FXlw9GQ6ZAs8\",\"object\":\"chat.completion.chunk\",\"created\":1749469154,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_a288987b44\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"{\\\"\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BgV8MxMvBGqgMIgl4FXlw9GQ6ZAs8\",\"object\":\"chat.completion.chunk\",\"created\":1749469154,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_a288987b44\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"operations\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BgV8MxMvBGqgMIgl4FXlw9GQ6ZAs8\",\"object\":\"chat.completion.chunk\",\"created\":1749469154,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_a288987b44\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"\\\":[\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BgV8MxMvBGqgMIgl4FXlw9GQ6ZAs8\",\"object\":\"chat.completion.chunk\",\"created\":1749469154,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_a288987b44\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"{\\\"\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BgV8MxMvBGqgMIgl4FXlw9GQ6ZAs8\",\"object\":\"chat.completion.chunk\",\"created\":1749469154,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_a288987b44\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"type\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BgV8MxMvBGqgMIgl4FXlw9GQ6ZAs8\",\"object\":\"chat.completion.chunk\",\"created\":1749469154,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_a288987b44\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"\\\":\\\"\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BgV8MxMvBGqgMIgl4FXlw9GQ6ZAs8\",\"object\":\"chat.completion.chunk\",\"created\":1749469154,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_a288987b44\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"add\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BgV8MxMvBGqgMIgl4FXlw9GQ6ZAs8\",\"object\":\"chat.completion.chunk\",\"created\":1749469154,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_a288987b44\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"\\\",\\\"\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BgV8MxMvBGqgMIgl4FXlw9GQ6ZAs8\",\"object\":\"chat.completion.chunk\",\"created\":1749469154,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_a288987b44\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"reference\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BgV8MxMvBGqgMIgl4FXlw9GQ6ZAs8\",\"object\":\"chat.completion.chunk\",\"created\":1749469154,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_a288987b44\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"Id\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BgV8MxMvBGqgMIgl4FXlw9GQ6ZAs8\",\"object\":\"chat.completion.chunk\",\"created\":1749469154,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_a288987b44\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"\\\":\\\"\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BgV8MxMvBGqgMIgl4FXlw9GQ6ZAs8\",\"object\":\"chat.completion.chunk\",\"created\":1749469154,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_a288987b44\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"ref\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BgV8MxMvBGqgMIgl4FXlw9GQ6ZAs8\",\"object\":\"chat.completion.chunk\",\"created\":1749469154,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_a288987b44\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"2\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BgV8MxMvBGqgMIgl4FXlw9GQ6ZAs8\",\"object\":\"chat.completion.chunk\",\"created\":1749469154,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_a288987b44\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"$\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BgV8MxMvBGqgMIgl4FXlw9GQ6ZAs8\",\"object\":\"chat.completion.chunk\",\"created\":1749469154,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_a288987b44\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"\\\",\\\"\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BgV8MxMvBGqgMIgl4FXlw9GQ6ZAs8\",\"object\":\"chat.completion.chunk\",\"created\":1749469154,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_a288987b44\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"position\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BgV8MxMvBGqgMIgl4FXlw9GQ6ZAs8\",\"object\":\"chat.completion.chunk\",\"created\":1749469154,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_a288987b44\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"\\\":\\\"\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BgV8MxMvBGqgMIgl4FXlw9GQ6ZAs8\",\"object\":\"chat.completion.chunk\",\"created\":1749469154,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_a288987b44\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"after\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BgV8MxMvBGqgMIgl4FXlw9GQ6ZAs8\",\"object\":\"chat.completion.chunk\",\"created\":1749469154,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_a288987b44\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"\\\",\\\"\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BgV8MxMvBGqgMIgl4FXlw9GQ6ZAs8\",\"object\":\"chat.completion.chunk\",\"created\":1749469154,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_a288987b44\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"blocks\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BgV8MxMvBGqgMIgl4FXlw9GQ6ZAs8\",\"object\":\"chat.completion.chunk\",\"created\":1749469154,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_a288987b44\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"\\\":[\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BgV8MxMvBGqgMIgl4FXlw9GQ6ZAs8\",\"object\":\"chat.completion.chunk\",\"created\":1749469154,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_a288987b44\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"{\\\"\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BgV8MxMvBGqgMIgl4FXlw9GQ6ZAs8\",\"object\":\"chat.completion.chunk\",\"created\":1749469154,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_a288987b44\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"type\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BgV8MxMvBGqgMIgl4FXlw9GQ6ZAs8\",\"object\":\"chat.completion.chunk\",\"created\":1749469154,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_a288987b44\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"\\\":\\\"\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BgV8MxMvBGqgMIgl4FXlw9GQ6ZAs8\",\"object\":\"chat.completion.chunk\",\"created\":1749469154,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_a288987b44\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"bullet\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BgV8MxMvBGqgMIgl4FXlw9GQ6ZAs8\",\"object\":\"chat.completion.chunk\",\"created\":1749469154,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_a288987b44\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"List\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BgV8MxMvBGqgMIgl4FXlw9GQ6ZAs8\",\"object\":\"chat.completion.chunk\",\"created\":1749469154,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_a288987b44\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"Item\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BgV8MxMvBGqgMIgl4FXlw9GQ6ZAs8\",\"object\":\"chat.completion.chunk\",\"created\":1749469154,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_a288987b44\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"\\\",\\\"\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BgV8MxMvBGqgMIgl4FXlw9GQ6ZAs8\",\"object\":\"chat.completion.chunk\",\"created\":1749469154,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_a288987b44\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"content\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BgV8MxMvBGqgMIgl4FXlw9GQ6ZAs8\",\"object\":\"chat.completion.chunk\",\"created\":1749469154,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_a288987b44\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"\\\":[\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BgV8MxMvBGqgMIgl4FXlw9GQ6ZAs8\",\"object\":\"chat.completion.chunk\",\"created\":1749469154,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_a288987b44\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"{\\\"\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BgV8MxMvBGqgMIgl4FXlw9GQ6ZAs8\",\"object\":\"chat.completion.chunk\",\"created\":1749469154,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_a288987b44\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"type\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BgV8MxMvBGqgMIgl4FXlw9GQ6ZAs8\",\"object\":\"chat.completion.chunk\",\"created\":1749469154,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_a288987b44\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"\\\":\\\"\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BgV8MxMvBGqgMIgl4FXlw9GQ6ZAs8\",\"object\":\"chat.completion.chunk\",\"created\":1749469154,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_a288987b44\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"text\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BgV8MxMvBGqgMIgl4FXlw9GQ6ZAs8\",\"object\":\"chat.completion.chunk\",\"created\":1749469154,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_a288987b44\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"\\\",\\\"\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BgV8MxMvBGqgMIgl4FXlw9GQ6ZAs8\",\"object\":\"chat.completion.chunk\",\"created\":1749469154,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_a288987b44\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"text\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BgV8MxMvBGqgMIgl4FXlw9GQ6ZAs8\",\"object\":\"chat.completion.chunk\",\"created\":1749469154,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_a288987b44\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"\\\":\\\"\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BgV8MxMvBGqgMIgl4FXlw9GQ6ZAs8\",\"object\":\"chat.completion.chunk\",\"created\":1749469154,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_a288987b44\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"Ap\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BgV8MxMvBGqgMIgl4FXlw9GQ6ZAs8\",\"object\":\"chat.completion.chunk\",\"created\":1749469154,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_a288987b44\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"ples\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BgV8MxMvBGqgMIgl4FXlw9GQ6ZAs8\",\"object\":\"chat.completion.chunk\",\"created\":1749469154,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_a288987b44\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"\\\"}\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BgV8MxMvBGqgMIgl4FXlw9GQ6ZAs8\",\"object\":\"chat.completion.chunk\",\"created\":1749469154,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_a288987b44\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"]\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BgV8MxMvBGqgMIgl4FXlw9GQ6ZAs8\",\"object\":\"chat.completion.chunk\",\"created\":1749469154,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_a288987b44\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"},{\\\"\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BgV8MxMvBGqgMIgl4FXlw9GQ6ZAs8\",\"object\":\"chat.completion.chunk\",\"created\":1749469154,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_a288987b44\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"type\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BgV8MxMvBGqgMIgl4FXlw9GQ6ZAs8\",\"object\":\"chat.completion.chunk\",\"created\":1749469154,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_a288987b44\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"\\\":\\\"\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BgV8MxMvBGqgMIgl4FXlw9GQ6ZAs8\",\"object\":\"chat.completion.chunk\",\"created\":1749469154,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_a288987b44\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"bullet\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BgV8MxMvBGqgMIgl4FXlw9GQ6ZAs8\",\"object\":\"chat.completion.chunk\",\"created\":1749469154,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_a288987b44\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"List\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BgV8MxMvBGqgMIgl4FXlw9GQ6ZAs8\",\"object\":\"chat.completion.chunk\",\"created\":1749469154,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_a288987b44\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"Item\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BgV8MxMvBGqgMIgl4FXlw9GQ6ZAs8\",\"object\":\"chat.completion.chunk\",\"created\":1749469154,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_a288987b44\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"\\\",\\\"\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BgV8MxMvBGqgMIgl4FXlw9GQ6ZAs8\",\"object\":\"chat.completion.chunk\",\"created\":1749469154,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_a288987b44\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"content\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BgV8MxMvBGqgMIgl4FXlw9GQ6ZAs8\",\"object\":\"chat.completion.chunk\",\"created\":1749469154,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_a288987b44\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"\\\":[\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BgV8MxMvBGqgMIgl4FXlw9GQ6ZAs8\",\"object\":\"chat.completion.chunk\",\"created\":1749469154,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_a288987b44\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"{\\\"\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BgV8MxMvBGqgMIgl4FXlw9GQ6ZAs8\",\"object\":\"chat.completion.chunk\",\"created\":1749469154,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_a288987b44\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"type\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BgV8MxMvBGqgMIgl4FXlw9GQ6ZAs8\",\"object\":\"chat.completion.chunk\",\"created\":1749469154,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_a288987b44\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"\\\":\\\"\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BgV8MxMvBGqgMIgl4FXlw9GQ6ZAs8\",\"object\":\"chat.completion.chunk\",\"created\":1749469154,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_a288987b44\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"text\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BgV8MxMvBGqgMIgl4FXlw9GQ6ZAs8\",\"object\":\"chat.completion.chunk\",\"created\":1749469154,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_a288987b44\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"\\\",\\\"\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BgV8MxMvBGqgMIgl4FXlw9GQ6ZAs8\",\"object\":\"chat.completion.chunk\",\"created\":1749469154,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_a288987b44\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"text\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BgV8MxMvBGqgMIgl4FXlw9GQ6ZAs8\",\"object\":\"chat.completion.chunk\",\"created\":1749469154,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_a288987b44\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"\\\":\\\"\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BgV8MxMvBGqgMIgl4FXlw9GQ6ZAs8\",\"object\":\"chat.completion.chunk\",\"created\":1749469154,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_a288987b44\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"Ban\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BgV8MxMvBGqgMIgl4FXlw9GQ6ZAs8\",\"object\":\"chat.completion.chunk\",\"created\":1749469154,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_a288987b44\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"anas\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BgV8MxMvBGqgMIgl4FXlw9GQ6ZAs8\",\"object\":\"chat.completion.chunk\",\"created\":1749469154,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_a288987b44\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"\\\"}\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BgV8MxMvBGqgMIgl4FXlw9GQ6ZAs8\",\"object\":\"chat.completion.chunk\",\"created\":1749469154,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_a288987b44\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"]}\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BgV8MxMvBGqgMIgl4FXlw9GQ6ZAs8\",\"object\":\"chat.completion.chunk\",\"created\":1749469154,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_a288987b44\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"]}\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BgV8MxMvBGqgMIgl4FXlw9GQ6ZAs8\",\"object\":\"chat.completion.chunk\",\"created\":1749469154,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_a288987b44\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"]}\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BgV8MxMvBGqgMIgl4FXlw9GQ6ZAs8\",\"object\":\"chat.completion.chunk\",\"created\":1749469154,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_a288987b44\",\"choices\":[{\"index\":0,\"delta\":{},\"logprobs\":null,\"finish_reason\":\"stop\"}]}\n\ndata: [DONE]\n\n", + "body": "data: {\"id\":\"chatcmpl-BhXmuckFa9udQFFNiZj5nkUmWbF60\",\"object\":\"chat.completion.chunk\",\"created\":1749717684,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_a288987b44\",\"choices\":[{\"index\":0,\"delta\":{\"role\":\"assistant\",\"content\":null,\"tool_calls\":[{\"index\":0,\"id\":\"call_s2zbRUEfFcbxvR1vghPDhEfm\",\"type\":\"function\",\"function\":{\"name\":\"json\",\"arguments\":\"\"}}],\"refusal\":null},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BhXmuckFa9udQFFNiZj5nkUmWbF60\",\"object\":\"chat.completion.chunk\",\"created\":1749717684,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_a288987b44\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"{\\\"\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BhXmuckFa9udQFFNiZj5nkUmWbF60\",\"object\":\"chat.completion.chunk\",\"created\":1749717684,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_a288987b44\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"operations\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BhXmuckFa9udQFFNiZj5nkUmWbF60\",\"object\":\"chat.completion.chunk\",\"created\":1749717684,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_a288987b44\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"\\\":[\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BhXmuckFa9udQFFNiZj5nkUmWbF60\",\"object\":\"chat.completion.chunk\",\"created\":1749717684,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_a288987b44\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"{\\\"\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BhXmuckFa9udQFFNiZj5nkUmWbF60\",\"object\":\"chat.completion.chunk\",\"created\":1749717684,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_a288987b44\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"type\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BhXmuckFa9udQFFNiZj5nkUmWbF60\",\"object\":\"chat.completion.chunk\",\"created\":1749717684,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_a288987b44\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"\\\":\\\"\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BhXmuckFa9udQFFNiZj5nkUmWbF60\",\"object\":\"chat.completion.chunk\",\"created\":1749717684,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_a288987b44\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"add\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BhXmuckFa9udQFFNiZj5nkUmWbF60\",\"object\":\"chat.completion.chunk\",\"created\":1749717684,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_a288987b44\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"\\\",\\\"\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BhXmuckFa9udQFFNiZj5nkUmWbF60\",\"object\":\"chat.completion.chunk\",\"created\":1749717684,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_a288987b44\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"reference\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BhXmuckFa9udQFFNiZj5nkUmWbF60\",\"object\":\"chat.completion.chunk\",\"created\":1749717684,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_a288987b44\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"Id\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BhXmuckFa9udQFFNiZj5nkUmWbF60\",\"object\":\"chat.completion.chunk\",\"created\":1749717684,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_a288987b44\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"\\\":\\\"\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BhXmuckFa9udQFFNiZj5nkUmWbF60\",\"object\":\"chat.completion.chunk\",\"created\":1749717684,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_a288987b44\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"ref\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BhXmuckFa9udQFFNiZj5nkUmWbF60\",\"object\":\"chat.completion.chunk\",\"created\":1749717684,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_a288987b44\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"2\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BhXmuckFa9udQFFNiZj5nkUmWbF60\",\"object\":\"chat.completion.chunk\",\"created\":1749717684,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_a288987b44\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"$\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BhXmuckFa9udQFFNiZj5nkUmWbF60\",\"object\":\"chat.completion.chunk\",\"created\":1749717684,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_a288987b44\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"\\\",\\\"\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BhXmuckFa9udQFFNiZj5nkUmWbF60\",\"object\":\"chat.completion.chunk\",\"created\":1749717684,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_a288987b44\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"position\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BhXmuckFa9udQFFNiZj5nkUmWbF60\",\"object\":\"chat.completion.chunk\",\"created\":1749717684,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_a288987b44\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"\\\":\\\"\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BhXmuckFa9udQFFNiZj5nkUmWbF60\",\"object\":\"chat.completion.chunk\",\"created\":1749717684,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_a288987b44\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"after\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BhXmuckFa9udQFFNiZj5nkUmWbF60\",\"object\":\"chat.completion.chunk\",\"created\":1749717684,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_a288987b44\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"\\\",\\\"\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BhXmuckFa9udQFFNiZj5nkUmWbF60\",\"object\":\"chat.completion.chunk\",\"created\":1749717684,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_a288987b44\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"blocks\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BhXmuckFa9udQFFNiZj5nkUmWbF60\",\"object\":\"chat.completion.chunk\",\"created\":1749717684,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_a288987b44\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"\\\":[\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BhXmuckFa9udQFFNiZj5nkUmWbF60\",\"object\":\"chat.completion.chunk\",\"created\":1749717684,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_a288987b44\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"{\\\"\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BhXmuckFa9udQFFNiZj5nkUmWbF60\",\"object\":\"chat.completion.chunk\",\"created\":1749717684,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_a288987b44\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"type\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BhXmuckFa9udQFFNiZj5nkUmWbF60\",\"object\":\"chat.completion.chunk\",\"created\":1749717684,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_a288987b44\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"\\\":\\\"\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BhXmuckFa9udQFFNiZj5nkUmWbF60\",\"object\":\"chat.completion.chunk\",\"created\":1749717684,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_a288987b44\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"bullet\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BhXmuckFa9udQFFNiZj5nkUmWbF60\",\"object\":\"chat.completion.chunk\",\"created\":1749717684,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_a288987b44\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"List\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BhXmuckFa9udQFFNiZj5nkUmWbF60\",\"object\":\"chat.completion.chunk\",\"created\":1749717684,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_a288987b44\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"Item\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BhXmuckFa9udQFFNiZj5nkUmWbF60\",\"object\":\"chat.completion.chunk\",\"created\":1749717684,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_a288987b44\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"\\\",\\\"\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BhXmuckFa9udQFFNiZj5nkUmWbF60\",\"object\":\"chat.completion.chunk\",\"created\":1749717684,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_a288987b44\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"content\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BhXmuckFa9udQFFNiZj5nkUmWbF60\",\"object\":\"chat.completion.chunk\",\"created\":1749717684,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_a288987b44\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"\\\":[\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BhXmuckFa9udQFFNiZj5nkUmWbF60\",\"object\":\"chat.completion.chunk\",\"created\":1749717684,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_a288987b44\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"{\\\"\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BhXmuckFa9udQFFNiZj5nkUmWbF60\",\"object\":\"chat.completion.chunk\",\"created\":1749717684,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_a288987b44\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"type\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BhXmuckFa9udQFFNiZj5nkUmWbF60\",\"object\":\"chat.completion.chunk\",\"created\":1749717684,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_a288987b44\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"\\\":\\\"\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BhXmuckFa9udQFFNiZj5nkUmWbF60\",\"object\":\"chat.completion.chunk\",\"created\":1749717684,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_a288987b44\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"text\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BhXmuckFa9udQFFNiZj5nkUmWbF60\",\"object\":\"chat.completion.chunk\",\"created\":1749717684,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_a288987b44\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"\\\",\\\"\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BhXmuckFa9udQFFNiZj5nkUmWbF60\",\"object\":\"chat.completion.chunk\",\"created\":1749717684,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_a288987b44\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"text\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BhXmuckFa9udQFFNiZj5nkUmWbF60\",\"object\":\"chat.completion.chunk\",\"created\":1749717684,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_a288987b44\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"\\\":\\\"\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BhXmuckFa9udQFFNiZj5nkUmWbF60\",\"object\":\"chat.completion.chunk\",\"created\":1749717684,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_a288987b44\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"Ap\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BhXmuckFa9udQFFNiZj5nkUmWbF60\",\"object\":\"chat.completion.chunk\",\"created\":1749717684,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_a288987b44\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"ples\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BhXmuckFa9udQFFNiZj5nkUmWbF60\",\"object\":\"chat.completion.chunk\",\"created\":1749717684,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_a288987b44\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"\\\"}\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BhXmuckFa9udQFFNiZj5nkUmWbF60\",\"object\":\"chat.completion.chunk\",\"created\":1749717684,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_a288987b44\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"]\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BhXmuckFa9udQFFNiZj5nkUmWbF60\",\"object\":\"chat.completion.chunk\",\"created\":1749717684,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_a288987b44\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"},{\\\"\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BhXmuckFa9udQFFNiZj5nkUmWbF60\",\"object\":\"chat.completion.chunk\",\"created\":1749717684,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_a288987b44\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"type\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BhXmuckFa9udQFFNiZj5nkUmWbF60\",\"object\":\"chat.completion.chunk\",\"created\":1749717684,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_a288987b44\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"\\\":\\\"\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BhXmuckFa9udQFFNiZj5nkUmWbF60\",\"object\":\"chat.completion.chunk\",\"created\":1749717684,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_a288987b44\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"bullet\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BhXmuckFa9udQFFNiZj5nkUmWbF60\",\"object\":\"chat.completion.chunk\",\"created\":1749717684,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_a288987b44\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"List\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BhXmuckFa9udQFFNiZj5nkUmWbF60\",\"object\":\"chat.completion.chunk\",\"created\":1749717684,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_a288987b44\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"Item\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BhXmuckFa9udQFFNiZj5nkUmWbF60\",\"object\":\"chat.completion.chunk\",\"created\":1749717684,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_a288987b44\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"\\\",\\\"\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BhXmuckFa9udQFFNiZj5nkUmWbF60\",\"object\":\"chat.completion.chunk\",\"created\":1749717684,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_a288987b44\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"content\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BhXmuckFa9udQFFNiZj5nkUmWbF60\",\"object\":\"chat.completion.chunk\",\"created\":1749717684,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_a288987b44\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"\\\":[\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BhXmuckFa9udQFFNiZj5nkUmWbF60\",\"object\":\"chat.completion.chunk\",\"created\":1749717684,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_a288987b44\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"{\\\"\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BhXmuckFa9udQFFNiZj5nkUmWbF60\",\"object\":\"chat.completion.chunk\",\"created\":1749717684,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_a288987b44\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"type\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BhXmuckFa9udQFFNiZj5nkUmWbF60\",\"object\":\"chat.completion.chunk\",\"created\":1749717684,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_a288987b44\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"\\\":\\\"\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BhXmuckFa9udQFFNiZj5nkUmWbF60\",\"object\":\"chat.completion.chunk\",\"created\":1749717684,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_a288987b44\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"text\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BhXmuckFa9udQFFNiZj5nkUmWbF60\",\"object\":\"chat.completion.chunk\",\"created\":1749717684,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_a288987b44\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"\\\",\\\"\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BhXmuckFa9udQFFNiZj5nkUmWbF60\",\"object\":\"chat.completion.chunk\",\"created\":1749717684,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_a288987b44\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"text\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BhXmuckFa9udQFFNiZj5nkUmWbF60\",\"object\":\"chat.completion.chunk\",\"created\":1749717684,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_a288987b44\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"\\\":\\\"\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BhXmuckFa9udQFFNiZj5nkUmWbF60\",\"object\":\"chat.completion.chunk\",\"created\":1749717684,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_a288987b44\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"Ban\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BhXmuckFa9udQFFNiZj5nkUmWbF60\",\"object\":\"chat.completion.chunk\",\"created\":1749717684,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_a288987b44\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"anas\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BhXmuckFa9udQFFNiZj5nkUmWbF60\",\"object\":\"chat.completion.chunk\",\"created\":1749717684,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_a288987b44\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"\\\"}\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BhXmuckFa9udQFFNiZj5nkUmWbF60\",\"object\":\"chat.completion.chunk\",\"created\":1749717684,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_a288987b44\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"]}\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BhXmuckFa9udQFFNiZj5nkUmWbF60\",\"object\":\"chat.completion.chunk\",\"created\":1749717684,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_a288987b44\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"]}\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BhXmuckFa9udQFFNiZj5nkUmWbF60\",\"object\":\"chat.completion.chunk\",\"created\":1749717684,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_a288987b44\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"]}\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BhXmuckFa9udQFFNiZj5nkUmWbF60\",\"object\":\"chat.completion.chunk\",\"created\":1749717684,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_a288987b44\",\"choices\":[{\"index\":0,\"delta\":{},\"logprobs\":null,\"finish_reason\":\"stop\"}]}\n\ndata: [DONE]\n\n", "headers": [] } } \ No newline at end of file diff --git a/packages/xl-ai/src/api/formats/json/__snapshots__/json.test.ts/Add/__msw_snapshots__/openai.chat/gpt-4o-2024-08-06 (streaming)/add a new paragraph (empty doc)_1_a23033a325ecab1bc26b6551fffc10b8.json b/packages/xl-ai/src/api/formats/json/__snapshots__/json.test.ts/Add/__msw_snapshots__/openai.chat/gpt-4o-2024-08-06 (streaming)/add a new paragraph (empty doc)_1_c63578d88c96a0e47bf5049bbf58d7f5.json similarity index 65% rename from packages/xl-ai/src/api/formats/json/__snapshots__/json.test.ts/Add/__msw_snapshots__/openai.chat/gpt-4o-2024-08-06 (streaming)/add a new paragraph (empty doc)_1_a23033a325ecab1bc26b6551fffc10b8.json rename to packages/xl-ai/src/api/formats/json/__snapshots__/json.test.ts/Add/__msw_snapshots__/openai.chat/gpt-4o-2024-08-06 (streaming)/add a new paragraph (empty doc)_1_c63578d88c96a0e47bf5049bbf58d7f5.json index 44bbf73ee0..b86aa766df 100644 --- a/packages/xl-ai/src/api/formats/json/__snapshots__/json.test.ts/Add/__msw_snapshots__/openai.chat/gpt-4o-2024-08-06 (streaming)/add a new paragraph (empty doc)_1_a23033a325ecab1bc26b6551fffc10b8.json +++ b/packages/xl-ai/src/api/formats/json/__snapshots__/json.test.ts/Add/__msw_snapshots__/openai.chat/gpt-4o-2024-08-06 (streaming)/add a new paragraph (empty doc)_1_c63578d88c96a0e47bf5049bbf58d7f5.json @@ -2,14 +2,14 @@ "request": { "method": "POST", "url": "https://localhost:3000/ai?provider=openai&url=https%3A%2F%2Fapi.openai.com%2Fv1%2Fchat%2Fcompletions", - "body": "{\"model\":\"gpt-4o-2024-08-06\",\"temperature\":0,\"messages\":[{\"role\":\"system\",\"content\":\"You're manipulating a text document using JSON blocks. \\n Make sure to follow the json schema provided. When referencing ids they MUST be EXACTLY the same (including the trailing $). \\n This is the document as an array of JSON blocks (the cursor is BETWEEN two blocks as indicated by cursor: true):\"},{\"role\":\"system\",\"content\":\"[{\\\"id\\\":\\\"ref1$\\\",\\\"block\\\":{\\\"id\\\":\\\"ref1\\\",\\\"type\\\":\\\"paragraph\\\",\\\"props\\\":{\\\"textColor\\\":\\\"default\\\",\\\"backgroundColor\\\":\\\"default\\\",\\\"textAlignment\\\":\\\"left\\\"},\\\"content\\\":[]}},{\\\"cursor\\\":true}]\"},{\"role\":\"system\",\"content\":\"Because the actual document is empty, this is an example document to understand the schema:\"},{\"role\":\"system\",\"content\":\"{\\\"id\\\":\\\"ref3\\\",\\\"type\\\":\\\"paragraph\\\",\\\"content\\\":[{\\\"type\\\":\\\"text\\\",\\\"text\\\":\\\"Hello, world! \\\",\\\"styles\\\":{}},{\\\"type\\\":\\\"text\\\",\\\"text\\\":\\\"Bold text. \\\",\\\"styles\\\":{\\\"bold\\\":true}},{\\\"type\\\":\\\"link\\\",\\\"href\\\":\\\"https://www.w3.org\\\",\\\"content\\\":\\\"Link.\\\"}]}\"},{\"role\":\"system\",\"content\":\"The user asks you to do the following:\"},{\"role\":\"user\",\"content\":\"write a new paragraph with the text 'You look great today!'\"},{\"role\":\"system\",\"content\":\"First, determine what part of the document the user is talking about. You SHOULD probably take cursor info into account if needed.\\n EXAMPLE: if user says \\\"below\\\" (without pointing to a specific part of the document) he / she probably indicates the block(s) after the cursor. \\n EXAMPLE: If you want to insert content AT the cursor position (UNLESS indicated otherwise by the user), then you need `referenceId` to point to the block before the cursor with position `after` (or block below and `before`).\\n \\n Because the document is empty, first update the empty block before adding new blocks.\"}],\"tool_choice\":{\"type\":\"function\",\"function\":{\"name\":\"json\"}},\"tools\":[{\"type\":\"function\",\"function\":{\"name\":\"json\",\"description\":\"Respond with a JSON object.\",\"parameters\":{\"type\":\"object\",\"properties\":{\"operations\":{\"type\":\"array\",\"items\":{\"anyOf\":[{\"type\":\"object\",\"description\":\"Update a block, the new block will replace the existing block.\",\"properties\":{\"type\":{\"type\":\"string\",\"enum\":[\"update\"]},\"id\":{\"type\":\"string\",\"description\":\"id of block to update\"},\"block\":{\"$ref\":\"#/$defs/block\"}},\"required\":[\"type\",\"id\",\"block\"],\"additionalProperties\":false},{\"type\":\"object\",\"description\":\"Insert new blocks\",\"properties\":{\"type\":{\"type\":\"string\",\"enum\":[\"add\"]},\"referenceId\":{\"type\":\"string\",\"description\":\"MUST be an id of a block in the document\"},\"position\":{\"type\":\"string\",\"enum\":[\"before\",\"after\"],\"description\":\"`after` to add blocks AFTER (below) the block with `referenceId`, `before` to add the block BEFORE (above)\"},\"blocks\":{\"items\":{\"$ref\":\"#/$defs/block\"},\"type\":\"array\"}},\"required\":[\"type\",\"referenceId\",\"position\",\"blocks\"],\"additionalProperties\":false},{\"type\":\"object\",\"description\":\"Delete a block\",\"properties\":{\"type\":{\"type\":\"string\",\"enum\":[\"delete\"]},\"id\":{\"type\":\"string\",\"description\":\"id of block to delete\"}},\"required\":[\"type\",\"id\"],\"additionalProperties\":false}]}}},\"additionalProperties\":false,\"required\":[\"operations\"],\"$defs\":{\"styles\":{\"type\":\"object\",\"properties\":{\"bold\":{\"type\":\"boolean\"},\"italic\":{\"type\":\"boolean\"},\"underline\":{\"type\":\"boolean\"},\"strike\":{\"type\":\"boolean\"},\"code\":{\"type\":\"boolean\"},\"textColor\":{\"type\":\"string\"},\"backgroundColor\":{\"type\":\"string\"}},\"additionalProperties\":false},\"styledtext\":{\"type\":\"object\",\"properties\":{\"type\":{\"type\":\"string\",\"enum\":[\"text\"]},\"text\":{\"type\":\"string\"},\"styles\":{\"$ref\":\"#/$defs/styles\"}},\"additionalProperties\":false,\"required\":[\"type\",\"text\"]},\"inlinecontent\":{\"type\":\"array\",\"items\":{\"anyOf\":[{\"$ref\":\"#/$defs/styledtext\"},{\"type\":\"object\",\"properties\":{\"type\":{\"type\":\"string\",\"enum\":[\"link\"]},\"content\":{\"type\":\"array\",\"items\":{\"$ref\":\"#/$defs/styledtext\"}},\"href\":{\"type\":\"string\"}},\"additionalProperties\":false,\"required\":[\"type\",\"href\",\"content\"]}]}},\"block\":{\"anyOf\":[{\"type\":\"object\",\"properties\":{\"type\":{\"type\":\"string\",\"enum\":[\"paragraph\",\"quote\",\"bulletListItem\",\"numberedListItem\"]},\"content\":{\"$ref\":\"#/$defs/inlinecontent\"},\"props\":{\"type\":\"object\",\"properties\":{},\"additionalProperties\":false}},\"additionalProperties\":false,\"required\":[\"type\"]},{\"type\":\"object\",\"properties\":{\"type\":{\"type\":\"string\",\"enum\":[\"heading\"]},\"content\":{\"$ref\":\"#/$defs/inlinecontent\"},\"props\":{\"type\":\"object\",\"properties\":{\"level\":{\"type\":\"number\",\"enum\":[1,2,3]}},\"additionalProperties\":false}},\"additionalProperties\":false,\"required\":[\"type\"]},{\"type\":\"object\",\"properties\":{\"type\":{\"type\":\"string\",\"enum\":[\"codeBlock\"]},\"content\":{\"$ref\":\"#/$defs/inlinecontent\"},\"props\":{\"type\":\"object\",\"properties\":{\"language\":{\"type\":\"string\"}},\"additionalProperties\":false}},\"additionalProperties\":false,\"required\":[\"type\"]},{\"type\":\"object\",\"properties\":{\"type\":{\"type\":\"string\",\"enum\":[\"checkListItem\"]},\"content\":{\"$ref\":\"#/$defs/inlinecontent\"},\"props\":{\"type\":\"object\",\"properties\":{\"checked\":{\"type\":\"boolean\"}},\"additionalProperties\":false}},\"additionalProperties\":false,\"required\":[\"type\"]},{\"type\":\"object\",\"properties\":{\"type\":{\"type\":\"string\",\"enum\":[\"table\"]},\"content\":{\"type\":\"object\",\"properties\":{}},\"props\":{\"type\":\"object\",\"properties\":{},\"additionalProperties\":false}},\"additionalProperties\":false,\"required\":[\"type\"]}]}}}}}],\"stream\":true}", + "body": "{\"model\":\"gpt-4o-2024-08-06\",\"temperature\":0,\"messages\":[{\"role\":\"system\",\"content\":\"You're manipulating a text document using JSON blocks. \\n Make sure to follow the json schema provided. When referencing ids they MUST be EXACTLY the same (including the trailing $). \\n This is the document as an array of JSON blocks (the cursor is BETWEEN two blocks as indicated by cursor: true):\"},{\"role\":\"system\",\"content\":\"[{\\\"id\\\":\\\"ref1$\\\",\\\"block\\\":{\\\"id\\\":\\\"ref1\\\",\\\"type\\\":\\\"paragraph\\\",\\\"props\\\":{\\\"textColor\\\":\\\"default\\\",\\\"backgroundColor\\\":\\\"default\\\",\\\"textAlignment\\\":\\\"left\\\"},\\\"content\\\":[]}},{\\\"cursor\\\":true}]\"},{\"role\":\"system\",\"content\":\"Because the actual document is empty, this is an example document to understand the schema:\"},{\"role\":\"system\",\"content\":\"{\\\"id\\\":\\\"ref3\\\",\\\"type\\\":\\\"paragraph\\\",\\\"content\\\":[{\\\"type\\\":\\\"text\\\",\\\"text\\\":\\\"Hello, world! \\\",\\\"styles\\\":{}},{\\\"type\\\":\\\"text\\\",\\\"text\\\":\\\"Bold text. \\\",\\\"styles\\\":{\\\"bold\\\":true}},{\\\"type\\\":\\\"link\\\",\\\"href\\\":\\\"https://www.w3.org\\\",\\\"content\\\":\\\"Link.\\\"}]}\"},{\"role\":\"system\",\"content\":\"The user asks you to do the following:\"},{\"role\":\"user\",\"content\":\"write a new paragraph with the text 'You look great today!'\"},{\"role\":\"system\",\"content\":\"First, determine what part of the document the user is talking about. You SHOULD probably take cursor info into account if needed.\\n EXAMPLE: if user says \\\"below\\\" (without pointing to a specific part of the document) he / she probably indicates the block(s) after the cursor. \\n EXAMPLE: If you want to insert content AT the cursor position (UNLESS indicated otherwise by the user), then you need `referenceId` to point to the block before the cursor with position `after` (or block below and `before`).\\n \\n Because the document is empty, first update the empty block before adding new blocks.\"}],\"tool_choice\":{\"type\":\"function\",\"function\":{\"name\":\"json\"}},\"tools\":[{\"type\":\"function\",\"function\":{\"name\":\"json\",\"description\":\"Respond with a JSON object.\",\"parameters\":{\"type\":\"object\",\"properties\":{\"operations\":{\"type\":\"array\",\"items\":{\"anyOf\":[{\"type\":\"object\",\"description\":\"Update a block, the new block will replace the existing block.\",\"properties\":{\"type\":{\"type\":\"string\",\"enum\":[\"update\"]},\"id\":{\"type\":\"string\",\"description\":\"id of block to update\"},\"block\":{\"$ref\":\"#/$defs/block\"}},\"required\":[\"type\",\"id\",\"block\"],\"additionalProperties\":false},{\"type\":\"object\",\"description\":\"Insert new blocks\",\"properties\":{\"type\":{\"type\":\"string\",\"enum\":[\"add\"]},\"referenceId\":{\"type\":\"string\",\"description\":\"MUST be an id of a block in the document\"},\"position\":{\"type\":\"string\",\"enum\":[\"before\",\"after\"],\"description\":\"`after` to add blocks AFTER (below) the block with `referenceId`, `before` to add the block BEFORE (above)\"},\"blocks\":{\"items\":{\"$ref\":\"#/$defs/block\"},\"type\":\"array\"}},\"required\":[\"type\",\"referenceId\",\"position\",\"blocks\"],\"additionalProperties\":false},{\"type\":\"object\",\"description\":\"Delete a block\",\"properties\":{\"type\":{\"type\":\"string\",\"enum\":[\"delete\"]},\"id\":{\"type\":\"string\",\"description\":\"id of block to delete\"}},\"required\":[\"type\",\"id\"],\"additionalProperties\":false}]}}},\"additionalProperties\":false,\"required\":[\"operations\"],\"$defs\":{\"styles\":{\"type\":\"object\",\"properties\":{\"bold\":{\"type\":\"boolean\"},\"italic\":{\"type\":\"boolean\"},\"underline\":{\"type\":\"boolean\"},\"strike\":{\"type\":\"boolean\"},\"code\":{\"type\":\"boolean\"},\"textColor\":{\"type\":\"string\"},\"backgroundColor\":{\"type\":\"string\"}},\"additionalProperties\":false},\"styledtext\":{\"type\":\"object\",\"properties\":{\"type\":{\"type\":\"string\",\"enum\":[\"text\"]},\"text\":{\"type\":\"string\"},\"styles\":{\"$ref\":\"#/$defs/styles\"}},\"additionalProperties\":false,\"required\":[\"type\",\"text\"]},\"inlinecontent\":{\"type\":\"array\",\"items\":{\"anyOf\":[{\"$ref\":\"#/$defs/styledtext\"},{\"type\":\"object\",\"properties\":{\"type\":{\"type\":\"string\",\"enum\":[\"link\"]},\"content\":{\"type\":\"array\",\"items\":{\"$ref\":\"#/$defs/styledtext\"}},\"href\":{\"type\":\"string\"}},\"additionalProperties\":false,\"required\":[\"type\",\"href\",\"content\"]}]}},\"block\":{\"anyOf\":[{\"type\":\"object\",\"properties\":{\"type\":{\"type\":\"string\",\"enum\":[\"paragraph\",\"quote\",\"toggleListItem\",\"bulletListItem\",\"numberedListItem\"]},\"content\":{\"$ref\":\"#/$defs/inlinecontent\"},\"props\":{\"type\":\"object\",\"properties\":{},\"additionalProperties\":false}},\"additionalProperties\":false,\"required\":[\"type\"]},{\"type\":\"object\",\"properties\":{\"type\":{\"type\":\"string\",\"enum\":[\"heading\"]},\"content\":{\"$ref\":\"#/$defs/inlinecontent\"},\"props\":{\"type\":\"object\",\"properties\":{\"level\":{\"type\":\"number\",\"enum\":[1,2,3]},\"isTogglable\":{\"type\":\"boolean\"}},\"additionalProperties\":false}},\"additionalProperties\":false,\"required\":[\"type\"]},{\"type\":\"object\",\"properties\":{\"type\":{\"type\":\"string\",\"enum\":[\"codeBlock\"]},\"content\":{\"$ref\":\"#/$defs/inlinecontent\"},\"props\":{\"type\":\"object\",\"properties\":{\"language\":{\"type\":\"string\"}},\"additionalProperties\":false}},\"additionalProperties\":false,\"required\":[\"type\"]},{\"type\":\"object\",\"properties\":{\"type\":{\"type\":\"string\",\"enum\":[\"checkListItem\"]},\"content\":{\"$ref\":\"#/$defs/inlinecontent\"},\"props\":{\"type\":\"object\",\"properties\":{\"checked\":{\"type\":\"boolean\"}},\"additionalProperties\":false}},\"additionalProperties\":false,\"required\":[\"type\"]},{\"type\":\"object\",\"properties\":{\"type\":{\"type\":\"string\",\"enum\":[\"table\"]},\"content\":{\"type\":\"object\",\"properties\":{}},\"props\":{\"type\":\"object\",\"properties\":{},\"additionalProperties\":false}},\"additionalProperties\":false,\"required\":[\"type\"]}]}}}}}],\"stream\":true}", "headers": [], "cookies": [] }, "response": { "status": 200, "statusText": "", - "body": "data: {\"id\":\"chatcmpl-BgV8PGJvHWjVksvJQd9FmA0lnP357\",\"object\":\"chat.completion.chunk\",\"created\":1749469157,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_a288987b44\",\"choices\":[{\"index\":0,\"delta\":{\"role\":\"assistant\",\"content\":null,\"tool_calls\":[{\"index\":0,\"id\":\"call_oB7ZmKWfnsVtMHA0Nagt1jhs\",\"type\":\"function\",\"function\":{\"name\":\"json\",\"arguments\":\"\"}}],\"refusal\":null},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BgV8PGJvHWjVksvJQd9FmA0lnP357\",\"object\":\"chat.completion.chunk\",\"created\":1749469157,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_a288987b44\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"{\\\"\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BgV8PGJvHWjVksvJQd9FmA0lnP357\",\"object\":\"chat.completion.chunk\",\"created\":1749469157,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_a288987b44\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"operations\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BgV8PGJvHWjVksvJQd9FmA0lnP357\",\"object\":\"chat.completion.chunk\",\"created\":1749469157,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_a288987b44\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"\\\":[\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BgV8PGJvHWjVksvJQd9FmA0lnP357\",\"object\":\"chat.completion.chunk\",\"created\":1749469157,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_a288987b44\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"{\\\"\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BgV8PGJvHWjVksvJQd9FmA0lnP357\",\"object\":\"chat.completion.chunk\",\"created\":1749469157,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_a288987b44\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"type\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BgV8PGJvHWjVksvJQd9FmA0lnP357\",\"object\":\"chat.completion.chunk\",\"created\":1749469157,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_a288987b44\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"\\\":\\\"\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BgV8PGJvHWjVksvJQd9FmA0lnP357\",\"object\":\"chat.completion.chunk\",\"created\":1749469157,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_a288987b44\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"update\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BgV8PGJvHWjVksvJQd9FmA0lnP357\",\"object\":\"chat.completion.chunk\",\"created\":1749469157,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_a288987b44\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"\\\",\\\"\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BgV8PGJvHWjVksvJQd9FmA0lnP357\",\"object\":\"chat.completion.chunk\",\"created\":1749469157,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_a288987b44\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"id\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BgV8PGJvHWjVksvJQd9FmA0lnP357\",\"object\":\"chat.completion.chunk\",\"created\":1749469157,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_a288987b44\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"\\\":\\\"\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BgV8PGJvHWjVksvJQd9FmA0lnP357\",\"object\":\"chat.completion.chunk\",\"created\":1749469157,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_a288987b44\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"ref\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BgV8PGJvHWjVksvJQd9FmA0lnP357\",\"object\":\"chat.completion.chunk\",\"created\":1749469157,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_a288987b44\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"1\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BgV8PGJvHWjVksvJQd9FmA0lnP357\",\"object\":\"chat.completion.chunk\",\"created\":1749469157,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_a288987b44\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"$\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BgV8PGJvHWjVksvJQd9FmA0lnP357\",\"object\":\"chat.completion.chunk\",\"created\":1749469157,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_a288987b44\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"\\\",\\\"\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BgV8PGJvHWjVksvJQd9FmA0lnP357\",\"object\":\"chat.completion.chunk\",\"created\":1749469157,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_a288987b44\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"block\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BgV8PGJvHWjVksvJQd9FmA0lnP357\",\"object\":\"chat.completion.chunk\",\"created\":1749469157,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_a288987b44\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"\\\":{\\\"\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BgV8PGJvHWjVksvJQd9FmA0lnP357\",\"object\":\"chat.completion.chunk\",\"created\":1749469157,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_a288987b44\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"type\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BgV8PGJvHWjVksvJQd9FmA0lnP357\",\"object\":\"chat.completion.chunk\",\"created\":1749469157,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_a288987b44\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"\\\":\\\"\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BgV8PGJvHWjVksvJQd9FmA0lnP357\",\"object\":\"chat.completion.chunk\",\"created\":1749469157,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_a288987b44\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"paragraph\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BgV8PGJvHWjVksvJQd9FmA0lnP357\",\"object\":\"chat.completion.chunk\",\"created\":1749469157,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_a288987b44\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"\\\",\\\"\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BgV8PGJvHWjVksvJQd9FmA0lnP357\",\"object\":\"chat.completion.chunk\",\"created\":1749469157,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_a288987b44\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"content\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BgV8PGJvHWjVksvJQd9FmA0lnP357\",\"object\":\"chat.completion.chunk\",\"created\":1749469157,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_a288987b44\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"\\\":[\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BgV8PGJvHWjVksvJQd9FmA0lnP357\",\"object\":\"chat.completion.chunk\",\"created\":1749469157,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_a288987b44\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"{\\\"\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BgV8PGJvHWjVksvJQd9FmA0lnP357\",\"object\":\"chat.completion.chunk\",\"created\":1749469157,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_a288987b44\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"type\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BgV8PGJvHWjVksvJQd9FmA0lnP357\",\"object\":\"chat.completion.chunk\",\"created\":1749469157,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_a288987b44\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"\\\":\\\"\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BgV8PGJvHWjVksvJQd9FmA0lnP357\",\"object\":\"chat.completion.chunk\",\"created\":1749469157,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_a288987b44\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"text\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BgV8PGJvHWjVksvJQd9FmA0lnP357\",\"object\":\"chat.completion.chunk\",\"created\":1749469157,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_a288987b44\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"\\\",\\\"\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BgV8PGJvHWjVksvJQd9FmA0lnP357\",\"object\":\"chat.completion.chunk\",\"created\":1749469157,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_a288987b44\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"text\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BgV8PGJvHWjVksvJQd9FmA0lnP357\",\"object\":\"chat.completion.chunk\",\"created\":1749469157,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_a288987b44\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"\\\":\\\"\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BgV8PGJvHWjVksvJQd9FmA0lnP357\",\"object\":\"chat.completion.chunk\",\"created\":1749469157,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_a288987b44\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"You\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BgV8PGJvHWjVksvJQd9FmA0lnP357\",\"object\":\"chat.completion.chunk\",\"created\":1749469157,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_a288987b44\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\" look\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BgV8PGJvHWjVksvJQd9FmA0lnP357\",\"object\":\"chat.completion.chunk\",\"created\":1749469157,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_a288987b44\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\" great\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BgV8PGJvHWjVksvJQd9FmA0lnP357\",\"object\":\"chat.completion.chunk\",\"created\":1749469157,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_a288987b44\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\" today\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BgV8PGJvHWjVksvJQd9FmA0lnP357\",\"object\":\"chat.completion.chunk\",\"created\":1749469157,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_a288987b44\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"!\\\"\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BgV8PGJvHWjVksvJQd9FmA0lnP357\",\"object\":\"chat.completion.chunk\",\"created\":1749469157,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_a288987b44\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"}]\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BgV8PGJvHWjVksvJQd9FmA0lnP357\",\"object\":\"chat.completion.chunk\",\"created\":1749469157,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_a288987b44\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"}}\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BgV8PGJvHWjVksvJQd9FmA0lnP357\",\"object\":\"chat.completion.chunk\",\"created\":1749469157,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_a288987b44\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"]}\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BgV8PGJvHWjVksvJQd9FmA0lnP357\",\"object\":\"chat.completion.chunk\",\"created\":1749469157,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_a288987b44\",\"choices\":[{\"index\":0,\"delta\":{},\"logprobs\":null,\"finish_reason\":\"stop\"}]}\n\ndata: [DONE]\n\n", + "body": "data: {\"id\":\"chatcmpl-BhXmxWfJRtY2fljlZCvE32pN4LarC\",\"object\":\"chat.completion.chunk\",\"created\":1749717687,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_a288987b44\",\"choices\":[{\"index\":0,\"delta\":{\"role\":\"assistant\",\"content\":null,\"tool_calls\":[{\"index\":0,\"id\":\"call_ClqqDwg8YrWn0QwsKewFT1S8\",\"type\":\"function\",\"function\":{\"name\":\"json\",\"arguments\":\"\"}}],\"refusal\":null},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BhXmxWfJRtY2fljlZCvE32pN4LarC\",\"object\":\"chat.completion.chunk\",\"created\":1749717687,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_a288987b44\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"{\\\"\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BhXmxWfJRtY2fljlZCvE32pN4LarC\",\"object\":\"chat.completion.chunk\",\"created\":1749717687,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_a288987b44\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"operations\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BhXmxWfJRtY2fljlZCvE32pN4LarC\",\"object\":\"chat.completion.chunk\",\"created\":1749717687,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_a288987b44\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"\\\":[\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BhXmxWfJRtY2fljlZCvE32pN4LarC\",\"object\":\"chat.completion.chunk\",\"created\":1749717687,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_a288987b44\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"{\\\"\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BhXmxWfJRtY2fljlZCvE32pN4LarC\",\"object\":\"chat.completion.chunk\",\"created\":1749717687,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_a288987b44\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"type\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BhXmxWfJRtY2fljlZCvE32pN4LarC\",\"object\":\"chat.completion.chunk\",\"created\":1749717687,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_a288987b44\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"\\\":\\\"\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BhXmxWfJRtY2fljlZCvE32pN4LarC\",\"object\":\"chat.completion.chunk\",\"created\":1749717687,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_a288987b44\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"update\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BhXmxWfJRtY2fljlZCvE32pN4LarC\",\"object\":\"chat.completion.chunk\",\"created\":1749717687,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_a288987b44\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"\\\",\\\"\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BhXmxWfJRtY2fljlZCvE32pN4LarC\",\"object\":\"chat.completion.chunk\",\"created\":1749717687,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_a288987b44\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"id\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BhXmxWfJRtY2fljlZCvE32pN4LarC\",\"object\":\"chat.completion.chunk\",\"created\":1749717687,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_a288987b44\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"\\\":\\\"\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BhXmxWfJRtY2fljlZCvE32pN4LarC\",\"object\":\"chat.completion.chunk\",\"created\":1749717687,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_a288987b44\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"ref\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BhXmxWfJRtY2fljlZCvE32pN4LarC\",\"object\":\"chat.completion.chunk\",\"created\":1749717687,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_a288987b44\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"1\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BhXmxWfJRtY2fljlZCvE32pN4LarC\",\"object\":\"chat.completion.chunk\",\"created\":1749717687,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_a288987b44\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"$\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BhXmxWfJRtY2fljlZCvE32pN4LarC\",\"object\":\"chat.completion.chunk\",\"created\":1749717687,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_a288987b44\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"\\\",\\\"\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BhXmxWfJRtY2fljlZCvE32pN4LarC\",\"object\":\"chat.completion.chunk\",\"created\":1749717687,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_a288987b44\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"block\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BhXmxWfJRtY2fljlZCvE32pN4LarC\",\"object\":\"chat.completion.chunk\",\"created\":1749717687,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_a288987b44\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"\\\":{\\\"\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BhXmxWfJRtY2fljlZCvE32pN4LarC\",\"object\":\"chat.completion.chunk\",\"created\":1749717687,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_a288987b44\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"type\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BhXmxWfJRtY2fljlZCvE32pN4LarC\",\"object\":\"chat.completion.chunk\",\"created\":1749717687,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_a288987b44\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"\\\":\\\"\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BhXmxWfJRtY2fljlZCvE32pN4LarC\",\"object\":\"chat.completion.chunk\",\"created\":1749717687,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_a288987b44\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"paragraph\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BhXmxWfJRtY2fljlZCvE32pN4LarC\",\"object\":\"chat.completion.chunk\",\"created\":1749717687,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_a288987b44\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"\\\",\\\"\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BhXmxWfJRtY2fljlZCvE32pN4LarC\",\"object\":\"chat.completion.chunk\",\"created\":1749717687,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_a288987b44\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"content\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BhXmxWfJRtY2fljlZCvE32pN4LarC\",\"object\":\"chat.completion.chunk\",\"created\":1749717687,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_a288987b44\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"\\\":[\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BhXmxWfJRtY2fljlZCvE32pN4LarC\",\"object\":\"chat.completion.chunk\",\"created\":1749717687,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_a288987b44\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"{\\\"\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BhXmxWfJRtY2fljlZCvE32pN4LarC\",\"object\":\"chat.completion.chunk\",\"created\":1749717687,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_a288987b44\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"type\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BhXmxWfJRtY2fljlZCvE32pN4LarC\",\"object\":\"chat.completion.chunk\",\"created\":1749717687,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_a288987b44\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"\\\":\\\"\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BhXmxWfJRtY2fljlZCvE32pN4LarC\",\"object\":\"chat.completion.chunk\",\"created\":1749717687,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_a288987b44\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"text\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BhXmxWfJRtY2fljlZCvE32pN4LarC\",\"object\":\"chat.completion.chunk\",\"created\":1749717687,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_a288987b44\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"\\\",\\\"\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BhXmxWfJRtY2fljlZCvE32pN4LarC\",\"object\":\"chat.completion.chunk\",\"created\":1749717687,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_a288987b44\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"text\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BhXmxWfJRtY2fljlZCvE32pN4LarC\",\"object\":\"chat.completion.chunk\",\"created\":1749717687,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_a288987b44\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"\\\":\\\"\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BhXmxWfJRtY2fljlZCvE32pN4LarC\",\"object\":\"chat.completion.chunk\",\"created\":1749717687,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_a288987b44\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"You\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BhXmxWfJRtY2fljlZCvE32pN4LarC\",\"object\":\"chat.completion.chunk\",\"created\":1749717687,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_a288987b44\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\" look\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BhXmxWfJRtY2fljlZCvE32pN4LarC\",\"object\":\"chat.completion.chunk\",\"created\":1749717687,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_a288987b44\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\" great\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BhXmxWfJRtY2fljlZCvE32pN4LarC\",\"object\":\"chat.completion.chunk\",\"created\":1749717687,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_a288987b44\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\" today\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BhXmxWfJRtY2fljlZCvE32pN4LarC\",\"object\":\"chat.completion.chunk\",\"created\":1749717687,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_a288987b44\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"!\\\"\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BhXmxWfJRtY2fljlZCvE32pN4LarC\",\"object\":\"chat.completion.chunk\",\"created\":1749717687,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_a288987b44\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"}]\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BhXmxWfJRtY2fljlZCvE32pN4LarC\",\"object\":\"chat.completion.chunk\",\"created\":1749717687,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_a288987b44\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"}}\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BhXmxWfJRtY2fljlZCvE32pN4LarC\",\"object\":\"chat.completion.chunk\",\"created\":1749717687,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_a288987b44\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"]}\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BhXmxWfJRtY2fljlZCvE32pN4LarC\",\"object\":\"chat.completion.chunk\",\"created\":1749717687,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_a288987b44\",\"choices\":[{\"index\":0,\"delta\":{},\"logprobs\":null,\"finish_reason\":\"stop\"}]}\n\ndata: [DONE]\n\n", "headers": [] } } \ No newline at end of file diff --git a/packages/xl-ai/src/api/formats/json/__snapshots__/json.test.ts/Add/__msw_snapshots__/openai.chat/gpt-4o-2024-08-06 (streaming)/add a new paragraph (end)_1_21c5b987634e5a995d462e25540b219b.json b/packages/xl-ai/src/api/formats/json/__snapshots__/json.test.ts/Add/__msw_snapshots__/openai.chat/gpt-4o-2024-08-06 (streaming)/add a new paragraph (end)_1_d0bdd09006f472b4f0207e09df7777c0.json similarity index 66% rename from packages/xl-ai/src/api/formats/json/__snapshots__/json.test.ts/Add/__msw_snapshots__/openai.chat/gpt-4o-2024-08-06 (streaming)/add a new paragraph (end)_1_21c5b987634e5a995d462e25540b219b.json rename to packages/xl-ai/src/api/formats/json/__snapshots__/json.test.ts/Add/__msw_snapshots__/openai.chat/gpt-4o-2024-08-06 (streaming)/add a new paragraph (end)_1_d0bdd09006f472b4f0207e09df7777c0.json index 8e65118bc0..a4229bf1d6 100644 --- a/packages/xl-ai/src/api/formats/json/__snapshots__/json.test.ts/Add/__msw_snapshots__/openai.chat/gpt-4o-2024-08-06 (streaming)/add a new paragraph (end)_1_21c5b987634e5a995d462e25540b219b.json +++ b/packages/xl-ai/src/api/formats/json/__snapshots__/json.test.ts/Add/__msw_snapshots__/openai.chat/gpt-4o-2024-08-06 (streaming)/add a new paragraph (end)_1_d0bdd09006f472b4f0207e09df7777c0.json @@ -2,14 +2,14 @@ "request": { "method": "POST", "url": "https://localhost:3000/ai?provider=openai&url=https%3A%2F%2Fapi.openai.com%2Fv1%2Fchat%2Fcompletions", - "body": "{\"model\":\"gpt-4o-2024-08-06\",\"temperature\":0,\"messages\":[{\"role\":\"system\",\"content\":\"You're manipulating a text document using JSON blocks. \\n Make sure to follow the json schema provided. When referencing ids they MUST be EXACTLY the same (including the trailing $). \\n This is the document as an array of JSON blocks (the cursor is BETWEEN two blocks as indicated by cursor: true):\"},{\"role\":\"system\",\"content\":\"[{\\\"id\\\":\\\"ref1$\\\",\\\"block\\\":{\\\"id\\\":\\\"ref1\\\",\\\"type\\\":\\\"paragraph\\\",\\\"props\\\":{\\\"textColor\\\":\\\"default\\\",\\\"backgroundColor\\\":\\\"default\\\",\\\"textAlignment\\\":\\\"left\\\"},\\\"content\\\":[{\\\"type\\\":\\\"text\\\",\\\"text\\\":\\\"Hello, world!\\\",\\\"styles\\\":{}}]}},{\\\"cursor\\\":true},{\\\"id\\\":\\\"ref2$\\\",\\\"block\\\":{\\\"id\\\":\\\"ref2\\\",\\\"type\\\":\\\"paragraph\\\",\\\"props\\\":{\\\"textColor\\\":\\\"default\\\",\\\"backgroundColor\\\":\\\"default\\\",\\\"textAlignment\\\":\\\"left\\\"},\\\"content\\\":[{\\\"type\\\":\\\"text\\\",\\\"text\\\":\\\"How are you?\\\",\\\"styles\\\":{}}]}}]\"},{\"role\":\"system\",\"content\":\"The user asks you to do the following:\"},{\"role\":\"user\",\"content\":\"add a new paragraph with the text 'You look great today!' after the last sentence\"},{\"role\":\"system\",\"content\":\"First, determine what part of the document the user is talking about. You SHOULD probably take cursor info into account if needed.\\n EXAMPLE: if user says \\\"below\\\" (without pointing to a specific part of the document) he / she probably indicates the block(s) after the cursor. \\n EXAMPLE: If you want to insert content AT the cursor position (UNLESS indicated otherwise by the user), then you need `referenceId` to point to the block before the cursor with position `after` (or block below and `before`).\\n \\n Prefer updating existing blocks over removing and adding (but this also depends on the user's question).\"}],\"tool_choice\":{\"type\":\"function\",\"function\":{\"name\":\"json\"}},\"tools\":[{\"type\":\"function\",\"function\":{\"name\":\"json\",\"description\":\"Respond with a JSON object.\",\"parameters\":{\"type\":\"object\",\"properties\":{\"operations\":{\"type\":\"array\",\"items\":{\"anyOf\":[{\"type\":\"object\",\"description\":\"Update a block, the new block will replace the existing block.\",\"properties\":{\"type\":{\"type\":\"string\",\"enum\":[\"update\"]},\"id\":{\"type\":\"string\",\"description\":\"id of block to update\"},\"block\":{\"$ref\":\"#/$defs/block\"}},\"required\":[\"type\",\"id\",\"block\"],\"additionalProperties\":false},{\"type\":\"object\",\"description\":\"Insert new blocks\",\"properties\":{\"type\":{\"type\":\"string\",\"enum\":[\"add\"]},\"referenceId\":{\"type\":\"string\",\"description\":\"MUST be an id of a block in the document\"},\"position\":{\"type\":\"string\",\"enum\":[\"before\",\"after\"],\"description\":\"`after` to add blocks AFTER (below) the block with `referenceId`, `before` to add the block BEFORE (above)\"},\"blocks\":{\"items\":{\"$ref\":\"#/$defs/block\"},\"type\":\"array\"}},\"required\":[\"type\",\"referenceId\",\"position\",\"blocks\"],\"additionalProperties\":false},{\"type\":\"object\",\"description\":\"Delete a block\",\"properties\":{\"type\":{\"type\":\"string\",\"enum\":[\"delete\"]},\"id\":{\"type\":\"string\",\"description\":\"id of block to delete\"}},\"required\":[\"type\",\"id\"],\"additionalProperties\":false}]}}},\"additionalProperties\":false,\"required\":[\"operations\"],\"$defs\":{\"styles\":{\"type\":\"object\",\"properties\":{\"bold\":{\"type\":\"boolean\"},\"italic\":{\"type\":\"boolean\"},\"underline\":{\"type\":\"boolean\"},\"strike\":{\"type\":\"boolean\"},\"code\":{\"type\":\"boolean\"},\"textColor\":{\"type\":\"string\"},\"backgroundColor\":{\"type\":\"string\"}},\"additionalProperties\":false},\"styledtext\":{\"type\":\"object\",\"properties\":{\"type\":{\"type\":\"string\",\"enum\":[\"text\"]},\"text\":{\"type\":\"string\"},\"styles\":{\"$ref\":\"#/$defs/styles\"}},\"additionalProperties\":false,\"required\":[\"type\",\"text\"]},\"inlinecontent\":{\"type\":\"array\",\"items\":{\"anyOf\":[{\"type\":\"object\",\"properties\":{\"type\":{\"type\":\"string\",\"enum\":[\"mention\"]},\"props\":{\"type\":\"object\",\"properties\":{\"user\":{\"type\":\"string\"}},\"additionalProperties\":false}},\"additionalProperties\":false,\"required\":[\"type\"]},{\"$ref\":\"#/$defs/styledtext\"},{\"type\":\"object\",\"properties\":{\"type\":{\"type\":\"string\",\"enum\":[\"link\"]},\"content\":{\"type\":\"array\",\"items\":{\"$ref\":\"#/$defs/styledtext\"}},\"href\":{\"type\":\"string\"}},\"additionalProperties\":false,\"required\":[\"type\",\"href\",\"content\"]}]}},\"block\":{\"anyOf\":[{\"type\":\"object\",\"properties\":{\"type\":{\"type\":\"string\",\"enum\":[\"paragraph\",\"quote\",\"bulletListItem\",\"numberedListItem\"]},\"content\":{\"$ref\":\"#/$defs/inlinecontent\"},\"props\":{\"type\":\"object\",\"properties\":{},\"additionalProperties\":false}},\"additionalProperties\":false,\"required\":[\"type\"]},{\"type\":\"object\",\"properties\":{\"type\":{\"type\":\"string\",\"enum\":[\"heading\"]},\"content\":{\"$ref\":\"#/$defs/inlinecontent\"},\"props\":{\"type\":\"object\",\"properties\":{\"level\":{\"type\":\"number\",\"enum\":[1,2,3]}},\"additionalProperties\":false}},\"additionalProperties\":false,\"required\":[\"type\"]},{\"type\":\"object\",\"properties\":{\"type\":{\"type\":\"string\",\"enum\":[\"codeBlock\"]},\"content\":{\"$ref\":\"#/$defs/inlinecontent\"},\"props\":{\"type\":\"object\",\"properties\":{\"language\":{\"type\":\"string\"}},\"additionalProperties\":false}},\"additionalProperties\":false,\"required\":[\"type\"]},{\"type\":\"object\",\"properties\":{\"type\":{\"type\":\"string\",\"enum\":[\"checkListItem\"]},\"content\":{\"$ref\":\"#/$defs/inlinecontent\"},\"props\":{\"type\":\"object\",\"properties\":{\"checked\":{\"type\":\"boolean\"}},\"additionalProperties\":false}},\"additionalProperties\":false,\"required\":[\"type\"]},{\"type\":\"object\",\"properties\":{\"type\":{\"type\":\"string\",\"enum\":[\"table\"]},\"content\":{\"type\":\"object\",\"properties\":{}},\"props\":{\"type\":\"object\",\"properties\":{},\"additionalProperties\":false}},\"additionalProperties\":false,\"required\":[\"type\"]}]}}}}}],\"stream\":true}", + "body": "{\"model\":\"gpt-4o-2024-08-06\",\"temperature\":0,\"messages\":[{\"role\":\"system\",\"content\":\"You're manipulating a text document using JSON blocks. \\n Make sure to follow the json schema provided. When referencing ids they MUST be EXACTLY the same (including the trailing $). \\n This is the document as an array of JSON blocks (the cursor is BETWEEN two blocks as indicated by cursor: true):\"},{\"role\":\"system\",\"content\":\"[{\\\"id\\\":\\\"ref1$\\\",\\\"block\\\":{\\\"id\\\":\\\"ref1\\\",\\\"type\\\":\\\"paragraph\\\",\\\"props\\\":{\\\"textColor\\\":\\\"default\\\",\\\"backgroundColor\\\":\\\"default\\\",\\\"textAlignment\\\":\\\"left\\\"},\\\"content\\\":[{\\\"type\\\":\\\"text\\\",\\\"text\\\":\\\"Hello, world!\\\",\\\"styles\\\":{}}]}},{\\\"cursor\\\":true},{\\\"id\\\":\\\"ref2$\\\",\\\"block\\\":{\\\"id\\\":\\\"ref2\\\",\\\"type\\\":\\\"paragraph\\\",\\\"props\\\":{\\\"textColor\\\":\\\"default\\\",\\\"backgroundColor\\\":\\\"default\\\",\\\"textAlignment\\\":\\\"left\\\"},\\\"content\\\":[{\\\"type\\\":\\\"text\\\",\\\"text\\\":\\\"How are you?\\\",\\\"styles\\\":{}}]}}]\"},{\"role\":\"system\",\"content\":\"The user asks you to do the following:\"},{\"role\":\"user\",\"content\":\"add a new paragraph with the text 'You look great today!' after the last sentence\"},{\"role\":\"system\",\"content\":\"First, determine what part of the document the user is talking about. You SHOULD probably take cursor info into account if needed.\\n EXAMPLE: if user says \\\"below\\\" (without pointing to a specific part of the document) he / she probably indicates the block(s) after the cursor. \\n EXAMPLE: If you want to insert content AT the cursor position (UNLESS indicated otherwise by the user), then you need `referenceId` to point to the block before the cursor with position `after` (or block below and `before`).\\n \\n Prefer updating existing blocks over removing and adding (but this also depends on the user's question).\"}],\"tool_choice\":{\"type\":\"function\",\"function\":{\"name\":\"json\"}},\"tools\":[{\"type\":\"function\",\"function\":{\"name\":\"json\",\"description\":\"Respond with a JSON object.\",\"parameters\":{\"type\":\"object\",\"properties\":{\"operations\":{\"type\":\"array\",\"items\":{\"anyOf\":[{\"type\":\"object\",\"description\":\"Update a block, the new block will replace the existing block.\",\"properties\":{\"type\":{\"type\":\"string\",\"enum\":[\"update\"]},\"id\":{\"type\":\"string\",\"description\":\"id of block to update\"},\"block\":{\"$ref\":\"#/$defs/block\"}},\"required\":[\"type\",\"id\",\"block\"],\"additionalProperties\":false},{\"type\":\"object\",\"description\":\"Insert new blocks\",\"properties\":{\"type\":{\"type\":\"string\",\"enum\":[\"add\"]},\"referenceId\":{\"type\":\"string\",\"description\":\"MUST be an id of a block in the document\"},\"position\":{\"type\":\"string\",\"enum\":[\"before\",\"after\"],\"description\":\"`after` to add blocks AFTER (below) the block with `referenceId`, `before` to add the block BEFORE (above)\"},\"blocks\":{\"items\":{\"$ref\":\"#/$defs/block\"},\"type\":\"array\"}},\"required\":[\"type\",\"referenceId\",\"position\",\"blocks\"],\"additionalProperties\":false},{\"type\":\"object\",\"description\":\"Delete a block\",\"properties\":{\"type\":{\"type\":\"string\",\"enum\":[\"delete\"]},\"id\":{\"type\":\"string\",\"description\":\"id of block to delete\"}},\"required\":[\"type\",\"id\"],\"additionalProperties\":false}]}}},\"additionalProperties\":false,\"required\":[\"operations\"],\"$defs\":{\"styles\":{\"type\":\"object\",\"properties\":{\"bold\":{\"type\":\"boolean\"},\"italic\":{\"type\":\"boolean\"},\"underline\":{\"type\":\"boolean\"},\"strike\":{\"type\":\"boolean\"},\"code\":{\"type\":\"boolean\"},\"textColor\":{\"type\":\"string\"},\"backgroundColor\":{\"type\":\"string\"}},\"additionalProperties\":false},\"styledtext\":{\"type\":\"object\",\"properties\":{\"type\":{\"type\":\"string\",\"enum\":[\"text\"]},\"text\":{\"type\":\"string\"},\"styles\":{\"$ref\":\"#/$defs/styles\"}},\"additionalProperties\":false,\"required\":[\"type\",\"text\"]},\"inlinecontent\":{\"type\":\"array\",\"items\":{\"anyOf\":[{\"type\":\"object\",\"properties\":{\"type\":{\"type\":\"string\",\"enum\":[\"mention\"]},\"props\":{\"type\":\"object\",\"properties\":{\"user\":{\"type\":\"string\"}},\"additionalProperties\":false}},\"additionalProperties\":false,\"required\":[\"type\"]},{\"$ref\":\"#/$defs/styledtext\"},{\"type\":\"object\",\"properties\":{\"type\":{\"type\":\"string\",\"enum\":[\"link\"]},\"content\":{\"type\":\"array\",\"items\":{\"$ref\":\"#/$defs/styledtext\"}},\"href\":{\"type\":\"string\"}},\"additionalProperties\":false,\"required\":[\"type\",\"href\",\"content\"]}]}},\"block\":{\"anyOf\":[{\"type\":\"object\",\"properties\":{\"type\":{\"type\":\"string\",\"enum\":[\"paragraph\",\"quote\",\"toggleListItem\",\"bulletListItem\",\"numberedListItem\"]},\"content\":{\"$ref\":\"#/$defs/inlinecontent\"},\"props\":{\"type\":\"object\",\"properties\":{},\"additionalProperties\":false}},\"additionalProperties\":false,\"required\":[\"type\"]},{\"type\":\"object\",\"properties\":{\"type\":{\"type\":\"string\",\"enum\":[\"heading\"]},\"content\":{\"$ref\":\"#/$defs/inlinecontent\"},\"props\":{\"type\":\"object\",\"properties\":{\"level\":{\"type\":\"number\",\"enum\":[1,2,3]},\"isTogglable\":{\"type\":\"boolean\"}},\"additionalProperties\":false}},\"additionalProperties\":false,\"required\":[\"type\"]},{\"type\":\"object\",\"properties\":{\"type\":{\"type\":\"string\",\"enum\":[\"codeBlock\"]},\"content\":{\"$ref\":\"#/$defs/inlinecontent\"},\"props\":{\"type\":\"object\",\"properties\":{\"language\":{\"type\":\"string\"}},\"additionalProperties\":false}},\"additionalProperties\":false,\"required\":[\"type\"]},{\"type\":\"object\",\"properties\":{\"type\":{\"type\":\"string\",\"enum\":[\"checkListItem\"]},\"content\":{\"$ref\":\"#/$defs/inlinecontent\"},\"props\":{\"type\":\"object\",\"properties\":{\"checked\":{\"type\":\"boolean\"}},\"additionalProperties\":false}},\"additionalProperties\":false,\"required\":[\"type\"]},{\"type\":\"object\",\"properties\":{\"type\":{\"type\":\"string\",\"enum\":[\"table\"]},\"content\":{\"type\":\"object\",\"properties\":{}},\"props\":{\"type\":\"object\",\"properties\":{},\"additionalProperties\":false}},\"additionalProperties\":false,\"required\":[\"type\"]}]}}}}}],\"stream\":true}", "headers": [], "cookies": [] }, "response": { "status": 200, "statusText": "", - "body": "data: {\"id\":\"chatcmpl-BgV8LuRyCDucwrQM8Laiy6EOyYIDi\",\"object\":\"chat.completion.chunk\",\"created\":1749469153,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_a288987b44\",\"choices\":[{\"index\":0,\"delta\":{\"role\":\"assistant\",\"content\":null,\"tool_calls\":[{\"index\":0,\"id\":\"call_iS9jhk7rQI8Glwt2m3C0Lsza\",\"type\":\"function\",\"function\":{\"name\":\"json\",\"arguments\":\"\"}}],\"refusal\":null},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BgV8LuRyCDucwrQM8Laiy6EOyYIDi\",\"object\":\"chat.completion.chunk\",\"created\":1749469153,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_a288987b44\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"{\\\"\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BgV8LuRyCDucwrQM8Laiy6EOyYIDi\",\"object\":\"chat.completion.chunk\",\"created\":1749469153,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_a288987b44\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"operations\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BgV8LuRyCDucwrQM8Laiy6EOyYIDi\",\"object\":\"chat.completion.chunk\",\"created\":1749469153,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_a288987b44\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"\\\":[\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BgV8LuRyCDucwrQM8Laiy6EOyYIDi\",\"object\":\"chat.completion.chunk\",\"created\":1749469153,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_a288987b44\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"{\\\"\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BgV8LuRyCDucwrQM8Laiy6EOyYIDi\",\"object\":\"chat.completion.chunk\",\"created\":1749469153,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_a288987b44\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"type\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BgV8LuRyCDucwrQM8Laiy6EOyYIDi\",\"object\":\"chat.completion.chunk\",\"created\":1749469153,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_a288987b44\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"\\\":\\\"\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BgV8LuRyCDucwrQM8Laiy6EOyYIDi\",\"object\":\"chat.completion.chunk\",\"created\":1749469153,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_a288987b44\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"add\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BgV8LuRyCDucwrQM8Laiy6EOyYIDi\",\"object\":\"chat.completion.chunk\",\"created\":1749469153,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_a288987b44\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"\\\",\\\"\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BgV8LuRyCDucwrQM8Laiy6EOyYIDi\",\"object\":\"chat.completion.chunk\",\"created\":1749469153,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_a288987b44\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"reference\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BgV8LuRyCDucwrQM8Laiy6EOyYIDi\",\"object\":\"chat.completion.chunk\",\"created\":1749469153,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_a288987b44\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"Id\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BgV8LuRyCDucwrQM8Laiy6EOyYIDi\",\"object\":\"chat.completion.chunk\",\"created\":1749469153,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_a288987b44\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"\\\":\\\"\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BgV8LuRyCDucwrQM8Laiy6EOyYIDi\",\"object\":\"chat.completion.chunk\",\"created\":1749469153,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_a288987b44\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"ref\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BgV8LuRyCDucwrQM8Laiy6EOyYIDi\",\"object\":\"chat.completion.chunk\",\"created\":1749469153,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_a288987b44\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"2\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BgV8LuRyCDucwrQM8Laiy6EOyYIDi\",\"object\":\"chat.completion.chunk\",\"created\":1749469153,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_a288987b44\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"$\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BgV8LuRyCDucwrQM8Laiy6EOyYIDi\",\"object\":\"chat.completion.chunk\",\"created\":1749469153,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_a288987b44\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"\\\",\\\"\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BgV8LuRyCDucwrQM8Laiy6EOyYIDi\",\"object\":\"chat.completion.chunk\",\"created\":1749469153,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_a288987b44\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"position\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BgV8LuRyCDucwrQM8Laiy6EOyYIDi\",\"object\":\"chat.completion.chunk\",\"created\":1749469153,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_a288987b44\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"\\\":\\\"\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BgV8LuRyCDucwrQM8Laiy6EOyYIDi\",\"object\":\"chat.completion.chunk\",\"created\":1749469153,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_a288987b44\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"after\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BgV8LuRyCDucwrQM8Laiy6EOyYIDi\",\"object\":\"chat.completion.chunk\",\"created\":1749469153,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_a288987b44\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"\\\",\\\"\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BgV8LuRyCDucwrQM8Laiy6EOyYIDi\",\"object\":\"chat.completion.chunk\",\"created\":1749469153,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_a288987b44\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"blocks\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BgV8LuRyCDucwrQM8Laiy6EOyYIDi\",\"object\":\"chat.completion.chunk\",\"created\":1749469153,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_a288987b44\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"\\\":[\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BgV8LuRyCDucwrQM8Laiy6EOyYIDi\",\"object\":\"chat.completion.chunk\",\"created\":1749469153,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_a288987b44\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"{\\\"\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BgV8LuRyCDucwrQM8Laiy6EOyYIDi\",\"object\":\"chat.completion.chunk\",\"created\":1749469153,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_a288987b44\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"type\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BgV8LuRyCDucwrQM8Laiy6EOyYIDi\",\"object\":\"chat.completion.chunk\",\"created\":1749469153,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_a288987b44\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"\\\":\\\"\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BgV8LuRyCDucwrQM8Laiy6EOyYIDi\",\"object\":\"chat.completion.chunk\",\"created\":1749469153,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_a288987b44\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"paragraph\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BgV8LuRyCDucwrQM8Laiy6EOyYIDi\",\"object\":\"chat.completion.chunk\",\"created\":1749469153,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_a288987b44\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"\\\",\\\"\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BgV8LuRyCDucwrQM8Laiy6EOyYIDi\",\"object\":\"chat.completion.chunk\",\"created\":1749469153,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_a288987b44\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"content\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BgV8LuRyCDucwrQM8Laiy6EOyYIDi\",\"object\":\"chat.completion.chunk\",\"created\":1749469153,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_a288987b44\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"\\\":[\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BgV8LuRyCDucwrQM8Laiy6EOyYIDi\",\"object\":\"chat.completion.chunk\",\"created\":1749469153,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_a288987b44\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"{\\\"\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BgV8LuRyCDucwrQM8Laiy6EOyYIDi\",\"object\":\"chat.completion.chunk\",\"created\":1749469153,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_a288987b44\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"type\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BgV8LuRyCDucwrQM8Laiy6EOyYIDi\",\"object\":\"chat.completion.chunk\",\"created\":1749469153,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_a288987b44\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"\\\":\\\"\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BgV8LuRyCDucwrQM8Laiy6EOyYIDi\",\"object\":\"chat.completion.chunk\",\"created\":1749469153,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_a288987b44\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"text\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BgV8LuRyCDucwrQM8Laiy6EOyYIDi\",\"object\":\"chat.completion.chunk\",\"created\":1749469153,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_a288987b44\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"\\\",\\\"\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BgV8LuRyCDucwrQM8Laiy6EOyYIDi\",\"object\":\"chat.completion.chunk\",\"created\":1749469153,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_a288987b44\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"text\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BgV8LuRyCDucwrQM8Laiy6EOyYIDi\",\"object\":\"chat.completion.chunk\",\"created\":1749469153,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_a288987b44\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"\\\":\\\"\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BgV8LuRyCDucwrQM8Laiy6EOyYIDi\",\"object\":\"chat.completion.chunk\",\"created\":1749469153,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_a288987b44\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"You\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BgV8LuRyCDucwrQM8Laiy6EOyYIDi\",\"object\":\"chat.completion.chunk\",\"created\":1749469153,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_a288987b44\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\" look\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BgV8LuRyCDucwrQM8Laiy6EOyYIDi\",\"object\":\"chat.completion.chunk\",\"created\":1749469153,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_a288987b44\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\" great\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BgV8LuRyCDucwrQM8Laiy6EOyYIDi\",\"object\":\"chat.completion.chunk\",\"created\":1749469153,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_a288987b44\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\" today\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BgV8LuRyCDucwrQM8Laiy6EOyYIDi\",\"object\":\"chat.completion.chunk\",\"created\":1749469153,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_a288987b44\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"!\\\"\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BgV8LuRyCDucwrQM8Laiy6EOyYIDi\",\"object\":\"chat.completion.chunk\",\"created\":1749469153,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_a288987b44\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"}\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BgV8LuRyCDucwrQM8Laiy6EOyYIDi\",\"object\":\"chat.completion.chunk\",\"created\":1749469153,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_a288987b44\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"]}\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BgV8LuRyCDucwrQM8Laiy6EOyYIDi\",\"object\":\"chat.completion.chunk\",\"created\":1749469153,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_a288987b44\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"]}\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BgV8LuRyCDucwrQM8Laiy6EOyYIDi\",\"object\":\"chat.completion.chunk\",\"created\":1749469153,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_a288987b44\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"]}\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BgV8LuRyCDucwrQM8Laiy6EOyYIDi\",\"object\":\"chat.completion.chunk\",\"created\":1749469153,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_a288987b44\",\"choices\":[{\"index\":0,\"delta\":{},\"logprobs\":null,\"finish_reason\":\"stop\"}]}\n\ndata: [DONE]\n\n", + "body": "data: {\"id\":\"chatcmpl-BhXmtCdEYCBhFO6ms2bZOtTV5W05z\",\"object\":\"chat.completion.chunk\",\"created\":1749717683,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_a288987b44\",\"choices\":[{\"index\":0,\"delta\":{\"role\":\"assistant\",\"content\":null,\"tool_calls\":[{\"index\":0,\"id\":\"call_msjES3bQiFiUukGxwyO8WFD8\",\"type\":\"function\",\"function\":{\"name\":\"json\",\"arguments\":\"\"}}],\"refusal\":null},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BhXmtCdEYCBhFO6ms2bZOtTV5W05z\",\"object\":\"chat.completion.chunk\",\"created\":1749717683,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_a288987b44\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"{\\\"\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BhXmtCdEYCBhFO6ms2bZOtTV5W05z\",\"object\":\"chat.completion.chunk\",\"created\":1749717683,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_a288987b44\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"operations\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BhXmtCdEYCBhFO6ms2bZOtTV5W05z\",\"object\":\"chat.completion.chunk\",\"created\":1749717683,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_a288987b44\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"\\\":[\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BhXmtCdEYCBhFO6ms2bZOtTV5W05z\",\"object\":\"chat.completion.chunk\",\"created\":1749717683,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_a288987b44\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"{\\\"\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BhXmtCdEYCBhFO6ms2bZOtTV5W05z\",\"object\":\"chat.completion.chunk\",\"created\":1749717683,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_a288987b44\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"type\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BhXmtCdEYCBhFO6ms2bZOtTV5W05z\",\"object\":\"chat.completion.chunk\",\"created\":1749717683,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_a288987b44\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"\\\":\\\"\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BhXmtCdEYCBhFO6ms2bZOtTV5W05z\",\"object\":\"chat.completion.chunk\",\"created\":1749717683,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_a288987b44\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"add\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BhXmtCdEYCBhFO6ms2bZOtTV5W05z\",\"object\":\"chat.completion.chunk\",\"created\":1749717683,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_a288987b44\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"\\\",\\\"\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BhXmtCdEYCBhFO6ms2bZOtTV5W05z\",\"object\":\"chat.completion.chunk\",\"created\":1749717683,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_a288987b44\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"reference\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BhXmtCdEYCBhFO6ms2bZOtTV5W05z\",\"object\":\"chat.completion.chunk\",\"created\":1749717683,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_a288987b44\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"Id\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BhXmtCdEYCBhFO6ms2bZOtTV5W05z\",\"object\":\"chat.completion.chunk\",\"created\":1749717683,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_a288987b44\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"\\\":\\\"\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BhXmtCdEYCBhFO6ms2bZOtTV5W05z\",\"object\":\"chat.completion.chunk\",\"created\":1749717683,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_a288987b44\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"ref\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BhXmtCdEYCBhFO6ms2bZOtTV5W05z\",\"object\":\"chat.completion.chunk\",\"created\":1749717683,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_a288987b44\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"2\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BhXmtCdEYCBhFO6ms2bZOtTV5W05z\",\"object\":\"chat.completion.chunk\",\"created\":1749717683,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_a288987b44\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"$\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BhXmtCdEYCBhFO6ms2bZOtTV5W05z\",\"object\":\"chat.completion.chunk\",\"created\":1749717683,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_a288987b44\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"\\\",\\\"\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BhXmtCdEYCBhFO6ms2bZOtTV5W05z\",\"object\":\"chat.completion.chunk\",\"created\":1749717683,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_a288987b44\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"position\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BhXmtCdEYCBhFO6ms2bZOtTV5W05z\",\"object\":\"chat.completion.chunk\",\"created\":1749717683,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_a288987b44\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"\\\":\\\"\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BhXmtCdEYCBhFO6ms2bZOtTV5W05z\",\"object\":\"chat.completion.chunk\",\"created\":1749717683,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_a288987b44\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"after\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BhXmtCdEYCBhFO6ms2bZOtTV5W05z\",\"object\":\"chat.completion.chunk\",\"created\":1749717683,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_a288987b44\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"\\\",\\\"\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BhXmtCdEYCBhFO6ms2bZOtTV5W05z\",\"object\":\"chat.completion.chunk\",\"created\":1749717683,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_a288987b44\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"blocks\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BhXmtCdEYCBhFO6ms2bZOtTV5W05z\",\"object\":\"chat.completion.chunk\",\"created\":1749717683,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_a288987b44\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"\\\":[\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BhXmtCdEYCBhFO6ms2bZOtTV5W05z\",\"object\":\"chat.completion.chunk\",\"created\":1749717683,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_a288987b44\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"{\\\"\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BhXmtCdEYCBhFO6ms2bZOtTV5W05z\",\"object\":\"chat.completion.chunk\",\"created\":1749717683,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_a288987b44\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"type\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BhXmtCdEYCBhFO6ms2bZOtTV5W05z\",\"object\":\"chat.completion.chunk\",\"created\":1749717683,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_a288987b44\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"\\\":\\\"\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BhXmtCdEYCBhFO6ms2bZOtTV5W05z\",\"object\":\"chat.completion.chunk\",\"created\":1749717683,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_a288987b44\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"paragraph\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BhXmtCdEYCBhFO6ms2bZOtTV5W05z\",\"object\":\"chat.completion.chunk\",\"created\":1749717683,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_a288987b44\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"\\\",\\\"\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BhXmtCdEYCBhFO6ms2bZOtTV5W05z\",\"object\":\"chat.completion.chunk\",\"created\":1749717683,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_a288987b44\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"content\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BhXmtCdEYCBhFO6ms2bZOtTV5W05z\",\"object\":\"chat.completion.chunk\",\"created\":1749717683,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_a288987b44\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"\\\":[\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BhXmtCdEYCBhFO6ms2bZOtTV5W05z\",\"object\":\"chat.completion.chunk\",\"created\":1749717683,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_a288987b44\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"{\\\"\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BhXmtCdEYCBhFO6ms2bZOtTV5W05z\",\"object\":\"chat.completion.chunk\",\"created\":1749717683,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_a288987b44\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"type\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BhXmtCdEYCBhFO6ms2bZOtTV5W05z\",\"object\":\"chat.completion.chunk\",\"created\":1749717683,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_a288987b44\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"\\\":\\\"\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BhXmtCdEYCBhFO6ms2bZOtTV5W05z\",\"object\":\"chat.completion.chunk\",\"created\":1749717683,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_a288987b44\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"text\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BhXmtCdEYCBhFO6ms2bZOtTV5W05z\",\"object\":\"chat.completion.chunk\",\"created\":1749717683,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_a288987b44\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"\\\",\\\"\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BhXmtCdEYCBhFO6ms2bZOtTV5W05z\",\"object\":\"chat.completion.chunk\",\"created\":1749717683,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_a288987b44\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"text\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BhXmtCdEYCBhFO6ms2bZOtTV5W05z\",\"object\":\"chat.completion.chunk\",\"created\":1749717683,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_a288987b44\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"\\\":\\\"\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BhXmtCdEYCBhFO6ms2bZOtTV5W05z\",\"object\":\"chat.completion.chunk\",\"created\":1749717683,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_a288987b44\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"You\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BhXmtCdEYCBhFO6ms2bZOtTV5W05z\",\"object\":\"chat.completion.chunk\",\"created\":1749717683,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_a288987b44\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\" look\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BhXmtCdEYCBhFO6ms2bZOtTV5W05z\",\"object\":\"chat.completion.chunk\",\"created\":1749717683,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_a288987b44\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\" great\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BhXmtCdEYCBhFO6ms2bZOtTV5W05z\",\"object\":\"chat.completion.chunk\",\"created\":1749717683,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_a288987b44\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\" today\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BhXmtCdEYCBhFO6ms2bZOtTV5W05z\",\"object\":\"chat.completion.chunk\",\"created\":1749717683,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_a288987b44\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"!\\\"\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BhXmtCdEYCBhFO6ms2bZOtTV5W05z\",\"object\":\"chat.completion.chunk\",\"created\":1749717683,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_a288987b44\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"}\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BhXmtCdEYCBhFO6ms2bZOtTV5W05z\",\"object\":\"chat.completion.chunk\",\"created\":1749717683,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_a288987b44\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"]}\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BhXmtCdEYCBhFO6ms2bZOtTV5W05z\",\"object\":\"chat.completion.chunk\",\"created\":1749717683,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_a288987b44\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"]}\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BhXmtCdEYCBhFO6ms2bZOtTV5W05z\",\"object\":\"chat.completion.chunk\",\"created\":1749717683,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_a288987b44\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"]}\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BhXmtCdEYCBhFO6ms2bZOtTV5W05z\",\"object\":\"chat.completion.chunk\",\"created\":1749717683,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_a288987b44\",\"choices\":[{\"index\":0,\"delta\":{},\"logprobs\":null,\"finish_reason\":\"stop\"}]}\n\ndata: [DONE]\n\n", "headers": [] } } \ No newline at end of file diff --git a/packages/xl-ai/src/api/formats/json/__snapshots__/json.test.ts/Add/__msw_snapshots__/openai.chat/gpt-4o-2024-08-06 (streaming)/add a new paragraph (start)_1_c0cf824d11f88bc4d15116d0d6d2e566.json b/packages/xl-ai/src/api/formats/json/__snapshots__/json.test.ts/Add/__msw_snapshots__/openai.chat/gpt-4o-2024-08-06 (streaming)/add a new paragraph (start)_1_fbddf6d65bb6643003c54b0caa83328f.json similarity index 65% rename from packages/xl-ai/src/api/formats/json/__snapshots__/json.test.ts/Add/__msw_snapshots__/openai.chat/gpt-4o-2024-08-06 (streaming)/add a new paragraph (start)_1_c0cf824d11f88bc4d15116d0d6d2e566.json rename to packages/xl-ai/src/api/formats/json/__snapshots__/json.test.ts/Add/__msw_snapshots__/openai.chat/gpt-4o-2024-08-06 (streaming)/add a new paragraph (start)_1_fbddf6d65bb6643003c54b0caa83328f.json index 54287540b3..8f07ac6a83 100644 --- a/packages/xl-ai/src/api/formats/json/__snapshots__/json.test.ts/Add/__msw_snapshots__/openai.chat/gpt-4o-2024-08-06 (streaming)/add a new paragraph (start)_1_c0cf824d11f88bc4d15116d0d6d2e566.json +++ b/packages/xl-ai/src/api/formats/json/__snapshots__/json.test.ts/Add/__msw_snapshots__/openai.chat/gpt-4o-2024-08-06 (streaming)/add a new paragraph (start)_1_fbddf6d65bb6643003c54b0caa83328f.json @@ -2,14 +2,14 @@ "request": { "method": "POST", "url": "https://localhost:3000/ai?provider=openai&url=https%3A%2F%2Fapi.openai.com%2Fv1%2Fchat%2Fcompletions", - "body": "{\"model\":\"gpt-4o-2024-08-06\",\"temperature\":0,\"messages\":[{\"role\":\"system\",\"content\":\"You're manipulating a text document using JSON blocks. \\n Make sure to follow the json schema provided. When referencing ids they MUST be EXACTLY the same (including the trailing $). \\n This is the document as an array of JSON blocks (the cursor is BETWEEN two blocks as indicated by cursor: true):\"},{\"role\":\"system\",\"content\":\"[{\\\"id\\\":\\\"ref1$\\\",\\\"block\\\":{\\\"id\\\":\\\"ref1\\\",\\\"type\\\":\\\"paragraph\\\",\\\"props\\\":{\\\"textColor\\\":\\\"default\\\",\\\"backgroundColor\\\":\\\"default\\\",\\\"textAlignment\\\":\\\"left\\\"},\\\"content\\\":[{\\\"type\\\":\\\"text\\\",\\\"text\\\":\\\"Hello, world!\\\",\\\"styles\\\":{}}]}},{\\\"cursor\\\":true},{\\\"id\\\":\\\"ref2$\\\",\\\"block\\\":{\\\"id\\\":\\\"ref2\\\",\\\"type\\\":\\\"paragraph\\\",\\\"props\\\":{\\\"textColor\\\":\\\"default\\\",\\\"backgroundColor\\\":\\\"default\\\",\\\"textAlignment\\\":\\\"left\\\"},\\\"content\\\":[{\\\"type\\\":\\\"text\\\",\\\"text\\\":\\\"How are you?\\\",\\\"styles\\\":{}}]}}]\"},{\"role\":\"system\",\"content\":\"The user asks you to do the following:\"},{\"role\":\"user\",\"content\":\"add a new paragraph with the text 'You look great today!' before the first sentence\"},{\"role\":\"system\",\"content\":\"First, determine what part of the document the user is talking about. You SHOULD probably take cursor info into account if needed.\\n EXAMPLE: if user says \\\"below\\\" (without pointing to a specific part of the document) he / she probably indicates the block(s) after the cursor. \\n EXAMPLE: If you want to insert content AT the cursor position (UNLESS indicated otherwise by the user), then you need `referenceId` to point to the block before the cursor with position `after` (or block below and `before`).\\n \\n Prefer updating existing blocks over removing and adding (but this also depends on the user's question).\"}],\"tool_choice\":{\"type\":\"function\",\"function\":{\"name\":\"json\"}},\"tools\":[{\"type\":\"function\",\"function\":{\"name\":\"json\",\"description\":\"Respond with a JSON object.\",\"parameters\":{\"type\":\"object\",\"properties\":{\"operations\":{\"type\":\"array\",\"items\":{\"anyOf\":[{\"type\":\"object\",\"description\":\"Update a block, the new block will replace the existing block.\",\"properties\":{\"type\":{\"type\":\"string\",\"enum\":[\"update\"]},\"id\":{\"type\":\"string\",\"description\":\"id of block to update\"},\"block\":{\"$ref\":\"#/$defs/block\"}},\"required\":[\"type\",\"id\",\"block\"],\"additionalProperties\":false},{\"type\":\"object\",\"description\":\"Insert new blocks\",\"properties\":{\"type\":{\"type\":\"string\",\"enum\":[\"add\"]},\"referenceId\":{\"type\":\"string\",\"description\":\"MUST be an id of a block in the document\"},\"position\":{\"type\":\"string\",\"enum\":[\"before\",\"after\"],\"description\":\"`after` to add blocks AFTER (below) the block with `referenceId`, `before` to add the block BEFORE (above)\"},\"blocks\":{\"items\":{\"$ref\":\"#/$defs/block\"},\"type\":\"array\"}},\"required\":[\"type\",\"referenceId\",\"position\",\"blocks\"],\"additionalProperties\":false},{\"type\":\"object\",\"description\":\"Delete a block\",\"properties\":{\"type\":{\"type\":\"string\",\"enum\":[\"delete\"]},\"id\":{\"type\":\"string\",\"description\":\"id of block to delete\"}},\"required\":[\"type\",\"id\"],\"additionalProperties\":false}]}}},\"additionalProperties\":false,\"required\":[\"operations\"],\"$defs\":{\"styles\":{\"type\":\"object\",\"properties\":{\"bold\":{\"type\":\"boolean\"},\"italic\":{\"type\":\"boolean\"},\"underline\":{\"type\":\"boolean\"},\"strike\":{\"type\":\"boolean\"},\"code\":{\"type\":\"boolean\"},\"textColor\":{\"type\":\"string\"},\"backgroundColor\":{\"type\":\"string\"}},\"additionalProperties\":false},\"styledtext\":{\"type\":\"object\",\"properties\":{\"type\":{\"type\":\"string\",\"enum\":[\"text\"]},\"text\":{\"type\":\"string\"},\"styles\":{\"$ref\":\"#/$defs/styles\"}},\"additionalProperties\":false,\"required\":[\"type\",\"text\"]},\"inlinecontent\":{\"type\":\"array\",\"items\":{\"anyOf\":[{\"type\":\"object\",\"properties\":{\"type\":{\"type\":\"string\",\"enum\":[\"mention\"]},\"props\":{\"type\":\"object\",\"properties\":{\"user\":{\"type\":\"string\"}},\"additionalProperties\":false}},\"additionalProperties\":false,\"required\":[\"type\"]},{\"$ref\":\"#/$defs/styledtext\"},{\"type\":\"object\",\"properties\":{\"type\":{\"type\":\"string\",\"enum\":[\"link\"]},\"content\":{\"type\":\"array\",\"items\":{\"$ref\":\"#/$defs/styledtext\"}},\"href\":{\"type\":\"string\"}},\"additionalProperties\":false,\"required\":[\"type\",\"href\",\"content\"]}]}},\"block\":{\"anyOf\":[{\"type\":\"object\",\"properties\":{\"type\":{\"type\":\"string\",\"enum\":[\"paragraph\",\"quote\",\"bulletListItem\",\"numberedListItem\"]},\"content\":{\"$ref\":\"#/$defs/inlinecontent\"},\"props\":{\"type\":\"object\",\"properties\":{},\"additionalProperties\":false}},\"additionalProperties\":false,\"required\":[\"type\"]},{\"type\":\"object\",\"properties\":{\"type\":{\"type\":\"string\",\"enum\":[\"heading\"]},\"content\":{\"$ref\":\"#/$defs/inlinecontent\"},\"props\":{\"type\":\"object\",\"properties\":{\"level\":{\"type\":\"number\",\"enum\":[1,2,3]}},\"additionalProperties\":false}},\"additionalProperties\":false,\"required\":[\"type\"]},{\"type\":\"object\",\"properties\":{\"type\":{\"type\":\"string\",\"enum\":[\"codeBlock\"]},\"content\":{\"$ref\":\"#/$defs/inlinecontent\"},\"props\":{\"type\":\"object\",\"properties\":{\"language\":{\"type\":\"string\"}},\"additionalProperties\":false}},\"additionalProperties\":false,\"required\":[\"type\"]},{\"type\":\"object\",\"properties\":{\"type\":{\"type\":\"string\",\"enum\":[\"checkListItem\"]},\"content\":{\"$ref\":\"#/$defs/inlinecontent\"},\"props\":{\"type\":\"object\",\"properties\":{\"checked\":{\"type\":\"boolean\"}},\"additionalProperties\":false}},\"additionalProperties\":false,\"required\":[\"type\"]},{\"type\":\"object\",\"properties\":{\"type\":{\"type\":\"string\",\"enum\":[\"table\"]},\"content\":{\"type\":\"object\",\"properties\":{}},\"props\":{\"type\":\"object\",\"properties\":{},\"additionalProperties\":false}},\"additionalProperties\":false,\"required\":[\"type\"]}]}}}}}],\"stream\":true}", + "body": "{\"model\":\"gpt-4o-2024-08-06\",\"temperature\":0,\"messages\":[{\"role\":\"system\",\"content\":\"You're manipulating a text document using JSON blocks. \\n Make sure to follow the json schema provided. When referencing ids they MUST be EXACTLY the same (including the trailing $). \\n This is the document as an array of JSON blocks (the cursor is BETWEEN two blocks as indicated by cursor: true):\"},{\"role\":\"system\",\"content\":\"[{\\\"id\\\":\\\"ref1$\\\",\\\"block\\\":{\\\"id\\\":\\\"ref1\\\",\\\"type\\\":\\\"paragraph\\\",\\\"props\\\":{\\\"textColor\\\":\\\"default\\\",\\\"backgroundColor\\\":\\\"default\\\",\\\"textAlignment\\\":\\\"left\\\"},\\\"content\\\":[{\\\"type\\\":\\\"text\\\",\\\"text\\\":\\\"Hello, world!\\\",\\\"styles\\\":{}}]}},{\\\"cursor\\\":true},{\\\"id\\\":\\\"ref2$\\\",\\\"block\\\":{\\\"id\\\":\\\"ref2\\\",\\\"type\\\":\\\"paragraph\\\",\\\"props\\\":{\\\"textColor\\\":\\\"default\\\",\\\"backgroundColor\\\":\\\"default\\\",\\\"textAlignment\\\":\\\"left\\\"},\\\"content\\\":[{\\\"type\\\":\\\"text\\\",\\\"text\\\":\\\"How are you?\\\",\\\"styles\\\":{}}]}}]\"},{\"role\":\"system\",\"content\":\"The user asks you to do the following:\"},{\"role\":\"user\",\"content\":\"add a new paragraph with the text 'You look great today!' before the first sentence\"},{\"role\":\"system\",\"content\":\"First, determine what part of the document the user is talking about. You SHOULD probably take cursor info into account if needed.\\n EXAMPLE: if user says \\\"below\\\" (without pointing to a specific part of the document) he / she probably indicates the block(s) after the cursor. \\n EXAMPLE: If you want to insert content AT the cursor position (UNLESS indicated otherwise by the user), then you need `referenceId` to point to the block before the cursor with position `after` (or block below and `before`).\\n \\n Prefer updating existing blocks over removing and adding (but this also depends on the user's question).\"}],\"tool_choice\":{\"type\":\"function\",\"function\":{\"name\":\"json\"}},\"tools\":[{\"type\":\"function\",\"function\":{\"name\":\"json\",\"description\":\"Respond with a JSON object.\",\"parameters\":{\"type\":\"object\",\"properties\":{\"operations\":{\"type\":\"array\",\"items\":{\"anyOf\":[{\"type\":\"object\",\"description\":\"Update a block, the new block will replace the existing block.\",\"properties\":{\"type\":{\"type\":\"string\",\"enum\":[\"update\"]},\"id\":{\"type\":\"string\",\"description\":\"id of block to update\"},\"block\":{\"$ref\":\"#/$defs/block\"}},\"required\":[\"type\",\"id\",\"block\"],\"additionalProperties\":false},{\"type\":\"object\",\"description\":\"Insert new blocks\",\"properties\":{\"type\":{\"type\":\"string\",\"enum\":[\"add\"]},\"referenceId\":{\"type\":\"string\",\"description\":\"MUST be an id of a block in the document\"},\"position\":{\"type\":\"string\",\"enum\":[\"before\",\"after\"],\"description\":\"`after` to add blocks AFTER (below) the block with `referenceId`, `before` to add the block BEFORE (above)\"},\"blocks\":{\"items\":{\"$ref\":\"#/$defs/block\"},\"type\":\"array\"}},\"required\":[\"type\",\"referenceId\",\"position\",\"blocks\"],\"additionalProperties\":false},{\"type\":\"object\",\"description\":\"Delete a block\",\"properties\":{\"type\":{\"type\":\"string\",\"enum\":[\"delete\"]},\"id\":{\"type\":\"string\",\"description\":\"id of block to delete\"}},\"required\":[\"type\",\"id\"],\"additionalProperties\":false}]}}},\"additionalProperties\":false,\"required\":[\"operations\"],\"$defs\":{\"styles\":{\"type\":\"object\",\"properties\":{\"bold\":{\"type\":\"boolean\"},\"italic\":{\"type\":\"boolean\"},\"underline\":{\"type\":\"boolean\"},\"strike\":{\"type\":\"boolean\"},\"code\":{\"type\":\"boolean\"},\"textColor\":{\"type\":\"string\"},\"backgroundColor\":{\"type\":\"string\"}},\"additionalProperties\":false},\"styledtext\":{\"type\":\"object\",\"properties\":{\"type\":{\"type\":\"string\",\"enum\":[\"text\"]},\"text\":{\"type\":\"string\"},\"styles\":{\"$ref\":\"#/$defs/styles\"}},\"additionalProperties\":false,\"required\":[\"type\",\"text\"]},\"inlinecontent\":{\"type\":\"array\",\"items\":{\"anyOf\":[{\"type\":\"object\",\"properties\":{\"type\":{\"type\":\"string\",\"enum\":[\"mention\"]},\"props\":{\"type\":\"object\",\"properties\":{\"user\":{\"type\":\"string\"}},\"additionalProperties\":false}},\"additionalProperties\":false,\"required\":[\"type\"]},{\"$ref\":\"#/$defs/styledtext\"},{\"type\":\"object\",\"properties\":{\"type\":{\"type\":\"string\",\"enum\":[\"link\"]},\"content\":{\"type\":\"array\",\"items\":{\"$ref\":\"#/$defs/styledtext\"}},\"href\":{\"type\":\"string\"}},\"additionalProperties\":false,\"required\":[\"type\",\"href\",\"content\"]}]}},\"block\":{\"anyOf\":[{\"type\":\"object\",\"properties\":{\"type\":{\"type\":\"string\",\"enum\":[\"paragraph\",\"quote\",\"toggleListItem\",\"bulletListItem\",\"numberedListItem\"]},\"content\":{\"$ref\":\"#/$defs/inlinecontent\"},\"props\":{\"type\":\"object\",\"properties\":{},\"additionalProperties\":false}},\"additionalProperties\":false,\"required\":[\"type\"]},{\"type\":\"object\",\"properties\":{\"type\":{\"type\":\"string\",\"enum\":[\"heading\"]},\"content\":{\"$ref\":\"#/$defs/inlinecontent\"},\"props\":{\"type\":\"object\",\"properties\":{\"level\":{\"type\":\"number\",\"enum\":[1,2,3]},\"isTogglable\":{\"type\":\"boolean\"}},\"additionalProperties\":false}},\"additionalProperties\":false,\"required\":[\"type\"]},{\"type\":\"object\",\"properties\":{\"type\":{\"type\":\"string\",\"enum\":[\"codeBlock\"]},\"content\":{\"$ref\":\"#/$defs/inlinecontent\"},\"props\":{\"type\":\"object\",\"properties\":{\"language\":{\"type\":\"string\"}},\"additionalProperties\":false}},\"additionalProperties\":false,\"required\":[\"type\"]},{\"type\":\"object\",\"properties\":{\"type\":{\"type\":\"string\",\"enum\":[\"checkListItem\"]},\"content\":{\"$ref\":\"#/$defs/inlinecontent\"},\"props\":{\"type\":\"object\",\"properties\":{\"checked\":{\"type\":\"boolean\"}},\"additionalProperties\":false}},\"additionalProperties\":false,\"required\":[\"type\"]},{\"type\":\"object\",\"properties\":{\"type\":{\"type\":\"string\",\"enum\":[\"table\"]},\"content\":{\"type\":\"object\",\"properties\":{}},\"props\":{\"type\":\"object\",\"properties\":{},\"additionalProperties\":false}},\"additionalProperties\":false,\"required\":[\"type\"]}]}}}}}],\"stream\":true}", "headers": [], "cookies": [] }, "response": { "status": 200, "statusText": "", - "body": "data: {\"id\":\"chatcmpl-BgV8KKj33iUSfnNI7plQ9gKBwAape\",\"object\":\"chat.completion.chunk\",\"created\":1749469152,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_a288987b44\",\"choices\":[{\"index\":0,\"delta\":{\"role\":\"assistant\",\"content\":null,\"tool_calls\":[{\"index\":0,\"id\":\"call_LoolwucJSQ6jYntAIOPc2mTo\",\"type\":\"function\",\"function\":{\"name\":\"json\",\"arguments\":\"\"}}],\"refusal\":null},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BgV8KKj33iUSfnNI7plQ9gKBwAape\",\"object\":\"chat.completion.chunk\",\"created\":1749469152,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_a288987b44\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"{\\\"\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BgV8KKj33iUSfnNI7plQ9gKBwAape\",\"object\":\"chat.completion.chunk\",\"created\":1749469152,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_a288987b44\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"operations\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BgV8KKj33iUSfnNI7plQ9gKBwAape\",\"object\":\"chat.completion.chunk\",\"created\":1749469152,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_a288987b44\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"\\\":[\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BgV8KKj33iUSfnNI7plQ9gKBwAape\",\"object\":\"chat.completion.chunk\",\"created\":1749469152,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_a288987b44\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"{\\\"\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BgV8KKj33iUSfnNI7plQ9gKBwAape\",\"object\":\"chat.completion.chunk\",\"created\":1749469152,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_a288987b44\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"type\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BgV8KKj33iUSfnNI7plQ9gKBwAape\",\"object\":\"chat.completion.chunk\",\"created\":1749469152,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_a288987b44\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"\\\":\\\"\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BgV8KKj33iUSfnNI7plQ9gKBwAape\",\"object\":\"chat.completion.chunk\",\"created\":1749469152,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_a288987b44\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"add\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BgV8KKj33iUSfnNI7plQ9gKBwAape\",\"object\":\"chat.completion.chunk\",\"created\":1749469152,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_a288987b44\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"\\\",\\\"\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BgV8KKj33iUSfnNI7plQ9gKBwAape\",\"object\":\"chat.completion.chunk\",\"created\":1749469152,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_a288987b44\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"reference\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BgV8KKj33iUSfnNI7plQ9gKBwAape\",\"object\":\"chat.completion.chunk\",\"created\":1749469152,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_a288987b44\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"Id\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BgV8KKj33iUSfnNI7plQ9gKBwAape\",\"object\":\"chat.completion.chunk\",\"created\":1749469152,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_a288987b44\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"\\\":\\\"\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BgV8KKj33iUSfnNI7plQ9gKBwAape\",\"object\":\"chat.completion.chunk\",\"created\":1749469152,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_a288987b44\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"ref\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BgV8KKj33iUSfnNI7plQ9gKBwAape\",\"object\":\"chat.completion.chunk\",\"created\":1749469152,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_a288987b44\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"1\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BgV8KKj33iUSfnNI7plQ9gKBwAape\",\"object\":\"chat.completion.chunk\",\"created\":1749469152,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_a288987b44\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"$\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BgV8KKj33iUSfnNI7plQ9gKBwAape\",\"object\":\"chat.completion.chunk\",\"created\":1749469152,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_a288987b44\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"\\\",\\\"\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BgV8KKj33iUSfnNI7plQ9gKBwAape\",\"object\":\"chat.completion.chunk\",\"created\":1749469152,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_a288987b44\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"position\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BgV8KKj33iUSfnNI7plQ9gKBwAape\",\"object\":\"chat.completion.chunk\",\"created\":1749469152,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_a288987b44\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"\\\":\\\"\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BgV8KKj33iUSfnNI7plQ9gKBwAape\",\"object\":\"chat.completion.chunk\",\"created\":1749469152,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_a288987b44\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"before\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BgV8KKj33iUSfnNI7plQ9gKBwAape\",\"object\":\"chat.completion.chunk\",\"created\":1749469152,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_a288987b44\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"\\\",\\\"\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BgV8KKj33iUSfnNI7plQ9gKBwAape\",\"object\":\"chat.completion.chunk\",\"created\":1749469152,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_a288987b44\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"blocks\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BgV8KKj33iUSfnNI7plQ9gKBwAape\",\"object\":\"chat.completion.chunk\",\"created\":1749469152,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_a288987b44\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"\\\":[\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BgV8KKj33iUSfnNI7plQ9gKBwAape\",\"object\":\"chat.completion.chunk\",\"created\":1749469152,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_a288987b44\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"{\\\"\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BgV8KKj33iUSfnNI7plQ9gKBwAape\",\"object\":\"chat.completion.chunk\",\"created\":1749469152,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_a288987b44\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"type\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BgV8KKj33iUSfnNI7plQ9gKBwAape\",\"object\":\"chat.completion.chunk\",\"created\":1749469152,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_a288987b44\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"\\\":\\\"\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BgV8KKj33iUSfnNI7plQ9gKBwAape\",\"object\":\"chat.completion.chunk\",\"created\":1749469152,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_a288987b44\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"paragraph\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BgV8KKj33iUSfnNI7plQ9gKBwAape\",\"object\":\"chat.completion.chunk\",\"created\":1749469152,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_a288987b44\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"\\\",\\\"\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BgV8KKj33iUSfnNI7plQ9gKBwAape\",\"object\":\"chat.completion.chunk\",\"created\":1749469152,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_a288987b44\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"content\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BgV8KKj33iUSfnNI7plQ9gKBwAape\",\"object\":\"chat.completion.chunk\",\"created\":1749469152,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_a288987b44\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"\\\":[\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BgV8KKj33iUSfnNI7plQ9gKBwAape\",\"object\":\"chat.completion.chunk\",\"created\":1749469152,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_a288987b44\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"{\\\"\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BgV8KKj33iUSfnNI7plQ9gKBwAape\",\"object\":\"chat.completion.chunk\",\"created\":1749469152,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_a288987b44\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"type\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BgV8KKj33iUSfnNI7plQ9gKBwAape\",\"object\":\"chat.completion.chunk\",\"created\":1749469152,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_a288987b44\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"\\\":\\\"\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BgV8KKj33iUSfnNI7plQ9gKBwAape\",\"object\":\"chat.completion.chunk\",\"created\":1749469152,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_a288987b44\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"text\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BgV8KKj33iUSfnNI7plQ9gKBwAape\",\"object\":\"chat.completion.chunk\",\"created\":1749469152,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_a288987b44\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"\\\",\\\"\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BgV8KKj33iUSfnNI7plQ9gKBwAape\",\"object\":\"chat.completion.chunk\",\"created\":1749469152,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_a288987b44\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"text\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BgV8KKj33iUSfnNI7plQ9gKBwAape\",\"object\":\"chat.completion.chunk\",\"created\":1749469152,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_a288987b44\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"\\\":\\\"\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BgV8KKj33iUSfnNI7plQ9gKBwAape\",\"object\":\"chat.completion.chunk\",\"created\":1749469152,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_a288987b44\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"You\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BgV8KKj33iUSfnNI7plQ9gKBwAape\",\"object\":\"chat.completion.chunk\",\"created\":1749469152,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_a288987b44\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\" look\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BgV8KKj33iUSfnNI7plQ9gKBwAape\",\"object\":\"chat.completion.chunk\",\"created\":1749469152,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_a288987b44\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\" great\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BgV8KKj33iUSfnNI7plQ9gKBwAape\",\"object\":\"chat.completion.chunk\",\"created\":1749469152,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_a288987b44\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\" today\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BgV8KKj33iUSfnNI7plQ9gKBwAape\",\"object\":\"chat.completion.chunk\",\"created\":1749469152,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_a288987b44\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"!\\\"\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BgV8KKj33iUSfnNI7plQ9gKBwAape\",\"object\":\"chat.completion.chunk\",\"created\":1749469152,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_a288987b44\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"}\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BgV8KKj33iUSfnNI7plQ9gKBwAape\",\"object\":\"chat.completion.chunk\",\"created\":1749469152,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_a288987b44\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"]}\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BgV8KKj33iUSfnNI7plQ9gKBwAape\",\"object\":\"chat.completion.chunk\",\"created\":1749469152,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_a288987b44\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"]}\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BgV8KKj33iUSfnNI7plQ9gKBwAape\",\"object\":\"chat.completion.chunk\",\"created\":1749469152,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_a288987b44\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"]}\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BgV8KKj33iUSfnNI7plQ9gKBwAape\",\"object\":\"chat.completion.chunk\",\"created\":1749469152,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_a288987b44\",\"choices\":[{\"index\":0,\"delta\":{},\"logprobs\":null,\"finish_reason\":\"stop\"}]}\n\ndata: [DONE]\n\n", + "body": "data: {\"id\":\"chatcmpl-BhXmrJIzVK2PNuvvPegwCjkqOMx5v\",\"object\":\"chat.completion.chunk\",\"created\":1749717681,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_a288987b44\",\"choices\":[{\"index\":0,\"delta\":{\"role\":\"assistant\",\"content\":null,\"tool_calls\":[{\"index\":0,\"id\":\"call_sX5ZMF1KY12BfrAz6OPIsGTQ\",\"type\":\"function\",\"function\":{\"name\":\"json\",\"arguments\":\"\"}}],\"refusal\":null},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BhXmrJIzVK2PNuvvPegwCjkqOMx5v\",\"object\":\"chat.completion.chunk\",\"created\":1749717681,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_a288987b44\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"{\\\"\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BhXmrJIzVK2PNuvvPegwCjkqOMx5v\",\"object\":\"chat.completion.chunk\",\"created\":1749717681,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_a288987b44\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"operations\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BhXmrJIzVK2PNuvvPegwCjkqOMx5v\",\"object\":\"chat.completion.chunk\",\"created\":1749717681,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_a288987b44\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"\\\":[\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BhXmrJIzVK2PNuvvPegwCjkqOMx5v\",\"object\":\"chat.completion.chunk\",\"created\":1749717681,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_a288987b44\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"{\\\"\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BhXmrJIzVK2PNuvvPegwCjkqOMx5v\",\"object\":\"chat.completion.chunk\",\"created\":1749717681,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_a288987b44\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"type\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BhXmrJIzVK2PNuvvPegwCjkqOMx5v\",\"object\":\"chat.completion.chunk\",\"created\":1749717681,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_a288987b44\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"\\\":\\\"\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BhXmrJIzVK2PNuvvPegwCjkqOMx5v\",\"object\":\"chat.completion.chunk\",\"created\":1749717681,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_a288987b44\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"add\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BhXmrJIzVK2PNuvvPegwCjkqOMx5v\",\"object\":\"chat.completion.chunk\",\"created\":1749717681,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_a288987b44\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"\\\",\\\"\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BhXmrJIzVK2PNuvvPegwCjkqOMx5v\",\"object\":\"chat.completion.chunk\",\"created\":1749717681,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_a288987b44\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"reference\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BhXmrJIzVK2PNuvvPegwCjkqOMx5v\",\"object\":\"chat.completion.chunk\",\"created\":1749717681,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_a288987b44\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"Id\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BhXmrJIzVK2PNuvvPegwCjkqOMx5v\",\"object\":\"chat.completion.chunk\",\"created\":1749717681,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_a288987b44\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"\\\":\\\"\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BhXmrJIzVK2PNuvvPegwCjkqOMx5v\",\"object\":\"chat.completion.chunk\",\"created\":1749717681,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_a288987b44\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"ref\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BhXmrJIzVK2PNuvvPegwCjkqOMx5v\",\"object\":\"chat.completion.chunk\",\"created\":1749717681,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_a288987b44\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"1\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BhXmrJIzVK2PNuvvPegwCjkqOMx5v\",\"object\":\"chat.completion.chunk\",\"created\":1749717681,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_a288987b44\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"$\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BhXmrJIzVK2PNuvvPegwCjkqOMx5v\",\"object\":\"chat.completion.chunk\",\"created\":1749717681,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_a288987b44\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"\\\",\\\"\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BhXmrJIzVK2PNuvvPegwCjkqOMx5v\",\"object\":\"chat.completion.chunk\",\"created\":1749717681,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_a288987b44\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"position\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BhXmrJIzVK2PNuvvPegwCjkqOMx5v\",\"object\":\"chat.completion.chunk\",\"created\":1749717681,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_a288987b44\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"\\\":\\\"\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BhXmrJIzVK2PNuvvPegwCjkqOMx5v\",\"object\":\"chat.completion.chunk\",\"created\":1749717681,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_a288987b44\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"before\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BhXmrJIzVK2PNuvvPegwCjkqOMx5v\",\"object\":\"chat.completion.chunk\",\"created\":1749717681,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_a288987b44\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"\\\",\\\"\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BhXmrJIzVK2PNuvvPegwCjkqOMx5v\",\"object\":\"chat.completion.chunk\",\"created\":1749717681,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_a288987b44\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"blocks\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BhXmrJIzVK2PNuvvPegwCjkqOMx5v\",\"object\":\"chat.completion.chunk\",\"created\":1749717681,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_a288987b44\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"\\\":[\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BhXmrJIzVK2PNuvvPegwCjkqOMx5v\",\"object\":\"chat.completion.chunk\",\"created\":1749717681,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_a288987b44\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"{\\\"\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BhXmrJIzVK2PNuvvPegwCjkqOMx5v\",\"object\":\"chat.completion.chunk\",\"created\":1749717681,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_a288987b44\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"type\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BhXmrJIzVK2PNuvvPegwCjkqOMx5v\",\"object\":\"chat.completion.chunk\",\"created\":1749717681,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_a288987b44\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"\\\":\\\"\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BhXmrJIzVK2PNuvvPegwCjkqOMx5v\",\"object\":\"chat.completion.chunk\",\"created\":1749717681,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_a288987b44\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"paragraph\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BhXmrJIzVK2PNuvvPegwCjkqOMx5v\",\"object\":\"chat.completion.chunk\",\"created\":1749717681,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_a288987b44\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"\\\",\\\"\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BhXmrJIzVK2PNuvvPegwCjkqOMx5v\",\"object\":\"chat.completion.chunk\",\"created\":1749717681,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_a288987b44\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"content\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BhXmrJIzVK2PNuvvPegwCjkqOMx5v\",\"object\":\"chat.completion.chunk\",\"created\":1749717681,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_a288987b44\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"\\\":[\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BhXmrJIzVK2PNuvvPegwCjkqOMx5v\",\"object\":\"chat.completion.chunk\",\"created\":1749717681,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_a288987b44\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"{\\\"\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BhXmrJIzVK2PNuvvPegwCjkqOMx5v\",\"object\":\"chat.completion.chunk\",\"created\":1749717681,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_a288987b44\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"type\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BhXmrJIzVK2PNuvvPegwCjkqOMx5v\",\"object\":\"chat.completion.chunk\",\"created\":1749717681,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_a288987b44\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"\\\":\\\"\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BhXmrJIzVK2PNuvvPegwCjkqOMx5v\",\"object\":\"chat.completion.chunk\",\"created\":1749717681,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_a288987b44\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"text\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BhXmrJIzVK2PNuvvPegwCjkqOMx5v\",\"object\":\"chat.completion.chunk\",\"created\":1749717681,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_a288987b44\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"\\\",\\\"\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BhXmrJIzVK2PNuvvPegwCjkqOMx5v\",\"object\":\"chat.completion.chunk\",\"created\":1749717681,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_a288987b44\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"text\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BhXmrJIzVK2PNuvvPegwCjkqOMx5v\",\"object\":\"chat.completion.chunk\",\"created\":1749717681,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_a288987b44\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"\\\":\\\"\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BhXmrJIzVK2PNuvvPegwCjkqOMx5v\",\"object\":\"chat.completion.chunk\",\"created\":1749717681,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_a288987b44\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"You\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BhXmrJIzVK2PNuvvPegwCjkqOMx5v\",\"object\":\"chat.completion.chunk\",\"created\":1749717681,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_a288987b44\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\" look\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BhXmrJIzVK2PNuvvPegwCjkqOMx5v\",\"object\":\"chat.completion.chunk\",\"created\":1749717681,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_a288987b44\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\" great\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BhXmrJIzVK2PNuvvPegwCjkqOMx5v\",\"object\":\"chat.completion.chunk\",\"created\":1749717681,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_a288987b44\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\" today\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BhXmrJIzVK2PNuvvPegwCjkqOMx5v\",\"object\":\"chat.completion.chunk\",\"created\":1749717681,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_a288987b44\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"!\\\"\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BhXmrJIzVK2PNuvvPegwCjkqOMx5v\",\"object\":\"chat.completion.chunk\",\"created\":1749717681,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_a288987b44\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"}\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BhXmrJIzVK2PNuvvPegwCjkqOMx5v\",\"object\":\"chat.completion.chunk\",\"created\":1749717681,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_a288987b44\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"]}\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BhXmrJIzVK2PNuvvPegwCjkqOMx5v\",\"object\":\"chat.completion.chunk\",\"created\":1749717681,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_a288987b44\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"]}\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BhXmrJIzVK2PNuvvPegwCjkqOMx5v\",\"object\":\"chat.completion.chunk\",\"created\":1749717681,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_a288987b44\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"]}\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BhXmrJIzVK2PNuvvPegwCjkqOMx5v\",\"object\":\"chat.completion.chunk\",\"created\":1749717681,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_a288987b44\",\"choices\":[{\"index\":0,\"delta\":{},\"logprobs\":null,\"finish_reason\":\"stop\"}]}\n\ndata: [DONE]\n\n", "headers": [] } } \ No newline at end of file diff --git a/packages/xl-ai/src/api/formats/json/__snapshots__/json.test.ts/Combined/__msw_snapshots__/openai.chat/gpt-4o-2024-08-06 (non-streaming)/add and update paragraph_1_332e73f6f9fae1e63bee6e8fa2e6bace.json b/packages/xl-ai/src/api/formats/json/__snapshots__/json.test.ts/Combined/__msw_snapshots__/openai.chat/gpt-4o-2024-08-06 (non-streaming)/add and update paragraph_1_6d103103a8429b4dc2b692a2e0f2e87c.json similarity index 79% rename from packages/xl-ai/src/api/formats/json/__snapshots__/json.test.ts/Combined/__msw_snapshots__/openai.chat/gpt-4o-2024-08-06 (non-streaming)/add and update paragraph_1_332e73f6f9fae1e63bee6e8fa2e6bace.json rename to packages/xl-ai/src/api/formats/json/__snapshots__/json.test.ts/Combined/__msw_snapshots__/openai.chat/gpt-4o-2024-08-06 (non-streaming)/add and update paragraph_1_6d103103a8429b4dc2b692a2e0f2e87c.json index 5bd77d7b98..38119c594a 100644 --- a/packages/xl-ai/src/api/formats/json/__snapshots__/json.test.ts/Combined/__msw_snapshots__/openai.chat/gpt-4o-2024-08-06 (non-streaming)/add and update paragraph_1_332e73f6f9fae1e63bee6e8fa2e6bace.json +++ b/packages/xl-ai/src/api/formats/json/__snapshots__/json.test.ts/Combined/__msw_snapshots__/openai.chat/gpt-4o-2024-08-06 (non-streaming)/add and update paragraph_1_6d103103a8429b4dc2b692a2e0f2e87c.json @@ -2,14 +2,14 @@ "request": { "method": "POST", "url": "https://localhost:3000/ai?provider=openai&url=https%3A%2F%2Fapi.openai.com%2Fv1%2Fchat%2Fcompletions", - "body": "{\"model\":\"gpt-4o-2024-08-06\",\"temperature\":0,\"messages\":[{\"role\":\"system\",\"content\":\"You're manipulating a text document using JSON blocks. \\n Make sure to follow the json schema provided. When referencing ids they MUST be EXACTLY the same (including the trailing $). \\n This is the document as an array of JSON blocks (the cursor is BETWEEN two blocks as indicated by cursor: true):\"},{\"role\":\"system\",\"content\":\"[{\\\"id\\\":\\\"ref1$\\\",\\\"block\\\":{\\\"id\\\":\\\"ref1\\\",\\\"type\\\":\\\"paragraph\\\",\\\"props\\\":{\\\"textColor\\\":\\\"default\\\",\\\"backgroundColor\\\":\\\"default\\\",\\\"textAlignment\\\":\\\"left\\\"},\\\"content\\\":[{\\\"type\\\":\\\"text\\\",\\\"text\\\":\\\"Hello, world!\\\",\\\"styles\\\":{}}]}},{\\\"cursor\\\":true},{\\\"id\\\":\\\"ref2$\\\",\\\"block\\\":{\\\"id\\\":\\\"ref2\\\",\\\"type\\\":\\\"paragraph\\\",\\\"props\\\":{\\\"textColor\\\":\\\"default\\\",\\\"backgroundColor\\\":\\\"default\\\",\\\"textAlignment\\\":\\\"left\\\"},\\\"content\\\":[{\\\"type\\\":\\\"text\\\",\\\"text\\\":\\\"Hello, \\\",\\\"styles\\\":{}},{\\\"type\\\":\\\"mention\\\",\\\"props\\\":{\\\"user\\\":\\\"John Doe\\\"}},{\\\"type\\\":\\\"text\\\",\\\"text\\\":\\\"! \\\",\\\"styles\\\":{}},{\\\"type\\\":\\\"text\\\",\\\"text\\\":\\\"How are you doing?\\\",\\\"styles\\\":{\\\"bold\\\":true}},{\\\"type\\\":\\\"text\\\",\\\"text\\\":\\\" \\\",\\\"styles\\\":{}},{\\\"type\\\":\\\"text\\\",\\\"text\\\":\\\"This text is blue!\\\",\\\"styles\\\":{\\\"textColor\\\":\\\"blue\\\"}}]}},{\\\"id\\\":\\\"ref3$\\\",\\\"block\\\":{\\\"id\\\":\\\"ref3\\\",\\\"type\\\":\\\"paragraph\\\",\\\"props\\\":{\\\"textColor\\\":\\\"default\\\",\\\"backgroundColor\\\":\\\"default\\\",\\\"textAlignment\\\":\\\"left\\\"},\\\"content\\\":[{\\\"type\\\":\\\"text\\\",\\\"text\\\":\\\"Hello, world! \\\",\\\"styles\\\":{}},{\\\"type\\\":\\\"text\\\",\\\"text\\\":\\\"Bold text. \\\",\\\"styles\\\":{\\\"bold\\\":true}},{\\\"type\\\":\\\"link\\\",\\\"href\\\":\\\"https://www.google.com\\\",\\\"content\\\":[{\\\"type\\\":\\\"text\\\",\\\"text\\\":\\\"Link.\\\",\\\"styles\\\":{}}]}]}}]\"},{\"role\":\"system\",\"content\":\"The user asks you to do the following:\"},{\"role\":\"user\",\"content\":\"add a new paragraph with the text 'You look great today!' after the first paragraph and translate 'Hello, world' to dutch\"},{\"role\":\"system\",\"content\":\"First, determine what part of the document the user is talking about. You SHOULD probably take cursor info into account if needed.\\n EXAMPLE: if user says \\\"below\\\" (without pointing to a specific part of the document) he / she probably indicates the block(s) after the cursor. \\n EXAMPLE: If you want to insert content AT the cursor position (UNLESS indicated otherwise by the user), then you need `referenceId` to point to the block before the cursor with position `after` (or block below and `before`).\\n \\n Prefer updating existing blocks over removing and adding (but this also depends on the user's question).\"}],\"tool_choice\":{\"type\":\"function\",\"function\":{\"name\":\"json\"}},\"tools\":[{\"type\":\"function\",\"function\":{\"name\":\"json\",\"description\":\"Respond with a JSON object.\",\"parameters\":{\"type\":\"object\",\"properties\":{\"operations\":{\"type\":\"array\",\"items\":{\"anyOf\":[{\"type\":\"object\",\"description\":\"Update a block, the new block will replace the existing block.\",\"properties\":{\"type\":{\"type\":\"string\",\"enum\":[\"update\"]},\"id\":{\"type\":\"string\",\"description\":\"id of block to update\"},\"block\":{\"$ref\":\"#/$defs/block\"}},\"required\":[\"type\",\"id\",\"block\"],\"additionalProperties\":false},{\"type\":\"object\",\"description\":\"Insert new blocks\",\"properties\":{\"type\":{\"type\":\"string\",\"enum\":[\"add\"]},\"referenceId\":{\"type\":\"string\",\"description\":\"MUST be an id of a block in the document\"},\"position\":{\"type\":\"string\",\"enum\":[\"before\",\"after\"],\"description\":\"`after` to add blocks AFTER (below) the block with `referenceId`, `before` to add the block BEFORE (above)\"},\"blocks\":{\"items\":{\"$ref\":\"#/$defs/block\"},\"type\":\"array\"}},\"required\":[\"type\",\"referenceId\",\"position\",\"blocks\"],\"additionalProperties\":false},{\"type\":\"object\",\"description\":\"Delete a block\",\"properties\":{\"type\":{\"type\":\"string\",\"enum\":[\"delete\"]},\"id\":{\"type\":\"string\",\"description\":\"id of block to delete\"}},\"required\":[\"type\",\"id\"],\"additionalProperties\":false}]}}},\"additionalProperties\":false,\"required\":[\"operations\"],\"$defs\":{\"styles\":{\"type\":\"object\",\"properties\":{\"bold\":{\"type\":\"boolean\"},\"italic\":{\"type\":\"boolean\"},\"underline\":{\"type\":\"boolean\"},\"strike\":{\"type\":\"boolean\"},\"code\":{\"type\":\"boolean\"},\"textColor\":{\"type\":\"string\"},\"backgroundColor\":{\"type\":\"string\"}},\"additionalProperties\":false},\"styledtext\":{\"type\":\"object\",\"properties\":{\"type\":{\"type\":\"string\",\"enum\":[\"text\"]},\"text\":{\"type\":\"string\"},\"styles\":{\"$ref\":\"#/$defs/styles\"}},\"additionalProperties\":false,\"required\":[\"type\",\"text\"]},\"inlinecontent\":{\"type\":\"array\",\"items\":{\"anyOf\":[{\"type\":\"object\",\"properties\":{\"type\":{\"type\":\"string\",\"enum\":[\"mention\"]},\"props\":{\"type\":\"object\",\"properties\":{\"user\":{\"type\":\"string\"}},\"additionalProperties\":false}},\"additionalProperties\":false,\"required\":[\"type\"]},{\"$ref\":\"#/$defs/styledtext\"},{\"type\":\"object\",\"properties\":{\"type\":{\"type\":\"string\",\"enum\":[\"link\"]},\"content\":{\"type\":\"array\",\"items\":{\"$ref\":\"#/$defs/styledtext\"}},\"href\":{\"type\":\"string\"}},\"additionalProperties\":false,\"required\":[\"type\",\"href\",\"content\"]}]}},\"block\":{\"anyOf\":[{\"type\":\"object\",\"properties\":{\"type\":{\"type\":\"string\",\"enum\":[\"paragraph\",\"quote\",\"bulletListItem\",\"numberedListItem\"]},\"content\":{\"$ref\":\"#/$defs/inlinecontent\"},\"props\":{\"type\":\"object\",\"properties\":{},\"additionalProperties\":false}},\"additionalProperties\":false,\"required\":[\"type\"]},{\"type\":\"object\",\"properties\":{\"type\":{\"type\":\"string\",\"enum\":[\"heading\"]},\"content\":{\"$ref\":\"#/$defs/inlinecontent\"},\"props\":{\"type\":\"object\",\"properties\":{\"level\":{\"type\":\"number\",\"enum\":[1,2,3]}},\"additionalProperties\":false}},\"additionalProperties\":false,\"required\":[\"type\"]},{\"type\":\"object\",\"properties\":{\"type\":{\"type\":\"string\",\"enum\":[\"codeBlock\"]},\"content\":{\"$ref\":\"#/$defs/inlinecontent\"},\"props\":{\"type\":\"object\",\"properties\":{\"language\":{\"type\":\"string\"}},\"additionalProperties\":false}},\"additionalProperties\":false,\"required\":[\"type\"]},{\"type\":\"object\",\"properties\":{\"type\":{\"type\":\"string\",\"enum\":[\"checkListItem\"]},\"content\":{\"$ref\":\"#/$defs/inlinecontent\"},\"props\":{\"type\":\"object\",\"properties\":{\"checked\":{\"type\":\"boolean\"}},\"additionalProperties\":false}},\"additionalProperties\":false,\"required\":[\"type\"]},{\"type\":\"object\",\"properties\":{\"type\":{\"type\":\"string\",\"enum\":[\"table\"]},\"content\":{\"type\":\"object\",\"properties\":{}},\"props\":{\"type\":\"object\",\"properties\":{},\"additionalProperties\":false}},\"additionalProperties\":false,\"required\":[\"type\"]}]}}}}}]}", + "body": "{\"model\":\"gpt-4o-2024-08-06\",\"temperature\":0,\"messages\":[{\"role\":\"system\",\"content\":\"You're manipulating a text document using JSON blocks. \\n Make sure to follow the json schema provided. When referencing ids they MUST be EXACTLY the same (including the trailing $). \\n This is the document as an array of JSON blocks (the cursor is BETWEEN two blocks as indicated by cursor: true):\"},{\"role\":\"system\",\"content\":\"[{\\\"id\\\":\\\"ref1$\\\",\\\"block\\\":{\\\"id\\\":\\\"ref1\\\",\\\"type\\\":\\\"paragraph\\\",\\\"props\\\":{\\\"textColor\\\":\\\"default\\\",\\\"backgroundColor\\\":\\\"default\\\",\\\"textAlignment\\\":\\\"left\\\"},\\\"content\\\":[{\\\"type\\\":\\\"text\\\",\\\"text\\\":\\\"Hello, world!\\\",\\\"styles\\\":{}}]}},{\\\"cursor\\\":true},{\\\"id\\\":\\\"ref2$\\\",\\\"block\\\":{\\\"id\\\":\\\"ref2\\\",\\\"type\\\":\\\"paragraph\\\",\\\"props\\\":{\\\"textColor\\\":\\\"default\\\",\\\"backgroundColor\\\":\\\"default\\\",\\\"textAlignment\\\":\\\"left\\\"},\\\"content\\\":[{\\\"type\\\":\\\"text\\\",\\\"text\\\":\\\"Hello, \\\",\\\"styles\\\":{}},{\\\"type\\\":\\\"mention\\\",\\\"props\\\":{\\\"user\\\":\\\"John Doe\\\"}},{\\\"type\\\":\\\"text\\\",\\\"text\\\":\\\"! \\\",\\\"styles\\\":{}},{\\\"type\\\":\\\"text\\\",\\\"text\\\":\\\"How are you doing?\\\",\\\"styles\\\":{\\\"bold\\\":true}},{\\\"type\\\":\\\"text\\\",\\\"text\\\":\\\" \\\",\\\"styles\\\":{}},{\\\"type\\\":\\\"text\\\",\\\"text\\\":\\\"This text is blue!\\\",\\\"styles\\\":{\\\"textColor\\\":\\\"blue\\\"}}]}},{\\\"id\\\":\\\"ref3$\\\",\\\"block\\\":{\\\"id\\\":\\\"ref3\\\",\\\"type\\\":\\\"paragraph\\\",\\\"props\\\":{\\\"textColor\\\":\\\"default\\\",\\\"backgroundColor\\\":\\\"default\\\",\\\"textAlignment\\\":\\\"left\\\"},\\\"content\\\":[{\\\"type\\\":\\\"text\\\",\\\"text\\\":\\\"Hello, world! \\\",\\\"styles\\\":{}},{\\\"type\\\":\\\"text\\\",\\\"text\\\":\\\"Bold text. \\\",\\\"styles\\\":{\\\"bold\\\":true}},{\\\"type\\\":\\\"link\\\",\\\"href\\\":\\\"https://www.google.com\\\",\\\"content\\\":[{\\\"type\\\":\\\"text\\\",\\\"text\\\":\\\"Link.\\\",\\\"styles\\\":{}}]}]}}]\"},{\"role\":\"system\",\"content\":\"The user asks you to do the following:\"},{\"role\":\"user\",\"content\":\"add a new paragraph with the text 'You look great today!' after the first paragraph and translate 'Hello, world' to dutch\"},{\"role\":\"system\",\"content\":\"First, determine what part of the document the user is talking about. You SHOULD probably take cursor info into account if needed.\\n EXAMPLE: if user says \\\"below\\\" (without pointing to a specific part of the document) he / she probably indicates the block(s) after the cursor. \\n EXAMPLE: If you want to insert content AT the cursor position (UNLESS indicated otherwise by the user), then you need `referenceId` to point to the block before the cursor with position `after` (or block below and `before`).\\n \\n Prefer updating existing blocks over removing and adding (but this also depends on the user's question).\"}],\"tool_choice\":{\"type\":\"function\",\"function\":{\"name\":\"json\"}},\"tools\":[{\"type\":\"function\",\"function\":{\"name\":\"json\",\"description\":\"Respond with a JSON object.\",\"parameters\":{\"type\":\"object\",\"properties\":{\"operations\":{\"type\":\"array\",\"items\":{\"anyOf\":[{\"type\":\"object\",\"description\":\"Update a block, the new block will replace the existing block.\",\"properties\":{\"type\":{\"type\":\"string\",\"enum\":[\"update\"]},\"id\":{\"type\":\"string\",\"description\":\"id of block to update\"},\"block\":{\"$ref\":\"#/$defs/block\"}},\"required\":[\"type\",\"id\",\"block\"],\"additionalProperties\":false},{\"type\":\"object\",\"description\":\"Insert new blocks\",\"properties\":{\"type\":{\"type\":\"string\",\"enum\":[\"add\"]},\"referenceId\":{\"type\":\"string\",\"description\":\"MUST be an id of a block in the document\"},\"position\":{\"type\":\"string\",\"enum\":[\"before\",\"after\"],\"description\":\"`after` to add blocks AFTER (below) the block with `referenceId`, `before` to add the block BEFORE (above)\"},\"blocks\":{\"items\":{\"$ref\":\"#/$defs/block\"},\"type\":\"array\"}},\"required\":[\"type\",\"referenceId\",\"position\",\"blocks\"],\"additionalProperties\":false},{\"type\":\"object\",\"description\":\"Delete a block\",\"properties\":{\"type\":{\"type\":\"string\",\"enum\":[\"delete\"]},\"id\":{\"type\":\"string\",\"description\":\"id of block to delete\"}},\"required\":[\"type\",\"id\"],\"additionalProperties\":false}]}}},\"additionalProperties\":false,\"required\":[\"operations\"],\"$defs\":{\"styles\":{\"type\":\"object\",\"properties\":{\"bold\":{\"type\":\"boolean\"},\"italic\":{\"type\":\"boolean\"},\"underline\":{\"type\":\"boolean\"},\"strike\":{\"type\":\"boolean\"},\"code\":{\"type\":\"boolean\"},\"textColor\":{\"type\":\"string\"},\"backgroundColor\":{\"type\":\"string\"}},\"additionalProperties\":false},\"styledtext\":{\"type\":\"object\",\"properties\":{\"type\":{\"type\":\"string\",\"enum\":[\"text\"]},\"text\":{\"type\":\"string\"},\"styles\":{\"$ref\":\"#/$defs/styles\"}},\"additionalProperties\":false,\"required\":[\"type\",\"text\"]},\"inlinecontent\":{\"type\":\"array\",\"items\":{\"anyOf\":[{\"type\":\"object\",\"properties\":{\"type\":{\"type\":\"string\",\"enum\":[\"mention\"]},\"props\":{\"type\":\"object\",\"properties\":{\"user\":{\"type\":\"string\"}},\"additionalProperties\":false}},\"additionalProperties\":false,\"required\":[\"type\"]},{\"$ref\":\"#/$defs/styledtext\"},{\"type\":\"object\",\"properties\":{\"type\":{\"type\":\"string\",\"enum\":[\"link\"]},\"content\":{\"type\":\"array\",\"items\":{\"$ref\":\"#/$defs/styledtext\"}},\"href\":{\"type\":\"string\"}},\"additionalProperties\":false,\"required\":[\"type\",\"href\",\"content\"]}]}},\"block\":{\"anyOf\":[{\"type\":\"object\",\"properties\":{\"type\":{\"type\":\"string\",\"enum\":[\"paragraph\",\"quote\",\"toggleListItem\",\"bulletListItem\",\"numberedListItem\"]},\"content\":{\"$ref\":\"#/$defs/inlinecontent\"},\"props\":{\"type\":\"object\",\"properties\":{},\"additionalProperties\":false}},\"additionalProperties\":false,\"required\":[\"type\"]},{\"type\":\"object\",\"properties\":{\"type\":{\"type\":\"string\",\"enum\":[\"heading\"]},\"content\":{\"$ref\":\"#/$defs/inlinecontent\"},\"props\":{\"type\":\"object\",\"properties\":{\"level\":{\"type\":\"number\",\"enum\":[1,2,3]},\"isTogglable\":{\"type\":\"boolean\"}},\"additionalProperties\":false}},\"additionalProperties\":false,\"required\":[\"type\"]},{\"type\":\"object\",\"properties\":{\"type\":{\"type\":\"string\",\"enum\":[\"codeBlock\"]},\"content\":{\"$ref\":\"#/$defs/inlinecontent\"},\"props\":{\"type\":\"object\",\"properties\":{\"language\":{\"type\":\"string\"}},\"additionalProperties\":false}},\"additionalProperties\":false,\"required\":[\"type\"]},{\"type\":\"object\",\"properties\":{\"type\":{\"type\":\"string\",\"enum\":[\"checkListItem\"]},\"content\":{\"$ref\":\"#/$defs/inlinecontent\"},\"props\":{\"type\":\"object\",\"properties\":{\"checked\":{\"type\":\"boolean\"}},\"additionalProperties\":false}},\"additionalProperties\":false,\"required\":[\"type\"]},{\"type\":\"object\",\"properties\":{\"type\":{\"type\":\"string\",\"enum\":[\"table\"]},\"content\":{\"type\":\"object\",\"properties\":{}},\"props\":{\"type\":\"object\",\"properties\":{},\"additionalProperties\":false}},\"additionalProperties\":false,\"required\":[\"type\"]}]}}}}}]}", "headers": [], "cookies": [] }, "response": { "status": 200, "statusText": "", - "body": "{\n \"id\": \"chatcmpl-BgV5xo8Q9jZK3gqZD4LM1DcHlbcSa\",\n \"object\": \"chat.completion\",\n \"created\": 1749469005,\n \"model\": \"gpt-4o-2024-08-06\",\n \"choices\": [\n {\n \"index\": 0,\n \"message\": {\n \"role\": \"assistant\",\n \"content\": null,\n \"tool_calls\": [\n {\n \"id\": \"call_O1BwfoZi20BEjRrJBVNuuSih\",\n \"type\": \"function\",\n \"function\": {\n \"name\": \"json\",\n \"arguments\": \"{\\\"operations\\\":[{\\\"type\\\":\\\"add\\\",\\\"referenceId\\\":\\\"ref1$\\\",\\\"position\\\":\\\"after\\\",\\\"blocks\\\":[{\\\"type\\\":\\\"paragraph\\\",\\\"content\\\":[{\\\"type\\\":\\\"text\\\",\\\"text\\\":\\\"You look great today!\\\"}]}]},{\\\"type\\\":\\\"update\\\",\\\"id\\\":\\\"ref1$\\\",\\\"block\\\":{\\\"type\\\":\\\"paragraph\\\",\\\"content\\\":[{\\\"type\\\":\\\"text\\\",\\\"text\\\":\\\"Hallo, wereld!\\\"}]}}]}\"\n }\n }\n ],\n \"refusal\": null,\n \"annotations\": []\n },\n \"logprobs\": null,\n \"finish_reason\": \"stop\"\n }\n ],\n \"usage\": {\n \"prompt_tokens\": 1181,\n \"completion_tokens\": 76,\n \"total_tokens\": 1257,\n \"prompt_tokens_details\": {\n \"cached_tokens\": 1152,\n \"audio_tokens\": 0\n },\n \"completion_tokens_details\": {\n \"reasoning_tokens\": 0,\n \"audio_tokens\": 0,\n \"accepted_prediction_tokens\": 0,\n \"rejected_prediction_tokens\": 0\n }\n },\n \"service_tier\": \"default\",\n \"system_fingerprint\": \"fp_07871e2ad8\"\n}\n", + "body": "{\n \"id\": \"chatcmpl-BhXo66nSblvYp5RQPkmMWp7gEneI9\",\n \"object\": \"chat.completion\",\n \"created\": 1749717758,\n \"model\": \"gpt-4o-2024-08-06\",\n \"choices\": [\n {\n \"index\": 0,\n \"message\": {\n \"role\": \"assistant\",\n \"content\": null,\n \"tool_calls\": [\n {\n \"id\": \"call_kgBnwBEANwSdvHrJ6dIMgpkw\",\n \"type\": \"function\",\n \"function\": {\n \"name\": \"json\",\n \"arguments\": \"{\\\"operations\\\":[{\\\"type\\\":\\\"add\\\",\\\"referenceId\\\":\\\"ref1$\\\",\\\"position\\\":\\\"after\\\",\\\"blocks\\\":[{\\\"type\\\":\\\"paragraph\\\",\\\"content\\\":[{\\\"type\\\":\\\"text\\\",\\\"text\\\":\\\"You look great today!\\\"}]}]},{\\\"type\\\":\\\"update\\\",\\\"id\\\":\\\"ref1$\\\",\\\"block\\\":{\\\"type\\\":\\\"paragraph\\\",\\\"content\\\":[{\\\"type\\\":\\\"text\\\",\\\"text\\\":\\\"Hallo, wereld!\\\"}]}}]}\"\n }\n }\n ],\n \"refusal\": null,\n \"annotations\": []\n },\n \"logprobs\": null,\n \"finish_reason\": \"stop\"\n }\n ],\n \"usage\": {\n \"prompt_tokens\": 1209,\n \"completion_tokens\": 76,\n \"total_tokens\": 1285,\n \"prompt_tokens_details\": {\n \"cached_tokens\": 1152,\n \"audio_tokens\": 0\n },\n \"completion_tokens_details\": {\n \"reasoning_tokens\": 0,\n \"audio_tokens\": 0,\n \"accepted_prediction_tokens\": 0,\n \"rejected_prediction_tokens\": 0\n }\n },\n \"service_tier\": \"default\",\n \"system_fingerprint\": \"fp_a288987b44\"\n}\n", "headers": [] } } \ No newline at end of file diff --git a/packages/xl-ai/src/api/formats/json/__snapshots__/json.test.ts/Combined/__msw_snapshots__/openai.chat/gpt-4o-2024-08-06 (non-streaming)/add paragraph and update selection_1_caeb25fbcd6743ad509ab18526f09180.json b/packages/xl-ai/src/api/formats/json/__snapshots__/json.test.ts/Combined/__msw_snapshots__/openai.chat/gpt-4o-2024-08-06 (non-streaming)/add paragraph and update selection_1_ca185676c21707be2b3524b104786716.json similarity index 79% rename from packages/xl-ai/src/api/formats/json/__snapshots__/json.test.ts/Combined/__msw_snapshots__/openai.chat/gpt-4o-2024-08-06 (non-streaming)/add paragraph and update selection_1_caeb25fbcd6743ad509ab18526f09180.json rename to packages/xl-ai/src/api/formats/json/__snapshots__/json.test.ts/Combined/__msw_snapshots__/openai.chat/gpt-4o-2024-08-06 (non-streaming)/add paragraph and update selection_1_ca185676c21707be2b3524b104786716.json index 114b3cec67..ab147f1c51 100644 --- a/packages/xl-ai/src/api/formats/json/__snapshots__/json.test.ts/Combined/__msw_snapshots__/openai.chat/gpt-4o-2024-08-06 (non-streaming)/add paragraph and update selection_1_caeb25fbcd6743ad509ab18526f09180.json +++ b/packages/xl-ai/src/api/formats/json/__snapshots__/json.test.ts/Combined/__msw_snapshots__/openai.chat/gpt-4o-2024-08-06 (non-streaming)/add paragraph and update selection_1_ca185676c21707be2b3524b104786716.json @@ -2,14 +2,14 @@ "request": { "method": "POST", "url": "https://localhost:3000/ai?provider=openai&url=https%3A%2F%2Fapi.openai.com%2Fv1%2Fchat%2Fcompletions", - "body": "{\"model\":\"gpt-4o-2024-08-06\",\"temperature\":0,\"messages\":[{\"role\":\"system\",\"content\":\"You're manipulating a selected part of a text document using JSON blocks. \\n Make sure to follow the json schema provided and always include the trailing $ in ids. \\n This is the selection as an array of JSON blocks:\"},{\"role\":\"system\",\"content\":\"[{\\\"id\\\":\\\"ref2$\\\",\\\"block\\\":{\\\"id\\\":\\\"ref2\\\",\\\"type\\\":\\\"paragraph\\\",\\\"props\\\":{\\\"textColor\\\":\\\"default\\\",\\\"backgroundColor\\\":\\\"default\\\",\\\"textAlignment\\\":\\\"left\\\"},\\\"content\\\":[{\\\"type\\\":\\\"text\\\",\\\"text\\\":\\\"Hello\\\",\\\"styles\\\":{}}],\\\"children\\\":[]}}]\"},{\"role\":\"system\",\"content\":\"This is the entire document (INCLUDING the selected text), find the selected text in there to understand the context:\"},{\"role\":\"system\",\"content\":\"[{\\\"block\\\":{\\\"type\\\":\\\"paragraph\\\",\\\"props\\\":{\\\"textColor\\\":\\\"default\\\",\\\"backgroundColor\\\":\\\"default\\\",\\\"textAlignment\\\":\\\"left\\\"},\\\"content\\\":[{\\\"type\\\":\\\"text\\\",\\\"text\\\":\\\"Hello, world!\\\",\\\"styles\\\":{}}]}},{\\\"block\\\":{\\\"type\\\":\\\"paragraph\\\",\\\"props\\\":{\\\"textColor\\\":\\\"default\\\",\\\"backgroundColor\\\":\\\"default\\\",\\\"textAlignment\\\":\\\"left\\\"},\\\"content\\\":[{\\\"type\\\":\\\"text\\\",\\\"text\\\":\\\"Hello, \\\",\\\"styles\\\":{}},{\\\"type\\\":\\\"mention\\\",\\\"props\\\":{\\\"user\\\":\\\"John Doe\\\"}},{\\\"type\\\":\\\"text\\\",\\\"text\\\":\\\"! \\\",\\\"styles\\\":{}},{\\\"type\\\":\\\"text\\\",\\\"text\\\":\\\"How are you doing?\\\",\\\"styles\\\":{\\\"bold\\\":true}},{\\\"type\\\":\\\"text\\\",\\\"text\\\":\\\" \\\",\\\"styles\\\":{}},{\\\"type\\\":\\\"text\\\",\\\"text\\\":\\\"This text is blue!\\\",\\\"styles\\\":{\\\"textColor\\\":\\\"blue\\\"}}]}},{\\\"block\\\":{\\\"type\\\":\\\"paragraph\\\",\\\"props\\\":{\\\"textColor\\\":\\\"default\\\",\\\"backgroundColor\\\":\\\"default\\\",\\\"textAlignment\\\":\\\"left\\\"},\\\"content\\\":[{\\\"type\\\":\\\"text\\\",\\\"text\\\":\\\"Hello, world! \\\",\\\"styles\\\":{}},{\\\"type\\\":\\\"text\\\",\\\"text\\\":\\\"Bold text. \\\",\\\"styles\\\":{\\\"bold\\\":true}},{\\\"type\\\":\\\"link\\\",\\\"href\\\":\\\"https://www.google.com\\\",\\\"content\\\":[{\\\"type\\\":\\\"text\\\",\\\"text\\\":\\\"Link.\\\",\\\"styles\\\":{}}]}]}}]\"},{\"role\":\"system\",\"content\":\"The user asks you to do the following:\"},{\"role\":\"user\",\"content\":\"add a paragraph with the text 'You look great today!' at the beginning and translate selection to German\"}],\"tool_choice\":{\"type\":\"function\",\"function\":{\"name\":\"json\"}},\"tools\":[{\"type\":\"function\",\"function\":{\"name\":\"json\",\"description\":\"Respond with a JSON object.\",\"parameters\":{\"type\":\"object\",\"properties\":{\"operations\":{\"type\":\"array\",\"items\":{\"anyOf\":[{\"type\":\"object\",\"description\":\"Update a block, the new block will replace the existing block.\",\"properties\":{\"type\":{\"type\":\"string\",\"enum\":[\"update\"]},\"id\":{\"type\":\"string\",\"description\":\"id of block to update\"},\"block\":{\"$ref\":\"#/$defs/block\"}},\"required\":[\"type\",\"id\",\"block\"],\"additionalProperties\":false},{\"type\":\"object\",\"description\":\"Insert new blocks\",\"properties\":{\"type\":{\"type\":\"string\",\"enum\":[\"add\"]},\"referenceId\":{\"type\":\"string\",\"description\":\"MUST be an id of a block in the document\"},\"position\":{\"type\":\"string\",\"enum\":[\"before\",\"after\"],\"description\":\"`after` to add blocks AFTER (below) the block with `referenceId`, `before` to add the block BEFORE (above)\"},\"blocks\":{\"items\":{\"$ref\":\"#/$defs/block\"},\"type\":\"array\"}},\"required\":[\"type\",\"referenceId\",\"position\",\"blocks\"],\"additionalProperties\":false},{\"type\":\"object\",\"description\":\"Delete a block\",\"properties\":{\"type\":{\"type\":\"string\",\"enum\":[\"delete\"]},\"id\":{\"type\":\"string\",\"description\":\"id of block to delete\"}},\"required\":[\"type\",\"id\"],\"additionalProperties\":false}]}}},\"additionalProperties\":false,\"required\":[\"operations\"],\"$defs\":{\"styles\":{\"type\":\"object\",\"properties\":{\"bold\":{\"type\":\"boolean\"},\"italic\":{\"type\":\"boolean\"},\"underline\":{\"type\":\"boolean\"},\"strike\":{\"type\":\"boolean\"},\"code\":{\"type\":\"boolean\"},\"textColor\":{\"type\":\"string\"},\"backgroundColor\":{\"type\":\"string\"}},\"additionalProperties\":false},\"styledtext\":{\"type\":\"object\",\"properties\":{\"type\":{\"type\":\"string\",\"enum\":[\"text\"]},\"text\":{\"type\":\"string\"},\"styles\":{\"$ref\":\"#/$defs/styles\"}},\"additionalProperties\":false,\"required\":[\"type\",\"text\"]},\"inlinecontent\":{\"type\":\"array\",\"items\":{\"anyOf\":[{\"type\":\"object\",\"properties\":{\"type\":{\"type\":\"string\",\"enum\":[\"mention\"]},\"props\":{\"type\":\"object\",\"properties\":{\"user\":{\"type\":\"string\"}},\"additionalProperties\":false}},\"additionalProperties\":false,\"required\":[\"type\"]},{\"$ref\":\"#/$defs/styledtext\"},{\"type\":\"object\",\"properties\":{\"type\":{\"type\":\"string\",\"enum\":[\"link\"]},\"content\":{\"type\":\"array\",\"items\":{\"$ref\":\"#/$defs/styledtext\"}},\"href\":{\"type\":\"string\"}},\"additionalProperties\":false,\"required\":[\"type\",\"href\",\"content\"]}]}},\"block\":{\"anyOf\":[{\"type\":\"object\",\"properties\":{\"type\":{\"type\":\"string\",\"enum\":[\"paragraph\",\"quote\",\"bulletListItem\",\"numberedListItem\"]},\"content\":{\"$ref\":\"#/$defs/inlinecontent\"},\"props\":{\"type\":\"object\",\"properties\":{},\"additionalProperties\":false}},\"additionalProperties\":false,\"required\":[\"type\"]},{\"type\":\"object\",\"properties\":{\"type\":{\"type\":\"string\",\"enum\":[\"heading\"]},\"content\":{\"$ref\":\"#/$defs/inlinecontent\"},\"props\":{\"type\":\"object\",\"properties\":{\"level\":{\"type\":\"number\",\"enum\":[1,2,3]}},\"additionalProperties\":false}},\"additionalProperties\":false,\"required\":[\"type\"]},{\"type\":\"object\",\"properties\":{\"type\":{\"type\":\"string\",\"enum\":[\"codeBlock\"]},\"content\":{\"$ref\":\"#/$defs/inlinecontent\"},\"props\":{\"type\":\"object\",\"properties\":{\"language\":{\"type\":\"string\"}},\"additionalProperties\":false}},\"additionalProperties\":false,\"required\":[\"type\"]},{\"type\":\"object\",\"properties\":{\"type\":{\"type\":\"string\",\"enum\":[\"checkListItem\"]},\"content\":{\"$ref\":\"#/$defs/inlinecontent\"},\"props\":{\"type\":\"object\",\"properties\":{\"checked\":{\"type\":\"boolean\"}},\"additionalProperties\":false}},\"additionalProperties\":false,\"required\":[\"type\"]},{\"type\":\"object\",\"properties\":{\"type\":{\"type\":\"string\",\"enum\":[\"table\"]},\"content\":{\"type\":\"object\",\"properties\":{}},\"props\":{\"type\":\"object\",\"properties\":{},\"additionalProperties\":false}},\"additionalProperties\":false,\"required\":[\"type\"]}]}}}}}]}", + "body": "{\"model\":\"gpt-4o-2024-08-06\",\"temperature\":0,\"messages\":[{\"role\":\"system\",\"content\":\"You're manipulating a selected part of a text document using JSON blocks. \\n Make sure to follow the json schema provided and always include the trailing $ in ids. \\n This is the selection as an array of JSON blocks:\"},{\"role\":\"system\",\"content\":\"[{\\\"id\\\":\\\"ref2$\\\",\\\"block\\\":{\\\"id\\\":\\\"ref2\\\",\\\"type\\\":\\\"paragraph\\\",\\\"props\\\":{\\\"textColor\\\":\\\"default\\\",\\\"backgroundColor\\\":\\\"default\\\",\\\"textAlignment\\\":\\\"left\\\"},\\\"content\\\":[{\\\"type\\\":\\\"text\\\",\\\"text\\\":\\\"Hello\\\",\\\"styles\\\":{}}],\\\"children\\\":[]}}]\"},{\"role\":\"system\",\"content\":\"This is the entire document (INCLUDING the selected text), find the selected text in there to understand the context:\"},{\"role\":\"system\",\"content\":\"[{\\\"block\\\":{\\\"type\\\":\\\"paragraph\\\",\\\"props\\\":{\\\"textColor\\\":\\\"default\\\",\\\"backgroundColor\\\":\\\"default\\\",\\\"textAlignment\\\":\\\"left\\\"},\\\"content\\\":[{\\\"type\\\":\\\"text\\\",\\\"text\\\":\\\"Hello, world!\\\",\\\"styles\\\":{}}]}},{\\\"block\\\":{\\\"type\\\":\\\"paragraph\\\",\\\"props\\\":{\\\"textColor\\\":\\\"default\\\",\\\"backgroundColor\\\":\\\"default\\\",\\\"textAlignment\\\":\\\"left\\\"},\\\"content\\\":[{\\\"type\\\":\\\"text\\\",\\\"text\\\":\\\"Hello, \\\",\\\"styles\\\":{}},{\\\"type\\\":\\\"mention\\\",\\\"props\\\":{\\\"user\\\":\\\"John Doe\\\"}},{\\\"type\\\":\\\"text\\\",\\\"text\\\":\\\"! \\\",\\\"styles\\\":{}},{\\\"type\\\":\\\"text\\\",\\\"text\\\":\\\"How are you doing?\\\",\\\"styles\\\":{\\\"bold\\\":true}},{\\\"type\\\":\\\"text\\\",\\\"text\\\":\\\" \\\",\\\"styles\\\":{}},{\\\"type\\\":\\\"text\\\",\\\"text\\\":\\\"This text is blue!\\\",\\\"styles\\\":{\\\"textColor\\\":\\\"blue\\\"}}]}},{\\\"block\\\":{\\\"type\\\":\\\"paragraph\\\",\\\"props\\\":{\\\"textColor\\\":\\\"default\\\",\\\"backgroundColor\\\":\\\"default\\\",\\\"textAlignment\\\":\\\"left\\\"},\\\"content\\\":[{\\\"type\\\":\\\"text\\\",\\\"text\\\":\\\"Hello, world! \\\",\\\"styles\\\":{}},{\\\"type\\\":\\\"text\\\",\\\"text\\\":\\\"Bold text. \\\",\\\"styles\\\":{\\\"bold\\\":true}},{\\\"type\\\":\\\"link\\\",\\\"href\\\":\\\"https://www.google.com\\\",\\\"content\\\":[{\\\"type\\\":\\\"text\\\",\\\"text\\\":\\\"Link.\\\",\\\"styles\\\":{}}]}]}}]\"},{\"role\":\"system\",\"content\":\"The user asks you to do the following:\"},{\"role\":\"user\",\"content\":\"add a paragraph with the text 'You look great today!' at the beginning and translate selection to German\"}],\"tool_choice\":{\"type\":\"function\",\"function\":{\"name\":\"json\"}},\"tools\":[{\"type\":\"function\",\"function\":{\"name\":\"json\",\"description\":\"Respond with a JSON object.\",\"parameters\":{\"type\":\"object\",\"properties\":{\"operations\":{\"type\":\"array\",\"items\":{\"anyOf\":[{\"type\":\"object\",\"description\":\"Update a block, the new block will replace the existing block.\",\"properties\":{\"type\":{\"type\":\"string\",\"enum\":[\"update\"]},\"id\":{\"type\":\"string\",\"description\":\"id of block to update\"},\"block\":{\"$ref\":\"#/$defs/block\"}},\"required\":[\"type\",\"id\",\"block\"],\"additionalProperties\":false},{\"type\":\"object\",\"description\":\"Insert new blocks\",\"properties\":{\"type\":{\"type\":\"string\",\"enum\":[\"add\"]},\"referenceId\":{\"type\":\"string\",\"description\":\"MUST be an id of a block in the document\"},\"position\":{\"type\":\"string\",\"enum\":[\"before\",\"after\"],\"description\":\"`after` to add blocks AFTER (below) the block with `referenceId`, `before` to add the block BEFORE (above)\"},\"blocks\":{\"items\":{\"$ref\":\"#/$defs/block\"},\"type\":\"array\"}},\"required\":[\"type\",\"referenceId\",\"position\",\"blocks\"],\"additionalProperties\":false},{\"type\":\"object\",\"description\":\"Delete a block\",\"properties\":{\"type\":{\"type\":\"string\",\"enum\":[\"delete\"]},\"id\":{\"type\":\"string\",\"description\":\"id of block to delete\"}},\"required\":[\"type\",\"id\"],\"additionalProperties\":false}]}}},\"additionalProperties\":false,\"required\":[\"operations\"],\"$defs\":{\"styles\":{\"type\":\"object\",\"properties\":{\"bold\":{\"type\":\"boolean\"},\"italic\":{\"type\":\"boolean\"},\"underline\":{\"type\":\"boolean\"},\"strike\":{\"type\":\"boolean\"},\"code\":{\"type\":\"boolean\"},\"textColor\":{\"type\":\"string\"},\"backgroundColor\":{\"type\":\"string\"}},\"additionalProperties\":false},\"styledtext\":{\"type\":\"object\",\"properties\":{\"type\":{\"type\":\"string\",\"enum\":[\"text\"]},\"text\":{\"type\":\"string\"},\"styles\":{\"$ref\":\"#/$defs/styles\"}},\"additionalProperties\":false,\"required\":[\"type\",\"text\"]},\"inlinecontent\":{\"type\":\"array\",\"items\":{\"anyOf\":[{\"type\":\"object\",\"properties\":{\"type\":{\"type\":\"string\",\"enum\":[\"mention\"]},\"props\":{\"type\":\"object\",\"properties\":{\"user\":{\"type\":\"string\"}},\"additionalProperties\":false}},\"additionalProperties\":false,\"required\":[\"type\"]},{\"$ref\":\"#/$defs/styledtext\"},{\"type\":\"object\",\"properties\":{\"type\":{\"type\":\"string\",\"enum\":[\"link\"]},\"content\":{\"type\":\"array\",\"items\":{\"$ref\":\"#/$defs/styledtext\"}},\"href\":{\"type\":\"string\"}},\"additionalProperties\":false,\"required\":[\"type\",\"href\",\"content\"]}]}},\"block\":{\"anyOf\":[{\"type\":\"object\",\"properties\":{\"type\":{\"type\":\"string\",\"enum\":[\"paragraph\",\"quote\",\"toggleListItem\",\"bulletListItem\",\"numberedListItem\"]},\"content\":{\"$ref\":\"#/$defs/inlinecontent\"},\"props\":{\"type\":\"object\",\"properties\":{},\"additionalProperties\":false}},\"additionalProperties\":false,\"required\":[\"type\"]},{\"type\":\"object\",\"properties\":{\"type\":{\"type\":\"string\",\"enum\":[\"heading\"]},\"content\":{\"$ref\":\"#/$defs/inlinecontent\"},\"props\":{\"type\":\"object\",\"properties\":{\"level\":{\"type\":\"number\",\"enum\":[1,2,3]},\"isTogglable\":{\"type\":\"boolean\"}},\"additionalProperties\":false}},\"additionalProperties\":false,\"required\":[\"type\"]},{\"type\":\"object\",\"properties\":{\"type\":{\"type\":\"string\",\"enum\":[\"codeBlock\"]},\"content\":{\"$ref\":\"#/$defs/inlinecontent\"},\"props\":{\"type\":\"object\",\"properties\":{\"language\":{\"type\":\"string\"}},\"additionalProperties\":false}},\"additionalProperties\":false,\"required\":[\"type\"]},{\"type\":\"object\",\"properties\":{\"type\":{\"type\":\"string\",\"enum\":[\"checkListItem\"]},\"content\":{\"$ref\":\"#/$defs/inlinecontent\"},\"props\":{\"type\":\"object\",\"properties\":{\"checked\":{\"type\":\"boolean\"}},\"additionalProperties\":false}},\"additionalProperties\":false,\"required\":[\"type\"]},{\"type\":\"object\",\"properties\":{\"type\":{\"type\":\"string\",\"enum\":[\"table\"]},\"content\":{\"type\":\"object\",\"properties\":{}},\"props\":{\"type\":\"object\",\"properties\":{},\"additionalProperties\":false}},\"additionalProperties\":false,\"required\":[\"type\"]}]}}}}}]}", "headers": [], "cookies": [] }, "response": { "status": 200, "statusText": "", - "body": "{\n \"id\": \"chatcmpl-BgV5zIvL9BfMdJ6dVhWQ7iuFj48Cg\",\n \"object\": \"chat.completion\",\n \"created\": 1749469007,\n \"model\": \"gpt-4o-2024-08-06\",\n \"choices\": [\n {\n \"index\": 0,\n \"message\": {\n \"role\": \"assistant\",\n \"content\": null,\n \"tool_calls\": [\n {\n \"id\": \"call_IEIjRBlZx7Fkjm7mzGUzWbhd\",\n \"type\": \"function\",\n \"function\": {\n \"name\": \"json\",\n \"arguments\": \"{\\\"operations\\\":[{\\\"type\\\":\\\"add\\\",\\\"referenceId\\\":\\\"ref2$\\\",\\\"position\\\":\\\"before\\\",\\\"blocks\\\":[{\\\"type\\\":\\\"paragraph\\\",\\\"content\\\":[{\\\"type\\\":\\\"text\\\",\\\"text\\\":\\\"You look great today!\\\"}]}]},{\\\"type\\\":\\\"update\\\",\\\"id\\\":\\\"ref2$\\\",\\\"block\\\":{\\\"type\\\":\\\"paragraph\\\",\\\"content\\\":[{\\\"type\\\":\\\"text\\\",\\\"text\\\":\\\"Hallo\\\"}]}}]}\"\n }\n }\n ],\n \"refusal\": null,\n \"annotations\": []\n },\n \"logprobs\": null,\n \"finish_reason\": \"stop\"\n }\n ],\n \"usage\": {\n \"prompt_tokens\": 1071,\n \"completion_tokens\": 74,\n \"total_tokens\": 1145,\n \"prompt_tokens_details\": {\n \"cached_tokens\": 1024,\n \"audio_tokens\": 0\n },\n \"completion_tokens_details\": {\n \"reasoning_tokens\": 0,\n \"audio_tokens\": 0,\n \"accepted_prediction_tokens\": 0,\n \"rejected_prediction_tokens\": 0\n }\n },\n \"service_tier\": \"default\",\n \"system_fingerprint\": \"fp_a288987b44\"\n}\n", + "body": "{\n \"id\": \"chatcmpl-BhXo7Q1G6DsIuUQ9ICNpqtEwR0xXs\",\n \"object\": \"chat.completion\",\n \"created\": 1749717759,\n \"model\": \"gpt-4o-2024-08-06\",\n \"choices\": [\n {\n \"index\": 0,\n \"message\": {\n \"role\": \"assistant\",\n \"content\": null,\n \"tool_calls\": [\n {\n \"id\": \"call_awCdgtHpCFKNQvjuWT1JILNF\",\n \"type\": \"function\",\n \"function\": {\n \"name\": \"json\",\n \"arguments\": \"{\\\"operations\\\":[{\\\"type\\\":\\\"add\\\",\\\"referenceId\\\":\\\"ref2$\\\",\\\"position\\\":\\\"before\\\",\\\"blocks\\\":[{\\\"type\\\":\\\"paragraph\\\",\\\"content\\\":[{\\\"type\\\":\\\"text\\\",\\\"text\\\":\\\"You look great today!\\\"}]}]},{\\\"type\\\":\\\"update\\\",\\\"id\\\":\\\"ref2$\\\",\\\"block\\\":{\\\"type\\\":\\\"paragraph\\\",\\\"content\\\":[{\\\"type\\\":\\\"text\\\",\\\"text\\\":\\\"Hallo\\\"}]}}]}\"\n }\n }\n ],\n \"refusal\": null,\n \"annotations\": []\n },\n \"logprobs\": null,\n \"finish_reason\": \"stop\"\n }\n ],\n \"usage\": {\n \"prompt_tokens\": 1099,\n \"completion_tokens\": 74,\n \"total_tokens\": 1173,\n \"prompt_tokens_details\": {\n \"cached_tokens\": 1024,\n \"audio_tokens\": 0\n },\n \"completion_tokens_details\": {\n \"reasoning_tokens\": 0,\n \"audio_tokens\": 0,\n \"accepted_prediction_tokens\": 0,\n \"rejected_prediction_tokens\": 0\n }\n },\n \"service_tier\": \"default\",\n \"system_fingerprint\": \"fp_07871e2ad8\"\n}\n", "headers": [] } } \ No newline at end of file diff --git a/packages/xl-ai/src/api/formats/json/__snapshots__/json.test.ts/Combined/__msw_snapshots__/openai.chat/gpt-4o-2024-08-06 (streaming)/add and update paragraph_1_211d1a76157b3968b2ecf2431ed3568f.json b/packages/xl-ai/src/api/formats/json/__snapshots__/json.test.ts/Combined/__msw_snapshots__/openai.chat/gpt-4o-2024-08-06 (streaming)/add and update paragraph_1_211d1a76157b3968b2ecf2431ed3568f.json deleted file mode 100644 index 25b23f5d5a..0000000000 --- a/packages/xl-ai/src/api/formats/json/__snapshots__/json.test.ts/Combined/__msw_snapshots__/openai.chat/gpt-4o-2024-08-06 (streaming)/add and update paragraph_1_211d1a76157b3968b2ecf2431ed3568f.json +++ /dev/null @@ -1,15 +0,0 @@ -{ - "request": { - "method": "POST", - "url": "https://localhost:3000/ai?provider=openai&url=https%3A%2F%2Fapi.openai.com%2Fv1%2Fchat%2Fcompletions", - "body": "{\"model\":\"gpt-4o-2024-08-06\",\"temperature\":0,\"messages\":[{\"role\":\"system\",\"content\":\"You're manipulating a text document using JSON blocks. \\n Make sure to follow the json schema provided. When referencing ids they MUST be EXACTLY the same (including the trailing $). \\n This is the document as an array of JSON blocks (the cursor is BETWEEN two blocks as indicated by cursor: true):\"},{\"role\":\"system\",\"content\":\"[{\\\"id\\\":\\\"ref1$\\\",\\\"block\\\":{\\\"id\\\":\\\"ref1\\\",\\\"type\\\":\\\"paragraph\\\",\\\"props\\\":{\\\"textColor\\\":\\\"default\\\",\\\"backgroundColor\\\":\\\"default\\\",\\\"textAlignment\\\":\\\"left\\\"},\\\"content\\\":[{\\\"type\\\":\\\"text\\\",\\\"text\\\":\\\"Hello, world!\\\",\\\"styles\\\":{}}]}},{\\\"cursor\\\":true},{\\\"id\\\":\\\"ref2$\\\",\\\"block\\\":{\\\"id\\\":\\\"ref2\\\",\\\"type\\\":\\\"paragraph\\\",\\\"props\\\":{\\\"textColor\\\":\\\"default\\\",\\\"backgroundColor\\\":\\\"default\\\",\\\"textAlignment\\\":\\\"left\\\"},\\\"content\\\":[{\\\"type\\\":\\\"text\\\",\\\"text\\\":\\\"Hello, \\\",\\\"styles\\\":{}},{\\\"type\\\":\\\"mention\\\",\\\"props\\\":{\\\"user\\\":\\\"John Doe\\\"}},{\\\"type\\\":\\\"text\\\",\\\"text\\\":\\\"! \\\",\\\"styles\\\":{}},{\\\"type\\\":\\\"text\\\",\\\"text\\\":\\\"How are you doing?\\\",\\\"styles\\\":{\\\"bold\\\":true}},{\\\"type\\\":\\\"text\\\",\\\"text\\\":\\\" \\\",\\\"styles\\\":{}},{\\\"type\\\":\\\"text\\\",\\\"text\\\":\\\"This text is blue!\\\",\\\"styles\\\":{\\\"textColor\\\":\\\"blue\\\"}}]}},{\\\"id\\\":\\\"ref3$\\\",\\\"block\\\":{\\\"id\\\":\\\"ref3\\\",\\\"type\\\":\\\"paragraph\\\",\\\"props\\\":{\\\"textColor\\\":\\\"default\\\",\\\"backgroundColor\\\":\\\"default\\\",\\\"textAlignment\\\":\\\"left\\\"},\\\"content\\\":[{\\\"type\\\":\\\"text\\\",\\\"text\\\":\\\"Hello, world! \\\",\\\"styles\\\":{}},{\\\"type\\\":\\\"text\\\",\\\"text\\\":\\\"Bold text. \\\",\\\"styles\\\":{\\\"bold\\\":true}},{\\\"type\\\":\\\"link\\\",\\\"href\\\":\\\"https://www.google.com\\\",\\\"content\\\":[{\\\"type\\\":\\\"text\\\",\\\"text\\\":\\\"Link.\\\",\\\"styles\\\":{}}]}]}}]\"},{\"role\":\"system\",\"content\":\"The user asks you to do the following:\"},{\"role\":\"user\",\"content\":\"add a new paragraph with the text 'You look great today!' after the first paragraph and translate 'Hello, world' to dutch\"},{\"role\":\"system\",\"content\":\"First, determine what part of the document the user is talking about. You SHOULD probably take cursor info into account if needed.\\n EXAMPLE: if user says \\\"below\\\" (without pointing to a specific part of the document) he / she probably indicates the block(s) after the cursor. \\n EXAMPLE: If you want to insert content AT the cursor position (UNLESS indicated otherwise by the user), then you need `referenceId` to point to the block before the cursor with position `after` (or block below and `before`).\\n \\n Prefer updating existing blocks over removing and adding (but this also depends on the user's question).\"}],\"tool_choice\":{\"type\":\"function\",\"function\":{\"name\":\"json\"}},\"tools\":[{\"type\":\"function\",\"function\":{\"name\":\"json\",\"description\":\"Respond with a JSON object.\",\"parameters\":{\"type\":\"object\",\"properties\":{\"operations\":{\"type\":\"array\",\"items\":{\"anyOf\":[{\"type\":\"object\",\"description\":\"Update a block, the new block will replace the existing block.\",\"properties\":{\"type\":{\"type\":\"string\",\"enum\":[\"update\"]},\"id\":{\"type\":\"string\",\"description\":\"id of block to update\"},\"block\":{\"$ref\":\"#/$defs/block\"}},\"required\":[\"type\",\"id\",\"block\"],\"additionalProperties\":false},{\"type\":\"object\",\"description\":\"Insert new blocks\",\"properties\":{\"type\":{\"type\":\"string\",\"enum\":[\"add\"]},\"referenceId\":{\"type\":\"string\",\"description\":\"MUST be an id of a block in the document\"},\"position\":{\"type\":\"string\",\"enum\":[\"before\",\"after\"],\"description\":\"`after` to add blocks AFTER (below) the block with `referenceId`, `before` to add the block BEFORE (above)\"},\"blocks\":{\"items\":{\"$ref\":\"#/$defs/block\"},\"type\":\"array\"}},\"required\":[\"type\",\"referenceId\",\"position\",\"blocks\"],\"additionalProperties\":false},{\"type\":\"object\",\"description\":\"Delete a block\",\"properties\":{\"type\":{\"type\":\"string\",\"enum\":[\"delete\"]},\"id\":{\"type\":\"string\",\"description\":\"id of block to delete\"}},\"required\":[\"type\",\"id\"],\"additionalProperties\":false}]}}},\"additionalProperties\":false,\"required\":[\"operations\"],\"$defs\":{\"styles\":{\"type\":\"object\",\"properties\":{\"bold\":{\"type\":\"boolean\"},\"italic\":{\"type\":\"boolean\"},\"underline\":{\"type\":\"boolean\"},\"strike\":{\"type\":\"boolean\"},\"code\":{\"type\":\"boolean\"},\"textColor\":{\"type\":\"string\"},\"backgroundColor\":{\"type\":\"string\"}},\"additionalProperties\":false},\"styledtext\":{\"type\":\"object\",\"properties\":{\"type\":{\"type\":\"string\",\"enum\":[\"text\"]},\"text\":{\"type\":\"string\"},\"styles\":{\"$ref\":\"#/$defs/styles\"}},\"additionalProperties\":false,\"required\":[\"type\",\"text\"]},\"inlinecontent\":{\"type\":\"array\",\"items\":{\"anyOf\":[{\"type\":\"object\",\"properties\":{\"type\":{\"type\":\"string\",\"enum\":[\"mention\"]},\"props\":{\"type\":\"object\",\"properties\":{\"user\":{\"type\":\"string\"}},\"additionalProperties\":false}},\"additionalProperties\":false,\"required\":[\"type\"]},{\"$ref\":\"#/$defs/styledtext\"},{\"type\":\"object\",\"properties\":{\"type\":{\"type\":\"string\",\"enum\":[\"link\"]},\"content\":{\"type\":\"array\",\"items\":{\"$ref\":\"#/$defs/styledtext\"}},\"href\":{\"type\":\"string\"}},\"additionalProperties\":false,\"required\":[\"type\",\"href\",\"content\"]}]}},\"block\":{\"anyOf\":[{\"type\":\"object\",\"properties\":{\"type\":{\"type\":\"string\",\"enum\":[\"paragraph\",\"quote\",\"bulletListItem\",\"numberedListItem\"]},\"content\":{\"$ref\":\"#/$defs/inlinecontent\"},\"props\":{\"type\":\"object\",\"properties\":{},\"additionalProperties\":false}},\"additionalProperties\":false,\"required\":[\"type\"]},{\"type\":\"object\",\"properties\":{\"type\":{\"type\":\"string\",\"enum\":[\"heading\"]},\"content\":{\"$ref\":\"#/$defs/inlinecontent\"},\"props\":{\"type\":\"object\",\"properties\":{\"level\":{\"type\":\"number\",\"enum\":[1,2,3]}},\"additionalProperties\":false}},\"additionalProperties\":false,\"required\":[\"type\"]},{\"type\":\"object\",\"properties\":{\"type\":{\"type\":\"string\",\"enum\":[\"codeBlock\"]},\"content\":{\"$ref\":\"#/$defs/inlinecontent\"},\"props\":{\"type\":\"object\",\"properties\":{\"language\":{\"type\":\"string\"}},\"additionalProperties\":false}},\"additionalProperties\":false,\"required\":[\"type\"]},{\"type\":\"object\",\"properties\":{\"type\":{\"type\":\"string\",\"enum\":[\"checkListItem\"]},\"content\":{\"$ref\":\"#/$defs/inlinecontent\"},\"props\":{\"type\":\"object\",\"properties\":{\"checked\":{\"type\":\"boolean\"}},\"additionalProperties\":false}},\"additionalProperties\":false,\"required\":[\"type\"]},{\"type\":\"object\",\"properties\":{\"type\":{\"type\":\"string\",\"enum\":[\"table\"]},\"content\":{\"type\":\"object\",\"properties\":{}},\"props\":{\"type\":\"object\",\"properties\":{},\"additionalProperties\":false}},\"additionalProperties\":false,\"required\":[\"type\"]}]}}}}}],\"stream\":true}", - "headers": [], - "cookies": [] - }, - "response": { - "status": 200, - "statusText": "", - "body": "data: {\"id\":\"chatcmpl-BgV5A292kaebPA5KYLW4AHB0GjKgl\",\"object\":\"chat.completion.chunk\",\"created\":1749468956,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_07871e2ad8\",\"choices\":[{\"index\":0,\"delta\":{\"role\":\"assistant\",\"content\":null,\"tool_calls\":[{\"index\":0,\"id\":\"call_L0Na0WUqbMPWuLApSTa1IvFa\",\"type\":\"function\",\"function\":{\"name\":\"json\",\"arguments\":\"\"}}],\"refusal\":null},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BgV5A292kaebPA5KYLW4AHB0GjKgl\",\"object\":\"chat.completion.chunk\",\"created\":1749468956,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_07871e2ad8\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"{\\\"\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BgV5A292kaebPA5KYLW4AHB0GjKgl\",\"object\":\"chat.completion.chunk\",\"created\":1749468956,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_07871e2ad8\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"operations\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BgV5A292kaebPA5KYLW4AHB0GjKgl\",\"object\":\"chat.completion.chunk\",\"created\":1749468956,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_07871e2ad8\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"\\\":[\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BgV5A292kaebPA5KYLW4AHB0GjKgl\",\"object\":\"chat.completion.chunk\",\"created\":1749468956,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_07871e2ad8\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"{\\\"\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BgV5A292kaebPA5KYLW4AHB0GjKgl\",\"object\":\"chat.completion.chunk\",\"created\":1749468956,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_07871e2ad8\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"type\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BgV5A292kaebPA5KYLW4AHB0GjKgl\",\"object\":\"chat.completion.chunk\",\"created\":1749468956,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_07871e2ad8\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"\\\":\\\"\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BgV5A292kaebPA5KYLW4AHB0GjKgl\",\"object\":\"chat.completion.chunk\",\"created\":1749468956,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_07871e2ad8\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"add\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BgV5A292kaebPA5KYLW4AHB0GjKgl\",\"object\":\"chat.completion.chunk\",\"created\":1749468956,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_07871e2ad8\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"\\\",\\\"\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BgV5A292kaebPA5KYLW4AHB0GjKgl\",\"object\":\"chat.completion.chunk\",\"created\":1749468956,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_07871e2ad8\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"reference\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BgV5A292kaebPA5KYLW4AHB0GjKgl\",\"object\":\"chat.completion.chunk\",\"created\":1749468956,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_07871e2ad8\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"Id\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BgV5A292kaebPA5KYLW4AHB0GjKgl\",\"object\":\"chat.completion.chunk\",\"created\":1749468956,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_07871e2ad8\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"\\\":\\\"\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BgV5A292kaebPA5KYLW4AHB0GjKgl\",\"object\":\"chat.completion.chunk\",\"created\":1749468956,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_07871e2ad8\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"ref\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BgV5A292kaebPA5KYLW4AHB0GjKgl\",\"object\":\"chat.completion.chunk\",\"created\":1749468956,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_07871e2ad8\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"1\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BgV5A292kaebPA5KYLW4AHB0GjKgl\",\"object\":\"chat.completion.chunk\",\"created\":1749468956,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_07871e2ad8\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"$\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BgV5A292kaebPA5KYLW4AHB0GjKgl\",\"object\":\"chat.completion.chunk\",\"created\":1749468956,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_07871e2ad8\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"\\\",\\\"\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BgV5A292kaebPA5KYLW4AHB0GjKgl\",\"object\":\"chat.completion.chunk\",\"created\":1749468956,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_07871e2ad8\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"position\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BgV5A292kaebPA5KYLW4AHB0GjKgl\",\"object\":\"chat.completion.chunk\",\"created\":1749468956,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_07871e2ad8\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"\\\":\\\"\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BgV5A292kaebPA5KYLW4AHB0GjKgl\",\"object\":\"chat.completion.chunk\",\"created\":1749468956,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_07871e2ad8\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"after\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BgV5A292kaebPA5KYLW4AHB0GjKgl\",\"object\":\"chat.completion.chunk\",\"created\":1749468956,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_07871e2ad8\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"\\\",\\\"\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BgV5A292kaebPA5KYLW4AHB0GjKgl\",\"object\":\"chat.completion.chunk\",\"created\":1749468956,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_07871e2ad8\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"blocks\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BgV5A292kaebPA5KYLW4AHB0GjKgl\",\"object\":\"chat.completion.chunk\",\"created\":1749468956,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_07871e2ad8\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"\\\":[\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BgV5A292kaebPA5KYLW4AHB0GjKgl\",\"object\":\"chat.completion.chunk\",\"created\":1749468956,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_07871e2ad8\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"{\\\"\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BgV5A292kaebPA5KYLW4AHB0GjKgl\",\"object\":\"chat.completion.chunk\",\"created\":1749468956,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_07871e2ad8\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"type\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BgV5A292kaebPA5KYLW4AHB0GjKgl\",\"object\":\"chat.completion.chunk\",\"created\":1749468956,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_07871e2ad8\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"\\\":\\\"\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BgV5A292kaebPA5KYLW4AHB0GjKgl\",\"object\":\"chat.completion.chunk\",\"created\":1749468956,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_07871e2ad8\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"paragraph\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BgV5A292kaebPA5KYLW4AHB0GjKgl\",\"object\":\"chat.completion.chunk\",\"created\":1749468956,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_07871e2ad8\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"\\\",\\\"\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BgV5A292kaebPA5KYLW4AHB0GjKgl\",\"object\":\"chat.completion.chunk\",\"created\":1749468956,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_07871e2ad8\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"content\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BgV5A292kaebPA5KYLW4AHB0GjKgl\",\"object\":\"chat.completion.chunk\",\"created\":1749468956,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_07871e2ad8\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"\\\":[\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BgV5A292kaebPA5KYLW4AHB0GjKgl\",\"object\":\"chat.completion.chunk\",\"created\":1749468956,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_07871e2ad8\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"{\\\"\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BgV5A292kaebPA5KYLW4AHB0GjKgl\",\"object\":\"chat.completion.chunk\",\"created\":1749468956,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_07871e2ad8\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"type\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BgV5A292kaebPA5KYLW4AHB0GjKgl\",\"object\":\"chat.completion.chunk\",\"created\":1749468956,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_07871e2ad8\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"\\\":\\\"\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BgV5A292kaebPA5KYLW4AHB0GjKgl\",\"object\":\"chat.completion.chunk\",\"created\":1749468956,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_07871e2ad8\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"text\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BgV5A292kaebPA5KYLW4AHB0GjKgl\",\"object\":\"chat.completion.chunk\",\"created\":1749468956,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_07871e2ad8\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"\\\",\\\"\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BgV5A292kaebPA5KYLW4AHB0GjKgl\",\"object\":\"chat.completion.chunk\",\"created\":1749468956,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_07871e2ad8\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"text\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BgV5A292kaebPA5KYLW4AHB0GjKgl\",\"object\":\"chat.completion.chunk\",\"created\":1749468956,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_07871e2ad8\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"\\\":\\\"\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BgV5A292kaebPA5KYLW4AHB0GjKgl\",\"object\":\"chat.completion.chunk\",\"created\":1749468956,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_07871e2ad8\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"You\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BgV5A292kaebPA5KYLW4AHB0GjKgl\",\"object\":\"chat.completion.chunk\",\"created\":1749468956,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_07871e2ad8\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\" look\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BgV5A292kaebPA5KYLW4AHB0GjKgl\",\"object\":\"chat.completion.chunk\",\"created\":1749468956,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_07871e2ad8\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\" great\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BgV5A292kaebPA5KYLW4AHB0GjKgl\",\"object\":\"chat.completion.chunk\",\"created\":1749468956,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_07871e2ad8\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\" today\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BgV5A292kaebPA5KYLW4AHB0GjKgl\",\"object\":\"chat.completion.chunk\",\"created\":1749468956,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_07871e2ad8\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"!\\\"\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BgV5A292kaebPA5KYLW4AHB0GjKgl\",\"object\":\"chat.completion.chunk\",\"created\":1749468956,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_07871e2ad8\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"}\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BgV5A292kaebPA5KYLW4AHB0GjKgl\",\"object\":\"chat.completion.chunk\",\"created\":1749468956,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_07871e2ad8\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"]}\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BgV5A292kaebPA5KYLW4AHB0GjKgl\",\"object\":\"chat.completion.chunk\",\"created\":1749468956,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_07871e2ad8\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"]\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BgV5A292kaebPA5KYLW4AHB0GjKgl\",\"object\":\"chat.completion.chunk\",\"created\":1749468956,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_07871e2ad8\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"},{\\\"\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BgV5A292kaebPA5KYLW4AHB0GjKgl\",\"object\":\"chat.completion.chunk\",\"created\":1749468956,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_07871e2ad8\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"type\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BgV5A292kaebPA5KYLW4AHB0GjKgl\",\"object\":\"chat.completion.chunk\",\"created\":1749468956,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_07871e2ad8\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"\\\":\\\"\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BgV5A292kaebPA5KYLW4AHB0GjKgl\",\"object\":\"chat.completion.chunk\",\"created\":1749468956,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_07871e2ad8\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"update\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BgV5A292kaebPA5KYLW4AHB0GjKgl\",\"object\":\"chat.completion.chunk\",\"created\":1749468956,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_07871e2ad8\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"\\\",\\\"\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BgV5A292kaebPA5KYLW4AHB0GjKgl\",\"object\":\"chat.completion.chunk\",\"created\":1749468956,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_07871e2ad8\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"id\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BgV5A292kaebPA5KYLW4AHB0GjKgl\",\"object\":\"chat.completion.chunk\",\"created\":1749468956,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_07871e2ad8\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"\\\":\\\"\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BgV5A292kaebPA5KYLW4AHB0GjKgl\",\"object\":\"chat.completion.chunk\",\"created\":1749468956,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_07871e2ad8\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"ref\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BgV5A292kaebPA5KYLW4AHB0GjKgl\",\"object\":\"chat.completion.chunk\",\"created\":1749468956,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_07871e2ad8\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"1\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BgV5A292kaebPA5KYLW4AHB0GjKgl\",\"object\":\"chat.completion.chunk\",\"created\":1749468956,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_07871e2ad8\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"$\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BgV5A292kaebPA5KYLW4AHB0GjKgl\",\"object\":\"chat.completion.chunk\",\"created\":1749468956,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_07871e2ad8\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"\\\",\\\"\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BgV5A292kaebPA5KYLW4AHB0GjKgl\",\"object\":\"chat.completion.chunk\",\"created\":1749468956,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_07871e2ad8\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"block\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BgV5A292kaebPA5KYLW4AHB0GjKgl\",\"object\":\"chat.completion.chunk\",\"created\":1749468956,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_07871e2ad8\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"\\\":{\\\"\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BgV5A292kaebPA5KYLW4AHB0GjKgl\",\"object\":\"chat.completion.chunk\",\"created\":1749468956,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_07871e2ad8\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"type\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BgV5A292kaebPA5KYLW4AHB0GjKgl\",\"object\":\"chat.completion.chunk\",\"created\":1749468956,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_07871e2ad8\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"\\\":\\\"\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BgV5A292kaebPA5KYLW4AHB0GjKgl\",\"object\":\"chat.completion.chunk\",\"created\":1749468956,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_07871e2ad8\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"paragraph\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BgV5A292kaebPA5KYLW4AHB0GjKgl\",\"object\":\"chat.completion.chunk\",\"created\":1749468956,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_07871e2ad8\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"\\\",\\\"\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BgV5A292kaebPA5KYLW4AHB0GjKgl\",\"object\":\"chat.completion.chunk\",\"created\":1749468956,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_07871e2ad8\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"content\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BgV5A292kaebPA5KYLW4AHB0GjKgl\",\"object\":\"chat.completion.chunk\",\"created\":1749468956,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_07871e2ad8\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"\\\":[\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BgV5A292kaebPA5KYLW4AHB0GjKgl\",\"object\":\"chat.completion.chunk\",\"created\":1749468956,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_07871e2ad8\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"{\\\"\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BgV5A292kaebPA5KYLW4AHB0GjKgl\",\"object\":\"chat.completion.chunk\",\"created\":1749468956,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_07871e2ad8\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"type\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BgV5A292kaebPA5KYLW4AHB0GjKgl\",\"object\":\"chat.completion.chunk\",\"created\":1749468956,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_07871e2ad8\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"\\\":\\\"\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BgV5A292kaebPA5KYLW4AHB0GjKgl\",\"object\":\"chat.completion.chunk\",\"created\":1749468956,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_07871e2ad8\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"text\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BgV5A292kaebPA5KYLW4AHB0GjKgl\",\"object\":\"chat.completion.chunk\",\"created\":1749468956,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_07871e2ad8\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"\\\",\\\"\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BgV5A292kaebPA5KYLW4AHB0GjKgl\",\"object\":\"chat.completion.chunk\",\"created\":1749468956,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_07871e2ad8\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"text\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BgV5A292kaebPA5KYLW4AHB0GjKgl\",\"object\":\"chat.completion.chunk\",\"created\":1749468956,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_07871e2ad8\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"\\\":\\\"\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BgV5A292kaebPA5KYLW4AHB0GjKgl\",\"object\":\"chat.completion.chunk\",\"created\":1749468956,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_07871e2ad8\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"Hallo\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BgV5A292kaebPA5KYLW4AHB0GjKgl\",\"object\":\"chat.completion.chunk\",\"created\":1749468956,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_07871e2ad8\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\",\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BgV5A292kaebPA5KYLW4AHB0GjKgl\",\"object\":\"chat.completion.chunk\",\"created\":1749468956,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_07871e2ad8\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\" wereld\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BgV5A292kaebPA5KYLW4AHB0GjKgl\",\"object\":\"chat.completion.chunk\",\"created\":1749468956,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_07871e2ad8\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"!\\\"\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BgV5A292kaebPA5KYLW4AHB0GjKgl\",\"object\":\"chat.completion.chunk\",\"created\":1749468956,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_07871e2ad8\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"}]\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BgV5A292kaebPA5KYLW4AHB0GjKgl\",\"object\":\"chat.completion.chunk\",\"created\":1749468956,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_07871e2ad8\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"}}\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BgV5A292kaebPA5KYLW4AHB0GjKgl\",\"object\":\"chat.completion.chunk\",\"created\":1749468956,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_07871e2ad8\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"]}\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BgV5A292kaebPA5KYLW4AHB0GjKgl\",\"object\":\"chat.completion.chunk\",\"created\":1749468956,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_07871e2ad8\",\"choices\":[{\"index\":0,\"delta\":{},\"logprobs\":null,\"finish_reason\":\"stop\"}]}\n\ndata: [DONE]\n\n", - "headers": [] - } -} \ No newline at end of file diff --git a/packages/xl-ai/src/api/formats/json/__snapshots__/json.test.ts/Combined/__msw_snapshots__/openai.chat/gpt-4o-2024-08-06 (streaming)/add and update paragraph_1_ac819658049a539464409126d78b28b9.json b/packages/xl-ai/src/api/formats/json/__snapshots__/json.test.ts/Combined/__msw_snapshots__/openai.chat/gpt-4o-2024-08-06 (streaming)/add and update paragraph_1_ac819658049a539464409126d78b28b9.json new file mode 100644 index 0000000000..8423ab1b7f --- /dev/null +++ b/packages/xl-ai/src/api/formats/json/__snapshots__/json.test.ts/Combined/__msw_snapshots__/openai.chat/gpt-4o-2024-08-06 (streaming)/add and update paragraph_1_ac819658049a539464409126d78b28b9.json @@ -0,0 +1,15 @@ +{ + "request": { + "method": "POST", + "url": "https://localhost:3000/ai?provider=openai&url=https%3A%2F%2Fapi.openai.com%2Fv1%2Fchat%2Fcompletions", + "body": "{\"model\":\"gpt-4o-2024-08-06\",\"temperature\":0,\"messages\":[{\"role\":\"system\",\"content\":\"You're manipulating a text document using JSON blocks. \\n Make sure to follow the json schema provided. When referencing ids they MUST be EXACTLY the same (including the trailing $). \\n This is the document as an array of JSON blocks (the cursor is BETWEEN two blocks as indicated by cursor: true):\"},{\"role\":\"system\",\"content\":\"[{\\\"id\\\":\\\"ref1$\\\",\\\"block\\\":{\\\"id\\\":\\\"ref1\\\",\\\"type\\\":\\\"paragraph\\\",\\\"props\\\":{\\\"textColor\\\":\\\"default\\\",\\\"backgroundColor\\\":\\\"default\\\",\\\"textAlignment\\\":\\\"left\\\"},\\\"content\\\":[{\\\"type\\\":\\\"text\\\",\\\"text\\\":\\\"Hello, world!\\\",\\\"styles\\\":{}}]}},{\\\"cursor\\\":true},{\\\"id\\\":\\\"ref2$\\\",\\\"block\\\":{\\\"id\\\":\\\"ref2\\\",\\\"type\\\":\\\"paragraph\\\",\\\"props\\\":{\\\"textColor\\\":\\\"default\\\",\\\"backgroundColor\\\":\\\"default\\\",\\\"textAlignment\\\":\\\"left\\\"},\\\"content\\\":[{\\\"type\\\":\\\"text\\\",\\\"text\\\":\\\"Hello, \\\",\\\"styles\\\":{}},{\\\"type\\\":\\\"mention\\\",\\\"props\\\":{\\\"user\\\":\\\"John Doe\\\"}},{\\\"type\\\":\\\"text\\\",\\\"text\\\":\\\"! \\\",\\\"styles\\\":{}},{\\\"type\\\":\\\"text\\\",\\\"text\\\":\\\"How are you doing?\\\",\\\"styles\\\":{\\\"bold\\\":true}},{\\\"type\\\":\\\"text\\\",\\\"text\\\":\\\" \\\",\\\"styles\\\":{}},{\\\"type\\\":\\\"text\\\",\\\"text\\\":\\\"This text is blue!\\\",\\\"styles\\\":{\\\"textColor\\\":\\\"blue\\\"}}]}},{\\\"id\\\":\\\"ref3$\\\",\\\"block\\\":{\\\"id\\\":\\\"ref3\\\",\\\"type\\\":\\\"paragraph\\\",\\\"props\\\":{\\\"textColor\\\":\\\"default\\\",\\\"backgroundColor\\\":\\\"default\\\",\\\"textAlignment\\\":\\\"left\\\"},\\\"content\\\":[{\\\"type\\\":\\\"text\\\",\\\"text\\\":\\\"Hello, world! \\\",\\\"styles\\\":{}},{\\\"type\\\":\\\"text\\\",\\\"text\\\":\\\"Bold text. \\\",\\\"styles\\\":{\\\"bold\\\":true}},{\\\"type\\\":\\\"link\\\",\\\"href\\\":\\\"https://www.google.com\\\",\\\"content\\\":[{\\\"type\\\":\\\"text\\\",\\\"text\\\":\\\"Link.\\\",\\\"styles\\\":{}}]}]}}]\"},{\"role\":\"system\",\"content\":\"The user asks you to do the following:\"},{\"role\":\"user\",\"content\":\"add a new paragraph with the text 'You look great today!' after the first paragraph and translate 'Hello, world' to dutch\"},{\"role\":\"system\",\"content\":\"First, determine what part of the document the user is talking about. You SHOULD probably take cursor info into account if needed.\\n EXAMPLE: if user says \\\"below\\\" (without pointing to a specific part of the document) he / she probably indicates the block(s) after the cursor. \\n EXAMPLE: If you want to insert content AT the cursor position (UNLESS indicated otherwise by the user), then you need `referenceId` to point to the block before the cursor with position `after` (or block below and `before`).\\n \\n Prefer updating existing blocks over removing and adding (but this also depends on the user's question).\"}],\"tool_choice\":{\"type\":\"function\",\"function\":{\"name\":\"json\"}},\"tools\":[{\"type\":\"function\",\"function\":{\"name\":\"json\",\"description\":\"Respond with a JSON object.\",\"parameters\":{\"type\":\"object\",\"properties\":{\"operations\":{\"type\":\"array\",\"items\":{\"anyOf\":[{\"type\":\"object\",\"description\":\"Update a block, the new block will replace the existing block.\",\"properties\":{\"type\":{\"type\":\"string\",\"enum\":[\"update\"]},\"id\":{\"type\":\"string\",\"description\":\"id of block to update\"},\"block\":{\"$ref\":\"#/$defs/block\"}},\"required\":[\"type\",\"id\",\"block\"],\"additionalProperties\":false},{\"type\":\"object\",\"description\":\"Insert new blocks\",\"properties\":{\"type\":{\"type\":\"string\",\"enum\":[\"add\"]},\"referenceId\":{\"type\":\"string\",\"description\":\"MUST be an id of a block in the document\"},\"position\":{\"type\":\"string\",\"enum\":[\"before\",\"after\"],\"description\":\"`after` to add blocks AFTER (below) the block with `referenceId`, `before` to add the block BEFORE (above)\"},\"blocks\":{\"items\":{\"$ref\":\"#/$defs/block\"},\"type\":\"array\"}},\"required\":[\"type\",\"referenceId\",\"position\",\"blocks\"],\"additionalProperties\":false},{\"type\":\"object\",\"description\":\"Delete a block\",\"properties\":{\"type\":{\"type\":\"string\",\"enum\":[\"delete\"]},\"id\":{\"type\":\"string\",\"description\":\"id of block to delete\"}},\"required\":[\"type\",\"id\"],\"additionalProperties\":false}]}}},\"additionalProperties\":false,\"required\":[\"operations\"],\"$defs\":{\"styles\":{\"type\":\"object\",\"properties\":{\"bold\":{\"type\":\"boolean\"},\"italic\":{\"type\":\"boolean\"},\"underline\":{\"type\":\"boolean\"},\"strike\":{\"type\":\"boolean\"},\"code\":{\"type\":\"boolean\"},\"textColor\":{\"type\":\"string\"},\"backgroundColor\":{\"type\":\"string\"}},\"additionalProperties\":false},\"styledtext\":{\"type\":\"object\",\"properties\":{\"type\":{\"type\":\"string\",\"enum\":[\"text\"]},\"text\":{\"type\":\"string\"},\"styles\":{\"$ref\":\"#/$defs/styles\"}},\"additionalProperties\":false,\"required\":[\"type\",\"text\"]},\"inlinecontent\":{\"type\":\"array\",\"items\":{\"anyOf\":[{\"type\":\"object\",\"properties\":{\"type\":{\"type\":\"string\",\"enum\":[\"mention\"]},\"props\":{\"type\":\"object\",\"properties\":{\"user\":{\"type\":\"string\"}},\"additionalProperties\":false}},\"additionalProperties\":false,\"required\":[\"type\"]},{\"$ref\":\"#/$defs/styledtext\"},{\"type\":\"object\",\"properties\":{\"type\":{\"type\":\"string\",\"enum\":[\"link\"]},\"content\":{\"type\":\"array\",\"items\":{\"$ref\":\"#/$defs/styledtext\"}},\"href\":{\"type\":\"string\"}},\"additionalProperties\":false,\"required\":[\"type\",\"href\",\"content\"]}]}},\"block\":{\"anyOf\":[{\"type\":\"object\",\"properties\":{\"type\":{\"type\":\"string\",\"enum\":[\"paragraph\",\"quote\",\"toggleListItem\",\"bulletListItem\",\"numberedListItem\"]},\"content\":{\"$ref\":\"#/$defs/inlinecontent\"},\"props\":{\"type\":\"object\",\"properties\":{},\"additionalProperties\":false}},\"additionalProperties\":false,\"required\":[\"type\"]},{\"type\":\"object\",\"properties\":{\"type\":{\"type\":\"string\",\"enum\":[\"heading\"]},\"content\":{\"$ref\":\"#/$defs/inlinecontent\"},\"props\":{\"type\":\"object\",\"properties\":{\"level\":{\"type\":\"number\",\"enum\":[1,2,3]},\"isTogglable\":{\"type\":\"boolean\"}},\"additionalProperties\":false}},\"additionalProperties\":false,\"required\":[\"type\"]},{\"type\":\"object\",\"properties\":{\"type\":{\"type\":\"string\",\"enum\":[\"codeBlock\"]},\"content\":{\"$ref\":\"#/$defs/inlinecontent\"},\"props\":{\"type\":\"object\",\"properties\":{\"language\":{\"type\":\"string\"}},\"additionalProperties\":false}},\"additionalProperties\":false,\"required\":[\"type\"]},{\"type\":\"object\",\"properties\":{\"type\":{\"type\":\"string\",\"enum\":[\"checkListItem\"]},\"content\":{\"$ref\":\"#/$defs/inlinecontent\"},\"props\":{\"type\":\"object\",\"properties\":{\"checked\":{\"type\":\"boolean\"}},\"additionalProperties\":false}},\"additionalProperties\":false,\"required\":[\"type\"]},{\"type\":\"object\",\"properties\":{\"type\":{\"type\":\"string\",\"enum\":[\"table\"]},\"content\":{\"type\":\"object\",\"properties\":{}},\"props\":{\"type\":\"object\",\"properties\":{},\"additionalProperties\":false}},\"additionalProperties\":false,\"required\":[\"type\"]}]}}}}}],\"stream\":true}", + "headers": [], + "cookies": [] + }, + "response": { + "status": 200, + "statusText": "", + "body": "data: {\"id\":\"chatcmpl-BhXnVna3ca8EnbueFHQ34cEikfxHm\",\"object\":\"chat.completion.chunk\",\"created\":1749717721,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_a288987b44\",\"choices\":[{\"index\":0,\"delta\":{\"role\":\"assistant\",\"content\":null,\"tool_calls\":[{\"index\":0,\"id\":\"call_hpIu09UAgtj6kiKEb99lPxWu\",\"type\":\"function\",\"function\":{\"name\":\"json\",\"arguments\":\"\"}}],\"refusal\":null},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BhXnVna3ca8EnbueFHQ34cEikfxHm\",\"object\":\"chat.completion.chunk\",\"created\":1749717721,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_a288987b44\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"{\\\"\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BhXnVna3ca8EnbueFHQ34cEikfxHm\",\"object\":\"chat.completion.chunk\",\"created\":1749717721,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_a288987b44\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"operations\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BhXnVna3ca8EnbueFHQ34cEikfxHm\",\"object\":\"chat.completion.chunk\",\"created\":1749717721,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_a288987b44\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"\\\":[\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BhXnVna3ca8EnbueFHQ34cEikfxHm\",\"object\":\"chat.completion.chunk\",\"created\":1749717721,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_a288987b44\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"{\\\"\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BhXnVna3ca8EnbueFHQ34cEikfxHm\",\"object\":\"chat.completion.chunk\",\"created\":1749717721,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_a288987b44\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"type\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BhXnVna3ca8EnbueFHQ34cEikfxHm\",\"object\":\"chat.completion.chunk\",\"created\":1749717721,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_a288987b44\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"\\\":\\\"\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BhXnVna3ca8EnbueFHQ34cEikfxHm\",\"object\":\"chat.completion.chunk\",\"created\":1749717721,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_a288987b44\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"add\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BhXnVna3ca8EnbueFHQ34cEikfxHm\",\"object\":\"chat.completion.chunk\",\"created\":1749717721,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_a288987b44\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"\\\",\\\"\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BhXnVna3ca8EnbueFHQ34cEikfxHm\",\"object\":\"chat.completion.chunk\",\"created\":1749717721,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_a288987b44\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"reference\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BhXnVna3ca8EnbueFHQ34cEikfxHm\",\"object\":\"chat.completion.chunk\",\"created\":1749717721,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_a288987b44\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"Id\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BhXnVna3ca8EnbueFHQ34cEikfxHm\",\"object\":\"chat.completion.chunk\",\"created\":1749717721,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_a288987b44\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"\\\":\\\"\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BhXnVna3ca8EnbueFHQ34cEikfxHm\",\"object\":\"chat.completion.chunk\",\"created\":1749717721,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_a288987b44\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"ref\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BhXnVna3ca8EnbueFHQ34cEikfxHm\",\"object\":\"chat.completion.chunk\",\"created\":1749717721,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_a288987b44\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"1\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BhXnVna3ca8EnbueFHQ34cEikfxHm\",\"object\":\"chat.completion.chunk\",\"created\":1749717721,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_a288987b44\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"$\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BhXnVna3ca8EnbueFHQ34cEikfxHm\",\"object\":\"chat.completion.chunk\",\"created\":1749717721,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_a288987b44\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"\\\",\\\"\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BhXnVna3ca8EnbueFHQ34cEikfxHm\",\"object\":\"chat.completion.chunk\",\"created\":1749717721,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_a288987b44\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"position\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BhXnVna3ca8EnbueFHQ34cEikfxHm\",\"object\":\"chat.completion.chunk\",\"created\":1749717721,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_a288987b44\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"\\\":\\\"\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BhXnVna3ca8EnbueFHQ34cEikfxHm\",\"object\":\"chat.completion.chunk\",\"created\":1749717721,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_a288987b44\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"after\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BhXnVna3ca8EnbueFHQ34cEikfxHm\",\"object\":\"chat.completion.chunk\",\"created\":1749717721,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_a288987b44\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"\\\",\\\"\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BhXnVna3ca8EnbueFHQ34cEikfxHm\",\"object\":\"chat.completion.chunk\",\"created\":1749717721,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_a288987b44\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"blocks\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BhXnVna3ca8EnbueFHQ34cEikfxHm\",\"object\":\"chat.completion.chunk\",\"created\":1749717721,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_a288987b44\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"\\\":[\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BhXnVna3ca8EnbueFHQ34cEikfxHm\",\"object\":\"chat.completion.chunk\",\"created\":1749717721,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_a288987b44\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"{\\\"\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BhXnVna3ca8EnbueFHQ34cEikfxHm\",\"object\":\"chat.completion.chunk\",\"created\":1749717721,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_a288987b44\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"type\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BhXnVna3ca8EnbueFHQ34cEikfxHm\",\"object\":\"chat.completion.chunk\",\"created\":1749717721,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_a288987b44\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"\\\":\\\"\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BhXnVna3ca8EnbueFHQ34cEikfxHm\",\"object\":\"chat.completion.chunk\",\"created\":1749717721,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_a288987b44\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"paragraph\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BhXnVna3ca8EnbueFHQ34cEikfxHm\",\"object\":\"chat.completion.chunk\",\"created\":1749717721,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_a288987b44\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"\\\",\\\"\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BhXnVna3ca8EnbueFHQ34cEikfxHm\",\"object\":\"chat.completion.chunk\",\"created\":1749717721,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_a288987b44\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"content\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BhXnVna3ca8EnbueFHQ34cEikfxHm\",\"object\":\"chat.completion.chunk\",\"created\":1749717721,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_a288987b44\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"\\\":[\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BhXnVna3ca8EnbueFHQ34cEikfxHm\",\"object\":\"chat.completion.chunk\",\"created\":1749717721,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_a288987b44\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"{\\\"\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BhXnVna3ca8EnbueFHQ34cEikfxHm\",\"object\":\"chat.completion.chunk\",\"created\":1749717721,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_a288987b44\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"type\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BhXnVna3ca8EnbueFHQ34cEikfxHm\",\"object\":\"chat.completion.chunk\",\"created\":1749717721,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_a288987b44\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"\\\":\\\"\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BhXnVna3ca8EnbueFHQ34cEikfxHm\",\"object\":\"chat.completion.chunk\",\"created\":1749717721,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_a288987b44\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"text\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BhXnVna3ca8EnbueFHQ34cEikfxHm\",\"object\":\"chat.completion.chunk\",\"created\":1749717721,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_a288987b44\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"\\\",\\\"\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BhXnVna3ca8EnbueFHQ34cEikfxHm\",\"object\":\"chat.completion.chunk\",\"created\":1749717721,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_a288987b44\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"text\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BhXnVna3ca8EnbueFHQ34cEikfxHm\",\"object\":\"chat.completion.chunk\",\"created\":1749717721,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_a288987b44\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"\\\":\\\"\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BhXnVna3ca8EnbueFHQ34cEikfxHm\",\"object\":\"chat.completion.chunk\",\"created\":1749717721,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_a288987b44\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"You\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BhXnVna3ca8EnbueFHQ34cEikfxHm\",\"object\":\"chat.completion.chunk\",\"created\":1749717721,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_a288987b44\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\" look\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BhXnVna3ca8EnbueFHQ34cEikfxHm\",\"object\":\"chat.completion.chunk\",\"created\":1749717721,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_a288987b44\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\" great\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BhXnVna3ca8EnbueFHQ34cEikfxHm\",\"object\":\"chat.completion.chunk\",\"created\":1749717721,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_a288987b44\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\" today\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BhXnVna3ca8EnbueFHQ34cEikfxHm\",\"object\":\"chat.completion.chunk\",\"created\":1749717721,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_a288987b44\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"!\\\"\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BhXnVna3ca8EnbueFHQ34cEikfxHm\",\"object\":\"chat.completion.chunk\",\"created\":1749717721,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_a288987b44\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"}\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BhXnVna3ca8EnbueFHQ34cEikfxHm\",\"object\":\"chat.completion.chunk\",\"created\":1749717721,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_a288987b44\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"]}\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BhXnVna3ca8EnbueFHQ34cEikfxHm\",\"object\":\"chat.completion.chunk\",\"created\":1749717721,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_a288987b44\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"]\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BhXnVna3ca8EnbueFHQ34cEikfxHm\",\"object\":\"chat.completion.chunk\",\"created\":1749717721,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_a288987b44\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"},{\\\"\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BhXnVna3ca8EnbueFHQ34cEikfxHm\",\"object\":\"chat.completion.chunk\",\"created\":1749717721,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_a288987b44\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"type\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BhXnVna3ca8EnbueFHQ34cEikfxHm\",\"object\":\"chat.completion.chunk\",\"created\":1749717721,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_a288987b44\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"\\\":\\\"\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BhXnVna3ca8EnbueFHQ34cEikfxHm\",\"object\":\"chat.completion.chunk\",\"created\":1749717721,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_a288987b44\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"update\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BhXnVna3ca8EnbueFHQ34cEikfxHm\",\"object\":\"chat.completion.chunk\",\"created\":1749717721,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_a288987b44\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"\\\",\\\"\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BhXnVna3ca8EnbueFHQ34cEikfxHm\",\"object\":\"chat.completion.chunk\",\"created\":1749717721,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_a288987b44\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"id\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BhXnVna3ca8EnbueFHQ34cEikfxHm\",\"object\":\"chat.completion.chunk\",\"created\":1749717721,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_a288987b44\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"\\\":\\\"\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BhXnVna3ca8EnbueFHQ34cEikfxHm\",\"object\":\"chat.completion.chunk\",\"created\":1749717721,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_a288987b44\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"ref\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BhXnVna3ca8EnbueFHQ34cEikfxHm\",\"object\":\"chat.completion.chunk\",\"created\":1749717721,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_a288987b44\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"1\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BhXnVna3ca8EnbueFHQ34cEikfxHm\",\"object\":\"chat.completion.chunk\",\"created\":1749717721,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_a288987b44\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"$\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BhXnVna3ca8EnbueFHQ34cEikfxHm\",\"object\":\"chat.completion.chunk\",\"created\":1749717721,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_a288987b44\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"\\\",\\\"\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BhXnVna3ca8EnbueFHQ34cEikfxHm\",\"object\":\"chat.completion.chunk\",\"created\":1749717721,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_a288987b44\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"block\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BhXnVna3ca8EnbueFHQ34cEikfxHm\",\"object\":\"chat.completion.chunk\",\"created\":1749717721,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_a288987b44\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"\\\":{\\\"\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BhXnVna3ca8EnbueFHQ34cEikfxHm\",\"object\":\"chat.completion.chunk\",\"created\":1749717721,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_a288987b44\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"type\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BhXnVna3ca8EnbueFHQ34cEikfxHm\",\"object\":\"chat.completion.chunk\",\"created\":1749717721,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_a288987b44\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"\\\":\\\"\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BhXnVna3ca8EnbueFHQ34cEikfxHm\",\"object\":\"chat.completion.chunk\",\"created\":1749717721,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_a288987b44\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"paragraph\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BhXnVna3ca8EnbueFHQ34cEikfxHm\",\"object\":\"chat.completion.chunk\",\"created\":1749717721,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_a288987b44\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"\\\",\\\"\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BhXnVna3ca8EnbueFHQ34cEikfxHm\",\"object\":\"chat.completion.chunk\",\"created\":1749717721,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_a288987b44\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"content\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BhXnVna3ca8EnbueFHQ34cEikfxHm\",\"object\":\"chat.completion.chunk\",\"created\":1749717721,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_a288987b44\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"\\\":[\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BhXnVna3ca8EnbueFHQ34cEikfxHm\",\"object\":\"chat.completion.chunk\",\"created\":1749717721,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_a288987b44\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"{\\\"\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BhXnVna3ca8EnbueFHQ34cEikfxHm\",\"object\":\"chat.completion.chunk\",\"created\":1749717721,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_a288987b44\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"type\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BhXnVna3ca8EnbueFHQ34cEikfxHm\",\"object\":\"chat.completion.chunk\",\"created\":1749717721,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_a288987b44\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"\\\":\\\"\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BhXnVna3ca8EnbueFHQ34cEikfxHm\",\"object\":\"chat.completion.chunk\",\"created\":1749717721,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_a288987b44\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"text\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BhXnVna3ca8EnbueFHQ34cEikfxHm\",\"object\":\"chat.completion.chunk\",\"created\":1749717721,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_a288987b44\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"\\\",\\\"\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BhXnVna3ca8EnbueFHQ34cEikfxHm\",\"object\":\"chat.completion.chunk\",\"created\":1749717721,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_a288987b44\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"text\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BhXnVna3ca8EnbueFHQ34cEikfxHm\",\"object\":\"chat.completion.chunk\",\"created\":1749717721,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_a288987b44\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"\\\":\\\"\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BhXnVna3ca8EnbueFHQ34cEikfxHm\",\"object\":\"chat.completion.chunk\",\"created\":1749717721,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_a288987b44\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"Hallo\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BhXnVna3ca8EnbueFHQ34cEikfxHm\",\"object\":\"chat.completion.chunk\",\"created\":1749717721,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_a288987b44\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\",\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BhXnVna3ca8EnbueFHQ34cEikfxHm\",\"object\":\"chat.completion.chunk\",\"created\":1749717721,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_a288987b44\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\" wereld\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BhXnVna3ca8EnbueFHQ34cEikfxHm\",\"object\":\"chat.completion.chunk\",\"created\":1749717721,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_a288987b44\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"!\\\"\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BhXnVna3ca8EnbueFHQ34cEikfxHm\",\"object\":\"chat.completion.chunk\",\"created\":1749717721,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_a288987b44\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"}]\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BhXnVna3ca8EnbueFHQ34cEikfxHm\",\"object\":\"chat.completion.chunk\",\"created\":1749717721,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_a288987b44\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"}}\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BhXnVna3ca8EnbueFHQ34cEikfxHm\",\"object\":\"chat.completion.chunk\",\"created\":1749717721,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_a288987b44\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"]}\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BhXnVna3ca8EnbueFHQ34cEikfxHm\",\"object\":\"chat.completion.chunk\",\"created\":1749717721,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_a288987b44\",\"choices\":[{\"index\":0,\"delta\":{},\"logprobs\":null,\"finish_reason\":\"stop\"}]}\n\ndata: [DONE]\n\n", + "headers": [] + } +} \ No newline at end of file diff --git a/packages/xl-ai/src/api/formats/json/__snapshots__/json.test.ts/Combined/__msw_snapshots__/openai.chat/gpt-4o-2024-08-06 (streaming)/add paragraph and update selection_1_8092e1583e60700c3cff810383dbf5ad.json b/packages/xl-ai/src/api/formats/json/__snapshots__/json.test.ts/Combined/__msw_snapshots__/openai.chat/gpt-4o-2024-08-06 (streaming)/add paragraph and update selection_1_8092e1583e60700c3cff810383dbf5ad.json new file mode 100644 index 0000000000..b9a7578ba9 --- /dev/null +++ b/packages/xl-ai/src/api/formats/json/__snapshots__/json.test.ts/Combined/__msw_snapshots__/openai.chat/gpt-4o-2024-08-06 (streaming)/add paragraph and update selection_1_8092e1583e60700c3cff810383dbf5ad.json @@ -0,0 +1,15 @@ +{ + "request": { + "method": "POST", + "url": "https://localhost:3000/ai?provider=openai&url=https%3A%2F%2Fapi.openai.com%2Fv1%2Fchat%2Fcompletions", + "body": "{\"model\":\"gpt-4o-2024-08-06\",\"temperature\":0,\"messages\":[{\"role\":\"system\",\"content\":\"You're manipulating a selected part of a text document using JSON blocks. \\n Make sure to follow the json schema provided and always include the trailing $ in ids. \\n This is the selection as an array of JSON blocks:\"},{\"role\":\"system\",\"content\":\"[{\\\"id\\\":\\\"ref2$\\\",\\\"block\\\":{\\\"id\\\":\\\"ref2\\\",\\\"type\\\":\\\"paragraph\\\",\\\"props\\\":{\\\"textColor\\\":\\\"default\\\",\\\"backgroundColor\\\":\\\"default\\\",\\\"textAlignment\\\":\\\"left\\\"},\\\"content\\\":[{\\\"type\\\":\\\"text\\\",\\\"text\\\":\\\"Hello\\\",\\\"styles\\\":{}}],\\\"children\\\":[]}}]\"},{\"role\":\"system\",\"content\":\"This is the entire document (INCLUDING the selected text), find the selected text in there to understand the context:\"},{\"role\":\"system\",\"content\":\"[{\\\"block\\\":{\\\"type\\\":\\\"paragraph\\\",\\\"props\\\":{\\\"textColor\\\":\\\"default\\\",\\\"backgroundColor\\\":\\\"default\\\",\\\"textAlignment\\\":\\\"left\\\"},\\\"content\\\":[{\\\"type\\\":\\\"text\\\",\\\"text\\\":\\\"Hello, world!\\\",\\\"styles\\\":{}}]}},{\\\"block\\\":{\\\"type\\\":\\\"paragraph\\\",\\\"props\\\":{\\\"textColor\\\":\\\"default\\\",\\\"backgroundColor\\\":\\\"default\\\",\\\"textAlignment\\\":\\\"left\\\"},\\\"content\\\":[{\\\"type\\\":\\\"text\\\",\\\"text\\\":\\\"Hello, \\\",\\\"styles\\\":{}},{\\\"type\\\":\\\"mention\\\",\\\"props\\\":{\\\"user\\\":\\\"John Doe\\\"}},{\\\"type\\\":\\\"text\\\",\\\"text\\\":\\\"! \\\",\\\"styles\\\":{}},{\\\"type\\\":\\\"text\\\",\\\"text\\\":\\\"How are you doing?\\\",\\\"styles\\\":{\\\"bold\\\":true}},{\\\"type\\\":\\\"text\\\",\\\"text\\\":\\\" \\\",\\\"styles\\\":{}},{\\\"type\\\":\\\"text\\\",\\\"text\\\":\\\"This text is blue!\\\",\\\"styles\\\":{\\\"textColor\\\":\\\"blue\\\"}}]}},{\\\"block\\\":{\\\"type\\\":\\\"paragraph\\\",\\\"props\\\":{\\\"textColor\\\":\\\"default\\\",\\\"backgroundColor\\\":\\\"default\\\",\\\"textAlignment\\\":\\\"left\\\"},\\\"content\\\":[{\\\"type\\\":\\\"text\\\",\\\"text\\\":\\\"Hello, world! \\\",\\\"styles\\\":{}},{\\\"type\\\":\\\"text\\\",\\\"text\\\":\\\"Bold text. \\\",\\\"styles\\\":{\\\"bold\\\":true}},{\\\"type\\\":\\\"link\\\",\\\"href\\\":\\\"https://www.google.com\\\",\\\"content\\\":[{\\\"type\\\":\\\"text\\\",\\\"text\\\":\\\"Link.\\\",\\\"styles\\\":{}}]}]}}]\"},{\"role\":\"system\",\"content\":\"The user asks you to do the following:\"},{\"role\":\"user\",\"content\":\"add a paragraph with the text 'You look great today!' at the beginning and translate selection to German\"}],\"tool_choice\":{\"type\":\"function\",\"function\":{\"name\":\"json\"}},\"tools\":[{\"type\":\"function\",\"function\":{\"name\":\"json\",\"description\":\"Respond with a JSON object.\",\"parameters\":{\"type\":\"object\",\"properties\":{\"operations\":{\"type\":\"array\",\"items\":{\"anyOf\":[{\"type\":\"object\",\"description\":\"Update a block, the new block will replace the existing block.\",\"properties\":{\"type\":{\"type\":\"string\",\"enum\":[\"update\"]},\"id\":{\"type\":\"string\",\"description\":\"id of block to update\"},\"block\":{\"$ref\":\"#/$defs/block\"}},\"required\":[\"type\",\"id\",\"block\"],\"additionalProperties\":false},{\"type\":\"object\",\"description\":\"Insert new blocks\",\"properties\":{\"type\":{\"type\":\"string\",\"enum\":[\"add\"]},\"referenceId\":{\"type\":\"string\",\"description\":\"MUST be an id of a block in the document\"},\"position\":{\"type\":\"string\",\"enum\":[\"before\",\"after\"],\"description\":\"`after` to add blocks AFTER (below) the block with `referenceId`, `before` to add the block BEFORE (above)\"},\"blocks\":{\"items\":{\"$ref\":\"#/$defs/block\"},\"type\":\"array\"}},\"required\":[\"type\",\"referenceId\",\"position\",\"blocks\"],\"additionalProperties\":false},{\"type\":\"object\",\"description\":\"Delete a block\",\"properties\":{\"type\":{\"type\":\"string\",\"enum\":[\"delete\"]},\"id\":{\"type\":\"string\",\"description\":\"id of block to delete\"}},\"required\":[\"type\",\"id\"],\"additionalProperties\":false}]}}},\"additionalProperties\":false,\"required\":[\"operations\"],\"$defs\":{\"styles\":{\"type\":\"object\",\"properties\":{\"bold\":{\"type\":\"boolean\"},\"italic\":{\"type\":\"boolean\"},\"underline\":{\"type\":\"boolean\"},\"strike\":{\"type\":\"boolean\"},\"code\":{\"type\":\"boolean\"},\"textColor\":{\"type\":\"string\"},\"backgroundColor\":{\"type\":\"string\"}},\"additionalProperties\":false},\"styledtext\":{\"type\":\"object\",\"properties\":{\"type\":{\"type\":\"string\",\"enum\":[\"text\"]},\"text\":{\"type\":\"string\"},\"styles\":{\"$ref\":\"#/$defs/styles\"}},\"additionalProperties\":false,\"required\":[\"type\",\"text\"]},\"inlinecontent\":{\"type\":\"array\",\"items\":{\"anyOf\":[{\"type\":\"object\",\"properties\":{\"type\":{\"type\":\"string\",\"enum\":[\"mention\"]},\"props\":{\"type\":\"object\",\"properties\":{\"user\":{\"type\":\"string\"}},\"additionalProperties\":false}},\"additionalProperties\":false,\"required\":[\"type\"]},{\"$ref\":\"#/$defs/styledtext\"},{\"type\":\"object\",\"properties\":{\"type\":{\"type\":\"string\",\"enum\":[\"link\"]},\"content\":{\"type\":\"array\",\"items\":{\"$ref\":\"#/$defs/styledtext\"}},\"href\":{\"type\":\"string\"}},\"additionalProperties\":false,\"required\":[\"type\",\"href\",\"content\"]}]}},\"block\":{\"anyOf\":[{\"type\":\"object\",\"properties\":{\"type\":{\"type\":\"string\",\"enum\":[\"paragraph\",\"quote\",\"toggleListItem\",\"bulletListItem\",\"numberedListItem\"]},\"content\":{\"$ref\":\"#/$defs/inlinecontent\"},\"props\":{\"type\":\"object\",\"properties\":{},\"additionalProperties\":false}},\"additionalProperties\":false,\"required\":[\"type\"]},{\"type\":\"object\",\"properties\":{\"type\":{\"type\":\"string\",\"enum\":[\"heading\"]},\"content\":{\"$ref\":\"#/$defs/inlinecontent\"},\"props\":{\"type\":\"object\",\"properties\":{\"level\":{\"type\":\"number\",\"enum\":[1,2,3]},\"isTogglable\":{\"type\":\"boolean\"}},\"additionalProperties\":false}},\"additionalProperties\":false,\"required\":[\"type\"]},{\"type\":\"object\",\"properties\":{\"type\":{\"type\":\"string\",\"enum\":[\"codeBlock\"]},\"content\":{\"$ref\":\"#/$defs/inlinecontent\"},\"props\":{\"type\":\"object\",\"properties\":{\"language\":{\"type\":\"string\"}},\"additionalProperties\":false}},\"additionalProperties\":false,\"required\":[\"type\"]},{\"type\":\"object\",\"properties\":{\"type\":{\"type\":\"string\",\"enum\":[\"checkListItem\"]},\"content\":{\"$ref\":\"#/$defs/inlinecontent\"},\"props\":{\"type\":\"object\",\"properties\":{\"checked\":{\"type\":\"boolean\"}},\"additionalProperties\":false}},\"additionalProperties\":false,\"required\":[\"type\"]},{\"type\":\"object\",\"properties\":{\"type\":{\"type\":\"string\",\"enum\":[\"table\"]},\"content\":{\"type\":\"object\",\"properties\":{}},\"props\":{\"type\":\"object\",\"properties\":{},\"additionalProperties\":false}},\"additionalProperties\":false,\"required\":[\"type\"]}]}}}}}],\"stream\":true}", + "headers": [], + "cookies": [] + }, + "response": { + "status": 200, + "statusText": "", + "body": "data: {\"id\":\"chatcmpl-BhXnW1glBOGjIDR0XYySg7ow1GKOX\",\"object\":\"chat.completion.chunk\",\"created\":1749717722,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_07871e2ad8\",\"choices\":[{\"index\":0,\"delta\":{\"role\":\"assistant\",\"content\":null,\"tool_calls\":[{\"index\":0,\"id\":\"call_pH2HZ5653kmyCd6QbCvU6594\",\"type\":\"function\",\"function\":{\"name\":\"json\",\"arguments\":\"\"}}],\"refusal\":null},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BhXnW1glBOGjIDR0XYySg7ow1GKOX\",\"object\":\"chat.completion.chunk\",\"created\":1749717722,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_07871e2ad8\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"{\\\"\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BhXnW1glBOGjIDR0XYySg7ow1GKOX\",\"object\":\"chat.completion.chunk\",\"created\":1749717722,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_07871e2ad8\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"operations\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BhXnW1glBOGjIDR0XYySg7ow1GKOX\",\"object\":\"chat.completion.chunk\",\"created\":1749717722,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_07871e2ad8\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"\\\":[\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BhXnW1glBOGjIDR0XYySg7ow1GKOX\",\"object\":\"chat.completion.chunk\",\"created\":1749717722,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_07871e2ad8\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"{\\\"\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BhXnW1glBOGjIDR0XYySg7ow1GKOX\",\"object\":\"chat.completion.chunk\",\"created\":1749717722,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_07871e2ad8\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"type\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BhXnW1glBOGjIDR0XYySg7ow1GKOX\",\"object\":\"chat.completion.chunk\",\"created\":1749717722,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_07871e2ad8\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"\\\":\\\"\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BhXnW1glBOGjIDR0XYySg7ow1GKOX\",\"object\":\"chat.completion.chunk\",\"created\":1749717722,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_07871e2ad8\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"add\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BhXnW1glBOGjIDR0XYySg7ow1GKOX\",\"object\":\"chat.completion.chunk\",\"created\":1749717722,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_07871e2ad8\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"\\\",\\\"\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BhXnW1glBOGjIDR0XYySg7ow1GKOX\",\"object\":\"chat.completion.chunk\",\"created\":1749717722,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_07871e2ad8\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"reference\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BhXnW1glBOGjIDR0XYySg7ow1GKOX\",\"object\":\"chat.completion.chunk\",\"created\":1749717722,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_07871e2ad8\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"Id\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BhXnW1glBOGjIDR0XYySg7ow1GKOX\",\"object\":\"chat.completion.chunk\",\"created\":1749717722,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_07871e2ad8\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"\\\":\\\"\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BhXnW1glBOGjIDR0XYySg7ow1GKOX\",\"object\":\"chat.completion.chunk\",\"created\":1749717722,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_07871e2ad8\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"ref\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BhXnW1glBOGjIDR0XYySg7ow1GKOX\",\"object\":\"chat.completion.chunk\",\"created\":1749717722,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_07871e2ad8\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"2\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BhXnW1glBOGjIDR0XYySg7ow1GKOX\",\"object\":\"chat.completion.chunk\",\"created\":1749717722,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_07871e2ad8\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"$\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BhXnW1glBOGjIDR0XYySg7ow1GKOX\",\"object\":\"chat.completion.chunk\",\"created\":1749717722,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_07871e2ad8\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"\\\",\\\"\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BhXnW1glBOGjIDR0XYySg7ow1GKOX\",\"object\":\"chat.completion.chunk\",\"created\":1749717722,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_07871e2ad8\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"position\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BhXnW1glBOGjIDR0XYySg7ow1GKOX\",\"object\":\"chat.completion.chunk\",\"created\":1749717722,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_07871e2ad8\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"\\\":\\\"\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BhXnW1glBOGjIDR0XYySg7ow1GKOX\",\"object\":\"chat.completion.chunk\",\"created\":1749717722,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_07871e2ad8\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"before\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BhXnW1glBOGjIDR0XYySg7ow1GKOX\",\"object\":\"chat.completion.chunk\",\"created\":1749717722,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_07871e2ad8\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"\\\",\\\"\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BhXnW1glBOGjIDR0XYySg7ow1GKOX\",\"object\":\"chat.completion.chunk\",\"created\":1749717722,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_07871e2ad8\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"blocks\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BhXnW1glBOGjIDR0XYySg7ow1GKOX\",\"object\":\"chat.completion.chunk\",\"created\":1749717722,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_07871e2ad8\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"\\\":[\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BhXnW1glBOGjIDR0XYySg7ow1GKOX\",\"object\":\"chat.completion.chunk\",\"created\":1749717722,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_07871e2ad8\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"{\\\"\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BhXnW1glBOGjIDR0XYySg7ow1GKOX\",\"object\":\"chat.completion.chunk\",\"created\":1749717722,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_07871e2ad8\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"type\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BhXnW1glBOGjIDR0XYySg7ow1GKOX\",\"object\":\"chat.completion.chunk\",\"created\":1749717722,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_07871e2ad8\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"\\\":\\\"\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BhXnW1glBOGjIDR0XYySg7ow1GKOX\",\"object\":\"chat.completion.chunk\",\"created\":1749717722,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_07871e2ad8\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"paragraph\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BhXnW1glBOGjIDR0XYySg7ow1GKOX\",\"object\":\"chat.completion.chunk\",\"created\":1749717722,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_07871e2ad8\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"\\\",\\\"\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BhXnW1glBOGjIDR0XYySg7ow1GKOX\",\"object\":\"chat.completion.chunk\",\"created\":1749717722,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_07871e2ad8\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"content\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BhXnW1glBOGjIDR0XYySg7ow1GKOX\",\"object\":\"chat.completion.chunk\",\"created\":1749717722,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_07871e2ad8\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"\\\":[\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BhXnW1glBOGjIDR0XYySg7ow1GKOX\",\"object\":\"chat.completion.chunk\",\"created\":1749717722,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_07871e2ad8\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"{\\\"\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BhXnW1glBOGjIDR0XYySg7ow1GKOX\",\"object\":\"chat.completion.chunk\",\"created\":1749717722,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_07871e2ad8\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"type\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BhXnW1glBOGjIDR0XYySg7ow1GKOX\",\"object\":\"chat.completion.chunk\",\"created\":1749717722,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_07871e2ad8\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"\\\":\\\"\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BhXnW1glBOGjIDR0XYySg7ow1GKOX\",\"object\":\"chat.completion.chunk\",\"created\":1749717722,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_07871e2ad8\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"text\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BhXnW1glBOGjIDR0XYySg7ow1GKOX\",\"object\":\"chat.completion.chunk\",\"created\":1749717722,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_07871e2ad8\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"\\\",\\\"\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BhXnW1glBOGjIDR0XYySg7ow1GKOX\",\"object\":\"chat.completion.chunk\",\"created\":1749717722,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_07871e2ad8\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"text\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BhXnW1glBOGjIDR0XYySg7ow1GKOX\",\"object\":\"chat.completion.chunk\",\"created\":1749717722,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_07871e2ad8\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"\\\":\\\"\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BhXnW1glBOGjIDR0XYySg7ow1GKOX\",\"object\":\"chat.completion.chunk\",\"created\":1749717722,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_07871e2ad8\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"You\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BhXnW1glBOGjIDR0XYySg7ow1GKOX\",\"object\":\"chat.completion.chunk\",\"created\":1749717722,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_07871e2ad8\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\" look\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BhXnW1glBOGjIDR0XYySg7ow1GKOX\",\"object\":\"chat.completion.chunk\",\"created\":1749717722,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_07871e2ad8\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\" great\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BhXnW1glBOGjIDR0XYySg7ow1GKOX\",\"object\":\"chat.completion.chunk\",\"created\":1749717722,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_07871e2ad8\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\" today\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BhXnW1glBOGjIDR0XYySg7ow1GKOX\",\"object\":\"chat.completion.chunk\",\"created\":1749717722,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_07871e2ad8\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"!\\\"\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BhXnW1glBOGjIDR0XYySg7ow1GKOX\",\"object\":\"chat.completion.chunk\",\"created\":1749717722,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_07871e2ad8\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"}\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BhXnW1glBOGjIDR0XYySg7ow1GKOX\",\"object\":\"chat.completion.chunk\",\"created\":1749717722,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_07871e2ad8\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"]}\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BhXnW1glBOGjIDR0XYySg7ow1GKOX\",\"object\":\"chat.completion.chunk\",\"created\":1749717722,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_07871e2ad8\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"]\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BhXnW1glBOGjIDR0XYySg7ow1GKOX\",\"object\":\"chat.completion.chunk\",\"created\":1749717722,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_07871e2ad8\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"},{\\\"\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BhXnW1glBOGjIDR0XYySg7ow1GKOX\",\"object\":\"chat.completion.chunk\",\"created\":1749717722,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_07871e2ad8\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"type\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BhXnW1glBOGjIDR0XYySg7ow1GKOX\",\"object\":\"chat.completion.chunk\",\"created\":1749717722,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_07871e2ad8\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"\\\":\\\"\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BhXnW1glBOGjIDR0XYySg7ow1GKOX\",\"object\":\"chat.completion.chunk\",\"created\":1749717722,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_07871e2ad8\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"update\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BhXnW1glBOGjIDR0XYySg7ow1GKOX\",\"object\":\"chat.completion.chunk\",\"created\":1749717722,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_07871e2ad8\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"\\\",\\\"\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BhXnW1glBOGjIDR0XYySg7ow1GKOX\",\"object\":\"chat.completion.chunk\",\"created\":1749717722,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_07871e2ad8\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"id\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BhXnW1glBOGjIDR0XYySg7ow1GKOX\",\"object\":\"chat.completion.chunk\",\"created\":1749717722,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_07871e2ad8\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"\\\":\\\"\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BhXnW1glBOGjIDR0XYySg7ow1GKOX\",\"object\":\"chat.completion.chunk\",\"created\":1749717722,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_07871e2ad8\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"ref\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BhXnW1glBOGjIDR0XYySg7ow1GKOX\",\"object\":\"chat.completion.chunk\",\"created\":1749717722,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_07871e2ad8\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"2\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BhXnW1glBOGjIDR0XYySg7ow1GKOX\",\"object\":\"chat.completion.chunk\",\"created\":1749717722,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_07871e2ad8\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"$\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BhXnW1glBOGjIDR0XYySg7ow1GKOX\",\"object\":\"chat.completion.chunk\",\"created\":1749717722,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_07871e2ad8\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"\\\",\\\"\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BhXnW1glBOGjIDR0XYySg7ow1GKOX\",\"object\":\"chat.completion.chunk\",\"created\":1749717722,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_07871e2ad8\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"block\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BhXnW1glBOGjIDR0XYySg7ow1GKOX\",\"object\":\"chat.completion.chunk\",\"created\":1749717722,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_07871e2ad8\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"\\\":{\\\"\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BhXnW1glBOGjIDR0XYySg7ow1GKOX\",\"object\":\"chat.completion.chunk\",\"created\":1749717722,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_07871e2ad8\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"type\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BhXnW1glBOGjIDR0XYySg7ow1GKOX\",\"object\":\"chat.completion.chunk\",\"created\":1749717722,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_07871e2ad8\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"\\\":\\\"\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BhXnW1glBOGjIDR0XYySg7ow1GKOX\",\"object\":\"chat.completion.chunk\",\"created\":1749717722,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_07871e2ad8\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"paragraph\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BhXnW1glBOGjIDR0XYySg7ow1GKOX\",\"object\":\"chat.completion.chunk\",\"created\":1749717722,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_07871e2ad8\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"\\\",\\\"\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BhXnW1glBOGjIDR0XYySg7ow1GKOX\",\"object\":\"chat.completion.chunk\",\"created\":1749717722,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_07871e2ad8\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"content\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BhXnW1glBOGjIDR0XYySg7ow1GKOX\",\"object\":\"chat.completion.chunk\",\"created\":1749717722,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_07871e2ad8\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"\\\":[\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BhXnW1glBOGjIDR0XYySg7ow1GKOX\",\"object\":\"chat.completion.chunk\",\"created\":1749717722,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_07871e2ad8\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"{\\\"\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BhXnW1glBOGjIDR0XYySg7ow1GKOX\",\"object\":\"chat.completion.chunk\",\"created\":1749717722,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_07871e2ad8\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"type\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BhXnW1glBOGjIDR0XYySg7ow1GKOX\",\"object\":\"chat.completion.chunk\",\"created\":1749717722,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_07871e2ad8\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"\\\":\\\"\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BhXnW1glBOGjIDR0XYySg7ow1GKOX\",\"object\":\"chat.completion.chunk\",\"created\":1749717722,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_07871e2ad8\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"text\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BhXnW1glBOGjIDR0XYySg7ow1GKOX\",\"object\":\"chat.completion.chunk\",\"created\":1749717722,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_07871e2ad8\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"\\\",\\\"\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BhXnW1glBOGjIDR0XYySg7ow1GKOX\",\"object\":\"chat.completion.chunk\",\"created\":1749717722,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_07871e2ad8\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"text\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BhXnW1glBOGjIDR0XYySg7ow1GKOX\",\"object\":\"chat.completion.chunk\",\"created\":1749717722,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_07871e2ad8\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"\\\":\\\"\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BhXnW1glBOGjIDR0XYySg7ow1GKOX\",\"object\":\"chat.completion.chunk\",\"created\":1749717722,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_07871e2ad8\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"Hallo\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BhXnW1glBOGjIDR0XYySg7ow1GKOX\",\"object\":\"chat.completion.chunk\",\"created\":1749717722,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_07871e2ad8\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"\\\"}\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BhXnW1glBOGjIDR0XYySg7ow1GKOX\",\"object\":\"chat.completion.chunk\",\"created\":1749717722,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_07871e2ad8\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"]\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BhXnW1glBOGjIDR0XYySg7ow1GKOX\",\"object\":\"chat.completion.chunk\",\"created\":1749717722,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_07871e2ad8\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"}}\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BhXnW1glBOGjIDR0XYySg7ow1GKOX\",\"object\":\"chat.completion.chunk\",\"created\":1749717722,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_07871e2ad8\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"]}\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BhXnW1glBOGjIDR0XYySg7ow1GKOX\",\"object\":\"chat.completion.chunk\",\"created\":1749717722,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_07871e2ad8\",\"choices\":[{\"index\":0,\"delta\":{},\"logprobs\":null,\"finish_reason\":\"stop\"}]}\n\ndata: [DONE]\n\n", + "headers": [] + } +} \ No newline at end of file diff --git a/packages/xl-ai/src/api/formats/json/__snapshots__/json.test.ts/Combined/__msw_snapshots__/openai.chat/gpt-4o-2024-08-06 (streaming)/add paragraph and update selection_1_d7907adc86da5742363bfc4422e490e6.json b/packages/xl-ai/src/api/formats/json/__snapshots__/json.test.ts/Combined/__msw_snapshots__/openai.chat/gpt-4o-2024-08-06 (streaming)/add paragraph and update selection_1_d7907adc86da5742363bfc4422e490e6.json deleted file mode 100644 index 527ef1d39a..0000000000 --- a/packages/xl-ai/src/api/formats/json/__snapshots__/json.test.ts/Combined/__msw_snapshots__/openai.chat/gpt-4o-2024-08-06 (streaming)/add paragraph and update selection_1_d7907adc86da5742363bfc4422e490e6.json +++ /dev/null @@ -1,15 +0,0 @@ -{ - "request": { - "method": "POST", - "url": "https://localhost:3000/ai?provider=openai&url=https%3A%2F%2Fapi.openai.com%2Fv1%2Fchat%2Fcompletions", - "body": "{\"model\":\"gpt-4o-2024-08-06\",\"temperature\":0,\"messages\":[{\"role\":\"system\",\"content\":\"You're manipulating a selected part of a text document using JSON blocks. \\n Make sure to follow the json schema provided and always include the trailing $ in ids. \\n This is the selection as an array of JSON blocks:\"},{\"role\":\"system\",\"content\":\"[{\\\"id\\\":\\\"ref2$\\\",\\\"block\\\":{\\\"id\\\":\\\"ref2\\\",\\\"type\\\":\\\"paragraph\\\",\\\"props\\\":{\\\"textColor\\\":\\\"default\\\",\\\"backgroundColor\\\":\\\"default\\\",\\\"textAlignment\\\":\\\"left\\\"},\\\"content\\\":[{\\\"type\\\":\\\"text\\\",\\\"text\\\":\\\"Hello\\\",\\\"styles\\\":{}}],\\\"children\\\":[]}}]\"},{\"role\":\"system\",\"content\":\"This is the entire document (INCLUDING the selected text), find the selected text in there to understand the context:\"},{\"role\":\"system\",\"content\":\"[{\\\"block\\\":{\\\"type\\\":\\\"paragraph\\\",\\\"props\\\":{\\\"textColor\\\":\\\"default\\\",\\\"backgroundColor\\\":\\\"default\\\",\\\"textAlignment\\\":\\\"left\\\"},\\\"content\\\":[{\\\"type\\\":\\\"text\\\",\\\"text\\\":\\\"Hello, world!\\\",\\\"styles\\\":{}}]}},{\\\"block\\\":{\\\"type\\\":\\\"paragraph\\\",\\\"props\\\":{\\\"textColor\\\":\\\"default\\\",\\\"backgroundColor\\\":\\\"default\\\",\\\"textAlignment\\\":\\\"left\\\"},\\\"content\\\":[{\\\"type\\\":\\\"text\\\",\\\"text\\\":\\\"Hello, \\\",\\\"styles\\\":{}},{\\\"type\\\":\\\"mention\\\",\\\"props\\\":{\\\"user\\\":\\\"John Doe\\\"}},{\\\"type\\\":\\\"text\\\",\\\"text\\\":\\\"! \\\",\\\"styles\\\":{}},{\\\"type\\\":\\\"text\\\",\\\"text\\\":\\\"How are you doing?\\\",\\\"styles\\\":{\\\"bold\\\":true}},{\\\"type\\\":\\\"text\\\",\\\"text\\\":\\\" \\\",\\\"styles\\\":{}},{\\\"type\\\":\\\"text\\\",\\\"text\\\":\\\"This text is blue!\\\",\\\"styles\\\":{\\\"textColor\\\":\\\"blue\\\"}}]}},{\\\"block\\\":{\\\"type\\\":\\\"paragraph\\\",\\\"props\\\":{\\\"textColor\\\":\\\"default\\\",\\\"backgroundColor\\\":\\\"default\\\",\\\"textAlignment\\\":\\\"left\\\"},\\\"content\\\":[{\\\"type\\\":\\\"text\\\",\\\"text\\\":\\\"Hello, world! \\\",\\\"styles\\\":{}},{\\\"type\\\":\\\"text\\\",\\\"text\\\":\\\"Bold text. \\\",\\\"styles\\\":{\\\"bold\\\":true}},{\\\"type\\\":\\\"link\\\",\\\"href\\\":\\\"https://www.google.com\\\",\\\"content\\\":[{\\\"type\\\":\\\"text\\\",\\\"text\\\":\\\"Link.\\\",\\\"styles\\\":{}}]}]}}]\"},{\"role\":\"system\",\"content\":\"The user asks you to do the following:\"},{\"role\":\"user\",\"content\":\"add a paragraph with the text 'You look great today!' at the beginning and translate selection to German\"}],\"tool_choice\":{\"type\":\"function\",\"function\":{\"name\":\"json\"}},\"tools\":[{\"type\":\"function\",\"function\":{\"name\":\"json\",\"description\":\"Respond with a JSON object.\",\"parameters\":{\"type\":\"object\",\"properties\":{\"operations\":{\"type\":\"array\",\"items\":{\"anyOf\":[{\"type\":\"object\",\"description\":\"Update a block, the new block will replace the existing block.\",\"properties\":{\"type\":{\"type\":\"string\",\"enum\":[\"update\"]},\"id\":{\"type\":\"string\",\"description\":\"id of block to update\"},\"block\":{\"$ref\":\"#/$defs/block\"}},\"required\":[\"type\",\"id\",\"block\"],\"additionalProperties\":false},{\"type\":\"object\",\"description\":\"Insert new blocks\",\"properties\":{\"type\":{\"type\":\"string\",\"enum\":[\"add\"]},\"referenceId\":{\"type\":\"string\",\"description\":\"MUST be an id of a block in the document\"},\"position\":{\"type\":\"string\",\"enum\":[\"before\",\"after\"],\"description\":\"`after` to add blocks AFTER (below) the block with `referenceId`, `before` to add the block BEFORE (above)\"},\"blocks\":{\"items\":{\"$ref\":\"#/$defs/block\"},\"type\":\"array\"}},\"required\":[\"type\",\"referenceId\",\"position\",\"blocks\"],\"additionalProperties\":false},{\"type\":\"object\",\"description\":\"Delete a block\",\"properties\":{\"type\":{\"type\":\"string\",\"enum\":[\"delete\"]},\"id\":{\"type\":\"string\",\"description\":\"id of block to delete\"}},\"required\":[\"type\",\"id\"],\"additionalProperties\":false}]}}},\"additionalProperties\":false,\"required\":[\"operations\"],\"$defs\":{\"styles\":{\"type\":\"object\",\"properties\":{\"bold\":{\"type\":\"boolean\"},\"italic\":{\"type\":\"boolean\"},\"underline\":{\"type\":\"boolean\"},\"strike\":{\"type\":\"boolean\"},\"code\":{\"type\":\"boolean\"},\"textColor\":{\"type\":\"string\"},\"backgroundColor\":{\"type\":\"string\"}},\"additionalProperties\":false},\"styledtext\":{\"type\":\"object\",\"properties\":{\"type\":{\"type\":\"string\",\"enum\":[\"text\"]},\"text\":{\"type\":\"string\"},\"styles\":{\"$ref\":\"#/$defs/styles\"}},\"additionalProperties\":false,\"required\":[\"type\",\"text\"]},\"inlinecontent\":{\"type\":\"array\",\"items\":{\"anyOf\":[{\"type\":\"object\",\"properties\":{\"type\":{\"type\":\"string\",\"enum\":[\"mention\"]},\"props\":{\"type\":\"object\",\"properties\":{\"user\":{\"type\":\"string\"}},\"additionalProperties\":false}},\"additionalProperties\":false,\"required\":[\"type\"]},{\"$ref\":\"#/$defs/styledtext\"},{\"type\":\"object\",\"properties\":{\"type\":{\"type\":\"string\",\"enum\":[\"link\"]},\"content\":{\"type\":\"array\",\"items\":{\"$ref\":\"#/$defs/styledtext\"}},\"href\":{\"type\":\"string\"}},\"additionalProperties\":false,\"required\":[\"type\",\"href\",\"content\"]}]}},\"block\":{\"anyOf\":[{\"type\":\"object\",\"properties\":{\"type\":{\"type\":\"string\",\"enum\":[\"paragraph\",\"quote\",\"bulletListItem\",\"numberedListItem\"]},\"content\":{\"$ref\":\"#/$defs/inlinecontent\"},\"props\":{\"type\":\"object\",\"properties\":{},\"additionalProperties\":false}},\"additionalProperties\":false,\"required\":[\"type\"]},{\"type\":\"object\",\"properties\":{\"type\":{\"type\":\"string\",\"enum\":[\"heading\"]},\"content\":{\"$ref\":\"#/$defs/inlinecontent\"},\"props\":{\"type\":\"object\",\"properties\":{\"level\":{\"type\":\"number\",\"enum\":[1,2,3]}},\"additionalProperties\":false}},\"additionalProperties\":false,\"required\":[\"type\"]},{\"type\":\"object\",\"properties\":{\"type\":{\"type\":\"string\",\"enum\":[\"codeBlock\"]},\"content\":{\"$ref\":\"#/$defs/inlinecontent\"},\"props\":{\"type\":\"object\",\"properties\":{\"language\":{\"type\":\"string\"}},\"additionalProperties\":false}},\"additionalProperties\":false,\"required\":[\"type\"]},{\"type\":\"object\",\"properties\":{\"type\":{\"type\":\"string\",\"enum\":[\"checkListItem\"]},\"content\":{\"$ref\":\"#/$defs/inlinecontent\"},\"props\":{\"type\":\"object\",\"properties\":{\"checked\":{\"type\":\"boolean\"}},\"additionalProperties\":false}},\"additionalProperties\":false,\"required\":[\"type\"]},{\"type\":\"object\",\"properties\":{\"type\":{\"type\":\"string\",\"enum\":[\"table\"]},\"content\":{\"type\":\"object\",\"properties\":{}},\"props\":{\"type\":\"object\",\"properties\":{},\"additionalProperties\":false}},\"additionalProperties\":false,\"required\":[\"type\"]}]}}}}}],\"stream\":true}", - "headers": [], - "cookies": [] - }, - "response": { - "status": 200, - "statusText": "", - "body": "data: {\"id\":\"chatcmpl-BgV5Cbhd50BEeeffCuEg084sKSjOj\",\"object\":\"chat.completion.chunk\",\"created\":1749468958,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_a288987b44\",\"choices\":[{\"index\":0,\"delta\":{\"role\":\"assistant\",\"content\":null,\"tool_calls\":[{\"index\":0,\"id\":\"call_Z4MuFFAHgdjLG3jWuIKQ4QJB\",\"type\":\"function\",\"function\":{\"name\":\"json\",\"arguments\":\"\"}}],\"refusal\":null},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BgV5Cbhd50BEeeffCuEg084sKSjOj\",\"object\":\"chat.completion.chunk\",\"created\":1749468958,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_a288987b44\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"{\\\"\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BgV5Cbhd50BEeeffCuEg084sKSjOj\",\"object\":\"chat.completion.chunk\",\"created\":1749468958,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_a288987b44\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"operations\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BgV5Cbhd50BEeeffCuEg084sKSjOj\",\"object\":\"chat.completion.chunk\",\"created\":1749468958,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_a288987b44\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"\\\":[\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BgV5Cbhd50BEeeffCuEg084sKSjOj\",\"object\":\"chat.completion.chunk\",\"created\":1749468958,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_a288987b44\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"{\\\"\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BgV5Cbhd50BEeeffCuEg084sKSjOj\",\"object\":\"chat.completion.chunk\",\"created\":1749468958,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_a288987b44\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"type\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BgV5Cbhd50BEeeffCuEg084sKSjOj\",\"object\":\"chat.completion.chunk\",\"created\":1749468958,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_a288987b44\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"\\\":\\\"\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BgV5Cbhd50BEeeffCuEg084sKSjOj\",\"object\":\"chat.completion.chunk\",\"created\":1749468958,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_a288987b44\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"add\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BgV5Cbhd50BEeeffCuEg084sKSjOj\",\"object\":\"chat.completion.chunk\",\"created\":1749468958,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_a288987b44\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"\\\",\\\"\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BgV5Cbhd50BEeeffCuEg084sKSjOj\",\"object\":\"chat.completion.chunk\",\"created\":1749468958,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_a288987b44\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"reference\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BgV5Cbhd50BEeeffCuEg084sKSjOj\",\"object\":\"chat.completion.chunk\",\"created\":1749468958,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_a288987b44\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"Id\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BgV5Cbhd50BEeeffCuEg084sKSjOj\",\"object\":\"chat.completion.chunk\",\"created\":1749468958,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_a288987b44\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"\\\":\\\"\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BgV5Cbhd50BEeeffCuEg084sKSjOj\",\"object\":\"chat.completion.chunk\",\"created\":1749468958,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_a288987b44\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"ref\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BgV5Cbhd50BEeeffCuEg084sKSjOj\",\"object\":\"chat.completion.chunk\",\"created\":1749468958,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_a288987b44\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"2\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BgV5Cbhd50BEeeffCuEg084sKSjOj\",\"object\":\"chat.completion.chunk\",\"created\":1749468958,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_a288987b44\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"$\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BgV5Cbhd50BEeeffCuEg084sKSjOj\",\"object\":\"chat.completion.chunk\",\"created\":1749468958,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_a288987b44\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"\\\",\\\"\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BgV5Cbhd50BEeeffCuEg084sKSjOj\",\"object\":\"chat.completion.chunk\",\"created\":1749468958,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_a288987b44\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"position\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BgV5Cbhd50BEeeffCuEg084sKSjOj\",\"object\":\"chat.completion.chunk\",\"created\":1749468958,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_a288987b44\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"\\\":\\\"\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BgV5Cbhd50BEeeffCuEg084sKSjOj\",\"object\":\"chat.completion.chunk\",\"created\":1749468958,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_a288987b44\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"before\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BgV5Cbhd50BEeeffCuEg084sKSjOj\",\"object\":\"chat.completion.chunk\",\"created\":1749468958,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_a288987b44\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"\\\",\\\"\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BgV5Cbhd50BEeeffCuEg084sKSjOj\",\"object\":\"chat.completion.chunk\",\"created\":1749468958,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_a288987b44\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"blocks\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BgV5Cbhd50BEeeffCuEg084sKSjOj\",\"object\":\"chat.completion.chunk\",\"created\":1749468958,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_a288987b44\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"\\\":[\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BgV5Cbhd50BEeeffCuEg084sKSjOj\",\"object\":\"chat.completion.chunk\",\"created\":1749468958,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_a288987b44\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"{\\\"\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BgV5Cbhd50BEeeffCuEg084sKSjOj\",\"object\":\"chat.completion.chunk\",\"created\":1749468958,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_a288987b44\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"type\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BgV5Cbhd50BEeeffCuEg084sKSjOj\",\"object\":\"chat.completion.chunk\",\"created\":1749468958,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_a288987b44\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"\\\":\\\"\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BgV5Cbhd50BEeeffCuEg084sKSjOj\",\"object\":\"chat.completion.chunk\",\"created\":1749468958,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_a288987b44\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"paragraph\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BgV5Cbhd50BEeeffCuEg084sKSjOj\",\"object\":\"chat.completion.chunk\",\"created\":1749468958,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_a288987b44\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"\\\",\\\"\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BgV5Cbhd50BEeeffCuEg084sKSjOj\",\"object\":\"chat.completion.chunk\",\"created\":1749468958,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_a288987b44\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"content\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BgV5Cbhd50BEeeffCuEg084sKSjOj\",\"object\":\"chat.completion.chunk\",\"created\":1749468958,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_a288987b44\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"\\\":[\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BgV5Cbhd50BEeeffCuEg084sKSjOj\",\"object\":\"chat.completion.chunk\",\"created\":1749468958,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_a288987b44\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"{\\\"\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BgV5Cbhd50BEeeffCuEg084sKSjOj\",\"object\":\"chat.completion.chunk\",\"created\":1749468958,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_a288987b44\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"type\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BgV5Cbhd50BEeeffCuEg084sKSjOj\",\"object\":\"chat.completion.chunk\",\"created\":1749468958,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_a288987b44\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"\\\":\\\"\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BgV5Cbhd50BEeeffCuEg084sKSjOj\",\"object\":\"chat.completion.chunk\",\"created\":1749468958,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_a288987b44\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"text\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BgV5Cbhd50BEeeffCuEg084sKSjOj\",\"object\":\"chat.completion.chunk\",\"created\":1749468958,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_a288987b44\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"\\\",\\\"\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BgV5Cbhd50BEeeffCuEg084sKSjOj\",\"object\":\"chat.completion.chunk\",\"created\":1749468958,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_a288987b44\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"text\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BgV5Cbhd50BEeeffCuEg084sKSjOj\",\"object\":\"chat.completion.chunk\",\"created\":1749468958,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_a288987b44\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"\\\":\\\"\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BgV5Cbhd50BEeeffCuEg084sKSjOj\",\"object\":\"chat.completion.chunk\",\"created\":1749468958,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_a288987b44\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"You\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BgV5Cbhd50BEeeffCuEg084sKSjOj\",\"object\":\"chat.completion.chunk\",\"created\":1749468958,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_a288987b44\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\" look\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BgV5Cbhd50BEeeffCuEg084sKSjOj\",\"object\":\"chat.completion.chunk\",\"created\":1749468958,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_a288987b44\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\" great\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BgV5Cbhd50BEeeffCuEg084sKSjOj\",\"object\":\"chat.completion.chunk\",\"created\":1749468958,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_a288987b44\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\" today\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BgV5Cbhd50BEeeffCuEg084sKSjOj\",\"object\":\"chat.completion.chunk\",\"created\":1749468958,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_a288987b44\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"!\\\"\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BgV5Cbhd50BEeeffCuEg084sKSjOj\",\"object\":\"chat.completion.chunk\",\"created\":1749468958,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_a288987b44\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"}\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BgV5Cbhd50BEeeffCuEg084sKSjOj\",\"object\":\"chat.completion.chunk\",\"created\":1749468958,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_a288987b44\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"]}\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BgV5Cbhd50BEeeffCuEg084sKSjOj\",\"object\":\"chat.completion.chunk\",\"created\":1749468958,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_a288987b44\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"]\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BgV5Cbhd50BEeeffCuEg084sKSjOj\",\"object\":\"chat.completion.chunk\",\"created\":1749468958,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_a288987b44\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"},{\\\"\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BgV5Cbhd50BEeeffCuEg084sKSjOj\",\"object\":\"chat.completion.chunk\",\"created\":1749468958,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_a288987b44\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"type\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BgV5Cbhd50BEeeffCuEg084sKSjOj\",\"object\":\"chat.completion.chunk\",\"created\":1749468958,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_a288987b44\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"\\\":\\\"\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BgV5Cbhd50BEeeffCuEg084sKSjOj\",\"object\":\"chat.completion.chunk\",\"created\":1749468958,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_a288987b44\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"update\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BgV5Cbhd50BEeeffCuEg084sKSjOj\",\"object\":\"chat.completion.chunk\",\"created\":1749468958,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_a288987b44\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"\\\",\\\"\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BgV5Cbhd50BEeeffCuEg084sKSjOj\",\"object\":\"chat.completion.chunk\",\"created\":1749468958,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_a288987b44\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"id\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BgV5Cbhd50BEeeffCuEg084sKSjOj\",\"object\":\"chat.completion.chunk\",\"created\":1749468958,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_a288987b44\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"\\\":\\\"\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BgV5Cbhd50BEeeffCuEg084sKSjOj\",\"object\":\"chat.completion.chunk\",\"created\":1749468958,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_a288987b44\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"ref\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BgV5Cbhd50BEeeffCuEg084sKSjOj\",\"object\":\"chat.completion.chunk\",\"created\":1749468958,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_a288987b44\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"2\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BgV5Cbhd50BEeeffCuEg084sKSjOj\",\"object\":\"chat.completion.chunk\",\"created\":1749468958,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_a288987b44\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"$\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BgV5Cbhd50BEeeffCuEg084sKSjOj\",\"object\":\"chat.completion.chunk\",\"created\":1749468958,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_a288987b44\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"\\\",\\\"\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BgV5Cbhd50BEeeffCuEg084sKSjOj\",\"object\":\"chat.completion.chunk\",\"created\":1749468958,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_a288987b44\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"block\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BgV5Cbhd50BEeeffCuEg084sKSjOj\",\"object\":\"chat.completion.chunk\",\"created\":1749468958,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_a288987b44\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"\\\":{\\\"\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BgV5Cbhd50BEeeffCuEg084sKSjOj\",\"object\":\"chat.completion.chunk\",\"created\":1749468958,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_a288987b44\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"type\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BgV5Cbhd50BEeeffCuEg084sKSjOj\",\"object\":\"chat.completion.chunk\",\"created\":1749468958,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_a288987b44\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"\\\":\\\"\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BgV5Cbhd50BEeeffCuEg084sKSjOj\",\"object\":\"chat.completion.chunk\",\"created\":1749468958,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_a288987b44\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"paragraph\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BgV5Cbhd50BEeeffCuEg084sKSjOj\",\"object\":\"chat.completion.chunk\",\"created\":1749468958,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_a288987b44\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"\\\",\\\"\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BgV5Cbhd50BEeeffCuEg084sKSjOj\",\"object\":\"chat.completion.chunk\",\"created\":1749468958,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_a288987b44\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"content\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BgV5Cbhd50BEeeffCuEg084sKSjOj\",\"object\":\"chat.completion.chunk\",\"created\":1749468958,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_a288987b44\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"\\\":[\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BgV5Cbhd50BEeeffCuEg084sKSjOj\",\"object\":\"chat.completion.chunk\",\"created\":1749468958,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_a288987b44\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"{\\\"\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BgV5Cbhd50BEeeffCuEg084sKSjOj\",\"object\":\"chat.completion.chunk\",\"created\":1749468958,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_a288987b44\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"type\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BgV5Cbhd50BEeeffCuEg084sKSjOj\",\"object\":\"chat.completion.chunk\",\"created\":1749468958,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_a288987b44\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"\\\":\\\"\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BgV5Cbhd50BEeeffCuEg084sKSjOj\",\"object\":\"chat.completion.chunk\",\"created\":1749468958,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_a288987b44\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"text\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BgV5Cbhd50BEeeffCuEg084sKSjOj\",\"object\":\"chat.completion.chunk\",\"created\":1749468958,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_a288987b44\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"\\\",\\\"\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BgV5Cbhd50BEeeffCuEg084sKSjOj\",\"object\":\"chat.completion.chunk\",\"created\":1749468958,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_a288987b44\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"text\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BgV5Cbhd50BEeeffCuEg084sKSjOj\",\"object\":\"chat.completion.chunk\",\"created\":1749468958,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_a288987b44\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"\\\":\\\"\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BgV5Cbhd50BEeeffCuEg084sKSjOj\",\"object\":\"chat.completion.chunk\",\"created\":1749468958,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_a288987b44\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"Hallo\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BgV5Cbhd50BEeeffCuEg084sKSjOj\",\"object\":\"chat.completion.chunk\",\"created\":1749468958,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_a288987b44\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"\\\"}\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BgV5Cbhd50BEeeffCuEg084sKSjOj\",\"object\":\"chat.completion.chunk\",\"created\":1749468958,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_a288987b44\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"]\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BgV5Cbhd50BEeeffCuEg084sKSjOj\",\"object\":\"chat.completion.chunk\",\"created\":1749468958,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_a288987b44\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"}}\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BgV5Cbhd50BEeeffCuEg084sKSjOj\",\"object\":\"chat.completion.chunk\",\"created\":1749468958,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_a288987b44\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"]}\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BgV5Cbhd50BEeeffCuEg084sKSjOj\",\"object\":\"chat.completion.chunk\",\"created\":1749468958,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_a288987b44\",\"choices\":[{\"index\":0,\"delta\":{},\"logprobs\":null,\"finish_reason\":\"stop\"}]}\n\ndata: [DONE]\n\n", - "headers": [] - } -} \ No newline at end of file diff --git a/packages/xl-ai/src/api/formats/json/__snapshots__/json.test.ts/Delete/__msw_snapshots__/openai.chat/gpt-4o-2024-08-06 (non-streaming)/delete first block_1_6dfa5f6bda6403c2b113e80050926615.json b/packages/xl-ai/src/api/formats/json/__snapshots__/json.test.ts/Delete/__msw_snapshots__/openai.chat/gpt-4o-2024-08-06 (non-streaming)/delete first block_1_8d44ebaea2f98ebce7ee55018566d58f.json similarity index 78% rename from packages/xl-ai/src/api/formats/json/__snapshots__/json.test.ts/Delete/__msw_snapshots__/openai.chat/gpt-4o-2024-08-06 (non-streaming)/delete first block_1_6dfa5f6bda6403c2b113e80050926615.json rename to packages/xl-ai/src/api/formats/json/__snapshots__/json.test.ts/Delete/__msw_snapshots__/openai.chat/gpt-4o-2024-08-06 (non-streaming)/delete first block_1_8d44ebaea2f98ebce7ee55018566d58f.json index 90402ff147..0d8fa165c5 100644 --- a/packages/xl-ai/src/api/formats/json/__snapshots__/json.test.ts/Delete/__msw_snapshots__/openai.chat/gpt-4o-2024-08-06 (non-streaming)/delete first block_1_6dfa5f6bda6403c2b113e80050926615.json +++ b/packages/xl-ai/src/api/formats/json/__snapshots__/json.test.ts/Delete/__msw_snapshots__/openai.chat/gpt-4o-2024-08-06 (non-streaming)/delete first block_1_8d44ebaea2f98ebce7ee55018566d58f.json @@ -2,14 +2,14 @@ "request": { "method": "POST", "url": "https://localhost:3000/ai?provider=openai&url=https%3A%2F%2Fapi.openai.com%2Fv1%2Fchat%2Fcompletions", - "body": "{\"model\":\"gpt-4o-2024-08-06\",\"temperature\":0,\"messages\":[{\"role\":\"system\",\"content\":\"You're manipulating a text document using JSON blocks. \\n Make sure to follow the json schema provided. When referencing ids they MUST be EXACTLY the same (including the trailing $). \\n This is the document as an array of JSON blocks (the cursor is BETWEEN two blocks as indicated by cursor: true):\"},{\"role\":\"system\",\"content\":\"[{\\\"id\\\":\\\"ref1$\\\",\\\"block\\\":{\\\"id\\\":\\\"ref1\\\",\\\"type\\\":\\\"paragraph\\\",\\\"props\\\":{\\\"textColor\\\":\\\"default\\\",\\\"backgroundColor\\\":\\\"default\\\",\\\"textAlignment\\\":\\\"left\\\"},\\\"content\\\":[{\\\"type\\\":\\\"text\\\",\\\"text\\\":\\\"Hello, world!\\\",\\\"styles\\\":{}}]}},{\\\"cursor\\\":true},{\\\"id\\\":\\\"ref2$\\\",\\\"block\\\":{\\\"id\\\":\\\"ref2\\\",\\\"type\\\":\\\"paragraph\\\",\\\"props\\\":{\\\"textColor\\\":\\\"default\\\",\\\"backgroundColor\\\":\\\"default\\\",\\\"textAlignment\\\":\\\"left\\\"},\\\"content\\\":[{\\\"type\\\":\\\"text\\\",\\\"text\\\":\\\"Hello, \\\",\\\"styles\\\":{}},{\\\"type\\\":\\\"mention\\\",\\\"props\\\":{\\\"user\\\":\\\"John Doe\\\"}},{\\\"type\\\":\\\"text\\\",\\\"text\\\":\\\"! \\\",\\\"styles\\\":{}},{\\\"type\\\":\\\"text\\\",\\\"text\\\":\\\"How are you doing?\\\",\\\"styles\\\":{\\\"bold\\\":true}},{\\\"type\\\":\\\"text\\\",\\\"text\\\":\\\" \\\",\\\"styles\\\":{}},{\\\"type\\\":\\\"text\\\",\\\"text\\\":\\\"This text is blue!\\\",\\\"styles\\\":{\\\"textColor\\\":\\\"blue\\\"}}]}},{\\\"id\\\":\\\"ref3$\\\",\\\"block\\\":{\\\"id\\\":\\\"ref3\\\",\\\"type\\\":\\\"paragraph\\\",\\\"props\\\":{\\\"textColor\\\":\\\"default\\\",\\\"backgroundColor\\\":\\\"default\\\",\\\"textAlignment\\\":\\\"left\\\"},\\\"content\\\":[{\\\"type\\\":\\\"text\\\",\\\"text\\\":\\\"Hello, world! \\\",\\\"styles\\\":{}},{\\\"type\\\":\\\"text\\\",\\\"text\\\":\\\"Bold text. \\\",\\\"styles\\\":{\\\"bold\\\":true}},{\\\"type\\\":\\\"link\\\",\\\"href\\\":\\\"https://www.google.com\\\",\\\"content\\\":[{\\\"type\\\":\\\"text\\\",\\\"text\\\":\\\"Link.\\\",\\\"styles\\\":{}}]}]}}]\"},{\"role\":\"system\",\"content\":\"The user asks you to do the following:\"},{\"role\":\"user\",\"content\":\"delete the first paragraph\"},{\"role\":\"system\",\"content\":\"First, determine what part of the document the user is talking about. You SHOULD probably take cursor info into account if needed.\\n EXAMPLE: if user says \\\"below\\\" (without pointing to a specific part of the document) he / she probably indicates the block(s) after the cursor. \\n EXAMPLE: If you want to insert content AT the cursor position (UNLESS indicated otherwise by the user), then you need `referenceId` to point to the block before the cursor with position `after` (or block below and `before`).\\n \\n Prefer updating existing blocks over removing and adding (but this also depends on the user's question).\"}],\"tool_choice\":{\"type\":\"function\",\"function\":{\"name\":\"json\"}},\"tools\":[{\"type\":\"function\",\"function\":{\"name\":\"json\",\"description\":\"Respond with a JSON object.\",\"parameters\":{\"type\":\"object\",\"properties\":{\"operations\":{\"type\":\"array\",\"items\":{\"anyOf\":[{\"type\":\"object\",\"description\":\"Update a block, the new block will replace the existing block.\",\"properties\":{\"type\":{\"type\":\"string\",\"enum\":[\"update\"]},\"id\":{\"type\":\"string\",\"description\":\"id of block to update\"},\"block\":{\"$ref\":\"#/$defs/block\"}},\"required\":[\"type\",\"id\",\"block\"],\"additionalProperties\":false},{\"type\":\"object\",\"description\":\"Insert new blocks\",\"properties\":{\"type\":{\"type\":\"string\",\"enum\":[\"add\"]},\"referenceId\":{\"type\":\"string\",\"description\":\"MUST be an id of a block in the document\"},\"position\":{\"type\":\"string\",\"enum\":[\"before\",\"after\"],\"description\":\"`after` to add blocks AFTER (below) the block with `referenceId`, `before` to add the block BEFORE (above)\"},\"blocks\":{\"items\":{\"$ref\":\"#/$defs/block\"},\"type\":\"array\"}},\"required\":[\"type\",\"referenceId\",\"position\",\"blocks\"],\"additionalProperties\":false},{\"type\":\"object\",\"description\":\"Delete a block\",\"properties\":{\"type\":{\"type\":\"string\",\"enum\":[\"delete\"]},\"id\":{\"type\":\"string\",\"description\":\"id of block to delete\"}},\"required\":[\"type\",\"id\"],\"additionalProperties\":false}]}}},\"additionalProperties\":false,\"required\":[\"operations\"],\"$defs\":{\"styles\":{\"type\":\"object\",\"properties\":{\"bold\":{\"type\":\"boolean\"},\"italic\":{\"type\":\"boolean\"},\"underline\":{\"type\":\"boolean\"},\"strike\":{\"type\":\"boolean\"},\"code\":{\"type\":\"boolean\"},\"textColor\":{\"type\":\"string\"},\"backgroundColor\":{\"type\":\"string\"}},\"additionalProperties\":false},\"styledtext\":{\"type\":\"object\",\"properties\":{\"type\":{\"type\":\"string\",\"enum\":[\"text\"]},\"text\":{\"type\":\"string\"},\"styles\":{\"$ref\":\"#/$defs/styles\"}},\"additionalProperties\":false,\"required\":[\"type\",\"text\"]},\"inlinecontent\":{\"type\":\"array\",\"items\":{\"anyOf\":[{\"type\":\"object\",\"properties\":{\"type\":{\"type\":\"string\",\"enum\":[\"mention\"]},\"props\":{\"type\":\"object\",\"properties\":{\"user\":{\"type\":\"string\"}},\"additionalProperties\":false}},\"additionalProperties\":false,\"required\":[\"type\"]},{\"$ref\":\"#/$defs/styledtext\"},{\"type\":\"object\",\"properties\":{\"type\":{\"type\":\"string\",\"enum\":[\"link\"]},\"content\":{\"type\":\"array\",\"items\":{\"$ref\":\"#/$defs/styledtext\"}},\"href\":{\"type\":\"string\"}},\"additionalProperties\":false,\"required\":[\"type\",\"href\",\"content\"]}]}},\"block\":{\"anyOf\":[{\"type\":\"object\",\"properties\":{\"type\":{\"type\":\"string\",\"enum\":[\"paragraph\",\"quote\",\"bulletListItem\",\"numberedListItem\"]},\"content\":{\"$ref\":\"#/$defs/inlinecontent\"},\"props\":{\"type\":\"object\",\"properties\":{},\"additionalProperties\":false}},\"additionalProperties\":false,\"required\":[\"type\"]},{\"type\":\"object\",\"properties\":{\"type\":{\"type\":\"string\",\"enum\":[\"heading\"]},\"content\":{\"$ref\":\"#/$defs/inlinecontent\"},\"props\":{\"type\":\"object\",\"properties\":{\"level\":{\"type\":\"number\",\"enum\":[1,2,3]}},\"additionalProperties\":false}},\"additionalProperties\":false,\"required\":[\"type\"]},{\"type\":\"object\",\"properties\":{\"type\":{\"type\":\"string\",\"enum\":[\"codeBlock\"]},\"content\":{\"$ref\":\"#/$defs/inlinecontent\"},\"props\":{\"type\":\"object\",\"properties\":{\"language\":{\"type\":\"string\"}},\"additionalProperties\":false}},\"additionalProperties\":false,\"required\":[\"type\"]},{\"type\":\"object\",\"properties\":{\"type\":{\"type\":\"string\",\"enum\":[\"checkListItem\"]},\"content\":{\"$ref\":\"#/$defs/inlinecontent\"},\"props\":{\"type\":\"object\",\"properties\":{\"checked\":{\"type\":\"boolean\"}},\"additionalProperties\":false}},\"additionalProperties\":false,\"required\":[\"type\"]},{\"type\":\"object\",\"properties\":{\"type\":{\"type\":\"string\",\"enum\":[\"table\"]},\"content\":{\"type\":\"object\",\"properties\":{}},\"props\":{\"type\":\"object\",\"properties\":{},\"additionalProperties\":false}},\"additionalProperties\":false,\"required\":[\"type\"]}]}}}}}]}", + "body": "{\"model\":\"gpt-4o-2024-08-06\",\"temperature\":0,\"messages\":[{\"role\":\"system\",\"content\":\"You're manipulating a text document using JSON blocks. \\n Make sure to follow the json schema provided. When referencing ids they MUST be EXACTLY the same (including the trailing $). \\n This is the document as an array of JSON blocks (the cursor is BETWEEN two blocks as indicated by cursor: true):\"},{\"role\":\"system\",\"content\":\"[{\\\"id\\\":\\\"ref1$\\\",\\\"block\\\":{\\\"id\\\":\\\"ref1\\\",\\\"type\\\":\\\"paragraph\\\",\\\"props\\\":{\\\"textColor\\\":\\\"default\\\",\\\"backgroundColor\\\":\\\"default\\\",\\\"textAlignment\\\":\\\"left\\\"},\\\"content\\\":[{\\\"type\\\":\\\"text\\\",\\\"text\\\":\\\"Hello, world!\\\",\\\"styles\\\":{}}]}},{\\\"cursor\\\":true},{\\\"id\\\":\\\"ref2$\\\",\\\"block\\\":{\\\"id\\\":\\\"ref2\\\",\\\"type\\\":\\\"paragraph\\\",\\\"props\\\":{\\\"textColor\\\":\\\"default\\\",\\\"backgroundColor\\\":\\\"default\\\",\\\"textAlignment\\\":\\\"left\\\"},\\\"content\\\":[{\\\"type\\\":\\\"text\\\",\\\"text\\\":\\\"Hello, \\\",\\\"styles\\\":{}},{\\\"type\\\":\\\"mention\\\",\\\"props\\\":{\\\"user\\\":\\\"John Doe\\\"}},{\\\"type\\\":\\\"text\\\",\\\"text\\\":\\\"! \\\",\\\"styles\\\":{}},{\\\"type\\\":\\\"text\\\",\\\"text\\\":\\\"How are you doing?\\\",\\\"styles\\\":{\\\"bold\\\":true}},{\\\"type\\\":\\\"text\\\",\\\"text\\\":\\\" \\\",\\\"styles\\\":{}},{\\\"type\\\":\\\"text\\\",\\\"text\\\":\\\"This text is blue!\\\",\\\"styles\\\":{\\\"textColor\\\":\\\"blue\\\"}}]}},{\\\"id\\\":\\\"ref3$\\\",\\\"block\\\":{\\\"id\\\":\\\"ref3\\\",\\\"type\\\":\\\"paragraph\\\",\\\"props\\\":{\\\"textColor\\\":\\\"default\\\",\\\"backgroundColor\\\":\\\"default\\\",\\\"textAlignment\\\":\\\"left\\\"},\\\"content\\\":[{\\\"type\\\":\\\"text\\\",\\\"text\\\":\\\"Hello, world! \\\",\\\"styles\\\":{}},{\\\"type\\\":\\\"text\\\",\\\"text\\\":\\\"Bold text. \\\",\\\"styles\\\":{\\\"bold\\\":true}},{\\\"type\\\":\\\"link\\\",\\\"href\\\":\\\"https://www.google.com\\\",\\\"content\\\":[{\\\"type\\\":\\\"text\\\",\\\"text\\\":\\\"Link.\\\",\\\"styles\\\":{}}]}]}}]\"},{\"role\":\"system\",\"content\":\"The user asks you to do the following:\"},{\"role\":\"user\",\"content\":\"delete the first paragraph\"},{\"role\":\"system\",\"content\":\"First, determine what part of the document the user is talking about. You SHOULD probably take cursor info into account if needed.\\n EXAMPLE: if user says \\\"below\\\" (without pointing to a specific part of the document) he / she probably indicates the block(s) after the cursor. \\n EXAMPLE: If you want to insert content AT the cursor position (UNLESS indicated otherwise by the user), then you need `referenceId` to point to the block before the cursor with position `after` (or block below and `before`).\\n \\n Prefer updating existing blocks over removing and adding (but this also depends on the user's question).\"}],\"tool_choice\":{\"type\":\"function\",\"function\":{\"name\":\"json\"}},\"tools\":[{\"type\":\"function\",\"function\":{\"name\":\"json\",\"description\":\"Respond with a JSON object.\",\"parameters\":{\"type\":\"object\",\"properties\":{\"operations\":{\"type\":\"array\",\"items\":{\"anyOf\":[{\"type\":\"object\",\"description\":\"Update a block, the new block will replace the existing block.\",\"properties\":{\"type\":{\"type\":\"string\",\"enum\":[\"update\"]},\"id\":{\"type\":\"string\",\"description\":\"id of block to update\"},\"block\":{\"$ref\":\"#/$defs/block\"}},\"required\":[\"type\",\"id\",\"block\"],\"additionalProperties\":false},{\"type\":\"object\",\"description\":\"Insert new blocks\",\"properties\":{\"type\":{\"type\":\"string\",\"enum\":[\"add\"]},\"referenceId\":{\"type\":\"string\",\"description\":\"MUST be an id of a block in the document\"},\"position\":{\"type\":\"string\",\"enum\":[\"before\",\"after\"],\"description\":\"`after` to add blocks AFTER (below) the block with `referenceId`, `before` to add the block BEFORE (above)\"},\"blocks\":{\"items\":{\"$ref\":\"#/$defs/block\"},\"type\":\"array\"}},\"required\":[\"type\",\"referenceId\",\"position\",\"blocks\"],\"additionalProperties\":false},{\"type\":\"object\",\"description\":\"Delete a block\",\"properties\":{\"type\":{\"type\":\"string\",\"enum\":[\"delete\"]},\"id\":{\"type\":\"string\",\"description\":\"id of block to delete\"}},\"required\":[\"type\",\"id\"],\"additionalProperties\":false}]}}},\"additionalProperties\":false,\"required\":[\"operations\"],\"$defs\":{\"styles\":{\"type\":\"object\",\"properties\":{\"bold\":{\"type\":\"boolean\"},\"italic\":{\"type\":\"boolean\"},\"underline\":{\"type\":\"boolean\"},\"strike\":{\"type\":\"boolean\"},\"code\":{\"type\":\"boolean\"},\"textColor\":{\"type\":\"string\"},\"backgroundColor\":{\"type\":\"string\"}},\"additionalProperties\":false},\"styledtext\":{\"type\":\"object\",\"properties\":{\"type\":{\"type\":\"string\",\"enum\":[\"text\"]},\"text\":{\"type\":\"string\"},\"styles\":{\"$ref\":\"#/$defs/styles\"}},\"additionalProperties\":false,\"required\":[\"type\",\"text\"]},\"inlinecontent\":{\"type\":\"array\",\"items\":{\"anyOf\":[{\"type\":\"object\",\"properties\":{\"type\":{\"type\":\"string\",\"enum\":[\"mention\"]},\"props\":{\"type\":\"object\",\"properties\":{\"user\":{\"type\":\"string\"}},\"additionalProperties\":false}},\"additionalProperties\":false,\"required\":[\"type\"]},{\"$ref\":\"#/$defs/styledtext\"},{\"type\":\"object\",\"properties\":{\"type\":{\"type\":\"string\",\"enum\":[\"link\"]},\"content\":{\"type\":\"array\",\"items\":{\"$ref\":\"#/$defs/styledtext\"}},\"href\":{\"type\":\"string\"}},\"additionalProperties\":false,\"required\":[\"type\",\"href\",\"content\"]}]}},\"block\":{\"anyOf\":[{\"type\":\"object\",\"properties\":{\"type\":{\"type\":\"string\",\"enum\":[\"paragraph\",\"quote\",\"toggleListItem\",\"bulletListItem\",\"numberedListItem\"]},\"content\":{\"$ref\":\"#/$defs/inlinecontent\"},\"props\":{\"type\":\"object\",\"properties\":{},\"additionalProperties\":false}},\"additionalProperties\":false,\"required\":[\"type\"]},{\"type\":\"object\",\"properties\":{\"type\":{\"type\":\"string\",\"enum\":[\"heading\"]},\"content\":{\"$ref\":\"#/$defs/inlinecontent\"},\"props\":{\"type\":\"object\",\"properties\":{\"level\":{\"type\":\"number\",\"enum\":[1,2,3]},\"isTogglable\":{\"type\":\"boolean\"}},\"additionalProperties\":false}},\"additionalProperties\":false,\"required\":[\"type\"]},{\"type\":\"object\",\"properties\":{\"type\":{\"type\":\"string\",\"enum\":[\"codeBlock\"]},\"content\":{\"$ref\":\"#/$defs/inlinecontent\"},\"props\":{\"type\":\"object\",\"properties\":{\"language\":{\"type\":\"string\"}},\"additionalProperties\":false}},\"additionalProperties\":false,\"required\":[\"type\"]},{\"type\":\"object\",\"properties\":{\"type\":{\"type\":\"string\",\"enum\":[\"checkListItem\"]},\"content\":{\"$ref\":\"#/$defs/inlinecontent\"},\"props\":{\"type\":\"object\",\"properties\":{\"checked\":{\"type\":\"boolean\"}},\"additionalProperties\":false}},\"additionalProperties\":false,\"required\":[\"type\"]},{\"type\":\"object\",\"properties\":{\"type\":{\"type\":\"string\",\"enum\":[\"table\"]},\"content\":{\"type\":\"object\",\"properties\":{}},\"props\":{\"type\":\"object\",\"properties\":{},\"additionalProperties\":false}},\"additionalProperties\":false,\"required\":[\"type\"]}]}}}}}]}", "headers": [], "cookies": [] }, "response": { "status": 200, "statusText": "", - "body": "{\n \"id\": \"chatcmpl-BgV5w2BYdNQKcGlxHMikEnzqR5CYI\",\n \"object\": \"chat.completion\",\n \"created\": 1749469004,\n \"model\": \"gpt-4o-2024-08-06\",\n \"choices\": [\n {\n \"index\": 0,\n \"message\": {\n \"role\": \"assistant\",\n \"content\": null,\n \"tool_calls\": [\n {\n \"id\": \"call_Vzw3UnMpEE5efUwea2xSUZdI\",\n \"type\": \"function\",\n \"function\": {\n \"name\": \"json\",\n \"arguments\": \"{\\\"operations\\\":[{\\\"type\\\":\\\"delete\\\",\\\"id\\\":\\\"ref1$\\\"}]}\"\n }\n }\n ],\n \"refusal\": null,\n \"annotations\": []\n },\n \"logprobs\": null,\n \"finish_reason\": \"stop\"\n }\n ],\n \"usage\": {\n \"prompt_tokens\": 1158,\n \"completion_tokens\": 15,\n \"total_tokens\": 1173,\n \"prompt_tokens_details\": {\n \"cached_tokens\": 1152,\n \"audio_tokens\": 0\n },\n \"completion_tokens_details\": {\n \"reasoning_tokens\": 0,\n \"audio_tokens\": 0,\n \"accepted_prediction_tokens\": 0,\n \"rejected_prediction_tokens\": 0\n }\n },\n \"service_tier\": \"default\",\n \"system_fingerprint\": \"fp_07871e2ad8\"\n}\n", + "body": "{\n \"id\": \"chatcmpl-BhXo5ZwA5pA89PIO1loa17tU1QnFk\",\n \"object\": \"chat.completion\",\n \"created\": 1749717757,\n \"model\": \"gpt-4o-2024-08-06\",\n \"choices\": [\n {\n \"index\": 0,\n \"message\": {\n \"role\": \"assistant\",\n \"content\": null,\n \"tool_calls\": [\n {\n \"id\": \"call_4vhQUhZX7RRh0PLqqZE5gEDW\",\n \"type\": \"function\",\n \"function\": {\n \"name\": \"json\",\n \"arguments\": \"{\\\"operations\\\":[{\\\"type\\\":\\\"delete\\\",\\\"id\\\":\\\"ref1$\\\"}]}\"\n }\n }\n ],\n \"refusal\": null,\n \"annotations\": []\n },\n \"logprobs\": null,\n \"finish_reason\": \"stop\"\n }\n ],\n \"usage\": {\n \"prompt_tokens\": 1186,\n \"completion_tokens\": 15,\n \"total_tokens\": 1201,\n \"prompt_tokens_details\": {\n \"cached_tokens\": 1152,\n \"audio_tokens\": 0\n },\n \"completion_tokens_details\": {\n \"reasoning_tokens\": 0,\n \"audio_tokens\": 0,\n \"accepted_prediction_tokens\": 0,\n \"rejected_prediction_tokens\": 0\n }\n },\n \"service_tier\": \"default\",\n \"system_fingerprint\": \"fp_a288987b44\"\n}\n", "headers": [] } } \ No newline at end of file diff --git a/packages/xl-ai/src/api/formats/json/__snapshots__/json.test.ts/Delete/__msw_snapshots__/openai.chat/gpt-4o-2024-08-06 (streaming)/delete first block_1_b617aa877adc416fcd68a26dccc50250.json b/packages/xl-ai/src/api/formats/json/__snapshots__/json.test.ts/Delete/__msw_snapshots__/openai.chat/gpt-4o-2024-08-06 (streaming)/delete first block_1_36655a38a1c62948339f0d02946eb12f.json similarity index 64% rename from packages/xl-ai/src/api/formats/json/__snapshots__/json.test.ts/Delete/__msw_snapshots__/openai.chat/gpt-4o-2024-08-06 (streaming)/delete first block_1_b617aa877adc416fcd68a26dccc50250.json rename to packages/xl-ai/src/api/formats/json/__snapshots__/json.test.ts/Delete/__msw_snapshots__/openai.chat/gpt-4o-2024-08-06 (streaming)/delete first block_1_36655a38a1c62948339f0d02946eb12f.json index 525abd62af..cdfefbbacb 100644 --- a/packages/xl-ai/src/api/formats/json/__snapshots__/json.test.ts/Delete/__msw_snapshots__/openai.chat/gpt-4o-2024-08-06 (streaming)/delete first block_1_b617aa877adc416fcd68a26dccc50250.json +++ b/packages/xl-ai/src/api/formats/json/__snapshots__/json.test.ts/Delete/__msw_snapshots__/openai.chat/gpt-4o-2024-08-06 (streaming)/delete first block_1_36655a38a1c62948339f0d02946eb12f.json @@ -2,14 +2,14 @@ "request": { "method": "POST", "url": "https://localhost:3000/ai?provider=openai&url=https%3A%2F%2Fapi.openai.com%2Fv1%2Fchat%2Fcompletions", - "body": "{\"model\":\"gpt-4o-2024-08-06\",\"temperature\":0,\"messages\":[{\"role\":\"system\",\"content\":\"You're manipulating a text document using JSON blocks. \\n Make sure to follow the json schema provided. When referencing ids they MUST be EXACTLY the same (including the trailing $). \\n This is the document as an array of JSON blocks (the cursor is BETWEEN two blocks as indicated by cursor: true):\"},{\"role\":\"system\",\"content\":\"[{\\\"id\\\":\\\"ref1$\\\",\\\"block\\\":{\\\"id\\\":\\\"ref1\\\",\\\"type\\\":\\\"paragraph\\\",\\\"props\\\":{\\\"textColor\\\":\\\"default\\\",\\\"backgroundColor\\\":\\\"default\\\",\\\"textAlignment\\\":\\\"left\\\"},\\\"content\\\":[{\\\"type\\\":\\\"text\\\",\\\"text\\\":\\\"Hello, world!\\\",\\\"styles\\\":{}}]}},{\\\"cursor\\\":true},{\\\"id\\\":\\\"ref2$\\\",\\\"block\\\":{\\\"id\\\":\\\"ref2\\\",\\\"type\\\":\\\"paragraph\\\",\\\"props\\\":{\\\"textColor\\\":\\\"default\\\",\\\"backgroundColor\\\":\\\"default\\\",\\\"textAlignment\\\":\\\"left\\\"},\\\"content\\\":[{\\\"type\\\":\\\"text\\\",\\\"text\\\":\\\"Hello, \\\",\\\"styles\\\":{}},{\\\"type\\\":\\\"mention\\\",\\\"props\\\":{\\\"user\\\":\\\"John Doe\\\"}},{\\\"type\\\":\\\"text\\\",\\\"text\\\":\\\"! \\\",\\\"styles\\\":{}},{\\\"type\\\":\\\"text\\\",\\\"text\\\":\\\"How are you doing?\\\",\\\"styles\\\":{\\\"bold\\\":true}},{\\\"type\\\":\\\"text\\\",\\\"text\\\":\\\" \\\",\\\"styles\\\":{}},{\\\"type\\\":\\\"text\\\",\\\"text\\\":\\\"This text is blue!\\\",\\\"styles\\\":{\\\"textColor\\\":\\\"blue\\\"}}]}},{\\\"id\\\":\\\"ref3$\\\",\\\"block\\\":{\\\"id\\\":\\\"ref3\\\",\\\"type\\\":\\\"paragraph\\\",\\\"props\\\":{\\\"textColor\\\":\\\"default\\\",\\\"backgroundColor\\\":\\\"default\\\",\\\"textAlignment\\\":\\\"left\\\"},\\\"content\\\":[{\\\"type\\\":\\\"text\\\",\\\"text\\\":\\\"Hello, world! \\\",\\\"styles\\\":{}},{\\\"type\\\":\\\"text\\\",\\\"text\\\":\\\"Bold text. \\\",\\\"styles\\\":{\\\"bold\\\":true}},{\\\"type\\\":\\\"link\\\",\\\"href\\\":\\\"https://www.google.com\\\",\\\"content\\\":[{\\\"type\\\":\\\"text\\\",\\\"text\\\":\\\"Link.\\\",\\\"styles\\\":{}}]}]}}]\"},{\"role\":\"system\",\"content\":\"The user asks you to do the following:\"},{\"role\":\"user\",\"content\":\"delete the first paragraph\"},{\"role\":\"system\",\"content\":\"First, determine what part of the document the user is talking about. You SHOULD probably take cursor info into account if needed.\\n EXAMPLE: if user says \\\"below\\\" (without pointing to a specific part of the document) he / she probably indicates the block(s) after the cursor. \\n EXAMPLE: If you want to insert content AT the cursor position (UNLESS indicated otherwise by the user), then you need `referenceId` to point to the block before the cursor with position `after` (or block below and `before`).\\n \\n Prefer updating existing blocks over removing and adding (but this also depends on the user's question).\"}],\"tool_choice\":{\"type\":\"function\",\"function\":{\"name\":\"json\"}},\"tools\":[{\"type\":\"function\",\"function\":{\"name\":\"json\",\"description\":\"Respond with a JSON object.\",\"parameters\":{\"type\":\"object\",\"properties\":{\"operations\":{\"type\":\"array\",\"items\":{\"anyOf\":[{\"type\":\"object\",\"description\":\"Update a block, the new block will replace the existing block.\",\"properties\":{\"type\":{\"type\":\"string\",\"enum\":[\"update\"]},\"id\":{\"type\":\"string\",\"description\":\"id of block to update\"},\"block\":{\"$ref\":\"#/$defs/block\"}},\"required\":[\"type\",\"id\",\"block\"],\"additionalProperties\":false},{\"type\":\"object\",\"description\":\"Insert new blocks\",\"properties\":{\"type\":{\"type\":\"string\",\"enum\":[\"add\"]},\"referenceId\":{\"type\":\"string\",\"description\":\"MUST be an id of a block in the document\"},\"position\":{\"type\":\"string\",\"enum\":[\"before\",\"after\"],\"description\":\"`after` to add blocks AFTER (below) the block with `referenceId`, `before` to add the block BEFORE (above)\"},\"blocks\":{\"items\":{\"$ref\":\"#/$defs/block\"},\"type\":\"array\"}},\"required\":[\"type\",\"referenceId\",\"position\",\"blocks\"],\"additionalProperties\":false},{\"type\":\"object\",\"description\":\"Delete a block\",\"properties\":{\"type\":{\"type\":\"string\",\"enum\":[\"delete\"]},\"id\":{\"type\":\"string\",\"description\":\"id of block to delete\"}},\"required\":[\"type\",\"id\"],\"additionalProperties\":false}]}}},\"additionalProperties\":false,\"required\":[\"operations\"],\"$defs\":{\"styles\":{\"type\":\"object\",\"properties\":{\"bold\":{\"type\":\"boolean\"},\"italic\":{\"type\":\"boolean\"},\"underline\":{\"type\":\"boolean\"},\"strike\":{\"type\":\"boolean\"},\"code\":{\"type\":\"boolean\"},\"textColor\":{\"type\":\"string\"},\"backgroundColor\":{\"type\":\"string\"}},\"additionalProperties\":false},\"styledtext\":{\"type\":\"object\",\"properties\":{\"type\":{\"type\":\"string\",\"enum\":[\"text\"]},\"text\":{\"type\":\"string\"},\"styles\":{\"$ref\":\"#/$defs/styles\"}},\"additionalProperties\":false,\"required\":[\"type\",\"text\"]},\"inlinecontent\":{\"type\":\"array\",\"items\":{\"anyOf\":[{\"type\":\"object\",\"properties\":{\"type\":{\"type\":\"string\",\"enum\":[\"mention\"]},\"props\":{\"type\":\"object\",\"properties\":{\"user\":{\"type\":\"string\"}},\"additionalProperties\":false}},\"additionalProperties\":false,\"required\":[\"type\"]},{\"$ref\":\"#/$defs/styledtext\"},{\"type\":\"object\",\"properties\":{\"type\":{\"type\":\"string\",\"enum\":[\"link\"]},\"content\":{\"type\":\"array\",\"items\":{\"$ref\":\"#/$defs/styledtext\"}},\"href\":{\"type\":\"string\"}},\"additionalProperties\":false,\"required\":[\"type\",\"href\",\"content\"]}]}},\"block\":{\"anyOf\":[{\"type\":\"object\",\"properties\":{\"type\":{\"type\":\"string\",\"enum\":[\"paragraph\",\"quote\",\"bulletListItem\",\"numberedListItem\"]},\"content\":{\"$ref\":\"#/$defs/inlinecontent\"},\"props\":{\"type\":\"object\",\"properties\":{},\"additionalProperties\":false}},\"additionalProperties\":false,\"required\":[\"type\"]},{\"type\":\"object\",\"properties\":{\"type\":{\"type\":\"string\",\"enum\":[\"heading\"]},\"content\":{\"$ref\":\"#/$defs/inlinecontent\"},\"props\":{\"type\":\"object\",\"properties\":{\"level\":{\"type\":\"number\",\"enum\":[1,2,3]}},\"additionalProperties\":false}},\"additionalProperties\":false,\"required\":[\"type\"]},{\"type\":\"object\",\"properties\":{\"type\":{\"type\":\"string\",\"enum\":[\"codeBlock\"]},\"content\":{\"$ref\":\"#/$defs/inlinecontent\"},\"props\":{\"type\":\"object\",\"properties\":{\"language\":{\"type\":\"string\"}},\"additionalProperties\":false}},\"additionalProperties\":false,\"required\":[\"type\"]},{\"type\":\"object\",\"properties\":{\"type\":{\"type\":\"string\",\"enum\":[\"checkListItem\"]},\"content\":{\"$ref\":\"#/$defs/inlinecontent\"},\"props\":{\"type\":\"object\",\"properties\":{\"checked\":{\"type\":\"boolean\"}},\"additionalProperties\":false}},\"additionalProperties\":false,\"required\":[\"type\"]},{\"type\":\"object\",\"properties\":{\"type\":{\"type\":\"string\",\"enum\":[\"table\"]},\"content\":{\"type\":\"object\",\"properties\":{}},\"props\":{\"type\":\"object\",\"properties\":{},\"additionalProperties\":false}},\"additionalProperties\":false,\"required\":[\"type\"]}]}}}}}],\"stream\":true}", + "body": "{\"model\":\"gpt-4o-2024-08-06\",\"temperature\":0,\"messages\":[{\"role\":\"system\",\"content\":\"You're manipulating a text document using JSON blocks. \\n Make sure to follow the json schema provided. When referencing ids they MUST be EXACTLY the same (including the trailing $). \\n This is the document as an array of JSON blocks (the cursor is BETWEEN two blocks as indicated by cursor: true):\"},{\"role\":\"system\",\"content\":\"[{\\\"id\\\":\\\"ref1$\\\",\\\"block\\\":{\\\"id\\\":\\\"ref1\\\",\\\"type\\\":\\\"paragraph\\\",\\\"props\\\":{\\\"textColor\\\":\\\"default\\\",\\\"backgroundColor\\\":\\\"default\\\",\\\"textAlignment\\\":\\\"left\\\"},\\\"content\\\":[{\\\"type\\\":\\\"text\\\",\\\"text\\\":\\\"Hello, world!\\\",\\\"styles\\\":{}}]}},{\\\"cursor\\\":true},{\\\"id\\\":\\\"ref2$\\\",\\\"block\\\":{\\\"id\\\":\\\"ref2\\\",\\\"type\\\":\\\"paragraph\\\",\\\"props\\\":{\\\"textColor\\\":\\\"default\\\",\\\"backgroundColor\\\":\\\"default\\\",\\\"textAlignment\\\":\\\"left\\\"},\\\"content\\\":[{\\\"type\\\":\\\"text\\\",\\\"text\\\":\\\"Hello, \\\",\\\"styles\\\":{}},{\\\"type\\\":\\\"mention\\\",\\\"props\\\":{\\\"user\\\":\\\"John Doe\\\"}},{\\\"type\\\":\\\"text\\\",\\\"text\\\":\\\"! \\\",\\\"styles\\\":{}},{\\\"type\\\":\\\"text\\\",\\\"text\\\":\\\"How are you doing?\\\",\\\"styles\\\":{\\\"bold\\\":true}},{\\\"type\\\":\\\"text\\\",\\\"text\\\":\\\" \\\",\\\"styles\\\":{}},{\\\"type\\\":\\\"text\\\",\\\"text\\\":\\\"This text is blue!\\\",\\\"styles\\\":{\\\"textColor\\\":\\\"blue\\\"}}]}},{\\\"id\\\":\\\"ref3$\\\",\\\"block\\\":{\\\"id\\\":\\\"ref3\\\",\\\"type\\\":\\\"paragraph\\\",\\\"props\\\":{\\\"textColor\\\":\\\"default\\\",\\\"backgroundColor\\\":\\\"default\\\",\\\"textAlignment\\\":\\\"left\\\"},\\\"content\\\":[{\\\"type\\\":\\\"text\\\",\\\"text\\\":\\\"Hello, world! \\\",\\\"styles\\\":{}},{\\\"type\\\":\\\"text\\\",\\\"text\\\":\\\"Bold text. \\\",\\\"styles\\\":{\\\"bold\\\":true}},{\\\"type\\\":\\\"link\\\",\\\"href\\\":\\\"https://www.google.com\\\",\\\"content\\\":[{\\\"type\\\":\\\"text\\\",\\\"text\\\":\\\"Link.\\\",\\\"styles\\\":{}}]}]}}]\"},{\"role\":\"system\",\"content\":\"The user asks you to do the following:\"},{\"role\":\"user\",\"content\":\"delete the first paragraph\"},{\"role\":\"system\",\"content\":\"First, determine what part of the document the user is talking about. You SHOULD probably take cursor info into account if needed.\\n EXAMPLE: if user says \\\"below\\\" (without pointing to a specific part of the document) he / she probably indicates the block(s) after the cursor. \\n EXAMPLE: If you want to insert content AT the cursor position (UNLESS indicated otherwise by the user), then you need `referenceId` to point to the block before the cursor with position `after` (or block below and `before`).\\n \\n Prefer updating existing blocks over removing and adding (but this also depends on the user's question).\"}],\"tool_choice\":{\"type\":\"function\",\"function\":{\"name\":\"json\"}},\"tools\":[{\"type\":\"function\",\"function\":{\"name\":\"json\",\"description\":\"Respond with a JSON object.\",\"parameters\":{\"type\":\"object\",\"properties\":{\"operations\":{\"type\":\"array\",\"items\":{\"anyOf\":[{\"type\":\"object\",\"description\":\"Update a block, the new block will replace the existing block.\",\"properties\":{\"type\":{\"type\":\"string\",\"enum\":[\"update\"]},\"id\":{\"type\":\"string\",\"description\":\"id of block to update\"},\"block\":{\"$ref\":\"#/$defs/block\"}},\"required\":[\"type\",\"id\",\"block\"],\"additionalProperties\":false},{\"type\":\"object\",\"description\":\"Insert new blocks\",\"properties\":{\"type\":{\"type\":\"string\",\"enum\":[\"add\"]},\"referenceId\":{\"type\":\"string\",\"description\":\"MUST be an id of a block in the document\"},\"position\":{\"type\":\"string\",\"enum\":[\"before\",\"after\"],\"description\":\"`after` to add blocks AFTER (below) the block with `referenceId`, `before` to add the block BEFORE (above)\"},\"blocks\":{\"items\":{\"$ref\":\"#/$defs/block\"},\"type\":\"array\"}},\"required\":[\"type\",\"referenceId\",\"position\",\"blocks\"],\"additionalProperties\":false},{\"type\":\"object\",\"description\":\"Delete a block\",\"properties\":{\"type\":{\"type\":\"string\",\"enum\":[\"delete\"]},\"id\":{\"type\":\"string\",\"description\":\"id of block to delete\"}},\"required\":[\"type\",\"id\"],\"additionalProperties\":false}]}}},\"additionalProperties\":false,\"required\":[\"operations\"],\"$defs\":{\"styles\":{\"type\":\"object\",\"properties\":{\"bold\":{\"type\":\"boolean\"},\"italic\":{\"type\":\"boolean\"},\"underline\":{\"type\":\"boolean\"},\"strike\":{\"type\":\"boolean\"},\"code\":{\"type\":\"boolean\"},\"textColor\":{\"type\":\"string\"},\"backgroundColor\":{\"type\":\"string\"}},\"additionalProperties\":false},\"styledtext\":{\"type\":\"object\",\"properties\":{\"type\":{\"type\":\"string\",\"enum\":[\"text\"]},\"text\":{\"type\":\"string\"},\"styles\":{\"$ref\":\"#/$defs/styles\"}},\"additionalProperties\":false,\"required\":[\"type\",\"text\"]},\"inlinecontent\":{\"type\":\"array\",\"items\":{\"anyOf\":[{\"type\":\"object\",\"properties\":{\"type\":{\"type\":\"string\",\"enum\":[\"mention\"]},\"props\":{\"type\":\"object\",\"properties\":{\"user\":{\"type\":\"string\"}},\"additionalProperties\":false}},\"additionalProperties\":false,\"required\":[\"type\"]},{\"$ref\":\"#/$defs/styledtext\"},{\"type\":\"object\",\"properties\":{\"type\":{\"type\":\"string\",\"enum\":[\"link\"]},\"content\":{\"type\":\"array\",\"items\":{\"$ref\":\"#/$defs/styledtext\"}},\"href\":{\"type\":\"string\"}},\"additionalProperties\":false,\"required\":[\"type\",\"href\",\"content\"]}]}},\"block\":{\"anyOf\":[{\"type\":\"object\",\"properties\":{\"type\":{\"type\":\"string\",\"enum\":[\"paragraph\",\"quote\",\"toggleListItem\",\"bulletListItem\",\"numberedListItem\"]},\"content\":{\"$ref\":\"#/$defs/inlinecontent\"},\"props\":{\"type\":\"object\",\"properties\":{},\"additionalProperties\":false}},\"additionalProperties\":false,\"required\":[\"type\"]},{\"type\":\"object\",\"properties\":{\"type\":{\"type\":\"string\",\"enum\":[\"heading\"]},\"content\":{\"$ref\":\"#/$defs/inlinecontent\"},\"props\":{\"type\":\"object\",\"properties\":{\"level\":{\"type\":\"number\",\"enum\":[1,2,3]},\"isTogglable\":{\"type\":\"boolean\"}},\"additionalProperties\":false}},\"additionalProperties\":false,\"required\":[\"type\"]},{\"type\":\"object\",\"properties\":{\"type\":{\"type\":\"string\",\"enum\":[\"codeBlock\"]},\"content\":{\"$ref\":\"#/$defs/inlinecontent\"},\"props\":{\"type\":\"object\",\"properties\":{\"language\":{\"type\":\"string\"}},\"additionalProperties\":false}},\"additionalProperties\":false,\"required\":[\"type\"]},{\"type\":\"object\",\"properties\":{\"type\":{\"type\":\"string\",\"enum\":[\"checkListItem\"]},\"content\":{\"$ref\":\"#/$defs/inlinecontent\"},\"props\":{\"type\":\"object\",\"properties\":{\"checked\":{\"type\":\"boolean\"}},\"additionalProperties\":false}},\"additionalProperties\":false,\"required\":[\"type\"]},{\"type\":\"object\",\"properties\":{\"type\":{\"type\":\"string\",\"enum\":[\"table\"]},\"content\":{\"type\":\"object\",\"properties\":{}},\"props\":{\"type\":\"object\",\"properties\":{},\"additionalProperties\":false}},\"additionalProperties\":false,\"required\":[\"type\"]}]}}}}}],\"stream\":true}", "headers": [], "cookies": [] }, "response": { "status": 200, "statusText": "", - "body": "data: {\"id\":\"chatcmpl-BgV59ubyj7WdB1g9bDEyBOPr3rEwf\",\"object\":\"chat.completion.chunk\",\"created\":1749468955,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_07871e2ad8\",\"choices\":[{\"index\":0,\"delta\":{\"role\":\"assistant\",\"content\":null,\"tool_calls\":[{\"index\":0,\"id\":\"call_6SxMBetMYnztoJarngqBEDav\",\"type\":\"function\",\"function\":{\"name\":\"json\",\"arguments\":\"\"}}],\"refusal\":null},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BgV59ubyj7WdB1g9bDEyBOPr3rEwf\",\"object\":\"chat.completion.chunk\",\"created\":1749468955,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_07871e2ad8\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"{\\\"\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BgV59ubyj7WdB1g9bDEyBOPr3rEwf\",\"object\":\"chat.completion.chunk\",\"created\":1749468955,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_07871e2ad8\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"operations\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BgV59ubyj7WdB1g9bDEyBOPr3rEwf\",\"object\":\"chat.completion.chunk\",\"created\":1749468955,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_07871e2ad8\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"\\\":[\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BgV59ubyj7WdB1g9bDEyBOPr3rEwf\",\"object\":\"chat.completion.chunk\",\"created\":1749468955,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_07871e2ad8\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"{\\\"\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BgV59ubyj7WdB1g9bDEyBOPr3rEwf\",\"object\":\"chat.completion.chunk\",\"created\":1749468955,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_07871e2ad8\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"type\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BgV59ubyj7WdB1g9bDEyBOPr3rEwf\",\"object\":\"chat.completion.chunk\",\"created\":1749468955,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_07871e2ad8\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"\\\":\\\"\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BgV59ubyj7WdB1g9bDEyBOPr3rEwf\",\"object\":\"chat.completion.chunk\",\"created\":1749468955,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_07871e2ad8\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"delete\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BgV59ubyj7WdB1g9bDEyBOPr3rEwf\",\"object\":\"chat.completion.chunk\",\"created\":1749468955,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_07871e2ad8\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"\\\",\\\"\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BgV59ubyj7WdB1g9bDEyBOPr3rEwf\",\"object\":\"chat.completion.chunk\",\"created\":1749468955,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_07871e2ad8\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"id\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BgV59ubyj7WdB1g9bDEyBOPr3rEwf\",\"object\":\"chat.completion.chunk\",\"created\":1749468955,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_07871e2ad8\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"\\\":\\\"\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BgV59ubyj7WdB1g9bDEyBOPr3rEwf\",\"object\":\"chat.completion.chunk\",\"created\":1749468955,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_07871e2ad8\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"ref\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BgV59ubyj7WdB1g9bDEyBOPr3rEwf\",\"object\":\"chat.completion.chunk\",\"created\":1749468955,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_07871e2ad8\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"1\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BgV59ubyj7WdB1g9bDEyBOPr3rEwf\",\"object\":\"chat.completion.chunk\",\"created\":1749468955,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_07871e2ad8\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"$\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BgV59ubyj7WdB1g9bDEyBOPr3rEwf\",\"object\":\"chat.completion.chunk\",\"created\":1749468955,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_07871e2ad8\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"\\\"}\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BgV59ubyj7WdB1g9bDEyBOPr3rEwf\",\"object\":\"chat.completion.chunk\",\"created\":1749468955,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_07871e2ad8\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"]}\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BgV59ubyj7WdB1g9bDEyBOPr3rEwf\",\"object\":\"chat.completion.chunk\",\"created\":1749468955,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_07871e2ad8\",\"choices\":[{\"index\":0,\"delta\":{},\"logprobs\":null,\"finish_reason\":\"stop\"}]}\n\ndata: [DONE]\n\n", + "body": "data: {\"id\":\"chatcmpl-BhXnUW3uC9xZGOhENcPfOi4x0DuKO\",\"object\":\"chat.completion.chunk\",\"created\":1749717720,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_a288987b44\",\"choices\":[{\"index\":0,\"delta\":{\"role\":\"assistant\",\"content\":null,\"tool_calls\":[{\"index\":0,\"id\":\"call_wwC0v7leKWcaMmal1UuCOxb9\",\"type\":\"function\",\"function\":{\"name\":\"json\",\"arguments\":\"\"}}],\"refusal\":null},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BhXnUW3uC9xZGOhENcPfOi4x0DuKO\",\"object\":\"chat.completion.chunk\",\"created\":1749717720,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_a288987b44\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"{\\\"\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BhXnUW3uC9xZGOhENcPfOi4x0DuKO\",\"object\":\"chat.completion.chunk\",\"created\":1749717720,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_a288987b44\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"operations\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BhXnUW3uC9xZGOhENcPfOi4x0DuKO\",\"object\":\"chat.completion.chunk\",\"created\":1749717720,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_a288987b44\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"\\\":[\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BhXnUW3uC9xZGOhENcPfOi4x0DuKO\",\"object\":\"chat.completion.chunk\",\"created\":1749717720,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_a288987b44\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"{\\\"\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BhXnUW3uC9xZGOhENcPfOi4x0DuKO\",\"object\":\"chat.completion.chunk\",\"created\":1749717720,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_a288987b44\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"type\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BhXnUW3uC9xZGOhENcPfOi4x0DuKO\",\"object\":\"chat.completion.chunk\",\"created\":1749717720,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_a288987b44\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"\\\":\\\"\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BhXnUW3uC9xZGOhENcPfOi4x0DuKO\",\"object\":\"chat.completion.chunk\",\"created\":1749717720,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_a288987b44\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"delete\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BhXnUW3uC9xZGOhENcPfOi4x0DuKO\",\"object\":\"chat.completion.chunk\",\"created\":1749717720,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_a288987b44\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"\\\",\\\"\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BhXnUW3uC9xZGOhENcPfOi4x0DuKO\",\"object\":\"chat.completion.chunk\",\"created\":1749717720,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_a288987b44\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"id\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BhXnUW3uC9xZGOhENcPfOi4x0DuKO\",\"object\":\"chat.completion.chunk\",\"created\":1749717720,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_a288987b44\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"\\\":\\\"\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BhXnUW3uC9xZGOhENcPfOi4x0DuKO\",\"object\":\"chat.completion.chunk\",\"created\":1749717720,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_a288987b44\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"ref\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BhXnUW3uC9xZGOhENcPfOi4x0DuKO\",\"object\":\"chat.completion.chunk\",\"created\":1749717720,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_a288987b44\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"1\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BhXnUW3uC9xZGOhENcPfOi4x0DuKO\",\"object\":\"chat.completion.chunk\",\"created\":1749717720,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_a288987b44\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"$\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BhXnUW3uC9xZGOhENcPfOi4x0DuKO\",\"object\":\"chat.completion.chunk\",\"created\":1749717720,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_a288987b44\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"\\\"}\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BhXnUW3uC9xZGOhENcPfOi4x0DuKO\",\"object\":\"chat.completion.chunk\",\"created\":1749717720,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_a288987b44\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"]}\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BhXnUW3uC9xZGOhENcPfOi4x0DuKO\",\"object\":\"chat.completion.chunk\",\"created\":1749717720,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_a288987b44\",\"choices\":[{\"index\":0,\"delta\":{},\"logprobs\":null,\"finish_reason\":\"stop\"}]}\n\ndata: [DONE]\n\n", "headers": [] } } \ No newline at end of file diff --git a/packages/xl-ai/src/api/formats/json/__snapshots__/json.test.ts/Update/__msw_snapshots__/openai.chat/gpt-4o-2024-08-06 (non-streaming)/clear block formatting_1_5dc94725d66fef1cf55ecdd13d6215db.json b/packages/xl-ai/src/api/formats/json/__snapshots__/json.test.ts/Update/__msw_snapshots__/openai.chat/gpt-4o-2024-08-06 (non-streaming)/clear block formatting_1_f664ec2dfaf4e2eced9ec208120e58f5.json similarity index 72% rename from packages/xl-ai/src/api/formats/json/__snapshots__/json.test.ts/Update/__msw_snapshots__/openai.chat/gpt-4o-2024-08-06 (non-streaming)/clear block formatting_1_5dc94725d66fef1cf55ecdd13d6215db.json rename to packages/xl-ai/src/api/formats/json/__snapshots__/json.test.ts/Update/__msw_snapshots__/openai.chat/gpt-4o-2024-08-06 (non-streaming)/clear block formatting_1_f664ec2dfaf4e2eced9ec208120e58f5.json index 289155e896..c17fdded88 100644 --- a/packages/xl-ai/src/api/formats/json/__snapshots__/json.test.ts/Update/__msw_snapshots__/openai.chat/gpt-4o-2024-08-06 (non-streaming)/clear block formatting_1_5dc94725d66fef1cf55ecdd13d6215db.json +++ b/packages/xl-ai/src/api/formats/json/__snapshots__/json.test.ts/Update/__msw_snapshots__/openai.chat/gpt-4o-2024-08-06 (non-streaming)/clear block formatting_1_f664ec2dfaf4e2eced9ec208120e58f5.json @@ -2,14 +2,14 @@ "request": { "method": "POST", "url": "https://localhost:3000/ai?provider=openai&url=https%3A%2F%2Fapi.openai.com%2Fv1%2Fchat%2Fcompletions", - "body": "{\"model\":\"gpt-4o-2024-08-06\",\"temperature\":0,\"messages\":[{\"role\":\"system\",\"content\":\"You're manipulating a text document using JSON blocks. \\n Make sure to follow the json schema provided. When referencing ids they MUST be EXACTLY the same (including the trailing $). \\n This is the document as an array of JSON blocks (the cursor is BETWEEN two blocks as indicated by cursor: true):\"},{\"role\":\"system\",\"content\":\"[{\\\"id\\\":\\\"ref1$\\\",\\\"block\\\":{\\\"id\\\":\\\"ref1\\\",\\\"type\\\":\\\"paragraph\\\",\\\"props\\\":{\\\"textColor\\\":\\\"default\\\",\\\"backgroundColor\\\":\\\"red\\\",\\\"textAlignment\\\":\\\"left\\\"},\\\"content\\\":[{\\\"type\\\":\\\"text\\\",\\\"text\\\":\\\"Colored text\\\",\\\"styles\\\":{}}]}},{\\\"cursor\\\":true},{\\\"id\\\":\\\"ref2$\\\",\\\"block\\\":{\\\"id\\\":\\\"ref2\\\",\\\"type\\\":\\\"paragraph\\\",\\\"props\\\":{\\\"textColor\\\":\\\"default\\\",\\\"backgroundColor\\\":\\\"default\\\",\\\"textAlignment\\\":\\\"right\\\"},\\\"content\\\":[{\\\"type\\\":\\\"text\\\",\\\"text\\\":\\\"Aligned text\\\",\\\"styles\\\":{}}]}}]\"},{\"role\":\"system\",\"content\":\"The user asks you to do the following:\"},{\"role\":\"user\",\"content\":\"clear the formatting (colors and alignment)\"},{\"role\":\"system\",\"content\":\"First, determine what part of the document the user is talking about. You SHOULD probably take cursor info into account if needed.\\n EXAMPLE: if user says \\\"below\\\" (without pointing to a specific part of the document) he / she probably indicates the block(s) after the cursor. \\n EXAMPLE: If you want to insert content AT the cursor position (UNLESS indicated otherwise by the user), then you need `referenceId` to point to the block before the cursor with position `after` (or block below and `before`).\\n \\n Prefer updating existing blocks over removing and adding (but this also depends on the user's question).\"}],\"tool_choice\":{\"type\":\"function\",\"function\":{\"name\":\"json\"}},\"tools\":[{\"type\":\"function\",\"function\":{\"name\":\"json\",\"description\":\"Respond with a JSON object.\",\"parameters\":{\"type\":\"object\",\"properties\":{\"operations\":{\"type\":\"array\",\"items\":{\"anyOf\":[{\"type\":\"object\",\"description\":\"Update a block, the new block will replace the existing block.\",\"properties\":{\"type\":{\"type\":\"string\",\"enum\":[\"update\"]},\"id\":{\"type\":\"string\",\"description\":\"id of block to update\"},\"block\":{\"$ref\":\"#/$defs/block\"}},\"required\":[\"type\",\"id\",\"block\"],\"additionalProperties\":false},{\"type\":\"object\",\"description\":\"Insert new blocks\",\"properties\":{\"type\":{\"type\":\"string\",\"enum\":[\"add\"]},\"referenceId\":{\"type\":\"string\",\"description\":\"MUST be an id of a block in the document\"},\"position\":{\"type\":\"string\",\"enum\":[\"before\",\"after\"],\"description\":\"`after` to add blocks AFTER (below) the block with `referenceId`, `before` to add the block BEFORE (above)\"},\"blocks\":{\"items\":{\"$ref\":\"#/$defs/block\"},\"type\":\"array\"}},\"required\":[\"type\",\"referenceId\",\"position\",\"blocks\"],\"additionalProperties\":false},{\"type\":\"object\",\"description\":\"Delete a block\",\"properties\":{\"type\":{\"type\":\"string\",\"enum\":[\"delete\"]},\"id\":{\"type\":\"string\",\"description\":\"id of block to delete\"}},\"required\":[\"type\",\"id\"],\"additionalProperties\":false}]}}},\"additionalProperties\":false,\"required\":[\"operations\"],\"$defs\":{\"styles\":{\"type\":\"object\",\"properties\":{\"bold\":{\"type\":\"boolean\"},\"italic\":{\"type\":\"boolean\"},\"underline\":{\"type\":\"boolean\"},\"strike\":{\"type\":\"boolean\"},\"code\":{\"type\":\"boolean\"},\"textColor\":{\"type\":\"string\"},\"backgroundColor\":{\"type\":\"string\"}},\"additionalProperties\":false},\"styledtext\":{\"type\":\"object\",\"properties\":{\"type\":{\"type\":\"string\",\"enum\":[\"text\"]},\"text\":{\"type\":\"string\"},\"styles\":{\"$ref\":\"#/$defs/styles\"}},\"additionalProperties\":false,\"required\":[\"type\",\"text\"]},\"inlinecontent\":{\"type\":\"array\",\"items\":{\"anyOf\":[{\"type\":\"object\",\"properties\":{\"type\":{\"type\":\"string\",\"enum\":[\"mention\"]},\"props\":{\"type\":\"object\",\"properties\":{\"user\":{\"type\":\"string\"}},\"additionalProperties\":false}},\"additionalProperties\":false,\"required\":[\"type\"]},{\"$ref\":\"#/$defs/styledtext\"},{\"type\":\"object\",\"properties\":{\"type\":{\"type\":\"string\",\"enum\":[\"link\"]},\"content\":{\"type\":\"array\",\"items\":{\"$ref\":\"#/$defs/styledtext\"}},\"href\":{\"type\":\"string\"}},\"additionalProperties\":false,\"required\":[\"type\",\"href\",\"content\"]}]}},\"block\":{\"anyOf\":[{\"type\":\"object\",\"properties\":{\"type\":{\"type\":\"string\",\"enum\":[\"paragraph\",\"quote\",\"bulletListItem\",\"numberedListItem\"]},\"content\":{\"$ref\":\"#/$defs/inlinecontent\"},\"props\":{\"type\":\"object\",\"properties\":{},\"additionalProperties\":false}},\"additionalProperties\":false,\"required\":[\"type\"]},{\"type\":\"object\",\"properties\":{\"type\":{\"type\":\"string\",\"enum\":[\"heading\"]},\"content\":{\"$ref\":\"#/$defs/inlinecontent\"},\"props\":{\"type\":\"object\",\"properties\":{\"level\":{\"type\":\"number\",\"enum\":[1,2,3]}},\"additionalProperties\":false}},\"additionalProperties\":false,\"required\":[\"type\"]},{\"type\":\"object\",\"properties\":{\"type\":{\"type\":\"string\",\"enum\":[\"codeBlock\"]},\"content\":{\"$ref\":\"#/$defs/inlinecontent\"},\"props\":{\"type\":\"object\",\"properties\":{\"language\":{\"type\":\"string\"}},\"additionalProperties\":false}},\"additionalProperties\":false,\"required\":[\"type\"]},{\"type\":\"object\",\"properties\":{\"type\":{\"type\":\"string\",\"enum\":[\"checkListItem\"]},\"content\":{\"$ref\":\"#/$defs/inlinecontent\"},\"props\":{\"type\":\"object\",\"properties\":{\"checked\":{\"type\":\"boolean\"}},\"additionalProperties\":false}},\"additionalProperties\":false,\"required\":[\"type\"]},{\"type\":\"object\",\"properties\":{\"type\":{\"type\":\"string\",\"enum\":[\"table\"]},\"content\":{\"type\":\"object\",\"properties\":{}},\"props\":{\"type\":\"object\",\"properties\":{},\"additionalProperties\":false}},\"additionalProperties\":false,\"required\":[\"type\"]}]}}}}}]}", + "body": "{\"model\":\"gpt-4o-2024-08-06\",\"temperature\":0,\"messages\":[{\"role\":\"system\",\"content\":\"You're manipulating a text document using JSON blocks. \\n Make sure to follow the json schema provided. When referencing ids they MUST be EXACTLY the same (including the trailing $). \\n This is the document as an array of JSON blocks (the cursor is BETWEEN two blocks as indicated by cursor: true):\"},{\"role\":\"system\",\"content\":\"[{\\\"id\\\":\\\"ref1$\\\",\\\"block\\\":{\\\"id\\\":\\\"ref1\\\",\\\"type\\\":\\\"paragraph\\\",\\\"props\\\":{\\\"textColor\\\":\\\"default\\\",\\\"backgroundColor\\\":\\\"red\\\",\\\"textAlignment\\\":\\\"left\\\"},\\\"content\\\":[{\\\"type\\\":\\\"text\\\",\\\"text\\\":\\\"Colored text\\\",\\\"styles\\\":{}}]}},{\\\"cursor\\\":true},{\\\"id\\\":\\\"ref2$\\\",\\\"block\\\":{\\\"id\\\":\\\"ref2\\\",\\\"type\\\":\\\"paragraph\\\",\\\"props\\\":{\\\"textColor\\\":\\\"default\\\",\\\"backgroundColor\\\":\\\"default\\\",\\\"textAlignment\\\":\\\"right\\\"},\\\"content\\\":[{\\\"type\\\":\\\"text\\\",\\\"text\\\":\\\"Aligned text\\\",\\\"styles\\\":{}}]}}]\"},{\"role\":\"system\",\"content\":\"The user asks you to do the following:\"},{\"role\":\"user\",\"content\":\"clear the formatting (colors and alignment)\"},{\"role\":\"system\",\"content\":\"First, determine what part of the document the user is talking about. You SHOULD probably take cursor info into account if needed.\\n EXAMPLE: if user says \\\"below\\\" (without pointing to a specific part of the document) he / she probably indicates the block(s) after the cursor. \\n EXAMPLE: If you want to insert content AT the cursor position (UNLESS indicated otherwise by the user), then you need `referenceId` to point to the block before the cursor with position `after` (or block below and `before`).\\n \\n Prefer updating existing blocks over removing and adding (but this also depends on the user's question).\"}],\"tool_choice\":{\"type\":\"function\",\"function\":{\"name\":\"json\"}},\"tools\":[{\"type\":\"function\",\"function\":{\"name\":\"json\",\"description\":\"Respond with a JSON object.\",\"parameters\":{\"type\":\"object\",\"properties\":{\"operations\":{\"type\":\"array\",\"items\":{\"anyOf\":[{\"type\":\"object\",\"description\":\"Update a block, the new block will replace the existing block.\",\"properties\":{\"type\":{\"type\":\"string\",\"enum\":[\"update\"]},\"id\":{\"type\":\"string\",\"description\":\"id of block to update\"},\"block\":{\"$ref\":\"#/$defs/block\"}},\"required\":[\"type\",\"id\",\"block\"],\"additionalProperties\":false},{\"type\":\"object\",\"description\":\"Insert new blocks\",\"properties\":{\"type\":{\"type\":\"string\",\"enum\":[\"add\"]},\"referenceId\":{\"type\":\"string\",\"description\":\"MUST be an id of a block in the document\"},\"position\":{\"type\":\"string\",\"enum\":[\"before\",\"after\"],\"description\":\"`after` to add blocks AFTER (below) the block with `referenceId`, `before` to add the block BEFORE (above)\"},\"blocks\":{\"items\":{\"$ref\":\"#/$defs/block\"},\"type\":\"array\"}},\"required\":[\"type\",\"referenceId\",\"position\",\"blocks\"],\"additionalProperties\":false},{\"type\":\"object\",\"description\":\"Delete a block\",\"properties\":{\"type\":{\"type\":\"string\",\"enum\":[\"delete\"]},\"id\":{\"type\":\"string\",\"description\":\"id of block to delete\"}},\"required\":[\"type\",\"id\"],\"additionalProperties\":false}]}}},\"additionalProperties\":false,\"required\":[\"operations\"],\"$defs\":{\"styles\":{\"type\":\"object\",\"properties\":{\"bold\":{\"type\":\"boolean\"},\"italic\":{\"type\":\"boolean\"},\"underline\":{\"type\":\"boolean\"},\"strike\":{\"type\":\"boolean\"},\"code\":{\"type\":\"boolean\"},\"textColor\":{\"type\":\"string\"},\"backgroundColor\":{\"type\":\"string\"}},\"additionalProperties\":false},\"styledtext\":{\"type\":\"object\",\"properties\":{\"type\":{\"type\":\"string\",\"enum\":[\"text\"]},\"text\":{\"type\":\"string\"},\"styles\":{\"$ref\":\"#/$defs/styles\"}},\"additionalProperties\":false,\"required\":[\"type\",\"text\"]},\"inlinecontent\":{\"type\":\"array\",\"items\":{\"anyOf\":[{\"type\":\"object\",\"properties\":{\"type\":{\"type\":\"string\",\"enum\":[\"mention\"]},\"props\":{\"type\":\"object\",\"properties\":{\"user\":{\"type\":\"string\"}},\"additionalProperties\":false}},\"additionalProperties\":false,\"required\":[\"type\"]},{\"$ref\":\"#/$defs/styledtext\"},{\"type\":\"object\",\"properties\":{\"type\":{\"type\":\"string\",\"enum\":[\"link\"]},\"content\":{\"type\":\"array\",\"items\":{\"$ref\":\"#/$defs/styledtext\"}},\"href\":{\"type\":\"string\"}},\"additionalProperties\":false,\"required\":[\"type\",\"href\",\"content\"]}]}},\"block\":{\"anyOf\":[{\"type\":\"object\",\"properties\":{\"type\":{\"type\":\"string\",\"enum\":[\"paragraph\",\"quote\",\"toggleListItem\",\"bulletListItem\",\"numberedListItem\"]},\"content\":{\"$ref\":\"#/$defs/inlinecontent\"},\"props\":{\"type\":\"object\",\"properties\":{},\"additionalProperties\":false}},\"additionalProperties\":false,\"required\":[\"type\"]},{\"type\":\"object\",\"properties\":{\"type\":{\"type\":\"string\",\"enum\":[\"heading\"]},\"content\":{\"$ref\":\"#/$defs/inlinecontent\"},\"props\":{\"type\":\"object\",\"properties\":{\"level\":{\"type\":\"number\",\"enum\":[1,2,3]},\"isTogglable\":{\"type\":\"boolean\"}},\"additionalProperties\":false}},\"additionalProperties\":false,\"required\":[\"type\"]},{\"type\":\"object\",\"properties\":{\"type\":{\"type\":\"string\",\"enum\":[\"codeBlock\"]},\"content\":{\"$ref\":\"#/$defs/inlinecontent\"},\"props\":{\"type\":\"object\",\"properties\":{\"language\":{\"type\":\"string\"}},\"additionalProperties\":false}},\"additionalProperties\":false,\"required\":[\"type\"]},{\"type\":\"object\",\"properties\":{\"type\":{\"type\":\"string\",\"enum\":[\"checkListItem\"]},\"content\":{\"$ref\":\"#/$defs/inlinecontent\"},\"props\":{\"type\":\"object\",\"properties\":{\"checked\":{\"type\":\"boolean\"}},\"additionalProperties\":false}},\"additionalProperties\":false,\"required\":[\"type\"]},{\"type\":\"object\",\"properties\":{\"type\":{\"type\":\"string\",\"enum\":[\"table\"]},\"content\":{\"type\":\"object\",\"properties\":{}},\"props\":{\"type\":\"object\",\"properties\":{},\"additionalProperties\":false}},\"additionalProperties\":false,\"required\":[\"type\"]}]}}}}}]}", "headers": [], "cookies": [] }, "response": { "status": 200, "statusText": "", - "body": "{\n \"id\": \"chatcmpl-BgV5sWTWZmdH2guSEeXK0qvWPD0nX\",\n \"object\": \"chat.completion\",\n \"created\": 1749469000,\n \"model\": \"gpt-4o-2024-08-06\",\n \"choices\": [\n {\n \"index\": 0,\n \"message\": {\n \"role\": \"assistant\",\n \"content\": null,\n \"tool_calls\": [\n {\n \"id\": \"call_s6VDuvsupBRZxqveAlfYCdRU\",\n \"type\": \"function\",\n \"function\": {\n \"name\": \"json\",\n \"arguments\": \"{\\\"operations\\\":[{\\\"type\\\":\\\"update\\\",\\\"id\\\":\\\"ref1$\\\",\\\"block\\\":{\\\"type\\\":\\\"paragraph\\\",\\\"content\\\":[{\\\"type\\\":\\\"text\\\",\\\"text\\\":\\\"Colored text\\\",\\\"styles\\\":{}}]}},{\\\"type\\\":\\\"update\\\",\\\"id\\\":\\\"ref2$\\\",\\\"block\\\":{\\\"type\\\":\\\"paragraph\\\",\\\"content\\\":[{\\\"type\\\":\\\"text\\\",\\\"text\\\":\\\"Aligned text\\\",\\\"styles\\\":{}}]}}]}\"\n }\n }\n ],\n \"refusal\": null,\n \"annotations\": []\n },\n \"logprobs\": null,\n \"finish_reason\": \"stop\"\n }\n ],\n \"usage\": {\n \"prompt_tokens\": 987,\n \"completion_tokens\": 73,\n \"total_tokens\": 1060,\n \"prompt_tokens_details\": {\n \"cached_tokens\": 0,\n \"audio_tokens\": 0\n },\n \"completion_tokens_details\": {\n \"reasoning_tokens\": 0,\n \"audio_tokens\": 0,\n \"accepted_prediction_tokens\": 0,\n \"rejected_prediction_tokens\": 0\n }\n },\n \"service_tier\": \"default\",\n \"system_fingerprint\": \"fp_07871e2ad8\"\n}\n", + "body": "{\n \"id\": \"chatcmpl-BhXo4j9UeGlvhN4SmqYbnKjmMLLp0\",\n \"object\": \"chat.completion\",\n \"created\": 1749717756,\n \"model\": \"gpt-4o-2024-08-06\",\n \"choices\": [\n {\n \"index\": 0,\n \"message\": {\n \"role\": \"assistant\",\n \"content\": null,\n \"tool_calls\": [\n {\n \"id\": \"call_Jo2BtB4I08gy5b4WWhXTGPCq\",\n \"type\": \"function\",\n \"function\": {\n \"name\": \"json\",\n \"arguments\": \"{\\\"operations\\\":[{\\\"type\\\":\\\"update\\\",\\\"id\\\":\\\"ref1$\\\",\\\"block\\\":{\\\"type\\\":\\\"paragraph\\\",\\\"content\\\":[{\\\"type\\\":\\\"text\\\",\\\"text\\\":\\\"Colored text\\\",\\\"styles\\\":{}}]}},{\\\"type\\\":\\\"update\\\",\\\"id\\\":\\\"ref2$\\\",\\\"block\\\":{\\\"type\\\":\\\"paragraph\\\",\\\"content\\\":[{\\\"type\\\":\\\"text\\\",\\\"text\\\":\\\"Aligned text\\\",\\\"styles\\\":{}}]}}]}\"\n }\n }\n ],\n \"refusal\": null,\n \"annotations\": []\n },\n \"logprobs\": null,\n \"finish_reason\": \"stop\"\n }\n ],\n \"usage\": {\n \"prompt_tokens\": 1015,\n \"completion_tokens\": 73,\n \"total_tokens\": 1088,\n \"prompt_tokens_details\": {\n \"cached_tokens\": 0,\n \"audio_tokens\": 0\n },\n \"completion_tokens_details\": {\n \"reasoning_tokens\": 0,\n \"audio_tokens\": 0,\n \"accepted_prediction_tokens\": 0,\n \"rejected_prediction_tokens\": 0\n }\n },\n \"service_tier\": \"default\",\n \"system_fingerprint\": \"fp_a288987b44\"\n}\n", "headers": [] } } \ No newline at end of file diff --git a/packages/xl-ai/src/api/formats/json/__snapshots__/json.test.ts/Update/__msw_snapshots__/openai.chat/gpt-4o-2024-08-06 (non-streaming)/drop mark and link and change text within mark_1_4940825808a5cebfe1112339d0e46b02.json b/packages/xl-ai/src/api/formats/json/__snapshots__/json.test.ts/Update/__msw_snapshots__/openai.chat/gpt-4o-2024-08-06 (non-streaming)/drop mark and link and change text within mark_1_7acde107f819f02c23027cf695038987.json similarity index 79% rename from packages/xl-ai/src/api/formats/json/__snapshots__/json.test.ts/Update/__msw_snapshots__/openai.chat/gpt-4o-2024-08-06 (non-streaming)/drop mark and link and change text within mark_1_4940825808a5cebfe1112339d0e46b02.json rename to packages/xl-ai/src/api/formats/json/__snapshots__/json.test.ts/Update/__msw_snapshots__/openai.chat/gpt-4o-2024-08-06 (non-streaming)/drop mark and link and change text within mark_1_7acde107f819f02c23027cf695038987.json index 57205d78f6..67f267e491 100644 --- a/packages/xl-ai/src/api/formats/json/__snapshots__/json.test.ts/Update/__msw_snapshots__/openai.chat/gpt-4o-2024-08-06 (non-streaming)/drop mark and link and change text within mark_1_4940825808a5cebfe1112339d0e46b02.json +++ b/packages/xl-ai/src/api/formats/json/__snapshots__/json.test.ts/Update/__msw_snapshots__/openai.chat/gpt-4o-2024-08-06 (non-streaming)/drop mark and link and change text within mark_1_7acde107f819f02c23027cf695038987.json @@ -2,14 +2,14 @@ "request": { "method": "POST", "url": "https://localhost:3000/ai?provider=openai&url=https%3A%2F%2Fapi.openai.com%2Fv1%2Fchat%2Fcompletions", - "body": "{\"model\":\"gpt-4o-2024-08-06\",\"temperature\":0,\"messages\":[{\"role\":\"system\",\"content\":\"You're manipulating a text document using JSON blocks. \\n Make sure to follow the json schema provided. When referencing ids they MUST be EXACTLY the same (including the trailing $). \\n This is the document as an array of JSON blocks (the cursor is BETWEEN two blocks as indicated by cursor: true):\"},{\"role\":\"system\",\"content\":\"[{\\\"id\\\":\\\"ref1$\\\",\\\"block\\\":{\\\"id\\\":\\\"ref1\\\",\\\"type\\\":\\\"paragraph\\\",\\\"props\\\":{\\\"textColor\\\":\\\"default\\\",\\\"backgroundColor\\\":\\\"default\\\",\\\"textAlignment\\\":\\\"left\\\"},\\\"content\\\":[{\\\"type\\\":\\\"text\\\",\\\"text\\\":\\\"Hello, world!\\\",\\\"styles\\\":{}}]}},{\\\"cursor\\\":true},{\\\"id\\\":\\\"ref2$\\\",\\\"block\\\":{\\\"id\\\":\\\"ref2\\\",\\\"type\\\":\\\"paragraph\\\",\\\"props\\\":{\\\"textColor\\\":\\\"default\\\",\\\"backgroundColor\\\":\\\"default\\\",\\\"textAlignment\\\":\\\"left\\\"},\\\"content\\\":[{\\\"type\\\":\\\"text\\\",\\\"text\\\":\\\"Hello, \\\",\\\"styles\\\":{}},{\\\"type\\\":\\\"mention\\\",\\\"props\\\":{\\\"user\\\":\\\"John Doe\\\"}},{\\\"type\\\":\\\"text\\\",\\\"text\\\":\\\"! \\\",\\\"styles\\\":{}},{\\\"type\\\":\\\"text\\\",\\\"text\\\":\\\"How are you doing?\\\",\\\"styles\\\":{\\\"bold\\\":true}},{\\\"type\\\":\\\"text\\\",\\\"text\\\":\\\" \\\",\\\"styles\\\":{}},{\\\"type\\\":\\\"text\\\",\\\"text\\\":\\\"This text is blue!\\\",\\\"styles\\\":{\\\"textColor\\\":\\\"blue\\\"}}]}},{\\\"id\\\":\\\"ref3$\\\",\\\"block\\\":{\\\"id\\\":\\\"ref3\\\",\\\"type\\\":\\\"paragraph\\\",\\\"props\\\":{\\\"textColor\\\":\\\"default\\\",\\\"backgroundColor\\\":\\\"default\\\",\\\"textAlignment\\\":\\\"left\\\"},\\\"content\\\":[{\\\"type\\\":\\\"text\\\",\\\"text\\\":\\\"Hello, world! \\\",\\\"styles\\\":{}},{\\\"type\\\":\\\"text\\\",\\\"text\\\":\\\"Bold text. \\\",\\\"styles\\\":{\\\"bold\\\":true}},{\\\"type\\\":\\\"link\\\",\\\"href\\\":\\\"https://www.google.com\\\",\\\"content\\\":[{\\\"type\\\":\\\"text\\\",\\\"text\\\":\\\"Link.\\\",\\\"styles\\\":{}}]}]}}]\"},{\"role\":\"system\",\"content\":\"The user asks you to do the following:\"},{\"role\":\"user\",\"content\":\"change the last paragraph to 'Hi, world! Bold the text. Link.' without any markup like bold or link\"},{\"role\":\"system\",\"content\":\"First, determine what part of the document the user is talking about. You SHOULD probably take cursor info into account if needed.\\n EXAMPLE: if user says \\\"below\\\" (without pointing to a specific part of the document) he / she probably indicates the block(s) after the cursor. \\n EXAMPLE: If you want to insert content AT the cursor position (UNLESS indicated otherwise by the user), then you need `referenceId` to point to the block before the cursor with position `after` (or block below and `before`).\\n \\n Prefer updating existing blocks over removing and adding (but this also depends on the user's question).\"}],\"tool_choice\":{\"type\":\"function\",\"function\":{\"name\":\"json\"}},\"tools\":[{\"type\":\"function\",\"function\":{\"name\":\"json\",\"description\":\"Respond with a JSON object.\",\"parameters\":{\"type\":\"object\",\"properties\":{\"operations\":{\"type\":\"array\",\"items\":{\"anyOf\":[{\"type\":\"object\",\"description\":\"Update a block, the new block will replace the existing block.\",\"properties\":{\"type\":{\"type\":\"string\",\"enum\":[\"update\"]},\"id\":{\"type\":\"string\",\"description\":\"id of block to update\"},\"block\":{\"$ref\":\"#/$defs/block\"}},\"required\":[\"type\",\"id\",\"block\"],\"additionalProperties\":false},{\"type\":\"object\",\"description\":\"Insert new blocks\",\"properties\":{\"type\":{\"type\":\"string\",\"enum\":[\"add\"]},\"referenceId\":{\"type\":\"string\",\"description\":\"MUST be an id of a block in the document\"},\"position\":{\"type\":\"string\",\"enum\":[\"before\",\"after\"],\"description\":\"`after` to add blocks AFTER (below) the block with `referenceId`, `before` to add the block BEFORE (above)\"},\"blocks\":{\"items\":{\"$ref\":\"#/$defs/block\"},\"type\":\"array\"}},\"required\":[\"type\",\"referenceId\",\"position\",\"blocks\"],\"additionalProperties\":false},{\"type\":\"object\",\"description\":\"Delete a block\",\"properties\":{\"type\":{\"type\":\"string\",\"enum\":[\"delete\"]},\"id\":{\"type\":\"string\",\"description\":\"id of block to delete\"}},\"required\":[\"type\",\"id\"],\"additionalProperties\":false}]}}},\"additionalProperties\":false,\"required\":[\"operations\"],\"$defs\":{\"styles\":{\"type\":\"object\",\"properties\":{\"bold\":{\"type\":\"boolean\"},\"italic\":{\"type\":\"boolean\"},\"underline\":{\"type\":\"boolean\"},\"strike\":{\"type\":\"boolean\"},\"code\":{\"type\":\"boolean\"},\"textColor\":{\"type\":\"string\"},\"backgroundColor\":{\"type\":\"string\"}},\"additionalProperties\":false},\"styledtext\":{\"type\":\"object\",\"properties\":{\"type\":{\"type\":\"string\",\"enum\":[\"text\"]},\"text\":{\"type\":\"string\"},\"styles\":{\"$ref\":\"#/$defs/styles\"}},\"additionalProperties\":false,\"required\":[\"type\",\"text\"]},\"inlinecontent\":{\"type\":\"array\",\"items\":{\"anyOf\":[{\"type\":\"object\",\"properties\":{\"type\":{\"type\":\"string\",\"enum\":[\"mention\"]},\"props\":{\"type\":\"object\",\"properties\":{\"user\":{\"type\":\"string\"}},\"additionalProperties\":false}},\"additionalProperties\":false,\"required\":[\"type\"]},{\"$ref\":\"#/$defs/styledtext\"},{\"type\":\"object\",\"properties\":{\"type\":{\"type\":\"string\",\"enum\":[\"link\"]},\"content\":{\"type\":\"array\",\"items\":{\"$ref\":\"#/$defs/styledtext\"}},\"href\":{\"type\":\"string\"}},\"additionalProperties\":false,\"required\":[\"type\",\"href\",\"content\"]}]}},\"block\":{\"anyOf\":[{\"type\":\"object\",\"properties\":{\"type\":{\"type\":\"string\",\"enum\":[\"paragraph\",\"quote\",\"bulletListItem\",\"numberedListItem\"]},\"content\":{\"$ref\":\"#/$defs/inlinecontent\"},\"props\":{\"type\":\"object\",\"properties\":{},\"additionalProperties\":false}},\"additionalProperties\":false,\"required\":[\"type\"]},{\"type\":\"object\",\"properties\":{\"type\":{\"type\":\"string\",\"enum\":[\"heading\"]},\"content\":{\"$ref\":\"#/$defs/inlinecontent\"},\"props\":{\"type\":\"object\",\"properties\":{\"level\":{\"type\":\"number\",\"enum\":[1,2,3]}},\"additionalProperties\":false}},\"additionalProperties\":false,\"required\":[\"type\"]},{\"type\":\"object\",\"properties\":{\"type\":{\"type\":\"string\",\"enum\":[\"codeBlock\"]},\"content\":{\"$ref\":\"#/$defs/inlinecontent\"},\"props\":{\"type\":\"object\",\"properties\":{\"language\":{\"type\":\"string\"}},\"additionalProperties\":false}},\"additionalProperties\":false,\"required\":[\"type\"]},{\"type\":\"object\",\"properties\":{\"type\":{\"type\":\"string\",\"enum\":[\"checkListItem\"]},\"content\":{\"$ref\":\"#/$defs/inlinecontent\"},\"props\":{\"type\":\"object\",\"properties\":{\"checked\":{\"type\":\"boolean\"}},\"additionalProperties\":false}},\"additionalProperties\":false,\"required\":[\"type\"]},{\"type\":\"object\",\"properties\":{\"type\":{\"type\":\"string\",\"enum\":[\"table\"]},\"content\":{\"type\":\"object\",\"properties\":{}},\"props\":{\"type\":\"object\",\"properties\":{},\"additionalProperties\":false}},\"additionalProperties\":false,\"required\":[\"type\"]}]}}}}}]}", + "body": "{\"model\":\"gpt-4o-2024-08-06\",\"temperature\":0,\"messages\":[{\"role\":\"system\",\"content\":\"You're manipulating a text document using JSON blocks. \\n Make sure to follow the json schema provided. When referencing ids they MUST be EXACTLY the same (including the trailing $). \\n This is the document as an array of JSON blocks (the cursor is BETWEEN two blocks as indicated by cursor: true):\"},{\"role\":\"system\",\"content\":\"[{\\\"id\\\":\\\"ref1$\\\",\\\"block\\\":{\\\"id\\\":\\\"ref1\\\",\\\"type\\\":\\\"paragraph\\\",\\\"props\\\":{\\\"textColor\\\":\\\"default\\\",\\\"backgroundColor\\\":\\\"default\\\",\\\"textAlignment\\\":\\\"left\\\"},\\\"content\\\":[{\\\"type\\\":\\\"text\\\",\\\"text\\\":\\\"Hello, world!\\\",\\\"styles\\\":{}}]}},{\\\"cursor\\\":true},{\\\"id\\\":\\\"ref2$\\\",\\\"block\\\":{\\\"id\\\":\\\"ref2\\\",\\\"type\\\":\\\"paragraph\\\",\\\"props\\\":{\\\"textColor\\\":\\\"default\\\",\\\"backgroundColor\\\":\\\"default\\\",\\\"textAlignment\\\":\\\"left\\\"},\\\"content\\\":[{\\\"type\\\":\\\"text\\\",\\\"text\\\":\\\"Hello, \\\",\\\"styles\\\":{}},{\\\"type\\\":\\\"mention\\\",\\\"props\\\":{\\\"user\\\":\\\"John Doe\\\"}},{\\\"type\\\":\\\"text\\\",\\\"text\\\":\\\"! \\\",\\\"styles\\\":{}},{\\\"type\\\":\\\"text\\\",\\\"text\\\":\\\"How are you doing?\\\",\\\"styles\\\":{\\\"bold\\\":true}},{\\\"type\\\":\\\"text\\\",\\\"text\\\":\\\" \\\",\\\"styles\\\":{}},{\\\"type\\\":\\\"text\\\",\\\"text\\\":\\\"This text is blue!\\\",\\\"styles\\\":{\\\"textColor\\\":\\\"blue\\\"}}]}},{\\\"id\\\":\\\"ref3$\\\",\\\"block\\\":{\\\"id\\\":\\\"ref3\\\",\\\"type\\\":\\\"paragraph\\\",\\\"props\\\":{\\\"textColor\\\":\\\"default\\\",\\\"backgroundColor\\\":\\\"default\\\",\\\"textAlignment\\\":\\\"left\\\"},\\\"content\\\":[{\\\"type\\\":\\\"text\\\",\\\"text\\\":\\\"Hello, world! \\\",\\\"styles\\\":{}},{\\\"type\\\":\\\"text\\\",\\\"text\\\":\\\"Bold text. \\\",\\\"styles\\\":{\\\"bold\\\":true}},{\\\"type\\\":\\\"link\\\",\\\"href\\\":\\\"https://www.google.com\\\",\\\"content\\\":[{\\\"type\\\":\\\"text\\\",\\\"text\\\":\\\"Link.\\\",\\\"styles\\\":{}}]}]}}]\"},{\"role\":\"system\",\"content\":\"The user asks you to do the following:\"},{\"role\":\"user\",\"content\":\"change the last paragraph to 'Hi, world! Bold the text. Link.' without any markup like bold or link\"},{\"role\":\"system\",\"content\":\"First, determine what part of the document the user is talking about. You SHOULD probably take cursor info into account if needed.\\n EXAMPLE: if user says \\\"below\\\" (without pointing to a specific part of the document) he / she probably indicates the block(s) after the cursor. \\n EXAMPLE: If you want to insert content AT the cursor position (UNLESS indicated otherwise by the user), then you need `referenceId` to point to the block before the cursor with position `after` (or block below and `before`).\\n \\n Prefer updating existing blocks over removing and adding (but this also depends on the user's question).\"}],\"tool_choice\":{\"type\":\"function\",\"function\":{\"name\":\"json\"}},\"tools\":[{\"type\":\"function\",\"function\":{\"name\":\"json\",\"description\":\"Respond with a JSON object.\",\"parameters\":{\"type\":\"object\",\"properties\":{\"operations\":{\"type\":\"array\",\"items\":{\"anyOf\":[{\"type\":\"object\",\"description\":\"Update a block, the new block will replace the existing block.\",\"properties\":{\"type\":{\"type\":\"string\",\"enum\":[\"update\"]},\"id\":{\"type\":\"string\",\"description\":\"id of block to update\"},\"block\":{\"$ref\":\"#/$defs/block\"}},\"required\":[\"type\",\"id\",\"block\"],\"additionalProperties\":false},{\"type\":\"object\",\"description\":\"Insert new blocks\",\"properties\":{\"type\":{\"type\":\"string\",\"enum\":[\"add\"]},\"referenceId\":{\"type\":\"string\",\"description\":\"MUST be an id of a block in the document\"},\"position\":{\"type\":\"string\",\"enum\":[\"before\",\"after\"],\"description\":\"`after` to add blocks AFTER (below) the block with `referenceId`, `before` to add the block BEFORE (above)\"},\"blocks\":{\"items\":{\"$ref\":\"#/$defs/block\"},\"type\":\"array\"}},\"required\":[\"type\",\"referenceId\",\"position\",\"blocks\"],\"additionalProperties\":false},{\"type\":\"object\",\"description\":\"Delete a block\",\"properties\":{\"type\":{\"type\":\"string\",\"enum\":[\"delete\"]},\"id\":{\"type\":\"string\",\"description\":\"id of block to delete\"}},\"required\":[\"type\",\"id\"],\"additionalProperties\":false}]}}},\"additionalProperties\":false,\"required\":[\"operations\"],\"$defs\":{\"styles\":{\"type\":\"object\",\"properties\":{\"bold\":{\"type\":\"boolean\"},\"italic\":{\"type\":\"boolean\"},\"underline\":{\"type\":\"boolean\"},\"strike\":{\"type\":\"boolean\"},\"code\":{\"type\":\"boolean\"},\"textColor\":{\"type\":\"string\"},\"backgroundColor\":{\"type\":\"string\"}},\"additionalProperties\":false},\"styledtext\":{\"type\":\"object\",\"properties\":{\"type\":{\"type\":\"string\",\"enum\":[\"text\"]},\"text\":{\"type\":\"string\"},\"styles\":{\"$ref\":\"#/$defs/styles\"}},\"additionalProperties\":false,\"required\":[\"type\",\"text\"]},\"inlinecontent\":{\"type\":\"array\",\"items\":{\"anyOf\":[{\"type\":\"object\",\"properties\":{\"type\":{\"type\":\"string\",\"enum\":[\"mention\"]},\"props\":{\"type\":\"object\",\"properties\":{\"user\":{\"type\":\"string\"}},\"additionalProperties\":false}},\"additionalProperties\":false,\"required\":[\"type\"]},{\"$ref\":\"#/$defs/styledtext\"},{\"type\":\"object\",\"properties\":{\"type\":{\"type\":\"string\",\"enum\":[\"link\"]},\"content\":{\"type\":\"array\",\"items\":{\"$ref\":\"#/$defs/styledtext\"}},\"href\":{\"type\":\"string\"}},\"additionalProperties\":false,\"required\":[\"type\",\"href\",\"content\"]}]}},\"block\":{\"anyOf\":[{\"type\":\"object\",\"properties\":{\"type\":{\"type\":\"string\",\"enum\":[\"paragraph\",\"quote\",\"toggleListItem\",\"bulletListItem\",\"numberedListItem\"]},\"content\":{\"$ref\":\"#/$defs/inlinecontent\"},\"props\":{\"type\":\"object\",\"properties\":{},\"additionalProperties\":false}},\"additionalProperties\":false,\"required\":[\"type\"]},{\"type\":\"object\",\"properties\":{\"type\":{\"type\":\"string\",\"enum\":[\"heading\"]},\"content\":{\"$ref\":\"#/$defs/inlinecontent\"},\"props\":{\"type\":\"object\",\"properties\":{\"level\":{\"type\":\"number\",\"enum\":[1,2,3]},\"isTogglable\":{\"type\":\"boolean\"}},\"additionalProperties\":false}},\"additionalProperties\":false,\"required\":[\"type\"]},{\"type\":\"object\",\"properties\":{\"type\":{\"type\":\"string\",\"enum\":[\"codeBlock\"]},\"content\":{\"$ref\":\"#/$defs/inlinecontent\"},\"props\":{\"type\":\"object\",\"properties\":{\"language\":{\"type\":\"string\"}},\"additionalProperties\":false}},\"additionalProperties\":false,\"required\":[\"type\"]},{\"type\":\"object\",\"properties\":{\"type\":{\"type\":\"string\",\"enum\":[\"checkListItem\"]},\"content\":{\"$ref\":\"#/$defs/inlinecontent\"},\"props\":{\"type\":\"object\",\"properties\":{\"checked\":{\"type\":\"boolean\"}},\"additionalProperties\":false}},\"additionalProperties\":false,\"required\":[\"type\"]},{\"type\":\"object\",\"properties\":{\"type\":{\"type\":\"string\",\"enum\":[\"table\"]},\"content\":{\"type\":\"object\",\"properties\":{}},\"props\":{\"type\":\"object\",\"properties\":{},\"additionalProperties\":false}},\"additionalProperties\":false,\"required\":[\"type\"]}]}}}}}]}", "headers": [], "cookies": [] }, "response": { "status": 200, "statusText": "", - "body": "{\n \"id\": \"chatcmpl-BgV5lHjD3eNw2JKkJYOgV3GrXQDkN\",\n \"object\": \"chat.completion\",\n \"created\": 1749468993,\n \"model\": \"gpt-4o-2024-08-06\",\n \"choices\": [\n {\n \"index\": 0,\n \"message\": {\n \"role\": \"assistant\",\n \"content\": null,\n \"tool_calls\": [\n {\n \"id\": \"call_OnyVJ6azoQrhQKniuzhQw4kg\",\n \"type\": \"function\",\n \"function\": {\n \"name\": \"json\",\n \"arguments\": \"{\\\"operations\\\":[{\\\"type\\\":\\\"update\\\",\\\"id\\\":\\\"ref3$\\\",\\\"block\\\":{\\\"type\\\":\\\"paragraph\\\",\\\"content\\\":[{\\\"type\\\":\\\"text\\\",\\\"text\\\":\\\"Hi, world! Bold the text. Link.\\\"}]}}]}\"\n }\n }\n ],\n \"refusal\": null,\n \"annotations\": []\n },\n \"logprobs\": null,\n \"finish_reason\": \"stop\"\n }\n ],\n \"usage\": {\n \"prompt_tokens\": 1177,\n \"completion_tokens\": 42,\n \"total_tokens\": 1219,\n \"prompt_tokens_details\": {\n \"cached_tokens\": 1152,\n \"audio_tokens\": 0\n },\n \"completion_tokens_details\": {\n \"reasoning_tokens\": 0,\n \"audio_tokens\": 0,\n \"accepted_prediction_tokens\": 0,\n \"rejected_prediction_tokens\": 0\n }\n },\n \"service_tier\": \"default\",\n \"system_fingerprint\": \"fp_07871e2ad8\"\n}\n", + "body": "{\n \"id\": \"chatcmpl-BhXnzNEc9TnSDKuHv73VJaMcUDfwA\",\n \"object\": \"chat.completion\",\n \"created\": 1749717751,\n \"model\": \"gpt-4o-2024-08-06\",\n \"choices\": [\n {\n \"index\": 0,\n \"message\": {\n \"role\": \"assistant\",\n \"content\": null,\n \"tool_calls\": [\n {\n \"id\": \"call_4wJX3i9nem2LxclLCUjnaiRG\",\n \"type\": \"function\",\n \"function\": {\n \"name\": \"json\",\n \"arguments\": \"{\\\"operations\\\":[{\\\"type\\\":\\\"update\\\",\\\"id\\\":\\\"ref3$\\\",\\\"block\\\":{\\\"type\\\":\\\"paragraph\\\",\\\"content\\\":[{\\\"type\\\":\\\"text\\\",\\\"text\\\":\\\"Hi, world! Bold the text. Link.\\\"}]}}]}\"\n }\n }\n ],\n \"refusal\": null,\n \"annotations\": []\n },\n \"logprobs\": null,\n \"finish_reason\": \"stop\"\n }\n ],\n \"usage\": {\n \"prompt_tokens\": 1205,\n \"completion_tokens\": 42,\n \"total_tokens\": 1247,\n \"prompt_tokens_details\": {\n \"cached_tokens\": 1152,\n \"audio_tokens\": 0\n },\n \"completion_tokens_details\": {\n \"reasoning_tokens\": 0,\n \"audio_tokens\": 0,\n \"accepted_prediction_tokens\": 0,\n \"rejected_prediction_tokens\": 0\n }\n },\n \"service_tier\": \"default\",\n \"system_fingerprint\": \"fp_a288987b44\"\n}\n", "headers": [] } } \ No newline at end of file diff --git a/packages/xl-ai/src/api/formats/json/__snapshots__/json.test.ts/Update/__msw_snapshots__/openai.chat/gpt-4o-2024-08-06 (non-streaming)/drop mark and link_1_95883a1d5573bc4bd59c964e8a9612d9.json b/packages/xl-ai/src/api/formats/json/__snapshots__/json.test.ts/Update/__msw_snapshots__/openai.chat/gpt-4o-2024-08-06 (non-streaming)/drop mark and link_1_129497a3cfedbeb2e6c0f7393907dbed.json similarity index 79% rename from packages/xl-ai/src/api/formats/json/__snapshots__/json.test.ts/Update/__msw_snapshots__/openai.chat/gpt-4o-2024-08-06 (non-streaming)/drop mark and link_1_95883a1d5573bc4bd59c964e8a9612d9.json rename to packages/xl-ai/src/api/formats/json/__snapshots__/json.test.ts/Update/__msw_snapshots__/openai.chat/gpt-4o-2024-08-06 (non-streaming)/drop mark and link_1_129497a3cfedbeb2e6c0f7393907dbed.json index 88d74b5c20..bf636df048 100644 --- a/packages/xl-ai/src/api/formats/json/__snapshots__/json.test.ts/Update/__msw_snapshots__/openai.chat/gpt-4o-2024-08-06 (non-streaming)/drop mark and link_1_95883a1d5573bc4bd59c964e8a9612d9.json +++ b/packages/xl-ai/src/api/formats/json/__snapshots__/json.test.ts/Update/__msw_snapshots__/openai.chat/gpt-4o-2024-08-06 (non-streaming)/drop mark and link_1_129497a3cfedbeb2e6c0f7393907dbed.json @@ -2,14 +2,14 @@ "request": { "method": "POST", "url": "https://localhost:3000/ai?provider=openai&url=https%3A%2F%2Fapi.openai.com%2Fv1%2Fchat%2Fcompletions", - "body": "{\"model\":\"gpt-4o-2024-08-06\",\"temperature\":0,\"messages\":[{\"role\":\"system\",\"content\":\"You're manipulating a text document using JSON blocks. \\n Make sure to follow the json schema provided. When referencing ids they MUST be EXACTLY the same (including the trailing $). \\n This is the document as an array of JSON blocks (the cursor is BETWEEN two blocks as indicated by cursor: true):\"},{\"role\":\"system\",\"content\":\"[{\\\"id\\\":\\\"ref1$\\\",\\\"block\\\":{\\\"id\\\":\\\"ref1\\\",\\\"type\\\":\\\"paragraph\\\",\\\"props\\\":{\\\"textColor\\\":\\\"default\\\",\\\"backgroundColor\\\":\\\"default\\\",\\\"textAlignment\\\":\\\"left\\\"},\\\"content\\\":[{\\\"type\\\":\\\"text\\\",\\\"text\\\":\\\"Hello, world!\\\",\\\"styles\\\":{}}]}},{\\\"cursor\\\":true},{\\\"id\\\":\\\"ref2$\\\",\\\"block\\\":{\\\"id\\\":\\\"ref2\\\",\\\"type\\\":\\\"paragraph\\\",\\\"props\\\":{\\\"textColor\\\":\\\"default\\\",\\\"backgroundColor\\\":\\\"default\\\",\\\"textAlignment\\\":\\\"left\\\"},\\\"content\\\":[{\\\"type\\\":\\\"text\\\",\\\"text\\\":\\\"Hello, \\\",\\\"styles\\\":{}},{\\\"type\\\":\\\"mention\\\",\\\"props\\\":{\\\"user\\\":\\\"John Doe\\\"}},{\\\"type\\\":\\\"text\\\",\\\"text\\\":\\\"! \\\",\\\"styles\\\":{}},{\\\"type\\\":\\\"text\\\",\\\"text\\\":\\\"How are you doing?\\\",\\\"styles\\\":{\\\"bold\\\":true}},{\\\"type\\\":\\\"text\\\",\\\"text\\\":\\\" \\\",\\\"styles\\\":{}},{\\\"type\\\":\\\"text\\\",\\\"text\\\":\\\"This text is blue!\\\",\\\"styles\\\":{\\\"textColor\\\":\\\"blue\\\"}}]}},{\\\"id\\\":\\\"ref3$\\\",\\\"block\\\":{\\\"id\\\":\\\"ref3\\\",\\\"type\\\":\\\"paragraph\\\",\\\"props\\\":{\\\"textColor\\\":\\\"default\\\",\\\"backgroundColor\\\":\\\"default\\\",\\\"textAlignment\\\":\\\"left\\\"},\\\"content\\\":[{\\\"type\\\":\\\"text\\\",\\\"text\\\":\\\"Hello, world! \\\",\\\"styles\\\":{}},{\\\"type\\\":\\\"text\\\",\\\"text\\\":\\\"Bold text. \\\",\\\"styles\\\":{\\\"bold\\\":true}},{\\\"type\\\":\\\"link\\\",\\\"href\\\":\\\"https://www.google.com\\\",\\\"content\\\":[{\\\"type\\\":\\\"text\\\",\\\"text\\\":\\\"Link.\\\",\\\"styles\\\":{}}]}]}}]\"},{\"role\":\"system\",\"content\":\"The user asks you to do the following:\"},{\"role\":\"user\",\"content\":\"remove the formatting (turn into plain text without styles or urls) from the last paragraph\"},{\"role\":\"system\",\"content\":\"First, determine what part of the document the user is talking about. You SHOULD probably take cursor info into account if needed.\\n EXAMPLE: if user says \\\"below\\\" (without pointing to a specific part of the document) he / she probably indicates the block(s) after the cursor. \\n EXAMPLE: If you want to insert content AT the cursor position (UNLESS indicated otherwise by the user), then you need `referenceId` to point to the block before the cursor with position `after` (or block below and `before`).\\n \\n Prefer updating existing blocks over removing and adding (but this also depends on the user's question).\"}],\"tool_choice\":{\"type\":\"function\",\"function\":{\"name\":\"json\"}},\"tools\":[{\"type\":\"function\",\"function\":{\"name\":\"json\",\"description\":\"Respond with a JSON object.\",\"parameters\":{\"type\":\"object\",\"properties\":{\"operations\":{\"type\":\"array\",\"items\":{\"anyOf\":[{\"type\":\"object\",\"description\":\"Update a block, the new block will replace the existing block.\",\"properties\":{\"type\":{\"type\":\"string\",\"enum\":[\"update\"]},\"id\":{\"type\":\"string\",\"description\":\"id of block to update\"},\"block\":{\"$ref\":\"#/$defs/block\"}},\"required\":[\"type\",\"id\",\"block\"],\"additionalProperties\":false},{\"type\":\"object\",\"description\":\"Insert new blocks\",\"properties\":{\"type\":{\"type\":\"string\",\"enum\":[\"add\"]},\"referenceId\":{\"type\":\"string\",\"description\":\"MUST be an id of a block in the document\"},\"position\":{\"type\":\"string\",\"enum\":[\"before\",\"after\"],\"description\":\"`after` to add blocks AFTER (below) the block with `referenceId`, `before` to add the block BEFORE (above)\"},\"blocks\":{\"items\":{\"$ref\":\"#/$defs/block\"},\"type\":\"array\"}},\"required\":[\"type\",\"referenceId\",\"position\",\"blocks\"],\"additionalProperties\":false},{\"type\":\"object\",\"description\":\"Delete a block\",\"properties\":{\"type\":{\"type\":\"string\",\"enum\":[\"delete\"]},\"id\":{\"type\":\"string\",\"description\":\"id of block to delete\"}},\"required\":[\"type\",\"id\"],\"additionalProperties\":false}]}}},\"additionalProperties\":false,\"required\":[\"operations\"],\"$defs\":{\"styles\":{\"type\":\"object\",\"properties\":{\"bold\":{\"type\":\"boolean\"},\"italic\":{\"type\":\"boolean\"},\"underline\":{\"type\":\"boolean\"},\"strike\":{\"type\":\"boolean\"},\"code\":{\"type\":\"boolean\"},\"textColor\":{\"type\":\"string\"},\"backgroundColor\":{\"type\":\"string\"}},\"additionalProperties\":false},\"styledtext\":{\"type\":\"object\",\"properties\":{\"type\":{\"type\":\"string\",\"enum\":[\"text\"]},\"text\":{\"type\":\"string\"},\"styles\":{\"$ref\":\"#/$defs/styles\"}},\"additionalProperties\":false,\"required\":[\"type\",\"text\"]},\"inlinecontent\":{\"type\":\"array\",\"items\":{\"anyOf\":[{\"type\":\"object\",\"properties\":{\"type\":{\"type\":\"string\",\"enum\":[\"mention\"]},\"props\":{\"type\":\"object\",\"properties\":{\"user\":{\"type\":\"string\"}},\"additionalProperties\":false}},\"additionalProperties\":false,\"required\":[\"type\"]},{\"$ref\":\"#/$defs/styledtext\"},{\"type\":\"object\",\"properties\":{\"type\":{\"type\":\"string\",\"enum\":[\"link\"]},\"content\":{\"type\":\"array\",\"items\":{\"$ref\":\"#/$defs/styledtext\"}},\"href\":{\"type\":\"string\"}},\"additionalProperties\":false,\"required\":[\"type\",\"href\",\"content\"]}]}},\"block\":{\"anyOf\":[{\"type\":\"object\",\"properties\":{\"type\":{\"type\":\"string\",\"enum\":[\"paragraph\",\"quote\",\"bulletListItem\",\"numberedListItem\"]},\"content\":{\"$ref\":\"#/$defs/inlinecontent\"},\"props\":{\"type\":\"object\",\"properties\":{},\"additionalProperties\":false}},\"additionalProperties\":false,\"required\":[\"type\"]},{\"type\":\"object\",\"properties\":{\"type\":{\"type\":\"string\",\"enum\":[\"heading\"]},\"content\":{\"$ref\":\"#/$defs/inlinecontent\"},\"props\":{\"type\":\"object\",\"properties\":{\"level\":{\"type\":\"number\",\"enum\":[1,2,3]}},\"additionalProperties\":false}},\"additionalProperties\":false,\"required\":[\"type\"]},{\"type\":\"object\",\"properties\":{\"type\":{\"type\":\"string\",\"enum\":[\"codeBlock\"]},\"content\":{\"$ref\":\"#/$defs/inlinecontent\"},\"props\":{\"type\":\"object\",\"properties\":{\"language\":{\"type\":\"string\"}},\"additionalProperties\":false}},\"additionalProperties\":false,\"required\":[\"type\"]},{\"type\":\"object\",\"properties\":{\"type\":{\"type\":\"string\",\"enum\":[\"checkListItem\"]},\"content\":{\"$ref\":\"#/$defs/inlinecontent\"},\"props\":{\"type\":\"object\",\"properties\":{\"checked\":{\"type\":\"boolean\"}},\"additionalProperties\":false}},\"additionalProperties\":false,\"required\":[\"type\"]},{\"type\":\"object\",\"properties\":{\"type\":{\"type\":\"string\",\"enum\":[\"table\"]},\"content\":{\"type\":\"object\",\"properties\":{}},\"props\":{\"type\":\"object\",\"properties\":{},\"additionalProperties\":false}},\"additionalProperties\":false,\"required\":[\"type\"]}]}}}}}]}", + "body": "{\"model\":\"gpt-4o-2024-08-06\",\"temperature\":0,\"messages\":[{\"role\":\"system\",\"content\":\"You're manipulating a text document using JSON blocks. \\n Make sure to follow the json schema provided. When referencing ids they MUST be EXACTLY the same (including the trailing $). \\n This is the document as an array of JSON blocks (the cursor is BETWEEN two blocks as indicated by cursor: true):\"},{\"role\":\"system\",\"content\":\"[{\\\"id\\\":\\\"ref1$\\\",\\\"block\\\":{\\\"id\\\":\\\"ref1\\\",\\\"type\\\":\\\"paragraph\\\",\\\"props\\\":{\\\"textColor\\\":\\\"default\\\",\\\"backgroundColor\\\":\\\"default\\\",\\\"textAlignment\\\":\\\"left\\\"},\\\"content\\\":[{\\\"type\\\":\\\"text\\\",\\\"text\\\":\\\"Hello, world!\\\",\\\"styles\\\":{}}]}},{\\\"cursor\\\":true},{\\\"id\\\":\\\"ref2$\\\",\\\"block\\\":{\\\"id\\\":\\\"ref2\\\",\\\"type\\\":\\\"paragraph\\\",\\\"props\\\":{\\\"textColor\\\":\\\"default\\\",\\\"backgroundColor\\\":\\\"default\\\",\\\"textAlignment\\\":\\\"left\\\"},\\\"content\\\":[{\\\"type\\\":\\\"text\\\",\\\"text\\\":\\\"Hello, \\\",\\\"styles\\\":{}},{\\\"type\\\":\\\"mention\\\",\\\"props\\\":{\\\"user\\\":\\\"John Doe\\\"}},{\\\"type\\\":\\\"text\\\",\\\"text\\\":\\\"! \\\",\\\"styles\\\":{}},{\\\"type\\\":\\\"text\\\",\\\"text\\\":\\\"How are you doing?\\\",\\\"styles\\\":{\\\"bold\\\":true}},{\\\"type\\\":\\\"text\\\",\\\"text\\\":\\\" \\\",\\\"styles\\\":{}},{\\\"type\\\":\\\"text\\\",\\\"text\\\":\\\"This text is blue!\\\",\\\"styles\\\":{\\\"textColor\\\":\\\"blue\\\"}}]}},{\\\"id\\\":\\\"ref3$\\\",\\\"block\\\":{\\\"id\\\":\\\"ref3\\\",\\\"type\\\":\\\"paragraph\\\",\\\"props\\\":{\\\"textColor\\\":\\\"default\\\",\\\"backgroundColor\\\":\\\"default\\\",\\\"textAlignment\\\":\\\"left\\\"},\\\"content\\\":[{\\\"type\\\":\\\"text\\\",\\\"text\\\":\\\"Hello, world! \\\",\\\"styles\\\":{}},{\\\"type\\\":\\\"text\\\",\\\"text\\\":\\\"Bold text. \\\",\\\"styles\\\":{\\\"bold\\\":true}},{\\\"type\\\":\\\"link\\\",\\\"href\\\":\\\"https://www.google.com\\\",\\\"content\\\":[{\\\"type\\\":\\\"text\\\",\\\"text\\\":\\\"Link.\\\",\\\"styles\\\":{}}]}]}}]\"},{\"role\":\"system\",\"content\":\"The user asks you to do the following:\"},{\"role\":\"user\",\"content\":\"remove the formatting (turn into plain text without styles or urls) from the last paragraph\"},{\"role\":\"system\",\"content\":\"First, determine what part of the document the user is talking about. You SHOULD probably take cursor info into account if needed.\\n EXAMPLE: if user says \\\"below\\\" (without pointing to a specific part of the document) he / she probably indicates the block(s) after the cursor. \\n EXAMPLE: If you want to insert content AT the cursor position (UNLESS indicated otherwise by the user), then you need `referenceId` to point to the block before the cursor with position `after` (or block below and `before`).\\n \\n Prefer updating existing blocks over removing and adding (but this also depends on the user's question).\"}],\"tool_choice\":{\"type\":\"function\",\"function\":{\"name\":\"json\"}},\"tools\":[{\"type\":\"function\",\"function\":{\"name\":\"json\",\"description\":\"Respond with a JSON object.\",\"parameters\":{\"type\":\"object\",\"properties\":{\"operations\":{\"type\":\"array\",\"items\":{\"anyOf\":[{\"type\":\"object\",\"description\":\"Update a block, the new block will replace the existing block.\",\"properties\":{\"type\":{\"type\":\"string\",\"enum\":[\"update\"]},\"id\":{\"type\":\"string\",\"description\":\"id of block to update\"},\"block\":{\"$ref\":\"#/$defs/block\"}},\"required\":[\"type\",\"id\",\"block\"],\"additionalProperties\":false},{\"type\":\"object\",\"description\":\"Insert new blocks\",\"properties\":{\"type\":{\"type\":\"string\",\"enum\":[\"add\"]},\"referenceId\":{\"type\":\"string\",\"description\":\"MUST be an id of a block in the document\"},\"position\":{\"type\":\"string\",\"enum\":[\"before\",\"after\"],\"description\":\"`after` to add blocks AFTER (below) the block with `referenceId`, `before` to add the block BEFORE (above)\"},\"blocks\":{\"items\":{\"$ref\":\"#/$defs/block\"},\"type\":\"array\"}},\"required\":[\"type\",\"referenceId\",\"position\",\"blocks\"],\"additionalProperties\":false},{\"type\":\"object\",\"description\":\"Delete a block\",\"properties\":{\"type\":{\"type\":\"string\",\"enum\":[\"delete\"]},\"id\":{\"type\":\"string\",\"description\":\"id of block to delete\"}},\"required\":[\"type\",\"id\"],\"additionalProperties\":false}]}}},\"additionalProperties\":false,\"required\":[\"operations\"],\"$defs\":{\"styles\":{\"type\":\"object\",\"properties\":{\"bold\":{\"type\":\"boolean\"},\"italic\":{\"type\":\"boolean\"},\"underline\":{\"type\":\"boolean\"},\"strike\":{\"type\":\"boolean\"},\"code\":{\"type\":\"boolean\"},\"textColor\":{\"type\":\"string\"},\"backgroundColor\":{\"type\":\"string\"}},\"additionalProperties\":false},\"styledtext\":{\"type\":\"object\",\"properties\":{\"type\":{\"type\":\"string\",\"enum\":[\"text\"]},\"text\":{\"type\":\"string\"},\"styles\":{\"$ref\":\"#/$defs/styles\"}},\"additionalProperties\":false,\"required\":[\"type\",\"text\"]},\"inlinecontent\":{\"type\":\"array\",\"items\":{\"anyOf\":[{\"type\":\"object\",\"properties\":{\"type\":{\"type\":\"string\",\"enum\":[\"mention\"]},\"props\":{\"type\":\"object\",\"properties\":{\"user\":{\"type\":\"string\"}},\"additionalProperties\":false}},\"additionalProperties\":false,\"required\":[\"type\"]},{\"$ref\":\"#/$defs/styledtext\"},{\"type\":\"object\",\"properties\":{\"type\":{\"type\":\"string\",\"enum\":[\"link\"]},\"content\":{\"type\":\"array\",\"items\":{\"$ref\":\"#/$defs/styledtext\"}},\"href\":{\"type\":\"string\"}},\"additionalProperties\":false,\"required\":[\"type\",\"href\",\"content\"]}]}},\"block\":{\"anyOf\":[{\"type\":\"object\",\"properties\":{\"type\":{\"type\":\"string\",\"enum\":[\"paragraph\",\"quote\",\"toggleListItem\",\"bulletListItem\",\"numberedListItem\"]},\"content\":{\"$ref\":\"#/$defs/inlinecontent\"},\"props\":{\"type\":\"object\",\"properties\":{},\"additionalProperties\":false}},\"additionalProperties\":false,\"required\":[\"type\"]},{\"type\":\"object\",\"properties\":{\"type\":{\"type\":\"string\",\"enum\":[\"heading\"]},\"content\":{\"$ref\":\"#/$defs/inlinecontent\"},\"props\":{\"type\":\"object\",\"properties\":{\"level\":{\"type\":\"number\",\"enum\":[1,2,3]},\"isTogglable\":{\"type\":\"boolean\"}},\"additionalProperties\":false}},\"additionalProperties\":false,\"required\":[\"type\"]},{\"type\":\"object\",\"properties\":{\"type\":{\"type\":\"string\",\"enum\":[\"codeBlock\"]},\"content\":{\"$ref\":\"#/$defs/inlinecontent\"},\"props\":{\"type\":\"object\",\"properties\":{\"language\":{\"type\":\"string\"}},\"additionalProperties\":false}},\"additionalProperties\":false,\"required\":[\"type\"]},{\"type\":\"object\",\"properties\":{\"type\":{\"type\":\"string\",\"enum\":[\"checkListItem\"]},\"content\":{\"$ref\":\"#/$defs/inlinecontent\"},\"props\":{\"type\":\"object\",\"properties\":{\"checked\":{\"type\":\"boolean\"}},\"additionalProperties\":false}},\"additionalProperties\":false,\"required\":[\"type\"]},{\"type\":\"object\",\"properties\":{\"type\":{\"type\":\"string\",\"enum\":[\"table\"]},\"content\":{\"type\":\"object\",\"properties\":{}},\"props\":{\"type\":\"object\",\"properties\":{},\"additionalProperties\":false}},\"additionalProperties\":false,\"required\":[\"type\"]}]}}}}}]}", "headers": [], "cookies": [] }, "response": { "status": 200, "statusText": "", - "body": "{\n \"id\": \"chatcmpl-BgV5kK3K5NTyzg4ciYhRGZdOwHqVn\",\n \"object\": \"chat.completion\",\n \"created\": 1749468992,\n \"model\": \"gpt-4o-2024-08-06\",\n \"choices\": [\n {\n \"index\": 0,\n \"message\": {\n \"role\": \"assistant\",\n \"content\": null,\n \"tool_calls\": [\n {\n \"id\": \"call_t9aThr2C5ATtcycS38QbNGAt\",\n \"type\": \"function\",\n \"function\": {\n \"name\": \"json\",\n \"arguments\": \"{\\\"operations\\\":[{\\\"type\\\":\\\"update\\\",\\\"id\\\":\\\"ref3$\\\",\\\"block\\\":{\\\"type\\\":\\\"paragraph\\\",\\\"content\\\":[{\\\"type\\\":\\\"text\\\",\\\"text\\\":\\\"Hello, world! Bold text. Link.\\\"}]}}]}\"\n }\n }\n ],\n \"refusal\": null,\n \"annotations\": []\n },\n \"logprobs\": null,\n \"finish_reason\": \"stop\"\n }\n ],\n \"usage\": {\n \"prompt_tokens\": 1171,\n \"completion_tokens\": 41,\n \"total_tokens\": 1212,\n \"prompt_tokens_details\": {\n \"cached_tokens\": 1152,\n \"audio_tokens\": 0\n },\n \"completion_tokens_details\": {\n \"reasoning_tokens\": 0,\n \"audio_tokens\": 0,\n \"accepted_prediction_tokens\": 0,\n \"rejected_prediction_tokens\": 0\n }\n },\n \"service_tier\": \"default\",\n \"system_fingerprint\": \"fp_07871e2ad8\"\n}\n", + "body": "{\n \"id\": \"chatcmpl-BhXnyLUYNcp45phEbI5s0rxe7tpus\",\n \"object\": \"chat.completion\",\n \"created\": 1749717750,\n \"model\": \"gpt-4o-2024-08-06\",\n \"choices\": [\n {\n \"index\": 0,\n \"message\": {\n \"role\": \"assistant\",\n \"content\": null,\n \"tool_calls\": [\n {\n \"id\": \"call_UCDiUrAjHDdX6f271GZsvY35\",\n \"type\": \"function\",\n \"function\": {\n \"name\": \"json\",\n \"arguments\": \"{\\\"operations\\\":[{\\\"type\\\":\\\"update\\\",\\\"id\\\":\\\"ref3$\\\",\\\"block\\\":{\\\"type\\\":\\\"paragraph\\\",\\\"content\\\":[{\\\"type\\\":\\\"text\\\",\\\"text\\\":\\\"Hello, world! Bold text. Link.\\\"}]}}]}\"\n }\n }\n ],\n \"refusal\": null,\n \"annotations\": []\n },\n \"logprobs\": null,\n \"finish_reason\": \"stop\"\n }\n ],\n \"usage\": {\n \"prompt_tokens\": 1199,\n \"completion_tokens\": 41,\n \"total_tokens\": 1240,\n \"prompt_tokens_details\": {\n \"cached_tokens\": 1152,\n \"audio_tokens\": 0\n },\n \"completion_tokens_details\": {\n \"reasoning_tokens\": 0,\n \"audio_tokens\": 0,\n \"accepted_prediction_tokens\": 0,\n \"rejected_prediction_tokens\": 0\n }\n },\n \"service_tier\": \"default\",\n \"system_fingerprint\": \"fp_a288987b44\"\n}\n", "headers": [] } } \ No newline at end of file diff --git a/packages/xl-ai/src/api/formats/json/__snapshots__/json.test.ts/Update/__msw_snapshots__/openai.chat/gpt-4o-2024-08-06 (non-streaming)/modify nested content_1_2469da70e564277ce14ceb2997fa1ee6.json b/packages/xl-ai/src/api/formats/json/__snapshots__/json.test.ts/Update/__msw_snapshots__/openai.chat/gpt-4o-2024-08-06 (non-streaming)/modify nested content_1_cfc8b8d4d737d81a277c54e9f233e36d.json similarity index 73% rename from packages/xl-ai/src/api/formats/json/__snapshots__/json.test.ts/Update/__msw_snapshots__/openai.chat/gpt-4o-2024-08-06 (non-streaming)/modify nested content_1_2469da70e564277ce14ceb2997fa1ee6.json rename to packages/xl-ai/src/api/formats/json/__snapshots__/json.test.ts/Update/__msw_snapshots__/openai.chat/gpt-4o-2024-08-06 (non-streaming)/modify nested content_1_cfc8b8d4d737d81a277c54e9f233e36d.json index 0ab2259994..79b85b9c65 100644 --- a/packages/xl-ai/src/api/formats/json/__snapshots__/json.test.ts/Update/__msw_snapshots__/openai.chat/gpt-4o-2024-08-06 (non-streaming)/modify nested content_1_2469da70e564277ce14ceb2997fa1ee6.json +++ b/packages/xl-ai/src/api/formats/json/__snapshots__/json.test.ts/Update/__msw_snapshots__/openai.chat/gpt-4o-2024-08-06 (non-streaming)/modify nested content_1_cfc8b8d4d737d81a277c54e9f233e36d.json @@ -2,14 +2,14 @@ "request": { "method": "POST", "url": "https://localhost:3000/ai?provider=openai&url=https%3A%2F%2Fapi.openai.com%2Fv1%2Fchat%2Fcompletions", - "body": "{\"model\":\"gpt-4o-2024-08-06\",\"temperature\":0,\"messages\":[{\"role\":\"system\",\"content\":\"You're manipulating a text document using JSON blocks. \\n Make sure to follow the json schema provided. When referencing ids they MUST be EXACTLY the same (including the trailing $). \\n This is the document as an array of JSON blocks (the cursor is BETWEEN two blocks as indicated by cursor: true):\"},{\"role\":\"system\",\"content\":\"[{\\\"id\\\":\\\"ref1$\\\",\\\"block\\\":{\\\"id\\\":\\\"ref1\\\",\\\"type\\\":\\\"paragraph\\\",\\\"props\\\":{\\\"textColor\\\":\\\"default\\\",\\\"backgroundColor\\\":\\\"default\\\",\\\"textAlignment\\\":\\\"left\\\"},\\\"content\\\":[{\\\"type\\\":\\\"text\\\",\\\"text\\\":\\\"I need to buy:\\\",\\\"styles\\\":{}}]}},{\\\"cursor\\\":true},{\\\"id\\\":\\\"ref2$\\\",\\\"block\\\":{\\\"id\\\":\\\"ref2\\\",\\\"type\\\":\\\"paragraph\\\",\\\"props\\\":{\\\"textColor\\\":\\\"default\\\",\\\"backgroundColor\\\":\\\"default\\\",\\\"textAlignment\\\":\\\"left\\\"},\\\"content\\\":[{\\\"type\\\":\\\"text\\\",\\\"text\\\":\\\"Apples\\\",\\\"styles\\\":{}}]}}]\"},{\"role\":\"system\",\"content\":\"The user asks you to do the following:\"},{\"role\":\"user\",\"content\":\"make apples uppercase\"},{\"role\":\"system\",\"content\":\"First, determine what part of the document the user is talking about. You SHOULD probably take cursor info into account if needed.\\n EXAMPLE: if user says \\\"below\\\" (without pointing to a specific part of the document) he / she probably indicates the block(s) after the cursor. \\n EXAMPLE: If you want to insert content AT the cursor position (UNLESS indicated otherwise by the user), then you need `referenceId` to point to the block before the cursor with position `after` (or block below and `before`).\\n \\n Prefer updating existing blocks over removing and adding (but this also depends on the user's question).\"}],\"tool_choice\":{\"type\":\"function\",\"function\":{\"name\":\"json\"}},\"tools\":[{\"type\":\"function\",\"function\":{\"name\":\"json\",\"description\":\"Respond with a JSON object.\",\"parameters\":{\"type\":\"object\",\"properties\":{\"operations\":{\"type\":\"array\",\"items\":{\"anyOf\":[{\"type\":\"object\",\"description\":\"Update a block, the new block will replace the existing block.\",\"properties\":{\"type\":{\"type\":\"string\",\"enum\":[\"update\"]},\"id\":{\"type\":\"string\",\"description\":\"id of block to update\"},\"block\":{\"$ref\":\"#/$defs/block\"}},\"required\":[\"type\",\"id\",\"block\"],\"additionalProperties\":false},{\"type\":\"object\",\"description\":\"Insert new blocks\",\"properties\":{\"type\":{\"type\":\"string\",\"enum\":[\"add\"]},\"referenceId\":{\"type\":\"string\",\"description\":\"MUST be an id of a block in the document\"},\"position\":{\"type\":\"string\",\"enum\":[\"before\",\"after\"],\"description\":\"`after` to add blocks AFTER (below) the block with `referenceId`, `before` to add the block BEFORE (above)\"},\"blocks\":{\"items\":{\"$ref\":\"#/$defs/block\"},\"type\":\"array\"}},\"required\":[\"type\",\"referenceId\",\"position\",\"blocks\"],\"additionalProperties\":false},{\"type\":\"object\",\"description\":\"Delete a block\",\"properties\":{\"type\":{\"type\":\"string\",\"enum\":[\"delete\"]},\"id\":{\"type\":\"string\",\"description\":\"id of block to delete\"}},\"required\":[\"type\",\"id\"],\"additionalProperties\":false}]}}},\"additionalProperties\":false,\"required\":[\"operations\"],\"$defs\":{\"styles\":{\"type\":\"object\",\"properties\":{\"bold\":{\"type\":\"boolean\"},\"italic\":{\"type\":\"boolean\"},\"underline\":{\"type\":\"boolean\"},\"strike\":{\"type\":\"boolean\"},\"code\":{\"type\":\"boolean\"},\"textColor\":{\"type\":\"string\"},\"backgroundColor\":{\"type\":\"string\"}},\"additionalProperties\":false},\"styledtext\":{\"type\":\"object\",\"properties\":{\"type\":{\"type\":\"string\",\"enum\":[\"text\"]},\"text\":{\"type\":\"string\"},\"styles\":{\"$ref\":\"#/$defs/styles\"}},\"additionalProperties\":false,\"required\":[\"type\",\"text\"]},\"inlinecontent\":{\"type\":\"array\",\"items\":{\"anyOf\":[{\"type\":\"object\",\"properties\":{\"type\":{\"type\":\"string\",\"enum\":[\"mention\"]},\"props\":{\"type\":\"object\",\"properties\":{\"user\":{\"type\":\"string\"}},\"additionalProperties\":false}},\"additionalProperties\":false,\"required\":[\"type\"]},{\"$ref\":\"#/$defs/styledtext\"},{\"type\":\"object\",\"properties\":{\"type\":{\"type\":\"string\",\"enum\":[\"link\"]},\"content\":{\"type\":\"array\",\"items\":{\"$ref\":\"#/$defs/styledtext\"}},\"href\":{\"type\":\"string\"}},\"additionalProperties\":false,\"required\":[\"type\",\"href\",\"content\"]}]}},\"block\":{\"anyOf\":[{\"type\":\"object\",\"properties\":{\"type\":{\"type\":\"string\",\"enum\":[\"paragraph\",\"quote\",\"bulletListItem\",\"numberedListItem\"]},\"content\":{\"$ref\":\"#/$defs/inlinecontent\"},\"props\":{\"type\":\"object\",\"properties\":{},\"additionalProperties\":false}},\"additionalProperties\":false,\"required\":[\"type\"]},{\"type\":\"object\",\"properties\":{\"type\":{\"type\":\"string\",\"enum\":[\"heading\"]},\"content\":{\"$ref\":\"#/$defs/inlinecontent\"},\"props\":{\"type\":\"object\",\"properties\":{\"level\":{\"type\":\"number\",\"enum\":[1,2,3]}},\"additionalProperties\":false}},\"additionalProperties\":false,\"required\":[\"type\"]},{\"type\":\"object\",\"properties\":{\"type\":{\"type\":\"string\",\"enum\":[\"codeBlock\"]},\"content\":{\"$ref\":\"#/$defs/inlinecontent\"},\"props\":{\"type\":\"object\",\"properties\":{\"language\":{\"type\":\"string\"}},\"additionalProperties\":false}},\"additionalProperties\":false,\"required\":[\"type\"]},{\"type\":\"object\",\"properties\":{\"type\":{\"type\":\"string\",\"enum\":[\"checkListItem\"]},\"content\":{\"$ref\":\"#/$defs/inlinecontent\"},\"props\":{\"type\":\"object\",\"properties\":{\"checked\":{\"type\":\"boolean\"}},\"additionalProperties\":false}},\"additionalProperties\":false,\"required\":[\"type\"]},{\"type\":\"object\",\"properties\":{\"type\":{\"type\":\"string\",\"enum\":[\"table\"]},\"content\":{\"type\":\"object\",\"properties\":{}},\"props\":{\"type\":\"object\",\"properties\":{},\"additionalProperties\":false}},\"additionalProperties\":false,\"required\":[\"type\"]}]}}}}}]}", + "body": "{\"model\":\"gpt-4o-2024-08-06\",\"temperature\":0,\"messages\":[{\"role\":\"system\",\"content\":\"You're manipulating a text document using JSON blocks. \\n Make sure to follow the json schema provided. When referencing ids they MUST be EXACTLY the same (including the trailing $). \\n This is the document as an array of JSON blocks (the cursor is BETWEEN two blocks as indicated by cursor: true):\"},{\"role\":\"system\",\"content\":\"[{\\\"id\\\":\\\"ref1$\\\",\\\"block\\\":{\\\"id\\\":\\\"ref1\\\",\\\"type\\\":\\\"paragraph\\\",\\\"props\\\":{\\\"textColor\\\":\\\"default\\\",\\\"backgroundColor\\\":\\\"default\\\",\\\"textAlignment\\\":\\\"left\\\"},\\\"content\\\":[{\\\"type\\\":\\\"text\\\",\\\"text\\\":\\\"I need to buy:\\\",\\\"styles\\\":{}}]}},{\\\"cursor\\\":true},{\\\"id\\\":\\\"ref2$\\\",\\\"block\\\":{\\\"id\\\":\\\"ref2\\\",\\\"type\\\":\\\"paragraph\\\",\\\"props\\\":{\\\"textColor\\\":\\\"default\\\",\\\"backgroundColor\\\":\\\"default\\\",\\\"textAlignment\\\":\\\"left\\\"},\\\"content\\\":[{\\\"type\\\":\\\"text\\\",\\\"text\\\":\\\"Apples\\\",\\\"styles\\\":{}}]}}]\"},{\"role\":\"system\",\"content\":\"The user asks you to do the following:\"},{\"role\":\"user\",\"content\":\"make apples uppercase\"},{\"role\":\"system\",\"content\":\"First, determine what part of the document the user is talking about. You SHOULD probably take cursor info into account if needed.\\n EXAMPLE: if user says \\\"below\\\" (without pointing to a specific part of the document) he / she probably indicates the block(s) after the cursor. \\n EXAMPLE: If you want to insert content AT the cursor position (UNLESS indicated otherwise by the user), then you need `referenceId` to point to the block before the cursor with position `after` (or block below and `before`).\\n \\n Prefer updating existing blocks over removing and adding (but this also depends on the user's question).\"}],\"tool_choice\":{\"type\":\"function\",\"function\":{\"name\":\"json\"}},\"tools\":[{\"type\":\"function\",\"function\":{\"name\":\"json\",\"description\":\"Respond with a JSON object.\",\"parameters\":{\"type\":\"object\",\"properties\":{\"operations\":{\"type\":\"array\",\"items\":{\"anyOf\":[{\"type\":\"object\",\"description\":\"Update a block, the new block will replace the existing block.\",\"properties\":{\"type\":{\"type\":\"string\",\"enum\":[\"update\"]},\"id\":{\"type\":\"string\",\"description\":\"id of block to update\"},\"block\":{\"$ref\":\"#/$defs/block\"}},\"required\":[\"type\",\"id\",\"block\"],\"additionalProperties\":false},{\"type\":\"object\",\"description\":\"Insert new blocks\",\"properties\":{\"type\":{\"type\":\"string\",\"enum\":[\"add\"]},\"referenceId\":{\"type\":\"string\",\"description\":\"MUST be an id of a block in the document\"},\"position\":{\"type\":\"string\",\"enum\":[\"before\",\"after\"],\"description\":\"`after` to add blocks AFTER (below) the block with `referenceId`, `before` to add the block BEFORE (above)\"},\"blocks\":{\"items\":{\"$ref\":\"#/$defs/block\"},\"type\":\"array\"}},\"required\":[\"type\",\"referenceId\",\"position\",\"blocks\"],\"additionalProperties\":false},{\"type\":\"object\",\"description\":\"Delete a block\",\"properties\":{\"type\":{\"type\":\"string\",\"enum\":[\"delete\"]},\"id\":{\"type\":\"string\",\"description\":\"id of block to delete\"}},\"required\":[\"type\",\"id\"],\"additionalProperties\":false}]}}},\"additionalProperties\":false,\"required\":[\"operations\"],\"$defs\":{\"styles\":{\"type\":\"object\",\"properties\":{\"bold\":{\"type\":\"boolean\"},\"italic\":{\"type\":\"boolean\"},\"underline\":{\"type\":\"boolean\"},\"strike\":{\"type\":\"boolean\"},\"code\":{\"type\":\"boolean\"},\"textColor\":{\"type\":\"string\"},\"backgroundColor\":{\"type\":\"string\"}},\"additionalProperties\":false},\"styledtext\":{\"type\":\"object\",\"properties\":{\"type\":{\"type\":\"string\",\"enum\":[\"text\"]},\"text\":{\"type\":\"string\"},\"styles\":{\"$ref\":\"#/$defs/styles\"}},\"additionalProperties\":false,\"required\":[\"type\",\"text\"]},\"inlinecontent\":{\"type\":\"array\",\"items\":{\"anyOf\":[{\"type\":\"object\",\"properties\":{\"type\":{\"type\":\"string\",\"enum\":[\"mention\"]},\"props\":{\"type\":\"object\",\"properties\":{\"user\":{\"type\":\"string\"}},\"additionalProperties\":false}},\"additionalProperties\":false,\"required\":[\"type\"]},{\"$ref\":\"#/$defs/styledtext\"},{\"type\":\"object\",\"properties\":{\"type\":{\"type\":\"string\",\"enum\":[\"link\"]},\"content\":{\"type\":\"array\",\"items\":{\"$ref\":\"#/$defs/styledtext\"}},\"href\":{\"type\":\"string\"}},\"additionalProperties\":false,\"required\":[\"type\",\"href\",\"content\"]}]}},\"block\":{\"anyOf\":[{\"type\":\"object\",\"properties\":{\"type\":{\"type\":\"string\",\"enum\":[\"paragraph\",\"quote\",\"toggleListItem\",\"bulletListItem\",\"numberedListItem\"]},\"content\":{\"$ref\":\"#/$defs/inlinecontent\"},\"props\":{\"type\":\"object\",\"properties\":{},\"additionalProperties\":false}},\"additionalProperties\":false,\"required\":[\"type\"]},{\"type\":\"object\",\"properties\":{\"type\":{\"type\":\"string\",\"enum\":[\"heading\"]},\"content\":{\"$ref\":\"#/$defs/inlinecontent\"},\"props\":{\"type\":\"object\",\"properties\":{\"level\":{\"type\":\"number\",\"enum\":[1,2,3]},\"isTogglable\":{\"type\":\"boolean\"}},\"additionalProperties\":false}},\"additionalProperties\":false,\"required\":[\"type\"]},{\"type\":\"object\",\"properties\":{\"type\":{\"type\":\"string\",\"enum\":[\"codeBlock\"]},\"content\":{\"$ref\":\"#/$defs/inlinecontent\"},\"props\":{\"type\":\"object\",\"properties\":{\"language\":{\"type\":\"string\"}},\"additionalProperties\":false}},\"additionalProperties\":false,\"required\":[\"type\"]},{\"type\":\"object\",\"properties\":{\"type\":{\"type\":\"string\",\"enum\":[\"checkListItem\"]},\"content\":{\"$ref\":\"#/$defs/inlinecontent\"},\"props\":{\"type\":\"object\",\"properties\":{\"checked\":{\"type\":\"boolean\"}},\"additionalProperties\":false}},\"additionalProperties\":false,\"required\":[\"type\"]},{\"type\":\"object\",\"properties\":{\"type\":{\"type\":\"string\",\"enum\":[\"table\"]},\"content\":{\"type\":\"object\",\"properties\":{}},\"props\":{\"type\":\"object\",\"properties\":{},\"additionalProperties\":false}},\"additionalProperties\":false,\"required\":[\"type\"]}]}}}}}]}", "headers": [], "cookies": [] }, "response": { "status": 200, "statusText": "", - "body": "{\n \"id\": \"chatcmpl-BgV5pQZINru5bWLkmPKIdXdVSWwwO\",\n \"object\": \"chat.completion\",\n \"created\": 1749468997,\n \"model\": \"gpt-4o-2024-08-06\",\n \"choices\": [\n {\n \"index\": 0,\n \"message\": {\n \"role\": \"assistant\",\n \"content\": null,\n \"tool_calls\": [\n {\n \"id\": \"call_JKvZ9uvQu9wsPVR30wNlwLPP\",\n \"type\": \"function\",\n \"function\": {\n \"name\": \"json\",\n \"arguments\": \"{\\\"operations\\\":[{\\\"type\\\":\\\"update\\\",\\\"id\\\":\\\"ref2$\\\",\\\"block\\\":{\\\"type\\\":\\\"paragraph\\\",\\\"content\\\":[{\\\"type\\\":\\\"text\\\",\\\"text\\\":\\\"APPLES\\\",\\\"styles\\\":{}}]}}]}\"\n }\n }\n ],\n \"refusal\": null,\n \"annotations\": []\n },\n \"logprobs\": null,\n \"finish_reason\": \"stop\"\n }\n ],\n \"usage\": {\n \"prompt_tokens\": 985,\n \"completion_tokens\": 39,\n \"total_tokens\": 1024,\n \"prompt_tokens_details\": {\n \"cached_tokens\": 0,\n \"audio_tokens\": 0\n },\n \"completion_tokens_details\": {\n \"reasoning_tokens\": 0,\n \"audio_tokens\": 0,\n \"accepted_prediction_tokens\": 0,\n \"rejected_prediction_tokens\": 0\n }\n },\n \"service_tier\": \"default\",\n \"system_fingerprint\": \"fp_07871e2ad8\"\n}\n", + "body": "{\n \"id\": \"chatcmpl-BhXo2NneNfn6DBEMfMH8UHJy8sW4t\",\n \"object\": \"chat.completion\",\n \"created\": 1749717754,\n \"model\": \"gpt-4o-2024-08-06\",\n \"choices\": [\n {\n \"index\": 0,\n \"message\": {\n \"role\": \"assistant\",\n \"content\": null,\n \"tool_calls\": [\n {\n \"id\": \"call_oPXHONN5HVmpXrXKofYQT1Wh\",\n \"type\": \"function\",\n \"function\": {\n \"name\": \"json\",\n \"arguments\": \"{\\\"operations\\\":[{\\\"type\\\":\\\"update\\\",\\\"id\\\":\\\"ref2$\\\",\\\"block\\\":{\\\"type\\\":\\\"paragraph\\\",\\\"content\\\":[{\\\"type\\\":\\\"text\\\",\\\"text\\\":\\\"APPLES\\\",\\\"styles\\\":{}}]}}]}\"\n }\n }\n ],\n \"refusal\": null,\n \"annotations\": []\n },\n \"logprobs\": null,\n \"finish_reason\": \"stop\"\n }\n ],\n \"usage\": {\n \"prompt_tokens\": 1013,\n \"completion_tokens\": 39,\n \"total_tokens\": 1052,\n \"prompt_tokens_details\": {\n \"cached_tokens\": 0,\n \"audio_tokens\": 0\n },\n \"completion_tokens_details\": {\n \"reasoning_tokens\": 0,\n \"audio_tokens\": 0,\n \"accepted_prediction_tokens\": 0,\n \"rejected_prediction_tokens\": 0\n }\n },\n \"service_tier\": \"default\",\n \"system_fingerprint\": \"fp_a288987b44\"\n}\n", "headers": [] } } \ No newline at end of file diff --git a/packages/xl-ai/src/api/formats/json/__snapshots__/json.test.ts/Update/__msw_snapshots__/openai.chat/gpt-4o-2024-08-06 (non-streaming)/modify parent content_1_664184e2b9e2ab2b645c796cf2b5bfbc.json b/packages/xl-ai/src/api/formats/json/__snapshots__/json.test.ts/Update/__msw_snapshots__/openai.chat/gpt-4o-2024-08-06 (non-streaming)/modify parent content_1_a5d76e4c49a826b8ea557b145d9ae031.json similarity index 67% rename from packages/xl-ai/src/api/formats/json/__snapshots__/json.test.ts/Update/__msw_snapshots__/openai.chat/gpt-4o-2024-08-06 (non-streaming)/modify parent content_1_664184e2b9e2ab2b645c796cf2b5bfbc.json rename to packages/xl-ai/src/api/formats/json/__snapshots__/json.test.ts/Update/__msw_snapshots__/openai.chat/gpt-4o-2024-08-06 (non-streaming)/modify parent content_1_a5d76e4c49a826b8ea557b145d9ae031.json index 55538db29f..f73f7e7236 100644 --- a/packages/xl-ai/src/api/formats/json/__snapshots__/json.test.ts/Update/__msw_snapshots__/openai.chat/gpt-4o-2024-08-06 (non-streaming)/modify parent content_1_664184e2b9e2ab2b645c796cf2b5bfbc.json +++ b/packages/xl-ai/src/api/formats/json/__snapshots__/json.test.ts/Update/__msw_snapshots__/openai.chat/gpt-4o-2024-08-06 (non-streaming)/modify parent content_1_a5d76e4c49a826b8ea557b145d9ae031.json @@ -2,14 +2,14 @@ "request": { "method": "POST", "url": "https://localhost:3000/ai?provider=openai&url=https%3A%2F%2Fapi.openai.com%2Fv1%2Fchat%2Fcompletions", - "body": "{\"model\":\"gpt-4o-2024-08-06\",\"temperature\":0,\"messages\":[{\"role\":\"system\",\"content\":\"You're manipulating a text document using JSON blocks. \\n Make sure to follow the json schema provided. When referencing ids they MUST be EXACTLY the same (including the trailing $). \\n This is the document as an array of JSON blocks (the cursor is BETWEEN two blocks as indicated by cursor: true):\"},{\"role\":\"system\",\"content\":\"[{\\\"id\\\":\\\"ref1$\\\",\\\"block\\\":{\\\"id\\\":\\\"ref1\\\",\\\"type\\\":\\\"paragraph\\\",\\\"props\\\":{\\\"textColor\\\":\\\"default\\\",\\\"backgroundColor\\\":\\\"default\\\",\\\"textAlignment\\\":\\\"left\\\"},\\\"content\\\":[{\\\"type\\\":\\\"text\\\",\\\"text\\\":\\\"I need to buy:\\\",\\\"styles\\\":{}}]}},{\\\"cursor\\\":true},{\\\"id\\\":\\\"ref2$\\\",\\\"block\\\":{\\\"id\\\":\\\"ref2\\\",\\\"type\\\":\\\"paragraph\\\",\\\"props\\\":{\\\"textColor\\\":\\\"default\\\",\\\"backgroundColor\\\":\\\"default\\\",\\\"textAlignment\\\":\\\"left\\\"},\\\"content\\\":[{\\\"type\\\":\\\"text\\\",\\\"text\\\":\\\"Apples\\\",\\\"styles\\\":{}}]}}]\"},{\"role\":\"system\",\"content\":\"The user asks you to do the following:\"},{\"role\":\"user\",\"content\":\"make the first paragraph uppercase\"},{\"role\":\"system\",\"content\":\"First, determine what part of the document the user is talking about. You SHOULD probably take cursor info into account if needed.\\n EXAMPLE: if user says \\\"below\\\" (without pointing to a specific part of the document) he / she probably indicates the block(s) after the cursor. \\n EXAMPLE: If you want to insert content AT the cursor position (UNLESS indicated otherwise by the user), then you need `referenceId` to point to the block before the cursor with position `after` (or block below and `before`).\\n \\n Prefer updating existing blocks over removing and adding (but this also depends on the user's question).\"}],\"tool_choice\":{\"type\":\"function\",\"function\":{\"name\":\"json\"}},\"tools\":[{\"type\":\"function\",\"function\":{\"name\":\"json\",\"description\":\"Respond with a JSON object.\",\"parameters\":{\"type\":\"object\",\"properties\":{\"operations\":{\"type\":\"array\",\"items\":{\"anyOf\":[{\"type\":\"object\",\"description\":\"Update a block, the new block will replace the existing block.\",\"properties\":{\"type\":{\"type\":\"string\",\"enum\":[\"update\"]},\"id\":{\"type\":\"string\",\"description\":\"id of block to update\"},\"block\":{\"$ref\":\"#/$defs/block\"}},\"required\":[\"type\",\"id\",\"block\"],\"additionalProperties\":false},{\"type\":\"object\",\"description\":\"Insert new blocks\",\"properties\":{\"type\":{\"type\":\"string\",\"enum\":[\"add\"]},\"referenceId\":{\"type\":\"string\",\"description\":\"MUST be an id of a block in the document\"},\"position\":{\"type\":\"string\",\"enum\":[\"before\",\"after\"],\"description\":\"`after` to add blocks AFTER (below) the block with `referenceId`, `before` to add the block BEFORE (above)\"},\"blocks\":{\"items\":{\"$ref\":\"#/$defs/block\"},\"type\":\"array\"}},\"required\":[\"type\",\"referenceId\",\"position\",\"blocks\"],\"additionalProperties\":false},{\"type\":\"object\",\"description\":\"Delete a block\",\"properties\":{\"type\":{\"type\":\"string\",\"enum\":[\"delete\"]},\"id\":{\"type\":\"string\",\"description\":\"id of block to delete\"}},\"required\":[\"type\",\"id\"],\"additionalProperties\":false}]}}},\"additionalProperties\":false,\"required\":[\"operations\"],\"$defs\":{\"styles\":{\"type\":\"object\",\"properties\":{\"bold\":{\"type\":\"boolean\"},\"italic\":{\"type\":\"boolean\"},\"underline\":{\"type\":\"boolean\"},\"strike\":{\"type\":\"boolean\"},\"code\":{\"type\":\"boolean\"},\"textColor\":{\"type\":\"string\"},\"backgroundColor\":{\"type\":\"string\"}},\"additionalProperties\":false},\"styledtext\":{\"type\":\"object\",\"properties\":{\"type\":{\"type\":\"string\",\"enum\":[\"text\"]},\"text\":{\"type\":\"string\"},\"styles\":{\"$ref\":\"#/$defs/styles\"}},\"additionalProperties\":false,\"required\":[\"type\",\"text\"]},\"inlinecontent\":{\"type\":\"array\",\"items\":{\"anyOf\":[{\"type\":\"object\",\"properties\":{\"type\":{\"type\":\"string\",\"enum\":[\"mention\"]},\"props\":{\"type\":\"object\",\"properties\":{\"user\":{\"type\":\"string\"}},\"additionalProperties\":false}},\"additionalProperties\":false,\"required\":[\"type\"]},{\"$ref\":\"#/$defs/styledtext\"},{\"type\":\"object\",\"properties\":{\"type\":{\"type\":\"string\",\"enum\":[\"link\"]},\"content\":{\"type\":\"array\",\"items\":{\"$ref\":\"#/$defs/styledtext\"}},\"href\":{\"type\":\"string\"}},\"additionalProperties\":false,\"required\":[\"type\",\"href\",\"content\"]}]}},\"block\":{\"anyOf\":[{\"type\":\"object\",\"properties\":{\"type\":{\"type\":\"string\",\"enum\":[\"paragraph\",\"quote\",\"bulletListItem\",\"numberedListItem\"]},\"content\":{\"$ref\":\"#/$defs/inlinecontent\"},\"props\":{\"type\":\"object\",\"properties\":{},\"additionalProperties\":false}},\"additionalProperties\":false,\"required\":[\"type\"]},{\"type\":\"object\",\"properties\":{\"type\":{\"type\":\"string\",\"enum\":[\"heading\"]},\"content\":{\"$ref\":\"#/$defs/inlinecontent\"},\"props\":{\"type\":\"object\",\"properties\":{\"level\":{\"type\":\"number\",\"enum\":[1,2,3]}},\"additionalProperties\":false}},\"additionalProperties\":false,\"required\":[\"type\"]},{\"type\":\"object\",\"properties\":{\"type\":{\"type\":\"string\",\"enum\":[\"codeBlock\"]},\"content\":{\"$ref\":\"#/$defs/inlinecontent\"},\"props\":{\"type\":\"object\",\"properties\":{\"language\":{\"type\":\"string\"}},\"additionalProperties\":false}},\"additionalProperties\":false,\"required\":[\"type\"]},{\"type\":\"object\",\"properties\":{\"type\":{\"type\":\"string\",\"enum\":[\"checkListItem\"]},\"content\":{\"$ref\":\"#/$defs/inlinecontent\"},\"props\":{\"type\":\"object\",\"properties\":{\"checked\":{\"type\":\"boolean\"}},\"additionalProperties\":false}},\"additionalProperties\":false,\"required\":[\"type\"]},{\"type\":\"object\",\"properties\":{\"type\":{\"type\":\"string\",\"enum\":[\"table\"]},\"content\":{\"type\":\"object\",\"properties\":{}},\"props\":{\"type\":\"object\",\"properties\":{},\"additionalProperties\":false}},\"additionalProperties\":false,\"required\":[\"type\"]}]}}}}}]}", + "body": "{\"model\":\"gpt-4o-2024-08-06\",\"temperature\":0,\"messages\":[{\"role\":\"system\",\"content\":\"You're manipulating a text document using JSON blocks. \\n Make sure to follow the json schema provided. When referencing ids they MUST be EXACTLY the same (including the trailing $). \\n This is the document as an array of JSON blocks (the cursor is BETWEEN two blocks as indicated by cursor: true):\"},{\"role\":\"system\",\"content\":\"[{\\\"id\\\":\\\"ref1$\\\",\\\"block\\\":{\\\"id\\\":\\\"ref1\\\",\\\"type\\\":\\\"paragraph\\\",\\\"props\\\":{\\\"textColor\\\":\\\"default\\\",\\\"backgroundColor\\\":\\\"default\\\",\\\"textAlignment\\\":\\\"left\\\"},\\\"content\\\":[{\\\"type\\\":\\\"text\\\",\\\"text\\\":\\\"I need to buy:\\\",\\\"styles\\\":{}}]}},{\\\"cursor\\\":true},{\\\"id\\\":\\\"ref2$\\\",\\\"block\\\":{\\\"id\\\":\\\"ref2\\\",\\\"type\\\":\\\"paragraph\\\",\\\"props\\\":{\\\"textColor\\\":\\\"default\\\",\\\"backgroundColor\\\":\\\"default\\\",\\\"textAlignment\\\":\\\"left\\\"},\\\"content\\\":[{\\\"type\\\":\\\"text\\\",\\\"text\\\":\\\"Apples\\\",\\\"styles\\\":{}}]}}]\"},{\"role\":\"system\",\"content\":\"The user asks you to do the following:\"},{\"role\":\"user\",\"content\":\"make the first paragraph uppercase\"},{\"role\":\"system\",\"content\":\"First, determine what part of the document the user is talking about. You SHOULD probably take cursor info into account if needed.\\n EXAMPLE: if user says \\\"below\\\" (without pointing to a specific part of the document) he / she probably indicates the block(s) after the cursor. \\n EXAMPLE: If you want to insert content AT the cursor position (UNLESS indicated otherwise by the user), then you need `referenceId` to point to the block before the cursor with position `after` (or block below and `before`).\\n \\n Prefer updating existing blocks over removing and adding (but this also depends on the user's question).\"}],\"tool_choice\":{\"type\":\"function\",\"function\":{\"name\":\"json\"}},\"tools\":[{\"type\":\"function\",\"function\":{\"name\":\"json\",\"description\":\"Respond with a JSON object.\",\"parameters\":{\"type\":\"object\",\"properties\":{\"operations\":{\"type\":\"array\",\"items\":{\"anyOf\":[{\"type\":\"object\",\"description\":\"Update a block, the new block will replace the existing block.\",\"properties\":{\"type\":{\"type\":\"string\",\"enum\":[\"update\"]},\"id\":{\"type\":\"string\",\"description\":\"id of block to update\"},\"block\":{\"$ref\":\"#/$defs/block\"}},\"required\":[\"type\",\"id\",\"block\"],\"additionalProperties\":false},{\"type\":\"object\",\"description\":\"Insert new blocks\",\"properties\":{\"type\":{\"type\":\"string\",\"enum\":[\"add\"]},\"referenceId\":{\"type\":\"string\",\"description\":\"MUST be an id of a block in the document\"},\"position\":{\"type\":\"string\",\"enum\":[\"before\",\"after\"],\"description\":\"`after` to add blocks AFTER (below) the block with `referenceId`, `before` to add the block BEFORE (above)\"},\"blocks\":{\"items\":{\"$ref\":\"#/$defs/block\"},\"type\":\"array\"}},\"required\":[\"type\",\"referenceId\",\"position\",\"blocks\"],\"additionalProperties\":false},{\"type\":\"object\",\"description\":\"Delete a block\",\"properties\":{\"type\":{\"type\":\"string\",\"enum\":[\"delete\"]},\"id\":{\"type\":\"string\",\"description\":\"id of block to delete\"}},\"required\":[\"type\",\"id\"],\"additionalProperties\":false}]}}},\"additionalProperties\":false,\"required\":[\"operations\"],\"$defs\":{\"styles\":{\"type\":\"object\",\"properties\":{\"bold\":{\"type\":\"boolean\"},\"italic\":{\"type\":\"boolean\"},\"underline\":{\"type\":\"boolean\"},\"strike\":{\"type\":\"boolean\"},\"code\":{\"type\":\"boolean\"},\"textColor\":{\"type\":\"string\"},\"backgroundColor\":{\"type\":\"string\"}},\"additionalProperties\":false},\"styledtext\":{\"type\":\"object\",\"properties\":{\"type\":{\"type\":\"string\",\"enum\":[\"text\"]},\"text\":{\"type\":\"string\"},\"styles\":{\"$ref\":\"#/$defs/styles\"}},\"additionalProperties\":false,\"required\":[\"type\",\"text\"]},\"inlinecontent\":{\"type\":\"array\",\"items\":{\"anyOf\":[{\"type\":\"object\",\"properties\":{\"type\":{\"type\":\"string\",\"enum\":[\"mention\"]},\"props\":{\"type\":\"object\",\"properties\":{\"user\":{\"type\":\"string\"}},\"additionalProperties\":false}},\"additionalProperties\":false,\"required\":[\"type\"]},{\"$ref\":\"#/$defs/styledtext\"},{\"type\":\"object\",\"properties\":{\"type\":{\"type\":\"string\",\"enum\":[\"link\"]},\"content\":{\"type\":\"array\",\"items\":{\"$ref\":\"#/$defs/styledtext\"}},\"href\":{\"type\":\"string\"}},\"additionalProperties\":false,\"required\":[\"type\",\"href\",\"content\"]}]}},\"block\":{\"anyOf\":[{\"type\":\"object\",\"properties\":{\"type\":{\"type\":\"string\",\"enum\":[\"paragraph\",\"quote\",\"toggleListItem\",\"bulletListItem\",\"numberedListItem\"]},\"content\":{\"$ref\":\"#/$defs/inlinecontent\"},\"props\":{\"type\":\"object\",\"properties\":{},\"additionalProperties\":false}},\"additionalProperties\":false,\"required\":[\"type\"]},{\"type\":\"object\",\"properties\":{\"type\":{\"type\":\"string\",\"enum\":[\"heading\"]},\"content\":{\"$ref\":\"#/$defs/inlinecontent\"},\"props\":{\"type\":\"object\",\"properties\":{\"level\":{\"type\":\"number\",\"enum\":[1,2,3]},\"isTogglable\":{\"type\":\"boolean\"}},\"additionalProperties\":false}},\"additionalProperties\":false,\"required\":[\"type\"]},{\"type\":\"object\",\"properties\":{\"type\":{\"type\":\"string\",\"enum\":[\"codeBlock\"]},\"content\":{\"$ref\":\"#/$defs/inlinecontent\"},\"props\":{\"type\":\"object\",\"properties\":{\"language\":{\"type\":\"string\"}},\"additionalProperties\":false}},\"additionalProperties\":false,\"required\":[\"type\"]},{\"type\":\"object\",\"properties\":{\"type\":{\"type\":\"string\",\"enum\":[\"checkListItem\"]},\"content\":{\"$ref\":\"#/$defs/inlinecontent\"},\"props\":{\"type\":\"object\",\"properties\":{\"checked\":{\"type\":\"boolean\"}},\"additionalProperties\":false}},\"additionalProperties\":false,\"required\":[\"type\"]},{\"type\":\"object\",\"properties\":{\"type\":{\"type\":\"string\",\"enum\":[\"table\"]},\"content\":{\"type\":\"object\",\"properties\":{}},\"props\":{\"type\":\"object\",\"properties\":{},\"additionalProperties\":false}},\"additionalProperties\":false,\"required\":[\"type\"]}]}}}}}]}", "headers": [], "cookies": [] }, "response": { "status": 200, "statusText": "", - "body": "{\n \"id\": \"chatcmpl-BgV5r62phJ8mrcxhMmktmCJZHKIFt\",\n \"object\": \"chat.completion\",\n \"created\": 1749468999,\n \"model\": \"gpt-4o-2024-08-06\",\n \"choices\": [\n {\n \"index\": 0,\n \"message\": {\n \"role\": \"assistant\",\n \"content\": null,\n \"tool_calls\": [\n {\n \"id\": \"call_5vcuYFtR85PPlOne2UNRs4QI\",\n \"type\": \"function\",\n \"function\": {\n \"name\": \"json\",\n \"arguments\": \"{\\\"operations\\\":[{\\\"type\\\":\\\"update\\\",\\\"id\\\":\\\"ref1$\\\",\\\"block\\\":{\\\"type\\\":\\\"paragraph\\\",\\\"props\\\":{\\\"textColor\\\":\\\"default\\\",\\\"backgroundColor\\\":\\\"default\\\",\\\"textAlignment\\\":\\\"left\\\"},\\\"content\\\":[{\\\"type\\\":\\\"text\\\",\\\"text\\\":\\\"I NEED TO BUY:\\\",\\\"styles\\\":{}}]}}]}\"\n }\n }\n ],\n \"refusal\": null,\n \"annotations\": []\n },\n \"logprobs\": null,\n \"finish_reason\": \"stop\"\n }\n ],\n \"usage\": {\n \"prompt_tokens\": 987,\n \"completion_tokens\": 60,\n \"total_tokens\": 1047,\n \"prompt_tokens_details\": {\n \"cached_tokens\": 0,\n \"audio_tokens\": 0\n },\n \"completion_tokens_details\": {\n \"reasoning_tokens\": 0,\n \"audio_tokens\": 0,\n \"accepted_prediction_tokens\": 0,\n \"rejected_prediction_tokens\": 0\n }\n },\n \"service_tier\": \"default\",\n \"system_fingerprint\": \"fp_07871e2ad8\"\n}\n", + "body": "{\n \"id\": \"chatcmpl-BhXo3iwbTCH8t4I4SxurGNAb4ixB5\",\n \"object\": \"chat.completion\",\n \"created\": 1749717755,\n \"model\": \"gpt-4o-2024-08-06\",\n \"choices\": [\n {\n \"index\": 0,\n \"message\": {\n \"role\": \"assistant\",\n \"content\": null,\n \"tool_calls\": [\n {\n \"id\": \"call_oDxXSIgkoBs1MLYsrCYp5VB4\",\n \"type\": \"function\",\n \"function\": {\n \"name\": \"json\",\n \"arguments\": \"{\\\"operations\\\":[{\\\"type\\\":\\\"update\\\",\\\"id\\\":\\\"ref1$\\\",\\\"block\\\":{\\\"type\\\":\\\"paragraph\\\",\\\"content\\\":[{\\\"type\\\":\\\"text\\\",\\\"text\\\":\\\"I NEED TO BUY:\\\",\\\"styles\\\":{}}]}}]}\"\n }\n }\n ],\n \"refusal\": null,\n \"annotations\": []\n },\n \"logprobs\": null,\n \"finish_reason\": \"stop\"\n }\n ],\n \"usage\": {\n \"prompt_tokens\": 1015,\n \"completion_tokens\": 42,\n \"total_tokens\": 1057,\n \"prompt_tokens_details\": {\n \"cached_tokens\": 0,\n \"audio_tokens\": 0\n },\n \"completion_tokens_details\": {\n \"reasoning_tokens\": 0,\n \"audio_tokens\": 0,\n \"accepted_prediction_tokens\": 0,\n \"rejected_prediction_tokens\": 0\n }\n },\n \"service_tier\": \"default\",\n \"system_fingerprint\": \"fp_a288987b44\"\n}\n", "headers": [] } } \ No newline at end of file diff --git a/packages/xl-ai/src/api/formats/json/__snapshots__/json.test.ts/Update/__msw_snapshots__/openai.chat/gpt-4o-2024-08-06 (non-streaming)/plain source block, add mention_1_da70f6a7005c5a2cd1c59c6aec2e00d1.json b/packages/xl-ai/src/api/formats/json/__snapshots__/json.test.ts/Update/__msw_snapshots__/openai.chat/gpt-4o-2024-08-06 (non-streaming)/plain source block, add mention_1_e3413734761ef09ecdaa4405eebc2270.json similarity index 76% rename from packages/xl-ai/src/api/formats/json/__snapshots__/json.test.ts/Update/__msw_snapshots__/openai.chat/gpt-4o-2024-08-06 (non-streaming)/plain source block, add mention_1_da70f6a7005c5a2cd1c59c6aec2e00d1.json rename to packages/xl-ai/src/api/formats/json/__snapshots__/json.test.ts/Update/__msw_snapshots__/openai.chat/gpt-4o-2024-08-06 (non-streaming)/plain source block, add mention_1_e3413734761ef09ecdaa4405eebc2270.json index a824d6570d..6b345938ba 100644 --- a/packages/xl-ai/src/api/formats/json/__snapshots__/json.test.ts/Update/__msw_snapshots__/openai.chat/gpt-4o-2024-08-06 (non-streaming)/plain source block, add mention_1_da70f6a7005c5a2cd1c59c6aec2e00d1.json +++ b/packages/xl-ai/src/api/formats/json/__snapshots__/json.test.ts/Update/__msw_snapshots__/openai.chat/gpt-4o-2024-08-06 (non-streaming)/plain source block, add mention_1_e3413734761ef09ecdaa4405eebc2270.json @@ -2,14 +2,14 @@ "request": { "method": "POST", "url": "https://localhost:3000/ai?provider=openai&url=https%3A%2F%2Fapi.openai.com%2Fv1%2Fchat%2Fcompletions", - "body": "{\"model\":\"gpt-4o-2024-08-06\",\"temperature\":0,\"messages\":[{\"role\":\"system\",\"content\":\"You're manipulating a text document using JSON blocks. \\n Make sure to follow the json schema provided. When referencing ids they MUST be EXACTLY the same (including the trailing $). \\n This is the document as an array of JSON blocks (the cursor is BETWEEN two blocks as indicated by cursor: true):\"},{\"role\":\"system\",\"content\":\"[{\\\"id\\\":\\\"ref1$\\\",\\\"block\\\":{\\\"id\\\":\\\"ref1\\\",\\\"type\\\":\\\"paragraph\\\",\\\"props\\\":{\\\"textColor\\\":\\\"default\\\",\\\"backgroundColor\\\":\\\"default\\\",\\\"textAlignment\\\":\\\"left\\\"},\\\"content\\\":[{\\\"type\\\":\\\"text\\\",\\\"text\\\":\\\"Hello, world!\\\",\\\"styles\\\":{}}]}},{\\\"cursor\\\":true},{\\\"id\\\":\\\"ref2$\\\",\\\"block\\\":{\\\"id\\\":\\\"ref2\\\",\\\"type\\\":\\\"paragraph\\\",\\\"props\\\":{\\\"textColor\\\":\\\"default\\\",\\\"backgroundColor\\\":\\\"default\\\",\\\"textAlignment\\\":\\\"left\\\"},\\\"content\\\":[{\\\"type\\\":\\\"text\\\",\\\"text\\\":\\\"Hello, \\\",\\\"styles\\\":{}},{\\\"type\\\":\\\"mention\\\",\\\"props\\\":{\\\"user\\\":\\\"John Doe\\\"}},{\\\"type\\\":\\\"text\\\",\\\"text\\\":\\\"! \\\",\\\"styles\\\":{}},{\\\"type\\\":\\\"text\\\",\\\"text\\\":\\\"How are you doing?\\\",\\\"styles\\\":{\\\"bold\\\":true}},{\\\"type\\\":\\\"text\\\",\\\"text\\\":\\\" \\\",\\\"styles\\\":{}},{\\\"type\\\":\\\"text\\\",\\\"text\\\":\\\"This text is blue!\\\",\\\"styles\\\":{\\\"textColor\\\":\\\"blue\\\"}}]}},{\\\"id\\\":\\\"ref3$\\\",\\\"block\\\":{\\\"id\\\":\\\"ref3\\\",\\\"type\\\":\\\"paragraph\\\",\\\"props\\\":{\\\"textColor\\\":\\\"default\\\",\\\"backgroundColor\\\":\\\"default\\\",\\\"textAlignment\\\":\\\"left\\\"},\\\"content\\\":[{\\\"type\\\":\\\"text\\\",\\\"text\\\":\\\"Hello, world! \\\",\\\"styles\\\":{}},{\\\"type\\\":\\\"text\\\",\\\"text\\\":\\\"Bold text. \\\",\\\"styles\\\":{\\\"bold\\\":true}},{\\\"type\\\":\\\"link\\\",\\\"href\\\":\\\"https://www.google.com\\\",\\\"content\\\":[{\\\"type\\\":\\\"text\\\",\\\"text\\\":\\\"Link.\\\",\\\"styles\\\":{}}]}]}}]\"},{\"role\":\"system\",\"content\":\"The user asks you to do the following:\"},{\"role\":\"user\",\"content\":\"Change the first paragraph to Hello, Jane Doe! (use a mention)\"},{\"role\":\"system\",\"content\":\"First, determine what part of the document the user is talking about. You SHOULD probably take cursor info into account if needed.\\n EXAMPLE: if user says \\\"below\\\" (without pointing to a specific part of the document) he / she probably indicates the block(s) after the cursor. \\n EXAMPLE: If you want to insert content AT the cursor position (UNLESS indicated otherwise by the user), then you need `referenceId` to point to the block before the cursor with position `after` (or block below and `before`).\\n \\n Prefer updating existing blocks over removing and adding (but this also depends on the user's question).\"}],\"tool_choice\":{\"type\":\"function\",\"function\":{\"name\":\"json\"}},\"tools\":[{\"type\":\"function\",\"function\":{\"name\":\"json\",\"description\":\"Respond with a JSON object.\",\"parameters\":{\"type\":\"object\",\"properties\":{\"operations\":{\"type\":\"array\",\"items\":{\"anyOf\":[{\"type\":\"object\",\"description\":\"Update a block, the new block will replace the existing block.\",\"properties\":{\"type\":{\"type\":\"string\",\"enum\":[\"update\"]},\"id\":{\"type\":\"string\",\"description\":\"id of block to update\"},\"block\":{\"$ref\":\"#/$defs/block\"}},\"required\":[\"type\",\"id\",\"block\"],\"additionalProperties\":false},{\"type\":\"object\",\"description\":\"Insert new blocks\",\"properties\":{\"type\":{\"type\":\"string\",\"enum\":[\"add\"]},\"referenceId\":{\"type\":\"string\",\"description\":\"MUST be an id of a block in the document\"},\"position\":{\"type\":\"string\",\"enum\":[\"before\",\"after\"],\"description\":\"`after` to add blocks AFTER (below) the block with `referenceId`, `before` to add the block BEFORE (above)\"},\"blocks\":{\"items\":{\"$ref\":\"#/$defs/block\"},\"type\":\"array\"}},\"required\":[\"type\",\"referenceId\",\"position\",\"blocks\"],\"additionalProperties\":false},{\"type\":\"object\",\"description\":\"Delete a block\",\"properties\":{\"type\":{\"type\":\"string\",\"enum\":[\"delete\"]},\"id\":{\"type\":\"string\",\"description\":\"id of block to delete\"}},\"required\":[\"type\",\"id\"],\"additionalProperties\":false}]}}},\"additionalProperties\":false,\"required\":[\"operations\"],\"$defs\":{\"styles\":{\"type\":\"object\",\"properties\":{\"bold\":{\"type\":\"boolean\"},\"italic\":{\"type\":\"boolean\"},\"underline\":{\"type\":\"boolean\"},\"strike\":{\"type\":\"boolean\"},\"code\":{\"type\":\"boolean\"},\"textColor\":{\"type\":\"string\"},\"backgroundColor\":{\"type\":\"string\"}},\"additionalProperties\":false},\"styledtext\":{\"type\":\"object\",\"properties\":{\"type\":{\"type\":\"string\",\"enum\":[\"text\"]},\"text\":{\"type\":\"string\"},\"styles\":{\"$ref\":\"#/$defs/styles\"}},\"additionalProperties\":false,\"required\":[\"type\",\"text\"]},\"inlinecontent\":{\"type\":\"array\",\"items\":{\"anyOf\":[{\"type\":\"object\",\"properties\":{\"type\":{\"type\":\"string\",\"enum\":[\"mention\"]},\"props\":{\"type\":\"object\",\"properties\":{\"user\":{\"type\":\"string\"}},\"additionalProperties\":false}},\"additionalProperties\":false,\"required\":[\"type\"]},{\"$ref\":\"#/$defs/styledtext\"},{\"type\":\"object\",\"properties\":{\"type\":{\"type\":\"string\",\"enum\":[\"link\"]},\"content\":{\"type\":\"array\",\"items\":{\"$ref\":\"#/$defs/styledtext\"}},\"href\":{\"type\":\"string\"}},\"additionalProperties\":false,\"required\":[\"type\",\"href\",\"content\"]}]}},\"block\":{\"anyOf\":[{\"type\":\"object\",\"properties\":{\"type\":{\"type\":\"string\",\"enum\":[\"paragraph\",\"quote\",\"bulletListItem\",\"numberedListItem\"]},\"content\":{\"$ref\":\"#/$defs/inlinecontent\"},\"props\":{\"type\":\"object\",\"properties\":{},\"additionalProperties\":false}},\"additionalProperties\":false,\"required\":[\"type\"]},{\"type\":\"object\",\"properties\":{\"type\":{\"type\":\"string\",\"enum\":[\"heading\"]},\"content\":{\"$ref\":\"#/$defs/inlinecontent\"},\"props\":{\"type\":\"object\",\"properties\":{\"level\":{\"type\":\"number\",\"enum\":[1,2,3]}},\"additionalProperties\":false}},\"additionalProperties\":false,\"required\":[\"type\"]},{\"type\":\"object\",\"properties\":{\"type\":{\"type\":\"string\",\"enum\":[\"codeBlock\"]},\"content\":{\"$ref\":\"#/$defs/inlinecontent\"},\"props\":{\"type\":\"object\",\"properties\":{\"language\":{\"type\":\"string\"}},\"additionalProperties\":false}},\"additionalProperties\":false,\"required\":[\"type\"]},{\"type\":\"object\",\"properties\":{\"type\":{\"type\":\"string\",\"enum\":[\"checkListItem\"]},\"content\":{\"$ref\":\"#/$defs/inlinecontent\"},\"props\":{\"type\":\"object\",\"properties\":{\"checked\":{\"type\":\"boolean\"}},\"additionalProperties\":false}},\"additionalProperties\":false,\"required\":[\"type\"]},{\"type\":\"object\",\"properties\":{\"type\":{\"type\":\"string\",\"enum\":[\"table\"]},\"content\":{\"type\":\"object\",\"properties\":{}},\"props\":{\"type\":\"object\",\"properties\":{},\"additionalProperties\":false}},\"additionalProperties\":false,\"required\":[\"type\"]}]}}}}}]}", + "body": "{\"model\":\"gpt-4o-2024-08-06\",\"temperature\":0,\"messages\":[{\"role\":\"system\",\"content\":\"You're manipulating a text document using JSON blocks. \\n Make sure to follow the json schema provided. When referencing ids they MUST be EXACTLY the same (including the trailing $). \\n This is the document as an array of JSON blocks (the cursor is BETWEEN two blocks as indicated by cursor: true):\"},{\"role\":\"system\",\"content\":\"[{\\\"id\\\":\\\"ref1$\\\",\\\"block\\\":{\\\"id\\\":\\\"ref1\\\",\\\"type\\\":\\\"paragraph\\\",\\\"props\\\":{\\\"textColor\\\":\\\"default\\\",\\\"backgroundColor\\\":\\\"default\\\",\\\"textAlignment\\\":\\\"left\\\"},\\\"content\\\":[{\\\"type\\\":\\\"text\\\",\\\"text\\\":\\\"Hello, world!\\\",\\\"styles\\\":{}}]}},{\\\"cursor\\\":true},{\\\"id\\\":\\\"ref2$\\\",\\\"block\\\":{\\\"id\\\":\\\"ref2\\\",\\\"type\\\":\\\"paragraph\\\",\\\"props\\\":{\\\"textColor\\\":\\\"default\\\",\\\"backgroundColor\\\":\\\"default\\\",\\\"textAlignment\\\":\\\"left\\\"},\\\"content\\\":[{\\\"type\\\":\\\"text\\\",\\\"text\\\":\\\"Hello, \\\",\\\"styles\\\":{}},{\\\"type\\\":\\\"mention\\\",\\\"props\\\":{\\\"user\\\":\\\"John Doe\\\"}},{\\\"type\\\":\\\"text\\\",\\\"text\\\":\\\"! \\\",\\\"styles\\\":{}},{\\\"type\\\":\\\"text\\\",\\\"text\\\":\\\"How are you doing?\\\",\\\"styles\\\":{\\\"bold\\\":true}},{\\\"type\\\":\\\"text\\\",\\\"text\\\":\\\" \\\",\\\"styles\\\":{}},{\\\"type\\\":\\\"text\\\",\\\"text\\\":\\\"This text is blue!\\\",\\\"styles\\\":{\\\"textColor\\\":\\\"blue\\\"}}]}},{\\\"id\\\":\\\"ref3$\\\",\\\"block\\\":{\\\"id\\\":\\\"ref3\\\",\\\"type\\\":\\\"paragraph\\\",\\\"props\\\":{\\\"textColor\\\":\\\"default\\\",\\\"backgroundColor\\\":\\\"default\\\",\\\"textAlignment\\\":\\\"left\\\"},\\\"content\\\":[{\\\"type\\\":\\\"text\\\",\\\"text\\\":\\\"Hello, world! \\\",\\\"styles\\\":{}},{\\\"type\\\":\\\"text\\\",\\\"text\\\":\\\"Bold text. \\\",\\\"styles\\\":{\\\"bold\\\":true}},{\\\"type\\\":\\\"link\\\",\\\"href\\\":\\\"https://www.google.com\\\",\\\"content\\\":[{\\\"type\\\":\\\"text\\\",\\\"text\\\":\\\"Link.\\\",\\\"styles\\\":{}}]}]}}]\"},{\"role\":\"system\",\"content\":\"The user asks you to do the following:\"},{\"role\":\"user\",\"content\":\"Change the first paragraph to Hello, Jane Doe! (use a mention)\"},{\"role\":\"system\",\"content\":\"First, determine what part of the document the user is talking about. You SHOULD probably take cursor info into account if needed.\\n EXAMPLE: if user says \\\"below\\\" (without pointing to a specific part of the document) he / she probably indicates the block(s) after the cursor. \\n EXAMPLE: If you want to insert content AT the cursor position (UNLESS indicated otherwise by the user), then you need `referenceId` to point to the block before the cursor with position `after` (or block below and `before`).\\n \\n Prefer updating existing blocks over removing and adding (but this also depends on the user's question).\"}],\"tool_choice\":{\"type\":\"function\",\"function\":{\"name\":\"json\"}},\"tools\":[{\"type\":\"function\",\"function\":{\"name\":\"json\",\"description\":\"Respond with a JSON object.\",\"parameters\":{\"type\":\"object\",\"properties\":{\"operations\":{\"type\":\"array\",\"items\":{\"anyOf\":[{\"type\":\"object\",\"description\":\"Update a block, the new block will replace the existing block.\",\"properties\":{\"type\":{\"type\":\"string\",\"enum\":[\"update\"]},\"id\":{\"type\":\"string\",\"description\":\"id of block to update\"},\"block\":{\"$ref\":\"#/$defs/block\"}},\"required\":[\"type\",\"id\",\"block\"],\"additionalProperties\":false},{\"type\":\"object\",\"description\":\"Insert new blocks\",\"properties\":{\"type\":{\"type\":\"string\",\"enum\":[\"add\"]},\"referenceId\":{\"type\":\"string\",\"description\":\"MUST be an id of a block in the document\"},\"position\":{\"type\":\"string\",\"enum\":[\"before\",\"after\"],\"description\":\"`after` to add blocks AFTER (below) the block with `referenceId`, `before` to add the block BEFORE (above)\"},\"blocks\":{\"items\":{\"$ref\":\"#/$defs/block\"},\"type\":\"array\"}},\"required\":[\"type\",\"referenceId\",\"position\",\"blocks\"],\"additionalProperties\":false},{\"type\":\"object\",\"description\":\"Delete a block\",\"properties\":{\"type\":{\"type\":\"string\",\"enum\":[\"delete\"]},\"id\":{\"type\":\"string\",\"description\":\"id of block to delete\"}},\"required\":[\"type\",\"id\"],\"additionalProperties\":false}]}}},\"additionalProperties\":false,\"required\":[\"operations\"],\"$defs\":{\"styles\":{\"type\":\"object\",\"properties\":{\"bold\":{\"type\":\"boolean\"},\"italic\":{\"type\":\"boolean\"},\"underline\":{\"type\":\"boolean\"},\"strike\":{\"type\":\"boolean\"},\"code\":{\"type\":\"boolean\"},\"textColor\":{\"type\":\"string\"},\"backgroundColor\":{\"type\":\"string\"}},\"additionalProperties\":false},\"styledtext\":{\"type\":\"object\",\"properties\":{\"type\":{\"type\":\"string\",\"enum\":[\"text\"]},\"text\":{\"type\":\"string\"},\"styles\":{\"$ref\":\"#/$defs/styles\"}},\"additionalProperties\":false,\"required\":[\"type\",\"text\"]},\"inlinecontent\":{\"type\":\"array\",\"items\":{\"anyOf\":[{\"type\":\"object\",\"properties\":{\"type\":{\"type\":\"string\",\"enum\":[\"mention\"]},\"props\":{\"type\":\"object\",\"properties\":{\"user\":{\"type\":\"string\"}},\"additionalProperties\":false}},\"additionalProperties\":false,\"required\":[\"type\"]},{\"$ref\":\"#/$defs/styledtext\"},{\"type\":\"object\",\"properties\":{\"type\":{\"type\":\"string\",\"enum\":[\"link\"]},\"content\":{\"type\":\"array\",\"items\":{\"$ref\":\"#/$defs/styledtext\"}},\"href\":{\"type\":\"string\"}},\"additionalProperties\":false,\"required\":[\"type\",\"href\",\"content\"]}]}},\"block\":{\"anyOf\":[{\"type\":\"object\",\"properties\":{\"type\":{\"type\":\"string\",\"enum\":[\"paragraph\",\"quote\",\"toggleListItem\",\"bulletListItem\",\"numberedListItem\"]},\"content\":{\"$ref\":\"#/$defs/inlinecontent\"},\"props\":{\"type\":\"object\",\"properties\":{},\"additionalProperties\":false}},\"additionalProperties\":false,\"required\":[\"type\"]},{\"type\":\"object\",\"properties\":{\"type\":{\"type\":\"string\",\"enum\":[\"heading\"]},\"content\":{\"$ref\":\"#/$defs/inlinecontent\"},\"props\":{\"type\":\"object\",\"properties\":{\"level\":{\"type\":\"number\",\"enum\":[1,2,3]},\"isTogglable\":{\"type\":\"boolean\"}},\"additionalProperties\":false}},\"additionalProperties\":false,\"required\":[\"type\"]},{\"type\":\"object\",\"properties\":{\"type\":{\"type\":\"string\",\"enum\":[\"codeBlock\"]},\"content\":{\"$ref\":\"#/$defs/inlinecontent\"},\"props\":{\"type\":\"object\",\"properties\":{\"language\":{\"type\":\"string\"}},\"additionalProperties\":false}},\"additionalProperties\":false,\"required\":[\"type\"]},{\"type\":\"object\",\"properties\":{\"type\":{\"type\":\"string\",\"enum\":[\"checkListItem\"]},\"content\":{\"$ref\":\"#/$defs/inlinecontent\"},\"props\":{\"type\":\"object\",\"properties\":{\"checked\":{\"type\":\"boolean\"}},\"additionalProperties\":false}},\"additionalProperties\":false,\"required\":[\"type\"]},{\"type\":\"object\",\"properties\":{\"type\":{\"type\":\"string\",\"enum\":[\"table\"]},\"content\":{\"type\":\"object\",\"properties\":{}},\"props\":{\"type\":\"object\",\"properties\":{},\"additionalProperties\":false}},\"additionalProperties\":false,\"required\":[\"type\"]}]}}}}}]}", "headers": [], "cookies": [] }, "response": { "status": 200, "statusText": "", - "body": "{\n \"id\": \"chatcmpl-BgV5gIwy5Esf1ZtSJYoYapZZOuIfr\",\n \"object\": \"chat.completion\",\n \"created\": 1749468988,\n \"model\": \"gpt-4o-2024-08-06\",\n \"choices\": [\n {\n \"index\": 0,\n \"message\": {\n \"role\": \"assistant\",\n \"content\": null,\n \"tool_calls\": [\n {\n \"id\": \"call_7GdBJ4TkFgGmuosFiHN0OLUT\",\n \"type\": \"function\",\n \"function\": {\n \"name\": \"json\",\n \"arguments\": \"{\\\"operations\\\":[{\\\"type\\\":\\\"update\\\",\\\"id\\\":\\\"ref1$\\\",\\\"block\\\":{\\\"type\\\":\\\"paragraph\\\",\\\"content\\\":[{\\\"type\\\":\\\"text\\\",\\\"text\\\":\\\"Hello, \\\",\\\"styles\\\":{}},{\\\"type\\\":\\\"mention\\\",\\\"props\\\":{\\\"user\\\":\\\"Jane Doe\\\"}},{\\\"type\\\":\\\"text\\\",\\\"text\\\":\\\"!\\\",\\\"styles\\\":{}}]}}]}\"\n }\n }\n ],\n \"refusal\": null,\n \"annotations\": []\n },\n \"logprobs\": null,\n \"finish_reason\": \"stop\"\n }\n ],\n \"usage\": {\n \"prompt_tokens\": 1169,\n \"completion_tokens\": 63,\n \"total_tokens\": 1232,\n \"prompt_tokens_details\": {\n \"cached_tokens\": 0,\n \"audio_tokens\": 0\n },\n \"completion_tokens_details\": {\n \"reasoning_tokens\": 0,\n \"audio_tokens\": 0,\n \"accepted_prediction_tokens\": 0,\n \"rejected_prediction_tokens\": 0\n }\n },\n \"service_tier\": \"default\",\n \"system_fingerprint\": \"fp_07871e2ad8\"\n}\n", + "body": "{\n \"id\": \"chatcmpl-BhXnvZ5A50nAGB3NsKJxiaMeFs1zf\",\n \"object\": \"chat.completion\",\n \"created\": 1749717747,\n \"model\": \"gpt-4o-2024-08-06\",\n \"choices\": [\n {\n \"index\": 0,\n \"message\": {\n \"role\": \"assistant\",\n \"content\": null,\n \"tool_calls\": [\n {\n \"id\": \"call_XydDcZvGApyx9gJGlJSDTdUc\",\n \"type\": \"function\",\n \"function\": {\n \"name\": \"json\",\n \"arguments\": \"{\\\"operations\\\":[{\\\"type\\\":\\\"update\\\",\\\"id\\\":\\\"ref1$\\\",\\\"block\\\":{\\\"type\\\":\\\"paragraph\\\",\\\"content\\\":[{\\\"type\\\":\\\"text\\\",\\\"text\\\":\\\"Hello, \\\",\\\"styles\\\":{}},{\\\"type\\\":\\\"mention\\\",\\\"props\\\":{\\\"user\\\":\\\"Jane Doe\\\"}},{\\\"type\\\":\\\"text\\\",\\\"text\\\":\\\"!\\\",\\\"styles\\\":{}}]}}]}\"\n }\n }\n ],\n \"refusal\": null,\n \"annotations\": []\n },\n \"logprobs\": null,\n \"finish_reason\": \"stop\"\n }\n ],\n \"usage\": {\n \"prompt_tokens\": 1197,\n \"completion_tokens\": 63,\n \"total_tokens\": 1260,\n \"prompt_tokens_details\": {\n \"cached_tokens\": 1152,\n \"audio_tokens\": 0\n },\n \"completion_tokens_details\": {\n \"reasoning_tokens\": 0,\n \"audio_tokens\": 0,\n \"accepted_prediction_tokens\": 0,\n \"rejected_prediction_tokens\": 0\n }\n },\n \"service_tier\": \"default\",\n \"system_fingerprint\": \"fp_a288987b44\"\n}\n", "headers": [] } } \ No newline at end of file diff --git a/packages/xl-ai/src/api/formats/json/__snapshots__/json.test.ts/Update/__msw_snapshots__/openai.chat/gpt-4o-2024-08-06 (non-streaming)/standard update_1_33f94825f7b576fd6127f7d9bd7fce26.json b/packages/xl-ai/src/api/formats/json/__snapshots__/json.test.ts/Update/__msw_snapshots__/openai.chat/gpt-4o-2024-08-06 (non-streaming)/standard update_1_3a7c8c9226849f9944bd292913f98378.json similarity index 78% rename from packages/xl-ai/src/api/formats/json/__snapshots__/json.test.ts/Update/__msw_snapshots__/openai.chat/gpt-4o-2024-08-06 (non-streaming)/standard update_1_33f94825f7b576fd6127f7d9bd7fce26.json rename to packages/xl-ai/src/api/formats/json/__snapshots__/json.test.ts/Update/__msw_snapshots__/openai.chat/gpt-4o-2024-08-06 (non-streaming)/standard update_1_3a7c8c9226849f9944bd292913f98378.json index b059a01d9d..63cdad64b9 100644 --- a/packages/xl-ai/src/api/formats/json/__snapshots__/json.test.ts/Update/__msw_snapshots__/openai.chat/gpt-4o-2024-08-06 (non-streaming)/standard update_1_33f94825f7b576fd6127f7d9bd7fce26.json +++ b/packages/xl-ai/src/api/formats/json/__snapshots__/json.test.ts/Update/__msw_snapshots__/openai.chat/gpt-4o-2024-08-06 (non-streaming)/standard update_1_3a7c8c9226849f9944bd292913f98378.json @@ -2,14 +2,14 @@ "request": { "method": "POST", "url": "https://localhost:3000/ai?provider=openai&url=https%3A%2F%2Fapi.openai.com%2Fv1%2Fchat%2Fcompletions", - "body": "{\"model\":\"gpt-4o-2024-08-06\",\"temperature\":0,\"messages\":[{\"role\":\"system\",\"content\":\"You're manipulating a text document using JSON blocks. \\n Make sure to follow the json schema provided. When referencing ids they MUST be EXACTLY the same (including the trailing $). \\n This is the document as an array of JSON blocks (the cursor is BETWEEN two blocks as indicated by cursor: true):\"},{\"role\":\"system\",\"content\":\"[{\\\"id\\\":\\\"ref1$\\\",\\\"block\\\":{\\\"id\\\":\\\"ref1\\\",\\\"type\\\":\\\"paragraph\\\",\\\"props\\\":{\\\"textColor\\\":\\\"default\\\",\\\"backgroundColor\\\":\\\"default\\\",\\\"textAlignment\\\":\\\"left\\\"},\\\"content\\\":[{\\\"type\\\":\\\"text\\\",\\\"text\\\":\\\"Hello, world!\\\",\\\"styles\\\":{}}]}},{\\\"cursor\\\":true},{\\\"id\\\":\\\"ref2$\\\",\\\"block\\\":{\\\"id\\\":\\\"ref2\\\",\\\"type\\\":\\\"paragraph\\\",\\\"props\\\":{\\\"textColor\\\":\\\"default\\\",\\\"backgroundColor\\\":\\\"default\\\",\\\"textAlignment\\\":\\\"left\\\"},\\\"content\\\":[{\\\"type\\\":\\\"text\\\",\\\"text\\\":\\\"Hello, \\\",\\\"styles\\\":{}},{\\\"type\\\":\\\"mention\\\",\\\"props\\\":{\\\"user\\\":\\\"John Doe\\\"}},{\\\"type\\\":\\\"text\\\",\\\"text\\\":\\\"! \\\",\\\"styles\\\":{}},{\\\"type\\\":\\\"text\\\",\\\"text\\\":\\\"How are you doing?\\\",\\\"styles\\\":{\\\"bold\\\":true}},{\\\"type\\\":\\\"text\\\",\\\"text\\\":\\\" \\\",\\\"styles\\\":{}},{\\\"type\\\":\\\"text\\\",\\\"text\\\":\\\"This text is blue!\\\",\\\"styles\\\":{\\\"textColor\\\":\\\"blue\\\"}}]}},{\\\"id\\\":\\\"ref3$\\\",\\\"block\\\":{\\\"id\\\":\\\"ref3\\\",\\\"type\\\":\\\"paragraph\\\",\\\"props\\\":{\\\"textColor\\\":\\\"default\\\",\\\"backgroundColor\\\":\\\"default\\\",\\\"textAlignment\\\":\\\"left\\\"},\\\"content\\\":[{\\\"type\\\":\\\"text\\\",\\\"text\\\":\\\"Hello, world! \\\",\\\"styles\\\":{}},{\\\"type\\\":\\\"text\\\",\\\"text\\\":\\\"Bold text. \\\",\\\"styles\\\":{\\\"bold\\\":true}},{\\\"type\\\":\\\"link\\\",\\\"href\\\":\\\"https://www.google.com\\\",\\\"content\\\":[{\\\"type\\\":\\\"text\\\",\\\"text\\\":\\\"Link.\\\",\\\"styles\\\":{}}]}]}}]\"},{\"role\":\"system\",\"content\":\"The user asks you to do the following:\"},{\"role\":\"user\",\"content\":\"translate the first paragraph to german\"},{\"role\":\"system\",\"content\":\"First, determine what part of the document the user is talking about. You SHOULD probably take cursor info into account if needed.\\n EXAMPLE: if user says \\\"below\\\" (without pointing to a specific part of the document) he / she probably indicates the block(s) after the cursor. \\n EXAMPLE: If you want to insert content AT the cursor position (UNLESS indicated otherwise by the user), then you need `referenceId` to point to the block before the cursor with position `after` (or block below and `before`).\\n \\n Prefer updating existing blocks over removing and adding (but this also depends on the user's question).\"}],\"tool_choice\":{\"type\":\"function\",\"function\":{\"name\":\"json\"}},\"tools\":[{\"type\":\"function\",\"function\":{\"name\":\"json\",\"description\":\"Respond with a JSON object.\",\"parameters\":{\"type\":\"object\",\"properties\":{\"operations\":{\"type\":\"array\",\"items\":{\"anyOf\":[{\"type\":\"object\",\"description\":\"Update a block, the new block will replace the existing block.\",\"properties\":{\"type\":{\"type\":\"string\",\"enum\":[\"update\"]},\"id\":{\"type\":\"string\",\"description\":\"id of block to update\"},\"block\":{\"$ref\":\"#/$defs/block\"}},\"required\":[\"type\",\"id\",\"block\"],\"additionalProperties\":false},{\"type\":\"object\",\"description\":\"Insert new blocks\",\"properties\":{\"type\":{\"type\":\"string\",\"enum\":[\"add\"]},\"referenceId\":{\"type\":\"string\",\"description\":\"MUST be an id of a block in the document\"},\"position\":{\"type\":\"string\",\"enum\":[\"before\",\"after\"],\"description\":\"`after` to add blocks AFTER (below) the block with `referenceId`, `before` to add the block BEFORE (above)\"},\"blocks\":{\"items\":{\"$ref\":\"#/$defs/block\"},\"type\":\"array\"}},\"required\":[\"type\",\"referenceId\",\"position\",\"blocks\"],\"additionalProperties\":false},{\"type\":\"object\",\"description\":\"Delete a block\",\"properties\":{\"type\":{\"type\":\"string\",\"enum\":[\"delete\"]},\"id\":{\"type\":\"string\",\"description\":\"id of block to delete\"}},\"required\":[\"type\",\"id\"],\"additionalProperties\":false}]}}},\"additionalProperties\":false,\"required\":[\"operations\"],\"$defs\":{\"styles\":{\"type\":\"object\",\"properties\":{\"bold\":{\"type\":\"boolean\"},\"italic\":{\"type\":\"boolean\"},\"underline\":{\"type\":\"boolean\"},\"strike\":{\"type\":\"boolean\"},\"code\":{\"type\":\"boolean\"},\"textColor\":{\"type\":\"string\"},\"backgroundColor\":{\"type\":\"string\"}},\"additionalProperties\":false},\"styledtext\":{\"type\":\"object\",\"properties\":{\"type\":{\"type\":\"string\",\"enum\":[\"text\"]},\"text\":{\"type\":\"string\"},\"styles\":{\"$ref\":\"#/$defs/styles\"}},\"additionalProperties\":false,\"required\":[\"type\",\"text\"]},\"inlinecontent\":{\"type\":\"array\",\"items\":{\"anyOf\":[{\"type\":\"object\",\"properties\":{\"type\":{\"type\":\"string\",\"enum\":[\"mention\"]},\"props\":{\"type\":\"object\",\"properties\":{\"user\":{\"type\":\"string\"}},\"additionalProperties\":false}},\"additionalProperties\":false,\"required\":[\"type\"]},{\"$ref\":\"#/$defs/styledtext\"},{\"type\":\"object\",\"properties\":{\"type\":{\"type\":\"string\",\"enum\":[\"link\"]},\"content\":{\"type\":\"array\",\"items\":{\"$ref\":\"#/$defs/styledtext\"}},\"href\":{\"type\":\"string\"}},\"additionalProperties\":false,\"required\":[\"type\",\"href\",\"content\"]}]}},\"block\":{\"anyOf\":[{\"type\":\"object\",\"properties\":{\"type\":{\"type\":\"string\",\"enum\":[\"paragraph\",\"quote\",\"bulletListItem\",\"numberedListItem\"]},\"content\":{\"$ref\":\"#/$defs/inlinecontent\"},\"props\":{\"type\":\"object\",\"properties\":{},\"additionalProperties\":false}},\"additionalProperties\":false,\"required\":[\"type\"]},{\"type\":\"object\",\"properties\":{\"type\":{\"type\":\"string\",\"enum\":[\"heading\"]},\"content\":{\"$ref\":\"#/$defs/inlinecontent\"},\"props\":{\"type\":\"object\",\"properties\":{\"level\":{\"type\":\"number\",\"enum\":[1,2,3]}},\"additionalProperties\":false}},\"additionalProperties\":false,\"required\":[\"type\"]},{\"type\":\"object\",\"properties\":{\"type\":{\"type\":\"string\",\"enum\":[\"codeBlock\"]},\"content\":{\"$ref\":\"#/$defs/inlinecontent\"},\"props\":{\"type\":\"object\",\"properties\":{\"language\":{\"type\":\"string\"}},\"additionalProperties\":false}},\"additionalProperties\":false,\"required\":[\"type\"]},{\"type\":\"object\",\"properties\":{\"type\":{\"type\":\"string\",\"enum\":[\"checkListItem\"]},\"content\":{\"$ref\":\"#/$defs/inlinecontent\"},\"props\":{\"type\":\"object\",\"properties\":{\"checked\":{\"type\":\"boolean\"}},\"additionalProperties\":false}},\"additionalProperties\":false,\"required\":[\"type\"]},{\"type\":\"object\",\"properties\":{\"type\":{\"type\":\"string\",\"enum\":[\"table\"]},\"content\":{\"type\":\"object\",\"properties\":{}},\"props\":{\"type\":\"object\",\"properties\":{},\"additionalProperties\":false}},\"additionalProperties\":false,\"required\":[\"type\"]}]}}}}}]}", + "body": "{\"model\":\"gpt-4o-2024-08-06\",\"temperature\":0,\"messages\":[{\"role\":\"system\",\"content\":\"You're manipulating a text document using JSON blocks. \\n Make sure to follow the json schema provided. When referencing ids they MUST be EXACTLY the same (including the trailing $). \\n This is the document as an array of JSON blocks (the cursor is BETWEEN two blocks as indicated by cursor: true):\"},{\"role\":\"system\",\"content\":\"[{\\\"id\\\":\\\"ref1$\\\",\\\"block\\\":{\\\"id\\\":\\\"ref1\\\",\\\"type\\\":\\\"paragraph\\\",\\\"props\\\":{\\\"textColor\\\":\\\"default\\\",\\\"backgroundColor\\\":\\\"default\\\",\\\"textAlignment\\\":\\\"left\\\"},\\\"content\\\":[{\\\"type\\\":\\\"text\\\",\\\"text\\\":\\\"Hello, world!\\\",\\\"styles\\\":{}}]}},{\\\"cursor\\\":true},{\\\"id\\\":\\\"ref2$\\\",\\\"block\\\":{\\\"id\\\":\\\"ref2\\\",\\\"type\\\":\\\"paragraph\\\",\\\"props\\\":{\\\"textColor\\\":\\\"default\\\",\\\"backgroundColor\\\":\\\"default\\\",\\\"textAlignment\\\":\\\"left\\\"},\\\"content\\\":[{\\\"type\\\":\\\"text\\\",\\\"text\\\":\\\"Hello, \\\",\\\"styles\\\":{}},{\\\"type\\\":\\\"mention\\\",\\\"props\\\":{\\\"user\\\":\\\"John Doe\\\"}},{\\\"type\\\":\\\"text\\\",\\\"text\\\":\\\"! \\\",\\\"styles\\\":{}},{\\\"type\\\":\\\"text\\\",\\\"text\\\":\\\"How are you doing?\\\",\\\"styles\\\":{\\\"bold\\\":true}},{\\\"type\\\":\\\"text\\\",\\\"text\\\":\\\" \\\",\\\"styles\\\":{}},{\\\"type\\\":\\\"text\\\",\\\"text\\\":\\\"This text is blue!\\\",\\\"styles\\\":{\\\"textColor\\\":\\\"blue\\\"}}]}},{\\\"id\\\":\\\"ref3$\\\",\\\"block\\\":{\\\"id\\\":\\\"ref3\\\",\\\"type\\\":\\\"paragraph\\\",\\\"props\\\":{\\\"textColor\\\":\\\"default\\\",\\\"backgroundColor\\\":\\\"default\\\",\\\"textAlignment\\\":\\\"left\\\"},\\\"content\\\":[{\\\"type\\\":\\\"text\\\",\\\"text\\\":\\\"Hello, world! \\\",\\\"styles\\\":{}},{\\\"type\\\":\\\"text\\\",\\\"text\\\":\\\"Bold text. \\\",\\\"styles\\\":{\\\"bold\\\":true}},{\\\"type\\\":\\\"link\\\",\\\"href\\\":\\\"https://www.google.com\\\",\\\"content\\\":[{\\\"type\\\":\\\"text\\\",\\\"text\\\":\\\"Link.\\\",\\\"styles\\\":{}}]}]}}]\"},{\"role\":\"system\",\"content\":\"The user asks you to do the following:\"},{\"role\":\"user\",\"content\":\"translate the first paragraph to german\"},{\"role\":\"system\",\"content\":\"First, determine what part of the document the user is talking about. You SHOULD probably take cursor info into account if needed.\\n EXAMPLE: if user says \\\"below\\\" (without pointing to a specific part of the document) he / she probably indicates the block(s) after the cursor. \\n EXAMPLE: If you want to insert content AT the cursor position (UNLESS indicated otherwise by the user), then you need `referenceId` to point to the block before the cursor with position `after` (or block below and `before`).\\n \\n Prefer updating existing blocks over removing and adding (but this also depends on the user's question).\"}],\"tool_choice\":{\"type\":\"function\",\"function\":{\"name\":\"json\"}},\"tools\":[{\"type\":\"function\",\"function\":{\"name\":\"json\",\"description\":\"Respond with a JSON object.\",\"parameters\":{\"type\":\"object\",\"properties\":{\"operations\":{\"type\":\"array\",\"items\":{\"anyOf\":[{\"type\":\"object\",\"description\":\"Update a block, the new block will replace the existing block.\",\"properties\":{\"type\":{\"type\":\"string\",\"enum\":[\"update\"]},\"id\":{\"type\":\"string\",\"description\":\"id of block to update\"},\"block\":{\"$ref\":\"#/$defs/block\"}},\"required\":[\"type\",\"id\",\"block\"],\"additionalProperties\":false},{\"type\":\"object\",\"description\":\"Insert new blocks\",\"properties\":{\"type\":{\"type\":\"string\",\"enum\":[\"add\"]},\"referenceId\":{\"type\":\"string\",\"description\":\"MUST be an id of a block in the document\"},\"position\":{\"type\":\"string\",\"enum\":[\"before\",\"after\"],\"description\":\"`after` to add blocks AFTER (below) the block with `referenceId`, `before` to add the block BEFORE (above)\"},\"blocks\":{\"items\":{\"$ref\":\"#/$defs/block\"},\"type\":\"array\"}},\"required\":[\"type\",\"referenceId\",\"position\",\"blocks\"],\"additionalProperties\":false},{\"type\":\"object\",\"description\":\"Delete a block\",\"properties\":{\"type\":{\"type\":\"string\",\"enum\":[\"delete\"]},\"id\":{\"type\":\"string\",\"description\":\"id of block to delete\"}},\"required\":[\"type\",\"id\"],\"additionalProperties\":false}]}}},\"additionalProperties\":false,\"required\":[\"operations\"],\"$defs\":{\"styles\":{\"type\":\"object\",\"properties\":{\"bold\":{\"type\":\"boolean\"},\"italic\":{\"type\":\"boolean\"},\"underline\":{\"type\":\"boolean\"},\"strike\":{\"type\":\"boolean\"},\"code\":{\"type\":\"boolean\"},\"textColor\":{\"type\":\"string\"},\"backgroundColor\":{\"type\":\"string\"}},\"additionalProperties\":false},\"styledtext\":{\"type\":\"object\",\"properties\":{\"type\":{\"type\":\"string\",\"enum\":[\"text\"]},\"text\":{\"type\":\"string\"},\"styles\":{\"$ref\":\"#/$defs/styles\"}},\"additionalProperties\":false,\"required\":[\"type\",\"text\"]},\"inlinecontent\":{\"type\":\"array\",\"items\":{\"anyOf\":[{\"type\":\"object\",\"properties\":{\"type\":{\"type\":\"string\",\"enum\":[\"mention\"]},\"props\":{\"type\":\"object\",\"properties\":{\"user\":{\"type\":\"string\"}},\"additionalProperties\":false}},\"additionalProperties\":false,\"required\":[\"type\"]},{\"$ref\":\"#/$defs/styledtext\"},{\"type\":\"object\",\"properties\":{\"type\":{\"type\":\"string\",\"enum\":[\"link\"]},\"content\":{\"type\":\"array\",\"items\":{\"$ref\":\"#/$defs/styledtext\"}},\"href\":{\"type\":\"string\"}},\"additionalProperties\":false,\"required\":[\"type\",\"href\",\"content\"]}]}},\"block\":{\"anyOf\":[{\"type\":\"object\",\"properties\":{\"type\":{\"type\":\"string\",\"enum\":[\"paragraph\",\"quote\",\"toggleListItem\",\"bulletListItem\",\"numberedListItem\"]},\"content\":{\"$ref\":\"#/$defs/inlinecontent\"},\"props\":{\"type\":\"object\",\"properties\":{},\"additionalProperties\":false}},\"additionalProperties\":false,\"required\":[\"type\"]},{\"type\":\"object\",\"properties\":{\"type\":{\"type\":\"string\",\"enum\":[\"heading\"]},\"content\":{\"$ref\":\"#/$defs/inlinecontent\"},\"props\":{\"type\":\"object\",\"properties\":{\"level\":{\"type\":\"number\",\"enum\":[1,2,3]},\"isTogglable\":{\"type\":\"boolean\"}},\"additionalProperties\":false}},\"additionalProperties\":false,\"required\":[\"type\"]},{\"type\":\"object\",\"properties\":{\"type\":{\"type\":\"string\",\"enum\":[\"codeBlock\"]},\"content\":{\"$ref\":\"#/$defs/inlinecontent\"},\"props\":{\"type\":\"object\",\"properties\":{\"language\":{\"type\":\"string\"}},\"additionalProperties\":false}},\"additionalProperties\":false,\"required\":[\"type\"]},{\"type\":\"object\",\"properties\":{\"type\":{\"type\":\"string\",\"enum\":[\"checkListItem\"]},\"content\":{\"$ref\":\"#/$defs/inlinecontent\"},\"props\":{\"type\":\"object\",\"properties\":{\"checked\":{\"type\":\"boolean\"}},\"additionalProperties\":false}},\"additionalProperties\":false,\"required\":[\"type\"]},{\"type\":\"object\",\"properties\":{\"type\":{\"type\":\"string\",\"enum\":[\"table\"]},\"content\":{\"type\":\"object\",\"properties\":{}},\"props\":{\"type\":\"object\",\"properties\":{},\"additionalProperties\":false}},\"additionalProperties\":false,\"required\":[\"type\"]}]}}}}}]}", "headers": [], "cookies": [] }, "response": { "status": 200, "statusText": "", - "body": "{\n \"id\": \"chatcmpl-BgV5OexSPxOAJGuxPJ0PgTXS50zSW\",\n \"object\": \"chat.completion\",\n \"created\": 1749468970,\n \"model\": \"gpt-4o-2024-08-06\",\n \"choices\": [\n {\n \"index\": 0,\n \"message\": {\n \"role\": \"assistant\",\n \"content\": null,\n \"tool_calls\": [\n {\n \"id\": \"call_H62M4Zs5FRsPs1hweBAScp8h\",\n \"type\": \"function\",\n \"function\": {\n \"name\": \"json\",\n \"arguments\": \"{\\\"operations\\\":[{\\\"type\\\":\\\"update\\\",\\\"id\\\":\\\"ref1$\\\",\\\"block\\\":{\\\"type\\\":\\\"paragraph\\\",\\\"content\\\":[{\\\"type\\\":\\\"text\\\",\\\"text\\\":\\\"Hallo, Welt!\\\",\\\"styles\\\":{}}]}}]}\"\n }\n }\n ],\n \"refusal\": null,\n \"annotations\": []\n },\n \"logprobs\": null,\n \"finish_reason\": \"stop\"\n }\n ],\n \"usage\": {\n \"prompt_tokens\": 1160,\n \"completion_tokens\": 41,\n \"total_tokens\": 1201,\n \"prompt_tokens_details\": {\n \"cached_tokens\": 1152,\n \"audio_tokens\": 0\n },\n \"completion_tokens_details\": {\n \"reasoning_tokens\": 0,\n \"audio_tokens\": 0,\n \"accepted_prediction_tokens\": 0,\n \"rejected_prediction_tokens\": 0\n }\n },\n \"service_tier\": \"default\",\n \"system_fingerprint\": \"fp_07871e2ad8\"\n}\n", + "body": "{\n \"id\": \"chatcmpl-BhXneWTyRxzmK2ijX6oblqyL1ixHx\",\n \"object\": \"chat.completion\",\n \"created\": 1749717730,\n \"model\": \"gpt-4o-2024-08-06\",\n \"choices\": [\n {\n \"index\": 0,\n \"message\": {\n \"role\": \"assistant\",\n \"content\": null,\n \"tool_calls\": [\n {\n \"id\": \"call_3zryT4306p6lR85EF7x4CGJ9\",\n \"type\": \"function\",\n \"function\": {\n \"name\": \"json\",\n \"arguments\": \"{\\\"operations\\\":[{\\\"type\\\":\\\"update\\\",\\\"id\\\":\\\"ref1$\\\",\\\"block\\\":{\\\"type\\\":\\\"paragraph\\\",\\\"content\\\":[{\\\"type\\\":\\\"text\\\",\\\"text\\\":\\\"Hallo, Welt!\\\",\\\"styles\\\":{}}]}}]}\"\n }\n }\n ],\n \"refusal\": null,\n \"annotations\": []\n },\n \"logprobs\": null,\n \"finish_reason\": \"stop\"\n }\n ],\n \"usage\": {\n \"prompt_tokens\": 1188,\n \"completion_tokens\": 41,\n \"total_tokens\": 1229,\n \"prompt_tokens_details\": {\n \"cached_tokens\": 1152,\n \"audio_tokens\": 0\n },\n \"completion_tokens_details\": {\n \"reasoning_tokens\": 0,\n \"audio_tokens\": 0,\n \"accepted_prediction_tokens\": 0,\n \"rejected_prediction_tokens\": 0\n }\n },\n \"service_tier\": \"default\",\n \"system_fingerprint\": \"fp_a288987b44\"\n}\n", "headers": [] } } \ No newline at end of file diff --git a/packages/xl-ai/src/api/formats/json/__snapshots__/json.test.ts/Update/__msw_snapshots__/openai.chat/gpt-4o-2024-08-06 (non-streaming)/styles + ic in source block, remove mark_1_c150e47a9b82794fb8a35afdc01cecda.json b/packages/xl-ai/src/api/formats/json/__snapshots__/json.test.ts/Update/__msw_snapshots__/openai.chat/gpt-4o-2024-08-06 (non-streaming)/styles + ic in source block, remove mark_1_a2c73491035a2dd505256c43cb2cb466.json similarity index 68% rename from packages/xl-ai/src/api/formats/json/__snapshots__/json.test.ts/Update/__msw_snapshots__/openai.chat/gpt-4o-2024-08-06 (non-streaming)/styles + ic in source block, remove mark_1_c150e47a9b82794fb8a35afdc01cecda.json rename to packages/xl-ai/src/api/formats/json/__snapshots__/json.test.ts/Update/__msw_snapshots__/openai.chat/gpt-4o-2024-08-06 (non-streaming)/styles + ic in source block, remove mark_1_a2c73491035a2dd505256c43cb2cb466.json index 60f89aa290..91cc72f866 100644 --- a/packages/xl-ai/src/api/formats/json/__snapshots__/json.test.ts/Update/__msw_snapshots__/openai.chat/gpt-4o-2024-08-06 (non-streaming)/styles + ic in source block, remove mark_1_c150e47a9b82794fb8a35afdc01cecda.json +++ b/packages/xl-ai/src/api/formats/json/__snapshots__/json.test.ts/Update/__msw_snapshots__/openai.chat/gpt-4o-2024-08-06 (non-streaming)/styles + ic in source block, remove mark_1_a2c73491035a2dd505256c43cb2cb466.json @@ -2,14 +2,14 @@ "request": { "method": "POST", "url": "https://localhost:3000/ai?provider=openai&url=https%3A%2F%2Fapi.openai.com%2Fv1%2Fchat%2Fcompletions", - "body": "{\"model\":\"gpt-4o-2024-08-06\",\"temperature\":0,\"messages\":[{\"role\":\"system\",\"content\":\"You're manipulating a text document using JSON blocks. \\n Make sure to follow the json schema provided. When referencing ids they MUST be EXACTLY the same (including the trailing $). \\n This is the document as an array of JSON blocks (the cursor is BETWEEN two blocks as indicated by cursor: true):\"},{\"role\":\"system\",\"content\":\"[{\\\"id\\\":\\\"ref1$\\\",\\\"block\\\":{\\\"id\\\":\\\"ref1\\\",\\\"type\\\":\\\"paragraph\\\",\\\"props\\\":{\\\"textColor\\\":\\\"default\\\",\\\"backgroundColor\\\":\\\"default\\\",\\\"textAlignment\\\":\\\"left\\\"},\\\"content\\\":[{\\\"type\\\":\\\"text\\\",\\\"text\\\":\\\"Hello, world!\\\",\\\"styles\\\":{}}]}},{\\\"cursor\\\":true},{\\\"id\\\":\\\"ref2$\\\",\\\"block\\\":{\\\"id\\\":\\\"ref2\\\",\\\"type\\\":\\\"paragraph\\\",\\\"props\\\":{\\\"textColor\\\":\\\"default\\\",\\\"backgroundColor\\\":\\\"default\\\",\\\"textAlignment\\\":\\\"left\\\"},\\\"content\\\":[{\\\"type\\\":\\\"text\\\",\\\"text\\\":\\\"Hello, \\\",\\\"styles\\\":{}},{\\\"type\\\":\\\"mention\\\",\\\"props\\\":{\\\"user\\\":\\\"John Doe\\\"}},{\\\"type\\\":\\\"text\\\",\\\"text\\\":\\\"! \\\",\\\"styles\\\":{}},{\\\"type\\\":\\\"text\\\",\\\"text\\\":\\\"How are you doing?\\\",\\\"styles\\\":{\\\"bold\\\":true}},{\\\"type\\\":\\\"text\\\",\\\"text\\\":\\\" \\\",\\\"styles\\\":{}},{\\\"type\\\":\\\"text\\\",\\\"text\\\":\\\"This text is blue!\\\",\\\"styles\\\":{\\\"textColor\\\":\\\"blue\\\"}}]}},{\\\"id\\\":\\\"ref3$\\\",\\\"block\\\":{\\\"id\\\":\\\"ref3\\\",\\\"type\\\":\\\"paragraph\\\",\\\"props\\\":{\\\"textColor\\\":\\\"default\\\",\\\"backgroundColor\\\":\\\"default\\\",\\\"textAlignment\\\":\\\"left\\\"},\\\"content\\\":[{\\\"type\\\":\\\"text\\\",\\\"text\\\":\\\"Hello, world! \\\",\\\"styles\\\":{}},{\\\"type\\\":\\\"text\\\",\\\"text\\\":\\\"Bold text. \\\",\\\"styles\\\":{\\\"bold\\\":true}},{\\\"type\\\":\\\"link\\\",\\\"href\\\":\\\"https://www.google.com\\\",\\\"content\\\":[{\\\"type\\\":\\\"text\\\",\\\"text\\\":\\\"Link.\\\",\\\"styles\\\":{}}]}]}}]\"},{\"role\":\"system\",\"content\":\"The user asks you to do the following:\"},{\"role\":\"user\",\"content\":\"remove the bold style from the second block\"},{\"role\":\"system\",\"content\":\"First, determine what part of the document the user is talking about. You SHOULD probably take cursor info into account if needed.\\n EXAMPLE: if user says \\\"below\\\" (without pointing to a specific part of the document) he / she probably indicates the block(s) after the cursor. \\n EXAMPLE: If you want to insert content AT the cursor position (UNLESS indicated otherwise by the user), then you need `referenceId` to point to the block before the cursor with position `after` (or block below and `before`).\\n \\n Prefer updating existing blocks over removing and adding (but this also depends on the user's question).\"}],\"tool_choice\":{\"type\":\"function\",\"function\":{\"name\":\"json\"}},\"tools\":[{\"type\":\"function\",\"function\":{\"name\":\"json\",\"description\":\"Respond with a JSON object.\",\"parameters\":{\"type\":\"object\",\"properties\":{\"operations\":{\"type\":\"array\",\"items\":{\"anyOf\":[{\"type\":\"object\",\"description\":\"Update a block, the new block will replace the existing block.\",\"properties\":{\"type\":{\"type\":\"string\",\"enum\":[\"update\"]},\"id\":{\"type\":\"string\",\"description\":\"id of block to update\"},\"block\":{\"$ref\":\"#/$defs/block\"}},\"required\":[\"type\",\"id\",\"block\"],\"additionalProperties\":false},{\"type\":\"object\",\"description\":\"Insert new blocks\",\"properties\":{\"type\":{\"type\":\"string\",\"enum\":[\"add\"]},\"referenceId\":{\"type\":\"string\",\"description\":\"MUST be an id of a block in the document\"},\"position\":{\"type\":\"string\",\"enum\":[\"before\",\"after\"],\"description\":\"`after` to add blocks AFTER (below) the block with `referenceId`, `before` to add the block BEFORE (above)\"},\"blocks\":{\"items\":{\"$ref\":\"#/$defs/block\"},\"type\":\"array\"}},\"required\":[\"type\",\"referenceId\",\"position\",\"blocks\"],\"additionalProperties\":false},{\"type\":\"object\",\"description\":\"Delete a block\",\"properties\":{\"type\":{\"type\":\"string\",\"enum\":[\"delete\"]},\"id\":{\"type\":\"string\",\"description\":\"id of block to delete\"}},\"required\":[\"type\",\"id\"],\"additionalProperties\":false}]}}},\"additionalProperties\":false,\"required\":[\"operations\"],\"$defs\":{\"styles\":{\"type\":\"object\",\"properties\":{\"bold\":{\"type\":\"boolean\"},\"italic\":{\"type\":\"boolean\"},\"underline\":{\"type\":\"boolean\"},\"strike\":{\"type\":\"boolean\"},\"code\":{\"type\":\"boolean\"},\"textColor\":{\"type\":\"string\"},\"backgroundColor\":{\"type\":\"string\"}},\"additionalProperties\":false},\"styledtext\":{\"type\":\"object\",\"properties\":{\"type\":{\"type\":\"string\",\"enum\":[\"text\"]},\"text\":{\"type\":\"string\"},\"styles\":{\"$ref\":\"#/$defs/styles\"}},\"additionalProperties\":false,\"required\":[\"type\",\"text\"]},\"inlinecontent\":{\"type\":\"array\",\"items\":{\"anyOf\":[{\"type\":\"object\",\"properties\":{\"type\":{\"type\":\"string\",\"enum\":[\"mention\"]},\"props\":{\"type\":\"object\",\"properties\":{\"user\":{\"type\":\"string\"}},\"additionalProperties\":false}},\"additionalProperties\":false,\"required\":[\"type\"]},{\"$ref\":\"#/$defs/styledtext\"},{\"type\":\"object\",\"properties\":{\"type\":{\"type\":\"string\",\"enum\":[\"link\"]},\"content\":{\"type\":\"array\",\"items\":{\"$ref\":\"#/$defs/styledtext\"}},\"href\":{\"type\":\"string\"}},\"additionalProperties\":false,\"required\":[\"type\",\"href\",\"content\"]}]}},\"block\":{\"anyOf\":[{\"type\":\"object\",\"properties\":{\"type\":{\"type\":\"string\",\"enum\":[\"paragraph\",\"quote\",\"bulletListItem\",\"numberedListItem\"]},\"content\":{\"$ref\":\"#/$defs/inlinecontent\"},\"props\":{\"type\":\"object\",\"properties\":{},\"additionalProperties\":false}},\"additionalProperties\":false,\"required\":[\"type\"]},{\"type\":\"object\",\"properties\":{\"type\":{\"type\":\"string\",\"enum\":[\"heading\"]},\"content\":{\"$ref\":\"#/$defs/inlinecontent\"},\"props\":{\"type\":\"object\",\"properties\":{\"level\":{\"type\":\"number\",\"enum\":[1,2,3]}},\"additionalProperties\":false}},\"additionalProperties\":false,\"required\":[\"type\"]},{\"type\":\"object\",\"properties\":{\"type\":{\"type\":\"string\",\"enum\":[\"codeBlock\"]},\"content\":{\"$ref\":\"#/$defs/inlinecontent\"},\"props\":{\"type\":\"object\",\"properties\":{\"language\":{\"type\":\"string\"}},\"additionalProperties\":false}},\"additionalProperties\":false,\"required\":[\"type\"]},{\"type\":\"object\",\"properties\":{\"type\":{\"type\":\"string\",\"enum\":[\"checkListItem\"]},\"content\":{\"$ref\":\"#/$defs/inlinecontent\"},\"props\":{\"type\":\"object\",\"properties\":{\"checked\":{\"type\":\"boolean\"}},\"additionalProperties\":false}},\"additionalProperties\":false,\"required\":[\"type\"]},{\"type\":\"object\",\"properties\":{\"type\":{\"type\":\"string\",\"enum\":[\"table\"]},\"content\":{\"type\":\"object\",\"properties\":{}},\"props\":{\"type\":\"object\",\"properties\":{},\"additionalProperties\":false}},\"additionalProperties\":false,\"required\":[\"type\"]}]}}}}}]}", + "body": "{\"model\":\"gpt-4o-2024-08-06\",\"temperature\":0,\"messages\":[{\"role\":\"system\",\"content\":\"You're manipulating a text document using JSON blocks. \\n Make sure to follow the json schema provided. When referencing ids they MUST be EXACTLY the same (including the trailing $). \\n This is the document as an array of JSON blocks (the cursor is BETWEEN two blocks as indicated by cursor: true):\"},{\"role\":\"system\",\"content\":\"[{\\\"id\\\":\\\"ref1$\\\",\\\"block\\\":{\\\"id\\\":\\\"ref1\\\",\\\"type\\\":\\\"paragraph\\\",\\\"props\\\":{\\\"textColor\\\":\\\"default\\\",\\\"backgroundColor\\\":\\\"default\\\",\\\"textAlignment\\\":\\\"left\\\"},\\\"content\\\":[{\\\"type\\\":\\\"text\\\",\\\"text\\\":\\\"Hello, world!\\\",\\\"styles\\\":{}}]}},{\\\"cursor\\\":true},{\\\"id\\\":\\\"ref2$\\\",\\\"block\\\":{\\\"id\\\":\\\"ref2\\\",\\\"type\\\":\\\"paragraph\\\",\\\"props\\\":{\\\"textColor\\\":\\\"default\\\",\\\"backgroundColor\\\":\\\"default\\\",\\\"textAlignment\\\":\\\"left\\\"},\\\"content\\\":[{\\\"type\\\":\\\"text\\\",\\\"text\\\":\\\"Hello, \\\",\\\"styles\\\":{}},{\\\"type\\\":\\\"mention\\\",\\\"props\\\":{\\\"user\\\":\\\"John Doe\\\"}},{\\\"type\\\":\\\"text\\\",\\\"text\\\":\\\"! \\\",\\\"styles\\\":{}},{\\\"type\\\":\\\"text\\\",\\\"text\\\":\\\"How are you doing?\\\",\\\"styles\\\":{\\\"bold\\\":true}},{\\\"type\\\":\\\"text\\\",\\\"text\\\":\\\" \\\",\\\"styles\\\":{}},{\\\"type\\\":\\\"text\\\",\\\"text\\\":\\\"This text is blue!\\\",\\\"styles\\\":{\\\"textColor\\\":\\\"blue\\\"}}]}},{\\\"id\\\":\\\"ref3$\\\",\\\"block\\\":{\\\"id\\\":\\\"ref3\\\",\\\"type\\\":\\\"paragraph\\\",\\\"props\\\":{\\\"textColor\\\":\\\"default\\\",\\\"backgroundColor\\\":\\\"default\\\",\\\"textAlignment\\\":\\\"left\\\"},\\\"content\\\":[{\\\"type\\\":\\\"text\\\",\\\"text\\\":\\\"Hello, world! \\\",\\\"styles\\\":{}},{\\\"type\\\":\\\"text\\\",\\\"text\\\":\\\"Bold text. \\\",\\\"styles\\\":{\\\"bold\\\":true}},{\\\"type\\\":\\\"link\\\",\\\"href\\\":\\\"https://www.google.com\\\",\\\"content\\\":[{\\\"type\\\":\\\"text\\\",\\\"text\\\":\\\"Link.\\\",\\\"styles\\\":{}}]}]}}]\"},{\"role\":\"system\",\"content\":\"The user asks you to do the following:\"},{\"role\":\"user\",\"content\":\"remove the bold style from the second block\"},{\"role\":\"system\",\"content\":\"First, determine what part of the document the user is talking about. You SHOULD probably take cursor info into account if needed.\\n EXAMPLE: if user says \\\"below\\\" (without pointing to a specific part of the document) he / she probably indicates the block(s) after the cursor. \\n EXAMPLE: If you want to insert content AT the cursor position (UNLESS indicated otherwise by the user), then you need `referenceId` to point to the block before the cursor with position `after` (or block below and `before`).\\n \\n Prefer updating existing blocks over removing and adding (but this also depends on the user's question).\"}],\"tool_choice\":{\"type\":\"function\",\"function\":{\"name\":\"json\"}},\"tools\":[{\"type\":\"function\",\"function\":{\"name\":\"json\",\"description\":\"Respond with a JSON object.\",\"parameters\":{\"type\":\"object\",\"properties\":{\"operations\":{\"type\":\"array\",\"items\":{\"anyOf\":[{\"type\":\"object\",\"description\":\"Update a block, the new block will replace the existing block.\",\"properties\":{\"type\":{\"type\":\"string\",\"enum\":[\"update\"]},\"id\":{\"type\":\"string\",\"description\":\"id of block to update\"},\"block\":{\"$ref\":\"#/$defs/block\"}},\"required\":[\"type\",\"id\",\"block\"],\"additionalProperties\":false},{\"type\":\"object\",\"description\":\"Insert new blocks\",\"properties\":{\"type\":{\"type\":\"string\",\"enum\":[\"add\"]},\"referenceId\":{\"type\":\"string\",\"description\":\"MUST be an id of a block in the document\"},\"position\":{\"type\":\"string\",\"enum\":[\"before\",\"after\"],\"description\":\"`after` to add blocks AFTER (below) the block with `referenceId`, `before` to add the block BEFORE (above)\"},\"blocks\":{\"items\":{\"$ref\":\"#/$defs/block\"},\"type\":\"array\"}},\"required\":[\"type\",\"referenceId\",\"position\",\"blocks\"],\"additionalProperties\":false},{\"type\":\"object\",\"description\":\"Delete a block\",\"properties\":{\"type\":{\"type\":\"string\",\"enum\":[\"delete\"]},\"id\":{\"type\":\"string\",\"description\":\"id of block to delete\"}},\"required\":[\"type\",\"id\"],\"additionalProperties\":false}]}}},\"additionalProperties\":false,\"required\":[\"operations\"],\"$defs\":{\"styles\":{\"type\":\"object\",\"properties\":{\"bold\":{\"type\":\"boolean\"},\"italic\":{\"type\":\"boolean\"},\"underline\":{\"type\":\"boolean\"},\"strike\":{\"type\":\"boolean\"},\"code\":{\"type\":\"boolean\"},\"textColor\":{\"type\":\"string\"},\"backgroundColor\":{\"type\":\"string\"}},\"additionalProperties\":false},\"styledtext\":{\"type\":\"object\",\"properties\":{\"type\":{\"type\":\"string\",\"enum\":[\"text\"]},\"text\":{\"type\":\"string\"},\"styles\":{\"$ref\":\"#/$defs/styles\"}},\"additionalProperties\":false,\"required\":[\"type\",\"text\"]},\"inlinecontent\":{\"type\":\"array\",\"items\":{\"anyOf\":[{\"type\":\"object\",\"properties\":{\"type\":{\"type\":\"string\",\"enum\":[\"mention\"]},\"props\":{\"type\":\"object\",\"properties\":{\"user\":{\"type\":\"string\"}},\"additionalProperties\":false}},\"additionalProperties\":false,\"required\":[\"type\"]},{\"$ref\":\"#/$defs/styledtext\"},{\"type\":\"object\",\"properties\":{\"type\":{\"type\":\"string\",\"enum\":[\"link\"]},\"content\":{\"type\":\"array\",\"items\":{\"$ref\":\"#/$defs/styledtext\"}},\"href\":{\"type\":\"string\"}},\"additionalProperties\":false,\"required\":[\"type\",\"href\",\"content\"]}]}},\"block\":{\"anyOf\":[{\"type\":\"object\",\"properties\":{\"type\":{\"type\":\"string\",\"enum\":[\"paragraph\",\"quote\",\"toggleListItem\",\"bulletListItem\",\"numberedListItem\"]},\"content\":{\"$ref\":\"#/$defs/inlinecontent\"},\"props\":{\"type\":\"object\",\"properties\":{},\"additionalProperties\":false}},\"additionalProperties\":false,\"required\":[\"type\"]},{\"type\":\"object\",\"properties\":{\"type\":{\"type\":\"string\",\"enum\":[\"heading\"]},\"content\":{\"$ref\":\"#/$defs/inlinecontent\"},\"props\":{\"type\":\"object\",\"properties\":{\"level\":{\"type\":\"number\",\"enum\":[1,2,3]},\"isTogglable\":{\"type\":\"boolean\"}},\"additionalProperties\":false}},\"additionalProperties\":false,\"required\":[\"type\"]},{\"type\":\"object\",\"properties\":{\"type\":{\"type\":\"string\",\"enum\":[\"codeBlock\"]},\"content\":{\"$ref\":\"#/$defs/inlinecontent\"},\"props\":{\"type\":\"object\",\"properties\":{\"language\":{\"type\":\"string\"}},\"additionalProperties\":false}},\"additionalProperties\":false,\"required\":[\"type\"]},{\"type\":\"object\",\"properties\":{\"type\":{\"type\":\"string\",\"enum\":[\"checkListItem\"]},\"content\":{\"$ref\":\"#/$defs/inlinecontent\"},\"props\":{\"type\":\"object\",\"properties\":{\"checked\":{\"type\":\"boolean\"}},\"additionalProperties\":false}},\"additionalProperties\":false,\"required\":[\"type\"]},{\"type\":\"object\",\"properties\":{\"type\":{\"type\":\"string\",\"enum\":[\"table\"]},\"content\":{\"type\":\"object\",\"properties\":{}},\"props\":{\"type\":\"object\",\"properties\":{},\"additionalProperties\":false}},\"additionalProperties\":false,\"required\":[\"type\"]}]}}}}}]}", "headers": [], "cookies": [] }, "response": { "status": 200, "statusText": "", - "body": "{\n \"id\": \"chatcmpl-BgV5ZVLDMP5z6CELiTe7wDpDBCS2o\",\n \"object\": \"chat.completion\",\n \"created\": 1749468981,\n \"model\": \"gpt-4o-2024-08-06\",\n \"choices\": [\n {\n \"index\": 0,\n \"message\": {\n \"role\": \"assistant\",\n \"content\": null,\n \"tool_calls\": [\n {\n \"id\": \"call_CGRx1XoomXcqO9egMpQDuHwW\",\n \"type\": \"function\",\n \"function\": {\n \"name\": \"json\",\n \"arguments\": \"{\\\"operations\\\":[{\\\"type\\\":\\\"update\\\",\\\"id\\\":\\\"ref2$\\\",\\\"block\\\":{\\\"type\\\":\\\"paragraph\\\",\\\"props\\\":{\\\"textColor\\\":\\\"default\\\",\\\"backgroundColor\\\":\\\"default\\\",\\\"textAlignment\\\":\\\"left\\\"},\\\"content\\\":[{\\\"type\\\":\\\"text\\\",\\\"text\\\":\\\"Hello, \\\",\\\"styles\\\":{}},{\\\"type\\\":\\\"mention\\\",\\\"props\\\":{\\\"user\\\":\\\"John Doe\\\"}},{\\\"type\\\":\\\"text\\\",\\\"text\\\":\\\"! \\\",\\\"styles\\\":{}},{\\\"type\\\":\\\"text\\\",\\\"text\\\":\\\"How are you doing?\\\",\\\"styles\\\":{}},{\\\"type\\\":\\\"text\\\",\\\"text\\\":\\\" \\\",\\\"styles\\\":{}},{\\\"type\\\":\\\"text\\\",\\\"text\\\":\\\"This text is blue!\\\",\\\"styles\\\":{\\\"textColor\\\":\\\"blue\\\"}}]}}]}\"\n }\n }\n ],\n \"refusal\": null,\n \"annotations\": []\n },\n \"logprobs\": null,\n \"finish_reason\": \"stop\"\n }\n ],\n \"usage\": {\n \"prompt_tokens\": 1162,\n \"completion_tokens\": 127,\n \"total_tokens\": 1289,\n \"prompt_tokens_details\": {\n \"cached_tokens\": 1152,\n \"audio_tokens\": 0\n },\n \"completion_tokens_details\": {\n \"reasoning_tokens\": 0,\n \"audio_tokens\": 0,\n \"accepted_prediction_tokens\": 0,\n \"rejected_prediction_tokens\": 0\n }\n },\n \"service_tier\": \"default\",\n \"system_fingerprint\": \"fp_07871e2ad8\"\n}\n", + "body": "{\n \"id\": \"chatcmpl-BhXnqviFLiS80dXRZWGFja86E0oRx\",\n \"object\": \"chat.completion\",\n \"created\": 1749717742,\n \"model\": \"gpt-4o-2024-08-06\",\n \"choices\": [\n {\n \"index\": 0,\n \"message\": {\n \"role\": \"assistant\",\n \"content\": null,\n \"tool_calls\": [\n {\n \"id\": \"call_lImMjZr4sWzPVh0mJkprnPli\",\n \"type\": \"function\",\n \"function\": {\n \"name\": \"json\",\n \"arguments\": \"{\\\"operations\\\":[{\\\"type\\\":\\\"update\\\",\\\"id\\\":\\\"ref2$\\\",\\\"block\\\":{\\\"type\\\":\\\"paragraph\\\",\\\"content\\\":[{\\\"type\\\":\\\"text\\\",\\\"text\\\":\\\"Hello, \\\",\\\"styles\\\":{}},{\\\"type\\\":\\\"mention\\\",\\\"props\\\":{\\\"user\\\":\\\"John Doe\\\"}},{\\\"type\\\":\\\"text\\\",\\\"text\\\":\\\"! \\\",\\\"styles\\\":{}},{\\\"type\\\":\\\"text\\\",\\\"text\\\":\\\"How are you doing?\\\",\\\"styles\\\":{}},{\\\"type\\\":\\\"text\\\",\\\"text\\\":\\\" \\\",\\\"styles\\\":{}},{\\\"type\\\":\\\"text\\\",\\\"text\\\":\\\"This text is blue!\\\",\\\"styles\\\":{\\\"textColor\\\":\\\"blue\\\"}}]}}]}\"\n }\n }\n ],\n \"refusal\": null,\n \"annotations\": []\n },\n \"logprobs\": null,\n \"finish_reason\": \"stop\"\n }\n ],\n \"usage\": {\n \"prompt_tokens\": 1190,\n \"completion_tokens\": 109,\n \"total_tokens\": 1299,\n \"prompt_tokens_details\": {\n \"cached_tokens\": 1152,\n \"audio_tokens\": 0\n },\n \"completion_tokens_details\": {\n \"reasoning_tokens\": 0,\n \"audio_tokens\": 0,\n \"accepted_prediction_tokens\": 0,\n \"rejected_prediction_tokens\": 0\n }\n },\n \"service_tier\": \"default\",\n \"system_fingerprint\": \"fp_a288987b44\"\n}\n", "headers": [] } } \ No newline at end of file diff --git a/packages/xl-ai/src/api/formats/json/__snapshots__/json.test.ts/Update/__msw_snapshots__/openai.chat/gpt-4o-2024-08-06 (non-streaming)/styles + ic in source block, remove mention_1_809be514a611ead86c2544d7bc18e20c.json b/packages/xl-ai/src/api/formats/json/__snapshots__/json.test.ts/Update/__msw_snapshots__/openai.chat/gpt-4o-2024-08-06 (non-streaming)/styles + ic in source block, remove mention_1_fbd394f02b4ae12bd97cf7fcc16b0617.json similarity index 80% rename from packages/xl-ai/src/api/formats/json/__snapshots__/json.test.ts/Update/__msw_snapshots__/openai.chat/gpt-4o-2024-08-06 (non-streaming)/styles + ic in source block, remove mention_1_809be514a611ead86c2544d7bc18e20c.json rename to packages/xl-ai/src/api/formats/json/__snapshots__/json.test.ts/Update/__msw_snapshots__/openai.chat/gpt-4o-2024-08-06 (non-streaming)/styles + ic in source block, remove mention_1_fbd394f02b4ae12bd97cf7fcc16b0617.json index f575bdd192..491ea26952 100644 --- a/packages/xl-ai/src/api/formats/json/__snapshots__/json.test.ts/Update/__msw_snapshots__/openai.chat/gpt-4o-2024-08-06 (non-streaming)/styles + ic in source block, remove mention_1_809be514a611ead86c2544d7bc18e20c.json +++ b/packages/xl-ai/src/api/formats/json/__snapshots__/json.test.ts/Update/__msw_snapshots__/openai.chat/gpt-4o-2024-08-06 (non-streaming)/styles + ic in source block, remove mention_1_fbd394f02b4ae12bd97cf7fcc16b0617.json @@ -2,14 +2,14 @@ "request": { "method": "POST", "url": "https://localhost:3000/ai?provider=openai&url=https%3A%2F%2Fapi.openai.com%2Fv1%2Fchat%2Fcompletions", - "body": "{\"model\":\"gpt-4o-2024-08-06\",\"temperature\":0,\"messages\":[{\"role\":\"system\",\"content\":\"You're manipulating a text document using JSON blocks. \\n Make sure to follow the json schema provided. When referencing ids they MUST be EXACTLY the same (including the trailing $). \\n This is the document as an array of JSON blocks (the cursor is BETWEEN two blocks as indicated by cursor: true):\"},{\"role\":\"system\",\"content\":\"[{\\\"id\\\":\\\"ref1$\\\",\\\"block\\\":{\\\"id\\\":\\\"ref1\\\",\\\"type\\\":\\\"paragraph\\\",\\\"props\\\":{\\\"textColor\\\":\\\"default\\\",\\\"backgroundColor\\\":\\\"default\\\",\\\"textAlignment\\\":\\\"left\\\"},\\\"content\\\":[{\\\"type\\\":\\\"text\\\",\\\"text\\\":\\\"Hello, world!\\\",\\\"styles\\\":{}}]}},{\\\"cursor\\\":true},{\\\"id\\\":\\\"ref2$\\\",\\\"block\\\":{\\\"id\\\":\\\"ref2\\\",\\\"type\\\":\\\"paragraph\\\",\\\"props\\\":{\\\"textColor\\\":\\\"default\\\",\\\"backgroundColor\\\":\\\"default\\\",\\\"textAlignment\\\":\\\"left\\\"},\\\"content\\\":[{\\\"type\\\":\\\"text\\\",\\\"text\\\":\\\"Hello, \\\",\\\"styles\\\":{}},{\\\"type\\\":\\\"mention\\\",\\\"props\\\":{\\\"user\\\":\\\"John Doe\\\"}},{\\\"type\\\":\\\"text\\\",\\\"text\\\":\\\"! \\\",\\\"styles\\\":{}},{\\\"type\\\":\\\"text\\\",\\\"text\\\":\\\"How are you doing?\\\",\\\"styles\\\":{\\\"bold\\\":true}},{\\\"type\\\":\\\"text\\\",\\\"text\\\":\\\" \\\",\\\"styles\\\":{}},{\\\"type\\\":\\\"text\\\",\\\"text\\\":\\\"This text is blue!\\\",\\\"styles\\\":{\\\"textColor\\\":\\\"blue\\\"}}]}},{\\\"id\\\":\\\"ref3$\\\",\\\"block\\\":{\\\"id\\\":\\\"ref3\\\",\\\"type\\\":\\\"paragraph\\\",\\\"props\\\":{\\\"textColor\\\":\\\"default\\\",\\\"backgroundColor\\\":\\\"default\\\",\\\"textAlignment\\\":\\\"left\\\"},\\\"content\\\":[{\\\"type\\\":\\\"text\\\",\\\"text\\\":\\\"Hello, world! \\\",\\\"styles\\\":{}},{\\\"type\\\":\\\"text\\\",\\\"text\\\":\\\"Bold text. \\\",\\\"styles\\\":{\\\"bold\\\":true}},{\\\"type\\\":\\\"link\\\",\\\"href\\\":\\\"https://www.google.com\\\",\\\"content\\\":[{\\\"type\\\":\\\"text\\\",\\\"text\\\":\\\"Link.\\\",\\\"styles\\\":{}}]}]}}]\"},{\"role\":\"system\",\"content\":\"The user asks you to do the following:\"},{\"role\":\"user\",\"content\":\"change to say 'Hello! How are you doing? This text is blue!' (remove mention but keep bold text)\"},{\"role\":\"system\",\"content\":\"First, determine what part of the document the user is talking about. You SHOULD probably take cursor info into account if needed.\\n EXAMPLE: if user says \\\"below\\\" (without pointing to a specific part of the document) he / she probably indicates the block(s) after the cursor. \\n EXAMPLE: If you want to insert content AT the cursor position (UNLESS indicated otherwise by the user), then you need `referenceId` to point to the block before the cursor with position `after` (or block below and `before`).\\n \\n Prefer updating existing blocks over removing and adding (but this also depends on the user's question).\"}],\"tool_choice\":{\"type\":\"function\",\"function\":{\"name\":\"json\"}},\"tools\":[{\"type\":\"function\",\"function\":{\"name\":\"json\",\"description\":\"Respond with a JSON object.\",\"parameters\":{\"type\":\"object\",\"properties\":{\"operations\":{\"type\":\"array\",\"items\":{\"anyOf\":[{\"type\":\"object\",\"description\":\"Update a block, the new block will replace the existing block.\",\"properties\":{\"type\":{\"type\":\"string\",\"enum\":[\"update\"]},\"id\":{\"type\":\"string\",\"description\":\"id of block to update\"},\"block\":{\"$ref\":\"#/$defs/block\"}},\"required\":[\"type\",\"id\",\"block\"],\"additionalProperties\":false},{\"type\":\"object\",\"description\":\"Insert new blocks\",\"properties\":{\"type\":{\"type\":\"string\",\"enum\":[\"add\"]},\"referenceId\":{\"type\":\"string\",\"description\":\"MUST be an id of a block in the document\"},\"position\":{\"type\":\"string\",\"enum\":[\"before\",\"after\"],\"description\":\"`after` to add blocks AFTER (below) the block with `referenceId`, `before` to add the block BEFORE (above)\"},\"blocks\":{\"items\":{\"$ref\":\"#/$defs/block\"},\"type\":\"array\"}},\"required\":[\"type\",\"referenceId\",\"position\",\"blocks\"],\"additionalProperties\":false},{\"type\":\"object\",\"description\":\"Delete a block\",\"properties\":{\"type\":{\"type\":\"string\",\"enum\":[\"delete\"]},\"id\":{\"type\":\"string\",\"description\":\"id of block to delete\"}},\"required\":[\"type\",\"id\"],\"additionalProperties\":false}]}}},\"additionalProperties\":false,\"required\":[\"operations\"],\"$defs\":{\"styles\":{\"type\":\"object\",\"properties\":{\"bold\":{\"type\":\"boolean\"},\"italic\":{\"type\":\"boolean\"},\"underline\":{\"type\":\"boolean\"},\"strike\":{\"type\":\"boolean\"},\"code\":{\"type\":\"boolean\"},\"textColor\":{\"type\":\"string\"},\"backgroundColor\":{\"type\":\"string\"}},\"additionalProperties\":false},\"styledtext\":{\"type\":\"object\",\"properties\":{\"type\":{\"type\":\"string\",\"enum\":[\"text\"]},\"text\":{\"type\":\"string\"},\"styles\":{\"$ref\":\"#/$defs/styles\"}},\"additionalProperties\":false,\"required\":[\"type\",\"text\"]},\"inlinecontent\":{\"type\":\"array\",\"items\":{\"anyOf\":[{\"type\":\"object\",\"properties\":{\"type\":{\"type\":\"string\",\"enum\":[\"mention\"]},\"props\":{\"type\":\"object\",\"properties\":{\"user\":{\"type\":\"string\"}},\"additionalProperties\":false}},\"additionalProperties\":false,\"required\":[\"type\"]},{\"$ref\":\"#/$defs/styledtext\"},{\"type\":\"object\",\"properties\":{\"type\":{\"type\":\"string\",\"enum\":[\"link\"]},\"content\":{\"type\":\"array\",\"items\":{\"$ref\":\"#/$defs/styledtext\"}},\"href\":{\"type\":\"string\"}},\"additionalProperties\":false,\"required\":[\"type\",\"href\",\"content\"]}]}},\"block\":{\"anyOf\":[{\"type\":\"object\",\"properties\":{\"type\":{\"type\":\"string\",\"enum\":[\"paragraph\",\"quote\",\"bulletListItem\",\"numberedListItem\"]},\"content\":{\"$ref\":\"#/$defs/inlinecontent\"},\"props\":{\"type\":\"object\",\"properties\":{},\"additionalProperties\":false}},\"additionalProperties\":false,\"required\":[\"type\"]},{\"type\":\"object\",\"properties\":{\"type\":{\"type\":\"string\",\"enum\":[\"heading\"]},\"content\":{\"$ref\":\"#/$defs/inlinecontent\"},\"props\":{\"type\":\"object\",\"properties\":{\"level\":{\"type\":\"number\",\"enum\":[1,2,3]}},\"additionalProperties\":false}},\"additionalProperties\":false,\"required\":[\"type\"]},{\"type\":\"object\",\"properties\":{\"type\":{\"type\":\"string\",\"enum\":[\"codeBlock\"]},\"content\":{\"$ref\":\"#/$defs/inlinecontent\"},\"props\":{\"type\":\"object\",\"properties\":{\"language\":{\"type\":\"string\"}},\"additionalProperties\":false}},\"additionalProperties\":false,\"required\":[\"type\"]},{\"type\":\"object\",\"properties\":{\"type\":{\"type\":\"string\",\"enum\":[\"checkListItem\"]},\"content\":{\"$ref\":\"#/$defs/inlinecontent\"},\"props\":{\"type\":\"object\",\"properties\":{\"checked\":{\"type\":\"boolean\"}},\"additionalProperties\":false}},\"additionalProperties\":false,\"required\":[\"type\"]},{\"type\":\"object\",\"properties\":{\"type\":{\"type\":\"string\",\"enum\":[\"table\"]},\"content\":{\"type\":\"object\",\"properties\":{}},\"props\":{\"type\":\"object\",\"properties\":{},\"additionalProperties\":false}},\"additionalProperties\":false,\"required\":[\"type\"]}]}}}}}]}", + "body": "{\"model\":\"gpt-4o-2024-08-06\",\"temperature\":0,\"messages\":[{\"role\":\"system\",\"content\":\"You're manipulating a text document using JSON blocks. \\n Make sure to follow the json schema provided. When referencing ids they MUST be EXACTLY the same (including the trailing $). \\n This is the document as an array of JSON blocks (the cursor is BETWEEN two blocks as indicated by cursor: true):\"},{\"role\":\"system\",\"content\":\"[{\\\"id\\\":\\\"ref1$\\\",\\\"block\\\":{\\\"id\\\":\\\"ref1\\\",\\\"type\\\":\\\"paragraph\\\",\\\"props\\\":{\\\"textColor\\\":\\\"default\\\",\\\"backgroundColor\\\":\\\"default\\\",\\\"textAlignment\\\":\\\"left\\\"},\\\"content\\\":[{\\\"type\\\":\\\"text\\\",\\\"text\\\":\\\"Hello, world!\\\",\\\"styles\\\":{}}]}},{\\\"cursor\\\":true},{\\\"id\\\":\\\"ref2$\\\",\\\"block\\\":{\\\"id\\\":\\\"ref2\\\",\\\"type\\\":\\\"paragraph\\\",\\\"props\\\":{\\\"textColor\\\":\\\"default\\\",\\\"backgroundColor\\\":\\\"default\\\",\\\"textAlignment\\\":\\\"left\\\"},\\\"content\\\":[{\\\"type\\\":\\\"text\\\",\\\"text\\\":\\\"Hello, \\\",\\\"styles\\\":{}},{\\\"type\\\":\\\"mention\\\",\\\"props\\\":{\\\"user\\\":\\\"John Doe\\\"}},{\\\"type\\\":\\\"text\\\",\\\"text\\\":\\\"! \\\",\\\"styles\\\":{}},{\\\"type\\\":\\\"text\\\",\\\"text\\\":\\\"How are you doing?\\\",\\\"styles\\\":{\\\"bold\\\":true}},{\\\"type\\\":\\\"text\\\",\\\"text\\\":\\\" \\\",\\\"styles\\\":{}},{\\\"type\\\":\\\"text\\\",\\\"text\\\":\\\"This text is blue!\\\",\\\"styles\\\":{\\\"textColor\\\":\\\"blue\\\"}}]}},{\\\"id\\\":\\\"ref3$\\\",\\\"block\\\":{\\\"id\\\":\\\"ref3\\\",\\\"type\\\":\\\"paragraph\\\",\\\"props\\\":{\\\"textColor\\\":\\\"default\\\",\\\"backgroundColor\\\":\\\"default\\\",\\\"textAlignment\\\":\\\"left\\\"},\\\"content\\\":[{\\\"type\\\":\\\"text\\\",\\\"text\\\":\\\"Hello, world! \\\",\\\"styles\\\":{}},{\\\"type\\\":\\\"text\\\",\\\"text\\\":\\\"Bold text. \\\",\\\"styles\\\":{\\\"bold\\\":true}},{\\\"type\\\":\\\"link\\\",\\\"href\\\":\\\"https://www.google.com\\\",\\\"content\\\":[{\\\"type\\\":\\\"text\\\",\\\"text\\\":\\\"Link.\\\",\\\"styles\\\":{}}]}]}}]\"},{\"role\":\"system\",\"content\":\"The user asks you to do the following:\"},{\"role\":\"user\",\"content\":\"change to say 'Hello! How are you doing? This text is blue!' (remove mention but keep bold text)\"},{\"role\":\"system\",\"content\":\"First, determine what part of the document the user is talking about. You SHOULD probably take cursor info into account if needed.\\n EXAMPLE: if user says \\\"below\\\" (without pointing to a specific part of the document) he / she probably indicates the block(s) after the cursor. \\n EXAMPLE: If you want to insert content AT the cursor position (UNLESS indicated otherwise by the user), then you need `referenceId` to point to the block before the cursor with position `after` (or block below and `before`).\\n \\n Prefer updating existing blocks over removing and adding (but this also depends on the user's question).\"}],\"tool_choice\":{\"type\":\"function\",\"function\":{\"name\":\"json\"}},\"tools\":[{\"type\":\"function\",\"function\":{\"name\":\"json\",\"description\":\"Respond with a JSON object.\",\"parameters\":{\"type\":\"object\",\"properties\":{\"operations\":{\"type\":\"array\",\"items\":{\"anyOf\":[{\"type\":\"object\",\"description\":\"Update a block, the new block will replace the existing block.\",\"properties\":{\"type\":{\"type\":\"string\",\"enum\":[\"update\"]},\"id\":{\"type\":\"string\",\"description\":\"id of block to update\"},\"block\":{\"$ref\":\"#/$defs/block\"}},\"required\":[\"type\",\"id\",\"block\"],\"additionalProperties\":false},{\"type\":\"object\",\"description\":\"Insert new blocks\",\"properties\":{\"type\":{\"type\":\"string\",\"enum\":[\"add\"]},\"referenceId\":{\"type\":\"string\",\"description\":\"MUST be an id of a block in the document\"},\"position\":{\"type\":\"string\",\"enum\":[\"before\",\"after\"],\"description\":\"`after` to add blocks AFTER (below) the block with `referenceId`, `before` to add the block BEFORE (above)\"},\"blocks\":{\"items\":{\"$ref\":\"#/$defs/block\"},\"type\":\"array\"}},\"required\":[\"type\",\"referenceId\",\"position\",\"blocks\"],\"additionalProperties\":false},{\"type\":\"object\",\"description\":\"Delete a block\",\"properties\":{\"type\":{\"type\":\"string\",\"enum\":[\"delete\"]},\"id\":{\"type\":\"string\",\"description\":\"id of block to delete\"}},\"required\":[\"type\",\"id\"],\"additionalProperties\":false}]}}},\"additionalProperties\":false,\"required\":[\"operations\"],\"$defs\":{\"styles\":{\"type\":\"object\",\"properties\":{\"bold\":{\"type\":\"boolean\"},\"italic\":{\"type\":\"boolean\"},\"underline\":{\"type\":\"boolean\"},\"strike\":{\"type\":\"boolean\"},\"code\":{\"type\":\"boolean\"},\"textColor\":{\"type\":\"string\"},\"backgroundColor\":{\"type\":\"string\"}},\"additionalProperties\":false},\"styledtext\":{\"type\":\"object\",\"properties\":{\"type\":{\"type\":\"string\",\"enum\":[\"text\"]},\"text\":{\"type\":\"string\"},\"styles\":{\"$ref\":\"#/$defs/styles\"}},\"additionalProperties\":false,\"required\":[\"type\",\"text\"]},\"inlinecontent\":{\"type\":\"array\",\"items\":{\"anyOf\":[{\"type\":\"object\",\"properties\":{\"type\":{\"type\":\"string\",\"enum\":[\"mention\"]},\"props\":{\"type\":\"object\",\"properties\":{\"user\":{\"type\":\"string\"}},\"additionalProperties\":false}},\"additionalProperties\":false,\"required\":[\"type\"]},{\"$ref\":\"#/$defs/styledtext\"},{\"type\":\"object\",\"properties\":{\"type\":{\"type\":\"string\",\"enum\":[\"link\"]},\"content\":{\"type\":\"array\",\"items\":{\"$ref\":\"#/$defs/styledtext\"}},\"href\":{\"type\":\"string\"}},\"additionalProperties\":false,\"required\":[\"type\",\"href\",\"content\"]}]}},\"block\":{\"anyOf\":[{\"type\":\"object\",\"properties\":{\"type\":{\"type\":\"string\",\"enum\":[\"paragraph\",\"quote\",\"toggleListItem\",\"bulletListItem\",\"numberedListItem\"]},\"content\":{\"$ref\":\"#/$defs/inlinecontent\"},\"props\":{\"type\":\"object\",\"properties\":{},\"additionalProperties\":false}},\"additionalProperties\":false,\"required\":[\"type\"]},{\"type\":\"object\",\"properties\":{\"type\":{\"type\":\"string\",\"enum\":[\"heading\"]},\"content\":{\"$ref\":\"#/$defs/inlinecontent\"},\"props\":{\"type\":\"object\",\"properties\":{\"level\":{\"type\":\"number\",\"enum\":[1,2,3]},\"isTogglable\":{\"type\":\"boolean\"}},\"additionalProperties\":false}},\"additionalProperties\":false,\"required\":[\"type\"]},{\"type\":\"object\",\"properties\":{\"type\":{\"type\":\"string\",\"enum\":[\"codeBlock\"]},\"content\":{\"$ref\":\"#/$defs/inlinecontent\"},\"props\":{\"type\":\"object\",\"properties\":{\"language\":{\"type\":\"string\"}},\"additionalProperties\":false}},\"additionalProperties\":false,\"required\":[\"type\"]},{\"type\":\"object\",\"properties\":{\"type\":{\"type\":\"string\",\"enum\":[\"checkListItem\"]},\"content\":{\"$ref\":\"#/$defs/inlinecontent\"},\"props\":{\"type\":\"object\",\"properties\":{\"checked\":{\"type\":\"boolean\"}},\"additionalProperties\":false}},\"additionalProperties\":false,\"required\":[\"type\"]},{\"type\":\"object\",\"properties\":{\"type\":{\"type\":\"string\",\"enum\":[\"table\"]},\"content\":{\"type\":\"object\",\"properties\":{}},\"props\":{\"type\":\"object\",\"properties\":{},\"additionalProperties\":false}},\"additionalProperties\":false,\"required\":[\"type\"]}]}}}}}]}", "headers": [], "cookies": [] }, "response": { "status": 200, "statusText": "", - "body": "{\n \"id\": \"chatcmpl-BgV5bZ4tvS4vIJd99mPOAn37RH5Jt\",\n \"object\": \"chat.completion\",\n \"created\": 1749468983,\n \"model\": \"gpt-4o-2024-08-06\",\n \"choices\": [\n {\n \"index\": 0,\n \"message\": {\n \"role\": \"assistant\",\n \"content\": null,\n \"tool_calls\": [\n {\n \"id\": \"call_eXpIsRrrXWt0LS9gZYGqDamP\",\n \"type\": \"function\",\n \"function\": {\n \"name\": \"json\",\n \"arguments\": \"{\\\"operations\\\":[{\\\"type\\\":\\\"update\\\",\\\"id\\\":\\\"ref2$\\\",\\\"block\\\":{\\\"type\\\":\\\"paragraph\\\",\\\"content\\\":[{\\\"type\\\":\\\"text\\\",\\\"text\\\":\\\"Hello! \\\",\\\"styles\\\":{}},{\\\"type\\\":\\\"text\\\",\\\"text\\\":\\\"How are you doing?\\\",\\\"styles\\\":{\\\"bold\\\":true}},{\\\"type\\\":\\\"text\\\",\\\"text\\\":\\\" \\\",\\\"styles\\\":{}},{\\\"type\\\":\\\"text\\\",\\\"text\\\":\\\"This text is blue!\\\",\\\"styles\\\":{\\\"textColor\\\":\\\"blue\\\"}}]}}]}\"\n }\n }\n ],\n \"refusal\": null,\n \"annotations\": []\n },\n \"logprobs\": null,\n \"finish_reason\": \"stop\"\n }\n ],\n \"usage\": {\n \"prompt_tokens\": 1178,\n \"completion_tokens\": 88,\n \"total_tokens\": 1266,\n \"prompt_tokens_details\": {\n \"cached_tokens\": 1152,\n \"audio_tokens\": 0\n },\n \"completion_tokens_details\": {\n \"reasoning_tokens\": 0,\n \"audio_tokens\": 0,\n \"accepted_prediction_tokens\": 0,\n \"rejected_prediction_tokens\": 0\n }\n },\n \"service_tier\": \"default\",\n \"system_fingerprint\": \"fp_07871e2ad8\"\n}\n", + "body": "{\n \"id\": \"chatcmpl-BhXnshkeGNVeUQYgZRIqZ4WHuM8JN\",\n \"object\": \"chat.completion\",\n \"created\": 1749717744,\n \"model\": \"gpt-4o-2024-08-06\",\n \"choices\": [\n {\n \"index\": 0,\n \"message\": {\n \"role\": \"assistant\",\n \"content\": null,\n \"tool_calls\": [\n {\n \"id\": \"call_IrieeP0SkUFWqBGY0j2pIKLr\",\n \"type\": \"function\",\n \"function\": {\n \"name\": \"json\",\n \"arguments\": \"{\\\"operations\\\":[{\\\"type\\\":\\\"update\\\",\\\"id\\\":\\\"ref2$\\\",\\\"block\\\":{\\\"type\\\":\\\"paragraph\\\",\\\"content\\\":[{\\\"type\\\":\\\"text\\\",\\\"text\\\":\\\"Hello! \\\",\\\"styles\\\":{}},{\\\"type\\\":\\\"text\\\",\\\"text\\\":\\\"How are you doing?\\\",\\\"styles\\\":{\\\"bold\\\":true}},{\\\"type\\\":\\\"text\\\",\\\"text\\\":\\\" \\\",\\\"styles\\\":{}},{\\\"type\\\":\\\"text\\\",\\\"text\\\":\\\"This text is blue!\\\",\\\"styles\\\":{\\\"textColor\\\":\\\"blue\\\"}}]}}]}\"\n }\n }\n ],\n \"refusal\": null,\n \"annotations\": []\n },\n \"logprobs\": null,\n \"finish_reason\": \"stop\"\n }\n ],\n \"usage\": {\n \"prompt_tokens\": 1206,\n \"completion_tokens\": 88,\n \"total_tokens\": 1294,\n \"prompt_tokens_details\": {\n \"cached_tokens\": 1152,\n \"audio_tokens\": 0\n },\n \"completion_tokens_details\": {\n \"reasoning_tokens\": 0,\n \"audio_tokens\": 0,\n \"accepted_prediction_tokens\": 0,\n \"rejected_prediction_tokens\": 0\n }\n },\n \"service_tier\": \"default\",\n \"system_fingerprint\": \"fp_a288987b44\"\n}\n", "headers": [] } } \ No newline at end of file diff --git a/packages/xl-ai/src/api/formats/json/__snapshots__/json.test.ts/Update/__msw_snapshots__/openai.chat/gpt-4o-2024-08-06 (non-streaming)/styles + ic in source block, replace content_1_01bf45b503cc910c44eb50e8871fa8c4.json b/packages/xl-ai/src/api/formats/json/__snapshots__/json.test.ts/Update/__msw_snapshots__/openai.chat/gpt-4o-2024-08-06 (non-streaming)/styles + ic in source block, replace content_1_c0b98fb14b676e013dac242e3b780010.json similarity index 75% rename from packages/xl-ai/src/api/formats/json/__snapshots__/json.test.ts/Update/__msw_snapshots__/openai.chat/gpt-4o-2024-08-06 (non-streaming)/styles + ic in source block, replace content_1_01bf45b503cc910c44eb50e8871fa8c4.json rename to packages/xl-ai/src/api/formats/json/__snapshots__/json.test.ts/Update/__msw_snapshots__/openai.chat/gpt-4o-2024-08-06 (non-streaming)/styles + ic in source block, replace content_1_c0b98fb14b676e013dac242e3b780010.json index 4a0d4582b7..7dbf718508 100644 --- a/packages/xl-ai/src/api/formats/json/__snapshots__/json.test.ts/Update/__msw_snapshots__/openai.chat/gpt-4o-2024-08-06 (non-streaming)/styles + ic in source block, replace content_1_01bf45b503cc910c44eb50e8871fa8c4.json +++ b/packages/xl-ai/src/api/formats/json/__snapshots__/json.test.ts/Update/__msw_snapshots__/openai.chat/gpt-4o-2024-08-06 (non-streaming)/styles + ic in source block, replace content_1_c0b98fb14b676e013dac242e3b780010.json @@ -2,14 +2,14 @@ "request": { "method": "POST", "url": "https://localhost:3000/ai?provider=openai&url=https%3A%2F%2Fapi.openai.com%2Fv1%2Fchat%2Fcompletions", - "body": "{\"model\":\"gpt-4o-2024-08-06\",\"temperature\":0,\"messages\":[{\"role\":\"system\",\"content\":\"You're manipulating a text document using JSON blocks. \\n Make sure to follow the json schema provided. When referencing ids they MUST be EXACTLY the same (including the trailing $). \\n This is the document as an array of JSON blocks (the cursor is BETWEEN two blocks as indicated by cursor: true):\"},{\"role\":\"system\",\"content\":\"[{\\\"id\\\":\\\"ref1$\\\",\\\"block\\\":{\\\"id\\\":\\\"ref1\\\",\\\"type\\\":\\\"paragraph\\\",\\\"props\\\":{\\\"textColor\\\":\\\"default\\\",\\\"backgroundColor\\\":\\\"default\\\",\\\"textAlignment\\\":\\\"left\\\"},\\\"content\\\":[{\\\"type\\\":\\\"text\\\",\\\"text\\\":\\\"Hello, world!\\\",\\\"styles\\\":{}}]}},{\\\"cursor\\\":true},{\\\"id\\\":\\\"ref2$\\\",\\\"block\\\":{\\\"id\\\":\\\"ref2\\\",\\\"type\\\":\\\"paragraph\\\",\\\"props\\\":{\\\"textColor\\\":\\\"default\\\",\\\"backgroundColor\\\":\\\"default\\\",\\\"textAlignment\\\":\\\"left\\\"},\\\"content\\\":[{\\\"type\\\":\\\"text\\\",\\\"text\\\":\\\"Hello, \\\",\\\"styles\\\":{}},{\\\"type\\\":\\\"mention\\\",\\\"props\\\":{\\\"user\\\":\\\"John Doe\\\"}},{\\\"type\\\":\\\"text\\\",\\\"text\\\":\\\"! \\\",\\\"styles\\\":{}},{\\\"type\\\":\\\"text\\\",\\\"text\\\":\\\"How are you doing?\\\",\\\"styles\\\":{\\\"bold\\\":true}},{\\\"type\\\":\\\"text\\\",\\\"text\\\":\\\" \\\",\\\"styles\\\":{}},{\\\"type\\\":\\\"text\\\",\\\"text\\\":\\\"This text is blue!\\\",\\\"styles\\\":{\\\"textColor\\\":\\\"blue\\\"}}]}},{\\\"id\\\":\\\"ref3$\\\",\\\"block\\\":{\\\"id\\\":\\\"ref3\\\",\\\"type\\\":\\\"paragraph\\\",\\\"props\\\":{\\\"textColor\\\":\\\"default\\\",\\\"backgroundColor\\\":\\\"default\\\",\\\"textAlignment\\\":\\\"left\\\"},\\\"content\\\":[{\\\"type\\\":\\\"text\\\",\\\"text\\\":\\\"Hello, world! \\\",\\\"styles\\\":{}},{\\\"type\\\":\\\"text\\\",\\\"text\\\":\\\"Bold text. \\\",\\\"styles\\\":{\\\"bold\\\":true}},{\\\"type\\\":\\\"link\\\",\\\"href\\\":\\\"https://www.google.com\\\",\\\"content\\\":[{\\\"type\\\":\\\"text\\\",\\\"text\\\":\\\"Link.\\\",\\\"styles\\\":{}}]}]}}]\"},{\"role\":\"system\",\"content\":\"The user asks you to do the following:\"},{\"role\":\"user\",\"content\":\"update the content of the second block to 'Hello, updated content'\"},{\"role\":\"system\",\"content\":\"First, determine what part of the document the user is talking about. You SHOULD probably take cursor info into account if needed.\\n EXAMPLE: if user says \\\"below\\\" (without pointing to a specific part of the document) he / she probably indicates the block(s) after the cursor. \\n EXAMPLE: If you want to insert content AT the cursor position (UNLESS indicated otherwise by the user), then you need `referenceId` to point to the block before the cursor with position `after` (or block below and `before`).\\n \\n Prefer updating existing blocks over removing and adding (but this also depends on the user's question).\"}],\"tool_choice\":{\"type\":\"function\",\"function\":{\"name\":\"json\"}},\"tools\":[{\"type\":\"function\",\"function\":{\"name\":\"json\",\"description\":\"Respond with a JSON object.\",\"parameters\":{\"type\":\"object\",\"properties\":{\"operations\":{\"type\":\"array\",\"items\":{\"anyOf\":[{\"type\":\"object\",\"description\":\"Update a block, the new block will replace the existing block.\",\"properties\":{\"type\":{\"type\":\"string\",\"enum\":[\"update\"]},\"id\":{\"type\":\"string\",\"description\":\"id of block to update\"},\"block\":{\"$ref\":\"#/$defs/block\"}},\"required\":[\"type\",\"id\",\"block\"],\"additionalProperties\":false},{\"type\":\"object\",\"description\":\"Insert new blocks\",\"properties\":{\"type\":{\"type\":\"string\",\"enum\":[\"add\"]},\"referenceId\":{\"type\":\"string\",\"description\":\"MUST be an id of a block in the document\"},\"position\":{\"type\":\"string\",\"enum\":[\"before\",\"after\"],\"description\":\"`after` to add blocks AFTER (below) the block with `referenceId`, `before` to add the block BEFORE (above)\"},\"blocks\":{\"items\":{\"$ref\":\"#/$defs/block\"},\"type\":\"array\"}},\"required\":[\"type\",\"referenceId\",\"position\",\"blocks\"],\"additionalProperties\":false},{\"type\":\"object\",\"description\":\"Delete a block\",\"properties\":{\"type\":{\"type\":\"string\",\"enum\":[\"delete\"]},\"id\":{\"type\":\"string\",\"description\":\"id of block to delete\"}},\"required\":[\"type\",\"id\"],\"additionalProperties\":false}]}}},\"additionalProperties\":false,\"required\":[\"operations\"],\"$defs\":{\"styles\":{\"type\":\"object\",\"properties\":{\"bold\":{\"type\":\"boolean\"},\"italic\":{\"type\":\"boolean\"},\"underline\":{\"type\":\"boolean\"},\"strike\":{\"type\":\"boolean\"},\"code\":{\"type\":\"boolean\"},\"textColor\":{\"type\":\"string\"},\"backgroundColor\":{\"type\":\"string\"}},\"additionalProperties\":false},\"styledtext\":{\"type\":\"object\",\"properties\":{\"type\":{\"type\":\"string\",\"enum\":[\"text\"]},\"text\":{\"type\":\"string\"},\"styles\":{\"$ref\":\"#/$defs/styles\"}},\"additionalProperties\":false,\"required\":[\"type\",\"text\"]},\"inlinecontent\":{\"type\":\"array\",\"items\":{\"anyOf\":[{\"type\":\"object\",\"properties\":{\"type\":{\"type\":\"string\",\"enum\":[\"mention\"]},\"props\":{\"type\":\"object\",\"properties\":{\"user\":{\"type\":\"string\"}},\"additionalProperties\":false}},\"additionalProperties\":false,\"required\":[\"type\"]},{\"$ref\":\"#/$defs/styledtext\"},{\"type\":\"object\",\"properties\":{\"type\":{\"type\":\"string\",\"enum\":[\"link\"]},\"content\":{\"type\":\"array\",\"items\":{\"$ref\":\"#/$defs/styledtext\"}},\"href\":{\"type\":\"string\"}},\"additionalProperties\":false,\"required\":[\"type\",\"href\",\"content\"]}]}},\"block\":{\"anyOf\":[{\"type\":\"object\",\"properties\":{\"type\":{\"type\":\"string\",\"enum\":[\"paragraph\",\"quote\",\"bulletListItem\",\"numberedListItem\"]},\"content\":{\"$ref\":\"#/$defs/inlinecontent\"},\"props\":{\"type\":\"object\",\"properties\":{},\"additionalProperties\":false}},\"additionalProperties\":false,\"required\":[\"type\"]},{\"type\":\"object\",\"properties\":{\"type\":{\"type\":\"string\",\"enum\":[\"heading\"]},\"content\":{\"$ref\":\"#/$defs/inlinecontent\"},\"props\":{\"type\":\"object\",\"properties\":{\"level\":{\"type\":\"number\",\"enum\":[1,2,3]}},\"additionalProperties\":false}},\"additionalProperties\":false,\"required\":[\"type\"]},{\"type\":\"object\",\"properties\":{\"type\":{\"type\":\"string\",\"enum\":[\"codeBlock\"]},\"content\":{\"$ref\":\"#/$defs/inlinecontent\"},\"props\":{\"type\":\"object\",\"properties\":{\"language\":{\"type\":\"string\"}},\"additionalProperties\":false}},\"additionalProperties\":false,\"required\":[\"type\"]},{\"type\":\"object\",\"properties\":{\"type\":{\"type\":\"string\",\"enum\":[\"checkListItem\"]},\"content\":{\"$ref\":\"#/$defs/inlinecontent\"},\"props\":{\"type\":\"object\",\"properties\":{\"checked\":{\"type\":\"boolean\"}},\"additionalProperties\":false}},\"additionalProperties\":false,\"required\":[\"type\"]},{\"type\":\"object\",\"properties\":{\"type\":{\"type\":\"string\",\"enum\":[\"table\"]},\"content\":{\"type\":\"object\",\"properties\":{}},\"props\":{\"type\":\"object\",\"properties\":{},\"additionalProperties\":false}},\"additionalProperties\":false,\"required\":[\"type\"]}]}}}}}]}", + "body": "{\"model\":\"gpt-4o-2024-08-06\",\"temperature\":0,\"messages\":[{\"role\":\"system\",\"content\":\"You're manipulating a text document using JSON blocks. \\n Make sure to follow the json schema provided. When referencing ids they MUST be EXACTLY the same (including the trailing $). \\n This is the document as an array of JSON blocks (the cursor is BETWEEN two blocks as indicated by cursor: true):\"},{\"role\":\"system\",\"content\":\"[{\\\"id\\\":\\\"ref1$\\\",\\\"block\\\":{\\\"id\\\":\\\"ref1\\\",\\\"type\\\":\\\"paragraph\\\",\\\"props\\\":{\\\"textColor\\\":\\\"default\\\",\\\"backgroundColor\\\":\\\"default\\\",\\\"textAlignment\\\":\\\"left\\\"},\\\"content\\\":[{\\\"type\\\":\\\"text\\\",\\\"text\\\":\\\"Hello, world!\\\",\\\"styles\\\":{}}]}},{\\\"cursor\\\":true},{\\\"id\\\":\\\"ref2$\\\",\\\"block\\\":{\\\"id\\\":\\\"ref2\\\",\\\"type\\\":\\\"paragraph\\\",\\\"props\\\":{\\\"textColor\\\":\\\"default\\\",\\\"backgroundColor\\\":\\\"default\\\",\\\"textAlignment\\\":\\\"left\\\"},\\\"content\\\":[{\\\"type\\\":\\\"text\\\",\\\"text\\\":\\\"Hello, \\\",\\\"styles\\\":{}},{\\\"type\\\":\\\"mention\\\",\\\"props\\\":{\\\"user\\\":\\\"John Doe\\\"}},{\\\"type\\\":\\\"text\\\",\\\"text\\\":\\\"! \\\",\\\"styles\\\":{}},{\\\"type\\\":\\\"text\\\",\\\"text\\\":\\\"How are you doing?\\\",\\\"styles\\\":{\\\"bold\\\":true}},{\\\"type\\\":\\\"text\\\",\\\"text\\\":\\\" \\\",\\\"styles\\\":{}},{\\\"type\\\":\\\"text\\\",\\\"text\\\":\\\"This text is blue!\\\",\\\"styles\\\":{\\\"textColor\\\":\\\"blue\\\"}}]}},{\\\"id\\\":\\\"ref3$\\\",\\\"block\\\":{\\\"id\\\":\\\"ref3\\\",\\\"type\\\":\\\"paragraph\\\",\\\"props\\\":{\\\"textColor\\\":\\\"default\\\",\\\"backgroundColor\\\":\\\"default\\\",\\\"textAlignment\\\":\\\"left\\\"},\\\"content\\\":[{\\\"type\\\":\\\"text\\\",\\\"text\\\":\\\"Hello, world! \\\",\\\"styles\\\":{}},{\\\"type\\\":\\\"text\\\",\\\"text\\\":\\\"Bold text. \\\",\\\"styles\\\":{\\\"bold\\\":true}},{\\\"type\\\":\\\"link\\\",\\\"href\\\":\\\"https://www.google.com\\\",\\\"content\\\":[{\\\"type\\\":\\\"text\\\",\\\"text\\\":\\\"Link.\\\",\\\"styles\\\":{}}]}]}}]\"},{\"role\":\"system\",\"content\":\"The user asks you to do the following:\"},{\"role\":\"user\",\"content\":\"update the content of the second block to 'Hello, updated content'\"},{\"role\":\"system\",\"content\":\"First, determine what part of the document the user is talking about. You SHOULD probably take cursor info into account if needed.\\n EXAMPLE: if user says \\\"below\\\" (without pointing to a specific part of the document) he / she probably indicates the block(s) after the cursor. \\n EXAMPLE: If you want to insert content AT the cursor position (UNLESS indicated otherwise by the user), then you need `referenceId` to point to the block before the cursor with position `after` (or block below and `before`).\\n \\n Prefer updating existing blocks over removing and adding (but this also depends on the user's question).\"}],\"tool_choice\":{\"type\":\"function\",\"function\":{\"name\":\"json\"}},\"tools\":[{\"type\":\"function\",\"function\":{\"name\":\"json\",\"description\":\"Respond with a JSON object.\",\"parameters\":{\"type\":\"object\",\"properties\":{\"operations\":{\"type\":\"array\",\"items\":{\"anyOf\":[{\"type\":\"object\",\"description\":\"Update a block, the new block will replace the existing block.\",\"properties\":{\"type\":{\"type\":\"string\",\"enum\":[\"update\"]},\"id\":{\"type\":\"string\",\"description\":\"id of block to update\"},\"block\":{\"$ref\":\"#/$defs/block\"}},\"required\":[\"type\",\"id\",\"block\"],\"additionalProperties\":false},{\"type\":\"object\",\"description\":\"Insert new blocks\",\"properties\":{\"type\":{\"type\":\"string\",\"enum\":[\"add\"]},\"referenceId\":{\"type\":\"string\",\"description\":\"MUST be an id of a block in the document\"},\"position\":{\"type\":\"string\",\"enum\":[\"before\",\"after\"],\"description\":\"`after` to add blocks AFTER (below) the block with `referenceId`, `before` to add the block BEFORE (above)\"},\"blocks\":{\"items\":{\"$ref\":\"#/$defs/block\"},\"type\":\"array\"}},\"required\":[\"type\",\"referenceId\",\"position\",\"blocks\"],\"additionalProperties\":false},{\"type\":\"object\",\"description\":\"Delete a block\",\"properties\":{\"type\":{\"type\":\"string\",\"enum\":[\"delete\"]},\"id\":{\"type\":\"string\",\"description\":\"id of block to delete\"}},\"required\":[\"type\",\"id\"],\"additionalProperties\":false}]}}},\"additionalProperties\":false,\"required\":[\"operations\"],\"$defs\":{\"styles\":{\"type\":\"object\",\"properties\":{\"bold\":{\"type\":\"boolean\"},\"italic\":{\"type\":\"boolean\"},\"underline\":{\"type\":\"boolean\"},\"strike\":{\"type\":\"boolean\"},\"code\":{\"type\":\"boolean\"},\"textColor\":{\"type\":\"string\"},\"backgroundColor\":{\"type\":\"string\"}},\"additionalProperties\":false},\"styledtext\":{\"type\":\"object\",\"properties\":{\"type\":{\"type\":\"string\",\"enum\":[\"text\"]},\"text\":{\"type\":\"string\"},\"styles\":{\"$ref\":\"#/$defs/styles\"}},\"additionalProperties\":false,\"required\":[\"type\",\"text\"]},\"inlinecontent\":{\"type\":\"array\",\"items\":{\"anyOf\":[{\"type\":\"object\",\"properties\":{\"type\":{\"type\":\"string\",\"enum\":[\"mention\"]},\"props\":{\"type\":\"object\",\"properties\":{\"user\":{\"type\":\"string\"}},\"additionalProperties\":false}},\"additionalProperties\":false,\"required\":[\"type\"]},{\"$ref\":\"#/$defs/styledtext\"},{\"type\":\"object\",\"properties\":{\"type\":{\"type\":\"string\",\"enum\":[\"link\"]},\"content\":{\"type\":\"array\",\"items\":{\"$ref\":\"#/$defs/styledtext\"}},\"href\":{\"type\":\"string\"}},\"additionalProperties\":false,\"required\":[\"type\",\"href\",\"content\"]}]}},\"block\":{\"anyOf\":[{\"type\":\"object\",\"properties\":{\"type\":{\"type\":\"string\",\"enum\":[\"paragraph\",\"quote\",\"toggleListItem\",\"bulletListItem\",\"numberedListItem\"]},\"content\":{\"$ref\":\"#/$defs/inlinecontent\"},\"props\":{\"type\":\"object\",\"properties\":{},\"additionalProperties\":false}},\"additionalProperties\":false,\"required\":[\"type\"]},{\"type\":\"object\",\"properties\":{\"type\":{\"type\":\"string\",\"enum\":[\"heading\"]},\"content\":{\"$ref\":\"#/$defs/inlinecontent\"},\"props\":{\"type\":\"object\",\"properties\":{\"level\":{\"type\":\"number\",\"enum\":[1,2,3]},\"isTogglable\":{\"type\":\"boolean\"}},\"additionalProperties\":false}},\"additionalProperties\":false,\"required\":[\"type\"]},{\"type\":\"object\",\"properties\":{\"type\":{\"type\":\"string\",\"enum\":[\"codeBlock\"]},\"content\":{\"$ref\":\"#/$defs/inlinecontent\"},\"props\":{\"type\":\"object\",\"properties\":{\"language\":{\"type\":\"string\"}},\"additionalProperties\":false}},\"additionalProperties\":false,\"required\":[\"type\"]},{\"type\":\"object\",\"properties\":{\"type\":{\"type\":\"string\",\"enum\":[\"checkListItem\"]},\"content\":{\"$ref\":\"#/$defs/inlinecontent\"},\"props\":{\"type\":\"object\",\"properties\":{\"checked\":{\"type\":\"boolean\"}},\"additionalProperties\":false}},\"additionalProperties\":false,\"required\":[\"type\"]},{\"type\":\"object\",\"properties\":{\"type\":{\"type\":\"string\",\"enum\":[\"table\"]},\"content\":{\"type\":\"object\",\"properties\":{}},\"props\":{\"type\":\"object\",\"properties\":{},\"additionalProperties\":false}},\"additionalProperties\":false,\"required\":[\"type\"]}]}}}}}]}", "headers": [], "cookies": [] }, "response": { "status": 200, "statusText": "", - "body": "{\n \"id\": \"chatcmpl-BgV5V6KiL3qJWgFC7kMlTHypqV8Xc\",\n \"object\": \"chat.completion\",\n \"created\": 1749468977,\n \"model\": \"gpt-4o-2024-08-06\",\n \"choices\": [\n {\n \"index\": 0,\n \"message\": {\n \"role\": \"assistant\",\n \"content\": null,\n \"tool_calls\": [\n {\n \"id\": \"call_ki5oeY8SckUxijRguZazYKUk\",\n \"type\": \"function\",\n \"function\": {\n \"name\": \"json\",\n \"arguments\": \"{\\\"operations\\\":[{\\\"type\\\":\\\"update\\\",\\\"id\\\":\\\"ref2$\\\",\\\"block\\\":{\\\"type\\\":\\\"paragraph\\\",\\\"content\\\":[{\\\"type\\\":\\\"text\\\",\\\"text\\\":\\\"Hello, updated content\\\",\\\"styles\\\":{}}]}}]}\"\n }\n }\n ],\n \"refusal\": null,\n \"annotations\": []\n },\n \"logprobs\": null,\n \"finish_reason\": \"stop\"\n }\n ],\n \"usage\": {\n \"prompt_tokens\": 1168,\n \"completion_tokens\": 41,\n \"total_tokens\": 1209,\n \"prompt_tokens_details\": {\n \"cached_tokens\": 0,\n \"audio_tokens\": 0\n },\n \"completion_tokens_details\": {\n \"reasoning_tokens\": 0,\n \"audio_tokens\": 0,\n \"accepted_prediction_tokens\": 0,\n \"rejected_prediction_tokens\": 0\n }\n },\n \"service_tier\": \"default\",\n \"system_fingerprint\": \"fp_07871e2ad8\"\n}\n", + "body": "{\n \"id\": \"chatcmpl-BhXnm2crJeHHL8T8uQ77K9DSQhdRo\",\n \"object\": \"chat.completion\",\n \"created\": 1749717738,\n \"model\": \"gpt-4o-2024-08-06\",\n \"choices\": [\n {\n \"index\": 0,\n \"message\": {\n \"role\": \"assistant\",\n \"content\": null,\n \"tool_calls\": [\n {\n \"id\": \"call_nPlvdyIIChQfmGL9Nt8hz6vr\",\n \"type\": \"function\",\n \"function\": {\n \"name\": \"json\",\n \"arguments\": \"{\\\"operations\\\":[{\\\"type\\\":\\\"update\\\",\\\"id\\\":\\\"ref2$\\\",\\\"block\\\":{\\\"type\\\":\\\"paragraph\\\",\\\"content\\\":[{\\\"type\\\":\\\"text\\\",\\\"text\\\":\\\"Hello, updated content\\\",\\\"styles\\\":{}}]}}]}\"\n }\n }\n ],\n \"refusal\": null,\n \"annotations\": []\n },\n \"logprobs\": null,\n \"finish_reason\": \"stop\"\n }\n ],\n \"usage\": {\n \"prompt_tokens\": 1196,\n \"completion_tokens\": 41,\n \"total_tokens\": 1237,\n \"prompt_tokens_details\": {\n \"cached_tokens\": 1152,\n \"audio_tokens\": 0\n },\n \"completion_tokens_details\": {\n \"reasoning_tokens\": 0,\n \"audio_tokens\": 0,\n \"accepted_prediction_tokens\": 0,\n \"rejected_prediction_tokens\": 0\n }\n },\n \"service_tier\": \"default\",\n \"system_fingerprint\": \"fp_a288987b44\"\n}\n", "headers": [] } } \ No newline at end of file diff --git a/packages/xl-ai/src/api/formats/json/__snapshots__/json.test.ts/Update/__msw_snapshots__/openai.chat/gpt-4o-2024-08-06 (non-streaming)/styles + ic in source block, update mention prop_1_31953da370a6a555a754b2de179700e3.json b/packages/xl-ai/src/api/formats/json/__snapshots__/json.test.ts/Update/__msw_snapshots__/openai.chat/gpt-4o-2024-08-06 (non-streaming)/styles + ic in source block, update mention prop_1_f6389b6d035ba33efd700c280c71e8b0.json similarity index 68% rename from packages/xl-ai/src/api/formats/json/__snapshots__/json.test.ts/Update/__msw_snapshots__/openai.chat/gpt-4o-2024-08-06 (non-streaming)/styles + ic in source block, update mention prop_1_31953da370a6a555a754b2de179700e3.json rename to packages/xl-ai/src/api/formats/json/__snapshots__/json.test.ts/Update/__msw_snapshots__/openai.chat/gpt-4o-2024-08-06 (non-streaming)/styles + ic in source block, update mention prop_1_f6389b6d035ba33efd700c280c71e8b0.json index 68f4e3e1e7..a9cac6673c 100644 --- a/packages/xl-ai/src/api/formats/json/__snapshots__/json.test.ts/Update/__msw_snapshots__/openai.chat/gpt-4o-2024-08-06 (non-streaming)/styles + ic in source block, update mention prop_1_31953da370a6a555a754b2de179700e3.json +++ b/packages/xl-ai/src/api/formats/json/__snapshots__/json.test.ts/Update/__msw_snapshots__/openai.chat/gpt-4o-2024-08-06 (non-streaming)/styles + ic in source block, update mention prop_1_f6389b6d035ba33efd700c280c71e8b0.json @@ -2,14 +2,14 @@ "request": { "method": "POST", "url": "https://localhost:3000/ai?provider=openai&url=https%3A%2F%2Fapi.openai.com%2Fv1%2Fchat%2Fcompletions", - "body": "{\"model\":\"gpt-4o-2024-08-06\",\"temperature\":0,\"messages\":[{\"role\":\"system\",\"content\":\"You're manipulating a text document using JSON blocks. \\n Make sure to follow the json schema provided. When referencing ids they MUST be EXACTLY the same (including the trailing $). \\n This is the document as an array of JSON blocks (the cursor is BETWEEN two blocks as indicated by cursor: true):\"},{\"role\":\"system\",\"content\":\"[{\\\"id\\\":\\\"ref1$\\\",\\\"block\\\":{\\\"id\\\":\\\"ref1\\\",\\\"type\\\":\\\"paragraph\\\",\\\"props\\\":{\\\"textColor\\\":\\\"default\\\",\\\"backgroundColor\\\":\\\"default\\\",\\\"textAlignment\\\":\\\"left\\\"},\\\"content\\\":[{\\\"type\\\":\\\"text\\\",\\\"text\\\":\\\"Hello, world!\\\",\\\"styles\\\":{}}]}},{\\\"cursor\\\":true},{\\\"id\\\":\\\"ref2$\\\",\\\"block\\\":{\\\"id\\\":\\\"ref2\\\",\\\"type\\\":\\\"paragraph\\\",\\\"props\\\":{\\\"textColor\\\":\\\"default\\\",\\\"backgroundColor\\\":\\\"default\\\",\\\"textAlignment\\\":\\\"left\\\"},\\\"content\\\":[{\\\"type\\\":\\\"text\\\",\\\"text\\\":\\\"Hello, \\\",\\\"styles\\\":{}},{\\\"type\\\":\\\"mention\\\",\\\"props\\\":{\\\"user\\\":\\\"John Doe\\\"}},{\\\"type\\\":\\\"text\\\",\\\"text\\\":\\\"! \\\",\\\"styles\\\":{}},{\\\"type\\\":\\\"text\\\",\\\"text\\\":\\\"How are you doing?\\\",\\\"styles\\\":{\\\"bold\\\":true}},{\\\"type\\\":\\\"text\\\",\\\"text\\\":\\\" \\\",\\\"styles\\\":{}},{\\\"type\\\":\\\"text\\\",\\\"text\\\":\\\"This text is blue!\\\",\\\"styles\\\":{\\\"textColor\\\":\\\"blue\\\"}}]}},{\\\"id\\\":\\\"ref3$\\\",\\\"block\\\":{\\\"id\\\":\\\"ref3\\\",\\\"type\\\":\\\"paragraph\\\",\\\"props\\\":{\\\"textColor\\\":\\\"default\\\",\\\"backgroundColor\\\":\\\"default\\\",\\\"textAlignment\\\":\\\"left\\\"},\\\"content\\\":[{\\\"type\\\":\\\"text\\\",\\\"text\\\":\\\"Hello, world! \\\",\\\"styles\\\":{}},{\\\"type\\\":\\\"text\\\",\\\"text\\\":\\\"Bold text. \\\",\\\"styles\\\":{\\\"bold\\\":true}},{\\\"type\\\":\\\"link\\\",\\\"href\\\":\\\"https://www.google.com\\\",\\\"content\\\":[{\\\"type\\\":\\\"text\\\",\\\"text\\\":\\\"Link.\\\",\\\"styles\\\":{}}]}]}}]\"},{\"role\":\"system\",\"content\":\"The user asks you to do the following:\"},{\"role\":\"user\",\"content\":\"update the mention to Jane Doe\"},{\"role\":\"system\",\"content\":\"First, determine what part of the document the user is talking about. You SHOULD probably take cursor info into account if needed.\\n EXAMPLE: if user says \\\"below\\\" (without pointing to a specific part of the document) he / she probably indicates the block(s) after the cursor. \\n EXAMPLE: If you want to insert content AT the cursor position (UNLESS indicated otherwise by the user), then you need `referenceId` to point to the block before the cursor with position `after` (or block below and `before`).\\n \\n Prefer updating existing blocks over removing and adding (but this also depends on the user's question).\"}],\"tool_choice\":{\"type\":\"function\",\"function\":{\"name\":\"json\"}},\"tools\":[{\"type\":\"function\",\"function\":{\"name\":\"json\",\"description\":\"Respond with a JSON object.\",\"parameters\":{\"type\":\"object\",\"properties\":{\"operations\":{\"type\":\"array\",\"items\":{\"anyOf\":[{\"type\":\"object\",\"description\":\"Update a block, the new block will replace the existing block.\",\"properties\":{\"type\":{\"type\":\"string\",\"enum\":[\"update\"]},\"id\":{\"type\":\"string\",\"description\":\"id of block to update\"},\"block\":{\"$ref\":\"#/$defs/block\"}},\"required\":[\"type\",\"id\",\"block\"],\"additionalProperties\":false},{\"type\":\"object\",\"description\":\"Insert new blocks\",\"properties\":{\"type\":{\"type\":\"string\",\"enum\":[\"add\"]},\"referenceId\":{\"type\":\"string\",\"description\":\"MUST be an id of a block in the document\"},\"position\":{\"type\":\"string\",\"enum\":[\"before\",\"after\"],\"description\":\"`after` to add blocks AFTER (below) the block with `referenceId`, `before` to add the block BEFORE (above)\"},\"blocks\":{\"items\":{\"$ref\":\"#/$defs/block\"},\"type\":\"array\"}},\"required\":[\"type\",\"referenceId\",\"position\",\"blocks\"],\"additionalProperties\":false},{\"type\":\"object\",\"description\":\"Delete a block\",\"properties\":{\"type\":{\"type\":\"string\",\"enum\":[\"delete\"]},\"id\":{\"type\":\"string\",\"description\":\"id of block to delete\"}},\"required\":[\"type\",\"id\"],\"additionalProperties\":false}]}}},\"additionalProperties\":false,\"required\":[\"operations\"],\"$defs\":{\"styles\":{\"type\":\"object\",\"properties\":{\"bold\":{\"type\":\"boolean\"},\"italic\":{\"type\":\"boolean\"},\"underline\":{\"type\":\"boolean\"},\"strike\":{\"type\":\"boolean\"},\"code\":{\"type\":\"boolean\"},\"textColor\":{\"type\":\"string\"},\"backgroundColor\":{\"type\":\"string\"}},\"additionalProperties\":false},\"styledtext\":{\"type\":\"object\",\"properties\":{\"type\":{\"type\":\"string\",\"enum\":[\"text\"]},\"text\":{\"type\":\"string\"},\"styles\":{\"$ref\":\"#/$defs/styles\"}},\"additionalProperties\":false,\"required\":[\"type\",\"text\"]},\"inlinecontent\":{\"type\":\"array\",\"items\":{\"anyOf\":[{\"type\":\"object\",\"properties\":{\"type\":{\"type\":\"string\",\"enum\":[\"mention\"]},\"props\":{\"type\":\"object\",\"properties\":{\"user\":{\"type\":\"string\"}},\"additionalProperties\":false}},\"additionalProperties\":false,\"required\":[\"type\"]},{\"$ref\":\"#/$defs/styledtext\"},{\"type\":\"object\",\"properties\":{\"type\":{\"type\":\"string\",\"enum\":[\"link\"]},\"content\":{\"type\":\"array\",\"items\":{\"$ref\":\"#/$defs/styledtext\"}},\"href\":{\"type\":\"string\"}},\"additionalProperties\":false,\"required\":[\"type\",\"href\",\"content\"]}]}},\"block\":{\"anyOf\":[{\"type\":\"object\",\"properties\":{\"type\":{\"type\":\"string\",\"enum\":[\"paragraph\",\"quote\",\"bulletListItem\",\"numberedListItem\"]},\"content\":{\"$ref\":\"#/$defs/inlinecontent\"},\"props\":{\"type\":\"object\",\"properties\":{},\"additionalProperties\":false}},\"additionalProperties\":false,\"required\":[\"type\"]},{\"type\":\"object\",\"properties\":{\"type\":{\"type\":\"string\",\"enum\":[\"heading\"]},\"content\":{\"$ref\":\"#/$defs/inlinecontent\"},\"props\":{\"type\":\"object\",\"properties\":{\"level\":{\"type\":\"number\",\"enum\":[1,2,3]}},\"additionalProperties\":false}},\"additionalProperties\":false,\"required\":[\"type\"]},{\"type\":\"object\",\"properties\":{\"type\":{\"type\":\"string\",\"enum\":[\"codeBlock\"]},\"content\":{\"$ref\":\"#/$defs/inlinecontent\"},\"props\":{\"type\":\"object\",\"properties\":{\"language\":{\"type\":\"string\"}},\"additionalProperties\":false}},\"additionalProperties\":false,\"required\":[\"type\"]},{\"type\":\"object\",\"properties\":{\"type\":{\"type\":\"string\",\"enum\":[\"checkListItem\"]},\"content\":{\"$ref\":\"#/$defs/inlinecontent\"},\"props\":{\"type\":\"object\",\"properties\":{\"checked\":{\"type\":\"boolean\"}},\"additionalProperties\":false}},\"additionalProperties\":false,\"required\":[\"type\"]},{\"type\":\"object\",\"properties\":{\"type\":{\"type\":\"string\",\"enum\":[\"table\"]},\"content\":{\"type\":\"object\",\"properties\":{}},\"props\":{\"type\":\"object\",\"properties\":{},\"additionalProperties\":false}},\"additionalProperties\":false,\"required\":[\"type\"]}]}}}}}]}", + "body": "{\"model\":\"gpt-4o-2024-08-06\",\"temperature\":0,\"messages\":[{\"role\":\"system\",\"content\":\"You're manipulating a text document using JSON blocks. \\n Make sure to follow the json schema provided. When referencing ids they MUST be EXACTLY the same (including the trailing $). \\n This is the document as an array of JSON blocks (the cursor is BETWEEN two blocks as indicated by cursor: true):\"},{\"role\":\"system\",\"content\":\"[{\\\"id\\\":\\\"ref1$\\\",\\\"block\\\":{\\\"id\\\":\\\"ref1\\\",\\\"type\\\":\\\"paragraph\\\",\\\"props\\\":{\\\"textColor\\\":\\\"default\\\",\\\"backgroundColor\\\":\\\"default\\\",\\\"textAlignment\\\":\\\"left\\\"},\\\"content\\\":[{\\\"type\\\":\\\"text\\\",\\\"text\\\":\\\"Hello, world!\\\",\\\"styles\\\":{}}]}},{\\\"cursor\\\":true},{\\\"id\\\":\\\"ref2$\\\",\\\"block\\\":{\\\"id\\\":\\\"ref2\\\",\\\"type\\\":\\\"paragraph\\\",\\\"props\\\":{\\\"textColor\\\":\\\"default\\\",\\\"backgroundColor\\\":\\\"default\\\",\\\"textAlignment\\\":\\\"left\\\"},\\\"content\\\":[{\\\"type\\\":\\\"text\\\",\\\"text\\\":\\\"Hello, \\\",\\\"styles\\\":{}},{\\\"type\\\":\\\"mention\\\",\\\"props\\\":{\\\"user\\\":\\\"John Doe\\\"}},{\\\"type\\\":\\\"text\\\",\\\"text\\\":\\\"! \\\",\\\"styles\\\":{}},{\\\"type\\\":\\\"text\\\",\\\"text\\\":\\\"How are you doing?\\\",\\\"styles\\\":{\\\"bold\\\":true}},{\\\"type\\\":\\\"text\\\",\\\"text\\\":\\\" \\\",\\\"styles\\\":{}},{\\\"type\\\":\\\"text\\\",\\\"text\\\":\\\"This text is blue!\\\",\\\"styles\\\":{\\\"textColor\\\":\\\"blue\\\"}}]}},{\\\"id\\\":\\\"ref3$\\\",\\\"block\\\":{\\\"id\\\":\\\"ref3\\\",\\\"type\\\":\\\"paragraph\\\",\\\"props\\\":{\\\"textColor\\\":\\\"default\\\",\\\"backgroundColor\\\":\\\"default\\\",\\\"textAlignment\\\":\\\"left\\\"},\\\"content\\\":[{\\\"type\\\":\\\"text\\\",\\\"text\\\":\\\"Hello, world! \\\",\\\"styles\\\":{}},{\\\"type\\\":\\\"text\\\",\\\"text\\\":\\\"Bold text. \\\",\\\"styles\\\":{\\\"bold\\\":true}},{\\\"type\\\":\\\"link\\\",\\\"href\\\":\\\"https://www.google.com\\\",\\\"content\\\":[{\\\"type\\\":\\\"text\\\",\\\"text\\\":\\\"Link.\\\",\\\"styles\\\":{}}]}]}}]\"},{\"role\":\"system\",\"content\":\"The user asks you to do the following:\"},{\"role\":\"user\",\"content\":\"update the mention to Jane Doe\"},{\"role\":\"system\",\"content\":\"First, determine what part of the document the user is talking about. You SHOULD probably take cursor info into account if needed.\\n EXAMPLE: if user says \\\"below\\\" (without pointing to a specific part of the document) he / she probably indicates the block(s) after the cursor. \\n EXAMPLE: If you want to insert content AT the cursor position (UNLESS indicated otherwise by the user), then you need `referenceId` to point to the block before the cursor with position `after` (or block below and `before`).\\n \\n Prefer updating existing blocks over removing and adding (but this also depends on the user's question).\"}],\"tool_choice\":{\"type\":\"function\",\"function\":{\"name\":\"json\"}},\"tools\":[{\"type\":\"function\",\"function\":{\"name\":\"json\",\"description\":\"Respond with a JSON object.\",\"parameters\":{\"type\":\"object\",\"properties\":{\"operations\":{\"type\":\"array\",\"items\":{\"anyOf\":[{\"type\":\"object\",\"description\":\"Update a block, the new block will replace the existing block.\",\"properties\":{\"type\":{\"type\":\"string\",\"enum\":[\"update\"]},\"id\":{\"type\":\"string\",\"description\":\"id of block to update\"},\"block\":{\"$ref\":\"#/$defs/block\"}},\"required\":[\"type\",\"id\",\"block\"],\"additionalProperties\":false},{\"type\":\"object\",\"description\":\"Insert new blocks\",\"properties\":{\"type\":{\"type\":\"string\",\"enum\":[\"add\"]},\"referenceId\":{\"type\":\"string\",\"description\":\"MUST be an id of a block in the document\"},\"position\":{\"type\":\"string\",\"enum\":[\"before\",\"after\"],\"description\":\"`after` to add blocks AFTER (below) the block with `referenceId`, `before` to add the block BEFORE (above)\"},\"blocks\":{\"items\":{\"$ref\":\"#/$defs/block\"},\"type\":\"array\"}},\"required\":[\"type\",\"referenceId\",\"position\",\"blocks\"],\"additionalProperties\":false},{\"type\":\"object\",\"description\":\"Delete a block\",\"properties\":{\"type\":{\"type\":\"string\",\"enum\":[\"delete\"]},\"id\":{\"type\":\"string\",\"description\":\"id of block to delete\"}},\"required\":[\"type\",\"id\"],\"additionalProperties\":false}]}}},\"additionalProperties\":false,\"required\":[\"operations\"],\"$defs\":{\"styles\":{\"type\":\"object\",\"properties\":{\"bold\":{\"type\":\"boolean\"},\"italic\":{\"type\":\"boolean\"},\"underline\":{\"type\":\"boolean\"},\"strike\":{\"type\":\"boolean\"},\"code\":{\"type\":\"boolean\"},\"textColor\":{\"type\":\"string\"},\"backgroundColor\":{\"type\":\"string\"}},\"additionalProperties\":false},\"styledtext\":{\"type\":\"object\",\"properties\":{\"type\":{\"type\":\"string\",\"enum\":[\"text\"]},\"text\":{\"type\":\"string\"},\"styles\":{\"$ref\":\"#/$defs/styles\"}},\"additionalProperties\":false,\"required\":[\"type\",\"text\"]},\"inlinecontent\":{\"type\":\"array\",\"items\":{\"anyOf\":[{\"type\":\"object\",\"properties\":{\"type\":{\"type\":\"string\",\"enum\":[\"mention\"]},\"props\":{\"type\":\"object\",\"properties\":{\"user\":{\"type\":\"string\"}},\"additionalProperties\":false}},\"additionalProperties\":false,\"required\":[\"type\"]},{\"$ref\":\"#/$defs/styledtext\"},{\"type\":\"object\",\"properties\":{\"type\":{\"type\":\"string\",\"enum\":[\"link\"]},\"content\":{\"type\":\"array\",\"items\":{\"$ref\":\"#/$defs/styledtext\"}},\"href\":{\"type\":\"string\"}},\"additionalProperties\":false,\"required\":[\"type\",\"href\",\"content\"]}]}},\"block\":{\"anyOf\":[{\"type\":\"object\",\"properties\":{\"type\":{\"type\":\"string\",\"enum\":[\"paragraph\",\"quote\",\"toggleListItem\",\"bulletListItem\",\"numberedListItem\"]},\"content\":{\"$ref\":\"#/$defs/inlinecontent\"},\"props\":{\"type\":\"object\",\"properties\":{},\"additionalProperties\":false}},\"additionalProperties\":false,\"required\":[\"type\"]},{\"type\":\"object\",\"properties\":{\"type\":{\"type\":\"string\",\"enum\":[\"heading\"]},\"content\":{\"$ref\":\"#/$defs/inlinecontent\"},\"props\":{\"type\":\"object\",\"properties\":{\"level\":{\"type\":\"number\",\"enum\":[1,2,3]},\"isTogglable\":{\"type\":\"boolean\"}},\"additionalProperties\":false}},\"additionalProperties\":false,\"required\":[\"type\"]},{\"type\":\"object\",\"properties\":{\"type\":{\"type\":\"string\",\"enum\":[\"codeBlock\"]},\"content\":{\"$ref\":\"#/$defs/inlinecontent\"},\"props\":{\"type\":\"object\",\"properties\":{\"language\":{\"type\":\"string\"}},\"additionalProperties\":false}},\"additionalProperties\":false,\"required\":[\"type\"]},{\"type\":\"object\",\"properties\":{\"type\":{\"type\":\"string\",\"enum\":[\"checkListItem\"]},\"content\":{\"$ref\":\"#/$defs/inlinecontent\"},\"props\":{\"type\":\"object\",\"properties\":{\"checked\":{\"type\":\"boolean\"}},\"additionalProperties\":false}},\"additionalProperties\":false,\"required\":[\"type\"]},{\"type\":\"object\",\"properties\":{\"type\":{\"type\":\"string\",\"enum\":[\"table\"]},\"content\":{\"type\":\"object\",\"properties\":{}},\"props\":{\"type\":\"object\",\"properties\":{},\"additionalProperties\":false}},\"additionalProperties\":false,\"required\":[\"type\"]}]}}}}}]}", "headers": [], "cookies": [] }, "response": { "status": 200, "statusText": "", - "body": "{\n \"id\": \"chatcmpl-BgV5hhOMODeR88gAjwsy3PqvmEmfu\",\n \"object\": \"chat.completion\",\n \"created\": 1749468989,\n \"model\": \"gpt-4o-2024-08-06\",\n \"choices\": [\n {\n \"index\": 0,\n \"message\": {\n \"role\": \"assistant\",\n \"content\": null,\n \"tool_calls\": [\n {\n \"id\": \"call_eeLOR78dZOiuYseOAVhl7s5Q\",\n \"type\": \"function\",\n \"function\": {\n \"name\": \"json\",\n \"arguments\": \"{\\\"operations\\\":[{\\\"type\\\":\\\"update\\\",\\\"id\\\":\\\"ref2$\\\",\\\"block\\\":{\\\"type\\\":\\\"paragraph\\\",\\\"props\\\":{\\\"textColor\\\":\\\"default\\\",\\\"backgroundColor\\\":\\\"default\\\",\\\"textAlignment\\\":\\\"left\\\"},\\\"content\\\":[{\\\"type\\\":\\\"text\\\",\\\"text\\\":\\\"Hello, \\\",\\\"styles\\\":{}},{\\\"type\\\":\\\"mention\\\",\\\"props\\\":{\\\"user\\\":\\\"Jane Doe\\\"}},{\\\"type\\\":\\\"text\\\",\\\"text\\\":\\\"! \\\",\\\"styles\\\":{}},{\\\"type\\\":\\\"text\\\",\\\"text\\\":\\\"How are you doing?\\\",\\\"styles\\\":{\\\"bold\\\":true}},{\\\"type\\\":\\\"text\\\",\\\"text\\\":\\\" \\\",\\\"styles\\\":{}},{\\\"type\\\":\\\"text\\\",\\\"text\\\":\\\"This text is blue!\\\",\\\"styles\\\":{\\\"textColor\\\":\\\"blue\\\"}}]}}]}\"\n }\n }\n ],\n \"refusal\": null,\n \"annotations\": []\n },\n \"logprobs\": null,\n \"finish_reason\": \"stop\"\n }\n ],\n \"usage\": {\n \"prompt_tokens\": 1160,\n \"completion_tokens\": 130,\n \"total_tokens\": 1290,\n \"prompt_tokens_details\": {\n \"cached_tokens\": 1152,\n \"audio_tokens\": 0\n },\n \"completion_tokens_details\": {\n \"reasoning_tokens\": 0,\n \"audio_tokens\": 0,\n \"accepted_prediction_tokens\": 0,\n \"rejected_prediction_tokens\": 0\n }\n },\n \"service_tier\": \"default\",\n \"system_fingerprint\": \"fp_07871e2ad8\"\n}\n", + "body": "{\n \"id\": \"chatcmpl-BhXnxWTNwLaUj6q9SmFXv78OGYJCl\",\n \"object\": \"chat.completion\",\n \"created\": 1749717749,\n \"model\": \"gpt-4o-2024-08-06\",\n \"choices\": [\n {\n \"index\": 0,\n \"message\": {\n \"role\": \"assistant\",\n \"content\": null,\n \"tool_calls\": [\n {\n \"id\": \"call_xsXcmLT2JKnTiQbkgJ09CmFJ\",\n \"type\": \"function\",\n \"function\": {\n \"name\": \"json\",\n \"arguments\": \"{\\\"operations\\\":[{\\\"type\\\":\\\"update\\\",\\\"id\\\":\\\"ref2$\\\",\\\"block\\\":{\\\"type\\\":\\\"paragraph\\\",\\\"content\\\":[{\\\"type\\\":\\\"text\\\",\\\"text\\\":\\\"Hello, \\\",\\\"styles\\\":{}},{\\\"type\\\":\\\"mention\\\",\\\"props\\\":{\\\"user\\\":\\\"Jane Doe\\\"}},{\\\"type\\\":\\\"text\\\",\\\"text\\\":\\\"! \\\",\\\"styles\\\":{}},{\\\"type\\\":\\\"text\\\",\\\"text\\\":\\\"How are you doing?\\\",\\\"styles\\\":{\\\"bold\\\":true}},{\\\"type\\\":\\\"text\\\",\\\"text\\\":\\\" \\\",\\\"styles\\\":{}},{\\\"type\\\":\\\"text\\\",\\\"text\\\":\\\"This text is blue!\\\",\\\"styles\\\":{\\\"textColor\\\":\\\"blue\\\"}}]}}]}\"\n }\n }\n ],\n \"refusal\": null,\n \"annotations\": []\n },\n \"logprobs\": null,\n \"finish_reason\": \"stop\"\n }\n ],\n \"usage\": {\n \"prompt_tokens\": 1188,\n \"completion_tokens\": 112,\n \"total_tokens\": 1300,\n \"prompt_tokens_details\": {\n \"cached_tokens\": 1152,\n \"audio_tokens\": 0\n },\n \"completion_tokens_details\": {\n \"reasoning_tokens\": 0,\n \"audio_tokens\": 0,\n \"accepted_prediction_tokens\": 0,\n \"rejected_prediction_tokens\": 0\n }\n },\n \"service_tier\": \"default\",\n \"system_fingerprint\": \"fp_a288987b44\"\n}\n", "headers": [] } } \ No newline at end of file diff --git a/packages/xl-ai/src/api/formats/json/__snapshots__/json.test.ts/Update/__msw_snapshots__/openai.chat/gpt-4o-2024-08-06 (non-streaming)/styles + ic in source block, update text_1_a9197bf847d922be5a027e3eef814938.json b/packages/xl-ai/src/api/formats/json/__snapshots__/json.test.ts/Update/__msw_snapshots__/openai.chat/gpt-4o-2024-08-06 (non-streaming)/styles + ic in source block, update text_1_ff2a0f907f3058aba57bff972b122139.json similarity index 77% rename from packages/xl-ai/src/api/formats/json/__snapshots__/json.test.ts/Update/__msw_snapshots__/openai.chat/gpt-4o-2024-08-06 (non-streaming)/styles + ic in source block, update text_1_a9197bf847d922be5a027e3eef814938.json rename to packages/xl-ai/src/api/formats/json/__snapshots__/json.test.ts/Update/__msw_snapshots__/openai.chat/gpt-4o-2024-08-06 (non-streaming)/styles + ic in source block, update text_1_ff2a0f907f3058aba57bff972b122139.json index 619bae07df..ea082c04f5 100644 --- a/packages/xl-ai/src/api/formats/json/__snapshots__/json.test.ts/Update/__msw_snapshots__/openai.chat/gpt-4o-2024-08-06 (non-streaming)/styles + ic in source block, update text_1_a9197bf847d922be5a027e3eef814938.json +++ b/packages/xl-ai/src/api/formats/json/__snapshots__/json.test.ts/Update/__msw_snapshots__/openai.chat/gpt-4o-2024-08-06 (non-streaming)/styles + ic in source block, update text_1_ff2a0f907f3058aba57bff972b122139.json @@ -2,14 +2,14 @@ "request": { "method": "POST", "url": "https://localhost:3000/ai?provider=openai&url=https%3A%2F%2Fapi.openai.com%2Fv1%2Fchat%2Fcompletions", - "body": "{\"model\":\"gpt-4o-2024-08-06\",\"temperature\":0,\"messages\":[{\"role\":\"system\",\"content\":\"You're manipulating a text document using JSON blocks. \\n Make sure to follow the json schema provided. When referencing ids they MUST be EXACTLY the same (including the trailing $). \\n This is the document as an array of JSON blocks (the cursor is BETWEEN two blocks as indicated by cursor: true):\"},{\"role\":\"system\",\"content\":\"[{\\\"id\\\":\\\"ref1$\\\",\\\"block\\\":{\\\"id\\\":\\\"ref1\\\",\\\"type\\\":\\\"paragraph\\\",\\\"props\\\":{\\\"textColor\\\":\\\"default\\\",\\\"backgroundColor\\\":\\\"default\\\",\\\"textAlignment\\\":\\\"left\\\"},\\\"content\\\":[{\\\"type\\\":\\\"text\\\",\\\"text\\\":\\\"Hello, world!\\\",\\\"styles\\\":{}}]}},{\\\"cursor\\\":true},{\\\"id\\\":\\\"ref2$\\\",\\\"block\\\":{\\\"id\\\":\\\"ref2\\\",\\\"type\\\":\\\"paragraph\\\",\\\"props\\\":{\\\"textColor\\\":\\\"default\\\",\\\"backgroundColor\\\":\\\"default\\\",\\\"textAlignment\\\":\\\"left\\\"},\\\"content\\\":[{\\\"type\\\":\\\"text\\\",\\\"text\\\":\\\"Hello, \\\",\\\"styles\\\":{}},{\\\"type\\\":\\\"mention\\\",\\\"props\\\":{\\\"user\\\":\\\"John Doe\\\"}},{\\\"type\\\":\\\"text\\\",\\\"text\\\":\\\"! \\\",\\\"styles\\\":{}},{\\\"type\\\":\\\"text\\\",\\\"text\\\":\\\"How are you doing?\\\",\\\"styles\\\":{\\\"bold\\\":true}},{\\\"type\\\":\\\"text\\\",\\\"text\\\":\\\" \\\",\\\"styles\\\":{}},{\\\"type\\\":\\\"text\\\",\\\"text\\\":\\\"This text is blue!\\\",\\\"styles\\\":{\\\"textColor\\\":\\\"blue\\\"}}]}},{\\\"id\\\":\\\"ref3$\\\",\\\"block\\\":{\\\"id\\\":\\\"ref3\\\",\\\"type\\\":\\\"paragraph\\\",\\\"props\\\":{\\\"textColor\\\":\\\"default\\\",\\\"backgroundColor\\\":\\\"default\\\",\\\"textAlignment\\\":\\\"left\\\"},\\\"content\\\":[{\\\"type\\\":\\\"text\\\",\\\"text\\\":\\\"Hello, world! \\\",\\\"styles\\\":{}},{\\\"type\\\":\\\"text\\\",\\\"text\\\":\\\"Bold text. \\\",\\\"styles\\\":{\\\"bold\\\":true}},{\\\"type\\\":\\\"link\\\",\\\"href\\\":\\\"https://www.google.com\\\",\\\"content\\\":[{\\\"type\\\":\\\"text\\\",\\\"text\\\":\\\"Link.\\\",\\\"styles\\\":{}}]}]}}]\"},{\"role\":\"system\",\"content\":\"The user asks you to do the following:\"},{\"role\":\"user\",\"content\":\"translate the second block to german (use dir instead of Ihnen)\"},{\"role\":\"system\",\"content\":\"First, determine what part of the document the user is talking about. You SHOULD probably take cursor info into account if needed.\\n EXAMPLE: if user says \\\"below\\\" (without pointing to a specific part of the document) he / she probably indicates the block(s) after the cursor. \\n EXAMPLE: If you want to insert content AT the cursor position (UNLESS indicated otherwise by the user), then you need `referenceId` to point to the block before the cursor with position `after` (or block below and `before`).\\n \\n Prefer updating existing blocks over removing and adding (but this also depends on the user's question).\"}],\"tool_choice\":{\"type\":\"function\",\"function\":{\"name\":\"json\"}},\"tools\":[{\"type\":\"function\",\"function\":{\"name\":\"json\",\"description\":\"Respond with a JSON object.\",\"parameters\":{\"type\":\"object\",\"properties\":{\"operations\":{\"type\":\"array\",\"items\":{\"anyOf\":[{\"type\":\"object\",\"description\":\"Update a block, the new block will replace the existing block.\",\"properties\":{\"type\":{\"type\":\"string\",\"enum\":[\"update\"]},\"id\":{\"type\":\"string\",\"description\":\"id of block to update\"},\"block\":{\"$ref\":\"#/$defs/block\"}},\"required\":[\"type\",\"id\",\"block\"],\"additionalProperties\":false},{\"type\":\"object\",\"description\":\"Insert new blocks\",\"properties\":{\"type\":{\"type\":\"string\",\"enum\":[\"add\"]},\"referenceId\":{\"type\":\"string\",\"description\":\"MUST be an id of a block in the document\"},\"position\":{\"type\":\"string\",\"enum\":[\"before\",\"after\"],\"description\":\"`after` to add blocks AFTER (below) the block with `referenceId`, `before` to add the block BEFORE (above)\"},\"blocks\":{\"items\":{\"$ref\":\"#/$defs/block\"},\"type\":\"array\"}},\"required\":[\"type\",\"referenceId\",\"position\",\"blocks\"],\"additionalProperties\":false},{\"type\":\"object\",\"description\":\"Delete a block\",\"properties\":{\"type\":{\"type\":\"string\",\"enum\":[\"delete\"]},\"id\":{\"type\":\"string\",\"description\":\"id of block to delete\"}},\"required\":[\"type\",\"id\"],\"additionalProperties\":false}]}}},\"additionalProperties\":false,\"required\":[\"operations\"],\"$defs\":{\"styles\":{\"type\":\"object\",\"properties\":{\"bold\":{\"type\":\"boolean\"},\"italic\":{\"type\":\"boolean\"},\"underline\":{\"type\":\"boolean\"},\"strike\":{\"type\":\"boolean\"},\"code\":{\"type\":\"boolean\"},\"textColor\":{\"type\":\"string\"},\"backgroundColor\":{\"type\":\"string\"}},\"additionalProperties\":false},\"styledtext\":{\"type\":\"object\",\"properties\":{\"type\":{\"type\":\"string\",\"enum\":[\"text\"]},\"text\":{\"type\":\"string\"},\"styles\":{\"$ref\":\"#/$defs/styles\"}},\"additionalProperties\":false,\"required\":[\"type\",\"text\"]},\"inlinecontent\":{\"type\":\"array\",\"items\":{\"anyOf\":[{\"type\":\"object\",\"properties\":{\"type\":{\"type\":\"string\",\"enum\":[\"mention\"]},\"props\":{\"type\":\"object\",\"properties\":{\"user\":{\"type\":\"string\"}},\"additionalProperties\":false}},\"additionalProperties\":false,\"required\":[\"type\"]},{\"$ref\":\"#/$defs/styledtext\"},{\"type\":\"object\",\"properties\":{\"type\":{\"type\":\"string\",\"enum\":[\"link\"]},\"content\":{\"type\":\"array\",\"items\":{\"$ref\":\"#/$defs/styledtext\"}},\"href\":{\"type\":\"string\"}},\"additionalProperties\":false,\"required\":[\"type\",\"href\",\"content\"]}]}},\"block\":{\"anyOf\":[{\"type\":\"object\",\"properties\":{\"type\":{\"type\":\"string\",\"enum\":[\"paragraph\",\"quote\",\"bulletListItem\",\"numberedListItem\"]},\"content\":{\"$ref\":\"#/$defs/inlinecontent\"},\"props\":{\"type\":\"object\",\"properties\":{},\"additionalProperties\":false}},\"additionalProperties\":false,\"required\":[\"type\"]},{\"type\":\"object\",\"properties\":{\"type\":{\"type\":\"string\",\"enum\":[\"heading\"]},\"content\":{\"$ref\":\"#/$defs/inlinecontent\"},\"props\":{\"type\":\"object\",\"properties\":{\"level\":{\"type\":\"number\",\"enum\":[1,2,3]}},\"additionalProperties\":false}},\"additionalProperties\":false,\"required\":[\"type\"]},{\"type\":\"object\",\"properties\":{\"type\":{\"type\":\"string\",\"enum\":[\"codeBlock\"]},\"content\":{\"$ref\":\"#/$defs/inlinecontent\"},\"props\":{\"type\":\"object\",\"properties\":{\"language\":{\"type\":\"string\"}},\"additionalProperties\":false}},\"additionalProperties\":false,\"required\":[\"type\"]},{\"type\":\"object\",\"properties\":{\"type\":{\"type\":\"string\",\"enum\":[\"checkListItem\"]},\"content\":{\"$ref\":\"#/$defs/inlinecontent\"},\"props\":{\"type\":\"object\",\"properties\":{\"checked\":{\"type\":\"boolean\"}},\"additionalProperties\":false}},\"additionalProperties\":false,\"required\":[\"type\"]},{\"type\":\"object\",\"properties\":{\"type\":{\"type\":\"string\",\"enum\":[\"table\"]},\"content\":{\"type\":\"object\",\"properties\":{}},\"props\":{\"type\":\"object\",\"properties\":{},\"additionalProperties\":false}},\"additionalProperties\":false,\"required\":[\"type\"]}]}}}}}]}", + "body": "{\"model\":\"gpt-4o-2024-08-06\",\"temperature\":0,\"messages\":[{\"role\":\"system\",\"content\":\"You're manipulating a text document using JSON blocks. \\n Make sure to follow the json schema provided. When referencing ids they MUST be EXACTLY the same (including the trailing $). \\n This is the document as an array of JSON blocks (the cursor is BETWEEN two blocks as indicated by cursor: true):\"},{\"role\":\"system\",\"content\":\"[{\\\"id\\\":\\\"ref1$\\\",\\\"block\\\":{\\\"id\\\":\\\"ref1\\\",\\\"type\\\":\\\"paragraph\\\",\\\"props\\\":{\\\"textColor\\\":\\\"default\\\",\\\"backgroundColor\\\":\\\"default\\\",\\\"textAlignment\\\":\\\"left\\\"},\\\"content\\\":[{\\\"type\\\":\\\"text\\\",\\\"text\\\":\\\"Hello, world!\\\",\\\"styles\\\":{}}]}},{\\\"cursor\\\":true},{\\\"id\\\":\\\"ref2$\\\",\\\"block\\\":{\\\"id\\\":\\\"ref2\\\",\\\"type\\\":\\\"paragraph\\\",\\\"props\\\":{\\\"textColor\\\":\\\"default\\\",\\\"backgroundColor\\\":\\\"default\\\",\\\"textAlignment\\\":\\\"left\\\"},\\\"content\\\":[{\\\"type\\\":\\\"text\\\",\\\"text\\\":\\\"Hello, \\\",\\\"styles\\\":{}},{\\\"type\\\":\\\"mention\\\",\\\"props\\\":{\\\"user\\\":\\\"John Doe\\\"}},{\\\"type\\\":\\\"text\\\",\\\"text\\\":\\\"! \\\",\\\"styles\\\":{}},{\\\"type\\\":\\\"text\\\",\\\"text\\\":\\\"How are you doing?\\\",\\\"styles\\\":{\\\"bold\\\":true}},{\\\"type\\\":\\\"text\\\",\\\"text\\\":\\\" \\\",\\\"styles\\\":{}},{\\\"type\\\":\\\"text\\\",\\\"text\\\":\\\"This text is blue!\\\",\\\"styles\\\":{\\\"textColor\\\":\\\"blue\\\"}}]}},{\\\"id\\\":\\\"ref3$\\\",\\\"block\\\":{\\\"id\\\":\\\"ref3\\\",\\\"type\\\":\\\"paragraph\\\",\\\"props\\\":{\\\"textColor\\\":\\\"default\\\",\\\"backgroundColor\\\":\\\"default\\\",\\\"textAlignment\\\":\\\"left\\\"},\\\"content\\\":[{\\\"type\\\":\\\"text\\\",\\\"text\\\":\\\"Hello, world! \\\",\\\"styles\\\":{}},{\\\"type\\\":\\\"text\\\",\\\"text\\\":\\\"Bold text. \\\",\\\"styles\\\":{\\\"bold\\\":true}},{\\\"type\\\":\\\"link\\\",\\\"href\\\":\\\"https://www.google.com\\\",\\\"content\\\":[{\\\"type\\\":\\\"text\\\",\\\"text\\\":\\\"Link.\\\",\\\"styles\\\":{}}]}]}}]\"},{\"role\":\"system\",\"content\":\"The user asks you to do the following:\"},{\"role\":\"user\",\"content\":\"translate the second block to german (use dir instead of Ihnen)\"},{\"role\":\"system\",\"content\":\"First, determine what part of the document the user is talking about. You SHOULD probably take cursor info into account if needed.\\n EXAMPLE: if user says \\\"below\\\" (without pointing to a specific part of the document) he / she probably indicates the block(s) after the cursor. \\n EXAMPLE: If you want to insert content AT the cursor position (UNLESS indicated otherwise by the user), then you need `referenceId` to point to the block before the cursor with position `after` (or block below and `before`).\\n \\n Prefer updating existing blocks over removing and adding (but this also depends on the user's question).\"}],\"tool_choice\":{\"type\":\"function\",\"function\":{\"name\":\"json\"}},\"tools\":[{\"type\":\"function\",\"function\":{\"name\":\"json\",\"description\":\"Respond with a JSON object.\",\"parameters\":{\"type\":\"object\",\"properties\":{\"operations\":{\"type\":\"array\",\"items\":{\"anyOf\":[{\"type\":\"object\",\"description\":\"Update a block, the new block will replace the existing block.\",\"properties\":{\"type\":{\"type\":\"string\",\"enum\":[\"update\"]},\"id\":{\"type\":\"string\",\"description\":\"id of block to update\"},\"block\":{\"$ref\":\"#/$defs/block\"}},\"required\":[\"type\",\"id\",\"block\"],\"additionalProperties\":false},{\"type\":\"object\",\"description\":\"Insert new blocks\",\"properties\":{\"type\":{\"type\":\"string\",\"enum\":[\"add\"]},\"referenceId\":{\"type\":\"string\",\"description\":\"MUST be an id of a block in the document\"},\"position\":{\"type\":\"string\",\"enum\":[\"before\",\"after\"],\"description\":\"`after` to add blocks AFTER (below) the block with `referenceId`, `before` to add the block BEFORE (above)\"},\"blocks\":{\"items\":{\"$ref\":\"#/$defs/block\"},\"type\":\"array\"}},\"required\":[\"type\",\"referenceId\",\"position\",\"blocks\"],\"additionalProperties\":false},{\"type\":\"object\",\"description\":\"Delete a block\",\"properties\":{\"type\":{\"type\":\"string\",\"enum\":[\"delete\"]},\"id\":{\"type\":\"string\",\"description\":\"id of block to delete\"}},\"required\":[\"type\",\"id\"],\"additionalProperties\":false}]}}},\"additionalProperties\":false,\"required\":[\"operations\"],\"$defs\":{\"styles\":{\"type\":\"object\",\"properties\":{\"bold\":{\"type\":\"boolean\"},\"italic\":{\"type\":\"boolean\"},\"underline\":{\"type\":\"boolean\"},\"strike\":{\"type\":\"boolean\"},\"code\":{\"type\":\"boolean\"},\"textColor\":{\"type\":\"string\"},\"backgroundColor\":{\"type\":\"string\"}},\"additionalProperties\":false},\"styledtext\":{\"type\":\"object\",\"properties\":{\"type\":{\"type\":\"string\",\"enum\":[\"text\"]},\"text\":{\"type\":\"string\"},\"styles\":{\"$ref\":\"#/$defs/styles\"}},\"additionalProperties\":false,\"required\":[\"type\",\"text\"]},\"inlinecontent\":{\"type\":\"array\",\"items\":{\"anyOf\":[{\"type\":\"object\",\"properties\":{\"type\":{\"type\":\"string\",\"enum\":[\"mention\"]},\"props\":{\"type\":\"object\",\"properties\":{\"user\":{\"type\":\"string\"}},\"additionalProperties\":false}},\"additionalProperties\":false,\"required\":[\"type\"]},{\"$ref\":\"#/$defs/styledtext\"},{\"type\":\"object\",\"properties\":{\"type\":{\"type\":\"string\",\"enum\":[\"link\"]},\"content\":{\"type\":\"array\",\"items\":{\"$ref\":\"#/$defs/styledtext\"}},\"href\":{\"type\":\"string\"}},\"additionalProperties\":false,\"required\":[\"type\",\"href\",\"content\"]}]}},\"block\":{\"anyOf\":[{\"type\":\"object\",\"properties\":{\"type\":{\"type\":\"string\",\"enum\":[\"paragraph\",\"quote\",\"toggleListItem\",\"bulletListItem\",\"numberedListItem\"]},\"content\":{\"$ref\":\"#/$defs/inlinecontent\"},\"props\":{\"type\":\"object\",\"properties\":{},\"additionalProperties\":false}},\"additionalProperties\":false,\"required\":[\"type\"]},{\"type\":\"object\",\"properties\":{\"type\":{\"type\":\"string\",\"enum\":[\"heading\"]},\"content\":{\"$ref\":\"#/$defs/inlinecontent\"},\"props\":{\"type\":\"object\",\"properties\":{\"level\":{\"type\":\"number\",\"enum\":[1,2,3]},\"isTogglable\":{\"type\":\"boolean\"}},\"additionalProperties\":false}},\"additionalProperties\":false,\"required\":[\"type\"]},{\"type\":\"object\",\"properties\":{\"type\":{\"type\":\"string\",\"enum\":[\"codeBlock\"]},\"content\":{\"$ref\":\"#/$defs/inlinecontent\"},\"props\":{\"type\":\"object\",\"properties\":{\"language\":{\"type\":\"string\"}},\"additionalProperties\":false}},\"additionalProperties\":false,\"required\":[\"type\"]},{\"type\":\"object\",\"properties\":{\"type\":{\"type\":\"string\",\"enum\":[\"checkListItem\"]},\"content\":{\"$ref\":\"#/$defs/inlinecontent\"},\"props\":{\"type\":\"object\",\"properties\":{\"checked\":{\"type\":\"boolean\"}},\"additionalProperties\":false}},\"additionalProperties\":false,\"required\":[\"type\"]},{\"type\":\"object\",\"properties\":{\"type\":{\"type\":\"string\",\"enum\":[\"table\"]},\"content\":{\"type\":\"object\",\"properties\":{}},\"props\":{\"type\":\"object\",\"properties\":{},\"additionalProperties\":false}},\"additionalProperties\":false,\"required\":[\"type\"]}]}}}}}]}", "headers": [], "cookies": [] }, "response": { "status": 200, "statusText": "", - "body": "{\n \"id\": \"chatcmpl-BgV5XgwHiusuO9G8XtCW2CMPYGrsT\",\n \"object\": \"chat.completion\",\n \"created\": 1749468979,\n \"model\": \"gpt-4o-2024-08-06\",\n \"choices\": [\n {\n \"index\": 0,\n \"message\": {\n \"role\": \"assistant\",\n \"content\": null,\n \"tool_calls\": [\n {\n \"id\": \"call_hALqKiiTFWlAN98W1Q6aCNPD\",\n \"type\": \"function\",\n \"function\": {\n \"name\": \"json\",\n \"arguments\": \"{\\\"operations\\\":[{\\\"type\\\":\\\"update\\\",\\\"id\\\":\\\"ref2$\\\",\\\"block\\\":{\\\"type\\\":\\\"paragraph\\\",\\\"content\\\":[{\\\"type\\\":\\\"text\\\",\\\"text\\\":\\\"Hallo, \\\",\\\"styles\\\":{}},{\\\"type\\\":\\\"mention\\\",\\\"props\\\":{\\\"user\\\":\\\"John Doe\\\"}},{\\\"type\\\":\\\"text\\\",\\\"text\\\":\\\"! \\\",\\\"styles\\\":{}},{\\\"type\\\":\\\"text\\\",\\\"text\\\":\\\"Wie geht es dir?\\\",\\\"styles\\\":{\\\"bold\\\":true}},{\\\"type\\\":\\\"text\\\",\\\"text\\\":\\\" \\\",\\\"styles\\\":{}},{\\\"type\\\":\\\"text\\\",\\\"text\\\":\\\"Dieser Text ist blau!\\\",\\\"styles\\\":{\\\"textColor\\\":\\\"blue\\\"}}]}}]}\"\n }\n }\n ],\n \"refusal\": null,\n \"annotations\": []\n },\n \"logprobs\": null,\n \"finish_reason\": \"stop\"\n }\n ],\n \"usage\": {\n \"prompt_tokens\": 1167,\n \"completion_tokens\": 112,\n \"total_tokens\": 1279,\n \"prompt_tokens_details\": {\n \"cached_tokens\": 0,\n \"audio_tokens\": 0\n },\n \"completion_tokens_details\": {\n \"reasoning_tokens\": 0,\n \"audio_tokens\": 0,\n \"accepted_prediction_tokens\": 0,\n \"rejected_prediction_tokens\": 0\n }\n },\n \"service_tier\": \"default\",\n \"system_fingerprint\": \"fp_07871e2ad8\"\n}\n", + "body": "{\n \"id\": \"chatcmpl-BhXnnMCWw01TSrTR4tDxGnqoCLB5j\",\n \"object\": \"chat.completion\",\n \"created\": 1749717739,\n \"model\": \"gpt-4o-2024-08-06\",\n \"choices\": [\n {\n \"index\": 0,\n \"message\": {\n \"role\": \"assistant\",\n \"content\": null,\n \"tool_calls\": [\n {\n \"id\": \"call_4jhar53tM0V3fu0yNVpXkOqg\",\n \"type\": \"function\",\n \"function\": {\n \"name\": \"json\",\n \"arguments\": \"{\\\"operations\\\":[{\\\"type\\\":\\\"update\\\",\\\"id\\\":\\\"ref2$\\\",\\\"block\\\":{\\\"type\\\":\\\"paragraph\\\",\\\"content\\\":[{\\\"type\\\":\\\"text\\\",\\\"text\\\":\\\"Hallo, \\\",\\\"styles\\\":{}},{\\\"type\\\":\\\"mention\\\",\\\"props\\\":{\\\"user\\\":\\\"John Doe\\\"}},{\\\"type\\\":\\\"text\\\",\\\"text\\\":\\\"! \\\",\\\"styles\\\":{}},{\\\"type\\\":\\\"text\\\",\\\"text\\\":\\\"Wie geht es dir?\\\",\\\"styles\\\":{\\\"bold\\\":true}},{\\\"type\\\":\\\"text\\\",\\\"text\\\":\\\" \\\",\\\"styles\\\":{}},{\\\"type\\\":\\\"text\\\",\\\"text\\\":\\\"Dieser Text ist blau!\\\",\\\"styles\\\":{\\\"textColor\\\":\\\"blue\\\"}}]}}]}\"\n }\n }\n ],\n \"refusal\": null,\n \"annotations\": []\n },\n \"logprobs\": null,\n \"finish_reason\": \"stop\"\n }\n ],\n \"usage\": {\n \"prompt_tokens\": 1195,\n \"completion_tokens\": 112,\n \"total_tokens\": 1307,\n \"prompt_tokens_details\": {\n \"cached_tokens\": 1152,\n \"audio_tokens\": 0\n },\n \"completion_tokens_details\": {\n \"reasoning_tokens\": 0,\n \"audio_tokens\": 0,\n \"accepted_prediction_tokens\": 0,\n \"rejected_prediction_tokens\": 0\n }\n },\n \"service_tier\": \"default\",\n \"system_fingerprint\": \"fp_a288987b44\"\n}\n", "headers": [] } } \ No newline at end of file diff --git a/packages/xl-ai/src/api/formats/json/__snapshots__/json.test.ts/Update/__msw_snapshots__/openai.chat/gpt-4o-2024-08-06 (non-streaming)/styles + ic in target block, add mark (paragraph)_1_283d64ac64a0475a920cd735f74c7c46.json b/packages/xl-ai/src/api/formats/json/__snapshots__/json.test.ts/Update/__msw_snapshots__/openai.chat/gpt-4o-2024-08-06 (non-streaming)/styles + ic in target block, add mark (paragraph)_1_95394155502fb86c32c6eb86165bc783.json similarity index 75% rename from packages/xl-ai/src/api/formats/json/__snapshots__/json.test.ts/Update/__msw_snapshots__/openai.chat/gpt-4o-2024-08-06 (non-streaming)/styles + ic in target block, add mark (paragraph)_1_283d64ac64a0475a920cd735f74c7c46.json rename to packages/xl-ai/src/api/formats/json/__snapshots__/json.test.ts/Update/__msw_snapshots__/openai.chat/gpt-4o-2024-08-06 (non-streaming)/styles + ic in target block, add mark (paragraph)_1_95394155502fb86c32c6eb86165bc783.json index 4435e1bf88..fefcf339c7 100644 --- a/packages/xl-ai/src/api/formats/json/__snapshots__/json.test.ts/Update/__msw_snapshots__/openai.chat/gpt-4o-2024-08-06 (non-streaming)/styles + ic in target block, add mark (paragraph)_1_283d64ac64a0475a920cd735f74c7c46.json +++ b/packages/xl-ai/src/api/formats/json/__snapshots__/json.test.ts/Update/__msw_snapshots__/openai.chat/gpt-4o-2024-08-06 (non-streaming)/styles + ic in target block, add mark (paragraph)_1_95394155502fb86c32c6eb86165bc783.json @@ -2,14 +2,14 @@ "request": { "method": "POST", "url": "https://localhost:3000/ai?provider=openai&url=https%3A%2F%2Fapi.openai.com%2Fv1%2Fchat%2Fcompletions", - "body": "{\"model\":\"gpt-4o-2024-08-06\",\"temperature\":0,\"messages\":[{\"role\":\"system\",\"content\":\"You're manipulating a text document using JSON blocks. \\n Make sure to follow the json schema provided. When referencing ids they MUST be EXACTLY the same (including the trailing $). \\n This is the document as an array of JSON blocks (the cursor is BETWEEN two blocks as indicated by cursor: true):\"},{\"role\":\"system\",\"content\":\"[{\\\"id\\\":\\\"ref1$\\\",\\\"block\\\":{\\\"id\\\":\\\"ref1\\\",\\\"type\\\":\\\"paragraph\\\",\\\"props\\\":{\\\"textColor\\\":\\\"default\\\",\\\"backgroundColor\\\":\\\"default\\\",\\\"textAlignment\\\":\\\"left\\\"},\\\"content\\\":[{\\\"type\\\":\\\"text\\\",\\\"text\\\":\\\"Hello, world!\\\",\\\"styles\\\":{}}]}},{\\\"cursor\\\":true},{\\\"id\\\":\\\"ref2$\\\",\\\"block\\\":{\\\"id\\\":\\\"ref2\\\",\\\"type\\\":\\\"paragraph\\\",\\\"props\\\":{\\\"textColor\\\":\\\"default\\\",\\\"backgroundColor\\\":\\\"default\\\",\\\"textAlignment\\\":\\\"left\\\"},\\\"content\\\":[{\\\"type\\\":\\\"text\\\",\\\"text\\\":\\\"Hello, \\\",\\\"styles\\\":{}},{\\\"type\\\":\\\"mention\\\",\\\"props\\\":{\\\"user\\\":\\\"John Doe\\\"}},{\\\"type\\\":\\\"text\\\",\\\"text\\\":\\\"! \\\",\\\"styles\\\":{}},{\\\"type\\\":\\\"text\\\",\\\"text\\\":\\\"How are you doing?\\\",\\\"styles\\\":{\\\"bold\\\":true}},{\\\"type\\\":\\\"text\\\",\\\"text\\\":\\\" \\\",\\\"styles\\\":{}},{\\\"type\\\":\\\"text\\\",\\\"text\\\":\\\"This text is blue!\\\",\\\"styles\\\":{\\\"textColor\\\":\\\"blue\\\"}}]}},{\\\"id\\\":\\\"ref3$\\\",\\\"block\\\":{\\\"id\\\":\\\"ref3\\\",\\\"type\\\":\\\"paragraph\\\",\\\"props\\\":{\\\"textColor\\\":\\\"default\\\",\\\"backgroundColor\\\":\\\"default\\\",\\\"textAlignment\\\":\\\"left\\\"},\\\"content\\\":[{\\\"type\\\":\\\"text\\\",\\\"text\\\":\\\"Hello, world! \\\",\\\"styles\\\":{}},{\\\"type\\\":\\\"text\\\",\\\"text\\\":\\\"Bold text. \\\",\\\"styles\\\":{\\\"bold\\\":true}},{\\\"type\\\":\\\"link\\\",\\\"href\\\":\\\"https://www.google.com\\\",\\\"content\\\":[{\\\"type\\\":\\\"text\\\",\\\"text\\\":\\\"Link.\\\",\\\"styles\\\":{}}]}]}}]\"},{\"role\":\"system\",\"content\":\"The user asks you to do the following:\"},{\"role\":\"user\",\"content\":\"make first paragraph bold\"},{\"role\":\"system\",\"content\":\"First, determine what part of the document the user is talking about. You SHOULD probably take cursor info into account if needed.\\n EXAMPLE: if user says \\\"below\\\" (without pointing to a specific part of the document) he / she probably indicates the block(s) after the cursor. \\n EXAMPLE: If you want to insert content AT the cursor position (UNLESS indicated otherwise by the user), then you need `referenceId` to point to the block before the cursor with position `after` (or block below and `before`).\\n \\n Prefer updating existing blocks over removing and adding (but this also depends on the user's question).\"}],\"tool_choice\":{\"type\":\"function\",\"function\":{\"name\":\"json\"}},\"tools\":[{\"type\":\"function\",\"function\":{\"name\":\"json\",\"description\":\"Respond with a JSON object.\",\"parameters\":{\"type\":\"object\",\"properties\":{\"operations\":{\"type\":\"array\",\"items\":{\"anyOf\":[{\"type\":\"object\",\"description\":\"Update a block, the new block will replace the existing block.\",\"properties\":{\"type\":{\"type\":\"string\",\"enum\":[\"update\"]},\"id\":{\"type\":\"string\",\"description\":\"id of block to update\"},\"block\":{\"$ref\":\"#/$defs/block\"}},\"required\":[\"type\",\"id\",\"block\"],\"additionalProperties\":false},{\"type\":\"object\",\"description\":\"Insert new blocks\",\"properties\":{\"type\":{\"type\":\"string\",\"enum\":[\"add\"]},\"referenceId\":{\"type\":\"string\",\"description\":\"MUST be an id of a block in the document\"},\"position\":{\"type\":\"string\",\"enum\":[\"before\",\"after\"],\"description\":\"`after` to add blocks AFTER (below) the block with `referenceId`, `before` to add the block BEFORE (above)\"},\"blocks\":{\"items\":{\"$ref\":\"#/$defs/block\"},\"type\":\"array\"}},\"required\":[\"type\",\"referenceId\",\"position\",\"blocks\"],\"additionalProperties\":false},{\"type\":\"object\",\"description\":\"Delete a block\",\"properties\":{\"type\":{\"type\":\"string\",\"enum\":[\"delete\"]},\"id\":{\"type\":\"string\",\"description\":\"id of block to delete\"}},\"required\":[\"type\",\"id\"],\"additionalProperties\":false}]}}},\"additionalProperties\":false,\"required\":[\"operations\"],\"$defs\":{\"styles\":{\"type\":\"object\",\"properties\":{\"bold\":{\"type\":\"boolean\"},\"italic\":{\"type\":\"boolean\"},\"underline\":{\"type\":\"boolean\"},\"strike\":{\"type\":\"boolean\"},\"code\":{\"type\":\"boolean\"},\"textColor\":{\"type\":\"string\"},\"backgroundColor\":{\"type\":\"string\"}},\"additionalProperties\":false},\"styledtext\":{\"type\":\"object\",\"properties\":{\"type\":{\"type\":\"string\",\"enum\":[\"text\"]},\"text\":{\"type\":\"string\"},\"styles\":{\"$ref\":\"#/$defs/styles\"}},\"additionalProperties\":false,\"required\":[\"type\",\"text\"]},\"inlinecontent\":{\"type\":\"array\",\"items\":{\"anyOf\":[{\"type\":\"object\",\"properties\":{\"type\":{\"type\":\"string\",\"enum\":[\"mention\"]},\"props\":{\"type\":\"object\",\"properties\":{\"user\":{\"type\":\"string\"}},\"additionalProperties\":false}},\"additionalProperties\":false,\"required\":[\"type\"]},{\"$ref\":\"#/$defs/styledtext\"},{\"type\":\"object\",\"properties\":{\"type\":{\"type\":\"string\",\"enum\":[\"link\"]},\"content\":{\"type\":\"array\",\"items\":{\"$ref\":\"#/$defs/styledtext\"}},\"href\":{\"type\":\"string\"}},\"additionalProperties\":false,\"required\":[\"type\",\"href\",\"content\"]}]}},\"block\":{\"anyOf\":[{\"type\":\"object\",\"properties\":{\"type\":{\"type\":\"string\",\"enum\":[\"paragraph\",\"quote\",\"bulletListItem\",\"numberedListItem\"]},\"content\":{\"$ref\":\"#/$defs/inlinecontent\"},\"props\":{\"type\":\"object\",\"properties\":{},\"additionalProperties\":false}},\"additionalProperties\":false,\"required\":[\"type\"]},{\"type\":\"object\",\"properties\":{\"type\":{\"type\":\"string\",\"enum\":[\"heading\"]},\"content\":{\"$ref\":\"#/$defs/inlinecontent\"},\"props\":{\"type\":\"object\",\"properties\":{\"level\":{\"type\":\"number\",\"enum\":[1,2,3]}},\"additionalProperties\":false}},\"additionalProperties\":false,\"required\":[\"type\"]},{\"type\":\"object\",\"properties\":{\"type\":{\"type\":\"string\",\"enum\":[\"codeBlock\"]},\"content\":{\"$ref\":\"#/$defs/inlinecontent\"},\"props\":{\"type\":\"object\",\"properties\":{\"language\":{\"type\":\"string\"}},\"additionalProperties\":false}},\"additionalProperties\":false,\"required\":[\"type\"]},{\"type\":\"object\",\"properties\":{\"type\":{\"type\":\"string\",\"enum\":[\"checkListItem\"]},\"content\":{\"$ref\":\"#/$defs/inlinecontent\"},\"props\":{\"type\":\"object\",\"properties\":{\"checked\":{\"type\":\"boolean\"}},\"additionalProperties\":false}},\"additionalProperties\":false,\"required\":[\"type\"]},{\"type\":\"object\",\"properties\":{\"type\":{\"type\":\"string\",\"enum\":[\"table\"]},\"content\":{\"type\":\"object\",\"properties\":{}},\"props\":{\"type\":\"object\",\"properties\":{},\"additionalProperties\":false}},\"additionalProperties\":false,\"required\":[\"type\"]}]}}}}}]}", + "body": "{\"model\":\"gpt-4o-2024-08-06\",\"temperature\":0,\"messages\":[{\"role\":\"system\",\"content\":\"You're manipulating a text document using JSON blocks. \\n Make sure to follow the json schema provided. When referencing ids they MUST be EXACTLY the same (including the trailing $). \\n This is the document as an array of JSON blocks (the cursor is BETWEEN two blocks as indicated by cursor: true):\"},{\"role\":\"system\",\"content\":\"[{\\\"id\\\":\\\"ref1$\\\",\\\"block\\\":{\\\"id\\\":\\\"ref1\\\",\\\"type\\\":\\\"paragraph\\\",\\\"props\\\":{\\\"textColor\\\":\\\"default\\\",\\\"backgroundColor\\\":\\\"default\\\",\\\"textAlignment\\\":\\\"left\\\"},\\\"content\\\":[{\\\"type\\\":\\\"text\\\",\\\"text\\\":\\\"Hello, world!\\\",\\\"styles\\\":{}}]}},{\\\"cursor\\\":true},{\\\"id\\\":\\\"ref2$\\\",\\\"block\\\":{\\\"id\\\":\\\"ref2\\\",\\\"type\\\":\\\"paragraph\\\",\\\"props\\\":{\\\"textColor\\\":\\\"default\\\",\\\"backgroundColor\\\":\\\"default\\\",\\\"textAlignment\\\":\\\"left\\\"},\\\"content\\\":[{\\\"type\\\":\\\"text\\\",\\\"text\\\":\\\"Hello, \\\",\\\"styles\\\":{}},{\\\"type\\\":\\\"mention\\\",\\\"props\\\":{\\\"user\\\":\\\"John Doe\\\"}},{\\\"type\\\":\\\"text\\\",\\\"text\\\":\\\"! \\\",\\\"styles\\\":{}},{\\\"type\\\":\\\"text\\\",\\\"text\\\":\\\"How are you doing?\\\",\\\"styles\\\":{\\\"bold\\\":true}},{\\\"type\\\":\\\"text\\\",\\\"text\\\":\\\" \\\",\\\"styles\\\":{}},{\\\"type\\\":\\\"text\\\",\\\"text\\\":\\\"This text is blue!\\\",\\\"styles\\\":{\\\"textColor\\\":\\\"blue\\\"}}]}},{\\\"id\\\":\\\"ref3$\\\",\\\"block\\\":{\\\"id\\\":\\\"ref3\\\",\\\"type\\\":\\\"paragraph\\\",\\\"props\\\":{\\\"textColor\\\":\\\"default\\\",\\\"backgroundColor\\\":\\\"default\\\",\\\"textAlignment\\\":\\\"left\\\"},\\\"content\\\":[{\\\"type\\\":\\\"text\\\",\\\"text\\\":\\\"Hello, world! \\\",\\\"styles\\\":{}},{\\\"type\\\":\\\"text\\\",\\\"text\\\":\\\"Bold text. \\\",\\\"styles\\\":{\\\"bold\\\":true}},{\\\"type\\\":\\\"link\\\",\\\"href\\\":\\\"https://www.google.com\\\",\\\"content\\\":[{\\\"type\\\":\\\"text\\\",\\\"text\\\":\\\"Link.\\\",\\\"styles\\\":{}}]}]}}]\"},{\"role\":\"system\",\"content\":\"The user asks you to do the following:\"},{\"role\":\"user\",\"content\":\"make first paragraph bold\"},{\"role\":\"system\",\"content\":\"First, determine what part of the document the user is talking about. You SHOULD probably take cursor info into account if needed.\\n EXAMPLE: if user says \\\"below\\\" (without pointing to a specific part of the document) he / she probably indicates the block(s) after the cursor. \\n EXAMPLE: If you want to insert content AT the cursor position (UNLESS indicated otherwise by the user), then you need `referenceId` to point to the block before the cursor with position `after` (or block below and `before`).\\n \\n Prefer updating existing blocks over removing and adding (but this also depends on the user's question).\"}],\"tool_choice\":{\"type\":\"function\",\"function\":{\"name\":\"json\"}},\"tools\":[{\"type\":\"function\",\"function\":{\"name\":\"json\",\"description\":\"Respond with a JSON object.\",\"parameters\":{\"type\":\"object\",\"properties\":{\"operations\":{\"type\":\"array\",\"items\":{\"anyOf\":[{\"type\":\"object\",\"description\":\"Update a block, the new block will replace the existing block.\",\"properties\":{\"type\":{\"type\":\"string\",\"enum\":[\"update\"]},\"id\":{\"type\":\"string\",\"description\":\"id of block to update\"},\"block\":{\"$ref\":\"#/$defs/block\"}},\"required\":[\"type\",\"id\",\"block\"],\"additionalProperties\":false},{\"type\":\"object\",\"description\":\"Insert new blocks\",\"properties\":{\"type\":{\"type\":\"string\",\"enum\":[\"add\"]},\"referenceId\":{\"type\":\"string\",\"description\":\"MUST be an id of a block in the document\"},\"position\":{\"type\":\"string\",\"enum\":[\"before\",\"after\"],\"description\":\"`after` to add blocks AFTER (below) the block with `referenceId`, `before` to add the block BEFORE (above)\"},\"blocks\":{\"items\":{\"$ref\":\"#/$defs/block\"},\"type\":\"array\"}},\"required\":[\"type\",\"referenceId\",\"position\",\"blocks\"],\"additionalProperties\":false},{\"type\":\"object\",\"description\":\"Delete a block\",\"properties\":{\"type\":{\"type\":\"string\",\"enum\":[\"delete\"]},\"id\":{\"type\":\"string\",\"description\":\"id of block to delete\"}},\"required\":[\"type\",\"id\"],\"additionalProperties\":false}]}}},\"additionalProperties\":false,\"required\":[\"operations\"],\"$defs\":{\"styles\":{\"type\":\"object\",\"properties\":{\"bold\":{\"type\":\"boolean\"},\"italic\":{\"type\":\"boolean\"},\"underline\":{\"type\":\"boolean\"},\"strike\":{\"type\":\"boolean\"},\"code\":{\"type\":\"boolean\"},\"textColor\":{\"type\":\"string\"},\"backgroundColor\":{\"type\":\"string\"}},\"additionalProperties\":false},\"styledtext\":{\"type\":\"object\",\"properties\":{\"type\":{\"type\":\"string\",\"enum\":[\"text\"]},\"text\":{\"type\":\"string\"},\"styles\":{\"$ref\":\"#/$defs/styles\"}},\"additionalProperties\":false,\"required\":[\"type\",\"text\"]},\"inlinecontent\":{\"type\":\"array\",\"items\":{\"anyOf\":[{\"type\":\"object\",\"properties\":{\"type\":{\"type\":\"string\",\"enum\":[\"mention\"]},\"props\":{\"type\":\"object\",\"properties\":{\"user\":{\"type\":\"string\"}},\"additionalProperties\":false}},\"additionalProperties\":false,\"required\":[\"type\"]},{\"$ref\":\"#/$defs/styledtext\"},{\"type\":\"object\",\"properties\":{\"type\":{\"type\":\"string\",\"enum\":[\"link\"]},\"content\":{\"type\":\"array\",\"items\":{\"$ref\":\"#/$defs/styledtext\"}},\"href\":{\"type\":\"string\"}},\"additionalProperties\":false,\"required\":[\"type\",\"href\",\"content\"]}]}},\"block\":{\"anyOf\":[{\"type\":\"object\",\"properties\":{\"type\":{\"type\":\"string\",\"enum\":[\"paragraph\",\"quote\",\"toggleListItem\",\"bulletListItem\",\"numberedListItem\"]},\"content\":{\"$ref\":\"#/$defs/inlinecontent\"},\"props\":{\"type\":\"object\",\"properties\":{},\"additionalProperties\":false}},\"additionalProperties\":false,\"required\":[\"type\"]},{\"type\":\"object\",\"properties\":{\"type\":{\"type\":\"string\",\"enum\":[\"heading\"]},\"content\":{\"$ref\":\"#/$defs/inlinecontent\"},\"props\":{\"type\":\"object\",\"properties\":{\"level\":{\"type\":\"number\",\"enum\":[1,2,3]},\"isTogglable\":{\"type\":\"boolean\"}},\"additionalProperties\":false}},\"additionalProperties\":false,\"required\":[\"type\"]},{\"type\":\"object\",\"properties\":{\"type\":{\"type\":\"string\",\"enum\":[\"codeBlock\"]},\"content\":{\"$ref\":\"#/$defs/inlinecontent\"},\"props\":{\"type\":\"object\",\"properties\":{\"language\":{\"type\":\"string\"}},\"additionalProperties\":false}},\"additionalProperties\":false,\"required\":[\"type\"]},{\"type\":\"object\",\"properties\":{\"type\":{\"type\":\"string\",\"enum\":[\"checkListItem\"]},\"content\":{\"$ref\":\"#/$defs/inlinecontent\"},\"props\":{\"type\":\"object\",\"properties\":{\"checked\":{\"type\":\"boolean\"}},\"additionalProperties\":false}},\"additionalProperties\":false,\"required\":[\"type\"]},{\"type\":\"object\",\"properties\":{\"type\":{\"type\":\"string\",\"enum\":[\"table\"]},\"content\":{\"type\":\"object\",\"properties\":{}},\"props\":{\"type\":\"object\",\"properties\":{},\"additionalProperties\":false}},\"additionalProperties\":false,\"required\":[\"type\"]}]}}}}}]}", "headers": [], "cookies": [] }, "response": { "status": 200, "statusText": "", - "body": "{\n \"id\": \"chatcmpl-BgV5f0ggvIhs4y12MbdQOF6dm0Ogf\",\n \"object\": \"chat.completion\",\n \"created\": 1749468987,\n \"model\": \"gpt-4o-2024-08-06\",\n \"choices\": [\n {\n \"index\": 0,\n \"message\": {\n \"role\": \"assistant\",\n \"content\": null,\n \"tool_calls\": [\n {\n \"id\": \"call_AzR5qvWaxlcSBybkIjhoaisd\",\n \"type\": \"function\",\n \"function\": {\n \"name\": \"json\",\n \"arguments\": \"{\\\"operations\\\":[{\\\"type\\\":\\\"update\\\",\\\"id\\\":\\\"ref1$\\\",\\\"block\\\":{\\\"type\\\":\\\"paragraph\\\",\\\"content\\\":[{\\\"type\\\":\\\"text\\\",\\\"text\\\":\\\"Hello, world!\\\",\\\"styles\\\":{\\\"bold\\\":true}}]}}]}\"\n }\n }\n ],\n \"refusal\": null,\n \"annotations\": []\n },\n \"logprobs\": null,\n \"finish_reason\": \"stop\"\n }\n ],\n \"usage\": {\n \"prompt_tokens\": 1158,\n \"completion_tokens\": 43,\n \"total_tokens\": 1201,\n \"prompt_tokens_details\": {\n \"cached_tokens\": 0,\n \"audio_tokens\": 0\n },\n \"completion_tokens_details\": {\n \"reasoning_tokens\": 0,\n \"audio_tokens\": 0,\n \"accepted_prediction_tokens\": 0,\n \"rejected_prediction_tokens\": 0\n }\n },\n \"service_tier\": \"default\",\n \"system_fingerprint\": \"fp_07871e2ad8\"\n}\n", + "body": "{\n \"id\": \"chatcmpl-BhXnugnkJ1wtb6IBGZA7gazBI2Bpn\",\n \"object\": \"chat.completion\",\n \"created\": 1749717746,\n \"model\": \"gpt-4o-2024-08-06\",\n \"choices\": [\n {\n \"index\": 0,\n \"message\": {\n \"role\": \"assistant\",\n \"content\": null,\n \"tool_calls\": [\n {\n \"id\": \"call_iiwIkF5Z6zan3vyx6QMJ8oY0\",\n \"type\": \"function\",\n \"function\": {\n \"name\": \"json\",\n \"arguments\": \"{\\\"operations\\\":[{\\\"type\\\":\\\"update\\\",\\\"id\\\":\\\"ref1$\\\",\\\"block\\\":{\\\"type\\\":\\\"paragraph\\\",\\\"content\\\":[{\\\"type\\\":\\\"text\\\",\\\"text\\\":\\\"Hello, world!\\\",\\\"styles\\\":{\\\"bold\\\":true}}]}}]}\"\n }\n }\n ],\n \"refusal\": null,\n \"annotations\": []\n },\n \"logprobs\": null,\n \"finish_reason\": \"stop\"\n }\n ],\n \"usage\": {\n \"prompt_tokens\": 1186,\n \"completion_tokens\": 43,\n \"total_tokens\": 1229,\n \"prompt_tokens_details\": {\n \"cached_tokens\": 1152,\n \"audio_tokens\": 0\n },\n \"completion_tokens_details\": {\n \"reasoning_tokens\": 0,\n \"audio_tokens\": 0,\n \"accepted_prediction_tokens\": 0,\n \"rejected_prediction_tokens\": 0\n }\n },\n \"service_tier\": \"default\",\n \"system_fingerprint\": \"fp_a288987b44\"\n}\n", "headers": [] } } \ No newline at end of file diff --git a/packages/xl-ai/src/api/formats/json/__snapshots__/json.test.ts/Update/__msw_snapshots__/openai.chat/gpt-4o-2024-08-06 (non-streaming)/styles + ic in target block, add mark (word)_1_104a77db5c366a62c8a9f28f5591e4d3.json b/packages/xl-ai/src/api/formats/json/__snapshots__/json.test.ts/Update/__msw_snapshots__/openai.chat/gpt-4o-2024-08-06 (non-streaming)/styles + ic in target block, add mark (word)_1_3440feeb72fe9252f575ed2caaed88ca.json similarity index 75% rename from packages/xl-ai/src/api/formats/json/__snapshots__/json.test.ts/Update/__msw_snapshots__/openai.chat/gpt-4o-2024-08-06 (non-streaming)/styles + ic in target block, add mark (word)_1_104a77db5c366a62c8a9f28f5591e4d3.json rename to packages/xl-ai/src/api/formats/json/__snapshots__/json.test.ts/Update/__msw_snapshots__/openai.chat/gpt-4o-2024-08-06 (non-streaming)/styles + ic in target block, add mark (word)_1_3440feeb72fe9252f575ed2caaed88ca.json index 3c156ca094..1ce53ea42b 100644 --- a/packages/xl-ai/src/api/formats/json/__snapshots__/json.test.ts/Update/__msw_snapshots__/openai.chat/gpt-4o-2024-08-06 (non-streaming)/styles + ic in target block, add mark (word)_1_104a77db5c366a62c8a9f28f5591e4d3.json +++ b/packages/xl-ai/src/api/formats/json/__snapshots__/json.test.ts/Update/__msw_snapshots__/openai.chat/gpt-4o-2024-08-06 (non-streaming)/styles + ic in target block, add mark (word)_1_3440feeb72fe9252f575ed2caaed88ca.json @@ -2,14 +2,14 @@ "request": { "method": "POST", "url": "https://localhost:3000/ai?provider=openai&url=https%3A%2F%2Fapi.openai.com%2Fv1%2Fchat%2Fcompletions", - "body": "{\"model\":\"gpt-4o-2024-08-06\",\"temperature\":0,\"messages\":[{\"role\":\"system\",\"content\":\"You're manipulating a text document using JSON blocks. \\n Make sure to follow the json schema provided. When referencing ids they MUST be EXACTLY the same (including the trailing $). \\n This is the document as an array of JSON blocks (the cursor is BETWEEN two blocks as indicated by cursor: true):\"},{\"role\":\"system\",\"content\":\"[{\\\"id\\\":\\\"ref1$\\\",\\\"block\\\":{\\\"id\\\":\\\"ref1\\\",\\\"type\\\":\\\"paragraph\\\",\\\"props\\\":{\\\"textColor\\\":\\\"default\\\",\\\"backgroundColor\\\":\\\"default\\\",\\\"textAlignment\\\":\\\"left\\\"},\\\"content\\\":[{\\\"type\\\":\\\"text\\\",\\\"text\\\":\\\"Hello, world!\\\",\\\"styles\\\":{}}]}},{\\\"cursor\\\":true},{\\\"id\\\":\\\"ref2$\\\",\\\"block\\\":{\\\"id\\\":\\\"ref2\\\",\\\"type\\\":\\\"paragraph\\\",\\\"props\\\":{\\\"textColor\\\":\\\"default\\\",\\\"backgroundColor\\\":\\\"default\\\",\\\"textAlignment\\\":\\\"left\\\"},\\\"content\\\":[{\\\"type\\\":\\\"text\\\",\\\"text\\\":\\\"Hello, \\\",\\\"styles\\\":{}},{\\\"type\\\":\\\"mention\\\",\\\"props\\\":{\\\"user\\\":\\\"John Doe\\\"}},{\\\"type\\\":\\\"text\\\",\\\"text\\\":\\\"! \\\",\\\"styles\\\":{}},{\\\"type\\\":\\\"text\\\",\\\"text\\\":\\\"How are you doing?\\\",\\\"styles\\\":{\\\"bold\\\":true}},{\\\"type\\\":\\\"text\\\",\\\"text\\\":\\\" \\\",\\\"styles\\\":{}},{\\\"type\\\":\\\"text\\\",\\\"text\\\":\\\"This text is blue!\\\",\\\"styles\\\":{\\\"textColor\\\":\\\"blue\\\"}}]}},{\\\"id\\\":\\\"ref3$\\\",\\\"block\\\":{\\\"id\\\":\\\"ref3\\\",\\\"type\\\":\\\"paragraph\\\",\\\"props\\\":{\\\"textColor\\\":\\\"default\\\",\\\"backgroundColor\\\":\\\"default\\\",\\\"textAlignment\\\":\\\"left\\\"},\\\"content\\\":[{\\\"type\\\":\\\"text\\\",\\\"text\\\":\\\"Hello, world! \\\",\\\"styles\\\":{}},{\\\"type\\\":\\\"text\\\",\\\"text\\\":\\\"Bold text. \\\",\\\"styles\\\":{\\\"bold\\\":true}},{\\\"type\\\":\\\"link\\\",\\\"href\\\":\\\"https://www.google.com\\\",\\\"content\\\":[{\\\"type\\\":\\\"text\\\",\\\"text\\\":\\\"Link.\\\",\\\"styles\\\":{}}]}]}}]\"},{\"role\":\"system\",\"content\":\"The user asks you to do the following:\"},{\"role\":\"user\",\"content\":\"make 'world!' (in the first block) bold\"},{\"role\":\"system\",\"content\":\"First, determine what part of the document the user is talking about. You SHOULD probably take cursor info into account if needed.\\n EXAMPLE: if user says \\\"below\\\" (without pointing to a specific part of the document) he / she probably indicates the block(s) after the cursor. \\n EXAMPLE: If you want to insert content AT the cursor position (UNLESS indicated otherwise by the user), then you need `referenceId` to point to the block before the cursor with position `after` (or block below and `before`).\\n \\n Prefer updating existing blocks over removing and adding (but this also depends on the user's question).\"}],\"tool_choice\":{\"type\":\"function\",\"function\":{\"name\":\"json\"}},\"tools\":[{\"type\":\"function\",\"function\":{\"name\":\"json\",\"description\":\"Respond with a JSON object.\",\"parameters\":{\"type\":\"object\",\"properties\":{\"operations\":{\"type\":\"array\",\"items\":{\"anyOf\":[{\"type\":\"object\",\"description\":\"Update a block, the new block will replace the existing block.\",\"properties\":{\"type\":{\"type\":\"string\",\"enum\":[\"update\"]},\"id\":{\"type\":\"string\",\"description\":\"id of block to update\"},\"block\":{\"$ref\":\"#/$defs/block\"}},\"required\":[\"type\",\"id\",\"block\"],\"additionalProperties\":false},{\"type\":\"object\",\"description\":\"Insert new blocks\",\"properties\":{\"type\":{\"type\":\"string\",\"enum\":[\"add\"]},\"referenceId\":{\"type\":\"string\",\"description\":\"MUST be an id of a block in the document\"},\"position\":{\"type\":\"string\",\"enum\":[\"before\",\"after\"],\"description\":\"`after` to add blocks AFTER (below) the block with `referenceId`, `before` to add the block BEFORE (above)\"},\"blocks\":{\"items\":{\"$ref\":\"#/$defs/block\"},\"type\":\"array\"}},\"required\":[\"type\",\"referenceId\",\"position\",\"blocks\"],\"additionalProperties\":false},{\"type\":\"object\",\"description\":\"Delete a block\",\"properties\":{\"type\":{\"type\":\"string\",\"enum\":[\"delete\"]},\"id\":{\"type\":\"string\",\"description\":\"id of block to delete\"}},\"required\":[\"type\",\"id\"],\"additionalProperties\":false}]}}},\"additionalProperties\":false,\"required\":[\"operations\"],\"$defs\":{\"styles\":{\"type\":\"object\",\"properties\":{\"bold\":{\"type\":\"boolean\"},\"italic\":{\"type\":\"boolean\"},\"underline\":{\"type\":\"boolean\"},\"strike\":{\"type\":\"boolean\"},\"code\":{\"type\":\"boolean\"},\"textColor\":{\"type\":\"string\"},\"backgroundColor\":{\"type\":\"string\"}},\"additionalProperties\":false},\"styledtext\":{\"type\":\"object\",\"properties\":{\"type\":{\"type\":\"string\",\"enum\":[\"text\"]},\"text\":{\"type\":\"string\"},\"styles\":{\"$ref\":\"#/$defs/styles\"}},\"additionalProperties\":false,\"required\":[\"type\",\"text\"]},\"inlinecontent\":{\"type\":\"array\",\"items\":{\"anyOf\":[{\"type\":\"object\",\"properties\":{\"type\":{\"type\":\"string\",\"enum\":[\"mention\"]},\"props\":{\"type\":\"object\",\"properties\":{\"user\":{\"type\":\"string\"}},\"additionalProperties\":false}},\"additionalProperties\":false,\"required\":[\"type\"]},{\"$ref\":\"#/$defs/styledtext\"},{\"type\":\"object\",\"properties\":{\"type\":{\"type\":\"string\",\"enum\":[\"link\"]},\"content\":{\"type\":\"array\",\"items\":{\"$ref\":\"#/$defs/styledtext\"}},\"href\":{\"type\":\"string\"}},\"additionalProperties\":false,\"required\":[\"type\",\"href\",\"content\"]}]}},\"block\":{\"anyOf\":[{\"type\":\"object\",\"properties\":{\"type\":{\"type\":\"string\",\"enum\":[\"paragraph\",\"quote\",\"bulletListItem\",\"numberedListItem\"]},\"content\":{\"$ref\":\"#/$defs/inlinecontent\"},\"props\":{\"type\":\"object\",\"properties\":{},\"additionalProperties\":false}},\"additionalProperties\":false,\"required\":[\"type\"]},{\"type\":\"object\",\"properties\":{\"type\":{\"type\":\"string\",\"enum\":[\"heading\"]},\"content\":{\"$ref\":\"#/$defs/inlinecontent\"},\"props\":{\"type\":\"object\",\"properties\":{\"level\":{\"type\":\"number\",\"enum\":[1,2,3]}},\"additionalProperties\":false}},\"additionalProperties\":false,\"required\":[\"type\"]},{\"type\":\"object\",\"properties\":{\"type\":{\"type\":\"string\",\"enum\":[\"codeBlock\"]},\"content\":{\"$ref\":\"#/$defs/inlinecontent\"},\"props\":{\"type\":\"object\",\"properties\":{\"language\":{\"type\":\"string\"}},\"additionalProperties\":false}},\"additionalProperties\":false,\"required\":[\"type\"]},{\"type\":\"object\",\"properties\":{\"type\":{\"type\":\"string\",\"enum\":[\"checkListItem\"]},\"content\":{\"$ref\":\"#/$defs/inlinecontent\"},\"props\":{\"type\":\"object\",\"properties\":{\"checked\":{\"type\":\"boolean\"}},\"additionalProperties\":false}},\"additionalProperties\":false,\"required\":[\"type\"]},{\"type\":\"object\",\"properties\":{\"type\":{\"type\":\"string\",\"enum\":[\"table\"]},\"content\":{\"type\":\"object\",\"properties\":{}},\"props\":{\"type\":\"object\",\"properties\":{},\"additionalProperties\":false}},\"additionalProperties\":false,\"required\":[\"type\"]}]}}}}}]}", + "body": "{\"model\":\"gpt-4o-2024-08-06\",\"temperature\":0,\"messages\":[{\"role\":\"system\",\"content\":\"You're manipulating a text document using JSON blocks. \\n Make sure to follow the json schema provided. When referencing ids they MUST be EXACTLY the same (including the trailing $). \\n This is the document as an array of JSON blocks (the cursor is BETWEEN two blocks as indicated by cursor: true):\"},{\"role\":\"system\",\"content\":\"[{\\\"id\\\":\\\"ref1$\\\",\\\"block\\\":{\\\"id\\\":\\\"ref1\\\",\\\"type\\\":\\\"paragraph\\\",\\\"props\\\":{\\\"textColor\\\":\\\"default\\\",\\\"backgroundColor\\\":\\\"default\\\",\\\"textAlignment\\\":\\\"left\\\"},\\\"content\\\":[{\\\"type\\\":\\\"text\\\",\\\"text\\\":\\\"Hello, world!\\\",\\\"styles\\\":{}}]}},{\\\"cursor\\\":true},{\\\"id\\\":\\\"ref2$\\\",\\\"block\\\":{\\\"id\\\":\\\"ref2\\\",\\\"type\\\":\\\"paragraph\\\",\\\"props\\\":{\\\"textColor\\\":\\\"default\\\",\\\"backgroundColor\\\":\\\"default\\\",\\\"textAlignment\\\":\\\"left\\\"},\\\"content\\\":[{\\\"type\\\":\\\"text\\\",\\\"text\\\":\\\"Hello, \\\",\\\"styles\\\":{}},{\\\"type\\\":\\\"mention\\\",\\\"props\\\":{\\\"user\\\":\\\"John Doe\\\"}},{\\\"type\\\":\\\"text\\\",\\\"text\\\":\\\"! \\\",\\\"styles\\\":{}},{\\\"type\\\":\\\"text\\\",\\\"text\\\":\\\"How are you doing?\\\",\\\"styles\\\":{\\\"bold\\\":true}},{\\\"type\\\":\\\"text\\\",\\\"text\\\":\\\" \\\",\\\"styles\\\":{}},{\\\"type\\\":\\\"text\\\",\\\"text\\\":\\\"This text is blue!\\\",\\\"styles\\\":{\\\"textColor\\\":\\\"blue\\\"}}]}},{\\\"id\\\":\\\"ref3$\\\",\\\"block\\\":{\\\"id\\\":\\\"ref3\\\",\\\"type\\\":\\\"paragraph\\\",\\\"props\\\":{\\\"textColor\\\":\\\"default\\\",\\\"backgroundColor\\\":\\\"default\\\",\\\"textAlignment\\\":\\\"left\\\"},\\\"content\\\":[{\\\"type\\\":\\\"text\\\",\\\"text\\\":\\\"Hello, world! \\\",\\\"styles\\\":{}},{\\\"type\\\":\\\"text\\\",\\\"text\\\":\\\"Bold text. \\\",\\\"styles\\\":{\\\"bold\\\":true}},{\\\"type\\\":\\\"link\\\",\\\"href\\\":\\\"https://www.google.com\\\",\\\"content\\\":[{\\\"type\\\":\\\"text\\\",\\\"text\\\":\\\"Link.\\\",\\\"styles\\\":{}}]}]}}]\"},{\"role\":\"system\",\"content\":\"The user asks you to do the following:\"},{\"role\":\"user\",\"content\":\"make 'world!' (in the first block) bold\"},{\"role\":\"system\",\"content\":\"First, determine what part of the document the user is talking about. You SHOULD probably take cursor info into account if needed.\\n EXAMPLE: if user says \\\"below\\\" (without pointing to a specific part of the document) he / she probably indicates the block(s) after the cursor. \\n EXAMPLE: If you want to insert content AT the cursor position (UNLESS indicated otherwise by the user), then you need `referenceId` to point to the block before the cursor with position `after` (or block below and `before`).\\n \\n Prefer updating existing blocks over removing and adding (but this also depends on the user's question).\"}],\"tool_choice\":{\"type\":\"function\",\"function\":{\"name\":\"json\"}},\"tools\":[{\"type\":\"function\",\"function\":{\"name\":\"json\",\"description\":\"Respond with a JSON object.\",\"parameters\":{\"type\":\"object\",\"properties\":{\"operations\":{\"type\":\"array\",\"items\":{\"anyOf\":[{\"type\":\"object\",\"description\":\"Update a block, the new block will replace the existing block.\",\"properties\":{\"type\":{\"type\":\"string\",\"enum\":[\"update\"]},\"id\":{\"type\":\"string\",\"description\":\"id of block to update\"},\"block\":{\"$ref\":\"#/$defs/block\"}},\"required\":[\"type\",\"id\",\"block\"],\"additionalProperties\":false},{\"type\":\"object\",\"description\":\"Insert new blocks\",\"properties\":{\"type\":{\"type\":\"string\",\"enum\":[\"add\"]},\"referenceId\":{\"type\":\"string\",\"description\":\"MUST be an id of a block in the document\"},\"position\":{\"type\":\"string\",\"enum\":[\"before\",\"after\"],\"description\":\"`after` to add blocks AFTER (below) the block with `referenceId`, `before` to add the block BEFORE (above)\"},\"blocks\":{\"items\":{\"$ref\":\"#/$defs/block\"},\"type\":\"array\"}},\"required\":[\"type\",\"referenceId\",\"position\",\"blocks\"],\"additionalProperties\":false},{\"type\":\"object\",\"description\":\"Delete a block\",\"properties\":{\"type\":{\"type\":\"string\",\"enum\":[\"delete\"]},\"id\":{\"type\":\"string\",\"description\":\"id of block to delete\"}},\"required\":[\"type\",\"id\"],\"additionalProperties\":false}]}}},\"additionalProperties\":false,\"required\":[\"operations\"],\"$defs\":{\"styles\":{\"type\":\"object\",\"properties\":{\"bold\":{\"type\":\"boolean\"},\"italic\":{\"type\":\"boolean\"},\"underline\":{\"type\":\"boolean\"},\"strike\":{\"type\":\"boolean\"},\"code\":{\"type\":\"boolean\"},\"textColor\":{\"type\":\"string\"},\"backgroundColor\":{\"type\":\"string\"}},\"additionalProperties\":false},\"styledtext\":{\"type\":\"object\",\"properties\":{\"type\":{\"type\":\"string\",\"enum\":[\"text\"]},\"text\":{\"type\":\"string\"},\"styles\":{\"$ref\":\"#/$defs/styles\"}},\"additionalProperties\":false,\"required\":[\"type\",\"text\"]},\"inlinecontent\":{\"type\":\"array\",\"items\":{\"anyOf\":[{\"type\":\"object\",\"properties\":{\"type\":{\"type\":\"string\",\"enum\":[\"mention\"]},\"props\":{\"type\":\"object\",\"properties\":{\"user\":{\"type\":\"string\"}},\"additionalProperties\":false}},\"additionalProperties\":false,\"required\":[\"type\"]},{\"$ref\":\"#/$defs/styledtext\"},{\"type\":\"object\",\"properties\":{\"type\":{\"type\":\"string\",\"enum\":[\"link\"]},\"content\":{\"type\":\"array\",\"items\":{\"$ref\":\"#/$defs/styledtext\"}},\"href\":{\"type\":\"string\"}},\"additionalProperties\":false,\"required\":[\"type\",\"href\",\"content\"]}]}},\"block\":{\"anyOf\":[{\"type\":\"object\",\"properties\":{\"type\":{\"type\":\"string\",\"enum\":[\"paragraph\",\"quote\",\"toggleListItem\",\"bulletListItem\",\"numberedListItem\"]},\"content\":{\"$ref\":\"#/$defs/inlinecontent\"},\"props\":{\"type\":\"object\",\"properties\":{},\"additionalProperties\":false}},\"additionalProperties\":false,\"required\":[\"type\"]},{\"type\":\"object\",\"properties\":{\"type\":{\"type\":\"string\",\"enum\":[\"heading\"]},\"content\":{\"$ref\":\"#/$defs/inlinecontent\"},\"props\":{\"type\":\"object\",\"properties\":{\"level\":{\"type\":\"number\",\"enum\":[1,2,3]},\"isTogglable\":{\"type\":\"boolean\"}},\"additionalProperties\":false}},\"additionalProperties\":false,\"required\":[\"type\"]},{\"type\":\"object\",\"properties\":{\"type\":{\"type\":\"string\",\"enum\":[\"codeBlock\"]},\"content\":{\"$ref\":\"#/$defs/inlinecontent\"},\"props\":{\"type\":\"object\",\"properties\":{\"language\":{\"type\":\"string\"}},\"additionalProperties\":false}},\"additionalProperties\":false,\"required\":[\"type\"]},{\"type\":\"object\",\"properties\":{\"type\":{\"type\":\"string\",\"enum\":[\"checkListItem\"]},\"content\":{\"$ref\":\"#/$defs/inlinecontent\"},\"props\":{\"type\":\"object\",\"properties\":{\"checked\":{\"type\":\"boolean\"}},\"additionalProperties\":false}},\"additionalProperties\":false,\"required\":[\"type\"]},{\"type\":\"object\",\"properties\":{\"type\":{\"type\":\"string\",\"enum\":[\"table\"]},\"content\":{\"type\":\"object\",\"properties\":{}},\"props\":{\"type\":\"object\",\"properties\":{},\"additionalProperties\":false}},\"additionalProperties\":false,\"required\":[\"type\"]}]}}}}}]}", "headers": [], "cookies": [] }, "response": { "status": 200, "statusText": "", - "body": "{\n \"id\": \"chatcmpl-BgV5djmZ0w7pFWtjEDWcC8ZaSKTga\",\n \"object\": \"chat.completion\",\n \"created\": 1749468985,\n \"model\": \"gpt-4o-2024-08-06\",\n \"choices\": [\n {\n \"index\": 0,\n \"message\": {\n \"role\": \"assistant\",\n \"content\": null,\n \"tool_calls\": [\n {\n \"id\": \"call_fWIympYtVIycmMxVVHKikAhm\",\n \"type\": \"function\",\n \"function\": {\n \"name\": \"json\",\n \"arguments\": \"{\\\"operations\\\":[{\\\"type\\\":\\\"update\\\",\\\"id\\\":\\\"ref1$\\\",\\\"block\\\":{\\\"type\\\":\\\"paragraph\\\",\\\"content\\\":[{\\\"type\\\":\\\"text\\\",\\\"text\\\":\\\"Hello, \\\",\\\"styles\\\":{}},{\\\"type\\\":\\\"text\\\",\\\"text\\\":\\\"world!\\\",\\\"styles\\\":{\\\"bold\\\":true}}]}}]}\"\n }\n }\n ],\n \"refusal\": null,\n \"annotations\": []\n },\n \"logprobs\": null,\n \"finish_reason\": \"stop\"\n }\n ],\n \"usage\": {\n \"prompt_tokens\": 1165,\n \"completion_tokens\": 54,\n \"total_tokens\": 1219,\n \"prompt_tokens_details\": {\n \"cached_tokens\": 0,\n \"audio_tokens\": 0\n },\n \"completion_tokens_details\": {\n \"reasoning_tokens\": 0,\n \"audio_tokens\": 0,\n \"accepted_prediction_tokens\": 0,\n \"rejected_prediction_tokens\": 0\n }\n },\n \"service_tier\": \"default\",\n \"system_fingerprint\": \"fp_07871e2ad8\"\n}\n", + "body": "{\n \"id\": \"chatcmpl-BhXntREPhvt5WRwciUj4vD9WHPX4r\",\n \"object\": \"chat.completion\",\n \"created\": 1749717745,\n \"model\": \"gpt-4o-2024-08-06\",\n \"choices\": [\n {\n \"index\": 0,\n \"message\": {\n \"role\": \"assistant\",\n \"content\": null,\n \"tool_calls\": [\n {\n \"id\": \"call_3Gs89QTHiwZAPMrzsi10v5hR\",\n \"type\": \"function\",\n \"function\": {\n \"name\": \"json\",\n \"arguments\": \"{\\\"operations\\\":[{\\\"type\\\":\\\"update\\\",\\\"id\\\":\\\"ref1$\\\",\\\"block\\\":{\\\"type\\\":\\\"paragraph\\\",\\\"content\\\":[{\\\"type\\\":\\\"text\\\",\\\"text\\\":\\\"Hello, \\\",\\\"styles\\\":{}},{\\\"type\\\":\\\"text\\\",\\\"text\\\":\\\"world!\\\",\\\"styles\\\":{\\\"bold\\\":true}}]}}]}\"\n }\n }\n ],\n \"refusal\": null,\n \"annotations\": []\n },\n \"logprobs\": null,\n \"finish_reason\": \"stop\"\n }\n ],\n \"usage\": {\n \"prompt_tokens\": 1193,\n \"completion_tokens\": 54,\n \"total_tokens\": 1247,\n \"prompt_tokens_details\": {\n \"cached_tokens\": 1152,\n \"audio_tokens\": 0\n },\n \"completion_tokens_details\": {\n \"reasoning_tokens\": 0,\n \"audio_tokens\": 0,\n \"accepted_prediction_tokens\": 0,\n \"rejected_prediction_tokens\": 0\n }\n },\n \"service_tier\": \"default\",\n \"system_fingerprint\": \"fp_a288987b44\"\n}\n", "headers": [] } } \ No newline at end of file diff --git a/packages/xl-ai/src/api/formats/json/__snapshots__/json.test.ts/Update/__msw_snapshots__/openai.chat/gpt-4o-2024-08-06 (non-streaming)/translate selection_1_e06a86826098274cfb35046f8f5f67a5.json b/packages/xl-ai/src/api/formats/json/__snapshots__/json.test.ts/Update/__msw_snapshots__/openai.chat/gpt-4o-2024-08-06 (non-streaming)/translate selection_1_a1c443203ee18f4ec6d71349d0c57311.json similarity index 77% rename from packages/xl-ai/src/api/formats/json/__snapshots__/json.test.ts/Update/__msw_snapshots__/openai.chat/gpt-4o-2024-08-06 (non-streaming)/translate selection_1_e06a86826098274cfb35046f8f5f67a5.json rename to packages/xl-ai/src/api/formats/json/__snapshots__/json.test.ts/Update/__msw_snapshots__/openai.chat/gpt-4o-2024-08-06 (non-streaming)/translate selection_1_a1c443203ee18f4ec6d71349d0c57311.json index 0e1741b836..c8ee229682 100644 --- a/packages/xl-ai/src/api/formats/json/__snapshots__/json.test.ts/Update/__msw_snapshots__/openai.chat/gpt-4o-2024-08-06 (non-streaming)/translate selection_1_e06a86826098274cfb35046f8f5f67a5.json +++ b/packages/xl-ai/src/api/formats/json/__snapshots__/json.test.ts/Update/__msw_snapshots__/openai.chat/gpt-4o-2024-08-06 (non-streaming)/translate selection_1_a1c443203ee18f4ec6d71349d0c57311.json @@ -2,14 +2,14 @@ "request": { "method": "POST", "url": "https://localhost:3000/ai?provider=openai&url=https%3A%2F%2Fapi.openai.com%2Fv1%2Fchat%2Fcompletions", - "body": "{\"model\":\"gpt-4o-2024-08-06\",\"temperature\":0,\"messages\":[{\"role\":\"system\",\"content\":\"You're manipulating a selected part of a text document using JSON blocks. \\n Make sure to follow the json schema provided and always include the trailing $ in ids. \\n This is the selection as an array of JSON blocks:\"},{\"role\":\"system\",\"content\":\"[{\\\"id\\\":\\\"ref2$\\\",\\\"block\\\":{\\\"id\\\":\\\"ref2\\\",\\\"type\\\":\\\"paragraph\\\",\\\"props\\\":{\\\"textColor\\\":\\\"default\\\",\\\"backgroundColor\\\":\\\"default\\\",\\\"textAlignment\\\":\\\"left\\\"},\\\"content\\\":[{\\\"type\\\":\\\"text\\\",\\\"text\\\":\\\"Hello\\\",\\\"styles\\\":{}}],\\\"children\\\":[]}}]\"},{\"role\":\"system\",\"content\":\"This is the entire document (INCLUDING the selected text), find the selected text in there to understand the context:\"},{\"role\":\"system\",\"content\":\"[{\\\"block\\\":{\\\"type\\\":\\\"paragraph\\\",\\\"props\\\":{\\\"textColor\\\":\\\"default\\\",\\\"backgroundColor\\\":\\\"default\\\",\\\"textAlignment\\\":\\\"left\\\"},\\\"content\\\":[{\\\"type\\\":\\\"text\\\",\\\"text\\\":\\\"Hello, world!\\\",\\\"styles\\\":{}}]}},{\\\"block\\\":{\\\"type\\\":\\\"paragraph\\\",\\\"props\\\":{\\\"textColor\\\":\\\"default\\\",\\\"backgroundColor\\\":\\\"default\\\",\\\"textAlignment\\\":\\\"left\\\"},\\\"content\\\":[{\\\"type\\\":\\\"text\\\",\\\"text\\\":\\\"Hello, \\\",\\\"styles\\\":{}},{\\\"type\\\":\\\"mention\\\",\\\"props\\\":{\\\"user\\\":\\\"John Doe\\\"}},{\\\"type\\\":\\\"text\\\",\\\"text\\\":\\\"! \\\",\\\"styles\\\":{}},{\\\"type\\\":\\\"text\\\",\\\"text\\\":\\\"How are you doing?\\\",\\\"styles\\\":{\\\"bold\\\":true}},{\\\"type\\\":\\\"text\\\",\\\"text\\\":\\\" \\\",\\\"styles\\\":{}},{\\\"type\\\":\\\"text\\\",\\\"text\\\":\\\"This text is blue!\\\",\\\"styles\\\":{\\\"textColor\\\":\\\"blue\\\"}}]}},{\\\"block\\\":{\\\"type\\\":\\\"paragraph\\\",\\\"props\\\":{\\\"textColor\\\":\\\"default\\\",\\\"backgroundColor\\\":\\\"default\\\",\\\"textAlignment\\\":\\\"left\\\"},\\\"content\\\":[{\\\"type\\\":\\\"text\\\",\\\"text\\\":\\\"Hello, world! \\\",\\\"styles\\\":{}},{\\\"type\\\":\\\"text\\\",\\\"text\\\":\\\"Bold text. \\\",\\\"styles\\\":{\\\"bold\\\":true}},{\\\"type\\\":\\\"link\\\",\\\"href\\\":\\\"https://www.google.com\\\",\\\"content\\\":[{\\\"type\\\":\\\"text\\\",\\\"text\\\":\\\"Link.\\\",\\\"styles\\\":{}}]}]}}]\"},{\"role\":\"system\",\"content\":\"The user asks you to do the following:\"},{\"role\":\"user\",\"content\":\"translate to German\"}],\"tool_choice\":{\"type\":\"function\",\"function\":{\"name\":\"json\"}},\"tools\":[{\"type\":\"function\",\"function\":{\"name\":\"json\",\"description\":\"Respond with a JSON object.\",\"parameters\":{\"type\":\"object\",\"properties\":{\"operations\":{\"type\":\"array\",\"items\":{\"anyOf\":[{\"type\":\"object\",\"description\":\"Update a block, the new block will replace the existing block.\",\"properties\":{\"type\":{\"type\":\"string\",\"enum\":[\"update\"]},\"id\":{\"type\":\"string\",\"description\":\"id of block to update\"},\"block\":{\"$ref\":\"#/$defs/block\"}},\"required\":[\"type\",\"id\",\"block\"],\"additionalProperties\":false},{\"type\":\"object\",\"description\":\"Insert new blocks\",\"properties\":{\"type\":{\"type\":\"string\",\"enum\":[\"add\"]},\"referenceId\":{\"type\":\"string\",\"description\":\"MUST be an id of a block in the document\"},\"position\":{\"type\":\"string\",\"enum\":[\"before\",\"after\"],\"description\":\"`after` to add blocks AFTER (below) the block with `referenceId`, `before` to add the block BEFORE (above)\"},\"blocks\":{\"items\":{\"$ref\":\"#/$defs/block\"},\"type\":\"array\"}},\"required\":[\"type\",\"referenceId\",\"position\",\"blocks\"],\"additionalProperties\":false},{\"type\":\"object\",\"description\":\"Delete a block\",\"properties\":{\"type\":{\"type\":\"string\",\"enum\":[\"delete\"]},\"id\":{\"type\":\"string\",\"description\":\"id of block to delete\"}},\"required\":[\"type\",\"id\"],\"additionalProperties\":false}]}}},\"additionalProperties\":false,\"required\":[\"operations\"],\"$defs\":{\"styles\":{\"type\":\"object\",\"properties\":{\"bold\":{\"type\":\"boolean\"},\"italic\":{\"type\":\"boolean\"},\"underline\":{\"type\":\"boolean\"},\"strike\":{\"type\":\"boolean\"},\"code\":{\"type\":\"boolean\"},\"textColor\":{\"type\":\"string\"},\"backgroundColor\":{\"type\":\"string\"}},\"additionalProperties\":false},\"styledtext\":{\"type\":\"object\",\"properties\":{\"type\":{\"type\":\"string\",\"enum\":[\"text\"]},\"text\":{\"type\":\"string\"},\"styles\":{\"$ref\":\"#/$defs/styles\"}},\"additionalProperties\":false,\"required\":[\"type\",\"text\"]},\"inlinecontent\":{\"type\":\"array\",\"items\":{\"anyOf\":[{\"type\":\"object\",\"properties\":{\"type\":{\"type\":\"string\",\"enum\":[\"mention\"]},\"props\":{\"type\":\"object\",\"properties\":{\"user\":{\"type\":\"string\"}},\"additionalProperties\":false}},\"additionalProperties\":false,\"required\":[\"type\"]},{\"$ref\":\"#/$defs/styledtext\"},{\"type\":\"object\",\"properties\":{\"type\":{\"type\":\"string\",\"enum\":[\"link\"]},\"content\":{\"type\":\"array\",\"items\":{\"$ref\":\"#/$defs/styledtext\"}},\"href\":{\"type\":\"string\"}},\"additionalProperties\":false,\"required\":[\"type\",\"href\",\"content\"]}]}},\"block\":{\"anyOf\":[{\"type\":\"object\",\"properties\":{\"type\":{\"type\":\"string\",\"enum\":[\"paragraph\",\"quote\",\"bulletListItem\",\"numberedListItem\"]},\"content\":{\"$ref\":\"#/$defs/inlinecontent\"},\"props\":{\"type\":\"object\",\"properties\":{},\"additionalProperties\":false}},\"additionalProperties\":false,\"required\":[\"type\"]},{\"type\":\"object\",\"properties\":{\"type\":{\"type\":\"string\",\"enum\":[\"heading\"]},\"content\":{\"$ref\":\"#/$defs/inlinecontent\"},\"props\":{\"type\":\"object\",\"properties\":{\"level\":{\"type\":\"number\",\"enum\":[1,2,3]}},\"additionalProperties\":false}},\"additionalProperties\":false,\"required\":[\"type\"]},{\"type\":\"object\",\"properties\":{\"type\":{\"type\":\"string\",\"enum\":[\"codeBlock\"]},\"content\":{\"$ref\":\"#/$defs/inlinecontent\"},\"props\":{\"type\":\"object\",\"properties\":{\"language\":{\"type\":\"string\"}},\"additionalProperties\":false}},\"additionalProperties\":false,\"required\":[\"type\"]},{\"type\":\"object\",\"properties\":{\"type\":{\"type\":\"string\",\"enum\":[\"checkListItem\"]},\"content\":{\"$ref\":\"#/$defs/inlinecontent\"},\"props\":{\"type\":\"object\",\"properties\":{\"checked\":{\"type\":\"boolean\"}},\"additionalProperties\":false}},\"additionalProperties\":false,\"required\":[\"type\"]},{\"type\":\"object\",\"properties\":{\"type\":{\"type\":\"string\",\"enum\":[\"table\"]},\"content\":{\"type\":\"object\",\"properties\":{}},\"props\":{\"type\":\"object\",\"properties\":{},\"additionalProperties\":false}},\"additionalProperties\":false,\"required\":[\"type\"]}]}}}}}]}", + "body": "{\"model\":\"gpt-4o-2024-08-06\",\"temperature\":0,\"messages\":[{\"role\":\"system\",\"content\":\"You're manipulating a selected part of a text document using JSON blocks. \\n Make sure to follow the json schema provided and always include the trailing $ in ids. \\n This is the selection as an array of JSON blocks:\"},{\"role\":\"system\",\"content\":\"[{\\\"id\\\":\\\"ref2$\\\",\\\"block\\\":{\\\"id\\\":\\\"ref2\\\",\\\"type\\\":\\\"paragraph\\\",\\\"props\\\":{\\\"textColor\\\":\\\"default\\\",\\\"backgroundColor\\\":\\\"default\\\",\\\"textAlignment\\\":\\\"left\\\"},\\\"content\\\":[{\\\"type\\\":\\\"text\\\",\\\"text\\\":\\\"Hello\\\",\\\"styles\\\":{}}],\\\"children\\\":[]}}]\"},{\"role\":\"system\",\"content\":\"This is the entire document (INCLUDING the selected text), find the selected text in there to understand the context:\"},{\"role\":\"system\",\"content\":\"[{\\\"block\\\":{\\\"type\\\":\\\"paragraph\\\",\\\"props\\\":{\\\"textColor\\\":\\\"default\\\",\\\"backgroundColor\\\":\\\"default\\\",\\\"textAlignment\\\":\\\"left\\\"},\\\"content\\\":[{\\\"type\\\":\\\"text\\\",\\\"text\\\":\\\"Hello, world!\\\",\\\"styles\\\":{}}]}},{\\\"block\\\":{\\\"type\\\":\\\"paragraph\\\",\\\"props\\\":{\\\"textColor\\\":\\\"default\\\",\\\"backgroundColor\\\":\\\"default\\\",\\\"textAlignment\\\":\\\"left\\\"},\\\"content\\\":[{\\\"type\\\":\\\"text\\\",\\\"text\\\":\\\"Hello, \\\",\\\"styles\\\":{}},{\\\"type\\\":\\\"mention\\\",\\\"props\\\":{\\\"user\\\":\\\"John Doe\\\"}},{\\\"type\\\":\\\"text\\\",\\\"text\\\":\\\"! \\\",\\\"styles\\\":{}},{\\\"type\\\":\\\"text\\\",\\\"text\\\":\\\"How are you doing?\\\",\\\"styles\\\":{\\\"bold\\\":true}},{\\\"type\\\":\\\"text\\\",\\\"text\\\":\\\" \\\",\\\"styles\\\":{}},{\\\"type\\\":\\\"text\\\",\\\"text\\\":\\\"This text is blue!\\\",\\\"styles\\\":{\\\"textColor\\\":\\\"blue\\\"}}]}},{\\\"block\\\":{\\\"type\\\":\\\"paragraph\\\",\\\"props\\\":{\\\"textColor\\\":\\\"default\\\",\\\"backgroundColor\\\":\\\"default\\\",\\\"textAlignment\\\":\\\"left\\\"},\\\"content\\\":[{\\\"type\\\":\\\"text\\\",\\\"text\\\":\\\"Hello, world! \\\",\\\"styles\\\":{}},{\\\"type\\\":\\\"text\\\",\\\"text\\\":\\\"Bold text. \\\",\\\"styles\\\":{\\\"bold\\\":true}},{\\\"type\\\":\\\"link\\\",\\\"href\\\":\\\"https://www.google.com\\\",\\\"content\\\":[{\\\"type\\\":\\\"text\\\",\\\"text\\\":\\\"Link.\\\",\\\"styles\\\":{}}]}]}}]\"},{\"role\":\"system\",\"content\":\"The user asks you to do the following:\"},{\"role\":\"user\",\"content\":\"translate to German\"}],\"tool_choice\":{\"type\":\"function\",\"function\":{\"name\":\"json\"}},\"tools\":[{\"type\":\"function\",\"function\":{\"name\":\"json\",\"description\":\"Respond with a JSON object.\",\"parameters\":{\"type\":\"object\",\"properties\":{\"operations\":{\"type\":\"array\",\"items\":{\"anyOf\":[{\"type\":\"object\",\"description\":\"Update a block, the new block will replace the existing block.\",\"properties\":{\"type\":{\"type\":\"string\",\"enum\":[\"update\"]},\"id\":{\"type\":\"string\",\"description\":\"id of block to update\"},\"block\":{\"$ref\":\"#/$defs/block\"}},\"required\":[\"type\",\"id\",\"block\"],\"additionalProperties\":false},{\"type\":\"object\",\"description\":\"Insert new blocks\",\"properties\":{\"type\":{\"type\":\"string\",\"enum\":[\"add\"]},\"referenceId\":{\"type\":\"string\",\"description\":\"MUST be an id of a block in the document\"},\"position\":{\"type\":\"string\",\"enum\":[\"before\",\"after\"],\"description\":\"`after` to add blocks AFTER (below) the block with `referenceId`, `before` to add the block BEFORE (above)\"},\"blocks\":{\"items\":{\"$ref\":\"#/$defs/block\"},\"type\":\"array\"}},\"required\":[\"type\",\"referenceId\",\"position\",\"blocks\"],\"additionalProperties\":false},{\"type\":\"object\",\"description\":\"Delete a block\",\"properties\":{\"type\":{\"type\":\"string\",\"enum\":[\"delete\"]},\"id\":{\"type\":\"string\",\"description\":\"id of block to delete\"}},\"required\":[\"type\",\"id\"],\"additionalProperties\":false}]}}},\"additionalProperties\":false,\"required\":[\"operations\"],\"$defs\":{\"styles\":{\"type\":\"object\",\"properties\":{\"bold\":{\"type\":\"boolean\"},\"italic\":{\"type\":\"boolean\"},\"underline\":{\"type\":\"boolean\"},\"strike\":{\"type\":\"boolean\"},\"code\":{\"type\":\"boolean\"},\"textColor\":{\"type\":\"string\"},\"backgroundColor\":{\"type\":\"string\"}},\"additionalProperties\":false},\"styledtext\":{\"type\":\"object\",\"properties\":{\"type\":{\"type\":\"string\",\"enum\":[\"text\"]},\"text\":{\"type\":\"string\"},\"styles\":{\"$ref\":\"#/$defs/styles\"}},\"additionalProperties\":false,\"required\":[\"type\",\"text\"]},\"inlinecontent\":{\"type\":\"array\",\"items\":{\"anyOf\":[{\"type\":\"object\",\"properties\":{\"type\":{\"type\":\"string\",\"enum\":[\"mention\"]},\"props\":{\"type\":\"object\",\"properties\":{\"user\":{\"type\":\"string\"}},\"additionalProperties\":false}},\"additionalProperties\":false,\"required\":[\"type\"]},{\"$ref\":\"#/$defs/styledtext\"},{\"type\":\"object\",\"properties\":{\"type\":{\"type\":\"string\",\"enum\":[\"link\"]},\"content\":{\"type\":\"array\",\"items\":{\"$ref\":\"#/$defs/styledtext\"}},\"href\":{\"type\":\"string\"}},\"additionalProperties\":false,\"required\":[\"type\",\"href\",\"content\"]}]}},\"block\":{\"anyOf\":[{\"type\":\"object\",\"properties\":{\"type\":{\"type\":\"string\",\"enum\":[\"paragraph\",\"quote\",\"toggleListItem\",\"bulletListItem\",\"numberedListItem\"]},\"content\":{\"$ref\":\"#/$defs/inlinecontent\"},\"props\":{\"type\":\"object\",\"properties\":{},\"additionalProperties\":false}},\"additionalProperties\":false,\"required\":[\"type\"]},{\"type\":\"object\",\"properties\":{\"type\":{\"type\":\"string\",\"enum\":[\"heading\"]},\"content\":{\"$ref\":\"#/$defs/inlinecontent\"},\"props\":{\"type\":\"object\",\"properties\":{\"level\":{\"type\":\"number\",\"enum\":[1,2,3]},\"isTogglable\":{\"type\":\"boolean\"}},\"additionalProperties\":false}},\"additionalProperties\":false,\"required\":[\"type\"]},{\"type\":\"object\",\"properties\":{\"type\":{\"type\":\"string\",\"enum\":[\"codeBlock\"]},\"content\":{\"$ref\":\"#/$defs/inlinecontent\"},\"props\":{\"type\":\"object\",\"properties\":{\"language\":{\"type\":\"string\"}},\"additionalProperties\":false}},\"additionalProperties\":false,\"required\":[\"type\"]},{\"type\":\"object\",\"properties\":{\"type\":{\"type\":\"string\",\"enum\":[\"checkListItem\"]},\"content\":{\"$ref\":\"#/$defs/inlinecontent\"},\"props\":{\"type\":\"object\",\"properties\":{\"checked\":{\"type\":\"boolean\"}},\"additionalProperties\":false}},\"additionalProperties\":false,\"required\":[\"type\"]},{\"type\":\"object\",\"properties\":{\"type\":{\"type\":\"string\",\"enum\":[\"table\"]},\"content\":{\"type\":\"object\",\"properties\":{}},\"props\":{\"type\":\"object\",\"properties\":{},\"additionalProperties\":false}},\"additionalProperties\":false,\"required\":[\"type\"]}]}}}}}]}", "headers": [], "cookies": [] }, "response": { "status": 200, "statusText": "", - "body": "{\n \"id\": \"chatcmpl-BgV5P70mhaftqg0lJWGIHR1wLYTvQ\",\n \"object\": \"chat.completion\",\n \"created\": 1749468971,\n \"model\": \"gpt-4o-2024-08-06\",\n \"choices\": [\n {\n \"index\": 0,\n \"message\": {\n \"role\": \"assistant\",\n \"content\": null,\n \"tool_calls\": [\n {\n \"id\": \"call_JbQAGnfiFLaP9l6dJ6wfbh2h\",\n \"type\": \"function\",\n \"function\": {\n \"name\": \"json\",\n \"arguments\": \"{\\\"operations\\\":[{\\\"type\\\":\\\"update\\\",\\\"id\\\":\\\"ref2$\\\",\\\"block\\\":{\\\"type\\\":\\\"paragraph\\\",\\\"content\\\":[{\\\"type\\\":\\\"text\\\",\\\"text\\\":\\\"Hallo\\\",\\\"styles\\\":{}}]}}]}\"\n }\n }\n ],\n \"refusal\": null,\n \"annotations\": []\n },\n \"logprobs\": null,\n \"finish_reason\": \"stop\"\n }\n ],\n \"usage\": {\n \"prompt_tokens\": 1054,\n \"completion_tokens\": 38,\n \"total_tokens\": 1092,\n \"prompt_tokens_details\": {\n \"cached_tokens\": 1024,\n \"audio_tokens\": 0\n },\n \"completion_tokens_details\": {\n \"reasoning_tokens\": 0,\n \"audio_tokens\": 0,\n \"accepted_prediction_tokens\": 0,\n \"rejected_prediction_tokens\": 0\n }\n },\n \"service_tier\": \"default\",\n \"system_fingerprint\": \"fp_a288987b44\"\n}\n", + "body": "{\n \"id\": \"chatcmpl-BhXnfazVIvU3eXjpwovl25PFqetc3\",\n \"object\": \"chat.completion\",\n \"created\": 1749717731,\n \"model\": \"gpt-4o-2024-08-06\",\n \"choices\": [\n {\n \"index\": 0,\n \"message\": {\n \"role\": \"assistant\",\n \"content\": null,\n \"tool_calls\": [\n {\n \"id\": \"call_nizNBD8w68MxKx4LcZTbqyzD\",\n \"type\": \"function\",\n \"function\": {\n \"name\": \"json\",\n \"arguments\": \"{\\\"operations\\\":[{\\\"type\\\":\\\"update\\\",\\\"id\\\":\\\"ref2$\\\",\\\"block\\\":{\\\"type\\\":\\\"paragraph\\\",\\\"content\\\":[{\\\"type\\\":\\\"text\\\",\\\"text\\\":\\\"Hallo\\\",\\\"styles\\\":{}}]}}]}\"\n }\n }\n ],\n \"refusal\": null,\n \"annotations\": []\n },\n \"logprobs\": null,\n \"finish_reason\": \"stop\"\n }\n ],\n \"usage\": {\n \"prompt_tokens\": 1082,\n \"completion_tokens\": 38,\n \"total_tokens\": 1120,\n \"prompt_tokens_details\": {\n \"cached_tokens\": 1024,\n \"audio_tokens\": 0\n },\n \"completion_tokens_details\": {\n \"reasoning_tokens\": 0,\n \"audio_tokens\": 0,\n \"accepted_prediction_tokens\": 0,\n \"rejected_prediction_tokens\": 0\n }\n },\n \"service_tier\": \"default\",\n \"system_fingerprint\": \"fp_07871e2ad8\"\n}\n", "headers": [] } } \ No newline at end of file diff --git a/packages/xl-ai/src/api/formats/json/__snapshots__/json.test.ts/Update/__msw_snapshots__/openai.chat/gpt-4o-2024-08-06 (non-streaming)/turn paragraphs into list_1_c704dd8060467f285e008fcfa10bd3b9.json b/packages/xl-ai/src/api/formats/json/__snapshots__/json.test.ts/Update/__msw_snapshots__/openai.chat/gpt-4o-2024-08-06 (non-streaming)/turn paragraphs into list_1_641282d2e6c4ebf728bf3d68a286275b.json similarity index 74% rename from packages/xl-ai/src/api/formats/json/__snapshots__/json.test.ts/Update/__msw_snapshots__/openai.chat/gpt-4o-2024-08-06 (non-streaming)/turn paragraphs into list_1_c704dd8060467f285e008fcfa10bd3b9.json rename to packages/xl-ai/src/api/formats/json/__snapshots__/json.test.ts/Update/__msw_snapshots__/openai.chat/gpt-4o-2024-08-06 (non-streaming)/turn paragraphs into list_1_641282d2e6c4ebf728bf3d68a286275b.json index 74c90e58a9..e32cf0941f 100644 --- a/packages/xl-ai/src/api/formats/json/__snapshots__/json.test.ts/Update/__msw_snapshots__/openai.chat/gpt-4o-2024-08-06 (non-streaming)/turn paragraphs into list_1_c704dd8060467f285e008fcfa10bd3b9.json +++ b/packages/xl-ai/src/api/formats/json/__snapshots__/json.test.ts/Update/__msw_snapshots__/openai.chat/gpt-4o-2024-08-06 (non-streaming)/turn paragraphs into list_1_641282d2e6c4ebf728bf3d68a286275b.json @@ -2,14 +2,14 @@ "request": { "method": "POST", "url": "https://localhost:3000/ai?provider=openai&url=https%3A%2F%2Fapi.openai.com%2Fv1%2Fchat%2Fcompletions", - "body": "{\"model\":\"gpt-4o-2024-08-06\",\"temperature\":0,\"messages\":[{\"role\":\"system\",\"content\":\"You're manipulating a selected part of a text document using JSON blocks. \\n Make sure to follow the json schema provided and always include the trailing $ in ids. \\n This is the selection as an array of JSON blocks:\"},{\"role\":\"system\",\"content\":\"[{\\\"id\\\":\\\"ref2$\\\",\\\"block\\\":{\\\"id\\\":\\\"ref2\\\",\\\"type\\\":\\\"paragraph\\\",\\\"props\\\":{\\\"textColor\\\":\\\"default\\\",\\\"backgroundColor\\\":\\\"default\\\",\\\"textAlignment\\\":\\\"left\\\"},\\\"content\\\":[{\\\"type\\\":\\\"text\\\",\\\"text\\\":\\\"Apples\\\",\\\"styles\\\":{}}],\\\"children\\\":[]}},{\\\"id\\\":\\\"ref3$\\\",\\\"block\\\":{\\\"id\\\":\\\"ref3\\\",\\\"type\\\":\\\"paragraph\\\",\\\"props\\\":{\\\"textColor\\\":\\\"default\\\",\\\"backgroundColor\\\":\\\"default\\\",\\\"textAlignment\\\":\\\"left\\\"},\\\"content\\\":[{\\\"type\\\":\\\"text\\\",\\\"text\\\":\\\"Bananas\\\",\\\"styles\\\":{}}],\\\"children\\\":[]}}]\"},{\"role\":\"system\",\"content\":\"This is the entire document (INCLUDING the selected text), find the selected text in there to understand the context:\"},{\"role\":\"system\",\"content\":\"[{\\\"block\\\":{\\\"type\\\":\\\"paragraph\\\",\\\"props\\\":{\\\"textColor\\\":\\\"default\\\",\\\"backgroundColor\\\":\\\"default\\\",\\\"textAlignment\\\":\\\"left\\\"},\\\"content\\\":[{\\\"type\\\":\\\"text\\\",\\\"text\\\":\\\"I need to buy:\\\",\\\"styles\\\":{}}]}},{\\\"block\\\":{\\\"type\\\":\\\"paragraph\\\",\\\"props\\\":{\\\"textColor\\\":\\\"default\\\",\\\"backgroundColor\\\":\\\"default\\\",\\\"textAlignment\\\":\\\"left\\\"},\\\"content\\\":[{\\\"type\\\":\\\"text\\\",\\\"text\\\":\\\"Apples\\\",\\\"styles\\\":{}}]}},{\\\"block\\\":{\\\"type\\\":\\\"paragraph\\\",\\\"props\\\":{\\\"textColor\\\":\\\"default\\\",\\\"backgroundColor\\\":\\\"default\\\",\\\"textAlignment\\\":\\\"left\\\"},\\\"content\\\":[{\\\"type\\\":\\\"text\\\",\\\"text\\\":\\\"Bananas\\\",\\\"styles\\\":{}}]}}]\"},{\"role\":\"system\",\"content\":\"The user asks you to do the following:\"},{\"role\":\"user\",\"content\":\"turn into list (update existing blocks)\"}],\"tool_choice\":{\"type\":\"function\",\"function\":{\"name\":\"json\"}},\"tools\":[{\"type\":\"function\",\"function\":{\"name\":\"json\",\"description\":\"Respond with a JSON object.\",\"parameters\":{\"type\":\"object\",\"properties\":{\"operations\":{\"type\":\"array\",\"items\":{\"anyOf\":[{\"type\":\"object\",\"description\":\"Update a block, the new block will replace the existing block.\",\"properties\":{\"type\":{\"type\":\"string\",\"enum\":[\"update\"]},\"id\":{\"type\":\"string\",\"description\":\"id of block to update\"},\"block\":{\"$ref\":\"#/$defs/block\"}},\"required\":[\"type\",\"id\",\"block\"],\"additionalProperties\":false},{\"type\":\"object\",\"description\":\"Insert new blocks\",\"properties\":{\"type\":{\"type\":\"string\",\"enum\":[\"add\"]},\"referenceId\":{\"type\":\"string\",\"description\":\"MUST be an id of a block in the document\"},\"position\":{\"type\":\"string\",\"enum\":[\"before\",\"after\"],\"description\":\"`after` to add blocks AFTER (below) the block with `referenceId`, `before` to add the block BEFORE (above)\"},\"blocks\":{\"items\":{\"$ref\":\"#/$defs/block\"},\"type\":\"array\"}},\"required\":[\"type\",\"referenceId\",\"position\",\"blocks\"],\"additionalProperties\":false},{\"type\":\"object\",\"description\":\"Delete a block\",\"properties\":{\"type\":{\"type\":\"string\",\"enum\":[\"delete\"]},\"id\":{\"type\":\"string\",\"description\":\"id of block to delete\"}},\"required\":[\"type\",\"id\"],\"additionalProperties\":false}]}}},\"additionalProperties\":false,\"required\":[\"operations\"],\"$defs\":{\"styles\":{\"type\":\"object\",\"properties\":{\"bold\":{\"type\":\"boolean\"},\"italic\":{\"type\":\"boolean\"},\"underline\":{\"type\":\"boolean\"},\"strike\":{\"type\":\"boolean\"},\"code\":{\"type\":\"boolean\"},\"textColor\":{\"type\":\"string\"},\"backgroundColor\":{\"type\":\"string\"}},\"additionalProperties\":false},\"styledtext\":{\"type\":\"object\",\"properties\":{\"type\":{\"type\":\"string\",\"enum\":[\"text\"]},\"text\":{\"type\":\"string\"},\"styles\":{\"$ref\":\"#/$defs/styles\"}},\"additionalProperties\":false,\"required\":[\"type\",\"text\"]},\"inlinecontent\":{\"type\":\"array\",\"items\":{\"anyOf\":[{\"type\":\"object\",\"properties\":{\"type\":{\"type\":\"string\",\"enum\":[\"mention\"]},\"props\":{\"type\":\"object\",\"properties\":{\"user\":{\"type\":\"string\"}},\"additionalProperties\":false}},\"additionalProperties\":false,\"required\":[\"type\"]},{\"$ref\":\"#/$defs/styledtext\"},{\"type\":\"object\",\"properties\":{\"type\":{\"type\":\"string\",\"enum\":[\"link\"]},\"content\":{\"type\":\"array\",\"items\":{\"$ref\":\"#/$defs/styledtext\"}},\"href\":{\"type\":\"string\"}},\"additionalProperties\":false,\"required\":[\"type\",\"href\",\"content\"]}]}},\"block\":{\"anyOf\":[{\"type\":\"object\",\"properties\":{\"type\":{\"type\":\"string\",\"enum\":[\"paragraph\",\"quote\",\"bulletListItem\",\"numberedListItem\"]},\"content\":{\"$ref\":\"#/$defs/inlinecontent\"},\"props\":{\"type\":\"object\",\"properties\":{},\"additionalProperties\":false}},\"additionalProperties\":false,\"required\":[\"type\"]},{\"type\":\"object\",\"properties\":{\"type\":{\"type\":\"string\",\"enum\":[\"heading\"]},\"content\":{\"$ref\":\"#/$defs/inlinecontent\"},\"props\":{\"type\":\"object\",\"properties\":{\"level\":{\"type\":\"number\",\"enum\":[1,2,3]}},\"additionalProperties\":false}},\"additionalProperties\":false,\"required\":[\"type\"]},{\"type\":\"object\",\"properties\":{\"type\":{\"type\":\"string\",\"enum\":[\"codeBlock\"]},\"content\":{\"$ref\":\"#/$defs/inlinecontent\"},\"props\":{\"type\":\"object\",\"properties\":{\"language\":{\"type\":\"string\"}},\"additionalProperties\":false}},\"additionalProperties\":false,\"required\":[\"type\"]},{\"type\":\"object\",\"properties\":{\"type\":{\"type\":\"string\",\"enum\":[\"checkListItem\"]},\"content\":{\"$ref\":\"#/$defs/inlinecontent\"},\"props\":{\"type\":\"object\",\"properties\":{\"checked\":{\"type\":\"boolean\"}},\"additionalProperties\":false}},\"additionalProperties\":false,\"required\":[\"type\"]},{\"type\":\"object\",\"properties\":{\"type\":{\"type\":\"string\",\"enum\":[\"table\"]},\"content\":{\"type\":\"object\",\"properties\":{}},\"props\":{\"type\":\"object\",\"properties\":{},\"additionalProperties\":false}},\"additionalProperties\":false,\"required\":[\"type\"]}]}}}}}]}", + "body": "{\"model\":\"gpt-4o-2024-08-06\",\"temperature\":0,\"messages\":[{\"role\":\"system\",\"content\":\"You're manipulating a selected part of a text document using JSON blocks. \\n Make sure to follow the json schema provided and always include the trailing $ in ids. \\n This is the selection as an array of JSON blocks:\"},{\"role\":\"system\",\"content\":\"[{\\\"id\\\":\\\"ref2$\\\",\\\"block\\\":{\\\"id\\\":\\\"ref2\\\",\\\"type\\\":\\\"paragraph\\\",\\\"props\\\":{\\\"textColor\\\":\\\"default\\\",\\\"backgroundColor\\\":\\\"default\\\",\\\"textAlignment\\\":\\\"left\\\"},\\\"content\\\":[{\\\"type\\\":\\\"text\\\",\\\"text\\\":\\\"Apples\\\",\\\"styles\\\":{}}],\\\"children\\\":[]}},{\\\"id\\\":\\\"ref3$\\\",\\\"block\\\":{\\\"id\\\":\\\"ref3\\\",\\\"type\\\":\\\"paragraph\\\",\\\"props\\\":{\\\"textColor\\\":\\\"default\\\",\\\"backgroundColor\\\":\\\"default\\\",\\\"textAlignment\\\":\\\"left\\\"},\\\"content\\\":[{\\\"type\\\":\\\"text\\\",\\\"text\\\":\\\"Bananas\\\",\\\"styles\\\":{}}],\\\"children\\\":[]}}]\"},{\"role\":\"system\",\"content\":\"This is the entire document (INCLUDING the selected text), find the selected text in there to understand the context:\"},{\"role\":\"system\",\"content\":\"[{\\\"block\\\":{\\\"type\\\":\\\"paragraph\\\",\\\"props\\\":{\\\"textColor\\\":\\\"default\\\",\\\"backgroundColor\\\":\\\"default\\\",\\\"textAlignment\\\":\\\"left\\\"},\\\"content\\\":[{\\\"type\\\":\\\"text\\\",\\\"text\\\":\\\"I need to buy:\\\",\\\"styles\\\":{}}]}},{\\\"block\\\":{\\\"type\\\":\\\"paragraph\\\",\\\"props\\\":{\\\"textColor\\\":\\\"default\\\",\\\"backgroundColor\\\":\\\"default\\\",\\\"textAlignment\\\":\\\"left\\\"},\\\"content\\\":[{\\\"type\\\":\\\"text\\\",\\\"text\\\":\\\"Apples\\\",\\\"styles\\\":{}}]}},{\\\"block\\\":{\\\"type\\\":\\\"paragraph\\\",\\\"props\\\":{\\\"textColor\\\":\\\"default\\\",\\\"backgroundColor\\\":\\\"default\\\",\\\"textAlignment\\\":\\\"left\\\"},\\\"content\\\":[{\\\"type\\\":\\\"text\\\",\\\"text\\\":\\\"Bananas\\\",\\\"styles\\\":{}}]}}]\"},{\"role\":\"system\",\"content\":\"The user asks you to do the following:\"},{\"role\":\"user\",\"content\":\"turn into list (update existing blocks)\"}],\"tool_choice\":{\"type\":\"function\",\"function\":{\"name\":\"json\"}},\"tools\":[{\"type\":\"function\",\"function\":{\"name\":\"json\",\"description\":\"Respond with a JSON object.\",\"parameters\":{\"type\":\"object\",\"properties\":{\"operations\":{\"type\":\"array\",\"items\":{\"anyOf\":[{\"type\":\"object\",\"description\":\"Update a block, the new block will replace the existing block.\",\"properties\":{\"type\":{\"type\":\"string\",\"enum\":[\"update\"]},\"id\":{\"type\":\"string\",\"description\":\"id of block to update\"},\"block\":{\"$ref\":\"#/$defs/block\"}},\"required\":[\"type\",\"id\",\"block\"],\"additionalProperties\":false},{\"type\":\"object\",\"description\":\"Insert new blocks\",\"properties\":{\"type\":{\"type\":\"string\",\"enum\":[\"add\"]},\"referenceId\":{\"type\":\"string\",\"description\":\"MUST be an id of a block in the document\"},\"position\":{\"type\":\"string\",\"enum\":[\"before\",\"after\"],\"description\":\"`after` to add blocks AFTER (below) the block with `referenceId`, `before` to add the block BEFORE (above)\"},\"blocks\":{\"items\":{\"$ref\":\"#/$defs/block\"},\"type\":\"array\"}},\"required\":[\"type\",\"referenceId\",\"position\",\"blocks\"],\"additionalProperties\":false},{\"type\":\"object\",\"description\":\"Delete a block\",\"properties\":{\"type\":{\"type\":\"string\",\"enum\":[\"delete\"]},\"id\":{\"type\":\"string\",\"description\":\"id of block to delete\"}},\"required\":[\"type\",\"id\"],\"additionalProperties\":false}]}}},\"additionalProperties\":false,\"required\":[\"operations\"],\"$defs\":{\"styles\":{\"type\":\"object\",\"properties\":{\"bold\":{\"type\":\"boolean\"},\"italic\":{\"type\":\"boolean\"},\"underline\":{\"type\":\"boolean\"},\"strike\":{\"type\":\"boolean\"},\"code\":{\"type\":\"boolean\"},\"textColor\":{\"type\":\"string\"},\"backgroundColor\":{\"type\":\"string\"}},\"additionalProperties\":false},\"styledtext\":{\"type\":\"object\",\"properties\":{\"type\":{\"type\":\"string\",\"enum\":[\"text\"]},\"text\":{\"type\":\"string\"},\"styles\":{\"$ref\":\"#/$defs/styles\"}},\"additionalProperties\":false,\"required\":[\"type\",\"text\"]},\"inlinecontent\":{\"type\":\"array\",\"items\":{\"anyOf\":[{\"type\":\"object\",\"properties\":{\"type\":{\"type\":\"string\",\"enum\":[\"mention\"]},\"props\":{\"type\":\"object\",\"properties\":{\"user\":{\"type\":\"string\"}},\"additionalProperties\":false}},\"additionalProperties\":false,\"required\":[\"type\"]},{\"$ref\":\"#/$defs/styledtext\"},{\"type\":\"object\",\"properties\":{\"type\":{\"type\":\"string\",\"enum\":[\"link\"]},\"content\":{\"type\":\"array\",\"items\":{\"$ref\":\"#/$defs/styledtext\"}},\"href\":{\"type\":\"string\"}},\"additionalProperties\":false,\"required\":[\"type\",\"href\",\"content\"]}]}},\"block\":{\"anyOf\":[{\"type\":\"object\",\"properties\":{\"type\":{\"type\":\"string\",\"enum\":[\"paragraph\",\"quote\",\"toggleListItem\",\"bulletListItem\",\"numberedListItem\"]},\"content\":{\"$ref\":\"#/$defs/inlinecontent\"},\"props\":{\"type\":\"object\",\"properties\":{},\"additionalProperties\":false}},\"additionalProperties\":false,\"required\":[\"type\"]},{\"type\":\"object\",\"properties\":{\"type\":{\"type\":\"string\",\"enum\":[\"heading\"]},\"content\":{\"$ref\":\"#/$defs/inlinecontent\"},\"props\":{\"type\":\"object\",\"properties\":{\"level\":{\"type\":\"number\",\"enum\":[1,2,3]},\"isTogglable\":{\"type\":\"boolean\"}},\"additionalProperties\":false}},\"additionalProperties\":false,\"required\":[\"type\"]},{\"type\":\"object\",\"properties\":{\"type\":{\"type\":\"string\",\"enum\":[\"codeBlock\"]},\"content\":{\"$ref\":\"#/$defs/inlinecontent\"},\"props\":{\"type\":\"object\",\"properties\":{\"language\":{\"type\":\"string\"}},\"additionalProperties\":false}},\"additionalProperties\":false,\"required\":[\"type\"]},{\"type\":\"object\",\"properties\":{\"type\":{\"type\":\"string\",\"enum\":[\"checkListItem\"]},\"content\":{\"$ref\":\"#/$defs/inlinecontent\"},\"props\":{\"type\":\"object\",\"properties\":{\"checked\":{\"type\":\"boolean\"}},\"additionalProperties\":false}},\"additionalProperties\":false,\"required\":[\"type\"]},{\"type\":\"object\",\"properties\":{\"type\":{\"type\":\"string\",\"enum\":[\"table\"]},\"content\":{\"type\":\"object\",\"properties\":{}},\"props\":{\"type\":\"object\",\"properties\":{},\"additionalProperties\":false}},\"additionalProperties\":false,\"required\":[\"type\"]}]}}}}}]}", "headers": [], "cookies": [] }, "response": { "status": 200, "statusText": "", - "body": "{\n \"id\": \"chatcmpl-BgV5m3L4LC78dSwdDihojjNHBZeO6\",\n \"object\": \"chat.completion\",\n \"created\": 1749468994,\n \"model\": \"gpt-4o-2024-08-06\",\n \"choices\": [\n {\n \"index\": 0,\n \"message\": {\n \"role\": \"assistant\",\n \"content\": null,\n \"tool_calls\": [\n {\n \"id\": \"call_XwAu4eqXTjoB4p76xgXlzp7a\",\n \"type\": \"function\",\n \"function\": {\n \"name\": \"json\",\n \"arguments\": \"{\\\"operations\\\":[{\\\"type\\\":\\\"update\\\",\\\"id\\\":\\\"ref2$\\\",\\\"block\\\":{\\\"type\\\":\\\"bulletListItem\\\",\\\"content\\\":[{\\\"type\\\":\\\"text\\\",\\\"text\\\":\\\"Apples\\\",\\\"styles\\\":{}}]}},{\\\"type\\\":\\\"update\\\",\\\"id\\\":\\\"ref3$\\\",\\\"block\\\":{\\\"type\\\":\\\"bulletListItem\\\",\\\"content\\\":[{\\\"type\\\":\\\"text\\\",\\\"text\\\":\\\"Bananas\\\",\\\"styles\\\":{}}]}}]}\"\n }\n }\n ],\n \"refusal\": null,\n \"annotations\": []\n },\n \"logprobs\": null,\n \"finish_reason\": \"stop\"\n }\n ],\n \"usage\": {\n \"prompt_tokens\": 997,\n \"completion_tokens\": 77,\n \"total_tokens\": 1074,\n \"prompt_tokens_details\": {\n \"cached_tokens\": 0,\n \"audio_tokens\": 0\n },\n \"completion_tokens_details\": {\n \"reasoning_tokens\": 0,\n \"audio_tokens\": 0,\n \"accepted_prediction_tokens\": 0,\n \"rejected_prediction_tokens\": 0\n }\n },\n \"service_tier\": \"default\",\n \"system_fingerprint\": \"fp_a288987b44\"\n}\n", + "body": "{\n \"id\": \"chatcmpl-BhXo1m2dj966QDsUcE41GwoRkcOGF\",\n \"object\": \"chat.completion\",\n \"created\": 1749717753,\n \"model\": \"gpt-4o-2024-08-06\",\n \"choices\": [\n {\n \"index\": 0,\n \"message\": {\n \"role\": \"assistant\",\n \"content\": null,\n \"tool_calls\": [\n {\n \"id\": \"call_z8pazs4fJ5OlpkZyzJ63xUSf\",\n \"type\": \"function\",\n \"function\": {\n \"name\": \"json\",\n \"arguments\": \"{\\\"operations\\\":[{\\\"type\\\":\\\"update\\\",\\\"id\\\":\\\"ref2$\\\",\\\"block\\\":{\\\"type\\\":\\\"bulletListItem\\\",\\\"content\\\":[{\\\"type\\\":\\\"text\\\",\\\"text\\\":\\\"Apples\\\",\\\"styles\\\":{}}]}},{\\\"type\\\":\\\"update\\\",\\\"id\\\":\\\"ref3$\\\",\\\"block\\\":{\\\"type\\\":\\\"bulletListItem\\\",\\\"content\\\":[{\\\"type\\\":\\\"text\\\",\\\"text\\\":\\\"Bananas\\\",\\\"styles\\\":{}}]}}]}\"\n }\n }\n ],\n \"refusal\": null,\n \"annotations\": []\n },\n \"logprobs\": null,\n \"finish_reason\": \"stop\"\n }\n ],\n \"usage\": {\n \"prompt_tokens\": 1025,\n \"completion_tokens\": 77,\n \"total_tokens\": 1102,\n \"prompt_tokens_details\": {\n \"cached_tokens\": 1024,\n \"audio_tokens\": 0\n },\n \"completion_tokens_details\": {\n \"reasoning_tokens\": 0,\n \"audio_tokens\": 0,\n \"accepted_prediction_tokens\": 0,\n \"rejected_prediction_tokens\": 0\n }\n },\n \"service_tier\": \"default\",\n \"system_fingerprint\": \"fp_07871e2ad8\"\n}\n", "headers": [] } } \ No newline at end of file diff --git a/packages/xl-ai/src/api/formats/json/__snapshots__/json.test.ts/Update/__msw_snapshots__/openai.chat/gpt-4o-2024-08-06 (non-streaming)/update block prop and content_1_cad8678d1ad078c86688dfc8856de388.json b/packages/xl-ai/src/api/formats/json/__snapshots__/json.test.ts/Update/__msw_snapshots__/openai.chat/gpt-4o-2024-08-06 (non-streaming)/update block prop and content_1_6e4f57cf3fcf574fce4674028b82932a.json similarity index 76% rename from packages/xl-ai/src/api/formats/json/__snapshots__/json.test.ts/Update/__msw_snapshots__/openai.chat/gpt-4o-2024-08-06 (non-streaming)/update block prop and content_1_cad8678d1ad078c86688dfc8856de388.json rename to packages/xl-ai/src/api/formats/json/__snapshots__/json.test.ts/Update/__msw_snapshots__/openai.chat/gpt-4o-2024-08-06 (non-streaming)/update block prop and content_1_6e4f57cf3fcf574fce4674028b82932a.json index 576008e61c..2ce609ea26 100644 --- a/packages/xl-ai/src/api/formats/json/__snapshots__/json.test.ts/Update/__msw_snapshots__/openai.chat/gpt-4o-2024-08-06 (non-streaming)/update block prop and content_1_cad8678d1ad078c86688dfc8856de388.json +++ b/packages/xl-ai/src/api/formats/json/__snapshots__/json.test.ts/Update/__msw_snapshots__/openai.chat/gpt-4o-2024-08-06 (non-streaming)/update block prop and content_1_6e4f57cf3fcf574fce4674028b82932a.json @@ -2,14 +2,14 @@ "request": { "method": "POST", "url": "https://localhost:3000/ai?provider=openai&url=https%3A%2F%2Fapi.openai.com%2Fv1%2Fchat%2Fcompletions", - "body": "{\"model\":\"gpt-4o-2024-08-06\",\"temperature\":0,\"messages\":[{\"role\":\"system\",\"content\":\"You're manipulating a text document using JSON blocks. \\n Make sure to follow the json schema provided. When referencing ids they MUST be EXACTLY the same (including the trailing $). \\n This is the document as an array of JSON blocks (the cursor is BETWEEN two blocks as indicated by cursor: true):\"},{\"role\":\"system\",\"content\":\"[{\\\"id\\\":\\\"ref1$\\\",\\\"block\\\":{\\\"id\\\":\\\"ref1\\\",\\\"type\\\":\\\"paragraph\\\",\\\"props\\\":{\\\"textColor\\\":\\\"default\\\",\\\"backgroundColor\\\":\\\"default\\\",\\\"textAlignment\\\":\\\"left\\\"},\\\"content\\\":[{\\\"type\\\":\\\"text\\\",\\\"text\\\":\\\"Hello, world!\\\",\\\"styles\\\":{}}]}},{\\\"cursor\\\":true},{\\\"id\\\":\\\"ref2$\\\",\\\"block\\\":{\\\"id\\\":\\\"ref2\\\",\\\"type\\\":\\\"paragraph\\\",\\\"props\\\":{\\\"textColor\\\":\\\"default\\\",\\\"backgroundColor\\\":\\\"default\\\",\\\"textAlignment\\\":\\\"left\\\"},\\\"content\\\":[{\\\"type\\\":\\\"text\\\",\\\"text\\\":\\\"Hello, \\\",\\\"styles\\\":{}},{\\\"type\\\":\\\"mention\\\",\\\"props\\\":{\\\"user\\\":\\\"John Doe\\\"}},{\\\"type\\\":\\\"text\\\",\\\"text\\\":\\\"! \\\",\\\"styles\\\":{}},{\\\"type\\\":\\\"text\\\",\\\"text\\\":\\\"How are you doing?\\\",\\\"styles\\\":{\\\"bold\\\":true}},{\\\"type\\\":\\\"text\\\",\\\"text\\\":\\\" \\\",\\\"styles\\\":{}},{\\\"type\\\":\\\"text\\\",\\\"text\\\":\\\"This text is blue!\\\",\\\"styles\\\":{\\\"textColor\\\":\\\"blue\\\"}}]}},{\\\"id\\\":\\\"ref3$\\\",\\\"block\\\":{\\\"id\\\":\\\"ref3\\\",\\\"type\\\":\\\"paragraph\\\",\\\"props\\\":{\\\"textColor\\\":\\\"default\\\",\\\"backgroundColor\\\":\\\"default\\\",\\\"textAlignment\\\":\\\"left\\\"},\\\"content\\\":[{\\\"type\\\":\\\"text\\\",\\\"text\\\":\\\"Hello, world! \\\",\\\"styles\\\":{}},{\\\"type\\\":\\\"text\\\",\\\"text\\\":\\\"Bold text. \\\",\\\"styles\\\":{\\\"bold\\\":true}},{\\\"type\\\":\\\"link\\\",\\\"href\\\":\\\"https://www.google.com\\\",\\\"content\\\":[{\\\"type\\\":\\\"text\\\",\\\"text\\\":\\\"Link.\\\",\\\"styles\\\":{}}]}]}}]\"},{\"role\":\"system\",\"content\":\"The user asks you to do the following:\"},{\"role\":\"user\",\"content\":\"make the first paragraph right aligned and update the content to 'What's up, world!'\"},{\"role\":\"system\",\"content\":\"First, determine what part of the document the user is talking about. You SHOULD probably take cursor info into account if needed.\\n EXAMPLE: if user says \\\"below\\\" (without pointing to a specific part of the document) he / she probably indicates the block(s) after the cursor. \\n EXAMPLE: If you want to insert content AT the cursor position (UNLESS indicated otherwise by the user), then you need `referenceId` to point to the block before the cursor with position `after` (or block below and `before`).\\n \\n Prefer updating existing blocks over removing and adding (but this also depends on the user's question).\"}],\"tool_choice\":{\"type\":\"function\",\"function\":{\"name\":\"json\"}},\"tools\":[{\"type\":\"function\",\"function\":{\"name\":\"json\",\"description\":\"Respond with a JSON object.\",\"parameters\":{\"type\":\"object\",\"properties\":{\"operations\":{\"type\":\"array\",\"items\":{\"anyOf\":[{\"type\":\"object\",\"description\":\"Update a block, the new block will replace the existing block.\",\"properties\":{\"type\":{\"type\":\"string\",\"enum\":[\"update\"]},\"id\":{\"type\":\"string\",\"description\":\"id of block to update\"},\"block\":{\"$ref\":\"#/$defs/block\"}},\"required\":[\"type\",\"id\",\"block\"],\"additionalProperties\":false},{\"type\":\"object\",\"description\":\"Insert new blocks\",\"properties\":{\"type\":{\"type\":\"string\",\"enum\":[\"add\"]},\"referenceId\":{\"type\":\"string\",\"description\":\"MUST be an id of a block in the document\"},\"position\":{\"type\":\"string\",\"enum\":[\"before\",\"after\"],\"description\":\"`after` to add blocks AFTER (below) the block with `referenceId`, `before` to add the block BEFORE (above)\"},\"blocks\":{\"items\":{\"$ref\":\"#/$defs/block\"},\"type\":\"array\"}},\"required\":[\"type\",\"referenceId\",\"position\",\"blocks\"],\"additionalProperties\":false},{\"type\":\"object\",\"description\":\"Delete a block\",\"properties\":{\"type\":{\"type\":\"string\",\"enum\":[\"delete\"]},\"id\":{\"type\":\"string\",\"description\":\"id of block to delete\"}},\"required\":[\"type\",\"id\"],\"additionalProperties\":false}]}}},\"additionalProperties\":false,\"required\":[\"operations\"],\"$defs\":{\"styles\":{\"type\":\"object\",\"properties\":{\"bold\":{\"type\":\"boolean\"},\"italic\":{\"type\":\"boolean\"},\"underline\":{\"type\":\"boolean\"},\"strike\":{\"type\":\"boolean\"},\"code\":{\"type\":\"boolean\"},\"textColor\":{\"type\":\"string\"},\"backgroundColor\":{\"type\":\"string\"}},\"additionalProperties\":false},\"styledtext\":{\"type\":\"object\",\"properties\":{\"type\":{\"type\":\"string\",\"enum\":[\"text\"]},\"text\":{\"type\":\"string\"},\"styles\":{\"$ref\":\"#/$defs/styles\"}},\"additionalProperties\":false,\"required\":[\"type\",\"text\"]},\"inlinecontent\":{\"type\":\"array\",\"items\":{\"anyOf\":[{\"type\":\"object\",\"properties\":{\"type\":{\"type\":\"string\",\"enum\":[\"mention\"]},\"props\":{\"type\":\"object\",\"properties\":{\"user\":{\"type\":\"string\"}},\"additionalProperties\":false}},\"additionalProperties\":false,\"required\":[\"type\"]},{\"$ref\":\"#/$defs/styledtext\"},{\"type\":\"object\",\"properties\":{\"type\":{\"type\":\"string\",\"enum\":[\"link\"]},\"content\":{\"type\":\"array\",\"items\":{\"$ref\":\"#/$defs/styledtext\"}},\"href\":{\"type\":\"string\"}},\"additionalProperties\":false,\"required\":[\"type\",\"href\",\"content\"]}]}},\"block\":{\"anyOf\":[{\"type\":\"object\",\"properties\":{\"type\":{\"type\":\"string\",\"enum\":[\"paragraph\",\"quote\",\"bulletListItem\",\"numberedListItem\"]},\"content\":{\"$ref\":\"#/$defs/inlinecontent\"},\"props\":{\"type\":\"object\",\"properties\":{},\"additionalProperties\":false}},\"additionalProperties\":false,\"required\":[\"type\"]},{\"type\":\"object\",\"properties\":{\"type\":{\"type\":\"string\",\"enum\":[\"heading\"]},\"content\":{\"$ref\":\"#/$defs/inlinecontent\"},\"props\":{\"type\":\"object\",\"properties\":{\"level\":{\"type\":\"number\",\"enum\":[1,2,3]}},\"additionalProperties\":false}},\"additionalProperties\":false,\"required\":[\"type\"]},{\"type\":\"object\",\"properties\":{\"type\":{\"type\":\"string\",\"enum\":[\"codeBlock\"]},\"content\":{\"$ref\":\"#/$defs/inlinecontent\"},\"props\":{\"type\":\"object\",\"properties\":{\"language\":{\"type\":\"string\"}},\"additionalProperties\":false}},\"additionalProperties\":false,\"required\":[\"type\"]},{\"type\":\"object\",\"properties\":{\"type\":{\"type\":\"string\",\"enum\":[\"checkListItem\"]},\"content\":{\"$ref\":\"#/$defs/inlinecontent\"},\"props\":{\"type\":\"object\",\"properties\":{\"checked\":{\"type\":\"boolean\"}},\"additionalProperties\":false}},\"additionalProperties\":false,\"required\":[\"type\"]},{\"type\":\"object\",\"properties\":{\"type\":{\"type\":\"string\",\"enum\":[\"table\"]},\"content\":{\"type\":\"object\",\"properties\":{}},\"props\":{\"type\":\"object\",\"properties\":{},\"additionalProperties\":false}},\"additionalProperties\":false,\"required\":[\"type\"]}]}}}}}]}", + "body": "{\"model\":\"gpt-4o-2024-08-06\",\"temperature\":0,\"messages\":[{\"role\":\"system\",\"content\":\"You're manipulating a text document using JSON blocks. \\n Make sure to follow the json schema provided. When referencing ids they MUST be EXACTLY the same (including the trailing $). \\n This is the document as an array of JSON blocks (the cursor is BETWEEN two blocks as indicated by cursor: true):\"},{\"role\":\"system\",\"content\":\"[{\\\"id\\\":\\\"ref1$\\\",\\\"block\\\":{\\\"id\\\":\\\"ref1\\\",\\\"type\\\":\\\"paragraph\\\",\\\"props\\\":{\\\"textColor\\\":\\\"default\\\",\\\"backgroundColor\\\":\\\"default\\\",\\\"textAlignment\\\":\\\"left\\\"},\\\"content\\\":[{\\\"type\\\":\\\"text\\\",\\\"text\\\":\\\"Hello, world!\\\",\\\"styles\\\":{}}]}},{\\\"cursor\\\":true},{\\\"id\\\":\\\"ref2$\\\",\\\"block\\\":{\\\"id\\\":\\\"ref2\\\",\\\"type\\\":\\\"paragraph\\\",\\\"props\\\":{\\\"textColor\\\":\\\"default\\\",\\\"backgroundColor\\\":\\\"default\\\",\\\"textAlignment\\\":\\\"left\\\"},\\\"content\\\":[{\\\"type\\\":\\\"text\\\",\\\"text\\\":\\\"Hello, \\\",\\\"styles\\\":{}},{\\\"type\\\":\\\"mention\\\",\\\"props\\\":{\\\"user\\\":\\\"John Doe\\\"}},{\\\"type\\\":\\\"text\\\",\\\"text\\\":\\\"! \\\",\\\"styles\\\":{}},{\\\"type\\\":\\\"text\\\",\\\"text\\\":\\\"How are you doing?\\\",\\\"styles\\\":{\\\"bold\\\":true}},{\\\"type\\\":\\\"text\\\",\\\"text\\\":\\\" \\\",\\\"styles\\\":{}},{\\\"type\\\":\\\"text\\\",\\\"text\\\":\\\"This text is blue!\\\",\\\"styles\\\":{\\\"textColor\\\":\\\"blue\\\"}}]}},{\\\"id\\\":\\\"ref3$\\\",\\\"block\\\":{\\\"id\\\":\\\"ref3\\\",\\\"type\\\":\\\"paragraph\\\",\\\"props\\\":{\\\"textColor\\\":\\\"default\\\",\\\"backgroundColor\\\":\\\"default\\\",\\\"textAlignment\\\":\\\"left\\\"},\\\"content\\\":[{\\\"type\\\":\\\"text\\\",\\\"text\\\":\\\"Hello, world! \\\",\\\"styles\\\":{}},{\\\"type\\\":\\\"text\\\",\\\"text\\\":\\\"Bold text. \\\",\\\"styles\\\":{\\\"bold\\\":true}},{\\\"type\\\":\\\"link\\\",\\\"href\\\":\\\"https://www.google.com\\\",\\\"content\\\":[{\\\"type\\\":\\\"text\\\",\\\"text\\\":\\\"Link.\\\",\\\"styles\\\":{}}]}]}}]\"},{\"role\":\"system\",\"content\":\"The user asks you to do the following:\"},{\"role\":\"user\",\"content\":\"make the first paragraph right aligned and update the content to 'What's up, world!'\"},{\"role\":\"system\",\"content\":\"First, determine what part of the document the user is talking about. You SHOULD probably take cursor info into account if needed.\\n EXAMPLE: if user says \\\"below\\\" (without pointing to a specific part of the document) he / she probably indicates the block(s) after the cursor. \\n EXAMPLE: If you want to insert content AT the cursor position (UNLESS indicated otherwise by the user), then you need `referenceId` to point to the block before the cursor with position `after` (or block below and `before`).\\n \\n Prefer updating existing blocks over removing and adding (but this also depends on the user's question).\"}],\"tool_choice\":{\"type\":\"function\",\"function\":{\"name\":\"json\"}},\"tools\":[{\"type\":\"function\",\"function\":{\"name\":\"json\",\"description\":\"Respond with a JSON object.\",\"parameters\":{\"type\":\"object\",\"properties\":{\"operations\":{\"type\":\"array\",\"items\":{\"anyOf\":[{\"type\":\"object\",\"description\":\"Update a block, the new block will replace the existing block.\",\"properties\":{\"type\":{\"type\":\"string\",\"enum\":[\"update\"]},\"id\":{\"type\":\"string\",\"description\":\"id of block to update\"},\"block\":{\"$ref\":\"#/$defs/block\"}},\"required\":[\"type\",\"id\",\"block\"],\"additionalProperties\":false},{\"type\":\"object\",\"description\":\"Insert new blocks\",\"properties\":{\"type\":{\"type\":\"string\",\"enum\":[\"add\"]},\"referenceId\":{\"type\":\"string\",\"description\":\"MUST be an id of a block in the document\"},\"position\":{\"type\":\"string\",\"enum\":[\"before\",\"after\"],\"description\":\"`after` to add blocks AFTER (below) the block with `referenceId`, `before` to add the block BEFORE (above)\"},\"blocks\":{\"items\":{\"$ref\":\"#/$defs/block\"},\"type\":\"array\"}},\"required\":[\"type\",\"referenceId\",\"position\",\"blocks\"],\"additionalProperties\":false},{\"type\":\"object\",\"description\":\"Delete a block\",\"properties\":{\"type\":{\"type\":\"string\",\"enum\":[\"delete\"]},\"id\":{\"type\":\"string\",\"description\":\"id of block to delete\"}},\"required\":[\"type\",\"id\"],\"additionalProperties\":false}]}}},\"additionalProperties\":false,\"required\":[\"operations\"],\"$defs\":{\"styles\":{\"type\":\"object\",\"properties\":{\"bold\":{\"type\":\"boolean\"},\"italic\":{\"type\":\"boolean\"},\"underline\":{\"type\":\"boolean\"},\"strike\":{\"type\":\"boolean\"},\"code\":{\"type\":\"boolean\"},\"textColor\":{\"type\":\"string\"},\"backgroundColor\":{\"type\":\"string\"}},\"additionalProperties\":false},\"styledtext\":{\"type\":\"object\",\"properties\":{\"type\":{\"type\":\"string\",\"enum\":[\"text\"]},\"text\":{\"type\":\"string\"},\"styles\":{\"$ref\":\"#/$defs/styles\"}},\"additionalProperties\":false,\"required\":[\"type\",\"text\"]},\"inlinecontent\":{\"type\":\"array\",\"items\":{\"anyOf\":[{\"type\":\"object\",\"properties\":{\"type\":{\"type\":\"string\",\"enum\":[\"mention\"]},\"props\":{\"type\":\"object\",\"properties\":{\"user\":{\"type\":\"string\"}},\"additionalProperties\":false}},\"additionalProperties\":false,\"required\":[\"type\"]},{\"$ref\":\"#/$defs/styledtext\"},{\"type\":\"object\",\"properties\":{\"type\":{\"type\":\"string\",\"enum\":[\"link\"]},\"content\":{\"type\":\"array\",\"items\":{\"$ref\":\"#/$defs/styledtext\"}},\"href\":{\"type\":\"string\"}},\"additionalProperties\":false,\"required\":[\"type\",\"href\",\"content\"]}]}},\"block\":{\"anyOf\":[{\"type\":\"object\",\"properties\":{\"type\":{\"type\":\"string\",\"enum\":[\"paragraph\",\"quote\",\"toggleListItem\",\"bulletListItem\",\"numberedListItem\"]},\"content\":{\"$ref\":\"#/$defs/inlinecontent\"},\"props\":{\"type\":\"object\",\"properties\":{},\"additionalProperties\":false}},\"additionalProperties\":false,\"required\":[\"type\"]},{\"type\":\"object\",\"properties\":{\"type\":{\"type\":\"string\",\"enum\":[\"heading\"]},\"content\":{\"$ref\":\"#/$defs/inlinecontent\"},\"props\":{\"type\":\"object\",\"properties\":{\"level\":{\"type\":\"number\",\"enum\":[1,2,3]},\"isTogglable\":{\"type\":\"boolean\"}},\"additionalProperties\":false}},\"additionalProperties\":false,\"required\":[\"type\"]},{\"type\":\"object\",\"properties\":{\"type\":{\"type\":\"string\",\"enum\":[\"codeBlock\"]},\"content\":{\"$ref\":\"#/$defs/inlinecontent\"},\"props\":{\"type\":\"object\",\"properties\":{\"language\":{\"type\":\"string\"}},\"additionalProperties\":false}},\"additionalProperties\":false,\"required\":[\"type\"]},{\"type\":\"object\",\"properties\":{\"type\":{\"type\":\"string\",\"enum\":[\"checkListItem\"]},\"content\":{\"$ref\":\"#/$defs/inlinecontent\"},\"props\":{\"type\":\"object\",\"properties\":{\"checked\":{\"type\":\"boolean\"}},\"additionalProperties\":false}},\"additionalProperties\":false,\"required\":[\"type\"]},{\"type\":\"object\",\"properties\":{\"type\":{\"type\":\"string\",\"enum\":[\"table\"]},\"content\":{\"type\":\"object\",\"properties\":{}},\"props\":{\"type\":\"object\",\"properties\":{},\"additionalProperties\":false}},\"additionalProperties\":false,\"required\":[\"type\"]}]}}}}}]}", "headers": [], "cookies": [] }, "response": { "status": 200, "statusText": "", - "body": "{\n \"id\": \"chatcmpl-BgV5Uuq8IvBhnl3iIGhoaXklILDXC\",\n \"object\": \"chat.completion\",\n \"created\": 1749468976,\n \"model\": \"gpt-4o-2024-08-06\",\n \"choices\": [\n {\n \"index\": 0,\n \"message\": {\n \"role\": \"assistant\",\n \"content\": null,\n \"tool_calls\": [\n {\n \"id\": \"call_kMTNWu0Mh2TjGHJlITRq7beA\",\n \"type\": \"function\",\n \"function\": {\n \"name\": \"json\",\n \"arguments\": \"{\\\"operations\\\":[{\\\"type\\\":\\\"update\\\",\\\"id\\\":\\\"ref1$\\\",\\\"block\\\":{\\\"type\\\":\\\"paragraph\\\",\\\"props\\\":{\\\"textAlignment\\\":\\\"right\\\"},\\\"content\\\":[{\\\"type\\\":\\\"text\\\",\\\"text\\\":\\\"What's up, world!\\\"}]}}]}\"\n }\n }\n ],\n \"refusal\": null,\n \"annotations\": []\n },\n \"logprobs\": null,\n \"finish_reason\": \"stop\"\n }\n ],\n \"usage\": {\n \"prompt_tokens\": 1171,\n \"completion_tokens\": 45,\n \"total_tokens\": 1216,\n \"prompt_tokens_details\": {\n \"cached_tokens\": 0,\n \"audio_tokens\": 0\n },\n \"completion_tokens_details\": {\n \"reasoning_tokens\": 0,\n \"audio_tokens\": 0,\n \"accepted_prediction_tokens\": 0,\n \"rejected_prediction_tokens\": 0\n }\n },\n \"service_tier\": \"default\",\n \"system_fingerprint\": \"fp_07871e2ad8\"\n}\n", + "body": "{\n \"id\": \"chatcmpl-BhXnkXFIkXNYcLdpzsQKhG5f4wYYg\",\n \"object\": \"chat.completion\",\n \"created\": 1749717736,\n \"model\": \"gpt-4o-2024-08-06\",\n \"choices\": [\n {\n \"index\": 0,\n \"message\": {\n \"role\": \"assistant\",\n \"content\": null,\n \"tool_calls\": [\n {\n \"id\": \"call_gbUamjt6szK3NsPlTa68KGV9\",\n \"type\": \"function\",\n \"function\": {\n \"name\": \"json\",\n \"arguments\": \"{\\\"operations\\\":[{\\\"type\\\":\\\"update\\\",\\\"id\\\":\\\"ref1$\\\",\\\"block\\\":{\\\"type\\\":\\\"paragraph\\\",\\\"props\\\":{\\\"textAlignment\\\":\\\"right\\\"},\\\"content\\\":[{\\\"type\\\":\\\"text\\\",\\\"text\\\":\\\"What's up, world!\\\"}]}}]}\"\n }\n }\n ],\n \"refusal\": null,\n \"annotations\": []\n },\n \"logprobs\": null,\n \"finish_reason\": \"stop\"\n }\n ],\n \"usage\": {\n \"prompt_tokens\": 1199,\n \"completion_tokens\": 45,\n \"total_tokens\": 1244,\n \"prompt_tokens_details\": {\n \"cached_tokens\": 1152,\n \"audio_tokens\": 0\n },\n \"completion_tokens_details\": {\n \"reasoning_tokens\": 0,\n \"audio_tokens\": 0,\n \"accepted_prediction_tokens\": 0,\n \"rejected_prediction_tokens\": 0\n }\n },\n \"service_tier\": \"default\",\n \"system_fingerprint\": \"fp_a288987b44\"\n}\n", "headers": [] } } \ No newline at end of file diff --git a/packages/xl-ai/src/api/formats/json/__snapshots__/json.test.ts/Update/__msw_snapshots__/openai.chat/gpt-4o-2024-08-06 (non-streaming)/update block prop_1_3096bcb834d46b65acda47ac696971bc.json b/packages/xl-ai/src/api/formats/json/__snapshots__/json.test.ts/Update/__msw_snapshots__/openai.chat/gpt-4o-2024-08-06 (non-streaming)/update block prop_1_8f2af0a60aa814f37e730a6c820f86ba.json similarity index 78% rename from packages/xl-ai/src/api/formats/json/__snapshots__/json.test.ts/Update/__msw_snapshots__/openai.chat/gpt-4o-2024-08-06 (non-streaming)/update block prop_1_3096bcb834d46b65acda47ac696971bc.json rename to packages/xl-ai/src/api/formats/json/__snapshots__/json.test.ts/Update/__msw_snapshots__/openai.chat/gpt-4o-2024-08-06 (non-streaming)/update block prop_1_8f2af0a60aa814f37e730a6c820f86ba.json index f732be0418..3fd3e72b71 100644 --- a/packages/xl-ai/src/api/formats/json/__snapshots__/json.test.ts/Update/__msw_snapshots__/openai.chat/gpt-4o-2024-08-06 (non-streaming)/update block prop_1_3096bcb834d46b65acda47ac696971bc.json +++ b/packages/xl-ai/src/api/formats/json/__snapshots__/json.test.ts/Update/__msw_snapshots__/openai.chat/gpt-4o-2024-08-06 (non-streaming)/update block prop_1_8f2af0a60aa814f37e730a6c820f86ba.json @@ -2,14 +2,14 @@ "request": { "method": "POST", "url": "https://localhost:3000/ai?provider=openai&url=https%3A%2F%2Fapi.openai.com%2Fv1%2Fchat%2Fcompletions", - "body": "{\"model\":\"gpt-4o-2024-08-06\",\"temperature\":0,\"messages\":[{\"role\":\"system\",\"content\":\"You're manipulating a text document using JSON blocks. \\n Make sure to follow the json schema provided. When referencing ids they MUST be EXACTLY the same (including the trailing $). \\n This is the document as an array of JSON blocks (the cursor is BETWEEN two blocks as indicated by cursor: true):\"},{\"role\":\"system\",\"content\":\"[{\\\"id\\\":\\\"ref1$\\\",\\\"block\\\":{\\\"id\\\":\\\"ref1\\\",\\\"type\\\":\\\"paragraph\\\",\\\"props\\\":{\\\"textColor\\\":\\\"default\\\",\\\"backgroundColor\\\":\\\"default\\\",\\\"textAlignment\\\":\\\"left\\\"},\\\"content\\\":[{\\\"type\\\":\\\"text\\\",\\\"text\\\":\\\"Hello, world!\\\",\\\"styles\\\":{}}]}},{\\\"cursor\\\":true},{\\\"id\\\":\\\"ref2$\\\",\\\"block\\\":{\\\"id\\\":\\\"ref2\\\",\\\"type\\\":\\\"paragraph\\\",\\\"props\\\":{\\\"textColor\\\":\\\"default\\\",\\\"backgroundColor\\\":\\\"default\\\",\\\"textAlignment\\\":\\\"left\\\"},\\\"content\\\":[{\\\"type\\\":\\\"text\\\",\\\"text\\\":\\\"Hello, \\\",\\\"styles\\\":{}},{\\\"type\\\":\\\"mention\\\",\\\"props\\\":{\\\"user\\\":\\\"John Doe\\\"}},{\\\"type\\\":\\\"text\\\",\\\"text\\\":\\\"! \\\",\\\"styles\\\":{}},{\\\"type\\\":\\\"text\\\",\\\"text\\\":\\\"How are you doing?\\\",\\\"styles\\\":{\\\"bold\\\":true}},{\\\"type\\\":\\\"text\\\",\\\"text\\\":\\\" \\\",\\\"styles\\\":{}},{\\\"type\\\":\\\"text\\\",\\\"text\\\":\\\"This text is blue!\\\",\\\"styles\\\":{\\\"textColor\\\":\\\"blue\\\"}}]}},{\\\"id\\\":\\\"ref3$\\\",\\\"block\\\":{\\\"id\\\":\\\"ref3\\\",\\\"type\\\":\\\"paragraph\\\",\\\"props\\\":{\\\"textColor\\\":\\\"default\\\",\\\"backgroundColor\\\":\\\"default\\\",\\\"textAlignment\\\":\\\"left\\\"},\\\"content\\\":[{\\\"type\\\":\\\"text\\\",\\\"text\\\":\\\"Hello, world! \\\",\\\"styles\\\":{}},{\\\"type\\\":\\\"text\\\",\\\"text\\\":\\\"Bold text. \\\",\\\"styles\\\":{\\\"bold\\\":true}},{\\\"type\\\":\\\"link\\\",\\\"href\\\":\\\"https://www.google.com\\\",\\\"content\\\":[{\\\"type\\\":\\\"text\\\",\\\"text\\\":\\\"Link.\\\",\\\"styles\\\":{}}]}]}}]\"},{\"role\":\"system\",\"content\":\"The user asks you to do the following:\"},{\"role\":\"user\",\"content\":\"make the first paragraph right aligned\"},{\"role\":\"system\",\"content\":\"First, determine what part of the document the user is talking about. You SHOULD probably take cursor info into account if needed.\\n EXAMPLE: if user says \\\"below\\\" (without pointing to a specific part of the document) he / she probably indicates the block(s) after the cursor. \\n EXAMPLE: If you want to insert content AT the cursor position (UNLESS indicated otherwise by the user), then you need `referenceId` to point to the block before the cursor with position `after` (or block below and `before`).\\n \\n Prefer updating existing blocks over removing and adding (but this also depends on the user's question).\"}],\"tool_choice\":{\"type\":\"function\",\"function\":{\"name\":\"json\"}},\"tools\":[{\"type\":\"function\",\"function\":{\"name\":\"json\",\"description\":\"Respond with a JSON object.\",\"parameters\":{\"type\":\"object\",\"properties\":{\"operations\":{\"type\":\"array\",\"items\":{\"anyOf\":[{\"type\":\"object\",\"description\":\"Update a block, the new block will replace the existing block.\",\"properties\":{\"type\":{\"type\":\"string\",\"enum\":[\"update\"]},\"id\":{\"type\":\"string\",\"description\":\"id of block to update\"},\"block\":{\"$ref\":\"#/$defs/block\"}},\"required\":[\"type\",\"id\",\"block\"],\"additionalProperties\":false},{\"type\":\"object\",\"description\":\"Insert new blocks\",\"properties\":{\"type\":{\"type\":\"string\",\"enum\":[\"add\"]},\"referenceId\":{\"type\":\"string\",\"description\":\"MUST be an id of a block in the document\"},\"position\":{\"type\":\"string\",\"enum\":[\"before\",\"after\"],\"description\":\"`after` to add blocks AFTER (below) the block with `referenceId`, `before` to add the block BEFORE (above)\"},\"blocks\":{\"items\":{\"$ref\":\"#/$defs/block\"},\"type\":\"array\"}},\"required\":[\"type\",\"referenceId\",\"position\",\"blocks\"],\"additionalProperties\":false},{\"type\":\"object\",\"description\":\"Delete a block\",\"properties\":{\"type\":{\"type\":\"string\",\"enum\":[\"delete\"]},\"id\":{\"type\":\"string\",\"description\":\"id of block to delete\"}},\"required\":[\"type\",\"id\"],\"additionalProperties\":false}]}}},\"additionalProperties\":false,\"required\":[\"operations\"],\"$defs\":{\"styles\":{\"type\":\"object\",\"properties\":{\"bold\":{\"type\":\"boolean\"},\"italic\":{\"type\":\"boolean\"},\"underline\":{\"type\":\"boolean\"},\"strike\":{\"type\":\"boolean\"},\"code\":{\"type\":\"boolean\"},\"textColor\":{\"type\":\"string\"},\"backgroundColor\":{\"type\":\"string\"}},\"additionalProperties\":false},\"styledtext\":{\"type\":\"object\",\"properties\":{\"type\":{\"type\":\"string\",\"enum\":[\"text\"]},\"text\":{\"type\":\"string\"},\"styles\":{\"$ref\":\"#/$defs/styles\"}},\"additionalProperties\":false,\"required\":[\"type\",\"text\"]},\"inlinecontent\":{\"type\":\"array\",\"items\":{\"anyOf\":[{\"type\":\"object\",\"properties\":{\"type\":{\"type\":\"string\",\"enum\":[\"mention\"]},\"props\":{\"type\":\"object\",\"properties\":{\"user\":{\"type\":\"string\"}},\"additionalProperties\":false}},\"additionalProperties\":false,\"required\":[\"type\"]},{\"$ref\":\"#/$defs/styledtext\"},{\"type\":\"object\",\"properties\":{\"type\":{\"type\":\"string\",\"enum\":[\"link\"]},\"content\":{\"type\":\"array\",\"items\":{\"$ref\":\"#/$defs/styledtext\"}},\"href\":{\"type\":\"string\"}},\"additionalProperties\":false,\"required\":[\"type\",\"href\",\"content\"]}]}},\"block\":{\"anyOf\":[{\"type\":\"object\",\"properties\":{\"type\":{\"type\":\"string\",\"enum\":[\"paragraph\",\"quote\",\"bulletListItem\",\"numberedListItem\"]},\"content\":{\"$ref\":\"#/$defs/inlinecontent\"},\"props\":{\"type\":\"object\",\"properties\":{},\"additionalProperties\":false}},\"additionalProperties\":false,\"required\":[\"type\"]},{\"type\":\"object\",\"properties\":{\"type\":{\"type\":\"string\",\"enum\":[\"heading\"]},\"content\":{\"$ref\":\"#/$defs/inlinecontent\"},\"props\":{\"type\":\"object\",\"properties\":{\"level\":{\"type\":\"number\",\"enum\":[1,2,3]}},\"additionalProperties\":false}},\"additionalProperties\":false,\"required\":[\"type\"]},{\"type\":\"object\",\"properties\":{\"type\":{\"type\":\"string\",\"enum\":[\"codeBlock\"]},\"content\":{\"$ref\":\"#/$defs/inlinecontent\"},\"props\":{\"type\":\"object\",\"properties\":{\"language\":{\"type\":\"string\"}},\"additionalProperties\":false}},\"additionalProperties\":false,\"required\":[\"type\"]},{\"type\":\"object\",\"properties\":{\"type\":{\"type\":\"string\",\"enum\":[\"checkListItem\"]},\"content\":{\"$ref\":\"#/$defs/inlinecontent\"},\"props\":{\"type\":\"object\",\"properties\":{\"checked\":{\"type\":\"boolean\"}},\"additionalProperties\":false}},\"additionalProperties\":false,\"required\":[\"type\"]},{\"type\":\"object\",\"properties\":{\"type\":{\"type\":\"string\",\"enum\":[\"table\"]},\"content\":{\"type\":\"object\",\"properties\":{}},\"props\":{\"type\":\"object\",\"properties\":{},\"additionalProperties\":false}},\"additionalProperties\":false,\"required\":[\"type\"]}]}}}}}]}", + "body": "{\"model\":\"gpt-4o-2024-08-06\",\"temperature\":0,\"messages\":[{\"role\":\"system\",\"content\":\"You're manipulating a text document using JSON blocks. \\n Make sure to follow the json schema provided. When referencing ids they MUST be EXACTLY the same (including the trailing $). \\n This is the document as an array of JSON blocks (the cursor is BETWEEN two blocks as indicated by cursor: true):\"},{\"role\":\"system\",\"content\":\"[{\\\"id\\\":\\\"ref1$\\\",\\\"block\\\":{\\\"id\\\":\\\"ref1\\\",\\\"type\\\":\\\"paragraph\\\",\\\"props\\\":{\\\"textColor\\\":\\\"default\\\",\\\"backgroundColor\\\":\\\"default\\\",\\\"textAlignment\\\":\\\"left\\\"},\\\"content\\\":[{\\\"type\\\":\\\"text\\\",\\\"text\\\":\\\"Hello, world!\\\",\\\"styles\\\":{}}]}},{\\\"cursor\\\":true},{\\\"id\\\":\\\"ref2$\\\",\\\"block\\\":{\\\"id\\\":\\\"ref2\\\",\\\"type\\\":\\\"paragraph\\\",\\\"props\\\":{\\\"textColor\\\":\\\"default\\\",\\\"backgroundColor\\\":\\\"default\\\",\\\"textAlignment\\\":\\\"left\\\"},\\\"content\\\":[{\\\"type\\\":\\\"text\\\",\\\"text\\\":\\\"Hello, \\\",\\\"styles\\\":{}},{\\\"type\\\":\\\"mention\\\",\\\"props\\\":{\\\"user\\\":\\\"John Doe\\\"}},{\\\"type\\\":\\\"text\\\",\\\"text\\\":\\\"! \\\",\\\"styles\\\":{}},{\\\"type\\\":\\\"text\\\",\\\"text\\\":\\\"How are you doing?\\\",\\\"styles\\\":{\\\"bold\\\":true}},{\\\"type\\\":\\\"text\\\",\\\"text\\\":\\\" \\\",\\\"styles\\\":{}},{\\\"type\\\":\\\"text\\\",\\\"text\\\":\\\"This text is blue!\\\",\\\"styles\\\":{\\\"textColor\\\":\\\"blue\\\"}}]}},{\\\"id\\\":\\\"ref3$\\\",\\\"block\\\":{\\\"id\\\":\\\"ref3\\\",\\\"type\\\":\\\"paragraph\\\",\\\"props\\\":{\\\"textColor\\\":\\\"default\\\",\\\"backgroundColor\\\":\\\"default\\\",\\\"textAlignment\\\":\\\"left\\\"},\\\"content\\\":[{\\\"type\\\":\\\"text\\\",\\\"text\\\":\\\"Hello, world! \\\",\\\"styles\\\":{}},{\\\"type\\\":\\\"text\\\",\\\"text\\\":\\\"Bold text. \\\",\\\"styles\\\":{\\\"bold\\\":true}},{\\\"type\\\":\\\"link\\\",\\\"href\\\":\\\"https://www.google.com\\\",\\\"content\\\":[{\\\"type\\\":\\\"text\\\",\\\"text\\\":\\\"Link.\\\",\\\"styles\\\":{}}]}]}}]\"},{\"role\":\"system\",\"content\":\"The user asks you to do the following:\"},{\"role\":\"user\",\"content\":\"make the first paragraph right aligned\"},{\"role\":\"system\",\"content\":\"First, determine what part of the document the user is talking about. You SHOULD probably take cursor info into account if needed.\\n EXAMPLE: if user says \\\"below\\\" (without pointing to a specific part of the document) he / she probably indicates the block(s) after the cursor. \\n EXAMPLE: If you want to insert content AT the cursor position (UNLESS indicated otherwise by the user), then you need `referenceId` to point to the block before the cursor with position `after` (or block below and `before`).\\n \\n Prefer updating existing blocks over removing and adding (but this also depends on the user's question).\"}],\"tool_choice\":{\"type\":\"function\",\"function\":{\"name\":\"json\"}},\"tools\":[{\"type\":\"function\",\"function\":{\"name\":\"json\",\"description\":\"Respond with a JSON object.\",\"parameters\":{\"type\":\"object\",\"properties\":{\"operations\":{\"type\":\"array\",\"items\":{\"anyOf\":[{\"type\":\"object\",\"description\":\"Update a block, the new block will replace the existing block.\",\"properties\":{\"type\":{\"type\":\"string\",\"enum\":[\"update\"]},\"id\":{\"type\":\"string\",\"description\":\"id of block to update\"},\"block\":{\"$ref\":\"#/$defs/block\"}},\"required\":[\"type\",\"id\",\"block\"],\"additionalProperties\":false},{\"type\":\"object\",\"description\":\"Insert new blocks\",\"properties\":{\"type\":{\"type\":\"string\",\"enum\":[\"add\"]},\"referenceId\":{\"type\":\"string\",\"description\":\"MUST be an id of a block in the document\"},\"position\":{\"type\":\"string\",\"enum\":[\"before\",\"after\"],\"description\":\"`after` to add blocks AFTER (below) the block with `referenceId`, `before` to add the block BEFORE (above)\"},\"blocks\":{\"items\":{\"$ref\":\"#/$defs/block\"},\"type\":\"array\"}},\"required\":[\"type\",\"referenceId\",\"position\",\"blocks\"],\"additionalProperties\":false},{\"type\":\"object\",\"description\":\"Delete a block\",\"properties\":{\"type\":{\"type\":\"string\",\"enum\":[\"delete\"]},\"id\":{\"type\":\"string\",\"description\":\"id of block to delete\"}},\"required\":[\"type\",\"id\"],\"additionalProperties\":false}]}}},\"additionalProperties\":false,\"required\":[\"operations\"],\"$defs\":{\"styles\":{\"type\":\"object\",\"properties\":{\"bold\":{\"type\":\"boolean\"},\"italic\":{\"type\":\"boolean\"},\"underline\":{\"type\":\"boolean\"},\"strike\":{\"type\":\"boolean\"},\"code\":{\"type\":\"boolean\"},\"textColor\":{\"type\":\"string\"},\"backgroundColor\":{\"type\":\"string\"}},\"additionalProperties\":false},\"styledtext\":{\"type\":\"object\",\"properties\":{\"type\":{\"type\":\"string\",\"enum\":[\"text\"]},\"text\":{\"type\":\"string\"},\"styles\":{\"$ref\":\"#/$defs/styles\"}},\"additionalProperties\":false,\"required\":[\"type\",\"text\"]},\"inlinecontent\":{\"type\":\"array\",\"items\":{\"anyOf\":[{\"type\":\"object\",\"properties\":{\"type\":{\"type\":\"string\",\"enum\":[\"mention\"]},\"props\":{\"type\":\"object\",\"properties\":{\"user\":{\"type\":\"string\"}},\"additionalProperties\":false}},\"additionalProperties\":false,\"required\":[\"type\"]},{\"$ref\":\"#/$defs/styledtext\"},{\"type\":\"object\",\"properties\":{\"type\":{\"type\":\"string\",\"enum\":[\"link\"]},\"content\":{\"type\":\"array\",\"items\":{\"$ref\":\"#/$defs/styledtext\"}},\"href\":{\"type\":\"string\"}},\"additionalProperties\":false,\"required\":[\"type\",\"href\",\"content\"]}]}},\"block\":{\"anyOf\":[{\"type\":\"object\",\"properties\":{\"type\":{\"type\":\"string\",\"enum\":[\"paragraph\",\"quote\",\"toggleListItem\",\"bulletListItem\",\"numberedListItem\"]},\"content\":{\"$ref\":\"#/$defs/inlinecontent\"},\"props\":{\"type\":\"object\",\"properties\":{},\"additionalProperties\":false}},\"additionalProperties\":false,\"required\":[\"type\"]},{\"type\":\"object\",\"properties\":{\"type\":{\"type\":\"string\",\"enum\":[\"heading\"]},\"content\":{\"$ref\":\"#/$defs/inlinecontent\"},\"props\":{\"type\":\"object\",\"properties\":{\"level\":{\"type\":\"number\",\"enum\":[1,2,3]},\"isTogglable\":{\"type\":\"boolean\"}},\"additionalProperties\":false}},\"additionalProperties\":false,\"required\":[\"type\"]},{\"type\":\"object\",\"properties\":{\"type\":{\"type\":\"string\",\"enum\":[\"codeBlock\"]},\"content\":{\"$ref\":\"#/$defs/inlinecontent\"},\"props\":{\"type\":\"object\",\"properties\":{\"language\":{\"type\":\"string\"}},\"additionalProperties\":false}},\"additionalProperties\":false,\"required\":[\"type\"]},{\"type\":\"object\",\"properties\":{\"type\":{\"type\":\"string\",\"enum\":[\"checkListItem\"]},\"content\":{\"$ref\":\"#/$defs/inlinecontent\"},\"props\":{\"type\":\"object\",\"properties\":{\"checked\":{\"type\":\"boolean\"}},\"additionalProperties\":false}},\"additionalProperties\":false,\"required\":[\"type\"]},{\"type\":\"object\",\"properties\":{\"type\":{\"type\":\"string\",\"enum\":[\"table\"]},\"content\":{\"type\":\"object\",\"properties\":{}},\"props\":{\"type\":\"object\",\"properties\":{},\"additionalProperties\":false}},\"additionalProperties\":false,\"required\":[\"type\"]}]}}}}}]}", "headers": [], "cookies": [] }, "response": { "status": 200, "statusText": "", - "body": "{\n \"id\": \"chatcmpl-BgV5RC5klLmwNsxswRmCJGHuHm0n9\",\n \"object\": \"chat.completion\",\n \"created\": 1749468973,\n \"model\": \"gpt-4o-2024-08-06\",\n \"choices\": [\n {\n \"index\": 0,\n \"message\": {\n \"role\": \"assistant\",\n \"content\": null,\n \"tool_calls\": [\n {\n \"id\": \"call_fR5LWYgZD9tbPV0ybFE6fRnv\",\n \"type\": \"function\",\n \"function\": {\n \"name\": \"json\",\n \"arguments\": \"{\\\"operations\\\":[{\\\"type\\\":\\\"update\\\",\\\"id\\\":\\\"ref1$\\\",\\\"block\\\":{\\\"type\\\":\\\"paragraph\\\",\\\"props\\\":{\\\"textColor\\\":\\\"default\\\",\\\"backgroundColor\\\":\\\"default\\\",\\\"textAlignment\\\":\\\"right\\\"},\\\"content\\\":[{\\\"type\\\":\\\"text\\\",\\\"text\\\":\\\"Hello, world!\\\",\\\"styles\\\":{}}]}}]}\"\n }\n }\n ],\n \"refusal\": null,\n \"annotations\": []\n },\n \"logprobs\": null,\n \"finish_reason\": \"stop\"\n }\n ],\n \"usage\": {\n \"prompt_tokens\": 1160,\n \"completion_tokens\": 59,\n \"total_tokens\": 1219,\n \"prompt_tokens_details\": {\n \"cached_tokens\": 1152,\n \"audio_tokens\": 0\n },\n \"completion_tokens_details\": {\n \"reasoning_tokens\": 0,\n \"audio_tokens\": 0,\n \"accepted_prediction_tokens\": 0,\n \"rejected_prediction_tokens\": 0\n }\n },\n \"service_tier\": \"default\",\n \"system_fingerprint\": \"fp_07871e2ad8\"\n}\n", + "body": "{\n \"id\": \"chatcmpl-BhXniP3jStgz0WwU0UpjLfVHbIzdC\",\n \"object\": \"chat.completion\",\n \"created\": 1749717734,\n \"model\": \"gpt-4o-2024-08-06\",\n \"choices\": [\n {\n \"index\": 0,\n \"message\": {\n \"role\": \"assistant\",\n \"content\": null,\n \"tool_calls\": [\n {\n \"id\": \"call_3RnJS0VICd23GpAYJW0t7SB0\",\n \"type\": \"function\",\n \"function\": {\n \"name\": \"json\",\n \"arguments\": \"{\\\"operations\\\":[{\\\"type\\\":\\\"update\\\",\\\"id\\\":\\\"ref1$\\\",\\\"block\\\":{\\\"type\\\":\\\"paragraph\\\",\\\"props\\\":{\\\"textColor\\\":\\\"default\\\",\\\"backgroundColor\\\":\\\"default\\\",\\\"textAlignment\\\":\\\"right\\\"},\\\"content\\\":[{\\\"type\\\":\\\"text\\\",\\\"text\\\":\\\"Hello, world!\\\",\\\"styles\\\":{}}]}}]}\"\n }\n }\n ],\n \"refusal\": null,\n \"annotations\": []\n },\n \"logprobs\": null,\n \"finish_reason\": \"stop\"\n }\n ],\n \"usage\": {\n \"prompt_tokens\": 1188,\n \"completion_tokens\": 59,\n \"total_tokens\": 1247,\n \"prompt_tokens_details\": {\n \"cached_tokens\": 1152,\n \"audio_tokens\": 0\n },\n \"completion_tokens_details\": {\n \"reasoning_tokens\": 0,\n \"audio_tokens\": 0,\n \"accepted_prediction_tokens\": 0,\n \"rejected_prediction_tokens\": 0\n }\n },\n \"service_tier\": \"default\",\n \"system_fingerprint\": \"fp_a288987b44\"\n}\n", "headers": [] } } \ No newline at end of file diff --git a/packages/xl-ai/src/api/formats/json/__snapshots__/json.test.ts/Update/__msw_snapshots__/openai.chat/gpt-4o-2024-08-06 (non-streaming)/update block type and content_1_aff5d525223cbc4304faac012ac837bd.json b/packages/xl-ai/src/api/formats/json/__snapshots__/json.test.ts/Update/__msw_snapshots__/openai.chat/gpt-4o-2024-08-06 (non-streaming)/update block type and content_1_186fdd764189ded0af0303b0d412aa20.json similarity index 80% rename from packages/xl-ai/src/api/formats/json/__snapshots__/json.test.ts/Update/__msw_snapshots__/openai.chat/gpt-4o-2024-08-06 (non-streaming)/update block type and content_1_aff5d525223cbc4304faac012ac837bd.json rename to packages/xl-ai/src/api/formats/json/__snapshots__/json.test.ts/Update/__msw_snapshots__/openai.chat/gpt-4o-2024-08-06 (non-streaming)/update block type and content_1_186fdd764189ded0af0303b0d412aa20.json index f536a1984d..91cc8a62b1 100644 --- a/packages/xl-ai/src/api/formats/json/__snapshots__/json.test.ts/Update/__msw_snapshots__/openai.chat/gpt-4o-2024-08-06 (non-streaming)/update block type and content_1_aff5d525223cbc4304faac012ac837bd.json +++ b/packages/xl-ai/src/api/formats/json/__snapshots__/json.test.ts/Update/__msw_snapshots__/openai.chat/gpt-4o-2024-08-06 (non-streaming)/update block type and content_1_186fdd764189ded0af0303b0d412aa20.json @@ -2,14 +2,14 @@ "request": { "method": "POST", "url": "https://localhost:3000/ai?provider=openai&url=https%3A%2F%2Fapi.openai.com%2Fv1%2Fchat%2Fcompletions", - "body": "{\"model\":\"gpt-4o-2024-08-06\",\"temperature\":0,\"messages\":[{\"role\":\"system\",\"content\":\"You're manipulating a text document using JSON blocks. \\n Make sure to follow the json schema provided. When referencing ids they MUST be EXACTLY the same (including the trailing $). \\n This is the document as an array of JSON blocks (the cursor is BETWEEN two blocks as indicated by cursor: true):\"},{\"role\":\"system\",\"content\":\"[{\\\"id\\\":\\\"ref1$\\\",\\\"block\\\":{\\\"id\\\":\\\"ref1\\\",\\\"type\\\":\\\"paragraph\\\",\\\"props\\\":{\\\"textColor\\\":\\\"default\\\",\\\"backgroundColor\\\":\\\"default\\\",\\\"textAlignment\\\":\\\"left\\\"},\\\"content\\\":[{\\\"type\\\":\\\"text\\\",\\\"text\\\":\\\"Hello, world!\\\",\\\"styles\\\":{}}]}},{\\\"cursor\\\":true},{\\\"id\\\":\\\"ref2$\\\",\\\"block\\\":{\\\"id\\\":\\\"ref2\\\",\\\"type\\\":\\\"paragraph\\\",\\\"props\\\":{\\\"textColor\\\":\\\"default\\\",\\\"backgroundColor\\\":\\\"default\\\",\\\"textAlignment\\\":\\\"left\\\"},\\\"content\\\":[{\\\"type\\\":\\\"text\\\",\\\"text\\\":\\\"Hello, \\\",\\\"styles\\\":{}},{\\\"type\\\":\\\"mention\\\",\\\"props\\\":{\\\"user\\\":\\\"John Doe\\\"}},{\\\"type\\\":\\\"text\\\",\\\"text\\\":\\\"! \\\",\\\"styles\\\":{}},{\\\"type\\\":\\\"text\\\",\\\"text\\\":\\\"How are you doing?\\\",\\\"styles\\\":{\\\"bold\\\":true}},{\\\"type\\\":\\\"text\\\",\\\"text\\\":\\\" \\\",\\\"styles\\\":{}},{\\\"type\\\":\\\"text\\\",\\\"text\\\":\\\"This text is blue!\\\",\\\"styles\\\":{\\\"textColor\\\":\\\"blue\\\"}}]}},{\\\"id\\\":\\\"ref3$\\\",\\\"block\\\":{\\\"id\\\":\\\"ref3\\\",\\\"type\\\":\\\"paragraph\\\",\\\"props\\\":{\\\"textColor\\\":\\\"default\\\",\\\"backgroundColor\\\":\\\"default\\\",\\\"textAlignment\\\":\\\"left\\\"},\\\"content\\\":[{\\\"type\\\":\\\"text\\\",\\\"text\\\":\\\"Hello, world! \\\",\\\"styles\\\":{}},{\\\"type\\\":\\\"text\\\",\\\"text\\\":\\\"Bold text. \\\",\\\"styles\\\":{\\\"bold\\\":true}},{\\\"type\\\":\\\"link\\\",\\\"href\\\":\\\"https://www.google.com\\\",\\\"content\\\":[{\\\"type\\\":\\\"text\\\",\\\"text\\\":\\\"Link.\\\",\\\"styles\\\":{}}]}]}}]\"},{\"role\":\"system\",\"content\":\"The user asks you to do the following:\"},{\"role\":\"user\",\"content\":\"make the first paragraph a heading and update the content to 'What's up, world!'\"},{\"role\":\"system\",\"content\":\"First, determine what part of the document the user is talking about. You SHOULD probably take cursor info into account if needed.\\n EXAMPLE: if user says \\\"below\\\" (without pointing to a specific part of the document) he / she probably indicates the block(s) after the cursor. \\n EXAMPLE: If you want to insert content AT the cursor position (UNLESS indicated otherwise by the user), then you need `referenceId` to point to the block before the cursor with position `after` (or block below and `before`).\\n \\n Prefer updating existing blocks over removing and adding (but this also depends on the user's question).\"}],\"tool_choice\":{\"type\":\"function\",\"function\":{\"name\":\"json\"}},\"tools\":[{\"type\":\"function\",\"function\":{\"name\":\"json\",\"description\":\"Respond with a JSON object.\",\"parameters\":{\"type\":\"object\",\"properties\":{\"operations\":{\"type\":\"array\",\"items\":{\"anyOf\":[{\"type\":\"object\",\"description\":\"Update a block, the new block will replace the existing block.\",\"properties\":{\"type\":{\"type\":\"string\",\"enum\":[\"update\"]},\"id\":{\"type\":\"string\",\"description\":\"id of block to update\"},\"block\":{\"$ref\":\"#/$defs/block\"}},\"required\":[\"type\",\"id\",\"block\"],\"additionalProperties\":false},{\"type\":\"object\",\"description\":\"Insert new blocks\",\"properties\":{\"type\":{\"type\":\"string\",\"enum\":[\"add\"]},\"referenceId\":{\"type\":\"string\",\"description\":\"MUST be an id of a block in the document\"},\"position\":{\"type\":\"string\",\"enum\":[\"before\",\"after\"],\"description\":\"`after` to add blocks AFTER (below) the block with `referenceId`, `before` to add the block BEFORE (above)\"},\"blocks\":{\"items\":{\"$ref\":\"#/$defs/block\"},\"type\":\"array\"}},\"required\":[\"type\",\"referenceId\",\"position\",\"blocks\"],\"additionalProperties\":false},{\"type\":\"object\",\"description\":\"Delete a block\",\"properties\":{\"type\":{\"type\":\"string\",\"enum\":[\"delete\"]},\"id\":{\"type\":\"string\",\"description\":\"id of block to delete\"}},\"required\":[\"type\",\"id\"],\"additionalProperties\":false}]}}},\"additionalProperties\":false,\"required\":[\"operations\"],\"$defs\":{\"styles\":{\"type\":\"object\",\"properties\":{\"bold\":{\"type\":\"boolean\"},\"italic\":{\"type\":\"boolean\"},\"underline\":{\"type\":\"boolean\"},\"strike\":{\"type\":\"boolean\"},\"code\":{\"type\":\"boolean\"},\"textColor\":{\"type\":\"string\"},\"backgroundColor\":{\"type\":\"string\"}},\"additionalProperties\":false},\"styledtext\":{\"type\":\"object\",\"properties\":{\"type\":{\"type\":\"string\",\"enum\":[\"text\"]},\"text\":{\"type\":\"string\"},\"styles\":{\"$ref\":\"#/$defs/styles\"}},\"additionalProperties\":false,\"required\":[\"type\",\"text\"]},\"inlinecontent\":{\"type\":\"array\",\"items\":{\"anyOf\":[{\"type\":\"object\",\"properties\":{\"type\":{\"type\":\"string\",\"enum\":[\"mention\"]},\"props\":{\"type\":\"object\",\"properties\":{\"user\":{\"type\":\"string\"}},\"additionalProperties\":false}},\"additionalProperties\":false,\"required\":[\"type\"]},{\"$ref\":\"#/$defs/styledtext\"},{\"type\":\"object\",\"properties\":{\"type\":{\"type\":\"string\",\"enum\":[\"link\"]},\"content\":{\"type\":\"array\",\"items\":{\"$ref\":\"#/$defs/styledtext\"}},\"href\":{\"type\":\"string\"}},\"additionalProperties\":false,\"required\":[\"type\",\"href\",\"content\"]}]}},\"block\":{\"anyOf\":[{\"type\":\"object\",\"properties\":{\"type\":{\"type\":\"string\",\"enum\":[\"paragraph\",\"quote\",\"bulletListItem\",\"numberedListItem\"]},\"content\":{\"$ref\":\"#/$defs/inlinecontent\"},\"props\":{\"type\":\"object\",\"properties\":{},\"additionalProperties\":false}},\"additionalProperties\":false,\"required\":[\"type\"]},{\"type\":\"object\",\"properties\":{\"type\":{\"type\":\"string\",\"enum\":[\"heading\"]},\"content\":{\"$ref\":\"#/$defs/inlinecontent\"},\"props\":{\"type\":\"object\",\"properties\":{\"level\":{\"type\":\"number\",\"enum\":[1,2,3]}},\"additionalProperties\":false}},\"additionalProperties\":false,\"required\":[\"type\"]},{\"type\":\"object\",\"properties\":{\"type\":{\"type\":\"string\",\"enum\":[\"codeBlock\"]},\"content\":{\"$ref\":\"#/$defs/inlinecontent\"},\"props\":{\"type\":\"object\",\"properties\":{\"language\":{\"type\":\"string\"}},\"additionalProperties\":false}},\"additionalProperties\":false,\"required\":[\"type\"]},{\"type\":\"object\",\"properties\":{\"type\":{\"type\":\"string\",\"enum\":[\"checkListItem\"]},\"content\":{\"$ref\":\"#/$defs/inlinecontent\"},\"props\":{\"type\":\"object\",\"properties\":{\"checked\":{\"type\":\"boolean\"}},\"additionalProperties\":false}},\"additionalProperties\":false,\"required\":[\"type\"]},{\"type\":\"object\",\"properties\":{\"type\":{\"type\":\"string\",\"enum\":[\"table\"]},\"content\":{\"type\":\"object\",\"properties\":{}},\"props\":{\"type\":\"object\",\"properties\":{},\"additionalProperties\":false}},\"additionalProperties\":false,\"required\":[\"type\"]}]}}}}}]}", + "body": "{\"model\":\"gpt-4o-2024-08-06\",\"temperature\":0,\"messages\":[{\"role\":\"system\",\"content\":\"You're manipulating a text document using JSON blocks. \\n Make sure to follow the json schema provided. When referencing ids they MUST be EXACTLY the same (including the trailing $). \\n This is the document as an array of JSON blocks (the cursor is BETWEEN two blocks as indicated by cursor: true):\"},{\"role\":\"system\",\"content\":\"[{\\\"id\\\":\\\"ref1$\\\",\\\"block\\\":{\\\"id\\\":\\\"ref1\\\",\\\"type\\\":\\\"paragraph\\\",\\\"props\\\":{\\\"textColor\\\":\\\"default\\\",\\\"backgroundColor\\\":\\\"default\\\",\\\"textAlignment\\\":\\\"left\\\"},\\\"content\\\":[{\\\"type\\\":\\\"text\\\",\\\"text\\\":\\\"Hello, world!\\\",\\\"styles\\\":{}}]}},{\\\"cursor\\\":true},{\\\"id\\\":\\\"ref2$\\\",\\\"block\\\":{\\\"id\\\":\\\"ref2\\\",\\\"type\\\":\\\"paragraph\\\",\\\"props\\\":{\\\"textColor\\\":\\\"default\\\",\\\"backgroundColor\\\":\\\"default\\\",\\\"textAlignment\\\":\\\"left\\\"},\\\"content\\\":[{\\\"type\\\":\\\"text\\\",\\\"text\\\":\\\"Hello, \\\",\\\"styles\\\":{}},{\\\"type\\\":\\\"mention\\\",\\\"props\\\":{\\\"user\\\":\\\"John Doe\\\"}},{\\\"type\\\":\\\"text\\\",\\\"text\\\":\\\"! \\\",\\\"styles\\\":{}},{\\\"type\\\":\\\"text\\\",\\\"text\\\":\\\"How are you doing?\\\",\\\"styles\\\":{\\\"bold\\\":true}},{\\\"type\\\":\\\"text\\\",\\\"text\\\":\\\" \\\",\\\"styles\\\":{}},{\\\"type\\\":\\\"text\\\",\\\"text\\\":\\\"This text is blue!\\\",\\\"styles\\\":{\\\"textColor\\\":\\\"blue\\\"}}]}},{\\\"id\\\":\\\"ref3$\\\",\\\"block\\\":{\\\"id\\\":\\\"ref3\\\",\\\"type\\\":\\\"paragraph\\\",\\\"props\\\":{\\\"textColor\\\":\\\"default\\\",\\\"backgroundColor\\\":\\\"default\\\",\\\"textAlignment\\\":\\\"left\\\"},\\\"content\\\":[{\\\"type\\\":\\\"text\\\",\\\"text\\\":\\\"Hello, world! \\\",\\\"styles\\\":{}},{\\\"type\\\":\\\"text\\\",\\\"text\\\":\\\"Bold text. \\\",\\\"styles\\\":{\\\"bold\\\":true}},{\\\"type\\\":\\\"link\\\",\\\"href\\\":\\\"https://www.google.com\\\",\\\"content\\\":[{\\\"type\\\":\\\"text\\\",\\\"text\\\":\\\"Link.\\\",\\\"styles\\\":{}}]}]}}]\"},{\"role\":\"system\",\"content\":\"The user asks you to do the following:\"},{\"role\":\"user\",\"content\":\"make the first paragraph a heading and update the content to 'What's up, world!'\"},{\"role\":\"system\",\"content\":\"First, determine what part of the document the user is talking about. You SHOULD probably take cursor info into account if needed.\\n EXAMPLE: if user says \\\"below\\\" (without pointing to a specific part of the document) he / she probably indicates the block(s) after the cursor. \\n EXAMPLE: If you want to insert content AT the cursor position (UNLESS indicated otherwise by the user), then you need `referenceId` to point to the block before the cursor with position `after` (or block below and `before`).\\n \\n Prefer updating existing blocks over removing and adding (but this also depends on the user's question).\"}],\"tool_choice\":{\"type\":\"function\",\"function\":{\"name\":\"json\"}},\"tools\":[{\"type\":\"function\",\"function\":{\"name\":\"json\",\"description\":\"Respond with a JSON object.\",\"parameters\":{\"type\":\"object\",\"properties\":{\"operations\":{\"type\":\"array\",\"items\":{\"anyOf\":[{\"type\":\"object\",\"description\":\"Update a block, the new block will replace the existing block.\",\"properties\":{\"type\":{\"type\":\"string\",\"enum\":[\"update\"]},\"id\":{\"type\":\"string\",\"description\":\"id of block to update\"},\"block\":{\"$ref\":\"#/$defs/block\"}},\"required\":[\"type\",\"id\",\"block\"],\"additionalProperties\":false},{\"type\":\"object\",\"description\":\"Insert new blocks\",\"properties\":{\"type\":{\"type\":\"string\",\"enum\":[\"add\"]},\"referenceId\":{\"type\":\"string\",\"description\":\"MUST be an id of a block in the document\"},\"position\":{\"type\":\"string\",\"enum\":[\"before\",\"after\"],\"description\":\"`after` to add blocks AFTER (below) the block with `referenceId`, `before` to add the block BEFORE (above)\"},\"blocks\":{\"items\":{\"$ref\":\"#/$defs/block\"},\"type\":\"array\"}},\"required\":[\"type\",\"referenceId\",\"position\",\"blocks\"],\"additionalProperties\":false},{\"type\":\"object\",\"description\":\"Delete a block\",\"properties\":{\"type\":{\"type\":\"string\",\"enum\":[\"delete\"]},\"id\":{\"type\":\"string\",\"description\":\"id of block to delete\"}},\"required\":[\"type\",\"id\"],\"additionalProperties\":false}]}}},\"additionalProperties\":false,\"required\":[\"operations\"],\"$defs\":{\"styles\":{\"type\":\"object\",\"properties\":{\"bold\":{\"type\":\"boolean\"},\"italic\":{\"type\":\"boolean\"},\"underline\":{\"type\":\"boolean\"},\"strike\":{\"type\":\"boolean\"},\"code\":{\"type\":\"boolean\"},\"textColor\":{\"type\":\"string\"},\"backgroundColor\":{\"type\":\"string\"}},\"additionalProperties\":false},\"styledtext\":{\"type\":\"object\",\"properties\":{\"type\":{\"type\":\"string\",\"enum\":[\"text\"]},\"text\":{\"type\":\"string\"},\"styles\":{\"$ref\":\"#/$defs/styles\"}},\"additionalProperties\":false,\"required\":[\"type\",\"text\"]},\"inlinecontent\":{\"type\":\"array\",\"items\":{\"anyOf\":[{\"type\":\"object\",\"properties\":{\"type\":{\"type\":\"string\",\"enum\":[\"mention\"]},\"props\":{\"type\":\"object\",\"properties\":{\"user\":{\"type\":\"string\"}},\"additionalProperties\":false}},\"additionalProperties\":false,\"required\":[\"type\"]},{\"$ref\":\"#/$defs/styledtext\"},{\"type\":\"object\",\"properties\":{\"type\":{\"type\":\"string\",\"enum\":[\"link\"]},\"content\":{\"type\":\"array\",\"items\":{\"$ref\":\"#/$defs/styledtext\"}},\"href\":{\"type\":\"string\"}},\"additionalProperties\":false,\"required\":[\"type\",\"href\",\"content\"]}]}},\"block\":{\"anyOf\":[{\"type\":\"object\",\"properties\":{\"type\":{\"type\":\"string\",\"enum\":[\"paragraph\",\"quote\",\"toggleListItem\",\"bulletListItem\",\"numberedListItem\"]},\"content\":{\"$ref\":\"#/$defs/inlinecontent\"},\"props\":{\"type\":\"object\",\"properties\":{},\"additionalProperties\":false}},\"additionalProperties\":false,\"required\":[\"type\"]},{\"type\":\"object\",\"properties\":{\"type\":{\"type\":\"string\",\"enum\":[\"heading\"]},\"content\":{\"$ref\":\"#/$defs/inlinecontent\"},\"props\":{\"type\":\"object\",\"properties\":{\"level\":{\"type\":\"number\",\"enum\":[1,2,3]},\"isTogglable\":{\"type\":\"boolean\"}},\"additionalProperties\":false}},\"additionalProperties\":false,\"required\":[\"type\"]},{\"type\":\"object\",\"properties\":{\"type\":{\"type\":\"string\",\"enum\":[\"codeBlock\"]},\"content\":{\"$ref\":\"#/$defs/inlinecontent\"},\"props\":{\"type\":\"object\",\"properties\":{\"language\":{\"type\":\"string\"}},\"additionalProperties\":false}},\"additionalProperties\":false,\"required\":[\"type\"]},{\"type\":\"object\",\"properties\":{\"type\":{\"type\":\"string\",\"enum\":[\"checkListItem\"]},\"content\":{\"$ref\":\"#/$defs/inlinecontent\"},\"props\":{\"type\":\"object\",\"properties\":{\"checked\":{\"type\":\"boolean\"}},\"additionalProperties\":false}},\"additionalProperties\":false,\"required\":[\"type\"]},{\"type\":\"object\",\"properties\":{\"type\":{\"type\":\"string\",\"enum\":[\"table\"]},\"content\":{\"type\":\"object\",\"properties\":{}},\"props\":{\"type\":\"object\",\"properties\":{},\"additionalProperties\":false}},\"additionalProperties\":false,\"required\":[\"type\"]}]}}}}}]}", "headers": [], "cookies": [] }, "response": { "status": 200, "statusText": "", - "body": "{\n \"id\": \"chatcmpl-BgV5Tgn7Tpayl6Em957U3TWRvP2jT\",\n \"object\": \"chat.completion\",\n \"created\": 1749468975,\n \"model\": \"gpt-4o-2024-08-06\",\n \"choices\": [\n {\n \"index\": 0,\n \"message\": {\n \"role\": \"assistant\",\n \"content\": null,\n \"tool_calls\": [\n {\n \"id\": \"call_m6ICGNtc5W0P7kYsxA8bvdWr\",\n \"type\": \"function\",\n \"function\": {\n \"name\": \"json\",\n \"arguments\": \"{\\\"operations\\\":[{\\\"type\\\":\\\"update\\\",\\\"id\\\":\\\"ref1$\\\",\\\"block\\\":{\\\"type\\\":\\\"heading\\\",\\\"content\\\":[{\\\"type\\\":\\\"text\\\",\\\"text\\\":\\\"What's up, world!\\\"}],\\\"props\\\":{\\\"level\\\":1}}}]}\"\n }\n }\n ],\n \"refusal\": null,\n \"annotations\": []\n },\n \"logprobs\": null,\n \"finish_reason\": \"stop\"\n }\n ],\n \"usage\": {\n \"prompt_tokens\": 1171,\n \"completion_tokens\": 44,\n \"total_tokens\": 1215,\n \"prompt_tokens_details\": {\n \"cached_tokens\": 0,\n \"audio_tokens\": 0\n },\n \"completion_tokens_details\": {\n \"reasoning_tokens\": 0,\n \"audio_tokens\": 0,\n \"accepted_prediction_tokens\": 0,\n \"rejected_prediction_tokens\": 0\n }\n },\n \"service_tier\": \"default\",\n \"system_fingerprint\": \"fp_a288987b44\"\n}\n", + "body": "{\n \"id\": \"chatcmpl-BhXnjrwOQvOEqFRcfw8NRfo5ko0CB\",\n \"object\": \"chat.completion\",\n \"created\": 1749717735,\n \"model\": \"gpt-4o-2024-08-06\",\n \"choices\": [\n {\n \"index\": 0,\n \"message\": {\n \"role\": \"assistant\",\n \"content\": null,\n \"tool_calls\": [\n {\n \"id\": \"call_P4wLaJjChC72V9s9g5uBybx8\",\n \"type\": \"function\",\n \"function\": {\n \"name\": \"json\",\n \"arguments\": \"{\\\"operations\\\":[{\\\"type\\\":\\\"update\\\",\\\"id\\\":\\\"ref1$\\\",\\\"block\\\":{\\\"type\\\":\\\"heading\\\",\\\"content\\\":[{\\\"type\\\":\\\"text\\\",\\\"text\\\":\\\"What's up, world!\\\"}],\\\"props\\\":{\\\"level\\\":1}}}]}\"\n }\n }\n ],\n \"refusal\": null,\n \"annotations\": []\n },\n \"logprobs\": null,\n \"finish_reason\": \"stop\"\n }\n ],\n \"usage\": {\n \"prompt_tokens\": 1199,\n \"completion_tokens\": 44,\n \"total_tokens\": 1243,\n \"prompt_tokens_details\": {\n \"cached_tokens\": 0,\n \"audio_tokens\": 0\n },\n \"completion_tokens_details\": {\n \"reasoning_tokens\": 0,\n \"audio_tokens\": 0,\n \"accepted_prediction_tokens\": 0,\n \"rejected_prediction_tokens\": 0\n }\n },\n \"service_tier\": \"default\",\n \"system_fingerprint\": \"fp_a288987b44\"\n}\n", "headers": [] } } \ No newline at end of file diff --git a/packages/xl-ai/src/api/formats/json/__snapshots__/json.test.ts/Update/__msw_snapshots__/openai.chat/gpt-4o-2024-08-06 (non-streaming)/update block type_1_0160577344039e4ee9505b5b766bfc1f.json b/packages/xl-ai/src/api/formats/json/__snapshots__/json.test.ts/Update/__msw_snapshots__/openai.chat/gpt-4o-2024-08-06 (non-streaming)/update block type_1_d3172a9b36406fd1f8f62a2e92cbb161.json similarity index 79% rename from packages/xl-ai/src/api/formats/json/__snapshots__/json.test.ts/Update/__msw_snapshots__/openai.chat/gpt-4o-2024-08-06 (non-streaming)/update block type_1_0160577344039e4ee9505b5b766bfc1f.json rename to packages/xl-ai/src/api/formats/json/__snapshots__/json.test.ts/Update/__msw_snapshots__/openai.chat/gpt-4o-2024-08-06 (non-streaming)/update block type_1_d3172a9b36406fd1f8f62a2e92cbb161.json index fa23999eee..9fe14a4b30 100644 --- a/packages/xl-ai/src/api/formats/json/__snapshots__/json.test.ts/Update/__msw_snapshots__/openai.chat/gpt-4o-2024-08-06 (non-streaming)/update block type_1_0160577344039e4ee9505b5b766bfc1f.json +++ b/packages/xl-ai/src/api/formats/json/__snapshots__/json.test.ts/Update/__msw_snapshots__/openai.chat/gpt-4o-2024-08-06 (non-streaming)/update block type_1_d3172a9b36406fd1f8f62a2e92cbb161.json @@ -2,14 +2,14 @@ "request": { "method": "POST", "url": "https://localhost:3000/ai?provider=openai&url=https%3A%2F%2Fapi.openai.com%2Fv1%2Fchat%2Fcompletions", - "body": "{\"model\":\"gpt-4o-2024-08-06\",\"temperature\":0,\"messages\":[{\"role\":\"system\",\"content\":\"You're manipulating a text document using JSON blocks. \\n Make sure to follow the json schema provided. When referencing ids they MUST be EXACTLY the same (including the trailing $). \\n This is the document as an array of JSON blocks (the cursor is BETWEEN two blocks as indicated by cursor: true):\"},{\"role\":\"system\",\"content\":\"[{\\\"id\\\":\\\"ref1$\\\",\\\"block\\\":{\\\"id\\\":\\\"ref1\\\",\\\"type\\\":\\\"paragraph\\\",\\\"props\\\":{\\\"textColor\\\":\\\"default\\\",\\\"backgroundColor\\\":\\\"default\\\",\\\"textAlignment\\\":\\\"left\\\"},\\\"content\\\":[{\\\"type\\\":\\\"text\\\",\\\"text\\\":\\\"Hello, world!\\\",\\\"styles\\\":{}}]}},{\\\"cursor\\\":true},{\\\"id\\\":\\\"ref2$\\\",\\\"block\\\":{\\\"id\\\":\\\"ref2\\\",\\\"type\\\":\\\"paragraph\\\",\\\"props\\\":{\\\"textColor\\\":\\\"default\\\",\\\"backgroundColor\\\":\\\"default\\\",\\\"textAlignment\\\":\\\"left\\\"},\\\"content\\\":[{\\\"type\\\":\\\"text\\\",\\\"text\\\":\\\"Hello, \\\",\\\"styles\\\":{}},{\\\"type\\\":\\\"mention\\\",\\\"props\\\":{\\\"user\\\":\\\"John Doe\\\"}},{\\\"type\\\":\\\"text\\\",\\\"text\\\":\\\"! \\\",\\\"styles\\\":{}},{\\\"type\\\":\\\"text\\\",\\\"text\\\":\\\"How are you doing?\\\",\\\"styles\\\":{\\\"bold\\\":true}},{\\\"type\\\":\\\"text\\\",\\\"text\\\":\\\" \\\",\\\"styles\\\":{}},{\\\"type\\\":\\\"text\\\",\\\"text\\\":\\\"This text is blue!\\\",\\\"styles\\\":{\\\"textColor\\\":\\\"blue\\\"}}]}},{\\\"id\\\":\\\"ref3$\\\",\\\"block\\\":{\\\"id\\\":\\\"ref3\\\",\\\"type\\\":\\\"paragraph\\\",\\\"props\\\":{\\\"textColor\\\":\\\"default\\\",\\\"backgroundColor\\\":\\\"default\\\",\\\"textAlignment\\\":\\\"left\\\"},\\\"content\\\":[{\\\"type\\\":\\\"text\\\",\\\"text\\\":\\\"Hello, world! \\\",\\\"styles\\\":{}},{\\\"type\\\":\\\"text\\\",\\\"text\\\":\\\"Bold text. \\\",\\\"styles\\\":{\\\"bold\\\":true}},{\\\"type\\\":\\\"link\\\",\\\"href\\\":\\\"https://www.google.com\\\",\\\"content\\\":[{\\\"type\\\":\\\"text\\\",\\\"text\\\":\\\"Link.\\\",\\\"styles\\\":{}}]}]}}]\"},{\"role\":\"system\",\"content\":\"The user asks you to do the following:\"},{\"role\":\"user\",\"content\":\"make the first paragraph a heading\"},{\"role\":\"system\",\"content\":\"First, determine what part of the document the user is talking about. You SHOULD probably take cursor info into account if needed.\\n EXAMPLE: if user says \\\"below\\\" (without pointing to a specific part of the document) he / she probably indicates the block(s) after the cursor. \\n EXAMPLE: If you want to insert content AT the cursor position (UNLESS indicated otherwise by the user), then you need `referenceId` to point to the block before the cursor with position `after` (or block below and `before`).\\n \\n Prefer updating existing blocks over removing and adding (but this also depends on the user's question).\"}],\"tool_choice\":{\"type\":\"function\",\"function\":{\"name\":\"json\"}},\"tools\":[{\"type\":\"function\",\"function\":{\"name\":\"json\",\"description\":\"Respond with a JSON object.\",\"parameters\":{\"type\":\"object\",\"properties\":{\"operations\":{\"type\":\"array\",\"items\":{\"anyOf\":[{\"type\":\"object\",\"description\":\"Update a block, the new block will replace the existing block.\",\"properties\":{\"type\":{\"type\":\"string\",\"enum\":[\"update\"]},\"id\":{\"type\":\"string\",\"description\":\"id of block to update\"},\"block\":{\"$ref\":\"#/$defs/block\"}},\"required\":[\"type\",\"id\",\"block\"],\"additionalProperties\":false},{\"type\":\"object\",\"description\":\"Insert new blocks\",\"properties\":{\"type\":{\"type\":\"string\",\"enum\":[\"add\"]},\"referenceId\":{\"type\":\"string\",\"description\":\"MUST be an id of a block in the document\"},\"position\":{\"type\":\"string\",\"enum\":[\"before\",\"after\"],\"description\":\"`after` to add blocks AFTER (below) the block with `referenceId`, `before` to add the block BEFORE (above)\"},\"blocks\":{\"items\":{\"$ref\":\"#/$defs/block\"},\"type\":\"array\"}},\"required\":[\"type\",\"referenceId\",\"position\",\"blocks\"],\"additionalProperties\":false},{\"type\":\"object\",\"description\":\"Delete a block\",\"properties\":{\"type\":{\"type\":\"string\",\"enum\":[\"delete\"]},\"id\":{\"type\":\"string\",\"description\":\"id of block to delete\"}},\"required\":[\"type\",\"id\"],\"additionalProperties\":false}]}}},\"additionalProperties\":false,\"required\":[\"operations\"],\"$defs\":{\"styles\":{\"type\":\"object\",\"properties\":{\"bold\":{\"type\":\"boolean\"},\"italic\":{\"type\":\"boolean\"},\"underline\":{\"type\":\"boolean\"},\"strike\":{\"type\":\"boolean\"},\"code\":{\"type\":\"boolean\"},\"textColor\":{\"type\":\"string\"},\"backgroundColor\":{\"type\":\"string\"}},\"additionalProperties\":false},\"styledtext\":{\"type\":\"object\",\"properties\":{\"type\":{\"type\":\"string\",\"enum\":[\"text\"]},\"text\":{\"type\":\"string\"},\"styles\":{\"$ref\":\"#/$defs/styles\"}},\"additionalProperties\":false,\"required\":[\"type\",\"text\"]},\"inlinecontent\":{\"type\":\"array\",\"items\":{\"anyOf\":[{\"type\":\"object\",\"properties\":{\"type\":{\"type\":\"string\",\"enum\":[\"mention\"]},\"props\":{\"type\":\"object\",\"properties\":{\"user\":{\"type\":\"string\"}},\"additionalProperties\":false}},\"additionalProperties\":false,\"required\":[\"type\"]},{\"$ref\":\"#/$defs/styledtext\"},{\"type\":\"object\",\"properties\":{\"type\":{\"type\":\"string\",\"enum\":[\"link\"]},\"content\":{\"type\":\"array\",\"items\":{\"$ref\":\"#/$defs/styledtext\"}},\"href\":{\"type\":\"string\"}},\"additionalProperties\":false,\"required\":[\"type\",\"href\",\"content\"]}]}},\"block\":{\"anyOf\":[{\"type\":\"object\",\"properties\":{\"type\":{\"type\":\"string\",\"enum\":[\"paragraph\",\"quote\",\"bulletListItem\",\"numberedListItem\"]},\"content\":{\"$ref\":\"#/$defs/inlinecontent\"},\"props\":{\"type\":\"object\",\"properties\":{},\"additionalProperties\":false}},\"additionalProperties\":false,\"required\":[\"type\"]},{\"type\":\"object\",\"properties\":{\"type\":{\"type\":\"string\",\"enum\":[\"heading\"]},\"content\":{\"$ref\":\"#/$defs/inlinecontent\"},\"props\":{\"type\":\"object\",\"properties\":{\"level\":{\"type\":\"number\",\"enum\":[1,2,3]}},\"additionalProperties\":false}},\"additionalProperties\":false,\"required\":[\"type\"]},{\"type\":\"object\",\"properties\":{\"type\":{\"type\":\"string\",\"enum\":[\"codeBlock\"]},\"content\":{\"$ref\":\"#/$defs/inlinecontent\"},\"props\":{\"type\":\"object\",\"properties\":{\"language\":{\"type\":\"string\"}},\"additionalProperties\":false}},\"additionalProperties\":false,\"required\":[\"type\"]},{\"type\":\"object\",\"properties\":{\"type\":{\"type\":\"string\",\"enum\":[\"checkListItem\"]},\"content\":{\"$ref\":\"#/$defs/inlinecontent\"},\"props\":{\"type\":\"object\",\"properties\":{\"checked\":{\"type\":\"boolean\"}},\"additionalProperties\":false}},\"additionalProperties\":false,\"required\":[\"type\"]},{\"type\":\"object\",\"properties\":{\"type\":{\"type\":\"string\",\"enum\":[\"table\"]},\"content\":{\"type\":\"object\",\"properties\":{}},\"props\":{\"type\":\"object\",\"properties\":{},\"additionalProperties\":false}},\"additionalProperties\":false,\"required\":[\"type\"]}]}}}}}]}", + "body": "{\"model\":\"gpt-4o-2024-08-06\",\"temperature\":0,\"messages\":[{\"role\":\"system\",\"content\":\"You're manipulating a text document using JSON blocks. \\n Make sure to follow the json schema provided. When referencing ids they MUST be EXACTLY the same (including the trailing $). \\n This is the document as an array of JSON blocks (the cursor is BETWEEN two blocks as indicated by cursor: true):\"},{\"role\":\"system\",\"content\":\"[{\\\"id\\\":\\\"ref1$\\\",\\\"block\\\":{\\\"id\\\":\\\"ref1\\\",\\\"type\\\":\\\"paragraph\\\",\\\"props\\\":{\\\"textColor\\\":\\\"default\\\",\\\"backgroundColor\\\":\\\"default\\\",\\\"textAlignment\\\":\\\"left\\\"},\\\"content\\\":[{\\\"type\\\":\\\"text\\\",\\\"text\\\":\\\"Hello, world!\\\",\\\"styles\\\":{}}]}},{\\\"cursor\\\":true},{\\\"id\\\":\\\"ref2$\\\",\\\"block\\\":{\\\"id\\\":\\\"ref2\\\",\\\"type\\\":\\\"paragraph\\\",\\\"props\\\":{\\\"textColor\\\":\\\"default\\\",\\\"backgroundColor\\\":\\\"default\\\",\\\"textAlignment\\\":\\\"left\\\"},\\\"content\\\":[{\\\"type\\\":\\\"text\\\",\\\"text\\\":\\\"Hello, \\\",\\\"styles\\\":{}},{\\\"type\\\":\\\"mention\\\",\\\"props\\\":{\\\"user\\\":\\\"John Doe\\\"}},{\\\"type\\\":\\\"text\\\",\\\"text\\\":\\\"! \\\",\\\"styles\\\":{}},{\\\"type\\\":\\\"text\\\",\\\"text\\\":\\\"How are you doing?\\\",\\\"styles\\\":{\\\"bold\\\":true}},{\\\"type\\\":\\\"text\\\",\\\"text\\\":\\\" \\\",\\\"styles\\\":{}},{\\\"type\\\":\\\"text\\\",\\\"text\\\":\\\"This text is blue!\\\",\\\"styles\\\":{\\\"textColor\\\":\\\"blue\\\"}}]}},{\\\"id\\\":\\\"ref3$\\\",\\\"block\\\":{\\\"id\\\":\\\"ref3\\\",\\\"type\\\":\\\"paragraph\\\",\\\"props\\\":{\\\"textColor\\\":\\\"default\\\",\\\"backgroundColor\\\":\\\"default\\\",\\\"textAlignment\\\":\\\"left\\\"},\\\"content\\\":[{\\\"type\\\":\\\"text\\\",\\\"text\\\":\\\"Hello, world! \\\",\\\"styles\\\":{}},{\\\"type\\\":\\\"text\\\",\\\"text\\\":\\\"Bold text. \\\",\\\"styles\\\":{\\\"bold\\\":true}},{\\\"type\\\":\\\"link\\\",\\\"href\\\":\\\"https://www.google.com\\\",\\\"content\\\":[{\\\"type\\\":\\\"text\\\",\\\"text\\\":\\\"Link.\\\",\\\"styles\\\":{}}]}]}}]\"},{\"role\":\"system\",\"content\":\"The user asks you to do the following:\"},{\"role\":\"user\",\"content\":\"make the first paragraph a heading\"},{\"role\":\"system\",\"content\":\"First, determine what part of the document the user is talking about. You SHOULD probably take cursor info into account if needed.\\n EXAMPLE: if user says \\\"below\\\" (without pointing to a specific part of the document) he / she probably indicates the block(s) after the cursor. \\n EXAMPLE: If you want to insert content AT the cursor position (UNLESS indicated otherwise by the user), then you need `referenceId` to point to the block before the cursor with position `after` (or block below and `before`).\\n \\n Prefer updating existing blocks over removing and adding (but this also depends on the user's question).\"}],\"tool_choice\":{\"type\":\"function\",\"function\":{\"name\":\"json\"}},\"tools\":[{\"type\":\"function\",\"function\":{\"name\":\"json\",\"description\":\"Respond with a JSON object.\",\"parameters\":{\"type\":\"object\",\"properties\":{\"operations\":{\"type\":\"array\",\"items\":{\"anyOf\":[{\"type\":\"object\",\"description\":\"Update a block, the new block will replace the existing block.\",\"properties\":{\"type\":{\"type\":\"string\",\"enum\":[\"update\"]},\"id\":{\"type\":\"string\",\"description\":\"id of block to update\"},\"block\":{\"$ref\":\"#/$defs/block\"}},\"required\":[\"type\",\"id\",\"block\"],\"additionalProperties\":false},{\"type\":\"object\",\"description\":\"Insert new blocks\",\"properties\":{\"type\":{\"type\":\"string\",\"enum\":[\"add\"]},\"referenceId\":{\"type\":\"string\",\"description\":\"MUST be an id of a block in the document\"},\"position\":{\"type\":\"string\",\"enum\":[\"before\",\"after\"],\"description\":\"`after` to add blocks AFTER (below) the block with `referenceId`, `before` to add the block BEFORE (above)\"},\"blocks\":{\"items\":{\"$ref\":\"#/$defs/block\"},\"type\":\"array\"}},\"required\":[\"type\",\"referenceId\",\"position\",\"blocks\"],\"additionalProperties\":false},{\"type\":\"object\",\"description\":\"Delete a block\",\"properties\":{\"type\":{\"type\":\"string\",\"enum\":[\"delete\"]},\"id\":{\"type\":\"string\",\"description\":\"id of block to delete\"}},\"required\":[\"type\",\"id\"],\"additionalProperties\":false}]}}},\"additionalProperties\":false,\"required\":[\"operations\"],\"$defs\":{\"styles\":{\"type\":\"object\",\"properties\":{\"bold\":{\"type\":\"boolean\"},\"italic\":{\"type\":\"boolean\"},\"underline\":{\"type\":\"boolean\"},\"strike\":{\"type\":\"boolean\"},\"code\":{\"type\":\"boolean\"},\"textColor\":{\"type\":\"string\"},\"backgroundColor\":{\"type\":\"string\"}},\"additionalProperties\":false},\"styledtext\":{\"type\":\"object\",\"properties\":{\"type\":{\"type\":\"string\",\"enum\":[\"text\"]},\"text\":{\"type\":\"string\"},\"styles\":{\"$ref\":\"#/$defs/styles\"}},\"additionalProperties\":false,\"required\":[\"type\",\"text\"]},\"inlinecontent\":{\"type\":\"array\",\"items\":{\"anyOf\":[{\"type\":\"object\",\"properties\":{\"type\":{\"type\":\"string\",\"enum\":[\"mention\"]},\"props\":{\"type\":\"object\",\"properties\":{\"user\":{\"type\":\"string\"}},\"additionalProperties\":false}},\"additionalProperties\":false,\"required\":[\"type\"]},{\"$ref\":\"#/$defs/styledtext\"},{\"type\":\"object\",\"properties\":{\"type\":{\"type\":\"string\",\"enum\":[\"link\"]},\"content\":{\"type\":\"array\",\"items\":{\"$ref\":\"#/$defs/styledtext\"}},\"href\":{\"type\":\"string\"}},\"additionalProperties\":false,\"required\":[\"type\",\"href\",\"content\"]}]}},\"block\":{\"anyOf\":[{\"type\":\"object\",\"properties\":{\"type\":{\"type\":\"string\",\"enum\":[\"paragraph\",\"quote\",\"toggleListItem\",\"bulletListItem\",\"numberedListItem\"]},\"content\":{\"$ref\":\"#/$defs/inlinecontent\"},\"props\":{\"type\":\"object\",\"properties\":{},\"additionalProperties\":false}},\"additionalProperties\":false,\"required\":[\"type\"]},{\"type\":\"object\",\"properties\":{\"type\":{\"type\":\"string\",\"enum\":[\"heading\"]},\"content\":{\"$ref\":\"#/$defs/inlinecontent\"},\"props\":{\"type\":\"object\",\"properties\":{\"level\":{\"type\":\"number\",\"enum\":[1,2,3]},\"isTogglable\":{\"type\":\"boolean\"}},\"additionalProperties\":false}},\"additionalProperties\":false,\"required\":[\"type\"]},{\"type\":\"object\",\"properties\":{\"type\":{\"type\":\"string\",\"enum\":[\"codeBlock\"]},\"content\":{\"$ref\":\"#/$defs/inlinecontent\"},\"props\":{\"type\":\"object\",\"properties\":{\"language\":{\"type\":\"string\"}},\"additionalProperties\":false}},\"additionalProperties\":false,\"required\":[\"type\"]},{\"type\":\"object\",\"properties\":{\"type\":{\"type\":\"string\",\"enum\":[\"checkListItem\"]},\"content\":{\"$ref\":\"#/$defs/inlinecontent\"},\"props\":{\"type\":\"object\",\"properties\":{\"checked\":{\"type\":\"boolean\"}},\"additionalProperties\":false}},\"additionalProperties\":false,\"required\":[\"type\"]},{\"type\":\"object\",\"properties\":{\"type\":{\"type\":\"string\",\"enum\":[\"table\"]},\"content\":{\"type\":\"object\",\"properties\":{}},\"props\":{\"type\":\"object\",\"properties\":{},\"additionalProperties\":false}},\"additionalProperties\":false,\"required\":[\"type\"]}]}}}}}]}", "headers": [], "cookies": [] }, "response": { "status": 200, "statusText": "", - "body": "{\n \"id\": \"chatcmpl-BgV5QUVrZCt1ejp25QwV3gRzE0AdP\",\n \"object\": \"chat.completion\",\n \"created\": 1749468972,\n \"model\": \"gpt-4o-2024-08-06\",\n \"choices\": [\n {\n \"index\": 0,\n \"message\": {\n \"role\": \"assistant\",\n \"content\": null,\n \"tool_calls\": [\n {\n \"id\": \"call_ubU1mSKC1bXYeTqF7wNFTnH8\",\n \"type\": \"function\",\n \"function\": {\n \"name\": \"json\",\n \"arguments\": \"{\\\"operations\\\":[{\\\"type\\\":\\\"update\\\",\\\"id\\\":\\\"ref1$\\\",\\\"block\\\":{\\\"type\\\":\\\"heading\\\",\\\"content\\\":[{\\\"type\\\":\\\"text\\\",\\\"text\\\":\\\"Hello, world!\\\",\\\"styles\\\":{}}],\\\"props\\\":{\\\"level\\\":1}}}]}\"\n }\n }\n ],\n \"refusal\": null,\n \"annotations\": []\n },\n \"logprobs\": null,\n \"finish_reason\": \"stop\"\n }\n ],\n \"usage\": {\n \"prompt_tokens\": 1160,\n \"completion_tokens\": 47,\n \"total_tokens\": 1207,\n \"prompt_tokens_details\": {\n \"cached_tokens\": 1152,\n \"audio_tokens\": 0\n },\n \"completion_tokens_details\": {\n \"reasoning_tokens\": 0,\n \"audio_tokens\": 0,\n \"accepted_prediction_tokens\": 0,\n \"rejected_prediction_tokens\": 0\n }\n },\n \"service_tier\": \"default\",\n \"system_fingerprint\": \"fp_07871e2ad8\"\n}\n", + "body": "{\n \"id\": \"chatcmpl-BhXnhJkxgDHkYkt1SVXXuToNOHkyY\",\n \"object\": \"chat.completion\",\n \"created\": 1749717733,\n \"model\": \"gpt-4o-2024-08-06\",\n \"choices\": [\n {\n \"index\": 0,\n \"message\": {\n \"role\": \"assistant\",\n \"content\": null,\n \"tool_calls\": [\n {\n \"id\": \"call_IRN0uk9lwDLaxPjNMSyvWeJv\",\n \"type\": \"function\",\n \"function\": {\n \"name\": \"json\",\n \"arguments\": \"{\\\"operations\\\":[{\\\"type\\\":\\\"update\\\",\\\"id\\\":\\\"ref1$\\\",\\\"block\\\":{\\\"type\\\":\\\"heading\\\",\\\"content\\\":[{\\\"type\\\":\\\"text\\\",\\\"text\\\":\\\"Hello, world!\\\",\\\"styles\\\":{}}],\\\"props\\\":{\\\"level\\\":1}}}]}\"\n }\n }\n ],\n \"refusal\": null,\n \"annotations\": []\n },\n \"logprobs\": null,\n \"finish_reason\": \"stop\"\n }\n ],\n \"usage\": {\n \"prompt_tokens\": 1188,\n \"completion_tokens\": 47,\n \"total_tokens\": 1235,\n \"prompt_tokens_details\": {\n \"cached_tokens\": 1152,\n \"audio_tokens\": 0\n },\n \"completion_tokens_details\": {\n \"reasoning_tokens\": 0,\n \"audio_tokens\": 0,\n \"accepted_prediction_tokens\": 0,\n \"rejected_prediction_tokens\": 0\n }\n },\n \"service_tier\": \"default\",\n \"system_fingerprint\": \"fp_a288987b44\"\n}\n", "headers": [] } } \ No newline at end of file diff --git a/packages/xl-ai/src/api/formats/json/__snapshots__/json.test.ts/Update/__msw_snapshots__/openai.chat/gpt-4o-2024-08-06 (streaming)/clear block formatting_1_465acdd71f0f7d1debc94d768f6b1a2d.json b/packages/xl-ai/src/api/formats/json/__snapshots__/json.test.ts/Update/__msw_snapshots__/openai.chat/gpt-4o-2024-08-06 (streaming)/clear block formatting_1_465acdd71f0f7d1debc94d768f6b1a2d.json deleted file mode 100644 index e7bf50c588..0000000000 --- a/packages/xl-ai/src/api/formats/json/__snapshots__/json.test.ts/Update/__msw_snapshots__/openai.chat/gpt-4o-2024-08-06 (streaming)/clear block formatting_1_465acdd71f0f7d1debc94d768f6b1a2d.json +++ /dev/null @@ -1,15 +0,0 @@ -{ - "request": { - "method": "POST", - "url": "https://localhost:3000/ai?provider=openai&url=https%3A%2F%2Fapi.openai.com%2Fv1%2Fchat%2Fcompletions", - "body": "{\"model\":\"gpt-4o-2024-08-06\",\"temperature\":0,\"messages\":[{\"role\":\"system\",\"content\":\"You're manipulating a text document using JSON blocks. \\n Make sure to follow the json schema provided. When referencing ids they MUST be EXACTLY the same (including the trailing $). \\n This is the document as an array of JSON blocks (the cursor is BETWEEN two blocks as indicated by cursor: true):\"},{\"role\":\"system\",\"content\":\"[{\\\"id\\\":\\\"ref1$\\\",\\\"block\\\":{\\\"id\\\":\\\"ref1\\\",\\\"type\\\":\\\"paragraph\\\",\\\"props\\\":{\\\"textColor\\\":\\\"default\\\",\\\"backgroundColor\\\":\\\"red\\\",\\\"textAlignment\\\":\\\"left\\\"},\\\"content\\\":[{\\\"type\\\":\\\"text\\\",\\\"text\\\":\\\"Colored text\\\",\\\"styles\\\":{}}]}},{\\\"cursor\\\":true},{\\\"id\\\":\\\"ref2$\\\",\\\"block\\\":{\\\"id\\\":\\\"ref2\\\",\\\"type\\\":\\\"paragraph\\\",\\\"props\\\":{\\\"textColor\\\":\\\"default\\\",\\\"backgroundColor\\\":\\\"default\\\",\\\"textAlignment\\\":\\\"right\\\"},\\\"content\\\":[{\\\"type\\\":\\\"text\\\",\\\"text\\\":\\\"Aligned text\\\",\\\"styles\\\":{}}]}}]\"},{\"role\":\"system\",\"content\":\"The user asks you to do the following:\"},{\"role\":\"user\",\"content\":\"clear the formatting (colors and alignment)\"},{\"role\":\"system\",\"content\":\"First, determine what part of the document the user is talking about. You SHOULD probably take cursor info into account if needed.\\n EXAMPLE: if user says \\\"below\\\" (without pointing to a specific part of the document) he / she probably indicates the block(s) after the cursor. \\n EXAMPLE: If you want to insert content AT the cursor position (UNLESS indicated otherwise by the user), then you need `referenceId` to point to the block before the cursor with position `after` (or block below and `before`).\\n \\n Prefer updating existing blocks over removing and adding (but this also depends on the user's question).\"}],\"tool_choice\":{\"type\":\"function\",\"function\":{\"name\":\"json\"}},\"tools\":[{\"type\":\"function\",\"function\":{\"name\":\"json\",\"description\":\"Respond with a JSON object.\",\"parameters\":{\"type\":\"object\",\"properties\":{\"operations\":{\"type\":\"array\",\"items\":{\"anyOf\":[{\"type\":\"object\",\"description\":\"Update a block, the new block will replace the existing block.\",\"properties\":{\"type\":{\"type\":\"string\",\"enum\":[\"update\"]},\"id\":{\"type\":\"string\",\"description\":\"id of block to update\"},\"block\":{\"$ref\":\"#/$defs/block\"}},\"required\":[\"type\",\"id\",\"block\"],\"additionalProperties\":false},{\"type\":\"object\",\"description\":\"Insert new blocks\",\"properties\":{\"type\":{\"type\":\"string\",\"enum\":[\"add\"]},\"referenceId\":{\"type\":\"string\",\"description\":\"MUST be an id of a block in the document\"},\"position\":{\"type\":\"string\",\"enum\":[\"before\",\"after\"],\"description\":\"`after` to add blocks AFTER (below) the block with `referenceId`, `before` to add the block BEFORE (above)\"},\"blocks\":{\"items\":{\"$ref\":\"#/$defs/block\"},\"type\":\"array\"}},\"required\":[\"type\",\"referenceId\",\"position\",\"blocks\"],\"additionalProperties\":false},{\"type\":\"object\",\"description\":\"Delete a block\",\"properties\":{\"type\":{\"type\":\"string\",\"enum\":[\"delete\"]},\"id\":{\"type\":\"string\",\"description\":\"id of block to delete\"}},\"required\":[\"type\",\"id\"],\"additionalProperties\":false}]}}},\"additionalProperties\":false,\"required\":[\"operations\"],\"$defs\":{\"styles\":{\"type\":\"object\",\"properties\":{\"bold\":{\"type\":\"boolean\"},\"italic\":{\"type\":\"boolean\"},\"underline\":{\"type\":\"boolean\"},\"strike\":{\"type\":\"boolean\"},\"code\":{\"type\":\"boolean\"},\"textColor\":{\"type\":\"string\"},\"backgroundColor\":{\"type\":\"string\"}},\"additionalProperties\":false},\"styledtext\":{\"type\":\"object\",\"properties\":{\"type\":{\"type\":\"string\",\"enum\":[\"text\"]},\"text\":{\"type\":\"string\"},\"styles\":{\"$ref\":\"#/$defs/styles\"}},\"additionalProperties\":false,\"required\":[\"type\",\"text\"]},\"inlinecontent\":{\"type\":\"array\",\"items\":{\"anyOf\":[{\"type\":\"object\",\"properties\":{\"type\":{\"type\":\"string\",\"enum\":[\"mention\"]},\"props\":{\"type\":\"object\",\"properties\":{\"user\":{\"type\":\"string\"}},\"additionalProperties\":false}},\"additionalProperties\":false,\"required\":[\"type\"]},{\"$ref\":\"#/$defs/styledtext\"},{\"type\":\"object\",\"properties\":{\"type\":{\"type\":\"string\",\"enum\":[\"link\"]},\"content\":{\"type\":\"array\",\"items\":{\"$ref\":\"#/$defs/styledtext\"}},\"href\":{\"type\":\"string\"}},\"additionalProperties\":false,\"required\":[\"type\",\"href\",\"content\"]}]}},\"block\":{\"anyOf\":[{\"type\":\"object\",\"properties\":{\"type\":{\"type\":\"string\",\"enum\":[\"paragraph\",\"quote\",\"bulletListItem\",\"numberedListItem\"]},\"content\":{\"$ref\":\"#/$defs/inlinecontent\"},\"props\":{\"type\":\"object\",\"properties\":{},\"additionalProperties\":false}},\"additionalProperties\":false,\"required\":[\"type\"]},{\"type\":\"object\",\"properties\":{\"type\":{\"type\":\"string\",\"enum\":[\"heading\"]},\"content\":{\"$ref\":\"#/$defs/inlinecontent\"},\"props\":{\"type\":\"object\",\"properties\":{\"level\":{\"type\":\"number\",\"enum\":[1,2,3]}},\"additionalProperties\":false}},\"additionalProperties\":false,\"required\":[\"type\"]},{\"type\":\"object\",\"properties\":{\"type\":{\"type\":\"string\",\"enum\":[\"codeBlock\"]},\"content\":{\"$ref\":\"#/$defs/inlinecontent\"},\"props\":{\"type\":\"object\",\"properties\":{\"language\":{\"type\":\"string\"}},\"additionalProperties\":false}},\"additionalProperties\":false,\"required\":[\"type\"]},{\"type\":\"object\",\"properties\":{\"type\":{\"type\":\"string\",\"enum\":[\"checkListItem\"]},\"content\":{\"$ref\":\"#/$defs/inlinecontent\"},\"props\":{\"type\":\"object\",\"properties\":{\"checked\":{\"type\":\"boolean\"}},\"additionalProperties\":false}},\"additionalProperties\":false,\"required\":[\"type\"]},{\"type\":\"object\",\"properties\":{\"type\":{\"type\":\"string\",\"enum\":[\"table\"]},\"content\":{\"type\":\"object\",\"properties\":{}},\"props\":{\"type\":\"object\",\"properties\":{},\"additionalProperties\":false}},\"additionalProperties\":false,\"required\":[\"type\"]}]}}}}}],\"stream\":true}", - "headers": [], - "cookies": [] - }, - "response": { - "status": 200, - "statusText": "", - "body": "data: {\"id\":\"chatcmpl-BgV55GLCfojdRkRiK4dXtVl0jyolC\",\"object\":\"chat.completion.chunk\",\"created\":1749468951,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_07871e2ad8\",\"choices\":[{\"index\":0,\"delta\":{\"role\":\"assistant\",\"content\":null,\"tool_calls\":[{\"index\":0,\"id\":\"call_dPHqFL1uQ1c0URlBo0xzk8dh\",\"type\":\"function\",\"function\":{\"name\":\"json\",\"arguments\":\"\"}}],\"refusal\":null},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BgV55GLCfojdRkRiK4dXtVl0jyolC\",\"object\":\"chat.completion.chunk\",\"created\":1749468951,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_07871e2ad8\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"{\\\"\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BgV55GLCfojdRkRiK4dXtVl0jyolC\",\"object\":\"chat.completion.chunk\",\"created\":1749468951,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_07871e2ad8\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"operations\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BgV55GLCfojdRkRiK4dXtVl0jyolC\",\"object\":\"chat.completion.chunk\",\"created\":1749468951,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_07871e2ad8\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"\\\":[\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BgV55GLCfojdRkRiK4dXtVl0jyolC\",\"object\":\"chat.completion.chunk\",\"created\":1749468951,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_07871e2ad8\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"{\\\"\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BgV55GLCfojdRkRiK4dXtVl0jyolC\",\"object\":\"chat.completion.chunk\",\"created\":1749468951,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_07871e2ad8\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"type\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BgV55GLCfojdRkRiK4dXtVl0jyolC\",\"object\":\"chat.completion.chunk\",\"created\":1749468951,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_07871e2ad8\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"\\\":\\\"\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BgV55GLCfojdRkRiK4dXtVl0jyolC\",\"object\":\"chat.completion.chunk\",\"created\":1749468951,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_07871e2ad8\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"update\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BgV55GLCfojdRkRiK4dXtVl0jyolC\",\"object\":\"chat.completion.chunk\",\"created\":1749468951,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_07871e2ad8\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"\\\",\\\"\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BgV55GLCfojdRkRiK4dXtVl0jyolC\",\"object\":\"chat.completion.chunk\",\"created\":1749468951,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_07871e2ad8\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"id\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BgV55GLCfojdRkRiK4dXtVl0jyolC\",\"object\":\"chat.completion.chunk\",\"created\":1749468951,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_07871e2ad8\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"\\\":\\\"\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BgV55GLCfojdRkRiK4dXtVl0jyolC\",\"object\":\"chat.completion.chunk\",\"created\":1749468951,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_07871e2ad8\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"ref\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BgV55GLCfojdRkRiK4dXtVl0jyolC\",\"object\":\"chat.completion.chunk\",\"created\":1749468951,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_07871e2ad8\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"1\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BgV55GLCfojdRkRiK4dXtVl0jyolC\",\"object\":\"chat.completion.chunk\",\"created\":1749468951,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_07871e2ad8\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"$\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BgV55GLCfojdRkRiK4dXtVl0jyolC\",\"object\":\"chat.completion.chunk\",\"created\":1749468951,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_07871e2ad8\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"\\\",\\\"\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BgV55GLCfojdRkRiK4dXtVl0jyolC\",\"object\":\"chat.completion.chunk\",\"created\":1749468951,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_07871e2ad8\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"block\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BgV55GLCfojdRkRiK4dXtVl0jyolC\",\"object\":\"chat.completion.chunk\",\"created\":1749468951,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_07871e2ad8\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"\\\":{\\\"\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BgV55GLCfojdRkRiK4dXtVl0jyolC\",\"object\":\"chat.completion.chunk\",\"created\":1749468951,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_07871e2ad8\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"type\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BgV55GLCfojdRkRiK4dXtVl0jyolC\",\"object\":\"chat.completion.chunk\",\"created\":1749468951,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_07871e2ad8\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"\\\":\\\"\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BgV55GLCfojdRkRiK4dXtVl0jyolC\",\"object\":\"chat.completion.chunk\",\"created\":1749468951,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_07871e2ad8\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"paragraph\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BgV55GLCfojdRkRiK4dXtVl0jyolC\",\"object\":\"chat.completion.chunk\",\"created\":1749468951,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_07871e2ad8\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"\\\",\\\"\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BgV55GLCfojdRkRiK4dXtVl0jyolC\",\"object\":\"chat.completion.chunk\",\"created\":1749468951,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_07871e2ad8\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"content\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BgV55GLCfojdRkRiK4dXtVl0jyolC\",\"object\":\"chat.completion.chunk\",\"created\":1749468951,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_07871e2ad8\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"\\\":[\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BgV55GLCfojdRkRiK4dXtVl0jyolC\",\"object\":\"chat.completion.chunk\",\"created\":1749468951,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_07871e2ad8\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"{\\\"\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BgV55GLCfojdRkRiK4dXtVl0jyolC\",\"object\":\"chat.completion.chunk\",\"created\":1749468951,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_07871e2ad8\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"type\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BgV55GLCfojdRkRiK4dXtVl0jyolC\",\"object\":\"chat.completion.chunk\",\"created\":1749468951,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_07871e2ad8\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"\\\":\\\"\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BgV55GLCfojdRkRiK4dXtVl0jyolC\",\"object\":\"chat.completion.chunk\",\"created\":1749468951,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_07871e2ad8\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"text\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BgV55GLCfojdRkRiK4dXtVl0jyolC\",\"object\":\"chat.completion.chunk\",\"created\":1749468951,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_07871e2ad8\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"\\\",\\\"\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BgV55GLCfojdRkRiK4dXtVl0jyolC\",\"object\":\"chat.completion.chunk\",\"created\":1749468951,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_07871e2ad8\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"text\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BgV55GLCfojdRkRiK4dXtVl0jyolC\",\"object\":\"chat.completion.chunk\",\"created\":1749468951,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_07871e2ad8\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"\\\":\\\"\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BgV55GLCfojdRkRiK4dXtVl0jyolC\",\"object\":\"chat.completion.chunk\",\"created\":1749468951,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_07871e2ad8\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"Colored\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BgV55GLCfojdRkRiK4dXtVl0jyolC\",\"object\":\"chat.completion.chunk\",\"created\":1749468951,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_07871e2ad8\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\" text\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BgV55GLCfojdRkRiK4dXtVl0jyolC\",\"object\":\"chat.completion.chunk\",\"created\":1749468951,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_07871e2ad8\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"\\\",\\\"\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BgV55GLCfojdRkRiK4dXtVl0jyolC\",\"object\":\"chat.completion.chunk\",\"created\":1749468951,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_07871e2ad8\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"styles\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BgV55GLCfojdRkRiK4dXtVl0jyolC\",\"object\":\"chat.completion.chunk\",\"created\":1749468951,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_07871e2ad8\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"\\\":\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BgV55GLCfojdRkRiK4dXtVl0jyolC\",\"object\":\"chat.completion.chunk\",\"created\":1749468951,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_07871e2ad8\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"{\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BgV55GLCfojdRkRiK4dXtVl0jyolC\",\"object\":\"chat.completion.chunk\",\"created\":1749468951,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_07871e2ad8\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"}}\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BgV55GLCfojdRkRiK4dXtVl0jyolC\",\"object\":\"chat.completion.chunk\",\"created\":1749468951,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_07871e2ad8\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"]}\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BgV55GLCfojdRkRiK4dXtVl0jyolC\",\"object\":\"chat.completion.chunk\",\"created\":1749468951,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_07871e2ad8\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"},{\\\"\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BgV55GLCfojdRkRiK4dXtVl0jyolC\",\"object\":\"chat.completion.chunk\",\"created\":1749468951,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_07871e2ad8\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"type\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BgV55GLCfojdRkRiK4dXtVl0jyolC\",\"object\":\"chat.completion.chunk\",\"created\":1749468951,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_07871e2ad8\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"\\\":\\\"\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BgV55GLCfojdRkRiK4dXtVl0jyolC\",\"object\":\"chat.completion.chunk\",\"created\":1749468951,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_07871e2ad8\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"update\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BgV55GLCfojdRkRiK4dXtVl0jyolC\",\"object\":\"chat.completion.chunk\",\"created\":1749468951,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_07871e2ad8\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"\\\",\\\"\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BgV55GLCfojdRkRiK4dXtVl0jyolC\",\"object\":\"chat.completion.chunk\",\"created\":1749468951,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_07871e2ad8\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"id\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BgV55GLCfojdRkRiK4dXtVl0jyolC\",\"object\":\"chat.completion.chunk\",\"created\":1749468951,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_07871e2ad8\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"\\\":\\\"\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BgV55GLCfojdRkRiK4dXtVl0jyolC\",\"object\":\"chat.completion.chunk\",\"created\":1749468951,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_07871e2ad8\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"ref\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BgV55GLCfojdRkRiK4dXtVl0jyolC\",\"object\":\"chat.completion.chunk\",\"created\":1749468951,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_07871e2ad8\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"2\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BgV55GLCfojdRkRiK4dXtVl0jyolC\",\"object\":\"chat.completion.chunk\",\"created\":1749468951,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_07871e2ad8\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"$\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BgV55GLCfojdRkRiK4dXtVl0jyolC\",\"object\":\"chat.completion.chunk\",\"created\":1749468951,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_07871e2ad8\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"\\\",\\\"\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BgV55GLCfojdRkRiK4dXtVl0jyolC\",\"object\":\"chat.completion.chunk\",\"created\":1749468951,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_07871e2ad8\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"block\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BgV55GLCfojdRkRiK4dXtVl0jyolC\",\"object\":\"chat.completion.chunk\",\"created\":1749468951,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_07871e2ad8\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"\\\":{\\\"\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BgV55GLCfojdRkRiK4dXtVl0jyolC\",\"object\":\"chat.completion.chunk\",\"created\":1749468951,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_07871e2ad8\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"type\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BgV55GLCfojdRkRiK4dXtVl0jyolC\",\"object\":\"chat.completion.chunk\",\"created\":1749468951,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_07871e2ad8\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"\\\":\\\"\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BgV55GLCfojdRkRiK4dXtVl0jyolC\",\"object\":\"chat.completion.chunk\",\"created\":1749468951,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_07871e2ad8\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"paragraph\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BgV55GLCfojdRkRiK4dXtVl0jyolC\",\"object\":\"chat.completion.chunk\",\"created\":1749468951,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_07871e2ad8\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"\\\",\\\"\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BgV55GLCfojdRkRiK4dXtVl0jyolC\",\"object\":\"chat.completion.chunk\",\"created\":1749468951,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_07871e2ad8\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"content\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BgV55GLCfojdRkRiK4dXtVl0jyolC\",\"object\":\"chat.completion.chunk\",\"created\":1749468951,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_07871e2ad8\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"\\\":[\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BgV55GLCfojdRkRiK4dXtVl0jyolC\",\"object\":\"chat.completion.chunk\",\"created\":1749468951,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_07871e2ad8\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"{\\\"\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BgV55GLCfojdRkRiK4dXtVl0jyolC\",\"object\":\"chat.completion.chunk\",\"created\":1749468951,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_07871e2ad8\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"type\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BgV55GLCfojdRkRiK4dXtVl0jyolC\",\"object\":\"chat.completion.chunk\",\"created\":1749468951,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_07871e2ad8\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"\\\":\\\"\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BgV55GLCfojdRkRiK4dXtVl0jyolC\",\"object\":\"chat.completion.chunk\",\"created\":1749468951,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_07871e2ad8\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"text\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BgV55GLCfojdRkRiK4dXtVl0jyolC\",\"object\":\"chat.completion.chunk\",\"created\":1749468951,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_07871e2ad8\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"\\\",\\\"\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BgV55GLCfojdRkRiK4dXtVl0jyolC\",\"object\":\"chat.completion.chunk\",\"created\":1749468951,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_07871e2ad8\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"text\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BgV55GLCfojdRkRiK4dXtVl0jyolC\",\"object\":\"chat.completion.chunk\",\"created\":1749468951,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_07871e2ad8\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"\\\":\\\"\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BgV55GLCfojdRkRiK4dXtVl0jyolC\",\"object\":\"chat.completion.chunk\",\"created\":1749468951,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_07871e2ad8\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"Aligned\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BgV55GLCfojdRkRiK4dXtVl0jyolC\",\"object\":\"chat.completion.chunk\",\"created\":1749468951,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_07871e2ad8\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\" text\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BgV55GLCfojdRkRiK4dXtVl0jyolC\",\"object\":\"chat.completion.chunk\",\"created\":1749468951,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_07871e2ad8\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"\\\",\\\"\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BgV55GLCfojdRkRiK4dXtVl0jyolC\",\"object\":\"chat.completion.chunk\",\"created\":1749468951,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_07871e2ad8\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"styles\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BgV55GLCfojdRkRiK4dXtVl0jyolC\",\"object\":\"chat.completion.chunk\",\"created\":1749468951,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_07871e2ad8\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"\\\":\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BgV55GLCfojdRkRiK4dXtVl0jyolC\",\"object\":\"chat.completion.chunk\",\"created\":1749468951,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_07871e2ad8\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"{\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BgV55GLCfojdRkRiK4dXtVl0jyolC\",\"object\":\"chat.completion.chunk\",\"created\":1749468951,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_07871e2ad8\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"}}\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BgV55GLCfojdRkRiK4dXtVl0jyolC\",\"object\":\"chat.completion.chunk\",\"created\":1749468951,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_07871e2ad8\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"]\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BgV55GLCfojdRkRiK4dXtVl0jyolC\",\"object\":\"chat.completion.chunk\",\"created\":1749468951,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_07871e2ad8\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"}}\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BgV55GLCfojdRkRiK4dXtVl0jyolC\",\"object\":\"chat.completion.chunk\",\"created\":1749468951,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_07871e2ad8\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"]}\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BgV55GLCfojdRkRiK4dXtVl0jyolC\",\"object\":\"chat.completion.chunk\",\"created\":1749468951,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_07871e2ad8\",\"choices\":[{\"index\":0,\"delta\":{},\"logprobs\":null,\"finish_reason\":\"stop\"}]}\n\ndata: [DONE]\n\n", - "headers": [] - } -} \ No newline at end of file diff --git a/packages/xl-ai/src/api/formats/json/__snapshots__/json.test.ts/Update/__msw_snapshots__/openai.chat/gpt-4o-2024-08-06 (streaming)/clear block formatting_1_7d12dc86d97bceb7672af8f644a8e79e.json b/packages/xl-ai/src/api/formats/json/__snapshots__/json.test.ts/Update/__msw_snapshots__/openai.chat/gpt-4o-2024-08-06 (streaming)/clear block formatting_1_7d12dc86d97bceb7672af8f644a8e79e.json new file mode 100644 index 0000000000..c7676b9931 --- /dev/null +++ b/packages/xl-ai/src/api/formats/json/__snapshots__/json.test.ts/Update/__msw_snapshots__/openai.chat/gpt-4o-2024-08-06 (streaming)/clear block formatting_1_7d12dc86d97bceb7672af8f644a8e79e.json @@ -0,0 +1,15 @@ +{ + "request": { + "method": "POST", + "url": "https://localhost:3000/ai?provider=openai&url=https%3A%2F%2Fapi.openai.com%2Fv1%2Fchat%2Fcompletions", + "body": "{\"model\":\"gpt-4o-2024-08-06\",\"temperature\":0,\"messages\":[{\"role\":\"system\",\"content\":\"You're manipulating a text document using JSON blocks. \\n Make sure to follow the json schema provided. When referencing ids they MUST be EXACTLY the same (including the trailing $). \\n This is the document as an array of JSON blocks (the cursor is BETWEEN two blocks as indicated by cursor: true):\"},{\"role\":\"system\",\"content\":\"[{\\\"id\\\":\\\"ref1$\\\",\\\"block\\\":{\\\"id\\\":\\\"ref1\\\",\\\"type\\\":\\\"paragraph\\\",\\\"props\\\":{\\\"textColor\\\":\\\"default\\\",\\\"backgroundColor\\\":\\\"red\\\",\\\"textAlignment\\\":\\\"left\\\"},\\\"content\\\":[{\\\"type\\\":\\\"text\\\",\\\"text\\\":\\\"Colored text\\\",\\\"styles\\\":{}}]}},{\\\"cursor\\\":true},{\\\"id\\\":\\\"ref2$\\\",\\\"block\\\":{\\\"id\\\":\\\"ref2\\\",\\\"type\\\":\\\"paragraph\\\",\\\"props\\\":{\\\"textColor\\\":\\\"default\\\",\\\"backgroundColor\\\":\\\"default\\\",\\\"textAlignment\\\":\\\"right\\\"},\\\"content\\\":[{\\\"type\\\":\\\"text\\\",\\\"text\\\":\\\"Aligned text\\\",\\\"styles\\\":{}}]}}]\"},{\"role\":\"system\",\"content\":\"The user asks you to do the following:\"},{\"role\":\"user\",\"content\":\"clear the formatting (colors and alignment)\"},{\"role\":\"system\",\"content\":\"First, determine what part of the document the user is talking about. You SHOULD probably take cursor info into account if needed.\\n EXAMPLE: if user says \\\"below\\\" (without pointing to a specific part of the document) he / she probably indicates the block(s) after the cursor. \\n EXAMPLE: If you want to insert content AT the cursor position (UNLESS indicated otherwise by the user), then you need `referenceId` to point to the block before the cursor with position `after` (or block below and `before`).\\n \\n Prefer updating existing blocks over removing and adding (but this also depends on the user's question).\"}],\"tool_choice\":{\"type\":\"function\",\"function\":{\"name\":\"json\"}},\"tools\":[{\"type\":\"function\",\"function\":{\"name\":\"json\",\"description\":\"Respond with a JSON object.\",\"parameters\":{\"type\":\"object\",\"properties\":{\"operations\":{\"type\":\"array\",\"items\":{\"anyOf\":[{\"type\":\"object\",\"description\":\"Update a block, the new block will replace the existing block.\",\"properties\":{\"type\":{\"type\":\"string\",\"enum\":[\"update\"]},\"id\":{\"type\":\"string\",\"description\":\"id of block to update\"},\"block\":{\"$ref\":\"#/$defs/block\"}},\"required\":[\"type\",\"id\",\"block\"],\"additionalProperties\":false},{\"type\":\"object\",\"description\":\"Insert new blocks\",\"properties\":{\"type\":{\"type\":\"string\",\"enum\":[\"add\"]},\"referenceId\":{\"type\":\"string\",\"description\":\"MUST be an id of a block in the document\"},\"position\":{\"type\":\"string\",\"enum\":[\"before\",\"after\"],\"description\":\"`after` to add blocks AFTER (below) the block with `referenceId`, `before` to add the block BEFORE (above)\"},\"blocks\":{\"items\":{\"$ref\":\"#/$defs/block\"},\"type\":\"array\"}},\"required\":[\"type\",\"referenceId\",\"position\",\"blocks\"],\"additionalProperties\":false},{\"type\":\"object\",\"description\":\"Delete a block\",\"properties\":{\"type\":{\"type\":\"string\",\"enum\":[\"delete\"]},\"id\":{\"type\":\"string\",\"description\":\"id of block to delete\"}},\"required\":[\"type\",\"id\"],\"additionalProperties\":false}]}}},\"additionalProperties\":false,\"required\":[\"operations\"],\"$defs\":{\"styles\":{\"type\":\"object\",\"properties\":{\"bold\":{\"type\":\"boolean\"},\"italic\":{\"type\":\"boolean\"},\"underline\":{\"type\":\"boolean\"},\"strike\":{\"type\":\"boolean\"},\"code\":{\"type\":\"boolean\"},\"textColor\":{\"type\":\"string\"},\"backgroundColor\":{\"type\":\"string\"}},\"additionalProperties\":false},\"styledtext\":{\"type\":\"object\",\"properties\":{\"type\":{\"type\":\"string\",\"enum\":[\"text\"]},\"text\":{\"type\":\"string\"},\"styles\":{\"$ref\":\"#/$defs/styles\"}},\"additionalProperties\":false,\"required\":[\"type\",\"text\"]},\"inlinecontent\":{\"type\":\"array\",\"items\":{\"anyOf\":[{\"type\":\"object\",\"properties\":{\"type\":{\"type\":\"string\",\"enum\":[\"mention\"]},\"props\":{\"type\":\"object\",\"properties\":{\"user\":{\"type\":\"string\"}},\"additionalProperties\":false}},\"additionalProperties\":false,\"required\":[\"type\"]},{\"$ref\":\"#/$defs/styledtext\"},{\"type\":\"object\",\"properties\":{\"type\":{\"type\":\"string\",\"enum\":[\"link\"]},\"content\":{\"type\":\"array\",\"items\":{\"$ref\":\"#/$defs/styledtext\"}},\"href\":{\"type\":\"string\"}},\"additionalProperties\":false,\"required\":[\"type\",\"href\",\"content\"]}]}},\"block\":{\"anyOf\":[{\"type\":\"object\",\"properties\":{\"type\":{\"type\":\"string\",\"enum\":[\"paragraph\",\"quote\",\"toggleListItem\",\"bulletListItem\",\"numberedListItem\"]},\"content\":{\"$ref\":\"#/$defs/inlinecontent\"},\"props\":{\"type\":\"object\",\"properties\":{},\"additionalProperties\":false}},\"additionalProperties\":false,\"required\":[\"type\"]},{\"type\":\"object\",\"properties\":{\"type\":{\"type\":\"string\",\"enum\":[\"heading\"]},\"content\":{\"$ref\":\"#/$defs/inlinecontent\"},\"props\":{\"type\":\"object\",\"properties\":{\"level\":{\"type\":\"number\",\"enum\":[1,2,3]},\"isTogglable\":{\"type\":\"boolean\"}},\"additionalProperties\":false}},\"additionalProperties\":false,\"required\":[\"type\"]},{\"type\":\"object\",\"properties\":{\"type\":{\"type\":\"string\",\"enum\":[\"codeBlock\"]},\"content\":{\"$ref\":\"#/$defs/inlinecontent\"},\"props\":{\"type\":\"object\",\"properties\":{\"language\":{\"type\":\"string\"}},\"additionalProperties\":false}},\"additionalProperties\":false,\"required\":[\"type\"]},{\"type\":\"object\",\"properties\":{\"type\":{\"type\":\"string\",\"enum\":[\"checkListItem\"]},\"content\":{\"$ref\":\"#/$defs/inlinecontent\"},\"props\":{\"type\":\"object\",\"properties\":{\"checked\":{\"type\":\"boolean\"}},\"additionalProperties\":false}},\"additionalProperties\":false,\"required\":[\"type\"]},{\"type\":\"object\",\"properties\":{\"type\":{\"type\":\"string\",\"enum\":[\"table\"]},\"content\":{\"type\":\"object\",\"properties\":{}},\"props\":{\"type\":\"object\",\"properties\":{},\"additionalProperties\":false}},\"additionalProperties\":false,\"required\":[\"type\"]}]}}}}}],\"stream\":true}", + "headers": [], + "cookies": [] + }, + "response": { + "status": 200, + "statusText": "", + "body": "data: {\"id\":\"chatcmpl-BhXnTafTMKhNKdh5bKhuPAfPthVc0\",\"object\":\"chat.completion.chunk\",\"created\":1749717719,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_a288987b44\",\"choices\":[{\"index\":0,\"delta\":{\"role\":\"assistant\",\"content\":null,\"tool_calls\":[{\"index\":0,\"id\":\"call_gz7T6e0xth9ceRUKQR3RQSk1\",\"type\":\"function\",\"function\":{\"name\":\"json\",\"arguments\":\"\"}}],\"refusal\":null},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BhXnTafTMKhNKdh5bKhuPAfPthVc0\",\"object\":\"chat.completion.chunk\",\"created\":1749717719,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_a288987b44\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"{\\\"\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BhXnTafTMKhNKdh5bKhuPAfPthVc0\",\"object\":\"chat.completion.chunk\",\"created\":1749717719,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_a288987b44\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"operations\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BhXnTafTMKhNKdh5bKhuPAfPthVc0\",\"object\":\"chat.completion.chunk\",\"created\":1749717719,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_a288987b44\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"\\\":[\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BhXnTafTMKhNKdh5bKhuPAfPthVc0\",\"object\":\"chat.completion.chunk\",\"created\":1749717719,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_a288987b44\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"{\\\"\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BhXnTafTMKhNKdh5bKhuPAfPthVc0\",\"object\":\"chat.completion.chunk\",\"created\":1749717719,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_a288987b44\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"type\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BhXnTafTMKhNKdh5bKhuPAfPthVc0\",\"object\":\"chat.completion.chunk\",\"created\":1749717719,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_a288987b44\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"\\\":\\\"\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BhXnTafTMKhNKdh5bKhuPAfPthVc0\",\"object\":\"chat.completion.chunk\",\"created\":1749717719,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_a288987b44\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"update\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BhXnTafTMKhNKdh5bKhuPAfPthVc0\",\"object\":\"chat.completion.chunk\",\"created\":1749717719,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_a288987b44\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"\\\",\\\"\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BhXnTafTMKhNKdh5bKhuPAfPthVc0\",\"object\":\"chat.completion.chunk\",\"created\":1749717719,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_a288987b44\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"id\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BhXnTafTMKhNKdh5bKhuPAfPthVc0\",\"object\":\"chat.completion.chunk\",\"created\":1749717719,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_a288987b44\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"\\\":\\\"\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BhXnTafTMKhNKdh5bKhuPAfPthVc0\",\"object\":\"chat.completion.chunk\",\"created\":1749717719,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_a288987b44\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"ref\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BhXnTafTMKhNKdh5bKhuPAfPthVc0\",\"object\":\"chat.completion.chunk\",\"created\":1749717719,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_a288987b44\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"1\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BhXnTafTMKhNKdh5bKhuPAfPthVc0\",\"object\":\"chat.completion.chunk\",\"created\":1749717719,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_a288987b44\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"$\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BhXnTafTMKhNKdh5bKhuPAfPthVc0\",\"object\":\"chat.completion.chunk\",\"created\":1749717719,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_a288987b44\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"\\\",\\\"\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BhXnTafTMKhNKdh5bKhuPAfPthVc0\",\"object\":\"chat.completion.chunk\",\"created\":1749717719,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_a288987b44\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"block\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BhXnTafTMKhNKdh5bKhuPAfPthVc0\",\"object\":\"chat.completion.chunk\",\"created\":1749717719,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_a288987b44\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"\\\":{\\\"\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BhXnTafTMKhNKdh5bKhuPAfPthVc0\",\"object\":\"chat.completion.chunk\",\"created\":1749717719,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_a288987b44\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"type\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BhXnTafTMKhNKdh5bKhuPAfPthVc0\",\"object\":\"chat.completion.chunk\",\"created\":1749717719,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_a288987b44\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"\\\":\\\"\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BhXnTafTMKhNKdh5bKhuPAfPthVc0\",\"object\":\"chat.completion.chunk\",\"created\":1749717719,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_a288987b44\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"paragraph\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BhXnTafTMKhNKdh5bKhuPAfPthVc0\",\"object\":\"chat.completion.chunk\",\"created\":1749717719,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_a288987b44\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"\\\",\\\"\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BhXnTafTMKhNKdh5bKhuPAfPthVc0\",\"object\":\"chat.completion.chunk\",\"created\":1749717719,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_a288987b44\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"content\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BhXnTafTMKhNKdh5bKhuPAfPthVc0\",\"object\":\"chat.completion.chunk\",\"created\":1749717719,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_a288987b44\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"\\\":[\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BhXnTafTMKhNKdh5bKhuPAfPthVc0\",\"object\":\"chat.completion.chunk\",\"created\":1749717719,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_a288987b44\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"{\\\"\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BhXnTafTMKhNKdh5bKhuPAfPthVc0\",\"object\":\"chat.completion.chunk\",\"created\":1749717719,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_a288987b44\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"type\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BhXnTafTMKhNKdh5bKhuPAfPthVc0\",\"object\":\"chat.completion.chunk\",\"created\":1749717719,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_a288987b44\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"\\\":\\\"\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BhXnTafTMKhNKdh5bKhuPAfPthVc0\",\"object\":\"chat.completion.chunk\",\"created\":1749717719,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_a288987b44\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"text\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BhXnTafTMKhNKdh5bKhuPAfPthVc0\",\"object\":\"chat.completion.chunk\",\"created\":1749717719,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_a288987b44\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"\\\",\\\"\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BhXnTafTMKhNKdh5bKhuPAfPthVc0\",\"object\":\"chat.completion.chunk\",\"created\":1749717719,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_a288987b44\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"text\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BhXnTafTMKhNKdh5bKhuPAfPthVc0\",\"object\":\"chat.completion.chunk\",\"created\":1749717719,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_a288987b44\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"\\\":\\\"\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BhXnTafTMKhNKdh5bKhuPAfPthVc0\",\"object\":\"chat.completion.chunk\",\"created\":1749717719,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_a288987b44\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"Colored\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BhXnTafTMKhNKdh5bKhuPAfPthVc0\",\"object\":\"chat.completion.chunk\",\"created\":1749717719,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_a288987b44\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\" text\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BhXnTafTMKhNKdh5bKhuPAfPthVc0\",\"object\":\"chat.completion.chunk\",\"created\":1749717719,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_a288987b44\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"\\\",\\\"\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BhXnTafTMKhNKdh5bKhuPAfPthVc0\",\"object\":\"chat.completion.chunk\",\"created\":1749717719,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_a288987b44\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"styles\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BhXnTafTMKhNKdh5bKhuPAfPthVc0\",\"object\":\"chat.completion.chunk\",\"created\":1749717719,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_a288987b44\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"\\\":\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BhXnTafTMKhNKdh5bKhuPAfPthVc0\",\"object\":\"chat.completion.chunk\",\"created\":1749717719,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_a288987b44\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"{\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BhXnTafTMKhNKdh5bKhuPAfPthVc0\",\"object\":\"chat.completion.chunk\",\"created\":1749717719,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_a288987b44\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"}}\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BhXnTafTMKhNKdh5bKhuPAfPthVc0\",\"object\":\"chat.completion.chunk\",\"created\":1749717719,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_a288987b44\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"]}\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BhXnTafTMKhNKdh5bKhuPAfPthVc0\",\"object\":\"chat.completion.chunk\",\"created\":1749717719,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_a288987b44\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"},{\\\"\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BhXnTafTMKhNKdh5bKhuPAfPthVc0\",\"object\":\"chat.completion.chunk\",\"created\":1749717719,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_a288987b44\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"type\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BhXnTafTMKhNKdh5bKhuPAfPthVc0\",\"object\":\"chat.completion.chunk\",\"created\":1749717719,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_a288987b44\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"\\\":\\\"\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BhXnTafTMKhNKdh5bKhuPAfPthVc0\",\"object\":\"chat.completion.chunk\",\"created\":1749717719,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_a288987b44\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"update\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BhXnTafTMKhNKdh5bKhuPAfPthVc0\",\"object\":\"chat.completion.chunk\",\"created\":1749717719,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_a288987b44\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"\\\",\\\"\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BhXnTafTMKhNKdh5bKhuPAfPthVc0\",\"object\":\"chat.completion.chunk\",\"created\":1749717719,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_a288987b44\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"id\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BhXnTafTMKhNKdh5bKhuPAfPthVc0\",\"object\":\"chat.completion.chunk\",\"created\":1749717719,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_a288987b44\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"\\\":\\\"\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BhXnTafTMKhNKdh5bKhuPAfPthVc0\",\"object\":\"chat.completion.chunk\",\"created\":1749717719,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_a288987b44\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"ref\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BhXnTafTMKhNKdh5bKhuPAfPthVc0\",\"object\":\"chat.completion.chunk\",\"created\":1749717719,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_a288987b44\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"2\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BhXnTafTMKhNKdh5bKhuPAfPthVc0\",\"object\":\"chat.completion.chunk\",\"created\":1749717719,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_a288987b44\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"$\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BhXnTafTMKhNKdh5bKhuPAfPthVc0\",\"object\":\"chat.completion.chunk\",\"created\":1749717719,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_a288987b44\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"\\\",\\\"\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BhXnTafTMKhNKdh5bKhuPAfPthVc0\",\"object\":\"chat.completion.chunk\",\"created\":1749717719,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_a288987b44\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"block\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BhXnTafTMKhNKdh5bKhuPAfPthVc0\",\"object\":\"chat.completion.chunk\",\"created\":1749717719,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_a288987b44\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"\\\":{\\\"\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BhXnTafTMKhNKdh5bKhuPAfPthVc0\",\"object\":\"chat.completion.chunk\",\"created\":1749717719,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_a288987b44\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"type\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BhXnTafTMKhNKdh5bKhuPAfPthVc0\",\"object\":\"chat.completion.chunk\",\"created\":1749717719,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_a288987b44\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"\\\":\\\"\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BhXnTafTMKhNKdh5bKhuPAfPthVc0\",\"object\":\"chat.completion.chunk\",\"created\":1749717719,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_a288987b44\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"paragraph\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BhXnTafTMKhNKdh5bKhuPAfPthVc0\",\"object\":\"chat.completion.chunk\",\"created\":1749717719,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_a288987b44\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"\\\",\\\"\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BhXnTafTMKhNKdh5bKhuPAfPthVc0\",\"object\":\"chat.completion.chunk\",\"created\":1749717719,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_a288987b44\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"content\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BhXnTafTMKhNKdh5bKhuPAfPthVc0\",\"object\":\"chat.completion.chunk\",\"created\":1749717719,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_a288987b44\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"\\\":[\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BhXnTafTMKhNKdh5bKhuPAfPthVc0\",\"object\":\"chat.completion.chunk\",\"created\":1749717719,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_a288987b44\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"{\\\"\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BhXnTafTMKhNKdh5bKhuPAfPthVc0\",\"object\":\"chat.completion.chunk\",\"created\":1749717719,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_a288987b44\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"type\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BhXnTafTMKhNKdh5bKhuPAfPthVc0\",\"object\":\"chat.completion.chunk\",\"created\":1749717719,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_a288987b44\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"\\\":\\\"\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BhXnTafTMKhNKdh5bKhuPAfPthVc0\",\"object\":\"chat.completion.chunk\",\"created\":1749717719,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_a288987b44\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"text\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BhXnTafTMKhNKdh5bKhuPAfPthVc0\",\"object\":\"chat.completion.chunk\",\"created\":1749717719,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_a288987b44\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"\\\",\\\"\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BhXnTafTMKhNKdh5bKhuPAfPthVc0\",\"object\":\"chat.completion.chunk\",\"created\":1749717719,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_a288987b44\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"text\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BhXnTafTMKhNKdh5bKhuPAfPthVc0\",\"object\":\"chat.completion.chunk\",\"created\":1749717719,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_a288987b44\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"\\\":\\\"\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BhXnTafTMKhNKdh5bKhuPAfPthVc0\",\"object\":\"chat.completion.chunk\",\"created\":1749717719,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_a288987b44\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"Aligned\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BhXnTafTMKhNKdh5bKhuPAfPthVc0\",\"object\":\"chat.completion.chunk\",\"created\":1749717719,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_a288987b44\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\" text\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BhXnTafTMKhNKdh5bKhuPAfPthVc0\",\"object\":\"chat.completion.chunk\",\"created\":1749717719,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_a288987b44\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"\\\",\\\"\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BhXnTafTMKhNKdh5bKhuPAfPthVc0\",\"object\":\"chat.completion.chunk\",\"created\":1749717719,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_a288987b44\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"styles\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BhXnTafTMKhNKdh5bKhuPAfPthVc0\",\"object\":\"chat.completion.chunk\",\"created\":1749717719,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_a288987b44\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"\\\":\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BhXnTafTMKhNKdh5bKhuPAfPthVc0\",\"object\":\"chat.completion.chunk\",\"created\":1749717719,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_a288987b44\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"{\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BhXnTafTMKhNKdh5bKhuPAfPthVc0\",\"object\":\"chat.completion.chunk\",\"created\":1749717719,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_a288987b44\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"}}\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BhXnTafTMKhNKdh5bKhuPAfPthVc0\",\"object\":\"chat.completion.chunk\",\"created\":1749717719,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_a288987b44\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"]\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BhXnTafTMKhNKdh5bKhuPAfPthVc0\",\"object\":\"chat.completion.chunk\",\"created\":1749717719,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_a288987b44\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"}}\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BhXnTafTMKhNKdh5bKhuPAfPthVc0\",\"object\":\"chat.completion.chunk\",\"created\":1749717719,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_a288987b44\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"]}\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BhXnTafTMKhNKdh5bKhuPAfPthVc0\",\"object\":\"chat.completion.chunk\",\"created\":1749717719,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_a288987b44\",\"choices\":[{\"index\":0,\"delta\":{},\"logprobs\":null,\"finish_reason\":\"stop\"}]}\n\ndata: [DONE]\n\n", + "headers": [] + } +} \ No newline at end of file diff --git a/packages/xl-ai/src/api/formats/json/__snapshots__/json.test.ts/Update/__msw_snapshots__/openai.chat/gpt-4o-2024-08-06 (streaming)/drop mark and link and change text within mark_1_18dd7d90cf25ffaa7f09dca505490e61.json b/packages/xl-ai/src/api/formats/json/__snapshots__/json.test.ts/Update/__msw_snapshots__/openai.chat/gpt-4o-2024-08-06 (streaming)/drop mark and link and change text within mark_1_4a9889fbd54ce235fcecdfb0a530431d.json similarity index 53% rename from packages/xl-ai/src/api/formats/json/__snapshots__/json.test.ts/Update/__msw_snapshots__/openai.chat/gpt-4o-2024-08-06 (streaming)/drop mark and link and change text within mark_1_18dd7d90cf25ffaa7f09dca505490e61.json rename to packages/xl-ai/src/api/formats/json/__snapshots__/json.test.ts/Update/__msw_snapshots__/openai.chat/gpt-4o-2024-08-06 (streaming)/drop mark and link and change text within mark_1_4a9889fbd54ce235fcecdfb0a530431d.json index e19b5326cc..e68dcf5eaa 100644 --- a/packages/xl-ai/src/api/formats/json/__snapshots__/json.test.ts/Update/__msw_snapshots__/openai.chat/gpt-4o-2024-08-06 (streaming)/drop mark and link and change text within mark_1_18dd7d90cf25ffaa7f09dca505490e61.json +++ b/packages/xl-ai/src/api/formats/json/__snapshots__/json.test.ts/Update/__msw_snapshots__/openai.chat/gpt-4o-2024-08-06 (streaming)/drop mark and link and change text within mark_1_4a9889fbd54ce235fcecdfb0a530431d.json @@ -2,14 +2,14 @@ "request": { "method": "POST", "url": "https://localhost:3000/ai?provider=openai&url=https%3A%2F%2Fapi.openai.com%2Fv1%2Fchat%2Fcompletions", - "body": "{\"model\":\"gpt-4o-2024-08-06\",\"temperature\":0,\"messages\":[{\"role\":\"system\",\"content\":\"You're manipulating a text document using JSON blocks. \\n Make sure to follow the json schema provided. When referencing ids they MUST be EXACTLY the same (including the trailing $). \\n This is the document as an array of JSON blocks (the cursor is BETWEEN two blocks as indicated by cursor: true):\"},{\"role\":\"system\",\"content\":\"[{\\\"id\\\":\\\"ref1$\\\",\\\"block\\\":{\\\"id\\\":\\\"ref1\\\",\\\"type\\\":\\\"paragraph\\\",\\\"props\\\":{\\\"textColor\\\":\\\"default\\\",\\\"backgroundColor\\\":\\\"default\\\",\\\"textAlignment\\\":\\\"left\\\"},\\\"content\\\":[{\\\"type\\\":\\\"text\\\",\\\"text\\\":\\\"Hello, world!\\\",\\\"styles\\\":{}}]}},{\\\"cursor\\\":true},{\\\"id\\\":\\\"ref2$\\\",\\\"block\\\":{\\\"id\\\":\\\"ref2\\\",\\\"type\\\":\\\"paragraph\\\",\\\"props\\\":{\\\"textColor\\\":\\\"default\\\",\\\"backgroundColor\\\":\\\"default\\\",\\\"textAlignment\\\":\\\"left\\\"},\\\"content\\\":[{\\\"type\\\":\\\"text\\\",\\\"text\\\":\\\"Hello, \\\",\\\"styles\\\":{}},{\\\"type\\\":\\\"mention\\\",\\\"props\\\":{\\\"user\\\":\\\"John Doe\\\"}},{\\\"type\\\":\\\"text\\\",\\\"text\\\":\\\"! \\\",\\\"styles\\\":{}},{\\\"type\\\":\\\"text\\\",\\\"text\\\":\\\"How are you doing?\\\",\\\"styles\\\":{\\\"bold\\\":true}},{\\\"type\\\":\\\"text\\\",\\\"text\\\":\\\" \\\",\\\"styles\\\":{}},{\\\"type\\\":\\\"text\\\",\\\"text\\\":\\\"This text is blue!\\\",\\\"styles\\\":{\\\"textColor\\\":\\\"blue\\\"}}]}},{\\\"id\\\":\\\"ref3$\\\",\\\"block\\\":{\\\"id\\\":\\\"ref3\\\",\\\"type\\\":\\\"paragraph\\\",\\\"props\\\":{\\\"textColor\\\":\\\"default\\\",\\\"backgroundColor\\\":\\\"default\\\",\\\"textAlignment\\\":\\\"left\\\"},\\\"content\\\":[{\\\"type\\\":\\\"text\\\",\\\"text\\\":\\\"Hello, world! \\\",\\\"styles\\\":{}},{\\\"type\\\":\\\"text\\\",\\\"text\\\":\\\"Bold text. \\\",\\\"styles\\\":{\\\"bold\\\":true}},{\\\"type\\\":\\\"link\\\",\\\"href\\\":\\\"https://www.google.com\\\",\\\"content\\\":[{\\\"type\\\":\\\"text\\\",\\\"text\\\":\\\"Link.\\\",\\\"styles\\\":{}}]}]}}]\"},{\"role\":\"system\",\"content\":\"The user asks you to do the following:\"},{\"role\":\"user\",\"content\":\"change the last paragraph to 'Hi, world! Bold the text. Link.' without any markup like bold or link\"},{\"role\":\"system\",\"content\":\"First, determine what part of the document the user is talking about. You SHOULD probably take cursor info into account if needed.\\n EXAMPLE: if user says \\\"below\\\" (without pointing to a specific part of the document) he / she probably indicates the block(s) after the cursor. \\n EXAMPLE: If you want to insert content AT the cursor position (UNLESS indicated otherwise by the user), then you need `referenceId` to point to the block before the cursor with position `after` (or block below and `before`).\\n \\n Prefer updating existing blocks over removing and adding (but this also depends on the user's question).\"}],\"tool_choice\":{\"type\":\"function\",\"function\":{\"name\":\"json\"}},\"tools\":[{\"type\":\"function\",\"function\":{\"name\":\"json\",\"description\":\"Respond with a JSON object.\",\"parameters\":{\"type\":\"object\",\"properties\":{\"operations\":{\"type\":\"array\",\"items\":{\"anyOf\":[{\"type\":\"object\",\"description\":\"Update a block, the new block will replace the existing block.\",\"properties\":{\"type\":{\"type\":\"string\",\"enum\":[\"update\"]},\"id\":{\"type\":\"string\",\"description\":\"id of block to update\"},\"block\":{\"$ref\":\"#/$defs/block\"}},\"required\":[\"type\",\"id\",\"block\"],\"additionalProperties\":false},{\"type\":\"object\",\"description\":\"Insert new blocks\",\"properties\":{\"type\":{\"type\":\"string\",\"enum\":[\"add\"]},\"referenceId\":{\"type\":\"string\",\"description\":\"MUST be an id of a block in the document\"},\"position\":{\"type\":\"string\",\"enum\":[\"before\",\"after\"],\"description\":\"`after` to add blocks AFTER (below) the block with `referenceId`, `before` to add the block BEFORE (above)\"},\"blocks\":{\"items\":{\"$ref\":\"#/$defs/block\"},\"type\":\"array\"}},\"required\":[\"type\",\"referenceId\",\"position\",\"blocks\"],\"additionalProperties\":false},{\"type\":\"object\",\"description\":\"Delete a block\",\"properties\":{\"type\":{\"type\":\"string\",\"enum\":[\"delete\"]},\"id\":{\"type\":\"string\",\"description\":\"id of block to delete\"}},\"required\":[\"type\",\"id\"],\"additionalProperties\":false}]}}},\"additionalProperties\":false,\"required\":[\"operations\"],\"$defs\":{\"styles\":{\"type\":\"object\",\"properties\":{\"bold\":{\"type\":\"boolean\"},\"italic\":{\"type\":\"boolean\"},\"underline\":{\"type\":\"boolean\"},\"strike\":{\"type\":\"boolean\"},\"code\":{\"type\":\"boolean\"},\"textColor\":{\"type\":\"string\"},\"backgroundColor\":{\"type\":\"string\"}},\"additionalProperties\":false},\"styledtext\":{\"type\":\"object\",\"properties\":{\"type\":{\"type\":\"string\",\"enum\":[\"text\"]},\"text\":{\"type\":\"string\"},\"styles\":{\"$ref\":\"#/$defs/styles\"}},\"additionalProperties\":false,\"required\":[\"type\",\"text\"]},\"inlinecontent\":{\"type\":\"array\",\"items\":{\"anyOf\":[{\"type\":\"object\",\"properties\":{\"type\":{\"type\":\"string\",\"enum\":[\"mention\"]},\"props\":{\"type\":\"object\",\"properties\":{\"user\":{\"type\":\"string\"}},\"additionalProperties\":false}},\"additionalProperties\":false,\"required\":[\"type\"]},{\"$ref\":\"#/$defs/styledtext\"},{\"type\":\"object\",\"properties\":{\"type\":{\"type\":\"string\",\"enum\":[\"link\"]},\"content\":{\"type\":\"array\",\"items\":{\"$ref\":\"#/$defs/styledtext\"}},\"href\":{\"type\":\"string\"}},\"additionalProperties\":false,\"required\":[\"type\",\"href\",\"content\"]}]}},\"block\":{\"anyOf\":[{\"type\":\"object\",\"properties\":{\"type\":{\"type\":\"string\",\"enum\":[\"paragraph\",\"quote\",\"bulletListItem\",\"numberedListItem\"]},\"content\":{\"$ref\":\"#/$defs/inlinecontent\"},\"props\":{\"type\":\"object\",\"properties\":{},\"additionalProperties\":false}},\"additionalProperties\":false,\"required\":[\"type\"]},{\"type\":\"object\",\"properties\":{\"type\":{\"type\":\"string\",\"enum\":[\"heading\"]},\"content\":{\"$ref\":\"#/$defs/inlinecontent\"},\"props\":{\"type\":\"object\",\"properties\":{\"level\":{\"type\":\"number\",\"enum\":[1,2,3]}},\"additionalProperties\":false}},\"additionalProperties\":false,\"required\":[\"type\"]},{\"type\":\"object\",\"properties\":{\"type\":{\"type\":\"string\",\"enum\":[\"codeBlock\"]},\"content\":{\"$ref\":\"#/$defs/inlinecontent\"},\"props\":{\"type\":\"object\",\"properties\":{\"language\":{\"type\":\"string\"}},\"additionalProperties\":false}},\"additionalProperties\":false,\"required\":[\"type\"]},{\"type\":\"object\",\"properties\":{\"type\":{\"type\":\"string\",\"enum\":[\"checkListItem\"]},\"content\":{\"$ref\":\"#/$defs/inlinecontent\"},\"props\":{\"type\":\"object\",\"properties\":{\"checked\":{\"type\":\"boolean\"}},\"additionalProperties\":false}},\"additionalProperties\":false,\"required\":[\"type\"]},{\"type\":\"object\",\"properties\":{\"type\":{\"type\":\"string\",\"enum\":[\"table\"]},\"content\":{\"type\":\"object\",\"properties\":{}},\"props\":{\"type\":\"object\",\"properties\":{},\"additionalProperties\":false}},\"additionalProperties\":false,\"required\":[\"type\"]}]}}}}}],\"stream\":true}", + "body": "{\"model\":\"gpt-4o-2024-08-06\",\"temperature\":0,\"messages\":[{\"role\":\"system\",\"content\":\"You're manipulating a text document using JSON blocks. \\n Make sure to follow the json schema provided. When referencing ids they MUST be EXACTLY the same (including the trailing $). \\n This is the document as an array of JSON blocks (the cursor is BETWEEN two blocks as indicated by cursor: true):\"},{\"role\":\"system\",\"content\":\"[{\\\"id\\\":\\\"ref1$\\\",\\\"block\\\":{\\\"id\\\":\\\"ref1\\\",\\\"type\\\":\\\"paragraph\\\",\\\"props\\\":{\\\"textColor\\\":\\\"default\\\",\\\"backgroundColor\\\":\\\"default\\\",\\\"textAlignment\\\":\\\"left\\\"},\\\"content\\\":[{\\\"type\\\":\\\"text\\\",\\\"text\\\":\\\"Hello, world!\\\",\\\"styles\\\":{}}]}},{\\\"cursor\\\":true},{\\\"id\\\":\\\"ref2$\\\",\\\"block\\\":{\\\"id\\\":\\\"ref2\\\",\\\"type\\\":\\\"paragraph\\\",\\\"props\\\":{\\\"textColor\\\":\\\"default\\\",\\\"backgroundColor\\\":\\\"default\\\",\\\"textAlignment\\\":\\\"left\\\"},\\\"content\\\":[{\\\"type\\\":\\\"text\\\",\\\"text\\\":\\\"Hello, \\\",\\\"styles\\\":{}},{\\\"type\\\":\\\"mention\\\",\\\"props\\\":{\\\"user\\\":\\\"John Doe\\\"}},{\\\"type\\\":\\\"text\\\",\\\"text\\\":\\\"! \\\",\\\"styles\\\":{}},{\\\"type\\\":\\\"text\\\",\\\"text\\\":\\\"How are you doing?\\\",\\\"styles\\\":{\\\"bold\\\":true}},{\\\"type\\\":\\\"text\\\",\\\"text\\\":\\\" \\\",\\\"styles\\\":{}},{\\\"type\\\":\\\"text\\\",\\\"text\\\":\\\"This text is blue!\\\",\\\"styles\\\":{\\\"textColor\\\":\\\"blue\\\"}}]}},{\\\"id\\\":\\\"ref3$\\\",\\\"block\\\":{\\\"id\\\":\\\"ref3\\\",\\\"type\\\":\\\"paragraph\\\",\\\"props\\\":{\\\"textColor\\\":\\\"default\\\",\\\"backgroundColor\\\":\\\"default\\\",\\\"textAlignment\\\":\\\"left\\\"},\\\"content\\\":[{\\\"type\\\":\\\"text\\\",\\\"text\\\":\\\"Hello, world! \\\",\\\"styles\\\":{}},{\\\"type\\\":\\\"text\\\",\\\"text\\\":\\\"Bold text. \\\",\\\"styles\\\":{\\\"bold\\\":true}},{\\\"type\\\":\\\"link\\\",\\\"href\\\":\\\"https://www.google.com\\\",\\\"content\\\":[{\\\"type\\\":\\\"text\\\",\\\"text\\\":\\\"Link.\\\",\\\"styles\\\":{}}]}]}}]\"},{\"role\":\"system\",\"content\":\"The user asks you to do the following:\"},{\"role\":\"user\",\"content\":\"change the last paragraph to 'Hi, world! Bold the text. Link.' without any markup like bold or link\"},{\"role\":\"system\",\"content\":\"First, determine what part of the document the user is talking about. You SHOULD probably take cursor info into account if needed.\\n EXAMPLE: if user says \\\"below\\\" (without pointing to a specific part of the document) he / she probably indicates the block(s) after the cursor. \\n EXAMPLE: If you want to insert content AT the cursor position (UNLESS indicated otherwise by the user), then you need `referenceId` to point to the block before the cursor with position `after` (or block below and `before`).\\n \\n Prefer updating existing blocks over removing and adding (but this also depends on the user's question).\"}],\"tool_choice\":{\"type\":\"function\",\"function\":{\"name\":\"json\"}},\"tools\":[{\"type\":\"function\",\"function\":{\"name\":\"json\",\"description\":\"Respond with a JSON object.\",\"parameters\":{\"type\":\"object\",\"properties\":{\"operations\":{\"type\":\"array\",\"items\":{\"anyOf\":[{\"type\":\"object\",\"description\":\"Update a block, the new block will replace the existing block.\",\"properties\":{\"type\":{\"type\":\"string\",\"enum\":[\"update\"]},\"id\":{\"type\":\"string\",\"description\":\"id of block to update\"},\"block\":{\"$ref\":\"#/$defs/block\"}},\"required\":[\"type\",\"id\",\"block\"],\"additionalProperties\":false},{\"type\":\"object\",\"description\":\"Insert new blocks\",\"properties\":{\"type\":{\"type\":\"string\",\"enum\":[\"add\"]},\"referenceId\":{\"type\":\"string\",\"description\":\"MUST be an id of a block in the document\"},\"position\":{\"type\":\"string\",\"enum\":[\"before\",\"after\"],\"description\":\"`after` to add blocks AFTER (below) the block with `referenceId`, `before` to add the block BEFORE (above)\"},\"blocks\":{\"items\":{\"$ref\":\"#/$defs/block\"},\"type\":\"array\"}},\"required\":[\"type\",\"referenceId\",\"position\",\"blocks\"],\"additionalProperties\":false},{\"type\":\"object\",\"description\":\"Delete a block\",\"properties\":{\"type\":{\"type\":\"string\",\"enum\":[\"delete\"]},\"id\":{\"type\":\"string\",\"description\":\"id of block to delete\"}},\"required\":[\"type\",\"id\"],\"additionalProperties\":false}]}}},\"additionalProperties\":false,\"required\":[\"operations\"],\"$defs\":{\"styles\":{\"type\":\"object\",\"properties\":{\"bold\":{\"type\":\"boolean\"},\"italic\":{\"type\":\"boolean\"},\"underline\":{\"type\":\"boolean\"},\"strike\":{\"type\":\"boolean\"},\"code\":{\"type\":\"boolean\"},\"textColor\":{\"type\":\"string\"},\"backgroundColor\":{\"type\":\"string\"}},\"additionalProperties\":false},\"styledtext\":{\"type\":\"object\",\"properties\":{\"type\":{\"type\":\"string\",\"enum\":[\"text\"]},\"text\":{\"type\":\"string\"},\"styles\":{\"$ref\":\"#/$defs/styles\"}},\"additionalProperties\":false,\"required\":[\"type\",\"text\"]},\"inlinecontent\":{\"type\":\"array\",\"items\":{\"anyOf\":[{\"type\":\"object\",\"properties\":{\"type\":{\"type\":\"string\",\"enum\":[\"mention\"]},\"props\":{\"type\":\"object\",\"properties\":{\"user\":{\"type\":\"string\"}},\"additionalProperties\":false}},\"additionalProperties\":false,\"required\":[\"type\"]},{\"$ref\":\"#/$defs/styledtext\"},{\"type\":\"object\",\"properties\":{\"type\":{\"type\":\"string\",\"enum\":[\"link\"]},\"content\":{\"type\":\"array\",\"items\":{\"$ref\":\"#/$defs/styledtext\"}},\"href\":{\"type\":\"string\"}},\"additionalProperties\":false,\"required\":[\"type\",\"href\",\"content\"]}]}},\"block\":{\"anyOf\":[{\"type\":\"object\",\"properties\":{\"type\":{\"type\":\"string\",\"enum\":[\"paragraph\",\"quote\",\"toggleListItem\",\"bulletListItem\",\"numberedListItem\"]},\"content\":{\"$ref\":\"#/$defs/inlinecontent\"},\"props\":{\"type\":\"object\",\"properties\":{},\"additionalProperties\":false}},\"additionalProperties\":false,\"required\":[\"type\"]},{\"type\":\"object\",\"properties\":{\"type\":{\"type\":\"string\",\"enum\":[\"heading\"]},\"content\":{\"$ref\":\"#/$defs/inlinecontent\"},\"props\":{\"type\":\"object\",\"properties\":{\"level\":{\"type\":\"number\",\"enum\":[1,2,3]},\"isTogglable\":{\"type\":\"boolean\"}},\"additionalProperties\":false}},\"additionalProperties\":false,\"required\":[\"type\"]},{\"type\":\"object\",\"properties\":{\"type\":{\"type\":\"string\",\"enum\":[\"codeBlock\"]},\"content\":{\"$ref\":\"#/$defs/inlinecontent\"},\"props\":{\"type\":\"object\",\"properties\":{\"language\":{\"type\":\"string\"}},\"additionalProperties\":false}},\"additionalProperties\":false,\"required\":[\"type\"]},{\"type\":\"object\",\"properties\":{\"type\":{\"type\":\"string\",\"enum\":[\"checkListItem\"]},\"content\":{\"$ref\":\"#/$defs/inlinecontent\"},\"props\":{\"type\":\"object\",\"properties\":{\"checked\":{\"type\":\"boolean\"}},\"additionalProperties\":false}},\"additionalProperties\":false,\"required\":[\"type\"]},{\"type\":\"object\",\"properties\":{\"type\":{\"type\":\"string\",\"enum\":[\"table\"]},\"content\":{\"type\":\"object\",\"properties\":{}},\"props\":{\"type\":\"object\",\"properties\":{},\"additionalProperties\":false}},\"additionalProperties\":false,\"required\":[\"type\"]}]}}}}}],\"stream\":true}", "headers": [], "cookies": [] }, "response": { "status": 200, "statusText": "", - "body": "data: {\"id\":\"chatcmpl-BgV4xOWyesB5aGEEJVoa2IplcY9Hr\",\"object\":\"chat.completion.chunk\",\"created\":1749468943,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_07871e2ad8\",\"choices\":[{\"index\":0,\"delta\":{\"role\":\"assistant\",\"content\":null,\"tool_calls\":[{\"index\":0,\"id\":\"call_Fe9x0HQzBJq0Jcv6XIs4a0NB\",\"type\":\"function\",\"function\":{\"name\":\"json\",\"arguments\":\"\"}}],\"refusal\":null},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BgV4xOWyesB5aGEEJVoa2IplcY9Hr\",\"object\":\"chat.completion.chunk\",\"created\":1749468943,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_07871e2ad8\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"{\\\"\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BgV4xOWyesB5aGEEJVoa2IplcY9Hr\",\"object\":\"chat.completion.chunk\",\"created\":1749468943,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_07871e2ad8\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"operations\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BgV4xOWyesB5aGEEJVoa2IplcY9Hr\",\"object\":\"chat.completion.chunk\",\"created\":1749468943,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_07871e2ad8\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"\\\":[\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BgV4xOWyesB5aGEEJVoa2IplcY9Hr\",\"object\":\"chat.completion.chunk\",\"created\":1749468943,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_07871e2ad8\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"{\\\"\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BgV4xOWyesB5aGEEJVoa2IplcY9Hr\",\"object\":\"chat.completion.chunk\",\"created\":1749468943,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_07871e2ad8\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"type\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BgV4xOWyesB5aGEEJVoa2IplcY9Hr\",\"object\":\"chat.completion.chunk\",\"created\":1749468943,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_07871e2ad8\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"\\\":\\\"\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BgV4xOWyesB5aGEEJVoa2IplcY9Hr\",\"object\":\"chat.completion.chunk\",\"created\":1749468943,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_07871e2ad8\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"update\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BgV4xOWyesB5aGEEJVoa2IplcY9Hr\",\"object\":\"chat.completion.chunk\",\"created\":1749468943,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_07871e2ad8\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"\\\",\\\"\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BgV4xOWyesB5aGEEJVoa2IplcY9Hr\",\"object\":\"chat.completion.chunk\",\"created\":1749468943,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_07871e2ad8\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"id\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BgV4xOWyesB5aGEEJVoa2IplcY9Hr\",\"object\":\"chat.completion.chunk\",\"created\":1749468943,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_07871e2ad8\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"\\\":\\\"\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BgV4xOWyesB5aGEEJVoa2IplcY9Hr\",\"object\":\"chat.completion.chunk\",\"created\":1749468943,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_07871e2ad8\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"ref\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BgV4xOWyesB5aGEEJVoa2IplcY9Hr\",\"object\":\"chat.completion.chunk\",\"created\":1749468943,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_07871e2ad8\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"3\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BgV4xOWyesB5aGEEJVoa2IplcY9Hr\",\"object\":\"chat.completion.chunk\",\"created\":1749468943,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_07871e2ad8\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"$\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BgV4xOWyesB5aGEEJVoa2IplcY9Hr\",\"object\":\"chat.completion.chunk\",\"created\":1749468943,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_07871e2ad8\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"\\\",\\\"\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BgV4xOWyesB5aGEEJVoa2IplcY9Hr\",\"object\":\"chat.completion.chunk\",\"created\":1749468943,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_07871e2ad8\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"block\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BgV4xOWyesB5aGEEJVoa2IplcY9Hr\",\"object\":\"chat.completion.chunk\",\"created\":1749468943,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_07871e2ad8\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"\\\":{\\\"\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BgV4xOWyesB5aGEEJVoa2IplcY9Hr\",\"object\":\"chat.completion.chunk\",\"created\":1749468943,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_07871e2ad8\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"type\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BgV4xOWyesB5aGEEJVoa2IplcY9Hr\",\"object\":\"chat.completion.chunk\",\"created\":1749468943,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_07871e2ad8\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"\\\":\\\"\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BgV4xOWyesB5aGEEJVoa2IplcY9Hr\",\"object\":\"chat.completion.chunk\",\"created\":1749468943,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_07871e2ad8\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"paragraph\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BgV4xOWyesB5aGEEJVoa2IplcY9Hr\",\"object\":\"chat.completion.chunk\",\"created\":1749468943,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_07871e2ad8\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"\\\",\\\"\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BgV4xOWyesB5aGEEJVoa2IplcY9Hr\",\"object\":\"chat.completion.chunk\",\"created\":1749468943,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_07871e2ad8\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"content\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BgV4xOWyesB5aGEEJVoa2IplcY9Hr\",\"object\":\"chat.completion.chunk\",\"created\":1749468943,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_07871e2ad8\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"\\\":[\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BgV4xOWyesB5aGEEJVoa2IplcY9Hr\",\"object\":\"chat.completion.chunk\",\"created\":1749468943,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_07871e2ad8\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"{\\\"\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BgV4xOWyesB5aGEEJVoa2IplcY9Hr\",\"object\":\"chat.completion.chunk\",\"created\":1749468943,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_07871e2ad8\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"type\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BgV4xOWyesB5aGEEJVoa2IplcY9Hr\",\"object\":\"chat.completion.chunk\",\"created\":1749468943,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_07871e2ad8\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"\\\":\\\"\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BgV4xOWyesB5aGEEJVoa2IplcY9Hr\",\"object\":\"chat.completion.chunk\",\"created\":1749468943,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_07871e2ad8\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"text\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BgV4xOWyesB5aGEEJVoa2IplcY9Hr\",\"object\":\"chat.completion.chunk\",\"created\":1749468943,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_07871e2ad8\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"\\\",\\\"\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BgV4xOWyesB5aGEEJVoa2IplcY9Hr\",\"object\":\"chat.completion.chunk\",\"created\":1749468943,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_07871e2ad8\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"text\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BgV4xOWyesB5aGEEJVoa2IplcY9Hr\",\"object\":\"chat.completion.chunk\",\"created\":1749468943,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_07871e2ad8\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"\\\":\\\"\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BgV4xOWyesB5aGEEJVoa2IplcY9Hr\",\"object\":\"chat.completion.chunk\",\"created\":1749468943,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_07871e2ad8\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"Hi\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BgV4xOWyesB5aGEEJVoa2IplcY9Hr\",\"object\":\"chat.completion.chunk\",\"created\":1749468943,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_07871e2ad8\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\",\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BgV4xOWyesB5aGEEJVoa2IplcY9Hr\",\"object\":\"chat.completion.chunk\",\"created\":1749468943,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_07871e2ad8\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\" world\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BgV4xOWyesB5aGEEJVoa2IplcY9Hr\",\"object\":\"chat.completion.chunk\",\"created\":1749468943,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_07871e2ad8\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"!\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BgV4xOWyesB5aGEEJVoa2IplcY9Hr\",\"object\":\"chat.completion.chunk\",\"created\":1749468943,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_07871e2ad8\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\" Bold\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BgV4xOWyesB5aGEEJVoa2IplcY9Hr\",\"object\":\"chat.completion.chunk\",\"created\":1749468943,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_07871e2ad8\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\" the\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BgV4xOWyesB5aGEEJVoa2IplcY9Hr\",\"object\":\"chat.completion.chunk\",\"created\":1749468943,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_07871e2ad8\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\" text\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BgV4xOWyesB5aGEEJVoa2IplcY9Hr\",\"object\":\"chat.completion.chunk\",\"created\":1749468943,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_07871e2ad8\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\".\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BgV4xOWyesB5aGEEJVoa2IplcY9Hr\",\"object\":\"chat.completion.chunk\",\"created\":1749468943,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_07871e2ad8\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\" Link\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BgV4xOWyesB5aGEEJVoa2IplcY9Hr\",\"object\":\"chat.completion.chunk\",\"created\":1749468943,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_07871e2ad8\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\".\\\"\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BgV4xOWyesB5aGEEJVoa2IplcY9Hr\",\"object\":\"chat.completion.chunk\",\"created\":1749468943,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_07871e2ad8\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"}]\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BgV4xOWyesB5aGEEJVoa2IplcY9Hr\",\"object\":\"chat.completion.chunk\",\"created\":1749468943,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_07871e2ad8\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"}}\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BgV4xOWyesB5aGEEJVoa2IplcY9Hr\",\"object\":\"chat.completion.chunk\",\"created\":1749468943,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_07871e2ad8\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"]}\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BgV4xOWyesB5aGEEJVoa2IplcY9Hr\",\"object\":\"chat.completion.chunk\",\"created\":1749468943,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_07871e2ad8\",\"choices\":[{\"index\":0,\"delta\":{},\"logprobs\":null,\"finish_reason\":\"stop\"}]}\n\ndata: [DONE]\n\n", + "body": "data: {\"id\":\"chatcmpl-BhXnOlyLjzjMaXD2hvsMjvGxnn2wl\",\"object\":\"chat.completion.chunk\",\"created\":1749717714,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_a288987b44\",\"choices\":[{\"index\":0,\"delta\":{\"role\":\"assistant\",\"content\":null,\"tool_calls\":[{\"index\":0,\"id\":\"call_nOR57USQwuJFvR3mMK35INUF\",\"type\":\"function\",\"function\":{\"name\":\"json\",\"arguments\":\"\"}}],\"refusal\":null},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BhXnOlyLjzjMaXD2hvsMjvGxnn2wl\",\"object\":\"chat.completion.chunk\",\"created\":1749717714,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_a288987b44\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"{\\\"\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BhXnOlyLjzjMaXD2hvsMjvGxnn2wl\",\"object\":\"chat.completion.chunk\",\"created\":1749717714,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_a288987b44\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"operations\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BhXnOlyLjzjMaXD2hvsMjvGxnn2wl\",\"object\":\"chat.completion.chunk\",\"created\":1749717714,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_a288987b44\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"\\\":[\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BhXnOlyLjzjMaXD2hvsMjvGxnn2wl\",\"object\":\"chat.completion.chunk\",\"created\":1749717714,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_a288987b44\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"{\\\"\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BhXnOlyLjzjMaXD2hvsMjvGxnn2wl\",\"object\":\"chat.completion.chunk\",\"created\":1749717714,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_a288987b44\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"type\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BhXnOlyLjzjMaXD2hvsMjvGxnn2wl\",\"object\":\"chat.completion.chunk\",\"created\":1749717714,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_a288987b44\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"\\\":\\\"\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BhXnOlyLjzjMaXD2hvsMjvGxnn2wl\",\"object\":\"chat.completion.chunk\",\"created\":1749717714,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_a288987b44\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"update\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BhXnOlyLjzjMaXD2hvsMjvGxnn2wl\",\"object\":\"chat.completion.chunk\",\"created\":1749717714,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_a288987b44\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"\\\",\\\"\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BhXnOlyLjzjMaXD2hvsMjvGxnn2wl\",\"object\":\"chat.completion.chunk\",\"created\":1749717714,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_a288987b44\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"id\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BhXnOlyLjzjMaXD2hvsMjvGxnn2wl\",\"object\":\"chat.completion.chunk\",\"created\":1749717714,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_a288987b44\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"\\\":\\\"\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BhXnOlyLjzjMaXD2hvsMjvGxnn2wl\",\"object\":\"chat.completion.chunk\",\"created\":1749717714,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_a288987b44\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"ref\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BhXnOlyLjzjMaXD2hvsMjvGxnn2wl\",\"object\":\"chat.completion.chunk\",\"created\":1749717714,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_a288987b44\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"3\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BhXnOlyLjzjMaXD2hvsMjvGxnn2wl\",\"object\":\"chat.completion.chunk\",\"created\":1749717714,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_a288987b44\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"$\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BhXnOlyLjzjMaXD2hvsMjvGxnn2wl\",\"object\":\"chat.completion.chunk\",\"created\":1749717714,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_a288987b44\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"\\\",\\\"\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BhXnOlyLjzjMaXD2hvsMjvGxnn2wl\",\"object\":\"chat.completion.chunk\",\"created\":1749717714,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_a288987b44\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"block\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BhXnOlyLjzjMaXD2hvsMjvGxnn2wl\",\"object\":\"chat.completion.chunk\",\"created\":1749717714,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_a288987b44\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"\\\":{\\\"\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BhXnOlyLjzjMaXD2hvsMjvGxnn2wl\",\"object\":\"chat.completion.chunk\",\"created\":1749717714,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_a288987b44\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"type\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BhXnOlyLjzjMaXD2hvsMjvGxnn2wl\",\"object\":\"chat.completion.chunk\",\"created\":1749717714,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_a288987b44\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"\\\":\\\"\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BhXnOlyLjzjMaXD2hvsMjvGxnn2wl\",\"object\":\"chat.completion.chunk\",\"created\":1749717714,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_a288987b44\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"paragraph\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BhXnOlyLjzjMaXD2hvsMjvGxnn2wl\",\"object\":\"chat.completion.chunk\",\"created\":1749717714,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_a288987b44\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"\\\",\\\"\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BhXnOlyLjzjMaXD2hvsMjvGxnn2wl\",\"object\":\"chat.completion.chunk\",\"created\":1749717714,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_a288987b44\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"content\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BhXnOlyLjzjMaXD2hvsMjvGxnn2wl\",\"object\":\"chat.completion.chunk\",\"created\":1749717714,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_a288987b44\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"\\\":[\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BhXnOlyLjzjMaXD2hvsMjvGxnn2wl\",\"object\":\"chat.completion.chunk\",\"created\":1749717714,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_a288987b44\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"{\\\"\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BhXnOlyLjzjMaXD2hvsMjvGxnn2wl\",\"object\":\"chat.completion.chunk\",\"created\":1749717714,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_a288987b44\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"type\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BhXnOlyLjzjMaXD2hvsMjvGxnn2wl\",\"object\":\"chat.completion.chunk\",\"created\":1749717714,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_a288987b44\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"\\\":\\\"\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BhXnOlyLjzjMaXD2hvsMjvGxnn2wl\",\"object\":\"chat.completion.chunk\",\"created\":1749717714,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_a288987b44\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"text\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BhXnOlyLjzjMaXD2hvsMjvGxnn2wl\",\"object\":\"chat.completion.chunk\",\"created\":1749717714,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_a288987b44\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"\\\",\\\"\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BhXnOlyLjzjMaXD2hvsMjvGxnn2wl\",\"object\":\"chat.completion.chunk\",\"created\":1749717714,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_a288987b44\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"text\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BhXnOlyLjzjMaXD2hvsMjvGxnn2wl\",\"object\":\"chat.completion.chunk\",\"created\":1749717714,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_a288987b44\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"\\\":\\\"\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BhXnOlyLjzjMaXD2hvsMjvGxnn2wl\",\"object\":\"chat.completion.chunk\",\"created\":1749717714,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_a288987b44\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"Hi\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BhXnOlyLjzjMaXD2hvsMjvGxnn2wl\",\"object\":\"chat.completion.chunk\",\"created\":1749717714,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_a288987b44\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\",\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BhXnOlyLjzjMaXD2hvsMjvGxnn2wl\",\"object\":\"chat.completion.chunk\",\"created\":1749717714,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_a288987b44\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\" world\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BhXnOlyLjzjMaXD2hvsMjvGxnn2wl\",\"object\":\"chat.completion.chunk\",\"created\":1749717714,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_a288987b44\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"!\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BhXnOlyLjzjMaXD2hvsMjvGxnn2wl\",\"object\":\"chat.completion.chunk\",\"created\":1749717714,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_a288987b44\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\" Bold\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BhXnOlyLjzjMaXD2hvsMjvGxnn2wl\",\"object\":\"chat.completion.chunk\",\"created\":1749717714,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_a288987b44\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\" the\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BhXnOlyLjzjMaXD2hvsMjvGxnn2wl\",\"object\":\"chat.completion.chunk\",\"created\":1749717714,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_a288987b44\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\" text\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BhXnOlyLjzjMaXD2hvsMjvGxnn2wl\",\"object\":\"chat.completion.chunk\",\"created\":1749717714,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_a288987b44\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\".\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BhXnOlyLjzjMaXD2hvsMjvGxnn2wl\",\"object\":\"chat.completion.chunk\",\"created\":1749717714,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_a288987b44\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\" Link\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BhXnOlyLjzjMaXD2hvsMjvGxnn2wl\",\"object\":\"chat.completion.chunk\",\"created\":1749717714,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_a288987b44\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\".\\\"\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BhXnOlyLjzjMaXD2hvsMjvGxnn2wl\",\"object\":\"chat.completion.chunk\",\"created\":1749717714,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_a288987b44\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"}]\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BhXnOlyLjzjMaXD2hvsMjvGxnn2wl\",\"object\":\"chat.completion.chunk\",\"created\":1749717714,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_a288987b44\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"}}\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BhXnOlyLjzjMaXD2hvsMjvGxnn2wl\",\"object\":\"chat.completion.chunk\",\"created\":1749717714,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_a288987b44\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"]}\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BhXnOlyLjzjMaXD2hvsMjvGxnn2wl\",\"object\":\"chat.completion.chunk\",\"created\":1749717714,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_a288987b44\",\"choices\":[{\"index\":0,\"delta\":{},\"logprobs\":null,\"finish_reason\":\"stop\"}]}\n\ndata: [DONE]\n\n", "headers": [] } } \ No newline at end of file diff --git a/packages/xl-ai/src/api/formats/json/__snapshots__/json.test.ts/Update/__msw_snapshots__/openai.chat/gpt-4o-2024-08-06 (streaming)/drop mark and link_1_5e7d41c01c74c1666bc6651c5a66b3c9.json b/packages/xl-ai/src/api/formats/json/__snapshots__/json.test.ts/Update/__msw_snapshots__/openai.chat/gpt-4o-2024-08-06 (streaming)/drop mark and link_1_f332a26d1db62c0a9cb51445c281a2b7.json similarity index 54% rename from packages/xl-ai/src/api/formats/json/__snapshots__/json.test.ts/Update/__msw_snapshots__/openai.chat/gpt-4o-2024-08-06 (streaming)/drop mark and link_1_5e7d41c01c74c1666bc6651c5a66b3c9.json rename to packages/xl-ai/src/api/formats/json/__snapshots__/json.test.ts/Update/__msw_snapshots__/openai.chat/gpt-4o-2024-08-06 (streaming)/drop mark and link_1_f332a26d1db62c0a9cb51445c281a2b7.json index 755ca2a762..07e798c996 100644 --- a/packages/xl-ai/src/api/formats/json/__snapshots__/json.test.ts/Update/__msw_snapshots__/openai.chat/gpt-4o-2024-08-06 (streaming)/drop mark and link_1_5e7d41c01c74c1666bc6651c5a66b3c9.json +++ b/packages/xl-ai/src/api/formats/json/__snapshots__/json.test.ts/Update/__msw_snapshots__/openai.chat/gpt-4o-2024-08-06 (streaming)/drop mark and link_1_f332a26d1db62c0a9cb51445c281a2b7.json @@ -2,14 +2,14 @@ "request": { "method": "POST", "url": "https://localhost:3000/ai?provider=openai&url=https%3A%2F%2Fapi.openai.com%2Fv1%2Fchat%2Fcompletions", - "body": "{\"model\":\"gpt-4o-2024-08-06\",\"temperature\":0,\"messages\":[{\"role\":\"system\",\"content\":\"You're manipulating a text document using JSON blocks. \\n Make sure to follow the json schema provided. When referencing ids they MUST be EXACTLY the same (including the trailing $). \\n This is the document as an array of JSON blocks (the cursor is BETWEEN two blocks as indicated by cursor: true):\"},{\"role\":\"system\",\"content\":\"[{\\\"id\\\":\\\"ref1$\\\",\\\"block\\\":{\\\"id\\\":\\\"ref1\\\",\\\"type\\\":\\\"paragraph\\\",\\\"props\\\":{\\\"textColor\\\":\\\"default\\\",\\\"backgroundColor\\\":\\\"default\\\",\\\"textAlignment\\\":\\\"left\\\"},\\\"content\\\":[{\\\"type\\\":\\\"text\\\",\\\"text\\\":\\\"Hello, world!\\\",\\\"styles\\\":{}}]}},{\\\"cursor\\\":true},{\\\"id\\\":\\\"ref2$\\\",\\\"block\\\":{\\\"id\\\":\\\"ref2\\\",\\\"type\\\":\\\"paragraph\\\",\\\"props\\\":{\\\"textColor\\\":\\\"default\\\",\\\"backgroundColor\\\":\\\"default\\\",\\\"textAlignment\\\":\\\"left\\\"},\\\"content\\\":[{\\\"type\\\":\\\"text\\\",\\\"text\\\":\\\"Hello, \\\",\\\"styles\\\":{}},{\\\"type\\\":\\\"mention\\\",\\\"props\\\":{\\\"user\\\":\\\"John Doe\\\"}},{\\\"type\\\":\\\"text\\\",\\\"text\\\":\\\"! \\\",\\\"styles\\\":{}},{\\\"type\\\":\\\"text\\\",\\\"text\\\":\\\"How are you doing?\\\",\\\"styles\\\":{\\\"bold\\\":true}},{\\\"type\\\":\\\"text\\\",\\\"text\\\":\\\" \\\",\\\"styles\\\":{}},{\\\"type\\\":\\\"text\\\",\\\"text\\\":\\\"This text is blue!\\\",\\\"styles\\\":{\\\"textColor\\\":\\\"blue\\\"}}]}},{\\\"id\\\":\\\"ref3$\\\",\\\"block\\\":{\\\"id\\\":\\\"ref3\\\",\\\"type\\\":\\\"paragraph\\\",\\\"props\\\":{\\\"textColor\\\":\\\"default\\\",\\\"backgroundColor\\\":\\\"default\\\",\\\"textAlignment\\\":\\\"left\\\"},\\\"content\\\":[{\\\"type\\\":\\\"text\\\",\\\"text\\\":\\\"Hello, world! \\\",\\\"styles\\\":{}},{\\\"type\\\":\\\"text\\\",\\\"text\\\":\\\"Bold text. \\\",\\\"styles\\\":{\\\"bold\\\":true}},{\\\"type\\\":\\\"link\\\",\\\"href\\\":\\\"https://www.google.com\\\",\\\"content\\\":[{\\\"type\\\":\\\"text\\\",\\\"text\\\":\\\"Link.\\\",\\\"styles\\\":{}}]}]}}]\"},{\"role\":\"system\",\"content\":\"The user asks you to do the following:\"},{\"role\":\"user\",\"content\":\"remove the formatting (turn into plain text without styles or urls) from the last paragraph\"},{\"role\":\"system\",\"content\":\"First, determine what part of the document the user is talking about. You SHOULD probably take cursor info into account if needed.\\n EXAMPLE: if user says \\\"below\\\" (without pointing to a specific part of the document) he / she probably indicates the block(s) after the cursor. \\n EXAMPLE: If you want to insert content AT the cursor position (UNLESS indicated otherwise by the user), then you need `referenceId` to point to the block before the cursor with position `after` (or block below and `before`).\\n \\n Prefer updating existing blocks over removing and adding (but this also depends on the user's question).\"}],\"tool_choice\":{\"type\":\"function\",\"function\":{\"name\":\"json\"}},\"tools\":[{\"type\":\"function\",\"function\":{\"name\":\"json\",\"description\":\"Respond with a JSON object.\",\"parameters\":{\"type\":\"object\",\"properties\":{\"operations\":{\"type\":\"array\",\"items\":{\"anyOf\":[{\"type\":\"object\",\"description\":\"Update a block, the new block will replace the existing block.\",\"properties\":{\"type\":{\"type\":\"string\",\"enum\":[\"update\"]},\"id\":{\"type\":\"string\",\"description\":\"id of block to update\"},\"block\":{\"$ref\":\"#/$defs/block\"}},\"required\":[\"type\",\"id\",\"block\"],\"additionalProperties\":false},{\"type\":\"object\",\"description\":\"Insert new blocks\",\"properties\":{\"type\":{\"type\":\"string\",\"enum\":[\"add\"]},\"referenceId\":{\"type\":\"string\",\"description\":\"MUST be an id of a block in the document\"},\"position\":{\"type\":\"string\",\"enum\":[\"before\",\"after\"],\"description\":\"`after` to add blocks AFTER (below) the block with `referenceId`, `before` to add the block BEFORE (above)\"},\"blocks\":{\"items\":{\"$ref\":\"#/$defs/block\"},\"type\":\"array\"}},\"required\":[\"type\",\"referenceId\",\"position\",\"blocks\"],\"additionalProperties\":false},{\"type\":\"object\",\"description\":\"Delete a block\",\"properties\":{\"type\":{\"type\":\"string\",\"enum\":[\"delete\"]},\"id\":{\"type\":\"string\",\"description\":\"id of block to delete\"}},\"required\":[\"type\",\"id\"],\"additionalProperties\":false}]}}},\"additionalProperties\":false,\"required\":[\"operations\"],\"$defs\":{\"styles\":{\"type\":\"object\",\"properties\":{\"bold\":{\"type\":\"boolean\"},\"italic\":{\"type\":\"boolean\"},\"underline\":{\"type\":\"boolean\"},\"strike\":{\"type\":\"boolean\"},\"code\":{\"type\":\"boolean\"},\"textColor\":{\"type\":\"string\"},\"backgroundColor\":{\"type\":\"string\"}},\"additionalProperties\":false},\"styledtext\":{\"type\":\"object\",\"properties\":{\"type\":{\"type\":\"string\",\"enum\":[\"text\"]},\"text\":{\"type\":\"string\"},\"styles\":{\"$ref\":\"#/$defs/styles\"}},\"additionalProperties\":false,\"required\":[\"type\",\"text\"]},\"inlinecontent\":{\"type\":\"array\",\"items\":{\"anyOf\":[{\"type\":\"object\",\"properties\":{\"type\":{\"type\":\"string\",\"enum\":[\"mention\"]},\"props\":{\"type\":\"object\",\"properties\":{\"user\":{\"type\":\"string\"}},\"additionalProperties\":false}},\"additionalProperties\":false,\"required\":[\"type\"]},{\"$ref\":\"#/$defs/styledtext\"},{\"type\":\"object\",\"properties\":{\"type\":{\"type\":\"string\",\"enum\":[\"link\"]},\"content\":{\"type\":\"array\",\"items\":{\"$ref\":\"#/$defs/styledtext\"}},\"href\":{\"type\":\"string\"}},\"additionalProperties\":false,\"required\":[\"type\",\"href\",\"content\"]}]}},\"block\":{\"anyOf\":[{\"type\":\"object\",\"properties\":{\"type\":{\"type\":\"string\",\"enum\":[\"paragraph\",\"quote\",\"bulletListItem\",\"numberedListItem\"]},\"content\":{\"$ref\":\"#/$defs/inlinecontent\"},\"props\":{\"type\":\"object\",\"properties\":{},\"additionalProperties\":false}},\"additionalProperties\":false,\"required\":[\"type\"]},{\"type\":\"object\",\"properties\":{\"type\":{\"type\":\"string\",\"enum\":[\"heading\"]},\"content\":{\"$ref\":\"#/$defs/inlinecontent\"},\"props\":{\"type\":\"object\",\"properties\":{\"level\":{\"type\":\"number\",\"enum\":[1,2,3]}},\"additionalProperties\":false}},\"additionalProperties\":false,\"required\":[\"type\"]},{\"type\":\"object\",\"properties\":{\"type\":{\"type\":\"string\",\"enum\":[\"codeBlock\"]},\"content\":{\"$ref\":\"#/$defs/inlinecontent\"},\"props\":{\"type\":\"object\",\"properties\":{\"language\":{\"type\":\"string\"}},\"additionalProperties\":false}},\"additionalProperties\":false,\"required\":[\"type\"]},{\"type\":\"object\",\"properties\":{\"type\":{\"type\":\"string\",\"enum\":[\"checkListItem\"]},\"content\":{\"$ref\":\"#/$defs/inlinecontent\"},\"props\":{\"type\":\"object\",\"properties\":{\"checked\":{\"type\":\"boolean\"}},\"additionalProperties\":false}},\"additionalProperties\":false,\"required\":[\"type\"]},{\"type\":\"object\",\"properties\":{\"type\":{\"type\":\"string\",\"enum\":[\"table\"]},\"content\":{\"type\":\"object\",\"properties\":{}},\"props\":{\"type\":\"object\",\"properties\":{},\"additionalProperties\":false}},\"additionalProperties\":false,\"required\":[\"type\"]}]}}}}}],\"stream\":true}", + "body": "{\"model\":\"gpt-4o-2024-08-06\",\"temperature\":0,\"messages\":[{\"role\":\"system\",\"content\":\"You're manipulating a text document using JSON blocks. \\n Make sure to follow the json schema provided. When referencing ids they MUST be EXACTLY the same (including the trailing $). \\n This is the document as an array of JSON blocks (the cursor is BETWEEN two blocks as indicated by cursor: true):\"},{\"role\":\"system\",\"content\":\"[{\\\"id\\\":\\\"ref1$\\\",\\\"block\\\":{\\\"id\\\":\\\"ref1\\\",\\\"type\\\":\\\"paragraph\\\",\\\"props\\\":{\\\"textColor\\\":\\\"default\\\",\\\"backgroundColor\\\":\\\"default\\\",\\\"textAlignment\\\":\\\"left\\\"},\\\"content\\\":[{\\\"type\\\":\\\"text\\\",\\\"text\\\":\\\"Hello, world!\\\",\\\"styles\\\":{}}]}},{\\\"cursor\\\":true},{\\\"id\\\":\\\"ref2$\\\",\\\"block\\\":{\\\"id\\\":\\\"ref2\\\",\\\"type\\\":\\\"paragraph\\\",\\\"props\\\":{\\\"textColor\\\":\\\"default\\\",\\\"backgroundColor\\\":\\\"default\\\",\\\"textAlignment\\\":\\\"left\\\"},\\\"content\\\":[{\\\"type\\\":\\\"text\\\",\\\"text\\\":\\\"Hello, \\\",\\\"styles\\\":{}},{\\\"type\\\":\\\"mention\\\",\\\"props\\\":{\\\"user\\\":\\\"John Doe\\\"}},{\\\"type\\\":\\\"text\\\",\\\"text\\\":\\\"! \\\",\\\"styles\\\":{}},{\\\"type\\\":\\\"text\\\",\\\"text\\\":\\\"How are you doing?\\\",\\\"styles\\\":{\\\"bold\\\":true}},{\\\"type\\\":\\\"text\\\",\\\"text\\\":\\\" \\\",\\\"styles\\\":{}},{\\\"type\\\":\\\"text\\\",\\\"text\\\":\\\"This text is blue!\\\",\\\"styles\\\":{\\\"textColor\\\":\\\"blue\\\"}}]}},{\\\"id\\\":\\\"ref3$\\\",\\\"block\\\":{\\\"id\\\":\\\"ref3\\\",\\\"type\\\":\\\"paragraph\\\",\\\"props\\\":{\\\"textColor\\\":\\\"default\\\",\\\"backgroundColor\\\":\\\"default\\\",\\\"textAlignment\\\":\\\"left\\\"},\\\"content\\\":[{\\\"type\\\":\\\"text\\\",\\\"text\\\":\\\"Hello, world! \\\",\\\"styles\\\":{}},{\\\"type\\\":\\\"text\\\",\\\"text\\\":\\\"Bold text. \\\",\\\"styles\\\":{\\\"bold\\\":true}},{\\\"type\\\":\\\"link\\\",\\\"href\\\":\\\"https://www.google.com\\\",\\\"content\\\":[{\\\"type\\\":\\\"text\\\",\\\"text\\\":\\\"Link.\\\",\\\"styles\\\":{}}]}]}}]\"},{\"role\":\"system\",\"content\":\"The user asks you to do the following:\"},{\"role\":\"user\",\"content\":\"remove the formatting (turn into plain text without styles or urls) from the last paragraph\"},{\"role\":\"system\",\"content\":\"First, determine what part of the document the user is talking about. You SHOULD probably take cursor info into account if needed.\\n EXAMPLE: if user says \\\"below\\\" (without pointing to a specific part of the document) he / she probably indicates the block(s) after the cursor. \\n EXAMPLE: If you want to insert content AT the cursor position (UNLESS indicated otherwise by the user), then you need `referenceId` to point to the block before the cursor with position `after` (or block below and `before`).\\n \\n Prefer updating existing blocks over removing and adding (but this also depends on the user's question).\"}],\"tool_choice\":{\"type\":\"function\",\"function\":{\"name\":\"json\"}},\"tools\":[{\"type\":\"function\",\"function\":{\"name\":\"json\",\"description\":\"Respond with a JSON object.\",\"parameters\":{\"type\":\"object\",\"properties\":{\"operations\":{\"type\":\"array\",\"items\":{\"anyOf\":[{\"type\":\"object\",\"description\":\"Update a block, the new block will replace the existing block.\",\"properties\":{\"type\":{\"type\":\"string\",\"enum\":[\"update\"]},\"id\":{\"type\":\"string\",\"description\":\"id of block to update\"},\"block\":{\"$ref\":\"#/$defs/block\"}},\"required\":[\"type\",\"id\",\"block\"],\"additionalProperties\":false},{\"type\":\"object\",\"description\":\"Insert new blocks\",\"properties\":{\"type\":{\"type\":\"string\",\"enum\":[\"add\"]},\"referenceId\":{\"type\":\"string\",\"description\":\"MUST be an id of a block in the document\"},\"position\":{\"type\":\"string\",\"enum\":[\"before\",\"after\"],\"description\":\"`after` to add blocks AFTER (below) the block with `referenceId`, `before` to add the block BEFORE (above)\"},\"blocks\":{\"items\":{\"$ref\":\"#/$defs/block\"},\"type\":\"array\"}},\"required\":[\"type\",\"referenceId\",\"position\",\"blocks\"],\"additionalProperties\":false},{\"type\":\"object\",\"description\":\"Delete a block\",\"properties\":{\"type\":{\"type\":\"string\",\"enum\":[\"delete\"]},\"id\":{\"type\":\"string\",\"description\":\"id of block to delete\"}},\"required\":[\"type\",\"id\"],\"additionalProperties\":false}]}}},\"additionalProperties\":false,\"required\":[\"operations\"],\"$defs\":{\"styles\":{\"type\":\"object\",\"properties\":{\"bold\":{\"type\":\"boolean\"},\"italic\":{\"type\":\"boolean\"},\"underline\":{\"type\":\"boolean\"},\"strike\":{\"type\":\"boolean\"},\"code\":{\"type\":\"boolean\"},\"textColor\":{\"type\":\"string\"},\"backgroundColor\":{\"type\":\"string\"}},\"additionalProperties\":false},\"styledtext\":{\"type\":\"object\",\"properties\":{\"type\":{\"type\":\"string\",\"enum\":[\"text\"]},\"text\":{\"type\":\"string\"},\"styles\":{\"$ref\":\"#/$defs/styles\"}},\"additionalProperties\":false,\"required\":[\"type\",\"text\"]},\"inlinecontent\":{\"type\":\"array\",\"items\":{\"anyOf\":[{\"type\":\"object\",\"properties\":{\"type\":{\"type\":\"string\",\"enum\":[\"mention\"]},\"props\":{\"type\":\"object\",\"properties\":{\"user\":{\"type\":\"string\"}},\"additionalProperties\":false}},\"additionalProperties\":false,\"required\":[\"type\"]},{\"$ref\":\"#/$defs/styledtext\"},{\"type\":\"object\",\"properties\":{\"type\":{\"type\":\"string\",\"enum\":[\"link\"]},\"content\":{\"type\":\"array\",\"items\":{\"$ref\":\"#/$defs/styledtext\"}},\"href\":{\"type\":\"string\"}},\"additionalProperties\":false,\"required\":[\"type\",\"href\",\"content\"]}]}},\"block\":{\"anyOf\":[{\"type\":\"object\",\"properties\":{\"type\":{\"type\":\"string\",\"enum\":[\"paragraph\",\"quote\",\"toggleListItem\",\"bulletListItem\",\"numberedListItem\"]},\"content\":{\"$ref\":\"#/$defs/inlinecontent\"},\"props\":{\"type\":\"object\",\"properties\":{},\"additionalProperties\":false}},\"additionalProperties\":false,\"required\":[\"type\"]},{\"type\":\"object\",\"properties\":{\"type\":{\"type\":\"string\",\"enum\":[\"heading\"]},\"content\":{\"$ref\":\"#/$defs/inlinecontent\"},\"props\":{\"type\":\"object\",\"properties\":{\"level\":{\"type\":\"number\",\"enum\":[1,2,3]},\"isTogglable\":{\"type\":\"boolean\"}},\"additionalProperties\":false}},\"additionalProperties\":false,\"required\":[\"type\"]},{\"type\":\"object\",\"properties\":{\"type\":{\"type\":\"string\",\"enum\":[\"codeBlock\"]},\"content\":{\"$ref\":\"#/$defs/inlinecontent\"},\"props\":{\"type\":\"object\",\"properties\":{\"language\":{\"type\":\"string\"}},\"additionalProperties\":false}},\"additionalProperties\":false,\"required\":[\"type\"]},{\"type\":\"object\",\"properties\":{\"type\":{\"type\":\"string\",\"enum\":[\"checkListItem\"]},\"content\":{\"$ref\":\"#/$defs/inlinecontent\"},\"props\":{\"type\":\"object\",\"properties\":{\"checked\":{\"type\":\"boolean\"}},\"additionalProperties\":false}},\"additionalProperties\":false,\"required\":[\"type\"]},{\"type\":\"object\",\"properties\":{\"type\":{\"type\":\"string\",\"enum\":[\"table\"]},\"content\":{\"type\":\"object\",\"properties\":{}},\"props\":{\"type\":\"object\",\"properties\":{},\"additionalProperties\":false}},\"additionalProperties\":false,\"required\":[\"type\"]}]}}}}}],\"stream\":true}", "headers": [], "cookies": [] }, "response": { "status": 200, "statusText": "", - "body": "data: {\"id\":\"chatcmpl-BgV4wkYPkeZ3ebrpYc7tQBoaQVT70\",\"object\":\"chat.completion.chunk\",\"created\":1749468942,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_07871e2ad8\",\"choices\":[{\"index\":0,\"delta\":{\"role\":\"assistant\",\"content\":null,\"tool_calls\":[{\"index\":0,\"id\":\"call_yp2UKef0KpGa8Rx7nnE3Vmgc\",\"type\":\"function\",\"function\":{\"name\":\"json\",\"arguments\":\"\"}}],\"refusal\":null},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BgV4wkYPkeZ3ebrpYc7tQBoaQVT70\",\"object\":\"chat.completion.chunk\",\"created\":1749468942,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_07871e2ad8\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"{\\\"\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BgV4wkYPkeZ3ebrpYc7tQBoaQVT70\",\"object\":\"chat.completion.chunk\",\"created\":1749468942,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_07871e2ad8\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"operations\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BgV4wkYPkeZ3ebrpYc7tQBoaQVT70\",\"object\":\"chat.completion.chunk\",\"created\":1749468942,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_07871e2ad8\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"\\\":[\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BgV4wkYPkeZ3ebrpYc7tQBoaQVT70\",\"object\":\"chat.completion.chunk\",\"created\":1749468942,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_07871e2ad8\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"{\\\"\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BgV4wkYPkeZ3ebrpYc7tQBoaQVT70\",\"object\":\"chat.completion.chunk\",\"created\":1749468942,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_07871e2ad8\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"type\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BgV4wkYPkeZ3ebrpYc7tQBoaQVT70\",\"object\":\"chat.completion.chunk\",\"created\":1749468942,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_07871e2ad8\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"\\\":\\\"\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BgV4wkYPkeZ3ebrpYc7tQBoaQVT70\",\"object\":\"chat.completion.chunk\",\"created\":1749468942,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_07871e2ad8\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"update\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BgV4wkYPkeZ3ebrpYc7tQBoaQVT70\",\"object\":\"chat.completion.chunk\",\"created\":1749468942,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_07871e2ad8\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"\\\",\\\"\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BgV4wkYPkeZ3ebrpYc7tQBoaQVT70\",\"object\":\"chat.completion.chunk\",\"created\":1749468942,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_07871e2ad8\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"id\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BgV4wkYPkeZ3ebrpYc7tQBoaQVT70\",\"object\":\"chat.completion.chunk\",\"created\":1749468942,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_07871e2ad8\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"\\\":\\\"\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BgV4wkYPkeZ3ebrpYc7tQBoaQVT70\",\"object\":\"chat.completion.chunk\",\"created\":1749468942,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_07871e2ad8\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"ref\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BgV4wkYPkeZ3ebrpYc7tQBoaQVT70\",\"object\":\"chat.completion.chunk\",\"created\":1749468942,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_07871e2ad8\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"3\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BgV4wkYPkeZ3ebrpYc7tQBoaQVT70\",\"object\":\"chat.completion.chunk\",\"created\":1749468942,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_07871e2ad8\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"$\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BgV4wkYPkeZ3ebrpYc7tQBoaQVT70\",\"object\":\"chat.completion.chunk\",\"created\":1749468942,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_07871e2ad8\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"\\\",\\\"\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BgV4wkYPkeZ3ebrpYc7tQBoaQVT70\",\"object\":\"chat.completion.chunk\",\"created\":1749468942,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_07871e2ad8\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"block\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BgV4wkYPkeZ3ebrpYc7tQBoaQVT70\",\"object\":\"chat.completion.chunk\",\"created\":1749468942,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_07871e2ad8\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"\\\":{\\\"\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BgV4wkYPkeZ3ebrpYc7tQBoaQVT70\",\"object\":\"chat.completion.chunk\",\"created\":1749468942,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_07871e2ad8\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"type\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BgV4wkYPkeZ3ebrpYc7tQBoaQVT70\",\"object\":\"chat.completion.chunk\",\"created\":1749468942,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_07871e2ad8\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"\\\":\\\"\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BgV4wkYPkeZ3ebrpYc7tQBoaQVT70\",\"object\":\"chat.completion.chunk\",\"created\":1749468942,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_07871e2ad8\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"paragraph\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BgV4wkYPkeZ3ebrpYc7tQBoaQVT70\",\"object\":\"chat.completion.chunk\",\"created\":1749468942,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_07871e2ad8\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"\\\",\\\"\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BgV4wkYPkeZ3ebrpYc7tQBoaQVT70\",\"object\":\"chat.completion.chunk\",\"created\":1749468942,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_07871e2ad8\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"content\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BgV4wkYPkeZ3ebrpYc7tQBoaQVT70\",\"object\":\"chat.completion.chunk\",\"created\":1749468942,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_07871e2ad8\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"\\\":[\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BgV4wkYPkeZ3ebrpYc7tQBoaQVT70\",\"object\":\"chat.completion.chunk\",\"created\":1749468942,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_07871e2ad8\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"{\\\"\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BgV4wkYPkeZ3ebrpYc7tQBoaQVT70\",\"object\":\"chat.completion.chunk\",\"created\":1749468942,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_07871e2ad8\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"type\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BgV4wkYPkeZ3ebrpYc7tQBoaQVT70\",\"object\":\"chat.completion.chunk\",\"created\":1749468942,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_07871e2ad8\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"\\\":\\\"\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BgV4wkYPkeZ3ebrpYc7tQBoaQVT70\",\"object\":\"chat.completion.chunk\",\"created\":1749468942,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_07871e2ad8\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"text\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BgV4wkYPkeZ3ebrpYc7tQBoaQVT70\",\"object\":\"chat.completion.chunk\",\"created\":1749468942,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_07871e2ad8\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"\\\",\\\"\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BgV4wkYPkeZ3ebrpYc7tQBoaQVT70\",\"object\":\"chat.completion.chunk\",\"created\":1749468942,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_07871e2ad8\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"text\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BgV4wkYPkeZ3ebrpYc7tQBoaQVT70\",\"object\":\"chat.completion.chunk\",\"created\":1749468942,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_07871e2ad8\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"\\\":\\\"\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BgV4wkYPkeZ3ebrpYc7tQBoaQVT70\",\"object\":\"chat.completion.chunk\",\"created\":1749468942,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_07871e2ad8\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"Hello\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BgV4wkYPkeZ3ebrpYc7tQBoaQVT70\",\"object\":\"chat.completion.chunk\",\"created\":1749468942,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_07871e2ad8\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\",\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BgV4wkYPkeZ3ebrpYc7tQBoaQVT70\",\"object\":\"chat.completion.chunk\",\"created\":1749468942,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_07871e2ad8\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\" world\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BgV4wkYPkeZ3ebrpYc7tQBoaQVT70\",\"object\":\"chat.completion.chunk\",\"created\":1749468942,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_07871e2ad8\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"!\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BgV4wkYPkeZ3ebrpYc7tQBoaQVT70\",\"object\":\"chat.completion.chunk\",\"created\":1749468942,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_07871e2ad8\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\" Bold\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BgV4wkYPkeZ3ebrpYc7tQBoaQVT70\",\"object\":\"chat.completion.chunk\",\"created\":1749468942,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_07871e2ad8\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\" text\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BgV4wkYPkeZ3ebrpYc7tQBoaQVT70\",\"object\":\"chat.completion.chunk\",\"created\":1749468942,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_07871e2ad8\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\".\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BgV4wkYPkeZ3ebrpYc7tQBoaQVT70\",\"object\":\"chat.completion.chunk\",\"created\":1749468942,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_07871e2ad8\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\" Link\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BgV4wkYPkeZ3ebrpYc7tQBoaQVT70\",\"object\":\"chat.completion.chunk\",\"created\":1749468942,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_07871e2ad8\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\".\\\"\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BgV4wkYPkeZ3ebrpYc7tQBoaQVT70\",\"object\":\"chat.completion.chunk\",\"created\":1749468942,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_07871e2ad8\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"}]\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BgV4wkYPkeZ3ebrpYc7tQBoaQVT70\",\"object\":\"chat.completion.chunk\",\"created\":1749468942,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_07871e2ad8\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"}}\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BgV4wkYPkeZ3ebrpYc7tQBoaQVT70\",\"object\":\"chat.completion.chunk\",\"created\":1749468942,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_07871e2ad8\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"]}\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BgV4wkYPkeZ3ebrpYc7tQBoaQVT70\",\"object\":\"chat.completion.chunk\",\"created\":1749468942,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_07871e2ad8\",\"choices\":[{\"index\":0,\"delta\":{},\"logprobs\":null,\"finish_reason\":\"stop\"}]}\n\ndata: [DONE]\n\n", + "body": "data: {\"id\":\"chatcmpl-BhXnNytdnJUnAXBsmMbjWQdtItcWi\",\"object\":\"chat.completion.chunk\",\"created\":1749717713,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_a288987b44\",\"choices\":[{\"index\":0,\"delta\":{\"role\":\"assistant\",\"content\":null,\"tool_calls\":[{\"index\":0,\"id\":\"call_J4JmqQAFVKaD1LaOJhSlvuOP\",\"type\":\"function\",\"function\":{\"name\":\"json\",\"arguments\":\"\"}}],\"refusal\":null},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BhXnNytdnJUnAXBsmMbjWQdtItcWi\",\"object\":\"chat.completion.chunk\",\"created\":1749717713,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_a288987b44\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"{\\\"\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BhXnNytdnJUnAXBsmMbjWQdtItcWi\",\"object\":\"chat.completion.chunk\",\"created\":1749717713,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_a288987b44\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"operations\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BhXnNytdnJUnAXBsmMbjWQdtItcWi\",\"object\":\"chat.completion.chunk\",\"created\":1749717713,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_a288987b44\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"\\\":[\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BhXnNytdnJUnAXBsmMbjWQdtItcWi\",\"object\":\"chat.completion.chunk\",\"created\":1749717713,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_a288987b44\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"{\\\"\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BhXnNytdnJUnAXBsmMbjWQdtItcWi\",\"object\":\"chat.completion.chunk\",\"created\":1749717713,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_a288987b44\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"type\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BhXnNytdnJUnAXBsmMbjWQdtItcWi\",\"object\":\"chat.completion.chunk\",\"created\":1749717713,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_a288987b44\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"\\\":\\\"\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BhXnNytdnJUnAXBsmMbjWQdtItcWi\",\"object\":\"chat.completion.chunk\",\"created\":1749717713,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_a288987b44\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"update\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BhXnNytdnJUnAXBsmMbjWQdtItcWi\",\"object\":\"chat.completion.chunk\",\"created\":1749717713,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_a288987b44\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"\\\",\\\"\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BhXnNytdnJUnAXBsmMbjWQdtItcWi\",\"object\":\"chat.completion.chunk\",\"created\":1749717713,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_a288987b44\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"id\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BhXnNytdnJUnAXBsmMbjWQdtItcWi\",\"object\":\"chat.completion.chunk\",\"created\":1749717713,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_a288987b44\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"\\\":\\\"\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BhXnNytdnJUnAXBsmMbjWQdtItcWi\",\"object\":\"chat.completion.chunk\",\"created\":1749717713,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_a288987b44\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"ref\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BhXnNytdnJUnAXBsmMbjWQdtItcWi\",\"object\":\"chat.completion.chunk\",\"created\":1749717713,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_a288987b44\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"3\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BhXnNytdnJUnAXBsmMbjWQdtItcWi\",\"object\":\"chat.completion.chunk\",\"created\":1749717713,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_a288987b44\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"$\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BhXnNytdnJUnAXBsmMbjWQdtItcWi\",\"object\":\"chat.completion.chunk\",\"created\":1749717713,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_a288987b44\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"\\\",\\\"\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BhXnNytdnJUnAXBsmMbjWQdtItcWi\",\"object\":\"chat.completion.chunk\",\"created\":1749717713,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_a288987b44\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"block\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BhXnNytdnJUnAXBsmMbjWQdtItcWi\",\"object\":\"chat.completion.chunk\",\"created\":1749717713,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_a288987b44\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"\\\":{\\\"\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BhXnNytdnJUnAXBsmMbjWQdtItcWi\",\"object\":\"chat.completion.chunk\",\"created\":1749717713,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_a288987b44\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"type\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BhXnNytdnJUnAXBsmMbjWQdtItcWi\",\"object\":\"chat.completion.chunk\",\"created\":1749717713,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_a288987b44\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"\\\":\\\"\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BhXnNytdnJUnAXBsmMbjWQdtItcWi\",\"object\":\"chat.completion.chunk\",\"created\":1749717713,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_a288987b44\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"paragraph\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BhXnNytdnJUnAXBsmMbjWQdtItcWi\",\"object\":\"chat.completion.chunk\",\"created\":1749717713,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_a288987b44\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"\\\",\\\"\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BhXnNytdnJUnAXBsmMbjWQdtItcWi\",\"object\":\"chat.completion.chunk\",\"created\":1749717713,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_a288987b44\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"content\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BhXnNytdnJUnAXBsmMbjWQdtItcWi\",\"object\":\"chat.completion.chunk\",\"created\":1749717713,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_a288987b44\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"\\\":[\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BhXnNytdnJUnAXBsmMbjWQdtItcWi\",\"object\":\"chat.completion.chunk\",\"created\":1749717713,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_a288987b44\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"{\\\"\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BhXnNytdnJUnAXBsmMbjWQdtItcWi\",\"object\":\"chat.completion.chunk\",\"created\":1749717713,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_a288987b44\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"type\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BhXnNytdnJUnAXBsmMbjWQdtItcWi\",\"object\":\"chat.completion.chunk\",\"created\":1749717713,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_a288987b44\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"\\\":\\\"\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BhXnNytdnJUnAXBsmMbjWQdtItcWi\",\"object\":\"chat.completion.chunk\",\"created\":1749717713,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_a288987b44\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"text\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BhXnNytdnJUnAXBsmMbjWQdtItcWi\",\"object\":\"chat.completion.chunk\",\"created\":1749717713,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_a288987b44\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"\\\",\\\"\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BhXnNytdnJUnAXBsmMbjWQdtItcWi\",\"object\":\"chat.completion.chunk\",\"created\":1749717713,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_a288987b44\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"text\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BhXnNytdnJUnAXBsmMbjWQdtItcWi\",\"object\":\"chat.completion.chunk\",\"created\":1749717713,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_a288987b44\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"\\\":\\\"\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BhXnNytdnJUnAXBsmMbjWQdtItcWi\",\"object\":\"chat.completion.chunk\",\"created\":1749717713,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_a288987b44\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"Hello\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BhXnNytdnJUnAXBsmMbjWQdtItcWi\",\"object\":\"chat.completion.chunk\",\"created\":1749717713,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_a288987b44\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\",\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BhXnNytdnJUnAXBsmMbjWQdtItcWi\",\"object\":\"chat.completion.chunk\",\"created\":1749717713,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_a288987b44\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\" world\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BhXnNytdnJUnAXBsmMbjWQdtItcWi\",\"object\":\"chat.completion.chunk\",\"created\":1749717713,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_a288987b44\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"!\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BhXnNytdnJUnAXBsmMbjWQdtItcWi\",\"object\":\"chat.completion.chunk\",\"created\":1749717713,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_a288987b44\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\" Bold\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BhXnNytdnJUnAXBsmMbjWQdtItcWi\",\"object\":\"chat.completion.chunk\",\"created\":1749717713,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_a288987b44\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\" text\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BhXnNytdnJUnAXBsmMbjWQdtItcWi\",\"object\":\"chat.completion.chunk\",\"created\":1749717713,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_a288987b44\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\".\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BhXnNytdnJUnAXBsmMbjWQdtItcWi\",\"object\":\"chat.completion.chunk\",\"created\":1749717713,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_a288987b44\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\" Link\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BhXnNytdnJUnAXBsmMbjWQdtItcWi\",\"object\":\"chat.completion.chunk\",\"created\":1749717713,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_a288987b44\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\".\\\"\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BhXnNytdnJUnAXBsmMbjWQdtItcWi\",\"object\":\"chat.completion.chunk\",\"created\":1749717713,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_a288987b44\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"}]\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BhXnNytdnJUnAXBsmMbjWQdtItcWi\",\"object\":\"chat.completion.chunk\",\"created\":1749717713,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_a288987b44\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"}}\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BhXnNytdnJUnAXBsmMbjWQdtItcWi\",\"object\":\"chat.completion.chunk\",\"created\":1749717713,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_a288987b44\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"]}\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BhXnNytdnJUnAXBsmMbjWQdtItcWi\",\"object\":\"chat.completion.chunk\",\"created\":1749717713,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_a288987b44\",\"choices\":[{\"index\":0,\"delta\":{},\"logprobs\":null,\"finish_reason\":\"stop\"}]}\n\ndata: [DONE]\n\n", "headers": [] } } \ No newline at end of file diff --git a/packages/xl-ai/src/api/formats/json/__snapshots__/json.test.ts/Update/__msw_snapshots__/openai.chat/gpt-4o-2024-08-06 (streaming)/modify nested content_1_8fdf78b590467ff53ebd509818c3413f.json b/packages/xl-ai/src/api/formats/json/__snapshots__/json.test.ts/Update/__msw_snapshots__/openai.chat/gpt-4o-2024-08-06 (streaming)/modify nested content_1_10ac370799c69df6f3d041eedb3d2472.json similarity index 52% rename from packages/xl-ai/src/api/formats/json/__snapshots__/json.test.ts/Update/__msw_snapshots__/openai.chat/gpt-4o-2024-08-06 (streaming)/modify nested content_1_8fdf78b590467ff53ebd509818c3413f.json rename to packages/xl-ai/src/api/formats/json/__snapshots__/json.test.ts/Update/__msw_snapshots__/openai.chat/gpt-4o-2024-08-06 (streaming)/modify nested content_1_10ac370799c69df6f3d041eedb3d2472.json index 33e8efa72a..67b74893e4 100644 --- a/packages/xl-ai/src/api/formats/json/__snapshots__/json.test.ts/Update/__msw_snapshots__/openai.chat/gpt-4o-2024-08-06 (streaming)/modify nested content_1_8fdf78b590467ff53ebd509818c3413f.json +++ b/packages/xl-ai/src/api/formats/json/__snapshots__/json.test.ts/Update/__msw_snapshots__/openai.chat/gpt-4o-2024-08-06 (streaming)/modify nested content_1_10ac370799c69df6f3d041eedb3d2472.json @@ -2,14 +2,14 @@ "request": { "method": "POST", "url": "https://localhost:3000/ai?provider=openai&url=https%3A%2F%2Fapi.openai.com%2Fv1%2Fchat%2Fcompletions", - "body": "{\"model\":\"gpt-4o-2024-08-06\",\"temperature\":0,\"messages\":[{\"role\":\"system\",\"content\":\"You're manipulating a text document using JSON blocks. \\n Make sure to follow the json schema provided. When referencing ids they MUST be EXACTLY the same (including the trailing $). \\n This is the document as an array of JSON blocks (the cursor is BETWEEN two blocks as indicated by cursor: true):\"},{\"role\":\"system\",\"content\":\"[{\\\"id\\\":\\\"ref1$\\\",\\\"block\\\":{\\\"id\\\":\\\"ref1\\\",\\\"type\\\":\\\"paragraph\\\",\\\"props\\\":{\\\"textColor\\\":\\\"default\\\",\\\"backgroundColor\\\":\\\"default\\\",\\\"textAlignment\\\":\\\"left\\\"},\\\"content\\\":[{\\\"type\\\":\\\"text\\\",\\\"text\\\":\\\"I need to buy:\\\",\\\"styles\\\":{}}]}},{\\\"cursor\\\":true},{\\\"id\\\":\\\"ref2$\\\",\\\"block\\\":{\\\"id\\\":\\\"ref2\\\",\\\"type\\\":\\\"paragraph\\\",\\\"props\\\":{\\\"textColor\\\":\\\"default\\\",\\\"backgroundColor\\\":\\\"default\\\",\\\"textAlignment\\\":\\\"left\\\"},\\\"content\\\":[{\\\"type\\\":\\\"text\\\",\\\"text\\\":\\\"Apples\\\",\\\"styles\\\":{}}]}}]\"},{\"role\":\"system\",\"content\":\"The user asks you to do the following:\"},{\"role\":\"user\",\"content\":\"make apples uppercase\"},{\"role\":\"system\",\"content\":\"First, determine what part of the document the user is talking about. You SHOULD probably take cursor info into account if needed.\\n EXAMPLE: if user says \\\"below\\\" (without pointing to a specific part of the document) he / she probably indicates the block(s) after the cursor. \\n EXAMPLE: If you want to insert content AT the cursor position (UNLESS indicated otherwise by the user), then you need `referenceId` to point to the block before the cursor with position `after` (or block below and `before`).\\n \\n Prefer updating existing blocks over removing and adding (but this also depends on the user's question).\"}],\"tool_choice\":{\"type\":\"function\",\"function\":{\"name\":\"json\"}},\"tools\":[{\"type\":\"function\",\"function\":{\"name\":\"json\",\"description\":\"Respond with a JSON object.\",\"parameters\":{\"type\":\"object\",\"properties\":{\"operations\":{\"type\":\"array\",\"items\":{\"anyOf\":[{\"type\":\"object\",\"description\":\"Update a block, the new block will replace the existing block.\",\"properties\":{\"type\":{\"type\":\"string\",\"enum\":[\"update\"]},\"id\":{\"type\":\"string\",\"description\":\"id of block to update\"},\"block\":{\"$ref\":\"#/$defs/block\"}},\"required\":[\"type\",\"id\",\"block\"],\"additionalProperties\":false},{\"type\":\"object\",\"description\":\"Insert new blocks\",\"properties\":{\"type\":{\"type\":\"string\",\"enum\":[\"add\"]},\"referenceId\":{\"type\":\"string\",\"description\":\"MUST be an id of a block in the document\"},\"position\":{\"type\":\"string\",\"enum\":[\"before\",\"after\"],\"description\":\"`after` to add blocks AFTER (below) the block with `referenceId`, `before` to add the block BEFORE (above)\"},\"blocks\":{\"items\":{\"$ref\":\"#/$defs/block\"},\"type\":\"array\"}},\"required\":[\"type\",\"referenceId\",\"position\",\"blocks\"],\"additionalProperties\":false},{\"type\":\"object\",\"description\":\"Delete a block\",\"properties\":{\"type\":{\"type\":\"string\",\"enum\":[\"delete\"]},\"id\":{\"type\":\"string\",\"description\":\"id of block to delete\"}},\"required\":[\"type\",\"id\"],\"additionalProperties\":false}]}}},\"additionalProperties\":false,\"required\":[\"operations\"],\"$defs\":{\"styles\":{\"type\":\"object\",\"properties\":{\"bold\":{\"type\":\"boolean\"},\"italic\":{\"type\":\"boolean\"},\"underline\":{\"type\":\"boolean\"},\"strike\":{\"type\":\"boolean\"},\"code\":{\"type\":\"boolean\"},\"textColor\":{\"type\":\"string\"},\"backgroundColor\":{\"type\":\"string\"}},\"additionalProperties\":false},\"styledtext\":{\"type\":\"object\",\"properties\":{\"type\":{\"type\":\"string\",\"enum\":[\"text\"]},\"text\":{\"type\":\"string\"},\"styles\":{\"$ref\":\"#/$defs/styles\"}},\"additionalProperties\":false,\"required\":[\"type\",\"text\"]},\"inlinecontent\":{\"type\":\"array\",\"items\":{\"anyOf\":[{\"type\":\"object\",\"properties\":{\"type\":{\"type\":\"string\",\"enum\":[\"mention\"]},\"props\":{\"type\":\"object\",\"properties\":{\"user\":{\"type\":\"string\"}},\"additionalProperties\":false}},\"additionalProperties\":false,\"required\":[\"type\"]},{\"$ref\":\"#/$defs/styledtext\"},{\"type\":\"object\",\"properties\":{\"type\":{\"type\":\"string\",\"enum\":[\"link\"]},\"content\":{\"type\":\"array\",\"items\":{\"$ref\":\"#/$defs/styledtext\"}},\"href\":{\"type\":\"string\"}},\"additionalProperties\":false,\"required\":[\"type\",\"href\",\"content\"]}]}},\"block\":{\"anyOf\":[{\"type\":\"object\",\"properties\":{\"type\":{\"type\":\"string\",\"enum\":[\"paragraph\",\"quote\",\"bulletListItem\",\"numberedListItem\"]},\"content\":{\"$ref\":\"#/$defs/inlinecontent\"},\"props\":{\"type\":\"object\",\"properties\":{},\"additionalProperties\":false}},\"additionalProperties\":false,\"required\":[\"type\"]},{\"type\":\"object\",\"properties\":{\"type\":{\"type\":\"string\",\"enum\":[\"heading\"]},\"content\":{\"$ref\":\"#/$defs/inlinecontent\"},\"props\":{\"type\":\"object\",\"properties\":{\"level\":{\"type\":\"number\",\"enum\":[1,2,3]}},\"additionalProperties\":false}},\"additionalProperties\":false,\"required\":[\"type\"]},{\"type\":\"object\",\"properties\":{\"type\":{\"type\":\"string\",\"enum\":[\"codeBlock\"]},\"content\":{\"$ref\":\"#/$defs/inlinecontent\"},\"props\":{\"type\":\"object\",\"properties\":{\"language\":{\"type\":\"string\"}},\"additionalProperties\":false}},\"additionalProperties\":false,\"required\":[\"type\"]},{\"type\":\"object\",\"properties\":{\"type\":{\"type\":\"string\",\"enum\":[\"checkListItem\"]},\"content\":{\"$ref\":\"#/$defs/inlinecontent\"},\"props\":{\"type\":\"object\",\"properties\":{\"checked\":{\"type\":\"boolean\"}},\"additionalProperties\":false}},\"additionalProperties\":false,\"required\":[\"type\"]},{\"type\":\"object\",\"properties\":{\"type\":{\"type\":\"string\",\"enum\":[\"table\"]},\"content\":{\"type\":\"object\",\"properties\":{}},\"props\":{\"type\":\"object\",\"properties\":{},\"additionalProperties\":false}},\"additionalProperties\":false,\"required\":[\"type\"]}]}}}}}],\"stream\":true}", + "body": "{\"model\":\"gpt-4o-2024-08-06\",\"temperature\":0,\"messages\":[{\"role\":\"system\",\"content\":\"You're manipulating a text document using JSON blocks. \\n Make sure to follow the json schema provided. When referencing ids they MUST be EXACTLY the same (including the trailing $). \\n This is the document as an array of JSON blocks (the cursor is BETWEEN two blocks as indicated by cursor: true):\"},{\"role\":\"system\",\"content\":\"[{\\\"id\\\":\\\"ref1$\\\",\\\"block\\\":{\\\"id\\\":\\\"ref1\\\",\\\"type\\\":\\\"paragraph\\\",\\\"props\\\":{\\\"textColor\\\":\\\"default\\\",\\\"backgroundColor\\\":\\\"default\\\",\\\"textAlignment\\\":\\\"left\\\"},\\\"content\\\":[{\\\"type\\\":\\\"text\\\",\\\"text\\\":\\\"I need to buy:\\\",\\\"styles\\\":{}}]}},{\\\"cursor\\\":true},{\\\"id\\\":\\\"ref2$\\\",\\\"block\\\":{\\\"id\\\":\\\"ref2\\\",\\\"type\\\":\\\"paragraph\\\",\\\"props\\\":{\\\"textColor\\\":\\\"default\\\",\\\"backgroundColor\\\":\\\"default\\\",\\\"textAlignment\\\":\\\"left\\\"},\\\"content\\\":[{\\\"type\\\":\\\"text\\\",\\\"text\\\":\\\"Apples\\\",\\\"styles\\\":{}}]}}]\"},{\"role\":\"system\",\"content\":\"The user asks you to do the following:\"},{\"role\":\"user\",\"content\":\"make apples uppercase\"},{\"role\":\"system\",\"content\":\"First, determine what part of the document the user is talking about. You SHOULD probably take cursor info into account if needed.\\n EXAMPLE: if user says \\\"below\\\" (without pointing to a specific part of the document) he / she probably indicates the block(s) after the cursor. \\n EXAMPLE: If you want to insert content AT the cursor position (UNLESS indicated otherwise by the user), then you need `referenceId` to point to the block before the cursor with position `after` (or block below and `before`).\\n \\n Prefer updating existing blocks over removing and adding (but this also depends on the user's question).\"}],\"tool_choice\":{\"type\":\"function\",\"function\":{\"name\":\"json\"}},\"tools\":[{\"type\":\"function\",\"function\":{\"name\":\"json\",\"description\":\"Respond with a JSON object.\",\"parameters\":{\"type\":\"object\",\"properties\":{\"operations\":{\"type\":\"array\",\"items\":{\"anyOf\":[{\"type\":\"object\",\"description\":\"Update a block, the new block will replace the existing block.\",\"properties\":{\"type\":{\"type\":\"string\",\"enum\":[\"update\"]},\"id\":{\"type\":\"string\",\"description\":\"id of block to update\"},\"block\":{\"$ref\":\"#/$defs/block\"}},\"required\":[\"type\",\"id\",\"block\"],\"additionalProperties\":false},{\"type\":\"object\",\"description\":\"Insert new blocks\",\"properties\":{\"type\":{\"type\":\"string\",\"enum\":[\"add\"]},\"referenceId\":{\"type\":\"string\",\"description\":\"MUST be an id of a block in the document\"},\"position\":{\"type\":\"string\",\"enum\":[\"before\",\"after\"],\"description\":\"`after` to add blocks AFTER (below) the block with `referenceId`, `before` to add the block BEFORE (above)\"},\"blocks\":{\"items\":{\"$ref\":\"#/$defs/block\"},\"type\":\"array\"}},\"required\":[\"type\",\"referenceId\",\"position\",\"blocks\"],\"additionalProperties\":false},{\"type\":\"object\",\"description\":\"Delete a block\",\"properties\":{\"type\":{\"type\":\"string\",\"enum\":[\"delete\"]},\"id\":{\"type\":\"string\",\"description\":\"id of block to delete\"}},\"required\":[\"type\",\"id\"],\"additionalProperties\":false}]}}},\"additionalProperties\":false,\"required\":[\"operations\"],\"$defs\":{\"styles\":{\"type\":\"object\",\"properties\":{\"bold\":{\"type\":\"boolean\"},\"italic\":{\"type\":\"boolean\"},\"underline\":{\"type\":\"boolean\"},\"strike\":{\"type\":\"boolean\"},\"code\":{\"type\":\"boolean\"},\"textColor\":{\"type\":\"string\"},\"backgroundColor\":{\"type\":\"string\"}},\"additionalProperties\":false},\"styledtext\":{\"type\":\"object\",\"properties\":{\"type\":{\"type\":\"string\",\"enum\":[\"text\"]},\"text\":{\"type\":\"string\"},\"styles\":{\"$ref\":\"#/$defs/styles\"}},\"additionalProperties\":false,\"required\":[\"type\",\"text\"]},\"inlinecontent\":{\"type\":\"array\",\"items\":{\"anyOf\":[{\"type\":\"object\",\"properties\":{\"type\":{\"type\":\"string\",\"enum\":[\"mention\"]},\"props\":{\"type\":\"object\",\"properties\":{\"user\":{\"type\":\"string\"}},\"additionalProperties\":false}},\"additionalProperties\":false,\"required\":[\"type\"]},{\"$ref\":\"#/$defs/styledtext\"},{\"type\":\"object\",\"properties\":{\"type\":{\"type\":\"string\",\"enum\":[\"link\"]},\"content\":{\"type\":\"array\",\"items\":{\"$ref\":\"#/$defs/styledtext\"}},\"href\":{\"type\":\"string\"}},\"additionalProperties\":false,\"required\":[\"type\",\"href\",\"content\"]}]}},\"block\":{\"anyOf\":[{\"type\":\"object\",\"properties\":{\"type\":{\"type\":\"string\",\"enum\":[\"paragraph\",\"quote\",\"toggleListItem\",\"bulletListItem\",\"numberedListItem\"]},\"content\":{\"$ref\":\"#/$defs/inlinecontent\"},\"props\":{\"type\":\"object\",\"properties\":{},\"additionalProperties\":false}},\"additionalProperties\":false,\"required\":[\"type\"]},{\"type\":\"object\",\"properties\":{\"type\":{\"type\":\"string\",\"enum\":[\"heading\"]},\"content\":{\"$ref\":\"#/$defs/inlinecontent\"},\"props\":{\"type\":\"object\",\"properties\":{\"level\":{\"type\":\"number\",\"enum\":[1,2,3]},\"isTogglable\":{\"type\":\"boolean\"}},\"additionalProperties\":false}},\"additionalProperties\":false,\"required\":[\"type\"]},{\"type\":\"object\",\"properties\":{\"type\":{\"type\":\"string\",\"enum\":[\"codeBlock\"]},\"content\":{\"$ref\":\"#/$defs/inlinecontent\"},\"props\":{\"type\":\"object\",\"properties\":{\"language\":{\"type\":\"string\"}},\"additionalProperties\":false}},\"additionalProperties\":false,\"required\":[\"type\"]},{\"type\":\"object\",\"properties\":{\"type\":{\"type\":\"string\",\"enum\":[\"checkListItem\"]},\"content\":{\"$ref\":\"#/$defs/inlinecontent\"},\"props\":{\"type\":\"object\",\"properties\":{\"checked\":{\"type\":\"boolean\"}},\"additionalProperties\":false}},\"additionalProperties\":false,\"required\":[\"type\"]},{\"type\":\"object\",\"properties\":{\"type\":{\"type\":\"string\",\"enum\":[\"table\"]},\"content\":{\"type\":\"object\",\"properties\":{}},\"props\":{\"type\":\"object\",\"properties\":{},\"additionalProperties\":false}},\"additionalProperties\":false,\"required\":[\"type\"]}]}}}}}],\"stream\":true}", "headers": [], "cookies": [] }, "response": { "status": 200, "statusText": "", - "body": "data: {\"id\":\"chatcmpl-BgV51HLtRVZMsbZfiZqHWg2LUY7y7\",\"object\":\"chat.completion.chunk\",\"created\":1749468947,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_07871e2ad8\",\"choices\":[{\"index\":0,\"delta\":{\"role\":\"assistant\",\"content\":null,\"tool_calls\":[{\"index\":0,\"id\":\"call_zQoxMtCKDNMU9Z7JoywY8zfs\",\"type\":\"function\",\"function\":{\"name\":\"json\",\"arguments\":\"\"}}],\"refusal\":null},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BgV51HLtRVZMsbZfiZqHWg2LUY7y7\",\"object\":\"chat.completion.chunk\",\"created\":1749468947,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_07871e2ad8\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"{\\\"\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BgV51HLtRVZMsbZfiZqHWg2LUY7y7\",\"object\":\"chat.completion.chunk\",\"created\":1749468947,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_07871e2ad8\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"operations\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BgV51HLtRVZMsbZfiZqHWg2LUY7y7\",\"object\":\"chat.completion.chunk\",\"created\":1749468947,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_07871e2ad8\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"\\\":[\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BgV51HLtRVZMsbZfiZqHWg2LUY7y7\",\"object\":\"chat.completion.chunk\",\"created\":1749468947,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_07871e2ad8\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"{\\\"\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BgV51HLtRVZMsbZfiZqHWg2LUY7y7\",\"object\":\"chat.completion.chunk\",\"created\":1749468947,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_07871e2ad8\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"type\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BgV51HLtRVZMsbZfiZqHWg2LUY7y7\",\"object\":\"chat.completion.chunk\",\"created\":1749468947,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_07871e2ad8\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"\\\":\\\"\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BgV51HLtRVZMsbZfiZqHWg2LUY7y7\",\"object\":\"chat.completion.chunk\",\"created\":1749468947,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_07871e2ad8\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"update\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BgV51HLtRVZMsbZfiZqHWg2LUY7y7\",\"object\":\"chat.completion.chunk\",\"created\":1749468947,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_07871e2ad8\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"\\\",\\\"\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BgV51HLtRVZMsbZfiZqHWg2LUY7y7\",\"object\":\"chat.completion.chunk\",\"created\":1749468947,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_07871e2ad8\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"id\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BgV51HLtRVZMsbZfiZqHWg2LUY7y7\",\"object\":\"chat.completion.chunk\",\"created\":1749468947,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_07871e2ad8\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"\\\":\\\"\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BgV51HLtRVZMsbZfiZqHWg2LUY7y7\",\"object\":\"chat.completion.chunk\",\"created\":1749468947,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_07871e2ad8\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"ref\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BgV51HLtRVZMsbZfiZqHWg2LUY7y7\",\"object\":\"chat.completion.chunk\",\"created\":1749468947,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_07871e2ad8\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"2\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BgV51HLtRVZMsbZfiZqHWg2LUY7y7\",\"object\":\"chat.completion.chunk\",\"created\":1749468947,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_07871e2ad8\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"$\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BgV51HLtRVZMsbZfiZqHWg2LUY7y7\",\"object\":\"chat.completion.chunk\",\"created\":1749468947,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_07871e2ad8\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"\\\",\\\"\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BgV51HLtRVZMsbZfiZqHWg2LUY7y7\",\"object\":\"chat.completion.chunk\",\"created\":1749468947,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_07871e2ad8\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"block\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BgV51HLtRVZMsbZfiZqHWg2LUY7y7\",\"object\":\"chat.completion.chunk\",\"created\":1749468947,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_07871e2ad8\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"\\\":{\\\"\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BgV51HLtRVZMsbZfiZqHWg2LUY7y7\",\"object\":\"chat.completion.chunk\",\"created\":1749468947,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_07871e2ad8\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"type\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BgV51HLtRVZMsbZfiZqHWg2LUY7y7\",\"object\":\"chat.completion.chunk\",\"created\":1749468947,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_07871e2ad8\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"\\\":\\\"\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BgV51HLtRVZMsbZfiZqHWg2LUY7y7\",\"object\":\"chat.completion.chunk\",\"created\":1749468947,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_07871e2ad8\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"paragraph\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BgV51HLtRVZMsbZfiZqHWg2LUY7y7\",\"object\":\"chat.completion.chunk\",\"created\":1749468947,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_07871e2ad8\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"\\\",\\\"\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BgV51HLtRVZMsbZfiZqHWg2LUY7y7\",\"object\":\"chat.completion.chunk\",\"created\":1749468947,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_07871e2ad8\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"content\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BgV51HLtRVZMsbZfiZqHWg2LUY7y7\",\"object\":\"chat.completion.chunk\",\"created\":1749468947,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_07871e2ad8\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"\\\":[\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BgV51HLtRVZMsbZfiZqHWg2LUY7y7\",\"object\":\"chat.completion.chunk\",\"created\":1749468947,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_07871e2ad8\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"{\\\"\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BgV51HLtRVZMsbZfiZqHWg2LUY7y7\",\"object\":\"chat.completion.chunk\",\"created\":1749468947,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_07871e2ad8\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"type\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BgV51HLtRVZMsbZfiZqHWg2LUY7y7\",\"object\":\"chat.completion.chunk\",\"created\":1749468947,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_07871e2ad8\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"\\\":\\\"\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BgV51HLtRVZMsbZfiZqHWg2LUY7y7\",\"object\":\"chat.completion.chunk\",\"created\":1749468947,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_07871e2ad8\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"text\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BgV51HLtRVZMsbZfiZqHWg2LUY7y7\",\"object\":\"chat.completion.chunk\",\"created\":1749468947,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_07871e2ad8\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"\\\",\\\"\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BgV51HLtRVZMsbZfiZqHWg2LUY7y7\",\"object\":\"chat.completion.chunk\",\"created\":1749468947,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_07871e2ad8\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"text\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BgV51HLtRVZMsbZfiZqHWg2LUY7y7\",\"object\":\"chat.completion.chunk\",\"created\":1749468947,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_07871e2ad8\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"\\\":\\\"\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BgV51HLtRVZMsbZfiZqHWg2LUY7y7\",\"object\":\"chat.completion.chunk\",\"created\":1749468947,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_07871e2ad8\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"APP\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BgV51HLtRVZMsbZfiZqHWg2LUY7y7\",\"object\":\"chat.completion.chunk\",\"created\":1749468947,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_07871e2ad8\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"LES\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BgV51HLtRVZMsbZfiZqHWg2LUY7y7\",\"object\":\"chat.completion.chunk\",\"created\":1749468947,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_07871e2ad8\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"\\\",\\\"\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BgV51HLtRVZMsbZfiZqHWg2LUY7y7\",\"object\":\"chat.completion.chunk\",\"created\":1749468947,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_07871e2ad8\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"styles\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BgV51HLtRVZMsbZfiZqHWg2LUY7y7\",\"object\":\"chat.completion.chunk\",\"created\":1749468947,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_07871e2ad8\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"\\\":\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BgV51HLtRVZMsbZfiZqHWg2LUY7y7\",\"object\":\"chat.completion.chunk\",\"created\":1749468947,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_07871e2ad8\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"{\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BgV51HLtRVZMsbZfiZqHWg2LUY7y7\",\"object\":\"chat.completion.chunk\",\"created\":1749468947,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_07871e2ad8\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"}}\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BgV51HLtRVZMsbZfiZqHWg2LUY7y7\",\"object\":\"chat.completion.chunk\",\"created\":1749468947,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_07871e2ad8\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"]\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BgV51HLtRVZMsbZfiZqHWg2LUY7y7\",\"object\":\"chat.completion.chunk\",\"created\":1749468947,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_07871e2ad8\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"}}\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BgV51HLtRVZMsbZfiZqHWg2LUY7y7\",\"object\":\"chat.completion.chunk\",\"created\":1749468947,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_07871e2ad8\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"]}\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BgV51HLtRVZMsbZfiZqHWg2LUY7y7\",\"object\":\"chat.completion.chunk\",\"created\":1749468947,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_07871e2ad8\",\"choices\":[{\"index\":0,\"delta\":{},\"logprobs\":null,\"finish_reason\":\"stop\"}]}\n\ndata: [DONE]\n\n", + "body": "data: {\"id\":\"chatcmpl-BhXnRHa4BytFnT1GcHQtaSzuYPheK\",\"object\":\"chat.completion.chunk\",\"created\":1749717717,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_a288987b44\",\"choices\":[{\"index\":0,\"delta\":{\"role\":\"assistant\",\"content\":null,\"tool_calls\":[{\"index\":0,\"id\":\"call_OnhLXdaWG8JmOsUAExZfp0Vb\",\"type\":\"function\",\"function\":{\"name\":\"json\",\"arguments\":\"\"}}],\"refusal\":null},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BhXnRHa4BytFnT1GcHQtaSzuYPheK\",\"object\":\"chat.completion.chunk\",\"created\":1749717717,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_a288987b44\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"{\\\"\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BhXnRHa4BytFnT1GcHQtaSzuYPheK\",\"object\":\"chat.completion.chunk\",\"created\":1749717717,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_a288987b44\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"operations\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BhXnRHa4BytFnT1GcHQtaSzuYPheK\",\"object\":\"chat.completion.chunk\",\"created\":1749717717,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_a288987b44\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"\\\":[\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BhXnRHa4BytFnT1GcHQtaSzuYPheK\",\"object\":\"chat.completion.chunk\",\"created\":1749717717,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_a288987b44\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"{\\\"\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BhXnRHa4BytFnT1GcHQtaSzuYPheK\",\"object\":\"chat.completion.chunk\",\"created\":1749717717,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_a288987b44\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"type\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BhXnRHa4BytFnT1GcHQtaSzuYPheK\",\"object\":\"chat.completion.chunk\",\"created\":1749717717,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_a288987b44\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"\\\":\\\"\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BhXnRHa4BytFnT1GcHQtaSzuYPheK\",\"object\":\"chat.completion.chunk\",\"created\":1749717717,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_a288987b44\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"update\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BhXnRHa4BytFnT1GcHQtaSzuYPheK\",\"object\":\"chat.completion.chunk\",\"created\":1749717717,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_a288987b44\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"\\\",\\\"\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BhXnRHa4BytFnT1GcHQtaSzuYPheK\",\"object\":\"chat.completion.chunk\",\"created\":1749717717,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_a288987b44\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"id\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BhXnRHa4BytFnT1GcHQtaSzuYPheK\",\"object\":\"chat.completion.chunk\",\"created\":1749717717,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_a288987b44\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"\\\":\\\"\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BhXnRHa4BytFnT1GcHQtaSzuYPheK\",\"object\":\"chat.completion.chunk\",\"created\":1749717717,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_a288987b44\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"ref\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BhXnRHa4BytFnT1GcHQtaSzuYPheK\",\"object\":\"chat.completion.chunk\",\"created\":1749717717,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_a288987b44\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"2\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BhXnRHa4BytFnT1GcHQtaSzuYPheK\",\"object\":\"chat.completion.chunk\",\"created\":1749717717,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_a288987b44\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"$\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BhXnRHa4BytFnT1GcHQtaSzuYPheK\",\"object\":\"chat.completion.chunk\",\"created\":1749717717,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_a288987b44\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"\\\",\\\"\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BhXnRHa4BytFnT1GcHQtaSzuYPheK\",\"object\":\"chat.completion.chunk\",\"created\":1749717717,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_a288987b44\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"block\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BhXnRHa4BytFnT1GcHQtaSzuYPheK\",\"object\":\"chat.completion.chunk\",\"created\":1749717717,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_a288987b44\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"\\\":{\\\"\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BhXnRHa4BytFnT1GcHQtaSzuYPheK\",\"object\":\"chat.completion.chunk\",\"created\":1749717717,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_a288987b44\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"type\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BhXnRHa4BytFnT1GcHQtaSzuYPheK\",\"object\":\"chat.completion.chunk\",\"created\":1749717717,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_a288987b44\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"\\\":\\\"\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BhXnRHa4BytFnT1GcHQtaSzuYPheK\",\"object\":\"chat.completion.chunk\",\"created\":1749717717,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_a288987b44\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"paragraph\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BhXnRHa4BytFnT1GcHQtaSzuYPheK\",\"object\":\"chat.completion.chunk\",\"created\":1749717717,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_a288987b44\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"\\\",\\\"\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BhXnRHa4BytFnT1GcHQtaSzuYPheK\",\"object\":\"chat.completion.chunk\",\"created\":1749717717,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_a288987b44\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"content\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BhXnRHa4BytFnT1GcHQtaSzuYPheK\",\"object\":\"chat.completion.chunk\",\"created\":1749717717,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_a288987b44\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"\\\":[\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BhXnRHa4BytFnT1GcHQtaSzuYPheK\",\"object\":\"chat.completion.chunk\",\"created\":1749717717,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_a288987b44\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"{\\\"\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BhXnRHa4BytFnT1GcHQtaSzuYPheK\",\"object\":\"chat.completion.chunk\",\"created\":1749717717,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_a288987b44\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"type\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BhXnRHa4BytFnT1GcHQtaSzuYPheK\",\"object\":\"chat.completion.chunk\",\"created\":1749717717,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_a288987b44\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"\\\":\\\"\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BhXnRHa4BytFnT1GcHQtaSzuYPheK\",\"object\":\"chat.completion.chunk\",\"created\":1749717717,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_a288987b44\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"text\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BhXnRHa4BytFnT1GcHQtaSzuYPheK\",\"object\":\"chat.completion.chunk\",\"created\":1749717717,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_a288987b44\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"\\\",\\\"\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BhXnRHa4BytFnT1GcHQtaSzuYPheK\",\"object\":\"chat.completion.chunk\",\"created\":1749717717,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_a288987b44\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"text\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BhXnRHa4BytFnT1GcHQtaSzuYPheK\",\"object\":\"chat.completion.chunk\",\"created\":1749717717,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_a288987b44\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"\\\":\\\"\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BhXnRHa4BytFnT1GcHQtaSzuYPheK\",\"object\":\"chat.completion.chunk\",\"created\":1749717717,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_a288987b44\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"APP\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BhXnRHa4BytFnT1GcHQtaSzuYPheK\",\"object\":\"chat.completion.chunk\",\"created\":1749717717,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_a288987b44\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"LES\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BhXnRHa4BytFnT1GcHQtaSzuYPheK\",\"object\":\"chat.completion.chunk\",\"created\":1749717717,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_a288987b44\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"\\\",\\\"\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BhXnRHa4BytFnT1GcHQtaSzuYPheK\",\"object\":\"chat.completion.chunk\",\"created\":1749717717,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_a288987b44\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"styles\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BhXnRHa4BytFnT1GcHQtaSzuYPheK\",\"object\":\"chat.completion.chunk\",\"created\":1749717717,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_a288987b44\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"\\\":\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BhXnRHa4BytFnT1GcHQtaSzuYPheK\",\"object\":\"chat.completion.chunk\",\"created\":1749717717,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_a288987b44\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"{\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BhXnRHa4BytFnT1GcHQtaSzuYPheK\",\"object\":\"chat.completion.chunk\",\"created\":1749717717,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_a288987b44\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"}}\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BhXnRHa4BytFnT1GcHQtaSzuYPheK\",\"object\":\"chat.completion.chunk\",\"created\":1749717717,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_a288987b44\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"]\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BhXnRHa4BytFnT1GcHQtaSzuYPheK\",\"object\":\"chat.completion.chunk\",\"created\":1749717717,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_a288987b44\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"}}\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BhXnRHa4BytFnT1GcHQtaSzuYPheK\",\"object\":\"chat.completion.chunk\",\"created\":1749717717,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_a288987b44\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"]}\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BhXnRHa4BytFnT1GcHQtaSzuYPheK\",\"object\":\"chat.completion.chunk\",\"created\":1749717717,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_a288987b44\",\"choices\":[{\"index\":0,\"delta\":{},\"logprobs\":null,\"finish_reason\":\"stop\"}]}\n\ndata: [DONE]\n\n", "headers": [] } } \ No newline at end of file diff --git a/packages/xl-ai/src/api/formats/json/__snapshots__/json.test.ts/Update/__msw_snapshots__/openai.chat/gpt-4o-2024-08-06 (streaming)/modify parent content_1_096bf0c83a98b9245c4c2a0d4e7a8c2e.json b/packages/xl-ai/src/api/formats/json/__snapshots__/json.test.ts/Update/__msw_snapshots__/openai.chat/gpt-4o-2024-08-06 (streaming)/modify parent content_1_096bf0c83a98b9245c4c2a0d4e7a8c2e.json new file mode 100644 index 0000000000..a6b9675942 --- /dev/null +++ b/packages/xl-ai/src/api/formats/json/__snapshots__/json.test.ts/Update/__msw_snapshots__/openai.chat/gpt-4o-2024-08-06 (streaming)/modify parent content_1_096bf0c83a98b9245c4c2a0d4e7a8c2e.json @@ -0,0 +1,15 @@ +{ + "request": { + "method": "POST", + "url": "https://localhost:3000/ai?provider=openai&url=https%3A%2F%2Fapi.openai.com%2Fv1%2Fchat%2Fcompletions", + "body": "{\"model\":\"gpt-4o-2024-08-06\",\"temperature\":0,\"messages\":[{\"role\":\"system\",\"content\":\"You're manipulating a text document using JSON blocks. \\n Make sure to follow the json schema provided. When referencing ids they MUST be EXACTLY the same (including the trailing $). \\n This is the document as an array of JSON blocks (the cursor is BETWEEN two blocks as indicated by cursor: true):\"},{\"role\":\"system\",\"content\":\"[{\\\"id\\\":\\\"ref1$\\\",\\\"block\\\":{\\\"id\\\":\\\"ref1\\\",\\\"type\\\":\\\"paragraph\\\",\\\"props\\\":{\\\"textColor\\\":\\\"default\\\",\\\"backgroundColor\\\":\\\"default\\\",\\\"textAlignment\\\":\\\"left\\\"},\\\"content\\\":[{\\\"type\\\":\\\"text\\\",\\\"text\\\":\\\"I need to buy:\\\",\\\"styles\\\":{}}]}},{\\\"cursor\\\":true},{\\\"id\\\":\\\"ref2$\\\",\\\"block\\\":{\\\"id\\\":\\\"ref2\\\",\\\"type\\\":\\\"paragraph\\\",\\\"props\\\":{\\\"textColor\\\":\\\"default\\\",\\\"backgroundColor\\\":\\\"default\\\",\\\"textAlignment\\\":\\\"left\\\"},\\\"content\\\":[{\\\"type\\\":\\\"text\\\",\\\"text\\\":\\\"Apples\\\",\\\"styles\\\":{}}]}}]\"},{\"role\":\"system\",\"content\":\"The user asks you to do the following:\"},{\"role\":\"user\",\"content\":\"make the first paragraph uppercase\"},{\"role\":\"system\",\"content\":\"First, determine what part of the document the user is talking about. You SHOULD probably take cursor info into account if needed.\\n EXAMPLE: if user says \\\"below\\\" (without pointing to a specific part of the document) he / she probably indicates the block(s) after the cursor. \\n EXAMPLE: If you want to insert content AT the cursor position (UNLESS indicated otherwise by the user), then you need `referenceId` to point to the block before the cursor with position `after` (or block below and `before`).\\n \\n Prefer updating existing blocks over removing and adding (but this also depends on the user's question).\"}],\"tool_choice\":{\"type\":\"function\",\"function\":{\"name\":\"json\"}},\"tools\":[{\"type\":\"function\",\"function\":{\"name\":\"json\",\"description\":\"Respond with a JSON object.\",\"parameters\":{\"type\":\"object\",\"properties\":{\"operations\":{\"type\":\"array\",\"items\":{\"anyOf\":[{\"type\":\"object\",\"description\":\"Update a block, the new block will replace the existing block.\",\"properties\":{\"type\":{\"type\":\"string\",\"enum\":[\"update\"]},\"id\":{\"type\":\"string\",\"description\":\"id of block to update\"},\"block\":{\"$ref\":\"#/$defs/block\"}},\"required\":[\"type\",\"id\",\"block\"],\"additionalProperties\":false},{\"type\":\"object\",\"description\":\"Insert new blocks\",\"properties\":{\"type\":{\"type\":\"string\",\"enum\":[\"add\"]},\"referenceId\":{\"type\":\"string\",\"description\":\"MUST be an id of a block in the document\"},\"position\":{\"type\":\"string\",\"enum\":[\"before\",\"after\"],\"description\":\"`after` to add blocks AFTER (below) the block with `referenceId`, `before` to add the block BEFORE (above)\"},\"blocks\":{\"items\":{\"$ref\":\"#/$defs/block\"},\"type\":\"array\"}},\"required\":[\"type\",\"referenceId\",\"position\",\"blocks\"],\"additionalProperties\":false},{\"type\":\"object\",\"description\":\"Delete a block\",\"properties\":{\"type\":{\"type\":\"string\",\"enum\":[\"delete\"]},\"id\":{\"type\":\"string\",\"description\":\"id of block to delete\"}},\"required\":[\"type\",\"id\"],\"additionalProperties\":false}]}}},\"additionalProperties\":false,\"required\":[\"operations\"],\"$defs\":{\"styles\":{\"type\":\"object\",\"properties\":{\"bold\":{\"type\":\"boolean\"},\"italic\":{\"type\":\"boolean\"},\"underline\":{\"type\":\"boolean\"},\"strike\":{\"type\":\"boolean\"},\"code\":{\"type\":\"boolean\"},\"textColor\":{\"type\":\"string\"},\"backgroundColor\":{\"type\":\"string\"}},\"additionalProperties\":false},\"styledtext\":{\"type\":\"object\",\"properties\":{\"type\":{\"type\":\"string\",\"enum\":[\"text\"]},\"text\":{\"type\":\"string\"},\"styles\":{\"$ref\":\"#/$defs/styles\"}},\"additionalProperties\":false,\"required\":[\"type\",\"text\"]},\"inlinecontent\":{\"type\":\"array\",\"items\":{\"anyOf\":[{\"type\":\"object\",\"properties\":{\"type\":{\"type\":\"string\",\"enum\":[\"mention\"]},\"props\":{\"type\":\"object\",\"properties\":{\"user\":{\"type\":\"string\"}},\"additionalProperties\":false}},\"additionalProperties\":false,\"required\":[\"type\"]},{\"$ref\":\"#/$defs/styledtext\"},{\"type\":\"object\",\"properties\":{\"type\":{\"type\":\"string\",\"enum\":[\"link\"]},\"content\":{\"type\":\"array\",\"items\":{\"$ref\":\"#/$defs/styledtext\"}},\"href\":{\"type\":\"string\"}},\"additionalProperties\":false,\"required\":[\"type\",\"href\",\"content\"]}]}},\"block\":{\"anyOf\":[{\"type\":\"object\",\"properties\":{\"type\":{\"type\":\"string\",\"enum\":[\"paragraph\",\"quote\",\"toggleListItem\",\"bulletListItem\",\"numberedListItem\"]},\"content\":{\"$ref\":\"#/$defs/inlinecontent\"},\"props\":{\"type\":\"object\",\"properties\":{},\"additionalProperties\":false}},\"additionalProperties\":false,\"required\":[\"type\"]},{\"type\":\"object\",\"properties\":{\"type\":{\"type\":\"string\",\"enum\":[\"heading\"]},\"content\":{\"$ref\":\"#/$defs/inlinecontent\"},\"props\":{\"type\":\"object\",\"properties\":{\"level\":{\"type\":\"number\",\"enum\":[1,2,3]},\"isTogglable\":{\"type\":\"boolean\"}},\"additionalProperties\":false}},\"additionalProperties\":false,\"required\":[\"type\"]},{\"type\":\"object\",\"properties\":{\"type\":{\"type\":\"string\",\"enum\":[\"codeBlock\"]},\"content\":{\"$ref\":\"#/$defs/inlinecontent\"},\"props\":{\"type\":\"object\",\"properties\":{\"language\":{\"type\":\"string\"}},\"additionalProperties\":false}},\"additionalProperties\":false,\"required\":[\"type\"]},{\"type\":\"object\",\"properties\":{\"type\":{\"type\":\"string\",\"enum\":[\"checkListItem\"]},\"content\":{\"$ref\":\"#/$defs/inlinecontent\"},\"props\":{\"type\":\"object\",\"properties\":{\"checked\":{\"type\":\"boolean\"}},\"additionalProperties\":false}},\"additionalProperties\":false,\"required\":[\"type\"]},{\"type\":\"object\",\"properties\":{\"type\":{\"type\":\"string\",\"enum\":[\"table\"]},\"content\":{\"type\":\"object\",\"properties\":{}},\"props\":{\"type\":\"object\",\"properties\":{},\"additionalProperties\":false}},\"additionalProperties\":false,\"required\":[\"type\"]}]}}}}}],\"stream\":true}", + "headers": [], + "cookies": [] + }, + "response": { + "status": 200, + "statusText": "", + "body": "data: {\"id\":\"chatcmpl-BhXnS5UKwR4KL3nAIUDN4UUgSfumM\",\"object\":\"chat.completion.chunk\",\"created\":1749717718,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_a288987b44\",\"choices\":[{\"index\":0,\"delta\":{\"role\":\"assistant\",\"content\":null,\"tool_calls\":[{\"index\":0,\"id\":\"call_fJ7sit43e3FwSiUxbBad2w8K\",\"type\":\"function\",\"function\":{\"name\":\"json\",\"arguments\":\"\"}}],\"refusal\":null},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BhXnS5UKwR4KL3nAIUDN4UUgSfumM\",\"object\":\"chat.completion.chunk\",\"created\":1749717718,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_a288987b44\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"{\\\"\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BhXnS5UKwR4KL3nAIUDN4UUgSfumM\",\"object\":\"chat.completion.chunk\",\"created\":1749717718,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_a288987b44\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"operations\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BhXnS5UKwR4KL3nAIUDN4UUgSfumM\",\"object\":\"chat.completion.chunk\",\"created\":1749717718,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_a288987b44\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"\\\":[\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BhXnS5UKwR4KL3nAIUDN4UUgSfumM\",\"object\":\"chat.completion.chunk\",\"created\":1749717718,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_a288987b44\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"{\\\"\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BhXnS5UKwR4KL3nAIUDN4UUgSfumM\",\"object\":\"chat.completion.chunk\",\"created\":1749717718,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_a288987b44\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"type\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BhXnS5UKwR4KL3nAIUDN4UUgSfumM\",\"object\":\"chat.completion.chunk\",\"created\":1749717718,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_a288987b44\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"\\\":\\\"\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BhXnS5UKwR4KL3nAIUDN4UUgSfumM\",\"object\":\"chat.completion.chunk\",\"created\":1749717718,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_a288987b44\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"update\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BhXnS5UKwR4KL3nAIUDN4UUgSfumM\",\"object\":\"chat.completion.chunk\",\"created\":1749717718,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_a288987b44\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"\\\",\\\"\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BhXnS5UKwR4KL3nAIUDN4UUgSfumM\",\"object\":\"chat.completion.chunk\",\"created\":1749717718,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_a288987b44\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"id\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BhXnS5UKwR4KL3nAIUDN4UUgSfumM\",\"object\":\"chat.completion.chunk\",\"created\":1749717718,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_a288987b44\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"\\\":\\\"\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BhXnS5UKwR4KL3nAIUDN4UUgSfumM\",\"object\":\"chat.completion.chunk\",\"created\":1749717718,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_a288987b44\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"ref\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BhXnS5UKwR4KL3nAIUDN4UUgSfumM\",\"object\":\"chat.completion.chunk\",\"created\":1749717718,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_a288987b44\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"1\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BhXnS5UKwR4KL3nAIUDN4UUgSfumM\",\"object\":\"chat.completion.chunk\",\"created\":1749717718,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_a288987b44\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"$\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BhXnS5UKwR4KL3nAIUDN4UUgSfumM\",\"object\":\"chat.completion.chunk\",\"created\":1749717718,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_a288987b44\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"\\\",\\\"\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BhXnS5UKwR4KL3nAIUDN4UUgSfumM\",\"object\":\"chat.completion.chunk\",\"created\":1749717718,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_a288987b44\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"block\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BhXnS5UKwR4KL3nAIUDN4UUgSfumM\",\"object\":\"chat.completion.chunk\",\"created\":1749717718,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_a288987b44\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"\\\":{\\\"\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BhXnS5UKwR4KL3nAIUDN4UUgSfumM\",\"object\":\"chat.completion.chunk\",\"created\":1749717718,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_a288987b44\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"type\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BhXnS5UKwR4KL3nAIUDN4UUgSfumM\",\"object\":\"chat.completion.chunk\",\"created\":1749717718,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_a288987b44\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"\\\":\\\"\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BhXnS5UKwR4KL3nAIUDN4UUgSfumM\",\"object\":\"chat.completion.chunk\",\"created\":1749717718,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_a288987b44\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"paragraph\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BhXnS5UKwR4KL3nAIUDN4UUgSfumM\",\"object\":\"chat.completion.chunk\",\"created\":1749717718,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_a288987b44\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"\\\",\\\"\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BhXnS5UKwR4KL3nAIUDN4UUgSfumM\",\"object\":\"chat.completion.chunk\",\"created\":1749717718,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_a288987b44\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"content\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BhXnS5UKwR4KL3nAIUDN4UUgSfumM\",\"object\":\"chat.completion.chunk\",\"created\":1749717718,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_a288987b44\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"\\\":[\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BhXnS5UKwR4KL3nAIUDN4UUgSfumM\",\"object\":\"chat.completion.chunk\",\"created\":1749717718,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_a288987b44\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"{\\\"\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BhXnS5UKwR4KL3nAIUDN4UUgSfumM\",\"object\":\"chat.completion.chunk\",\"created\":1749717718,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_a288987b44\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"type\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BhXnS5UKwR4KL3nAIUDN4UUgSfumM\",\"object\":\"chat.completion.chunk\",\"created\":1749717718,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_a288987b44\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"\\\":\\\"\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BhXnS5UKwR4KL3nAIUDN4UUgSfumM\",\"object\":\"chat.completion.chunk\",\"created\":1749717718,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_a288987b44\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"text\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BhXnS5UKwR4KL3nAIUDN4UUgSfumM\",\"object\":\"chat.completion.chunk\",\"created\":1749717718,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_a288987b44\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"\\\",\\\"\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BhXnS5UKwR4KL3nAIUDN4UUgSfumM\",\"object\":\"chat.completion.chunk\",\"created\":1749717718,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_a288987b44\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"text\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BhXnS5UKwR4KL3nAIUDN4UUgSfumM\",\"object\":\"chat.completion.chunk\",\"created\":1749717718,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_a288987b44\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"\\\":\\\"\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BhXnS5UKwR4KL3nAIUDN4UUgSfumM\",\"object\":\"chat.completion.chunk\",\"created\":1749717718,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_a288987b44\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"I\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BhXnS5UKwR4KL3nAIUDN4UUgSfumM\",\"object\":\"chat.completion.chunk\",\"created\":1749717718,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_a288987b44\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\" NEED\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BhXnS5UKwR4KL3nAIUDN4UUgSfumM\",\"object\":\"chat.completion.chunk\",\"created\":1749717718,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_a288987b44\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\" TO\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BhXnS5UKwR4KL3nAIUDN4UUgSfumM\",\"object\":\"chat.completion.chunk\",\"created\":1749717718,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_a288987b44\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\" BUY\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BhXnS5UKwR4KL3nAIUDN4UUgSfumM\",\"object\":\"chat.completion.chunk\",\"created\":1749717718,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_a288987b44\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\":\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BhXnS5UKwR4KL3nAIUDN4UUgSfumM\",\"object\":\"chat.completion.chunk\",\"created\":1749717718,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_a288987b44\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"\\\",\\\"\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BhXnS5UKwR4KL3nAIUDN4UUgSfumM\",\"object\":\"chat.completion.chunk\",\"created\":1749717718,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_a288987b44\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"styles\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BhXnS5UKwR4KL3nAIUDN4UUgSfumM\",\"object\":\"chat.completion.chunk\",\"created\":1749717718,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_a288987b44\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"\\\":\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BhXnS5UKwR4KL3nAIUDN4UUgSfumM\",\"object\":\"chat.completion.chunk\",\"created\":1749717718,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_a288987b44\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"{\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BhXnS5UKwR4KL3nAIUDN4UUgSfumM\",\"object\":\"chat.completion.chunk\",\"created\":1749717718,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_a288987b44\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"}}\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BhXnS5UKwR4KL3nAIUDN4UUgSfumM\",\"object\":\"chat.completion.chunk\",\"created\":1749717718,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_a288987b44\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"]\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BhXnS5UKwR4KL3nAIUDN4UUgSfumM\",\"object\":\"chat.completion.chunk\",\"created\":1749717718,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_a288987b44\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"}}\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BhXnS5UKwR4KL3nAIUDN4UUgSfumM\",\"object\":\"chat.completion.chunk\",\"created\":1749717718,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_a288987b44\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"]}\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BhXnS5UKwR4KL3nAIUDN4UUgSfumM\",\"object\":\"chat.completion.chunk\",\"created\":1749717718,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_a288987b44\",\"choices\":[{\"index\":0,\"delta\":{},\"logprobs\":null,\"finish_reason\":\"stop\"}]}\n\ndata: [DONE]\n\n", + "headers": [] + } +} \ No newline at end of file diff --git a/packages/xl-ai/src/api/formats/json/__snapshots__/json.test.ts/Update/__msw_snapshots__/openai.chat/gpt-4o-2024-08-06 (streaming)/modify parent content_1_63585984d1d9b7291dec2b0607f94922.json b/packages/xl-ai/src/api/formats/json/__snapshots__/json.test.ts/Update/__msw_snapshots__/openai.chat/gpt-4o-2024-08-06 (streaming)/modify parent content_1_63585984d1d9b7291dec2b0607f94922.json deleted file mode 100644 index da7458b1d9..0000000000 --- a/packages/xl-ai/src/api/formats/json/__snapshots__/json.test.ts/Update/__msw_snapshots__/openai.chat/gpt-4o-2024-08-06 (streaming)/modify parent content_1_63585984d1d9b7291dec2b0607f94922.json +++ /dev/null @@ -1,15 +0,0 @@ -{ - "request": { - "method": "POST", - "url": "https://localhost:3000/ai?provider=openai&url=https%3A%2F%2Fapi.openai.com%2Fv1%2Fchat%2Fcompletions", - "body": "{\"model\":\"gpt-4o-2024-08-06\",\"temperature\":0,\"messages\":[{\"role\":\"system\",\"content\":\"You're manipulating a text document using JSON blocks. \\n Make sure to follow the json schema provided. When referencing ids they MUST be EXACTLY the same (including the trailing $). \\n This is the document as an array of JSON blocks (the cursor is BETWEEN two blocks as indicated by cursor: true):\"},{\"role\":\"system\",\"content\":\"[{\\\"id\\\":\\\"ref1$\\\",\\\"block\\\":{\\\"id\\\":\\\"ref1\\\",\\\"type\\\":\\\"paragraph\\\",\\\"props\\\":{\\\"textColor\\\":\\\"default\\\",\\\"backgroundColor\\\":\\\"default\\\",\\\"textAlignment\\\":\\\"left\\\"},\\\"content\\\":[{\\\"type\\\":\\\"text\\\",\\\"text\\\":\\\"I need to buy:\\\",\\\"styles\\\":{}}]}},{\\\"cursor\\\":true},{\\\"id\\\":\\\"ref2$\\\",\\\"block\\\":{\\\"id\\\":\\\"ref2\\\",\\\"type\\\":\\\"paragraph\\\",\\\"props\\\":{\\\"textColor\\\":\\\"default\\\",\\\"backgroundColor\\\":\\\"default\\\",\\\"textAlignment\\\":\\\"left\\\"},\\\"content\\\":[{\\\"type\\\":\\\"text\\\",\\\"text\\\":\\\"Apples\\\",\\\"styles\\\":{}}]}}]\"},{\"role\":\"system\",\"content\":\"The user asks you to do the following:\"},{\"role\":\"user\",\"content\":\"make the first paragraph uppercase\"},{\"role\":\"system\",\"content\":\"First, determine what part of the document the user is talking about. You SHOULD probably take cursor info into account if needed.\\n EXAMPLE: if user says \\\"below\\\" (without pointing to a specific part of the document) he / she probably indicates the block(s) after the cursor. \\n EXAMPLE: If you want to insert content AT the cursor position (UNLESS indicated otherwise by the user), then you need `referenceId` to point to the block before the cursor with position `after` (or block below and `before`).\\n \\n Prefer updating existing blocks over removing and adding (but this also depends on the user's question).\"}],\"tool_choice\":{\"type\":\"function\",\"function\":{\"name\":\"json\"}},\"tools\":[{\"type\":\"function\",\"function\":{\"name\":\"json\",\"description\":\"Respond with a JSON object.\",\"parameters\":{\"type\":\"object\",\"properties\":{\"operations\":{\"type\":\"array\",\"items\":{\"anyOf\":[{\"type\":\"object\",\"description\":\"Update a block, the new block will replace the existing block.\",\"properties\":{\"type\":{\"type\":\"string\",\"enum\":[\"update\"]},\"id\":{\"type\":\"string\",\"description\":\"id of block to update\"},\"block\":{\"$ref\":\"#/$defs/block\"}},\"required\":[\"type\",\"id\",\"block\"],\"additionalProperties\":false},{\"type\":\"object\",\"description\":\"Insert new blocks\",\"properties\":{\"type\":{\"type\":\"string\",\"enum\":[\"add\"]},\"referenceId\":{\"type\":\"string\",\"description\":\"MUST be an id of a block in the document\"},\"position\":{\"type\":\"string\",\"enum\":[\"before\",\"after\"],\"description\":\"`after` to add blocks AFTER (below) the block with `referenceId`, `before` to add the block BEFORE (above)\"},\"blocks\":{\"items\":{\"$ref\":\"#/$defs/block\"},\"type\":\"array\"}},\"required\":[\"type\",\"referenceId\",\"position\",\"blocks\"],\"additionalProperties\":false},{\"type\":\"object\",\"description\":\"Delete a block\",\"properties\":{\"type\":{\"type\":\"string\",\"enum\":[\"delete\"]},\"id\":{\"type\":\"string\",\"description\":\"id of block to delete\"}},\"required\":[\"type\",\"id\"],\"additionalProperties\":false}]}}},\"additionalProperties\":false,\"required\":[\"operations\"],\"$defs\":{\"styles\":{\"type\":\"object\",\"properties\":{\"bold\":{\"type\":\"boolean\"},\"italic\":{\"type\":\"boolean\"},\"underline\":{\"type\":\"boolean\"},\"strike\":{\"type\":\"boolean\"},\"code\":{\"type\":\"boolean\"},\"textColor\":{\"type\":\"string\"},\"backgroundColor\":{\"type\":\"string\"}},\"additionalProperties\":false},\"styledtext\":{\"type\":\"object\",\"properties\":{\"type\":{\"type\":\"string\",\"enum\":[\"text\"]},\"text\":{\"type\":\"string\"},\"styles\":{\"$ref\":\"#/$defs/styles\"}},\"additionalProperties\":false,\"required\":[\"type\",\"text\"]},\"inlinecontent\":{\"type\":\"array\",\"items\":{\"anyOf\":[{\"type\":\"object\",\"properties\":{\"type\":{\"type\":\"string\",\"enum\":[\"mention\"]},\"props\":{\"type\":\"object\",\"properties\":{\"user\":{\"type\":\"string\"}},\"additionalProperties\":false}},\"additionalProperties\":false,\"required\":[\"type\"]},{\"$ref\":\"#/$defs/styledtext\"},{\"type\":\"object\",\"properties\":{\"type\":{\"type\":\"string\",\"enum\":[\"link\"]},\"content\":{\"type\":\"array\",\"items\":{\"$ref\":\"#/$defs/styledtext\"}},\"href\":{\"type\":\"string\"}},\"additionalProperties\":false,\"required\":[\"type\",\"href\",\"content\"]}]}},\"block\":{\"anyOf\":[{\"type\":\"object\",\"properties\":{\"type\":{\"type\":\"string\",\"enum\":[\"paragraph\",\"quote\",\"bulletListItem\",\"numberedListItem\"]},\"content\":{\"$ref\":\"#/$defs/inlinecontent\"},\"props\":{\"type\":\"object\",\"properties\":{},\"additionalProperties\":false}},\"additionalProperties\":false,\"required\":[\"type\"]},{\"type\":\"object\",\"properties\":{\"type\":{\"type\":\"string\",\"enum\":[\"heading\"]},\"content\":{\"$ref\":\"#/$defs/inlinecontent\"},\"props\":{\"type\":\"object\",\"properties\":{\"level\":{\"type\":\"number\",\"enum\":[1,2,3]}},\"additionalProperties\":false}},\"additionalProperties\":false,\"required\":[\"type\"]},{\"type\":\"object\",\"properties\":{\"type\":{\"type\":\"string\",\"enum\":[\"codeBlock\"]},\"content\":{\"$ref\":\"#/$defs/inlinecontent\"},\"props\":{\"type\":\"object\",\"properties\":{\"language\":{\"type\":\"string\"}},\"additionalProperties\":false}},\"additionalProperties\":false,\"required\":[\"type\"]},{\"type\":\"object\",\"properties\":{\"type\":{\"type\":\"string\",\"enum\":[\"checkListItem\"]},\"content\":{\"$ref\":\"#/$defs/inlinecontent\"},\"props\":{\"type\":\"object\",\"properties\":{\"checked\":{\"type\":\"boolean\"}},\"additionalProperties\":false}},\"additionalProperties\":false,\"required\":[\"type\"]},{\"type\":\"object\",\"properties\":{\"type\":{\"type\":\"string\",\"enum\":[\"table\"]},\"content\":{\"type\":\"object\",\"properties\":{}},\"props\":{\"type\":\"object\",\"properties\":{},\"additionalProperties\":false}},\"additionalProperties\":false,\"required\":[\"type\"]}]}}}}}],\"stream\":true}", - "headers": [], - "cookies": [] - }, - "response": { - "status": 200, - "statusText": "", - "body": "data: {\"id\":\"chatcmpl-BgV52lq8TDxYNVxTqXU1nDeB3APJ6\",\"object\":\"chat.completion.chunk\",\"created\":1749468948,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_07871e2ad8\",\"choices\":[{\"index\":0,\"delta\":{\"role\":\"assistant\",\"content\":null,\"tool_calls\":[{\"index\":0,\"id\":\"call_aiX6347tIRiHsI5BvHw2FmTt\",\"type\":\"function\",\"function\":{\"name\":\"json\",\"arguments\":\"\"}}],\"refusal\":null},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BgV52lq8TDxYNVxTqXU1nDeB3APJ6\",\"object\":\"chat.completion.chunk\",\"created\":1749468948,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_07871e2ad8\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"{\\\"\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BgV52lq8TDxYNVxTqXU1nDeB3APJ6\",\"object\":\"chat.completion.chunk\",\"created\":1749468948,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_07871e2ad8\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"operations\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BgV52lq8TDxYNVxTqXU1nDeB3APJ6\",\"object\":\"chat.completion.chunk\",\"created\":1749468948,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_07871e2ad8\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"\\\":[\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BgV52lq8TDxYNVxTqXU1nDeB3APJ6\",\"object\":\"chat.completion.chunk\",\"created\":1749468948,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_07871e2ad8\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"{\\\"\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BgV52lq8TDxYNVxTqXU1nDeB3APJ6\",\"object\":\"chat.completion.chunk\",\"created\":1749468948,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_07871e2ad8\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"type\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BgV52lq8TDxYNVxTqXU1nDeB3APJ6\",\"object\":\"chat.completion.chunk\",\"created\":1749468948,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_07871e2ad8\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"\\\":\\\"\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BgV52lq8TDxYNVxTqXU1nDeB3APJ6\",\"object\":\"chat.completion.chunk\",\"created\":1749468948,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_07871e2ad8\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"update\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BgV52lq8TDxYNVxTqXU1nDeB3APJ6\",\"object\":\"chat.completion.chunk\",\"created\":1749468948,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_07871e2ad8\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"\\\",\\\"\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BgV52lq8TDxYNVxTqXU1nDeB3APJ6\",\"object\":\"chat.completion.chunk\",\"created\":1749468948,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_07871e2ad8\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"id\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BgV52lq8TDxYNVxTqXU1nDeB3APJ6\",\"object\":\"chat.completion.chunk\",\"created\":1749468948,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_07871e2ad8\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"\\\":\\\"\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BgV52lq8TDxYNVxTqXU1nDeB3APJ6\",\"object\":\"chat.completion.chunk\",\"created\":1749468948,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_07871e2ad8\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"ref\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BgV52lq8TDxYNVxTqXU1nDeB3APJ6\",\"object\":\"chat.completion.chunk\",\"created\":1749468948,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_07871e2ad8\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"1\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BgV52lq8TDxYNVxTqXU1nDeB3APJ6\",\"object\":\"chat.completion.chunk\",\"created\":1749468948,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_07871e2ad8\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"$\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BgV52lq8TDxYNVxTqXU1nDeB3APJ6\",\"object\":\"chat.completion.chunk\",\"created\":1749468948,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_07871e2ad8\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"\\\",\\\"\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BgV52lq8TDxYNVxTqXU1nDeB3APJ6\",\"object\":\"chat.completion.chunk\",\"created\":1749468948,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_07871e2ad8\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"block\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BgV52lq8TDxYNVxTqXU1nDeB3APJ6\",\"object\":\"chat.completion.chunk\",\"created\":1749468948,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_07871e2ad8\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"\\\":{\\\"\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BgV52lq8TDxYNVxTqXU1nDeB3APJ6\",\"object\":\"chat.completion.chunk\",\"created\":1749468948,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_07871e2ad8\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"type\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BgV52lq8TDxYNVxTqXU1nDeB3APJ6\",\"object\":\"chat.completion.chunk\",\"created\":1749468948,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_07871e2ad8\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"\\\":\\\"\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BgV52lq8TDxYNVxTqXU1nDeB3APJ6\",\"object\":\"chat.completion.chunk\",\"created\":1749468948,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_07871e2ad8\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"paragraph\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BgV52lq8TDxYNVxTqXU1nDeB3APJ6\",\"object\":\"chat.completion.chunk\",\"created\":1749468948,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_07871e2ad8\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"\\\",\\\"\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BgV52lq8TDxYNVxTqXU1nDeB3APJ6\",\"object\":\"chat.completion.chunk\",\"created\":1749468948,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_07871e2ad8\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"props\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BgV52lq8TDxYNVxTqXU1nDeB3APJ6\",\"object\":\"chat.completion.chunk\",\"created\":1749468948,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_07871e2ad8\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"\\\":{\\\"\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BgV52lq8TDxYNVxTqXU1nDeB3APJ6\",\"object\":\"chat.completion.chunk\",\"created\":1749468948,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_07871e2ad8\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"text\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BgV52lq8TDxYNVxTqXU1nDeB3APJ6\",\"object\":\"chat.completion.chunk\",\"created\":1749468948,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_07871e2ad8\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"Color\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BgV52lq8TDxYNVxTqXU1nDeB3APJ6\",\"object\":\"chat.completion.chunk\",\"created\":1749468948,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_07871e2ad8\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"\\\":\\\"\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BgV52lq8TDxYNVxTqXU1nDeB3APJ6\",\"object\":\"chat.completion.chunk\",\"created\":1749468948,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_07871e2ad8\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"default\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BgV52lq8TDxYNVxTqXU1nDeB3APJ6\",\"object\":\"chat.completion.chunk\",\"created\":1749468948,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_07871e2ad8\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"\\\",\\\"\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BgV52lq8TDxYNVxTqXU1nDeB3APJ6\",\"object\":\"chat.completion.chunk\",\"created\":1749468948,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_07871e2ad8\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"background\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BgV52lq8TDxYNVxTqXU1nDeB3APJ6\",\"object\":\"chat.completion.chunk\",\"created\":1749468948,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_07871e2ad8\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"Color\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BgV52lq8TDxYNVxTqXU1nDeB3APJ6\",\"object\":\"chat.completion.chunk\",\"created\":1749468948,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_07871e2ad8\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"\\\":\\\"\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BgV52lq8TDxYNVxTqXU1nDeB3APJ6\",\"object\":\"chat.completion.chunk\",\"created\":1749468948,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_07871e2ad8\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"default\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BgV52lq8TDxYNVxTqXU1nDeB3APJ6\",\"object\":\"chat.completion.chunk\",\"created\":1749468948,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_07871e2ad8\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"\\\",\\\"\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BgV52lq8TDxYNVxTqXU1nDeB3APJ6\",\"object\":\"chat.completion.chunk\",\"created\":1749468948,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_07871e2ad8\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"text\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BgV52lq8TDxYNVxTqXU1nDeB3APJ6\",\"object\":\"chat.completion.chunk\",\"created\":1749468948,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_07871e2ad8\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"Alignment\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BgV52lq8TDxYNVxTqXU1nDeB3APJ6\",\"object\":\"chat.completion.chunk\",\"created\":1749468948,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_07871e2ad8\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"\\\":\\\"\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BgV52lq8TDxYNVxTqXU1nDeB3APJ6\",\"object\":\"chat.completion.chunk\",\"created\":1749468948,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_07871e2ad8\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"left\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BgV52lq8TDxYNVxTqXU1nDeB3APJ6\",\"object\":\"chat.completion.chunk\",\"created\":1749468948,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_07871e2ad8\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"\\\"}\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BgV52lq8TDxYNVxTqXU1nDeB3APJ6\",\"object\":\"chat.completion.chunk\",\"created\":1749468948,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_07871e2ad8\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\",\\\"\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BgV52lq8TDxYNVxTqXU1nDeB3APJ6\",\"object\":\"chat.completion.chunk\",\"created\":1749468948,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_07871e2ad8\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"content\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BgV52lq8TDxYNVxTqXU1nDeB3APJ6\",\"object\":\"chat.completion.chunk\",\"created\":1749468948,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_07871e2ad8\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"\\\":[\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BgV52lq8TDxYNVxTqXU1nDeB3APJ6\",\"object\":\"chat.completion.chunk\",\"created\":1749468948,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_07871e2ad8\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"{\\\"\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BgV52lq8TDxYNVxTqXU1nDeB3APJ6\",\"object\":\"chat.completion.chunk\",\"created\":1749468948,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_07871e2ad8\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"type\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BgV52lq8TDxYNVxTqXU1nDeB3APJ6\",\"object\":\"chat.completion.chunk\",\"created\":1749468948,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_07871e2ad8\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"\\\":\\\"\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BgV52lq8TDxYNVxTqXU1nDeB3APJ6\",\"object\":\"chat.completion.chunk\",\"created\":1749468948,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_07871e2ad8\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"text\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BgV52lq8TDxYNVxTqXU1nDeB3APJ6\",\"object\":\"chat.completion.chunk\",\"created\":1749468948,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_07871e2ad8\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"\\\",\\\"\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BgV52lq8TDxYNVxTqXU1nDeB3APJ6\",\"object\":\"chat.completion.chunk\",\"created\":1749468948,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_07871e2ad8\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"text\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BgV52lq8TDxYNVxTqXU1nDeB3APJ6\",\"object\":\"chat.completion.chunk\",\"created\":1749468948,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_07871e2ad8\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"\\\":\\\"\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BgV52lq8TDxYNVxTqXU1nDeB3APJ6\",\"object\":\"chat.completion.chunk\",\"created\":1749468948,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_07871e2ad8\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"I\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BgV52lq8TDxYNVxTqXU1nDeB3APJ6\",\"object\":\"chat.completion.chunk\",\"created\":1749468948,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_07871e2ad8\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\" NEED\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BgV52lq8TDxYNVxTqXU1nDeB3APJ6\",\"object\":\"chat.completion.chunk\",\"created\":1749468948,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_07871e2ad8\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\" TO\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BgV52lq8TDxYNVxTqXU1nDeB3APJ6\",\"object\":\"chat.completion.chunk\",\"created\":1749468948,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_07871e2ad8\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\" BUY\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BgV52lq8TDxYNVxTqXU1nDeB3APJ6\",\"object\":\"chat.completion.chunk\",\"created\":1749468948,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_07871e2ad8\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\":\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BgV52lq8TDxYNVxTqXU1nDeB3APJ6\",\"object\":\"chat.completion.chunk\",\"created\":1749468948,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_07871e2ad8\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"\\\",\\\"\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BgV52lq8TDxYNVxTqXU1nDeB3APJ6\",\"object\":\"chat.completion.chunk\",\"created\":1749468948,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_07871e2ad8\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"styles\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BgV52lq8TDxYNVxTqXU1nDeB3APJ6\",\"object\":\"chat.completion.chunk\",\"created\":1749468948,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_07871e2ad8\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"\\\":\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BgV52lq8TDxYNVxTqXU1nDeB3APJ6\",\"object\":\"chat.completion.chunk\",\"created\":1749468948,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_07871e2ad8\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"{\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BgV52lq8TDxYNVxTqXU1nDeB3APJ6\",\"object\":\"chat.completion.chunk\",\"created\":1749468948,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_07871e2ad8\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"}}\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BgV52lq8TDxYNVxTqXU1nDeB3APJ6\",\"object\":\"chat.completion.chunk\",\"created\":1749468948,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_07871e2ad8\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"]\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BgV52lq8TDxYNVxTqXU1nDeB3APJ6\",\"object\":\"chat.completion.chunk\",\"created\":1749468948,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_07871e2ad8\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"}}\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BgV52lq8TDxYNVxTqXU1nDeB3APJ6\",\"object\":\"chat.completion.chunk\",\"created\":1749468948,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_07871e2ad8\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"]}\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BgV52lq8TDxYNVxTqXU1nDeB3APJ6\",\"object\":\"chat.completion.chunk\",\"created\":1749468948,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_07871e2ad8\",\"choices\":[{\"index\":0,\"delta\":{},\"logprobs\":null,\"finish_reason\":\"stop\"}]}\n\ndata: [DONE]\n\n", - "headers": [] - } -} \ No newline at end of file diff --git a/packages/xl-ai/src/api/formats/json/__snapshots__/json.test.ts/Update/__msw_snapshots__/openai.chat/gpt-4o-2024-08-06 (streaming)/plain source block, add mention_1_0f7fbf9a209e76a3ff44110a5fbe3bed.json b/packages/xl-ai/src/api/formats/json/__snapshots__/json.test.ts/Update/__msw_snapshots__/openai.chat/gpt-4o-2024-08-06 (streaming)/plain source block, add mention_1_0f7fbf9a209e76a3ff44110a5fbe3bed.json deleted file mode 100644 index 6bc925eea4..0000000000 --- a/packages/xl-ai/src/api/formats/json/__snapshots__/json.test.ts/Update/__msw_snapshots__/openai.chat/gpt-4o-2024-08-06 (streaming)/plain source block, add mention_1_0f7fbf9a209e76a3ff44110a5fbe3bed.json +++ /dev/null @@ -1,15 +0,0 @@ -{ - "request": { - "method": "POST", - "url": "https://localhost:3000/ai?provider=openai&url=https%3A%2F%2Fapi.openai.com%2Fv1%2Fchat%2Fcompletions", - "body": "{\"model\":\"gpt-4o-2024-08-06\",\"temperature\":0,\"messages\":[{\"role\":\"system\",\"content\":\"You're manipulating a text document using JSON blocks. \\n Make sure to follow the json schema provided. When referencing ids they MUST be EXACTLY the same (including the trailing $). \\n This is the document as an array of JSON blocks (the cursor is BETWEEN two blocks as indicated by cursor: true):\"},{\"role\":\"system\",\"content\":\"[{\\\"id\\\":\\\"ref1$\\\",\\\"block\\\":{\\\"id\\\":\\\"ref1\\\",\\\"type\\\":\\\"paragraph\\\",\\\"props\\\":{\\\"textColor\\\":\\\"default\\\",\\\"backgroundColor\\\":\\\"default\\\",\\\"textAlignment\\\":\\\"left\\\"},\\\"content\\\":[{\\\"type\\\":\\\"text\\\",\\\"text\\\":\\\"Hello, world!\\\",\\\"styles\\\":{}}]}},{\\\"cursor\\\":true},{\\\"id\\\":\\\"ref2$\\\",\\\"block\\\":{\\\"id\\\":\\\"ref2\\\",\\\"type\\\":\\\"paragraph\\\",\\\"props\\\":{\\\"textColor\\\":\\\"default\\\",\\\"backgroundColor\\\":\\\"default\\\",\\\"textAlignment\\\":\\\"left\\\"},\\\"content\\\":[{\\\"type\\\":\\\"text\\\",\\\"text\\\":\\\"Hello, \\\",\\\"styles\\\":{}},{\\\"type\\\":\\\"mention\\\",\\\"props\\\":{\\\"user\\\":\\\"John Doe\\\"}},{\\\"type\\\":\\\"text\\\",\\\"text\\\":\\\"! \\\",\\\"styles\\\":{}},{\\\"type\\\":\\\"text\\\",\\\"text\\\":\\\"How are you doing?\\\",\\\"styles\\\":{\\\"bold\\\":true}},{\\\"type\\\":\\\"text\\\",\\\"text\\\":\\\" \\\",\\\"styles\\\":{}},{\\\"type\\\":\\\"text\\\",\\\"text\\\":\\\"This text is blue!\\\",\\\"styles\\\":{\\\"textColor\\\":\\\"blue\\\"}}]}},{\\\"id\\\":\\\"ref3$\\\",\\\"block\\\":{\\\"id\\\":\\\"ref3\\\",\\\"type\\\":\\\"paragraph\\\",\\\"props\\\":{\\\"textColor\\\":\\\"default\\\",\\\"backgroundColor\\\":\\\"default\\\",\\\"textAlignment\\\":\\\"left\\\"},\\\"content\\\":[{\\\"type\\\":\\\"text\\\",\\\"text\\\":\\\"Hello, world! \\\",\\\"styles\\\":{}},{\\\"type\\\":\\\"text\\\",\\\"text\\\":\\\"Bold text. \\\",\\\"styles\\\":{\\\"bold\\\":true}},{\\\"type\\\":\\\"link\\\",\\\"href\\\":\\\"https://www.google.com\\\",\\\"content\\\":[{\\\"type\\\":\\\"text\\\",\\\"text\\\":\\\"Link.\\\",\\\"styles\\\":{}}]}]}}]\"},{\"role\":\"system\",\"content\":\"The user asks you to do the following:\"},{\"role\":\"user\",\"content\":\"Change the first paragraph to Hello, Jane Doe! (use a mention)\"},{\"role\":\"system\",\"content\":\"First, determine what part of the document the user is talking about. You SHOULD probably take cursor info into account if needed.\\n EXAMPLE: if user says \\\"below\\\" (without pointing to a specific part of the document) he / she probably indicates the block(s) after the cursor. \\n EXAMPLE: If you want to insert content AT the cursor position (UNLESS indicated otherwise by the user), then you need `referenceId` to point to the block before the cursor with position `after` (or block below and `before`).\\n \\n Prefer updating existing blocks over removing and adding (but this also depends on the user's question).\"}],\"tool_choice\":{\"type\":\"function\",\"function\":{\"name\":\"json\"}},\"tools\":[{\"type\":\"function\",\"function\":{\"name\":\"json\",\"description\":\"Respond with a JSON object.\",\"parameters\":{\"type\":\"object\",\"properties\":{\"operations\":{\"type\":\"array\",\"items\":{\"anyOf\":[{\"type\":\"object\",\"description\":\"Update a block, the new block will replace the existing block.\",\"properties\":{\"type\":{\"type\":\"string\",\"enum\":[\"update\"]},\"id\":{\"type\":\"string\",\"description\":\"id of block to update\"},\"block\":{\"$ref\":\"#/$defs/block\"}},\"required\":[\"type\",\"id\",\"block\"],\"additionalProperties\":false},{\"type\":\"object\",\"description\":\"Insert new blocks\",\"properties\":{\"type\":{\"type\":\"string\",\"enum\":[\"add\"]},\"referenceId\":{\"type\":\"string\",\"description\":\"MUST be an id of a block in the document\"},\"position\":{\"type\":\"string\",\"enum\":[\"before\",\"after\"],\"description\":\"`after` to add blocks AFTER (below) the block with `referenceId`, `before` to add the block BEFORE (above)\"},\"blocks\":{\"items\":{\"$ref\":\"#/$defs/block\"},\"type\":\"array\"}},\"required\":[\"type\",\"referenceId\",\"position\",\"blocks\"],\"additionalProperties\":false},{\"type\":\"object\",\"description\":\"Delete a block\",\"properties\":{\"type\":{\"type\":\"string\",\"enum\":[\"delete\"]},\"id\":{\"type\":\"string\",\"description\":\"id of block to delete\"}},\"required\":[\"type\",\"id\"],\"additionalProperties\":false}]}}},\"additionalProperties\":false,\"required\":[\"operations\"],\"$defs\":{\"styles\":{\"type\":\"object\",\"properties\":{\"bold\":{\"type\":\"boolean\"},\"italic\":{\"type\":\"boolean\"},\"underline\":{\"type\":\"boolean\"},\"strike\":{\"type\":\"boolean\"},\"code\":{\"type\":\"boolean\"},\"textColor\":{\"type\":\"string\"},\"backgroundColor\":{\"type\":\"string\"}},\"additionalProperties\":false},\"styledtext\":{\"type\":\"object\",\"properties\":{\"type\":{\"type\":\"string\",\"enum\":[\"text\"]},\"text\":{\"type\":\"string\"},\"styles\":{\"$ref\":\"#/$defs/styles\"}},\"additionalProperties\":false,\"required\":[\"type\",\"text\"]},\"inlinecontent\":{\"type\":\"array\",\"items\":{\"anyOf\":[{\"type\":\"object\",\"properties\":{\"type\":{\"type\":\"string\",\"enum\":[\"mention\"]},\"props\":{\"type\":\"object\",\"properties\":{\"user\":{\"type\":\"string\"}},\"additionalProperties\":false}},\"additionalProperties\":false,\"required\":[\"type\"]},{\"$ref\":\"#/$defs/styledtext\"},{\"type\":\"object\",\"properties\":{\"type\":{\"type\":\"string\",\"enum\":[\"link\"]},\"content\":{\"type\":\"array\",\"items\":{\"$ref\":\"#/$defs/styledtext\"}},\"href\":{\"type\":\"string\"}},\"additionalProperties\":false,\"required\":[\"type\",\"href\",\"content\"]}]}},\"block\":{\"anyOf\":[{\"type\":\"object\",\"properties\":{\"type\":{\"type\":\"string\",\"enum\":[\"paragraph\",\"quote\",\"bulletListItem\",\"numberedListItem\"]},\"content\":{\"$ref\":\"#/$defs/inlinecontent\"},\"props\":{\"type\":\"object\",\"properties\":{},\"additionalProperties\":false}},\"additionalProperties\":false,\"required\":[\"type\"]},{\"type\":\"object\",\"properties\":{\"type\":{\"type\":\"string\",\"enum\":[\"heading\"]},\"content\":{\"$ref\":\"#/$defs/inlinecontent\"},\"props\":{\"type\":\"object\",\"properties\":{\"level\":{\"type\":\"number\",\"enum\":[1,2,3]}},\"additionalProperties\":false}},\"additionalProperties\":false,\"required\":[\"type\"]},{\"type\":\"object\",\"properties\":{\"type\":{\"type\":\"string\",\"enum\":[\"codeBlock\"]},\"content\":{\"$ref\":\"#/$defs/inlinecontent\"},\"props\":{\"type\":\"object\",\"properties\":{\"language\":{\"type\":\"string\"}},\"additionalProperties\":false}},\"additionalProperties\":false,\"required\":[\"type\"]},{\"type\":\"object\",\"properties\":{\"type\":{\"type\":\"string\",\"enum\":[\"checkListItem\"]},\"content\":{\"$ref\":\"#/$defs/inlinecontent\"},\"props\":{\"type\":\"object\",\"properties\":{\"checked\":{\"type\":\"boolean\"}},\"additionalProperties\":false}},\"additionalProperties\":false,\"required\":[\"type\"]},{\"type\":\"object\",\"properties\":{\"type\":{\"type\":\"string\",\"enum\":[\"table\"]},\"content\":{\"type\":\"object\",\"properties\":{}},\"props\":{\"type\":\"object\",\"properties\":{},\"additionalProperties\":false}},\"additionalProperties\":false,\"required\":[\"type\"]}]}}}}}],\"stream\":true}", - "headers": [], - "cookies": [] - }, - "response": { - "status": 200, - "statusText": "", - "body": "data: {\"id\":\"chatcmpl-BgV4sIZs8uOml8ifz51s9PZleSTfc\",\"object\":\"chat.completion.chunk\",\"created\":1749468938,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_07871e2ad8\",\"choices\":[{\"index\":0,\"delta\":{\"role\":\"assistant\",\"content\":null,\"tool_calls\":[{\"index\":0,\"id\":\"call_ImOGpPhueCo0BrGu5HpUkfnq\",\"type\":\"function\",\"function\":{\"name\":\"json\",\"arguments\":\"\"}}],\"refusal\":null},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BgV4sIZs8uOml8ifz51s9PZleSTfc\",\"object\":\"chat.completion.chunk\",\"created\":1749468938,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_07871e2ad8\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"{\\\"\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BgV4sIZs8uOml8ifz51s9PZleSTfc\",\"object\":\"chat.completion.chunk\",\"created\":1749468938,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_07871e2ad8\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"operations\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BgV4sIZs8uOml8ifz51s9PZleSTfc\",\"object\":\"chat.completion.chunk\",\"created\":1749468938,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_07871e2ad8\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"\\\":[\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BgV4sIZs8uOml8ifz51s9PZleSTfc\",\"object\":\"chat.completion.chunk\",\"created\":1749468938,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_07871e2ad8\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"{\\\"\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BgV4sIZs8uOml8ifz51s9PZleSTfc\",\"object\":\"chat.completion.chunk\",\"created\":1749468938,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_07871e2ad8\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"type\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BgV4sIZs8uOml8ifz51s9PZleSTfc\",\"object\":\"chat.completion.chunk\",\"created\":1749468938,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_07871e2ad8\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"\\\":\\\"\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BgV4sIZs8uOml8ifz51s9PZleSTfc\",\"object\":\"chat.completion.chunk\",\"created\":1749468938,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_07871e2ad8\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"update\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BgV4sIZs8uOml8ifz51s9PZleSTfc\",\"object\":\"chat.completion.chunk\",\"created\":1749468938,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_07871e2ad8\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"\\\",\\\"\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BgV4sIZs8uOml8ifz51s9PZleSTfc\",\"object\":\"chat.completion.chunk\",\"created\":1749468938,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_07871e2ad8\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"id\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BgV4sIZs8uOml8ifz51s9PZleSTfc\",\"object\":\"chat.completion.chunk\",\"created\":1749468938,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_07871e2ad8\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"\\\":\\\"\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BgV4sIZs8uOml8ifz51s9PZleSTfc\",\"object\":\"chat.completion.chunk\",\"created\":1749468938,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_07871e2ad8\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"ref\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BgV4sIZs8uOml8ifz51s9PZleSTfc\",\"object\":\"chat.completion.chunk\",\"created\":1749468938,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_07871e2ad8\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"1\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BgV4sIZs8uOml8ifz51s9PZleSTfc\",\"object\":\"chat.completion.chunk\",\"created\":1749468938,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_07871e2ad8\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"$\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BgV4sIZs8uOml8ifz51s9PZleSTfc\",\"object\":\"chat.completion.chunk\",\"created\":1749468938,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_07871e2ad8\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"\\\",\\\"\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BgV4sIZs8uOml8ifz51s9PZleSTfc\",\"object\":\"chat.completion.chunk\",\"created\":1749468938,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_07871e2ad8\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"block\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BgV4sIZs8uOml8ifz51s9PZleSTfc\",\"object\":\"chat.completion.chunk\",\"created\":1749468938,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_07871e2ad8\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"\\\":{\\\"\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BgV4sIZs8uOml8ifz51s9PZleSTfc\",\"object\":\"chat.completion.chunk\",\"created\":1749468938,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_07871e2ad8\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"type\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BgV4sIZs8uOml8ifz51s9PZleSTfc\",\"object\":\"chat.completion.chunk\",\"created\":1749468938,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_07871e2ad8\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"\\\":\\\"\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BgV4sIZs8uOml8ifz51s9PZleSTfc\",\"object\":\"chat.completion.chunk\",\"created\":1749468938,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_07871e2ad8\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"paragraph\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BgV4sIZs8uOml8ifz51s9PZleSTfc\",\"object\":\"chat.completion.chunk\",\"created\":1749468938,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_07871e2ad8\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"\\\",\\\"\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BgV4sIZs8uOml8ifz51s9PZleSTfc\",\"object\":\"chat.completion.chunk\",\"created\":1749468938,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_07871e2ad8\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"content\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BgV4sIZs8uOml8ifz51s9PZleSTfc\",\"object\":\"chat.completion.chunk\",\"created\":1749468938,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_07871e2ad8\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"\\\":[\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BgV4sIZs8uOml8ifz51s9PZleSTfc\",\"object\":\"chat.completion.chunk\",\"created\":1749468938,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_07871e2ad8\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"{\\\"\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BgV4sIZs8uOml8ifz51s9PZleSTfc\",\"object\":\"chat.completion.chunk\",\"created\":1749468938,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_07871e2ad8\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"type\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BgV4sIZs8uOml8ifz51s9PZleSTfc\",\"object\":\"chat.completion.chunk\",\"created\":1749468938,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_07871e2ad8\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"\\\":\\\"\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BgV4sIZs8uOml8ifz51s9PZleSTfc\",\"object\":\"chat.completion.chunk\",\"created\":1749468938,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_07871e2ad8\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"text\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BgV4sIZs8uOml8ifz51s9PZleSTfc\",\"object\":\"chat.completion.chunk\",\"created\":1749468938,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_07871e2ad8\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"\\\",\\\"\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BgV4sIZs8uOml8ifz51s9PZleSTfc\",\"object\":\"chat.completion.chunk\",\"created\":1749468938,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_07871e2ad8\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"text\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BgV4sIZs8uOml8ifz51s9PZleSTfc\",\"object\":\"chat.completion.chunk\",\"created\":1749468938,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_07871e2ad8\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"\\\":\\\"\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BgV4sIZs8uOml8ifz51s9PZleSTfc\",\"object\":\"chat.completion.chunk\",\"created\":1749468938,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_07871e2ad8\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"Hello\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BgV4sIZs8uOml8ifz51s9PZleSTfc\",\"object\":\"chat.completion.chunk\",\"created\":1749468938,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_07871e2ad8\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\",\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BgV4sIZs8uOml8ifz51s9PZleSTfc\",\"object\":\"chat.completion.chunk\",\"created\":1749468938,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_07871e2ad8\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\" \\\",\\\"\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BgV4sIZs8uOml8ifz51s9PZleSTfc\",\"object\":\"chat.completion.chunk\",\"created\":1749468938,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_07871e2ad8\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"styles\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BgV4sIZs8uOml8ifz51s9PZleSTfc\",\"object\":\"chat.completion.chunk\",\"created\":1749468938,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_07871e2ad8\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"\\\":\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BgV4sIZs8uOml8ifz51s9PZleSTfc\",\"object\":\"chat.completion.chunk\",\"created\":1749468938,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_07871e2ad8\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"{}\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BgV4sIZs8uOml8ifz51s9PZleSTfc\",\"object\":\"chat.completion.chunk\",\"created\":1749468938,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_07871e2ad8\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"},{\\\"\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BgV4sIZs8uOml8ifz51s9PZleSTfc\",\"object\":\"chat.completion.chunk\",\"created\":1749468938,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_07871e2ad8\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"type\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BgV4sIZs8uOml8ifz51s9PZleSTfc\",\"object\":\"chat.completion.chunk\",\"created\":1749468938,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_07871e2ad8\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"\\\":\\\"\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BgV4sIZs8uOml8ifz51s9PZleSTfc\",\"object\":\"chat.completion.chunk\",\"created\":1749468938,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_07871e2ad8\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"mention\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BgV4sIZs8uOml8ifz51s9PZleSTfc\",\"object\":\"chat.completion.chunk\",\"created\":1749468938,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_07871e2ad8\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"\\\",\\\"\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BgV4sIZs8uOml8ifz51s9PZleSTfc\",\"object\":\"chat.completion.chunk\",\"created\":1749468938,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_07871e2ad8\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"props\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BgV4sIZs8uOml8ifz51s9PZleSTfc\",\"object\":\"chat.completion.chunk\",\"created\":1749468938,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_07871e2ad8\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"\\\":{\\\"\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BgV4sIZs8uOml8ifz51s9PZleSTfc\",\"object\":\"chat.completion.chunk\",\"created\":1749468938,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_07871e2ad8\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"user\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BgV4sIZs8uOml8ifz51s9PZleSTfc\",\"object\":\"chat.completion.chunk\",\"created\":1749468938,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_07871e2ad8\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"\\\":\\\"\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BgV4sIZs8uOml8ifz51s9PZleSTfc\",\"object\":\"chat.completion.chunk\",\"created\":1749468938,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_07871e2ad8\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"Jane\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BgV4sIZs8uOml8ifz51s9PZleSTfc\",\"object\":\"chat.completion.chunk\",\"created\":1749468938,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_07871e2ad8\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\" Doe\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BgV4sIZs8uOml8ifz51s9PZleSTfc\",\"object\":\"chat.completion.chunk\",\"created\":1749468938,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_07871e2ad8\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"\\\"}\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BgV4sIZs8uOml8ifz51s9PZleSTfc\",\"object\":\"chat.completion.chunk\",\"created\":1749468938,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_07871e2ad8\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"},{\\\"\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BgV4sIZs8uOml8ifz51s9PZleSTfc\",\"object\":\"chat.completion.chunk\",\"created\":1749468938,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_07871e2ad8\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"type\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BgV4sIZs8uOml8ifz51s9PZleSTfc\",\"object\":\"chat.completion.chunk\",\"created\":1749468938,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_07871e2ad8\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"\\\":\\\"\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BgV4sIZs8uOml8ifz51s9PZleSTfc\",\"object\":\"chat.completion.chunk\",\"created\":1749468938,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_07871e2ad8\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"text\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BgV4sIZs8uOml8ifz51s9PZleSTfc\",\"object\":\"chat.completion.chunk\",\"created\":1749468938,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_07871e2ad8\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"\\\",\\\"\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BgV4sIZs8uOml8ifz51s9PZleSTfc\",\"object\":\"chat.completion.chunk\",\"created\":1749468938,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_07871e2ad8\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"text\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BgV4sIZs8uOml8ifz51s9PZleSTfc\",\"object\":\"chat.completion.chunk\",\"created\":1749468938,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_07871e2ad8\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"\\\":\\\"\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BgV4sIZs8uOml8ifz51s9PZleSTfc\",\"object\":\"chat.completion.chunk\",\"created\":1749468938,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_07871e2ad8\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"!\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BgV4sIZs8uOml8ifz51s9PZleSTfc\",\"object\":\"chat.completion.chunk\",\"created\":1749468938,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_07871e2ad8\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"\\\",\\\"\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BgV4sIZs8uOml8ifz51s9PZleSTfc\",\"object\":\"chat.completion.chunk\",\"created\":1749468938,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_07871e2ad8\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"styles\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BgV4sIZs8uOml8ifz51s9PZleSTfc\",\"object\":\"chat.completion.chunk\",\"created\":1749468938,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_07871e2ad8\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"\\\":\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BgV4sIZs8uOml8ifz51s9PZleSTfc\",\"object\":\"chat.completion.chunk\",\"created\":1749468938,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_07871e2ad8\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"{\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BgV4sIZs8uOml8ifz51s9PZleSTfc\",\"object\":\"chat.completion.chunk\",\"created\":1749468938,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_07871e2ad8\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"}}\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BgV4sIZs8uOml8ifz51s9PZleSTfc\",\"object\":\"chat.completion.chunk\",\"created\":1749468938,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_07871e2ad8\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"]\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BgV4sIZs8uOml8ifz51s9PZleSTfc\",\"object\":\"chat.completion.chunk\",\"created\":1749468938,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_07871e2ad8\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"}}\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BgV4sIZs8uOml8ifz51s9PZleSTfc\",\"object\":\"chat.completion.chunk\",\"created\":1749468938,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_07871e2ad8\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"]}\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BgV4sIZs8uOml8ifz51s9PZleSTfc\",\"object\":\"chat.completion.chunk\",\"created\":1749468938,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_07871e2ad8\",\"choices\":[{\"index\":0,\"delta\":{},\"logprobs\":null,\"finish_reason\":\"stop\"}]}\n\ndata: [DONE]\n\n", - "headers": [] - } -} \ No newline at end of file diff --git a/packages/xl-ai/src/api/formats/json/__snapshots__/json.test.ts/Update/__msw_snapshots__/openai.chat/gpt-4o-2024-08-06 (streaming)/plain source block, add mention_1_5f5ce5453abb4636f25ff782110d7226.json b/packages/xl-ai/src/api/formats/json/__snapshots__/json.test.ts/Update/__msw_snapshots__/openai.chat/gpt-4o-2024-08-06 (streaming)/plain source block, add mention_1_5f5ce5453abb4636f25ff782110d7226.json new file mode 100644 index 0000000000..b5db60f7b6 --- /dev/null +++ b/packages/xl-ai/src/api/formats/json/__snapshots__/json.test.ts/Update/__msw_snapshots__/openai.chat/gpt-4o-2024-08-06 (streaming)/plain source block, add mention_1_5f5ce5453abb4636f25ff782110d7226.json @@ -0,0 +1,15 @@ +{ + "request": { + "method": "POST", + "url": "https://localhost:3000/ai?provider=openai&url=https%3A%2F%2Fapi.openai.com%2Fv1%2Fchat%2Fcompletions", + "body": "{\"model\":\"gpt-4o-2024-08-06\",\"temperature\":0,\"messages\":[{\"role\":\"system\",\"content\":\"You're manipulating a text document using JSON blocks. \\n Make sure to follow the json schema provided. When referencing ids they MUST be EXACTLY the same (including the trailing $). \\n This is the document as an array of JSON blocks (the cursor is BETWEEN two blocks as indicated by cursor: true):\"},{\"role\":\"system\",\"content\":\"[{\\\"id\\\":\\\"ref1$\\\",\\\"block\\\":{\\\"id\\\":\\\"ref1\\\",\\\"type\\\":\\\"paragraph\\\",\\\"props\\\":{\\\"textColor\\\":\\\"default\\\",\\\"backgroundColor\\\":\\\"default\\\",\\\"textAlignment\\\":\\\"left\\\"},\\\"content\\\":[{\\\"type\\\":\\\"text\\\",\\\"text\\\":\\\"Hello, world!\\\",\\\"styles\\\":{}}]}},{\\\"cursor\\\":true},{\\\"id\\\":\\\"ref2$\\\",\\\"block\\\":{\\\"id\\\":\\\"ref2\\\",\\\"type\\\":\\\"paragraph\\\",\\\"props\\\":{\\\"textColor\\\":\\\"default\\\",\\\"backgroundColor\\\":\\\"default\\\",\\\"textAlignment\\\":\\\"left\\\"},\\\"content\\\":[{\\\"type\\\":\\\"text\\\",\\\"text\\\":\\\"Hello, \\\",\\\"styles\\\":{}},{\\\"type\\\":\\\"mention\\\",\\\"props\\\":{\\\"user\\\":\\\"John Doe\\\"}},{\\\"type\\\":\\\"text\\\",\\\"text\\\":\\\"! \\\",\\\"styles\\\":{}},{\\\"type\\\":\\\"text\\\",\\\"text\\\":\\\"How are you doing?\\\",\\\"styles\\\":{\\\"bold\\\":true}},{\\\"type\\\":\\\"text\\\",\\\"text\\\":\\\" \\\",\\\"styles\\\":{}},{\\\"type\\\":\\\"text\\\",\\\"text\\\":\\\"This text is blue!\\\",\\\"styles\\\":{\\\"textColor\\\":\\\"blue\\\"}}]}},{\\\"id\\\":\\\"ref3$\\\",\\\"block\\\":{\\\"id\\\":\\\"ref3\\\",\\\"type\\\":\\\"paragraph\\\",\\\"props\\\":{\\\"textColor\\\":\\\"default\\\",\\\"backgroundColor\\\":\\\"default\\\",\\\"textAlignment\\\":\\\"left\\\"},\\\"content\\\":[{\\\"type\\\":\\\"text\\\",\\\"text\\\":\\\"Hello, world! \\\",\\\"styles\\\":{}},{\\\"type\\\":\\\"text\\\",\\\"text\\\":\\\"Bold text. \\\",\\\"styles\\\":{\\\"bold\\\":true}},{\\\"type\\\":\\\"link\\\",\\\"href\\\":\\\"https://www.google.com\\\",\\\"content\\\":[{\\\"type\\\":\\\"text\\\",\\\"text\\\":\\\"Link.\\\",\\\"styles\\\":{}}]}]}}]\"},{\"role\":\"system\",\"content\":\"The user asks you to do the following:\"},{\"role\":\"user\",\"content\":\"Change the first paragraph to Hello, Jane Doe! (use a mention)\"},{\"role\":\"system\",\"content\":\"First, determine what part of the document the user is talking about. You SHOULD probably take cursor info into account if needed.\\n EXAMPLE: if user says \\\"below\\\" (without pointing to a specific part of the document) he / she probably indicates the block(s) after the cursor. \\n EXAMPLE: If you want to insert content AT the cursor position (UNLESS indicated otherwise by the user), then you need `referenceId` to point to the block before the cursor with position `after` (or block below and `before`).\\n \\n Prefer updating existing blocks over removing and adding (but this also depends on the user's question).\"}],\"tool_choice\":{\"type\":\"function\",\"function\":{\"name\":\"json\"}},\"tools\":[{\"type\":\"function\",\"function\":{\"name\":\"json\",\"description\":\"Respond with a JSON object.\",\"parameters\":{\"type\":\"object\",\"properties\":{\"operations\":{\"type\":\"array\",\"items\":{\"anyOf\":[{\"type\":\"object\",\"description\":\"Update a block, the new block will replace the existing block.\",\"properties\":{\"type\":{\"type\":\"string\",\"enum\":[\"update\"]},\"id\":{\"type\":\"string\",\"description\":\"id of block to update\"},\"block\":{\"$ref\":\"#/$defs/block\"}},\"required\":[\"type\",\"id\",\"block\"],\"additionalProperties\":false},{\"type\":\"object\",\"description\":\"Insert new blocks\",\"properties\":{\"type\":{\"type\":\"string\",\"enum\":[\"add\"]},\"referenceId\":{\"type\":\"string\",\"description\":\"MUST be an id of a block in the document\"},\"position\":{\"type\":\"string\",\"enum\":[\"before\",\"after\"],\"description\":\"`after` to add blocks AFTER (below) the block with `referenceId`, `before` to add the block BEFORE (above)\"},\"blocks\":{\"items\":{\"$ref\":\"#/$defs/block\"},\"type\":\"array\"}},\"required\":[\"type\",\"referenceId\",\"position\",\"blocks\"],\"additionalProperties\":false},{\"type\":\"object\",\"description\":\"Delete a block\",\"properties\":{\"type\":{\"type\":\"string\",\"enum\":[\"delete\"]},\"id\":{\"type\":\"string\",\"description\":\"id of block to delete\"}},\"required\":[\"type\",\"id\"],\"additionalProperties\":false}]}}},\"additionalProperties\":false,\"required\":[\"operations\"],\"$defs\":{\"styles\":{\"type\":\"object\",\"properties\":{\"bold\":{\"type\":\"boolean\"},\"italic\":{\"type\":\"boolean\"},\"underline\":{\"type\":\"boolean\"},\"strike\":{\"type\":\"boolean\"},\"code\":{\"type\":\"boolean\"},\"textColor\":{\"type\":\"string\"},\"backgroundColor\":{\"type\":\"string\"}},\"additionalProperties\":false},\"styledtext\":{\"type\":\"object\",\"properties\":{\"type\":{\"type\":\"string\",\"enum\":[\"text\"]},\"text\":{\"type\":\"string\"},\"styles\":{\"$ref\":\"#/$defs/styles\"}},\"additionalProperties\":false,\"required\":[\"type\",\"text\"]},\"inlinecontent\":{\"type\":\"array\",\"items\":{\"anyOf\":[{\"type\":\"object\",\"properties\":{\"type\":{\"type\":\"string\",\"enum\":[\"mention\"]},\"props\":{\"type\":\"object\",\"properties\":{\"user\":{\"type\":\"string\"}},\"additionalProperties\":false}},\"additionalProperties\":false,\"required\":[\"type\"]},{\"$ref\":\"#/$defs/styledtext\"},{\"type\":\"object\",\"properties\":{\"type\":{\"type\":\"string\",\"enum\":[\"link\"]},\"content\":{\"type\":\"array\",\"items\":{\"$ref\":\"#/$defs/styledtext\"}},\"href\":{\"type\":\"string\"}},\"additionalProperties\":false,\"required\":[\"type\",\"href\",\"content\"]}]}},\"block\":{\"anyOf\":[{\"type\":\"object\",\"properties\":{\"type\":{\"type\":\"string\",\"enum\":[\"paragraph\",\"quote\",\"toggleListItem\",\"bulletListItem\",\"numberedListItem\"]},\"content\":{\"$ref\":\"#/$defs/inlinecontent\"},\"props\":{\"type\":\"object\",\"properties\":{},\"additionalProperties\":false}},\"additionalProperties\":false,\"required\":[\"type\"]},{\"type\":\"object\",\"properties\":{\"type\":{\"type\":\"string\",\"enum\":[\"heading\"]},\"content\":{\"$ref\":\"#/$defs/inlinecontent\"},\"props\":{\"type\":\"object\",\"properties\":{\"level\":{\"type\":\"number\",\"enum\":[1,2,3]},\"isTogglable\":{\"type\":\"boolean\"}},\"additionalProperties\":false}},\"additionalProperties\":false,\"required\":[\"type\"]},{\"type\":\"object\",\"properties\":{\"type\":{\"type\":\"string\",\"enum\":[\"codeBlock\"]},\"content\":{\"$ref\":\"#/$defs/inlinecontent\"},\"props\":{\"type\":\"object\",\"properties\":{\"language\":{\"type\":\"string\"}},\"additionalProperties\":false}},\"additionalProperties\":false,\"required\":[\"type\"]},{\"type\":\"object\",\"properties\":{\"type\":{\"type\":\"string\",\"enum\":[\"checkListItem\"]},\"content\":{\"$ref\":\"#/$defs/inlinecontent\"},\"props\":{\"type\":\"object\",\"properties\":{\"checked\":{\"type\":\"boolean\"}},\"additionalProperties\":false}},\"additionalProperties\":false,\"required\":[\"type\"]},{\"type\":\"object\",\"properties\":{\"type\":{\"type\":\"string\",\"enum\":[\"table\"]},\"content\":{\"type\":\"object\",\"properties\":{}},\"props\":{\"type\":\"object\",\"properties\":{},\"additionalProperties\":false}},\"additionalProperties\":false,\"required\":[\"type\"]}]}}}}}],\"stream\":true}", + "headers": [], + "cookies": [] + }, + "response": { + "status": 200, + "statusText": "", + "body": "data: {\"id\":\"chatcmpl-BhXnK9MSXpf3eKxKBfvynV7uhmrkg\",\"object\":\"chat.completion.chunk\",\"created\":1749717710,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_a288987b44\",\"choices\":[{\"index\":0,\"delta\":{\"role\":\"assistant\",\"content\":null,\"tool_calls\":[{\"index\":0,\"id\":\"call_OMemgx4uUZktXRRPk2n8mrvM\",\"type\":\"function\",\"function\":{\"name\":\"json\",\"arguments\":\"\"}}],\"refusal\":null},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BhXnK9MSXpf3eKxKBfvynV7uhmrkg\",\"object\":\"chat.completion.chunk\",\"created\":1749717710,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_a288987b44\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"{\\\"\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BhXnK9MSXpf3eKxKBfvynV7uhmrkg\",\"object\":\"chat.completion.chunk\",\"created\":1749717710,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_a288987b44\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"operations\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BhXnK9MSXpf3eKxKBfvynV7uhmrkg\",\"object\":\"chat.completion.chunk\",\"created\":1749717710,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_a288987b44\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"\\\":[\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BhXnK9MSXpf3eKxKBfvynV7uhmrkg\",\"object\":\"chat.completion.chunk\",\"created\":1749717710,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_a288987b44\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"{\\\"\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BhXnK9MSXpf3eKxKBfvynV7uhmrkg\",\"object\":\"chat.completion.chunk\",\"created\":1749717710,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_a288987b44\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"type\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BhXnK9MSXpf3eKxKBfvynV7uhmrkg\",\"object\":\"chat.completion.chunk\",\"created\":1749717710,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_a288987b44\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"\\\":\\\"\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BhXnK9MSXpf3eKxKBfvynV7uhmrkg\",\"object\":\"chat.completion.chunk\",\"created\":1749717710,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_a288987b44\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"update\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BhXnK9MSXpf3eKxKBfvynV7uhmrkg\",\"object\":\"chat.completion.chunk\",\"created\":1749717710,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_a288987b44\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"\\\",\\\"\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BhXnK9MSXpf3eKxKBfvynV7uhmrkg\",\"object\":\"chat.completion.chunk\",\"created\":1749717710,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_a288987b44\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"id\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BhXnK9MSXpf3eKxKBfvynV7uhmrkg\",\"object\":\"chat.completion.chunk\",\"created\":1749717710,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_a288987b44\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"\\\":\\\"\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BhXnK9MSXpf3eKxKBfvynV7uhmrkg\",\"object\":\"chat.completion.chunk\",\"created\":1749717710,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_a288987b44\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"ref\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BhXnK9MSXpf3eKxKBfvynV7uhmrkg\",\"object\":\"chat.completion.chunk\",\"created\":1749717710,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_a288987b44\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"1\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BhXnK9MSXpf3eKxKBfvynV7uhmrkg\",\"object\":\"chat.completion.chunk\",\"created\":1749717710,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_a288987b44\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"$\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BhXnK9MSXpf3eKxKBfvynV7uhmrkg\",\"object\":\"chat.completion.chunk\",\"created\":1749717710,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_a288987b44\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"\\\",\\\"\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BhXnK9MSXpf3eKxKBfvynV7uhmrkg\",\"object\":\"chat.completion.chunk\",\"created\":1749717710,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_a288987b44\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"block\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BhXnK9MSXpf3eKxKBfvynV7uhmrkg\",\"object\":\"chat.completion.chunk\",\"created\":1749717710,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_a288987b44\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"\\\":{\\\"\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BhXnK9MSXpf3eKxKBfvynV7uhmrkg\",\"object\":\"chat.completion.chunk\",\"created\":1749717710,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_a288987b44\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"type\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BhXnK9MSXpf3eKxKBfvynV7uhmrkg\",\"object\":\"chat.completion.chunk\",\"created\":1749717710,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_a288987b44\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"\\\":\\\"\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BhXnK9MSXpf3eKxKBfvynV7uhmrkg\",\"object\":\"chat.completion.chunk\",\"created\":1749717710,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_a288987b44\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"paragraph\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BhXnK9MSXpf3eKxKBfvynV7uhmrkg\",\"object\":\"chat.completion.chunk\",\"created\":1749717710,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_a288987b44\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"\\\",\\\"\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BhXnK9MSXpf3eKxKBfvynV7uhmrkg\",\"object\":\"chat.completion.chunk\",\"created\":1749717710,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_a288987b44\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"content\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BhXnK9MSXpf3eKxKBfvynV7uhmrkg\",\"object\":\"chat.completion.chunk\",\"created\":1749717710,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_a288987b44\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"\\\":[\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BhXnK9MSXpf3eKxKBfvynV7uhmrkg\",\"object\":\"chat.completion.chunk\",\"created\":1749717710,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_a288987b44\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"{\\\"\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BhXnK9MSXpf3eKxKBfvynV7uhmrkg\",\"object\":\"chat.completion.chunk\",\"created\":1749717710,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_a288987b44\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"type\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BhXnK9MSXpf3eKxKBfvynV7uhmrkg\",\"object\":\"chat.completion.chunk\",\"created\":1749717710,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_a288987b44\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"\\\":\\\"\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BhXnK9MSXpf3eKxKBfvynV7uhmrkg\",\"object\":\"chat.completion.chunk\",\"created\":1749717710,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_a288987b44\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"text\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BhXnK9MSXpf3eKxKBfvynV7uhmrkg\",\"object\":\"chat.completion.chunk\",\"created\":1749717710,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_a288987b44\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"\\\",\\\"\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BhXnK9MSXpf3eKxKBfvynV7uhmrkg\",\"object\":\"chat.completion.chunk\",\"created\":1749717710,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_a288987b44\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"text\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BhXnK9MSXpf3eKxKBfvynV7uhmrkg\",\"object\":\"chat.completion.chunk\",\"created\":1749717710,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_a288987b44\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"\\\":\\\"\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BhXnK9MSXpf3eKxKBfvynV7uhmrkg\",\"object\":\"chat.completion.chunk\",\"created\":1749717710,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_a288987b44\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"Hello\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BhXnK9MSXpf3eKxKBfvynV7uhmrkg\",\"object\":\"chat.completion.chunk\",\"created\":1749717710,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_a288987b44\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\",\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BhXnK9MSXpf3eKxKBfvynV7uhmrkg\",\"object\":\"chat.completion.chunk\",\"created\":1749717710,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_a288987b44\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\" \\\",\\\"\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BhXnK9MSXpf3eKxKBfvynV7uhmrkg\",\"object\":\"chat.completion.chunk\",\"created\":1749717710,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_a288987b44\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"styles\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BhXnK9MSXpf3eKxKBfvynV7uhmrkg\",\"object\":\"chat.completion.chunk\",\"created\":1749717710,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_a288987b44\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"\\\":\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BhXnK9MSXpf3eKxKBfvynV7uhmrkg\",\"object\":\"chat.completion.chunk\",\"created\":1749717710,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_a288987b44\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"{}\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BhXnK9MSXpf3eKxKBfvynV7uhmrkg\",\"object\":\"chat.completion.chunk\",\"created\":1749717710,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_a288987b44\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"},{\\\"\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BhXnK9MSXpf3eKxKBfvynV7uhmrkg\",\"object\":\"chat.completion.chunk\",\"created\":1749717710,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_a288987b44\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"type\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BhXnK9MSXpf3eKxKBfvynV7uhmrkg\",\"object\":\"chat.completion.chunk\",\"created\":1749717710,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_a288987b44\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"\\\":\\\"\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BhXnK9MSXpf3eKxKBfvynV7uhmrkg\",\"object\":\"chat.completion.chunk\",\"created\":1749717710,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_a288987b44\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"mention\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BhXnK9MSXpf3eKxKBfvynV7uhmrkg\",\"object\":\"chat.completion.chunk\",\"created\":1749717710,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_a288987b44\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"\\\",\\\"\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BhXnK9MSXpf3eKxKBfvynV7uhmrkg\",\"object\":\"chat.completion.chunk\",\"created\":1749717710,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_a288987b44\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"props\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BhXnK9MSXpf3eKxKBfvynV7uhmrkg\",\"object\":\"chat.completion.chunk\",\"created\":1749717710,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_a288987b44\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"\\\":{\\\"\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BhXnK9MSXpf3eKxKBfvynV7uhmrkg\",\"object\":\"chat.completion.chunk\",\"created\":1749717710,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_a288987b44\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"user\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BhXnK9MSXpf3eKxKBfvynV7uhmrkg\",\"object\":\"chat.completion.chunk\",\"created\":1749717710,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_a288987b44\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"\\\":\\\"\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BhXnK9MSXpf3eKxKBfvynV7uhmrkg\",\"object\":\"chat.completion.chunk\",\"created\":1749717710,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_a288987b44\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"Jane\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BhXnK9MSXpf3eKxKBfvynV7uhmrkg\",\"object\":\"chat.completion.chunk\",\"created\":1749717710,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_a288987b44\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\" Doe\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BhXnK9MSXpf3eKxKBfvynV7uhmrkg\",\"object\":\"chat.completion.chunk\",\"created\":1749717710,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_a288987b44\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"\\\"}\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BhXnK9MSXpf3eKxKBfvynV7uhmrkg\",\"object\":\"chat.completion.chunk\",\"created\":1749717710,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_a288987b44\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"},{\\\"\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BhXnK9MSXpf3eKxKBfvynV7uhmrkg\",\"object\":\"chat.completion.chunk\",\"created\":1749717710,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_a288987b44\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"type\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BhXnK9MSXpf3eKxKBfvynV7uhmrkg\",\"object\":\"chat.completion.chunk\",\"created\":1749717710,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_a288987b44\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"\\\":\\\"\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BhXnK9MSXpf3eKxKBfvynV7uhmrkg\",\"object\":\"chat.completion.chunk\",\"created\":1749717710,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_a288987b44\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"text\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BhXnK9MSXpf3eKxKBfvynV7uhmrkg\",\"object\":\"chat.completion.chunk\",\"created\":1749717710,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_a288987b44\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"\\\",\\\"\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BhXnK9MSXpf3eKxKBfvynV7uhmrkg\",\"object\":\"chat.completion.chunk\",\"created\":1749717710,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_a288987b44\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"text\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BhXnK9MSXpf3eKxKBfvynV7uhmrkg\",\"object\":\"chat.completion.chunk\",\"created\":1749717710,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_a288987b44\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"\\\":\\\"\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BhXnK9MSXpf3eKxKBfvynV7uhmrkg\",\"object\":\"chat.completion.chunk\",\"created\":1749717710,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_a288987b44\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"!\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BhXnK9MSXpf3eKxKBfvynV7uhmrkg\",\"object\":\"chat.completion.chunk\",\"created\":1749717710,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_a288987b44\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"\\\",\\\"\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BhXnK9MSXpf3eKxKBfvynV7uhmrkg\",\"object\":\"chat.completion.chunk\",\"created\":1749717710,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_a288987b44\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"styles\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BhXnK9MSXpf3eKxKBfvynV7uhmrkg\",\"object\":\"chat.completion.chunk\",\"created\":1749717710,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_a288987b44\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"\\\":\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BhXnK9MSXpf3eKxKBfvynV7uhmrkg\",\"object\":\"chat.completion.chunk\",\"created\":1749717710,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_a288987b44\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"{\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BhXnK9MSXpf3eKxKBfvynV7uhmrkg\",\"object\":\"chat.completion.chunk\",\"created\":1749717710,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_a288987b44\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"}}\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BhXnK9MSXpf3eKxKBfvynV7uhmrkg\",\"object\":\"chat.completion.chunk\",\"created\":1749717710,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_a288987b44\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"]\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BhXnK9MSXpf3eKxKBfvynV7uhmrkg\",\"object\":\"chat.completion.chunk\",\"created\":1749717710,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_a288987b44\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"}}\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BhXnK9MSXpf3eKxKBfvynV7uhmrkg\",\"object\":\"chat.completion.chunk\",\"created\":1749717710,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_a288987b44\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"]}\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BhXnK9MSXpf3eKxKBfvynV7uhmrkg\",\"object\":\"chat.completion.chunk\",\"created\":1749717710,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_a288987b44\",\"choices\":[{\"index\":0,\"delta\":{},\"logprobs\":null,\"finish_reason\":\"stop\"}]}\n\ndata: [DONE]\n\n", + "headers": [] + } +} \ No newline at end of file diff --git a/packages/xl-ai/src/api/formats/json/__snapshots__/json.test.ts/Update/__msw_snapshots__/openai.chat/gpt-4o-2024-08-06 (streaming)/standard update_1_fbc43c15ba5fa3944ee25a2a9497d1cb.json b/packages/xl-ai/src/api/formats/json/__snapshots__/json.test.ts/Update/__msw_snapshots__/openai.chat/gpt-4o-2024-08-06 (streaming)/standard update_1_8542a7a8e4efe3ccde6b3adc4c77b132.json similarity index 54% rename from packages/xl-ai/src/api/formats/json/__snapshots__/json.test.ts/Update/__msw_snapshots__/openai.chat/gpt-4o-2024-08-06 (streaming)/standard update_1_fbc43c15ba5fa3944ee25a2a9497d1cb.json rename to packages/xl-ai/src/api/formats/json/__snapshots__/json.test.ts/Update/__msw_snapshots__/openai.chat/gpt-4o-2024-08-06 (streaming)/standard update_1_8542a7a8e4efe3ccde6b3adc4c77b132.json index 0eb72dff04..9aff59f5aa 100644 --- a/packages/xl-ai/src/api/formats/json/__snapshots__/json.test.ts/Update/__msw_snapshots__/openai.chat/gpt-4o-2024-08-06 (streaming)/standard update_1_fbc43c15ba5fa3944ee25a2a9497d1cb.json +++ b/packages/xl-ai/src/api/formats/json/__snapshots__/json.test.ts/Update/__msw_snapshots__/openai.chat/gpt-4o-2024-08-06 (streaming)/standard update_1_8542a7a8e4efe3ccde6b3adc4c77b132.json @@ -2,14 +2,14 @@ "request": { "method": "POST", "url": "https://localhost:3000/ai?provider=openai&url=https%3A%2F%2Fapi.openai.com%2Fv1%2Fchat%2Fcompletions", - "body": "{\"model\":\"gpt-4o-2024-08-06\",\"temperature\":0,\"messages\":[{\"role\":\"system\",\"content\":\"You're manipulating a text document using JSON blocks. \\n Make sure to follow the json schema provided. When referencing ids they MUST be EXACTLY the same (including the trailing $). \\n This is the document as an array of JSON blocks (the cursor is BETWEEN two blocks as indicated by cursor: true):\"},{\"role\":\"system\",\"content\":\"[{\\\"id\\\":\\\"ref1$\\\",\\\"block\\\":{\\\"id\\\":\\\"ref1\\\",\\\"type\\\":\\\"paragraph\\\",\\\"props\\\":{\\\"textColor\\\":\\\"default\\\",\\\"backgroundColor\\\":\\\"default\\\",\\\"textAlignment\\\":\\\"left\\\"},\\\"content\\\":[{\\\"type\\\":\\\"text\\\",\\\"text\\\":\\\"Hello, world!\\\",\\\"styles\\\":{}}]}},{\\\"cursor\\\":true},{\\\"id\\\":\\\"ref2$\\\",\\\"block\\\":{\\\"id\\\":\\\"ref2\\\",\\\"type\\\":\\\"paragraph\\\",\\\"props\\\":{\\\"textColor\\\":\\\"default\\\",\\\"backgroundColor\\\":\\\"default\\\",\\\"textAlignment\\\":\\\"left\\\"},\\\"content\\\":[{\\\"type\\\":\\\"text\\\",\\\"text\\\":\\\"Hello, \\\",\\\"styles\\\":{}},{\\\"type\\\":\\\"mention\\\",\\\"props\\\":{\\\"user\\\":\\\"John Doe\\\"}},{\\\"type\\\":\\\"text\\\",\\\"text\\\":\\\"! \\\",\\\"styles\\\":{}},{\\\"type\\\":\\\"text\\\",\\\"text\\\":\\\"How are you doing?\\\",\\\"styles\\\":{\\\"bold\\\":true}},{\\\"type\\\":\\\"text\\\",\\\"text\\\":\\\" \\\",\\\"styles\\\":{}},{\\\"type\\\":\\\"text\\\",\\\"text\\\":\\\"This text is blue!\\\",\\\"styles\\\":{\\\"textColor\\\":\\\"blue\\\"}}]}},{\\\"id\\\":\\\"ref3$\\\",\\\"block\\\":{\\\"id\\\":\\\"ref3\\\",\\\"type\\\":\\\"paragraph\\\",\\\"props\\\":{\\\"textColor\\\":\\\"default\\\",\\\"backgroundColor\\\":\\\"default\\\",\\\"textAlignment\\\":\\\"left\\\"},\\\"content\\\":[{\\\"type\\\":\\\"text\\\",\\\"text\\\":\\\"Hello, world! \\\",\\\"styles\\\":{}},{\\\"type\\\":\\\"text\\\",\\\"text\\\":\\\"Bold text. \\\",\\\"styles\\\":{\\\"bold\\\":true}},{\\\"type\\\":\\\"link\\\",\\\"href\\\":\\\"https://www.google.com\\\",\\\"content\\\":[{\\\"type\\\":\\\"text\\\",\\\"text\\\":\\\"Link.\\\",\\\"styles\\\":{}}]}]}}]\"},{\"role\":\"system\",\"content\":\"The user asks you to do the following:\"},{\"role\":\"user\",\"content\":\"translate the first paragraph to german\"},{\"role\":\"system\",\"content\":\"First, determine what part of the document the user is talking about. You SHOULD probably take cursor info into account if needed.\\n EXAMPLE: if user says \\\"below\\\" (without pointing to a specific part of the document) he / she probably indicates the block(s) after the cursor. \\n EXAMPLE: If you want to insert content AT the cursor position (UNLESS indicated otherwise by the user), then you need `referenceId` to point to the block before the cursor with position `after` (or block below and `before`).\\n \\n Prefer updating existing blocks over removing and adding (but this also depends on the user's question).\"}],\"tool_choice\":{\"type\":\"function\",\"function\":{\"name\":\"json\"}},\"tools\":[{\"type\":\"function\",\"function\":{\"name\":\"json\",\"description\":\"Respond with a JSON object.\",\"parameters\":{\"type\":\"object\",\"properties\":{\"operations\":{\"type\":\"array\",\"items\":{\"anyOf\":[{\"type\":\"object\",\"description\":\"Update a block, the new block will replace the existing block.\",\"properties\":{\"type\":{\"type\":\"string\",\"enum\":[\"update\"]},\"id\":{\"type\":\"string\",\"description\":\"id of block to update\"},\"block\":{\"$ref\":\"#/$defs/block\"}},\"required\":[\"type\",\"id\",\"block\"],\"additionalProperties\":false},{\"type\":\"object\",\"description\":\"Insert new blocks\",\"properties\":{\"type\":{\"type\":\"string\",\"enum\":[\"add\"]},\"referenceId\":{\"type\":\"string\",\"description\":\"MUST be an id of a block in the document\"},\"position\":{\"type\":\"string\",\"enum\":[\"before\",\"after\"],\"description\":\"`after` to add blocks AFTER (below) the block with `referenceId`, `before` to add the block BEFORE (above)\"},\"blocks\":{\"items\":{\"$ref\":\"#/$defs/block\"},\"type\":\"array\"}},\"required\":[\"type\",\"referenceId\",\"position\",\"blocks\"],\"additionalProperties\":false},{\"type\":\"object\",\"description\":\"Delete a block\",\"properties\":{\"type\":{\"type\":\"string\",\"enum\":[\"delete\"]},\"id\":{\"type\":\"string\",\"description\":\"id of block to delete\"}},\"required\":[\"type\",\"id\"],\"additionalProperties\":false}]}}},\"additionalProperties\":false,\"required\":[\"operations\"],\"$defs\":{\"styles\":{\"type\":\"object\",\"properties\":{\"bold\":{\"type\":\"boolean\"},\"italic\":{\"type\":\"boolean\"},\"underline\":{\"type\":\"boolean\"},\"strike\":{\"type\":\"boolean\"},\"code\":{\"type\":\"boolean\"},\"textColor\":{\"type\":\"string\"},\"backgroundColor\":{\"type\":\"string\"}},\"additionalProperties\":false},\"styledtext\":{\"type\":\"object\",\"properties\":{\"type\":{\"type\":\"string\",\"enum\":[\"text\"]},\"text\":{\"type\":\"string\"},\"styles\":{\"$ref\":\"#/$defs/styles\"}},\"additionalProperties\":false,\"required\":[\"type\",\"text\"]},\"inlinecontent\":{\"type\":\"array\",\"items\":{\"anyOf\":[{\"type\":\"object\",\"properties\":{\"type\":{\"type\":\"string\",\"enum\":[\"mention\"]},\"props\":{\"type\":\"object\",\"properties\":{\"user\":{\"type\":\"string\"}},\"additionalProperties\":false}},\"additionalProperties\":false,\"required\":[\"type\"]},{\"$ref\":\"#/$defs/styledtext\"},{\"type\":\"object\",\"properties\":{\"type\":{\"type\":\"string\",\"enum\":[\"link\"]},\"content\":{\"type\":\"array\",\"items\":{\"$ref\":\"#/$defs/styledtext\"}},\"href\":{\"type\":\"string\"}},\"additionalProperties\":false,\"required\":[\"type\",\"href\",\"content\"]}]}},\"block\":{\"anyOf\":[{\"type\":\"object\",\"properties\":{\"type\":{\"type\":\"string\",\"enum\":[\"paragraph\",\"quote\",\"bulletListItem\",\"numberedListItem\"]},\"content\":{\"$ref\":\"#/$defs/inlinecontent\"},\"props\":{\"type\":\"object\",\"properties\":{},\"additionalProperties\":false}},\"additionalProperties\":false,\"required\":[\"type\"]},{\"type\":\"object\",\"properties\":{\"type\":{\"type\":\"string\",\"enum\":[\"heading\"]},\"content\":{\"$ref\":\"#/$defs/inlinecontent\"},\"props\":{\"type\":\"object\",\"properties\":{\"level\":{\"type\":\"number\",\"enum\":[1,2,3]}},\"additionalProperties\":false}},\"additionalProperties\":false,\"required\":[\"type\"]},{\"type\":\"object\",\"properties\":{\"type\":{\"type\":\"string\",\"enum\":[\"codeBlock\"]},\"content\":{\"$ref\":\"#/$defs/inlinecontent\"},\"props\":{\"type\":\"object\",\"properties\":{\"language\":{\"type\":\"string\"}},\"additionalProperties\":false}},\"additionalProperties\":false,\"required\":[\"type\"]},{\"type\":\"object\",\"properties\":{\"type\":{\"type\":\"string\",\"enum\":[\"checkListItem\"]},\"content\":{\"$ref\":\"#/$defs/inlinecontent\"},\"props\":{\"type\":\"object\",\"properties\":{\"checked\":{\"type\":\"boolean\"}},\"additionalProperties\":false}},\"additionalProperties\":false,\"required\":[\"type\"]},{\"type\":\"object\",\"properties\":{\"type\":{\"type\":\"string\",\"enum\":[\"table\"]},\"content\":{\"type\":\"object\",\"properties\":{}},\"props\":{\"type\":\"object\",\"properties\":{},\"additionalProperties\":false}},\"additionalProperties\":false,\"required\":[\"type\"]}]}}}}}],\"stream\":true}", + "body": "{\"model\":\"gpt-4o-2024-08-06\",\"temperature\":0,\"messages\":[{\"role\":\"system\",\"content\":\"You're manipulating a text document using JSON blocks. \\n Make sure to follow the json schema provided. When referencing ids they MUST be EXACTLY the same (including the trailing $). \\n This is the document as an array of JSON blocks (the cursor is BETWEEN two blocks as indicated by cursor: true):\"},{\"role\":\"system\",\"content\":\"[{\\\"id\\\":\\\"ref1$\\\",\\\"block\\\":{\\\"id\\\":\\\"ref1\\\",\\\"type\\\":\\\"paragraph\\\",\\\"props\\\":{\\\"textColor\\\":\\\"default\\\",\\\"backgroundColor\\\":\\\"default\\\",\\\"textAlignment\\\":\\\"left\\\"},\\\"content\\\":[{\\\"type\\\":\\\"text\\\",\\\"text\\\":\\\"Hello, world!\\\",\\\"styles\\\":{}}]}},{\\\"cursor\\\":true},{\\\"id\\\":\\\"ref2$\\\",\\\"block\\\":{\\\"id\\\":\\\"ref2\\\",\\\"type\\\":\\\"paragraph\\\",\\\"props\\\":{\\\"textColor\\\":\\\"default\\\",\\\"backgroundColor\\\":\\\"default\\\",\\\"textAlignment\\\":\\\"left\\\"},\\\"content\\\":[{\\\"type\\\":\\\"text\\\",\\\"text\\\":\\\"Hello, \\\",\\\"styles\\\":{}},{\\\"type\\\":\\\"mention\\\",\\\"props\\\":{\\\"user\\\":\\\"John Doe\\\"}},{\\\"type\\\":\\\"text\\\",\\\"text\\\":\\\"! \\\",\\\"styles\\\":{}},{\\\"type\\\":\\\"text\\\",\\\"text\\\":\\\"How are you doing?\\\",\\\"styles\\\":{\\\"bold\\\":true}},{\\\"type\\\":\\\"text\\\",\\\"text\\\":\\\" \\\",\\\"styles\\\":{}},{\\\"type\\\":\\\"text\\\",\\\"text\\\":\\\"This text is blue!\\\",\\\"styles\\\":{\\\"textColor\\\":\\\"blue\\\"}}]}},{\\\"id\\\":\\\"ref3$\\\",\\\"block\\\":{\\\"id\\\":\\\"ref3\\\",\\\"type\\\":\\\"paragraph\\\",\\\"props\\\":{\\\"textColor\\\":\\\"default\\\",\\\"backgroundColor\\\":\\\"default\\\",\\\"textAlignment\\\":\\\"left\\\"},\\\"content\\\":[{\\\"type\\\":\\\"text\\\",\\\"text\\\":\\\"Hello, world! \\\",\\\"styles\\\":{}},{\\\"type\\\":\\\"text\\\",\\\"text\\\":\\\"Bold text. \\\",\\\"styles\\\":{\\\"bold\\\":true}},{\\\"type\\\":\\\"link\\\",\\\"href\\\":\\\"https://www.google.com\\\",\\\"content\\\":[{\\\"type\\\":\\\"text\\\",\\\"text\\\":\\\"Link.\\\",\\\"styles\\\":{}}]}]}}]\"},{\"role\":\"system\",\"content\":\"The user asks you to do the following:\"},{\"role\":\"user\",\"content\":\"translate the first paragraph to german\"},{\"role\":\"system\",\"content\":\"First, determine what part of the document the user is talking about. You SHOULD probably take cursor info into account if needed.\\n EXAMPLE: if user says \\\"below\\\" (without pointing to a specific part of the document) he / she probably indicates the block(s) after the cursor. \\n EXAMPLE: If you want to insert content AT the cursor position (UNLESS indicated otherwise by the user), then you need `referenceId` to point to the block before the cursor with position `after` (or block below and `before`).\\n \\n Prefer updating existing blocks over removing and adding (but this also depends on the user's question).\"}],\"tool_choice\":{\"type\":\"function\",\"function\":{\"name\":\"json\"}},\"tools\":[{\"type\":\"function\",\"function\":{\"name\":\"json\",\"description\":\"Respond with a JSON object.\",\"parameters\":{\"type\":\"object\",\"properties\":{\"operations\":{\"type\":\"array\",\"items\":{\"anyOf\":[{\"type\":\"object\",\"description\":\"Update a block, the new block will replace the existing block.\",\"properties\":{\"type\":{\"type\":\"string\",\"enum\":[\"update\"]},\"id\":{\"type\":\"string\",\"description\":\"id of block to update\"},\"block\":{\"$ref\":\"#/$defs/block\"}},\"required\":[\"type\",\"id\",\"block\"],\"additionalProperties\":false},{\"type\":\"object\",\"description\":\"Insert new blocks\",\"properties\":{\"type\":{\"type\":\"string\",\"enum\":[\"add\"]},\"referenceId\":{\"type\":\"string\",\"description\":\"MUST be an id of a block in the document\"},\"position\":{\"type\":\"string\",\"enum\":[\"before\",\"after\"],\"description\":\"`after` to add blocks AFTER (below) the block with `referenceId`, `before` to add the block BEFORE (above)\"},\"blocks\":{\"items\":{\"$ref\":\"#/$defs/block\"},\"type\":\"array\"}},\"required\":[\"type\",\"referenceId\",\"position\",\"blocks\"],\"additionalProperties\":false},{\"type\":\"object\",\"description\":\"Delete a block\",\"properties\":{\"type\":{\"type\":\"string\",\"enum\":[\"delete\"]},\"id\":{\"type\":\"string\",\"description\":\"id of block to delete\"}},\"required\":[\"type\",\"id\"],\"additionalProperties\":false}]}}},\"additionalProperties\":false,\"required\":[\"operations\"],\"$defs\":{\"styles\":{\"type\":\"object\",\"properties\":{\"bold\":{\"type\":\"boolean\"},\"italic\":{\"type\":\"boolean\"},\"underline\":{\"type\":\"boolean\"},\"strike\":{\"type\":\"boolean\"},\"code\":{\"type\":\"boolean\"},\"textColor\":{\"type\":\"string\"},\"backgroundColor\":{\"type\":\"string\"}},\"additionalProperties\":false},\"styledtext\":{\"type\":\"object\",\"properties\":{\"type\":{\"type\":\"string\",\"enum\":[\"text\"]},\"text\":{\"type\":\"string\"},\"styles\":{\"$ref\":\"#/$defs/styles\"}},\"additionalProperties\":false,\"required\":[\"type\",\"text\"]},\"inlinecontent\":{\"type\":\"array\",\"items\":{\"anyOf\":[{\"type\":\"object\",\"properties\":{\"type\":{\"type\":\"string\",\"enum\":[\"mention\"]},\"props\":{\"type\":\"object\",\"properties\":{\"user\":{\"type\":\"string\"}},\"additionalProperties\":false}},\"additionalProperties\":false,\"required\":[\"type\"]},{\"$ref\":\"#/$defs/styledtext\"},{\"type\":\"object\",\"properties\":{\"type\":{\"type\":\"string\",\"enum\":[\"link\"]},\"content\":{\"type\":\"array\",\"items\":{\"$ref\":\"#/$defs/styledtext\"}},\"href\":{\"type\":\"string\"}},\"additionalProperties\":false,\"required\":[\"type\",\"href\",\"content\"]}]}},\"block\":{\"anyOf\":[{\"type\":\"object\",\"properties\":{\"type\":{\"type\":\"string\",\"enum\":[\"paragraph\",\"quote\",\"toggleListItem\",\"bulletListItem\",\"numberedListItem\"]},\"content\":{\"$ref\":\"#/$defs/inlinecontent\"},\"props\":{\"type\":\"object\",\"properties\":{},\"additionalProperties\":false}},\"additionalProperties\":false,\"required\":[\"type\"]},{\"type\":\"object\",\"properties\":{\"type\":{\"type\":\"string\",\"enum\":[\"heading\"]},\"content\":{\"$ref\":\"#/$defs/inlinecontent\"},\"props\":{\"type\":\"object\",\"properties\":{\"level\":{\"type\":\"number\",\"enum\":[1,2,3]},\"isTogglable\":{\"type\":\"boolean\"}},\"additionalProperties\":false}},\"additionalProperties\":false,\"required\":[\"type\"]},{\"type\":\"object\",\"properties\":{\"type\":{\"type\":\"string\",\"enum\":[\"codeBlock\"]},\"content\":{\"$ref\":\"#/$defs/inlinecontent\"},\"props\":{\"type\":\"object\",\"properties\":{\"language\":{\"type\":\"string\"}},\"additionalProperties\":false}},\"additionalProperties\":false,\"required\":[\"type\"]},{\"type\":\"object\",\"properties\":{\"type\":{\"type\":\"string\",\"enum\":[\"checkListItem\"]},\"content\":{\"$ref\":\"#/$defs/inlinecontent\"},\"props\":{\"type\":\"object\",\"properties\":{\"checked\":{\"type\":\"boolean\"}},\"additionalProperties\":false}},\"additionalProperties\":false,\"required\":[\"type\"]},{\"type\":\"object\",\"properties\":{\"type\":{\"type\":\"string\",\"enum\":[\"table\"]},\"content\":{\"type\":\"object\",\"properties\":{}},\"props\":{\"type\":\"object\",\"properties\":{},\"additionalProperties\":false}},\"additionalProperties\":false,\"required\":[\"type\"]}]}}}}}],\"stream\":true}", "headers": [], "cookies": [] }, "response": { "status": 200, "statusText": "", - "body": "data: {\"id\":\"chatcmpl-BgV4auPDtNSYblgBiz19axqIrJYt9\",\"object\":\"chat.completion.chunk\",\"created\":1749468920,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_07871e2ad8\",\"choices\":[{\"index\":0,\"delta\":{\"role\":\"assistant\",\"content\":null,\"tool_calls\":[{\"index\":0,\"id\":\"call_VZ0MNXgnxi2DgTb2QQzz2Vxu\",\"type\":\"function\",\"function\":{\"name\":\"json\",\"arguments\":\"\"}}],\"refusal\":null},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BgV4auPDtNSYblgBiz19axqIrJYt9\",\"object\":\"chat.completion.chunk\",\"created\":1749468920,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_07871e2ad8\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"{\\\"\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BgV4auPDtNSYblgBiz19axqIrJYt9\",\"object\":\"chat.completion.chunk\",\"created\":1749468920,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_07871e2ad8\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"operations\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BgV4auPDtNSYblgBiz19axqIrJYt9\",\"object\":\"chat.completion.chunk\",\"created\":1749468920,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_07871e2ad8\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"\\\":[\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BgV4auPDtNSYblgBiz19axqIrJYt9\",\"object\":\"chat.completion.chunk\",\"created\":1749468920,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_07871e2ad8\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"{\\\"\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BgV4auPDtNSYblgBiz19axqIrJYt9\",\"object\":\"chat.completion.chunk\",\"created\":1749468920,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_07871e2ad8\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"type\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BgV4auPDtNSYblgBiz19axqIrJYt9\",\"object\":\"chat.completion.chunk\",\"created\":1749468920,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_07871e2ad8\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"\\\":\\\"\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BgV4auPDtNSYblgBiz19axqIrJYt9\",\"object\":\"chat.completion.chunk\",\"created\":1749468920,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_07871e2ad8\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"update\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BgV4auPDtNSYblgBiz19axqIrJYt9\",\"object\":\"chat.completion.chunk\",\"created\":1749468920,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_07871e2ad8\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"\\\",\\\"\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BgV4auPDtNSYblgBiz19axqIrJYt9\",\"object\":\"chat.completion.chunk\",\"created\":1749468920,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_07871e2ad8\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"id\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BgV4auPDtNSYblgBiz19axqIrJYt9\",\"object\":\"chat.completion.chunk\",\"created\":1749468920,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_07871e2ad8\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"\\\":\\\"\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BgV4auPDtNSYblgBiz19axqIrJYt9\",\"object\":\"chat.completion.chunk\",\"created\":1749468920,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_07871e2ad8\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"ref\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BgV4auPDtNSYblgBiz19axqIrJYt9\",\"object\":\"chat.completion.chunk\",\"created\":1749468920,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_07871e2ad8\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"1\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BgV4auPDtNSYblgBiz19axqIrJYt9\",\"object\":\"chat.completion.chunk\",\"created\":1749468920,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_07871e2ad8\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"$\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BgV4auPDtNSYblgBiz19axqIrJYt9\",\"object\":\"chat.completion.chunk\",\"created\":1749468920,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_07871e2ad8\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"\\\",\\\"\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BgV4auPDtNSYblgBiz19axqIrJYt9\",\"object\":\"chat.completion.chunk\",\"created\":1749468920,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_07871e2ad8\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"block\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BgV4auPDtNSYblgBiz19axqIrJYt9\",\"object\":\"chat.completion.chunk\",\"created\":1749468920,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_07871e2ad8\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"\\\":{\\\"\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BgV4auPDtNSYblgBiz19axqIrJYt9\",\"object\":\"chat.completion.chunk\",\"created\":1749468920,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_07871e2ad8\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"type\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BgV4auPDtNSYblgBiz19axqIrJYt9\",\"object\":\"chat.completion.chunk\",\"created\":1749468920,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_07871e2ad8\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"\\\":\\\"\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BgV4auPDtNSYblgBiz19axqIrJYt9\",\"object\":\"chat.completion.chunk\",\"created\":1749468920,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_07871e2ad8\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"paragraph\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BgV4auPDtNSYblgBiz19axqIrJYt9\",\"object\":\"chat.completion.chunk\",\"created\":1749468920,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_07871e2ad8\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"\\\",\\\"\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BgV4auPDtNSYblgBiz19axqIrJYt9\",\"object\":\"chat.completion.chunk\",\"created\":1749468920,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_07871e2ad8\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"content\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BgV4auPDtNSYblgBiz19axqIrJYt9\",\"object\":\"chat.completion.chunk\",\"created\":1749468920,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_07871e2ad8\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"\\\":[\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BgV4auPDtNSYblgBiz19axqIrJYt9\",\"object\":\"chat.completion.chunk\",\"created\":1749468920,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_07871e2ad8\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"{\\\"\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BgV4auPDtNSYblgBiz19axqIrJYt9\",\"object\":\"chat.completion.chunk\",\"created\":1749468920,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_07871e2ad8\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"type\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BgV4auPDtNSYblgBiz19axqIrJYt9\",\"object\":\"chat.completion.chunk\",\"created\":1749468920,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_07871e2ad8\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"\\\":\\\"\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BgV4auPDtNSYblgBiz19axqIrJYt9\",\"object\":\"chat.completion.chunk\",\"created\":1749468920,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_07871e2ad8\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"text\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BgV4auPDtNSYblgBiz19axqIrJYt9\",\"object\":\"chat.completion.chunk\",\"created\":1749468920,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_07871e2ad8\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"\\\",\\\"\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BgV4auPDtNSYblgBiz19axqIrJYt9\",\"object\":\"chat.completion.chunk\",\"created\":1749468920,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_07871e2ad8\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"text\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BgV4auPDtNSYblgBiz19axqIrJYt9\",\"object\":\"chat.completion.chunk\",\"created\":1749468920,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_07871e2ad8\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"\\\":\\\"\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BgV4auPDtNSYblgBiz19axqIrJYt9\",\"object\":\"chat.completion.chunk\",\"created\":1749468920,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_07871e2ad8\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"Hallo\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BgV4auPDtNSYblgBiz19axqIrJYt9\",\"object\":\"chat.completion.chunk\",\"created\":1749468920,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_07871e2ad8\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\",\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BgV4auPDtNSYblgBiz19axqIrJYt9\",\"object\":\"chat.completion.chunk\",\"created\":1749468920,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_07871e2ad8\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\" Welt\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BgV4auPDtNSYblgBiz19axqIrJYt9\",\"object\":\"chat.completion.chunk\",\"created\":1749468920,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_07871e2ad8\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"!\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BgV4auPDtNSYblgBiz19axqIrJYt9\",\"object\":\"chat.completion.chunk\",\"created\":1749468920,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_07871e2ad8\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"\\\",\\\"\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BgV4auPDtNSYblgBiz19axqIrJYt9\",\"object\":\"chat.completion.chunk\",\"created\":1749468920,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_07871e2ad8\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"styles\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BgV4auPDtNSYblgBiz19axqIrJYt9\",\"object\":\"chat.completion.chunk\",\"created\":1749468920,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_07871e2ad8\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"\\\":\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BgV4auPDtNSYblgBiz19axqIrJYt9\",\"object\":\"chat.completion.chunk\",\"created\":1749468920,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_07871e2ad8\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"{\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BgV4auPDtNSYblgBiz19axqIrJYt9\",\"object\":\"chat.completion.chunk\",\"created\":1749468920,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_07871e2ad8\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"}}\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BgV4auPDtNSYblgBiz19axqIrJYt9\",\"object\":\"chat.completion.chunk\",\"created\":1749468920,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_07871e2ad8\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"]\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BgV4auPDtNSYblgBiz19axqIrJYt9\",\"object\":\"chat.completion.chunk\",\"created\":1749468920,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_07871e2ad8\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"}}\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BgV4auPDtNSYblgBiz19axqIrJYt9\",\"object\":\"chat.completion.chunk\",\"created\":1749468920,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_07871e2ad8\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"]}\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BgV4auPDtNSYblgBiz19axqIrJYt9\",\"object\":\"chat.completion.chunk\",\"created\":1749468920,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_07871e2ad8\",\"choices\":[{\"index\":0,\"delta\":{},\"logprobs\":null,\"finish_reason\":\"stop\"}]}\n\ndata: [DONE]\n\n", + "body": "data: {\"id\":\"chatcmpl-BhXmyeN2qTsn6cRgrvAq20QQrVMzd\",\"object\":\"chat.completion.chunk\",\"created\":1749717688,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_a288987b44\",\"choices\":[{\"index\":0,\"delta\":{\"role\":\"assistant\",\"content\":null,\"tool_calls\":[{\"index\":0,\"id\":\"call_ijb1qPa8cD2SWFCloU6PziOV\",\"type\":\"function\",\"function\":{\"name\":\"json\",\"arguments\":\"\"}}],\"refusal\":null},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BhXmyeN2qTsn6cRgrvAq20QQrVMzd\",\"object\":\"chat.completion.chunk\",\"created\":1749717688,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_a288987b44\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"{\\\"\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BhXmyeN2qTsn6cRgrvAq20QQrVMzd\",\"object\":\"chat.completion.chunk\",\"created\":1749717688,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_a288987b44\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"operations\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BhXmyeN2qTsn6cRgrvAq20QQrVMzd\",\"object\":\"chat.completion.chunk\",\"created\":1749717688,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_a288987b44\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"\\\":[\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BhXmyeN2qTsn6cRgrvAq20QQrVMzd\",\"object\":\"chat.completion.chunk\",\"created\":1749717688,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_a288987b44\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"{\\\"\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BhXmyeN2qTsn6cRgrvAq20QQrVMzd\",\"object\":\"chat.completion.chunk\",\"created\":1749717688,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_a288987b44\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"type\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BhXmyeN2qTsn6cRgrvAq20QQrVMzd\",\"object\":\"chat.completion.chunk\",\"created\":1749717688,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_a288987b44\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"\\\":\\\"\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BhXmyeN2qTsn6cRgrvAq20QQrVMzd\",\"object\":\"chat.completion.chunk\",\"created\":1749717688,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_a288987b44\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"update\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BhXmyeN2qTsn6cRgrvAq20QQrVMzd\",\"object\":\"chat.completion.chunk\",\"created\":1749717688,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_a288987b44\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"\\\",\\\"\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BhXmyeN2qTsn6cRgrvAq20QQrVMzd\",\"object\":\"chat.completion.chunk\",\"created\":1749717688,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_a288987b44\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"id\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BhXmyeN2qTsn6cRgrvAq20QQrVMzd\",\"object\":\"chat.completion.chunk\",\"created\":1749717688,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_a288987b44\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"\\\":\\\"\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BhXmyeN2qTsn6cRgrvAq20QQrVMzd\",\"object\":\"chat.completion.chunk\",\"created\":1749717688,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_a288987b44\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"ref\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BhXmyeN2qTsn6cRgrvAq20QQrVMzd\",\"object\":\"chat.completion.chunk\",\"created\":1749717688,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_a288987b44\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"1\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BhXmyeN2qTsn6cRgrvAq20QQrVMzd\",\"object\":\"chat.completion.chunk\",\"created\":1749717688,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_a288987b44\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"$\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BhXmyeN2qTsn6cRgrvAq20QQrVMzd\",\"object\":\"chat.completion.chunk\",\"created\":1749717688,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_a288987b44\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"\\\",\\\"\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BhXmyeN2qTsn6cRgrvAq20QQrVMzd\",\"object\":\"chat.completion.chunk\",\"created\":1749717688,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_a288987b44\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"block\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BhXmyeN2qTsn6cRgrvAq20QQrVMzd\",\"object\":\"chat.completion.chunk\",\"created\":1749717688,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_a288987b44\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"\\\":{\\\"\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BhXmyeN2qTsn6cRgrvAq20QQrVMzd\",\"object\":\"chat.completion.chunk\",\"created\":1749717688,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_a288987b44\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"type\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BhXmyeN2qTsn6cRgrvAq20QQrVMzd\",\"object\":\"chat.completion.chunk\",\"created\":1749717688,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_a288987b44\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"\\\":\\\"\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BhXmyeN2qTsn6cRgrvAq20QQrVMzd\",\"object\":\"chat.completion.chunk\",\"created\":1749717688,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_a288987b44\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"paragraph\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BhXmyeN2qTsn6cRgrvAq20QQrVMzd\",\"object\":\"chat.completion.chunk\",\"created\":1749717688,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_a288987b44\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"\\\",\\\"\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BhXmyeN2qTsn6cRgrvAq20QQrVMzd\",\"object\":\"chat.completion.chunk\",\"created\":1749717688,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_a288987b44\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"content\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BhXmyeN2qTsn6cRgrvAq20QQrVMzd\",\"object\":\"chat.completion.chunk\",\"created\":1749717688,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_a288987b44\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"\\\":[\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BhXmyeN2qTsn6cRgrvAq20QQrVMzd\",\"object\":\"chat.completion.chunk\",\"created\":1749717688,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_a288987b44\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"{\\\"\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BhXmyeN2qTsn6cRgrvAq20QQrVMzd\",\"object\":\"chat.completion.chunk\",\"created\":1749717688,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_a288987b44\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"type\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BhXmyeN2qTsn6cRgrvAq20QQrVMzd\",\"object\":\"chat.completion.chunk\",\"created\":1749717688,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_a288987b44\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"\\\":\\\"\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BhXmyeN2qTsn6cRgrvAq20QQrVMzd\",\"object\":\"chat.completion.chunk\",\"created\":1749717688,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_a288987b44\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"text\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BhXmyeN2qTsn6cRgrvAq20QQrVMzd\",\"object\":\"chat.completion.chunk\",\"created\":1749717688,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_a288987b44\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"\\\",\\\"\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BhXmyeN2qTsn6cRgrvAq20QQrVMzd\",\"object\":\"chat.completion.chunk\",\"created\":1749717688,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_a288987b44\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"text\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BhXmyeN2qTsn6cRgrvAq20QQrVMzd\",\"object\":\"chat.completion.chunk\",\"created\":1749717688,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_a288987b44\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"\\\":\\\"\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BhXmyeN2qTsn6cRgrvAq20QQrVMzd\",\"object\":\"chat.completion.chunk\",\"created\":1749717688,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_a288987b44\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"Hallo\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BhXmyeN2qTsn6cRgrvAq20QQrVMzd\",\"object\":\"chat.completion.chunk\",\"created\":1749717688,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_a288987b44\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\",\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BhXmyeN2qTsn6cRgrvAq20QQrVMzd\",\"object\":\"chat.completion.chunk\",\"created\":1749717688,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_a288987b44\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\" Welt\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BhXmyeN2qTsn6cRgrvAq20QQrVMzd\",\"object\":\"chat.completion.chunk\",\"created\":1749717688,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_a288987b44\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"!\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BhXmyeN2qTsn6cRgrvAq20QQrVMzd\",\"object\":\"chat.completion.chunk\",\"created\":1749717688,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_a288987b44\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"\\\",\\\"\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BhXmyeN2qTsn6cRgrvAq20QQrVMzd\",\"object\":\"chat.completion.chunk\",\"created\":1749717688,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_a288987b44\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"styles\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BhXmyeN2qTsn6cRgrvAq20QQrVMzd\",\"object\":\"chat.completion.chunk\",\"created\":1749717688,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_a288987b44\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"\\\":\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BhXmyeN2qTsn6cRgrvAq20QQrVMzd\",\"object\":\"chat.completion.chunk\",\"created\":1749717688,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_a288987b44\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"{\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BhXmyeN2qTsn6cRgrvAq20QQrVMzd\",\"object\":\"chat.completion.chunk\",\"created\":1749717688,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_a288987b44\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"}}\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BhXmyeN2qTsn6cRgrvAq20QQrVMzd\",\"object\":\"chat.completion.chunk\",\"created\":1749717688,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_a288987b44\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"]\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BhXmyeN2qTsn6cRgrvAq20QQrVMzd\",\"object\":\"chat.completion.chunk\",\"created\":1749717688,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_a288987b44\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"}}\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BhXmyeN2qTsn6cRgrvAq20QQrVMzd\",\"object\":\"chat.completion.chunk\",\"created\":1749717688,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_a288987b44\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"]}\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BhXmyeN2qTsn6cRgrvAq20QQrVMzd\",\"object\":\"chat.completion.chunk\",\"created\":1749717688,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_a288987b44\",\"choices\":[{\"index\":0,\"delta\":{},\"logprobs\":null,\"finish_reason\":\"stop\"}]}\n\ndata: [DONE]\n\n", "headers": [] } } \ No newline at end of file diff --git a/packages/xl-ai/src/api/formats/json/__snapshots__/json.test.ts/Update/__msw_snapshots__/openai.chat/gpt-4o-2024-08-06 (streaming)/styles + ic in source block, remove mark_1_9dab505f307954501700ec020f6bd7c3.json b/packages/xl-ai/src/api/formats/json/__snapshots__/json.test.ts/Update/__msw_snapshots__/openai.chat/gpt-4o-2024-08-06 (streaming)/styles + ic in source block, remove mark_1_9dab505f307954501700ec020f6bd7c3.json deleted file mode 100644 index d94c8105e9..0000000000 --- a/packages/xl-ai/src/api/formats/json/__snapshots__/json.test.ts/Update/__msw_snapshots__/openai.chat/gpt-4o-2024-08-06 (streaming)/styles + ic in source block, remove mark_1_9dab505f307954501700ec020f6bd7c3.json +++ /dev/null @@ -1,15 +0,0 @@ -{ - "request": { - "method": "POST", - "url": "https://localhost:3000/ai?provider=openai&url=https%3A%2F%2Fapi.openai.com%2Fv1%2Fchat%2Fcompletions", - "body": "{\"model\":\"gpt-4o-2024-08-06\",\"temperature\":0,\"messages\":[{\"role\":\"system\",\"content\":\"You're manipulating a text document using JSON blocks. \\n Make sure to follow the json schema provided. When referencing ids they MUST be EXACTLY the same (including the trailing $). \\n This is the document as an array of JSON blocks (the cursor is BETWEEN two blocks as indicated by cursor: true):\"},{\"role\":\"system\",\"content\":\"[{\\\"id\\\":\\\"ref1$\\\",\\\"block\\\":{\\\"id\\\":\\\"ref1\\\",\\\"type\\\":\\\"paragraph\\\",\\\"props\\\":{\\\"textColor\\\":\\\"default\\\",\\\"backgroundColor\\\":\\\"default\\\",\\\"textAlignment\\\":\\\"left\\\"},\\\"content\\\":[{\\\"type\\\":\\\"text\\\",\\\"text\\\":\\\"Hello, world!\\\",\\\"styles\\\":{}}]}},{\\\"cursor\\\":true},{\\\"id\\\":\\\"ref2$\\\",\\\"block\\\":{\\\"id\\\":\\\"ref2\\\",\\\"type\\\":\\\"paragraph\\\",\\\"props\\\":{\\\"textColor\\\":\\\"default\\\",\\\"backgroundColor\\\":\\\"default\\\",\\\"textAlignment\\\":\\\"left\\\"},\\\"content\\\":[{\\\"type\\\":\\\"text\\\",\\\"text\\\":\\\"Hello, \\\",\\\"styles\\\":{}},{\\\"type\\\":\\\"mention\\\",\\\"props\\\":{\\\"user\\\":\\\"John Doe\\\"}},{\\\"type\\\":\\\"text\\\",\\\"text\\\":\\\"! \\\",\\\"styles\\\":{}},{\\\"type\\\":\\\"text\\\",\\\"text\\\":\\\"How are you doing?\\\",\\\"styles\\\":{\\\"bold\\\":true}},{\\\"type\\\":\\\"text\\\",\\\"text\\\":\\\" \\\",\\\"styles\\\":{}},{\\\"type\\\":\\\"text\\\",\\\"text\\\":\\\"This text is blue!\\\",\\\"styles\\\":{\\\"textColor\\\":\\\"blue\\\"}}]}},{\\\"id\\\":\\\"ref3$\\\",\\\"block\\\":{\\\"id\\\":\\\"ref3\\\",\\\"type\\\":\\\"paragraph\\\",\\\"props\\\":{\\\"textColor\\\":\\\"default\\\",\\\"backgroundColor\\\":\\\"default\\\",\\\"textAlignment\\\":\\\"left\\\"},\\\"content\\\":[{\\\"type\\\":\\\"text\\\",\\\"text\\\":\\\"Hello, world! \\\",\\\"styles\\\":{}},{\\\"type\\\":\\\"text\\\",\\\"text\\\":\\\"Bold text. \\\",\\\"styles\\\":{\\\"bold\\\":true}},{\\\"type\\\":\\\"link\\\",\\\"href\\\":\\\"https://www.google.com\\\",\\\"content\\\":[{\\\"type\\\":\\\"text\\\",\\\"text\\\":\\\"Link.\\\",\\\"styles\\\":{}}]}]}}]\"},{\"role\":\"system\",\"content\":\"The user asks you to do the following:\"},{\"role\":\"user\",\"content\":\"remove the bold style from the second block\"},{\"role\":\"system\",\"content\":\"First, determine what part of the document the user is talking about. You SHOULD probably take cursor info into account if needed.\\n EXAMPLE: if user says \\\"below\\\" (without pointing to a specific part of the document) he / she probably indicates the block(s) after the cursor. \\n EXAMPLE: If you want to insert content AT the cursor position (UNLESS indicated otherwise by the user), then you need `referenceId` to point to the block before the cursor with position `after` (or block below and `before`).\\n \\n Prefer updating existing blocks over removing and adding (but this also depends on the user's question).\"}],\"tool_choice\":{\"type\":\"function\",\"function\":{\"name\":\"json\"}},\"tools\":[{\"type\":\"function\",\"function\":{\"name\":\"json\",\"description\":\"Respond with a JSON object.\",\"parameters\":{\"type\":\"object\",\"properties\":{\"operations\":{\"type\":\"array\",\"items\":{\"anyOf\":[{\"type\":\"object\",\"description\":\"Update a block, the new block will replace the existing block.\",\"properties\":{\"type\":{\"type\":\"string\",\"enum\":[\"update\"]},\"id\":{\"type\":\"string\",\"description\":\"id of block to update\"},\"block\":{\"$ref\":\"#/$defs/block\"}},\"required\":[\"type\",\"id\",\"block\"],\"additionalProperties\":false},{\"type\":\"object\",\"description\":\"Insert new blocks\",\"properties\":{\"type\":{\"type\":\"string\",\"enum\":[\"add\"]},\"referenceId\":{\"type\":\"string\",\"description\":\"MUST be an id of a block in the document\"},\"position\":{\"type\":\"string\",\"enum\":[\"before\",\"after\"],\"description\":\"`after` to add blocks AFTER (below) the block with `referenceId`, `before` to add the block BEFORE (above)\"},\"blocks\":{\"items\":{\"$ref\":\"#/$defs/block\"},\"type\":\"array\"}},\"required\":[\"type\",\"referenceId\",\"position\",\"blocks\"],\"additionalProperties\":false},{\"type\":\"object\",\"description\":\"Delete a block\",\"properties\":{\"type\":{\"type\":\"string\",\"enum\":[\"delete\"]},\"id\":{\"type\":\"string\",\"description\":\"id of block to delete\"}},\"required\":[\"type\",\"id\"],\"additionalProperties\":false}]}}},\"additionalProperties\":false,\"required\":[\"operations\"],\"$defs\":{\"styles\":{\"type\":\"object\",\"properties\":{\"bold\":{\"type\":\"boolean\"},\"italic\":{\"type\":\"boolean\"},\"underline\":{\"type\":\"boolean\"},\"strike\":{\"type\":\"boolean\"},\"code\":{\"type\":\"boolean\"},\"textColor\":{\"type\":\"string\"},\"backgroundColor\":{\"type\":\"string\"}},\"additionalProperties\":false},\"styledtext\":{\"type\":\"object\",\"properties\":{\"type\":{\"type\":\"string\",\"enum\":[\"text\"]},\"text\":{\"type\":\"string\"},\"styles\":{\"$ref\":\"#/$defs/styles\"}},\"additionalProperties\":false,\"required\":[\"type\",\"text\"]},\"inlinecontent\":{\"type\":\"array\",\"items\":{\"anyOf\":[{\"type\":\"object\",\"properties\":{\"type\":{\"type\":\"string\",\"enum\":[\"mention\"]},\"props\":{\"type\":\"object\",\"properties\":{\"user\":{\"type\":\"string\"}},\"additionalProperties\":false}},\"additionalProperties\":false,\"required\":[\"type\"]},{\"$ref\":\"#/$defs/styledtext\"},{\"type\":\"object\",\"properties\":{\"type\":{\"type\":\"string\",\"enum\":[\"link\"]},\"content\":{\"type\":\"array\",\"items\":{\"$ref\":\"#/$defs/styledtext\"}},\"href\":{\"type\":\"string\"}},\"additionalProperties\":false,\"required\":[\"type\",\"href\",\"content\"]}]}},\"block\":{\"anyOf\":[{\"type\":\"object\",\"properties\":{\"type\":{\"type\":\"string\",\"enum\":[\"paragraph\",\"quote\",\"bulletListItem\",\"numberedListItem\"]},\"content\":{\"$ref\":\"#/$defs/inlinecontent\"},\"props\":{\"type\":\"object\",\"properties\":{},\"additionalProperties\":false}},\"additionalProperties\":false,\"required\":[\"type\"]},{\"type\":\"object\",\"properties\":{\"type\":{\"type\":\"string\",\"enum\":[\"heading\"]},\"content\":{\"$ref\":\"#/$defs/inlinecontent\"},\"props\":{\"type\":\"object\",\"properties\":{\"level\":{\"type\":\"number\",\"enum\":[1,2,3]}},\"additionalProperties\":false}},\"additionalProperties\":false,\"required\":[\"type\"]},{\"type\":\"object\",\"properties\":{\"type\":{\"type\":\"string\",\"enum\":[\"codeBlock\"]},\"content\":{\"$ref\":\"#/$defs/inlinecontent\"},\"props\":{\"type\":\"object\",\"properties\":{\"language\":{\"type\":\"string\"}},\"additionalProperties\":false}},\"additionalProperties\":false,\"required\":[\"type\"]},{\"type\":\"object\",\"properties\":{\"type\":{\"type\":\"string\",\"enum\":[\"checkListItem\"]},\"content\":{\"$ref\":\"#/$defs/inlinecontent\"},\"props\":{\"type\":\"object\",\"properties\":{\"checked\":{\"type\":\"boolean\"}},\"additionalProperties\":false}},\"additionalProperties\":false,\"required\":[\"type\"]},{\"type\":\"object\",\"properties\":{\"type\":{\"type\":\"string\",\"enum\":[\"table\"]},\"content\":{\"type\":\"object\",\"properties\":{}},\"props\":{\"type\":\"object\",\"properties\":{},\"additionalProperties\":false}},\"additionalProperties\":false,\"required\":[\"type\"]}]}}}}}],\"stream\":true}", - "headers": [], - "cookies": [] - }, - "response": { - "status": 200, - "statusText": "", - "body": "data: {\"id\":\"chatcmpl-BgV4lXQK3OzeVILwM2Q0mvpEYRThl\",\"object\":\"chat.completion.chunk\",\"created\":1749468931,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_07871e2ad8\",\"choices\":[{\"index\":0,\"delta\":{\"role\":\"assistant\",\"content\":null,\"tool_calls\":[{\"index\":0,\"id\":\"call_DWfDhftUVoDnUjjAN4xbFh6M\",\"type\":\"function\",\"function\":{\"name\":\"json\",\"arguments\":\"\"}}],\"refusal\":null},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BgV4lXQK3OzeVILwM2Q0mvpEYRThl\",\"object\":\"chat.completion.chunk\",\"created\":1749468931,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_07871e2ad8\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"{\\\"\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BgV4lXQK3OzeVILwM2Q0mvpEYRThl\",\"object\":\"chat.completion.chunk\",\"created\":1749468931,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_07871e2ad8\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"operations\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BgV4lXQK3OzeVILwM2Q0mvpEYRThl\",\"object\":\"chat.completion.chunk\",\"created\":1749468931,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_07871e2ad8\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"\\\":[\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BgV4lXQK3OzeVILwM2Q0mvpEYRThl\",\"object\":\"chat.completion.chunk\",\"created\":1749468931,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_07871e2ad8\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"{\\\"\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BgV4lXQK3OzeVILwM2Q0mvpEYRThl\",\"object\":\"chat.completion.chunk\",\"created\":1749468931,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_07871e2ad8\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"type\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BgV4lXQK3OzeVILwM2Q0mvpEYRThl\",\"object\":\"chat.completion.chunk\",\"created\":1749468931,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_07871e2ad8\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"\\\":\\\"\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BgV4lXQK3OzeVILwM2Q0mvpEYRThl\",\"object\":\"chat.completion.chunk\",\"created\":1749468931,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_07871e2ad8\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"update\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BgV4lXQK3OzeVILwM2Q0mvpEYRThl\",\"object\":\"chat.completion.chunk\",\"created\":1749468931,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_07871e2ad8\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"\\\",\\\"\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BgV4lXQK3OzeVILwM2Q0mvpEYRThl\",\"object\":\"chat.completion.chunk\",\"created\":1749468931,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_07871e2ad8\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"id\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BgV4lXQK3OzeVILwM2Q0mvpEYRThl\",\"object\":\"chat.completion.chunk\",\"created\":1749468931,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_07871e2ad8\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"\\\":\\\"\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BgV4lXQK3OzeVILwM2Q0mvpEYRThl\",\"object\":\"chat.completion.chunk\",\"created\":1749468931,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_07871e2ad8\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"ref\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BgV4lXQK3OzeVILwM2Q0mvpEYRThl\",\"object\":\"chat.completion.chunk\",\"created\":1749468931,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_07871e2ad8\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"2\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BgV4lXQK3OzeVILwM2Q0mvpEYRThl\",\"object\":\"chat.completion.chunk\",\"created\":1749468931,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_07871e2ad8\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"$\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BgV4lXQK3OzeVILwM2Q0mvpEYRThl\",\"object\":\"chat.completion.chunk\",\"created\":1749468931,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_07871e2ad8\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"\\\",\\\"\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BgV4lXQK3OzeVILwM2Q0mvpEYRThl\",\"object\":\"chat.completion.chunk\",\"created\":1749468931,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_07871e2ad8\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"block\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BgV4lXQK3OzeVILwM2Q0mvpEYRThl\",\"object\":\"chat.completion.chunk\",\"created\":1749468931,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_07871e2ad8\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"\\\":{\\\"\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BgV4lXQK3OzeVILwM2Q0mvpEYRThl\",\"object\":\"chat.completion.chunk\",\"created\":1749468931,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_07871e2ad8\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"type\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BgV4lXQK3OzeVILwM2Q0mvpEYRThl\",\"object\":\"chat.completion.chunk\",\"created\":1749468931,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_07871e2ad8\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"\\\":\\\"\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BgV4lXQK3OzeVILwM2Q0mvpEYRThl\",\"object\":\"chat.completion.chunk\",\"created\":1749468931,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_07871e2ad8\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"paragraph\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BgV4lXQK3OzeVILwM2Q0mvpEYRThl\",\"object\":\"chat.completion.chunk\",\"created\":1749468931,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_07871e2ad8\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"\\\",\\\"\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BgV4lXQK3OzeVILwM2Q0mvpEYRThl\",\"object\":\"chat.completion.chunk\",\"created\":1749468931,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_07871e2ad8\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"props\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BgV4lXQK3OzeVILwM2Q0mvpEYRThl\",\"object\":\"chat.completion.chunk\",\"created\":1749468931,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_07871e2ad8\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"\\\":{\\\"\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BgV4lXQK3OzeVILwM2Q0mvpEYRThl\",\"object\":\"chat.completion.chunk\",\"created\":1749468931,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_07871e2ad8\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"text\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BgV4lXQK3OzeVILwM2Q0mvpEYRThl\",\"object\":\"chat.completion.chunk\",\"created\":1749468931,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_07871e2ad8\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"Color\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BgV4lXQK3OzeVILwM2Q0mvpEYRThl\",\"object\":\"chat.completion.chunk\",\"created\":1749468931,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_07871e2ad8\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"\\\":\\\"\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BgV4lXQK3OzeVILwM2Q0mvpEYRThl\",\"object\":\"chat.completion.chunk\",\"created\":1749468931,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_07871e2ad8\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"default\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BgV4lXQK3OzeVILwM2Q0mvpEYRThl\",\"object\":\"chat.completion.chunk\",\"created\":1749468931,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_07871e2ad8\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"\\\",\\\"\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BgV4lXQK3OzeVILwM2Q0mvpEYRThl\",\"object\":\"chat.completion.chunk\",\"created\":1749468931,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_07871e2ad8\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"background\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BgV4lXQK3OzeVILwM2Q0mvpEYRThl\",\"object\":\"chat.completion.chunk\",\"created\":1749468931,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_07871e2ad8\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"Color\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BgV4lXQK3OzeVILwM2Q0mvpEYRThl\",\"object\":\"chat.completion.chunk\",\"created\":1749468931,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_07871e2ad8\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"\\\":\\\"\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BgV4lXQK3OzeVILwM2Q0mvpEYRThl\",\"object\":\"chat.completion.chunk\",\"created\":1749468931,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_07871e2ad8\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"default\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BgV4lXQK3OzeVILwM2Q0mvpEYRThl\",\"object\":\"chat.completion.chunk\",\"created\":1749468931,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_07871e2ad8\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"\\\",\\\"\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BgV4lXQK3OzeVILwM2Q0mvpEYRThl\",\"object\":\"chat.completion.chunk\",\"created\":1749468931,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_07871e2ad8\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"text\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BgV4lXQK3OzeVILwM2Q0mvpEYRThl\",\"object\":\"chat.completion.chunk\",\"created\":1749468931,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_07871e2ad8\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"Alignment\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BgV4lXQK3OzeVILwM2Q0mvpEYRThl\",\"object\":\"chat.completion.chunk\",\"created\":1749468931,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_07871e2ad8\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"\\\":\\\"\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BgV4lXQK3OzeVILwM2Q0mvpEYRThl\",\"object\":\"chat.completion.chunk\",\"created\":1749468931,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_07871e2ad8\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"left\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BgV4lXQK3OzeVILwM2Q0mvpEYRThl\",\"object\":\"chat.completion.chunk\",\"created\":1749468931,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_07871e2ad8\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"\\\"}\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BgV4lXQK3OzeVILwM2Q0mvpEYRThl\",\"object\":\"chat.completion.chunk\",\"created\":1749468931,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_07871e2ad8\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\",\\\"\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BgV4lXQK3OzeVILwM2Q0mvpEYRThl\",\"object\":\"chat.completion.chunk\",\"created\":1749468931,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_07871e2ad8\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"content\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BgV4lXQK3OzeVILwM2Q0mvpEYRThl\",\"object\":\"chat.completion.chunk\",\"created\":1749468931,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_07871e2ad8\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"\\\":[\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BgV4lXQK3OzeVILwM2Q0mvpEYRThl\",\"object\":\"chat.completion.chunk\",\"created\":1749468931,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_07871e2ad8\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"{\\\"\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BgV4lXQK3OzeVILwM2Q0mvpEYRThl\",\"object\":\"chat.completion.chunk\",\"created\":1749468931,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_07871e2ad8\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"type\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BgV4lXQK3OzeVILwM2Q0mvpEYRThl\",\"object\":\"chat.completion.chunk\",\"created\":1749468931,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_07871e2ad8\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"\\\":\\\"\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BgV4lXQK3OzeVILwM2Q0mvpEYRThl\",\"object\":\"chat.completion.chunk\",\"created\":1749468931,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_07871e2ad8\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"text\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BgV4lXQK3OzeVILwM2Q0mvpEYRThl\",\"object\":\"chat.completion.chunk\",\"created\":1749468931,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_07871e2ad8\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"\\\",\\\"\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BgV4lXQK3OzeVILwM2Q0mvpEYRThl\",\"object\":\"chat.completion.chunk\",\"created\":1749468931,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_07871e2ad8\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"text\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BgV4lXQK3OzeVILwM2Q0mvpEYRThl\",\"object\":\"chat.completion.chunk\",\"created\":1749468931,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_07871e2ad8\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"\\\":\\\"\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BgV4lXQK3OzeVILwM2Q0mvpEYRThl\",\"object\":\"chat.completion.chunk\",\"created\":1749468931,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_07871e2ad8\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"Hello\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BgV4lXQK3OzeVILwM2Q0mvpEYRThl\",\"object\":\"chat.completion.chunk\",\"created\":1749468931,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_07871e2ad8\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\",\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BgV4lXQK3OzeVILwM2Q0mvpEYRThl\",\"object\":\"chat.completion.chunk\",\"created\":1749468931,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_07871e2ad8\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\" \\\",\\\"\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BgV4lXQK3OzeVILwM2Q0mvpEYRThl\",\"object\":\"chat.completion.chunk\",\"created\":1749468931,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_07871e2ad8\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"styles\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BgV4lXQK3OzeVILwM2Q0mvpEYRThl\",\"object\":\"chat.completion.chunk\",\"created\":1749468931,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_07871e2ad8\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"\\\":\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BgV4lXQK3OzeVILwM2Q0mvpEYRThl\",\"object\":\"chat.completion.chunk\",\"created\":1749468931,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_07871e2ad8\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"{}\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BgV4lXQK3OzeVILwM2Q0mvpEYRThl\",\"object\":\"chat.completion.chunk\",\"created\":1749468931,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_07871e2ad8\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"},{\\\"\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BgV4lXQK3OzeVILwM2Q0mvpEYRThl\",\"object\":\"chat.completion.chunk\",\"created\":1749468931,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_07871e2ad8\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"type\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BgV4lXQK3OzeVILwM2Q0mvpEYRThl\",\"object\":\"chat.completion.chunk\",\"created\":1749468931,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_07871e2ad8\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"\\\":\\\"\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BgV4lXQK3OzeVILwM2Q0mvpEYRThl\",\"object\":\"chat.completion.chunk\",\"created\":1749468931,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_07871e2ad8\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"mention\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BgV4lXQK3OzeVILwM2Q0mvpEYRThl\",\"object\":\"chat.completion.chunk\",\"created\":1749468931,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_07871e2ad8\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"\\\",\\\"\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BgV4lXQK3OzeVILwM2Q0mvpEYRThl\",\"object\":\"chat.completion.chunk\",\"created\":1749468931,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_07871e2ad8\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"props\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BgV4lXQK3OzeVILwM2Q0mvpEYRThl\",\"object\":\"chat.completion.chunk\",\"created\":1749468931,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_07871e2ad8\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"\\\":{\\\"\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BgV4lXQK3OzeVILwM2Q0mvpEYRThl\",\"object\":\"chat.completion.chunk\",\"created\":1749468931,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_07871e2ad8\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"user\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BgV4lXQK3OzeVILwM2Q0mvpEYRThl\",\"object\":\"chat.completion.chunk\",\"created\":1749468931,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_07871e2ad8\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"\\\":\\\"\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BgV4lXQK3OzeVILwM2Q0mvpEYRThl\",\"object\":\"chat.completion.chunk\",\"created\":1749468931,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_07871e2ad8\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"John\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BgV4lXQK3OzeVILwM2Q0mvpEYRThl\",\"object\":\"chat.completion.chunk\",\"created\":1749468931,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_07871e2ad8\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\" Doe\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BgV4lXQK3OzeVILwM2Q0mvpEYRThl\",\"object\":\"chat.completion.chunk\",\"created\":1749468931,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_07871e2ad8\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"\\\"}\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BgV4lXQK3OzeVILwM2Q0mvpEYRThl\",\"object\":\"chat.completion.chunk\",\"created\":1749468931,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_07871e2ad8\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"},{\\\"\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BgV4lXQK3OzeVILwM2Q0mvpEYRThl\",\"object\":\"chat.completion.chunk\",\"created\":1749468931,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_07871e2ad8\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"type\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BgV4lXQK3OzeVILwM2Q0mvpEYRThl\",\"object\":\"chat.completion.chunk\",\"created\":1749468931,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_07871e2ad8\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"\\\":\\\"\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BgV4lXQK3OzeVILwM2Q0mvpEYRThl\",\"object\":\"chat.completion.chunk\",\"created\":1749468931,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_07871e2ad8\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"text\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BgV4lXQK3OzeVILwM2Q0mvpEYRThl\",\"object\":\"chat.completion.chunk\",\"created\":1749468931,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_07871e2ad8\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"\\\",\\\"\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BgV4lXQK3OzeVILwM2Q0mvpEYRThl\",\"object\":\"chat.completion.chunk\",\"created\":1749468931,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_07871e2ad8\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"text\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BgV4lXQK3OzeVILwM2Q0mvpEYRThl\",\"object\":\"chat.completion.chunk\",\"created\":1749468931,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_07871e2ad8\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"\\\":\\\"\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BgV4lXQK3OzeVILwM2Q0mvpEYRThl\",\"object\":\"chat.completion.chunk\",\"created\":1749468931,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_07871e2ad8\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"!\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BgV4lXQK3OzeVILwM2Q0mvpEYRThl\",\"object\":\"chat.completion.chunk\",\"created\":1749468931,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_07871e2ad8\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\" \\\",\\\"\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BgV4lXQK3OzeVILwM2Q0mvpEYRThl\",\"object\":\"chat.completion.chunk\",\"created\":1749468931,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_07871e2ad8\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"styles\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BgV4lXQK3OzeVILwM2Q0mvpEYRThl\",\"object\":\"chat.completion.chunk\",\"created\":1749468931,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_07871e2ad8\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"\\\":\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BgV4lXQK3OzeVILwM2Q0mvpEYRThl\",\"object\":\"chat.completion.chunk\",\"created\":1749468931,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_07871e2ad8\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"{}\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BgV4lXQK3OzeVILwM2Q0mvpEYRThl\",\"object\":\"chat.completion.chunk\",\"created\":1749468931,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_07871e2ad8\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"},{\\\"\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BgV4lXQK3OzeVILwM2Q0mvpEYRThl\",\"object\":\"chat.completion.chunk\",\"created\":1749468931,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_07871e2ad8\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"type\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BgV4lXQK3OzeVILwM2Q0mvpEYRThl\",\"object\":\"chat.completion.chunk\",\"created\":1749468931,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_07871e2ad8\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"\\\":\\\"\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BgV4lXQK3OzeVILwM2Q0mvpEYRThl\",\"object\":\"chat.completion.chunk\",\"created\":1749468931,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_07871e2ad8\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"text\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BgV4lXQK3OzeVILwM2Q0mvpEYRThl\",\"object\":\"chat.completion.chunk\",\"created\":1749468931,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_07871e2ad8\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"\\\",\\\"\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BgV4lXQK3OzeVILwM2Q0mvpEYRThl\",\"object\":\"chat.completion.chunk\",\"created\":1749468931,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_07871e2ad8\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"text\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BgV4lXQK3OzeVILwM2Q0mvpEYRThl\",\"object\":\"chat.completion.chunk\",\"created\":1749468931,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_07871e2ad8\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"\\\":\\\"\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BgV4lXQK3OzeVILwM2Q0mvpEYRThl\",\"object\":\"chat.completion.chunk\",\"created\":1749468931,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_07871e2ad8\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"How\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BgV4lXQK3OzeVILwM2Q0mvpEYRThl\",\"object\":\"chat.completion.chunk\",\"created\":1749468931,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_07871e2ad8\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\" are\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BgV4lXQK3OzeVILwM2Q0mvpEYRThl\",\"object\":\"chat.completion.chunk\",\"created\":1749468931,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_07871e2ad8\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\" you\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BgV4lXQK3OzeVILwM2Q0mvpEYRThl\",\"object\":\"chat.completion.chunk\",\"created\":1749468931,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_07871e2ad8\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\" doing\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BgV4lXQK3OzeVILwM2Q0mvpEYRThl\",\"object\":\"chat.completion.chunk\",\"created\":1749468931,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_07871e2ad8\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"?\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BgV4lXQK3OzeVILwM2Q0mvpEYRThl\",\"object\":\"chat.completion.chunk\",\"created\":1749468931,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_07871e2ad8\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"\\\",\\\"\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BgV4lXQK3OzeVILwM2Q0mvpEYRThl\",\"object\":\"chat.completion.chunk\",\"created\":1749468931,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_07871e2ad8\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"styles\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BgV4lXQK3OzeVILwM2Q0mvpEYRThl\",\"object\":\"chat.completion.chunk\",\"created\":1749468931,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_07871e2ad8\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"\\\":\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BgV4lXQK3OzeVILwM2Q0mvpEYRThl\",\"object\":\"chat.completion.chunk\",\"created\":1749468931,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_07871e2ad8\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"{}\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BgV4lXQK3OzeVILwM2Q0mvpEYRThl\",\"object\":\"chat.completion.chunk\",\"created\":1749468931,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_07871e2ad8\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"},{\\\"\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BgV4lXQK3OzeVILwM2Q0mvpEYRThl\",\"object\":\"chat.completion.chunk\",\"created\":1749468931,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_07871e2ad8\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"type\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BgV4lXQK3OzeVILwM2Q0mvpEYRThl\",\"object\":\"chat.completion.chunk\",\"created\":1749468931,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_07871e2ad8\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"\\\":\\\"\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BgV4lXQK3OzeVILwM2Q0mvpEYRThl\",\"object\":\"chat.completion.chunk\",\"created\":1749468931,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_07871e2ad8\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"text\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BgV4lXQK3OzeVILwM2Q0mvpEYRThl\",\"object\":\"chat.completion.chunk\",\"created\":1749468931,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_07871e2ad8\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"\\\",\\\"\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BgV4lXQK3OzeVILwM2Q0mvpEYRThl\",\"object\":\"chat.completion.chunk\",\"created\":1749468931,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_07871e2ad8\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"text\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BgV4lXQK3OzeVILwM2Q0mvpEYRThl\",\"object\":\"chat.completion.chunk\",\"created\":1749468931,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_07871e2ad8\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"\\\":\\\"\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BgV4lXQK3OzeVILwM2Q0mvpEYRThl\",\"object\":\"chat.completion.chunk\",\"created\":1749468931,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_07871e2ad8\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\" \\\",\\\"\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BgV4lXQK3OzeVILwM2Q0mvpEYRThl\",\"object\":\"chat.completion.chunk\",\"created\":1749468931,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_07871e2ad8\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"styles\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BgV4lXQK3OzeVILwM2Q0mvpEYRThl\",\"object\":\"chat.completion.chunk\",\"created\":1749468931,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_07871e2ad8\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"\\\":\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BgV4lXQK3OzeVILwM2Q0mvpEYRThl\",\"object\":\"chat.completion.chunk\",\"created\":1749468931,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_07871e2ad8\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"{}\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BgV4lXQK3OzeVILwM2Q0mvpEYRThl\",\"object\":\"chat.completion.chunk\",\"created\":1749468931,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_07871e2ad8\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"},{\\\"\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BgV4lXQK3OzeVILwM2Q0mvpEYRThl\",\"object\":\"chat.completion.chunk\",\"created\":1749468931,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_07871e2ad8\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"type\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BgV4lXQK3OzeVILwM2Q0mvpEYRThl\",\"object\":\"chat.completion.chunk\",\"created\":1749468931,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_07871e2ad8\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"\\\":\\\"\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BgV4lXQK3OzeVILwM2Q0mvpEYRThl\",\"object\":\"chat.completion.chunk\",\"created\":1749468931,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_07871e2ad8\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"text\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BgV4lXQK3OzeVILwM2Q0mvpEYRThl\",\"object\":\"chat.completion.chunk\",\"created\":1749468931,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_07871e2ad8\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"\\\",\\\"\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BgV4lXQK3OzeVILwM2Q0mvpEYRThl\",\"object\":\"chat.completion.chunk\",\"created\":1749468931,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_07871e2ad8\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"text\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BgV4lXQK3OzeVILwM2Q0mvpEYRThl\",\"object\":\"chat.completion.chunk\",\"created\":1749468931,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_07871e2ad8\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"\\\":\\\"\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BgV4lXQK3OzeVILwM2Q0mvpEYRThl\",\"object\":\"chat.completion.chunk\",\"created\":1749468931,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_07871e2ad8\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"This\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BgV4lXQK3OzeVILwM2Q0mvpEYRThl\",\"object\":\"chat.completion.chunk\",\"created\":1749468931,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_07871e2ad8\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\" text\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BgV4lXQK3OzeVILwM2Q0mvpEYRThl\",\"object\":\"chat.completion.chunk\",\"created\":1749468931,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_07871e2ad8\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\" is\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BgV4lXQK3OzeVILwM2Q0mvpEYRThl\",\"object\":\"chat.completion.chunk\",\"created\":1749468931,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_07871e2ad8\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\" blue\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BgV4lXQK3OzeVILwM2Q0mvpEYRThl\",\"object\":\"chat.completion.chunk\",\"created\":1749468931,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_07871e2ad8\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"!\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BgV4lXQK3OzeVILwM2Q0mvpEYRThl\",\"object\":\"chat.completion.chunk\",\"created\":1749468931,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_07871e2ad8\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"\\\",\\\"\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BgV4lXQK3OzeVILwM2Q0mvpEYRThl\",\"object\":\"chat.completion.chunk\",\"created\":1749468931,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_07871e2ad8\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"styles\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BgV4lXQK3OzeVILwM2Q0mvpEYRThl\",\"object\":\"chat.completion.chunk\",\"created\":1749468931,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_07871e2ad8\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"\\\":{\\\"\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BgV4lXQK3OzeVILwM2Q0mvpEYRThl\",\"object\":\"chat.completion.chunk\",\"created\":1749468931,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_07871e2ad8\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"text\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BgV4lXQK3OzeVILwM2Q0mvpEYRThl\",\"object\":\"chat.completion.chunk\",\"created\":1749468931,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_07871e2ad8\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"Color\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BgV4lXQK3OzeVILwM2Q0mvpEYRThl\",\"object\":\"chat.completion.chunk\",\"created\":1749468931,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_07871e2ad8\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"\\\":\\\"\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BgV4lXQK3OzeVILwM2Q0mvpEYRThl\",\"object\":\"chat.completion.chunk\",\"created\":1749468931,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_07871e2ad8\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"blue\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BgV4lXQK3OzeVILwM2Q0mvpEYRThl\",\"object\":\"chat.completion.chunk\",\"created\":1749468931,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_07871e2ad8\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"\\\"}}\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BgV4lXQK3OzeVILwM2Q0mvpEYRThl\",\"object\":\"chat.completion.chunk\",\"created\":1749468931,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_07871e2ad8\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"]\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BgV4lXQK3OzeVILwM2Q0mvpEYRThl\",\"object\":\"chat.completion.chunk\",\"created\":1749468931,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_07871e2ad8\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"}}\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BgV4lXQK3OzeVILwM2Q0mvpEYRThl\",\"object\":\"chat.completion.chunk\",\"created\":1749468931,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_07871e2ad8\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"]}\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BgV4lXQK3OzeVILwM2Q0mvpEYRThl\",\"object\":\"chat.completion.chunk\",\"created\":1749468931,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_07871e2ad8\",\"choices\":[{\"index\":0,\"delta\":{},\"logprobs\":null,\"finish_reason\":\"stop\"}]}\n\ndata: [DONE]\n\n", - "headers": [] - } -} \ No newline at end of file diff --git a/packages/xl-ai/src/api/formats/json/__snapshots__/json.test.ts/Update/__msw_snapshots__/openai.chat/gpt-4o-2024-08-06 (streaming)/styles + ic in source block, remove mark_1_f0ec6a3da54723cb333b7c7ca11c6496.json b/packages/xl-ai/src/api/formats/json/__snapshots__/json.test.ts/Update/__msw_snapshots__/openai.chat/gpt-4o-2024-08-06 (streaming)/styles + ic in source block, remove mark_1_f0ec6a3da54723cb333b7c7ca11c6496.json new file mode 100644 index 0000000000..3a0cd9eee1 --- /dev/null +++ b/packages/xl-ai/src/api/formats/json/__snapshots__/json.test.ts/Update/__msw_snapshots__/openai.chat/gpt-4o-2024-08-06 (streaming)/styles + ic in source block, remove mark_1_f0ec6a3da54723cb333b7c7ca11c6496.json @@ -0,0 +1,15 @@ +{ + "request": { + "method": "POST", + "url": "https://localhost:3000/ai?provider=openai&url=https%3A%2F%2Fapi.openai.com%2Fv1%2Fchat%2Fcompletions", + "body": "{\"model\":\"gpt-4o-2024-08-06\",\"temperature\":0,\"messages\":[{\"role\":\"system\",\"content\":\"You're manipulating a text document using JSON blocks. \\n Make sure to follow the json schema provided. When referencing ids they MUST be EXACTLY the same (including the trailing $). \\n This is the document as an array of JSON blocks (the cursor is BETWEEN two blocks as indicated by cursor: true):\"},{\"role\":\"system\",\"content\":\"[{\\\"id\\\":\\\"ref1$\\\",\\\"block\\\":{\\\"id\\\":\\\"ref1\\\",\\\"type\\\":\\\"paragraph\\\",\\\"props\\\":{\\\"textColor\\\":\\\"default\\\",\\\"backgroundColor\\\":\\\"default\\\",\\\"textAlignment\\\":\\\"left\\\"},\\\"content\\\":[{\\\"type\\\":\\\"text\\\",\\\"text\\\":\\\"Hello, world!\\\",\\\"styles\\\":{}}]}},{\\\"cursor\\\":true},{\\\"id\\\":\\\"ref2$\\\",\\\"block\\\":{\\\"id\\\":\\\"ref2\\\",\\\"type\\\":\\\"paragraph\\\",\\\"props\\\":{\\\"textColor\\\":\\\"default\\\",\\\"backgroundColor\\\":\\\"default\\\",\\\"textAlignment\\\":\\\"left\\\"},\\\"content\\\":[{\\\"type\\\":\\\"text\\\",\\\"text\\\":\\\"Hello, \\\",\\\"styles\\\":{}},{\\\"type\\\":\\\"mention\\\",\\\"props\\\":{\\\"user\\\":\\\"John Doe\\\"}},{\\\"type\\\":\\\"text\\\",\\\"text\\\":\\\"! \\\",\\\"styles\\\":{}},{\\\"type\\\":\\\"text\\\",\\\"text\\\":\\\"How are you doing?\\\",\\\"styles\\\":{\\\"bold\\\":true}},{\\\"type\\\":\\\"text\\\",\\\"text\\\":\\\" \\\",\\\"styles\\\":{}},{\\\"type\\\":\\\"text\\\",\\\"text\\\":\\\"This text is blue!\\\",\\\"styles\\\":{\\\"textColor\\\":\\\"blue\\\"}}]}},{\\\"id\\\":\\\"ref3$\\\",\\\"block\\\":{\\\"id\\\":\\\"ref3\\\",\\\"type\\\":\\\"paragraph\\\",\\\"props\\\":{\\\"textColor\\\":\\\"default\\\",\\\"backgroundColor\\\":\\\"default\\\",\\\"textAlignment\\\":\\\"left\\\"},\\\"content\\\":[{\\\"type\\\":\\\"text\\\",\\\"text\\\":\\\"Hello, world! \\\",\\\"styles\\\":{}},{\\\"type\\\":\\\"text\\\",\\\"text\\\":\\\"Bold text. \\\",\\\"styles\\\":{\\\"bold\\\":true}},{\\\"type\\\":\\\"link\\\",\\\"href\\\":\\\"https://www.google.com\\\",\\\"content\\\":[{\\\"type\\\":\\\"text\\\",\\\"text\\\":\\\"Link.\\\",\\\"styles\\\":{}}]}]}}]\"},{\"role\":\"system\",\"content\":\"The user asks you to do the following:\"},{\"role\":\"user\",\"content\":\"remove the bold style from the second block\"},{\"role\":\"system\",\"content\":\"First, determine what part of the document the user is talking about. You SHOULD probably take cursor info into account if needed.\\n EXAMPLE: if user says \\\"below\\\" (without pointing to a specific part of the document) he / she probably indicates the block(s) after the cursor. \\n EXAMPLE: If you want to insert content AT the cursor position (UNLESS indicated otherwise by the user), then you need `referenceId` to point to the block before the cursor with position `after` (or block below and `before`).\\n \\n Prefer updating existing blocks over removing and adding (but this also depends on the user's question).\"}],\"tool_choice\":{\"type\":\"function\",\"function\":{\"name\":\"json\"}},\"tools\":[{\"type\":\"function\",\"function\":{\"name\":\"json\",\"description\":\"Respond with a JSON object.\",\"parameters\":{\"type\":\"object\",\"properties\":{\"operations\":{\"type\":\"array\",\"items\":{\"anyOf\":[{\"type\":\"object\",\"description\":\"Update a block, the new block will replace the existing block.\",\"properties\":{\"type\":{\"type\":\"string\",\"enum\":[\"update\"]},\"id\":{\"type\":\"string\",\"description\":\"id of block to update\"},\"block\":{\"$ref\":\"#/$defs/block\"}},\"required\":[\"type\",\"id\",\"block\"],\"additionalProperties\":false},{\"type\":\"object\",\"description\":\"Insert new blocks\",\"properties\":{\"type\":{\"type\":\"string\",\"enum\":[\"add\"]},\"referenceId\":{\"type\":\"string\",\"description\":\"MUST be an id of a block in the document\"},\"position\":{\"type\":\"string\",\"enum\":[\"before\",\"after\"],\"description\":\"`after` to add blocks AFTER (below) the block with `referenceId`, `before` to add the block BEFORE (above)\"},\"blocks\":{\"items\":{\"$ref\":\"#/$defs/block\"},\"type\":\"array\"}},\"required\":[\"type\",\"referenceId\",\"position\",\"blocks\"],\"additionalProperties\":false},{\"type\":\"object\",\"description\":\"Delete a block\",\"properties\":{\"type\":{\"type\":\"string\",\"enum\":[\"delete\"]},\"id\":{\"type\":\"string\",\"description\":\"id of block to delete\"}},\"required\":[\"type\",\"id\"],\"additionalProperties\":false}]}}},\"additionalProperties\":false,\"required\":[\"operations\"],\"$defs\":{\"styles\":{\"type\":\"object\",\"properties\":{\"bold\":{\"type\":\"boolean\"},\"italic\":{\"type\":\"boolean\"},\"underline\":{\"type\":\"boolean\"},\"strike\":{\"type\":\"boolean\"},\"code\":{\"type\":\"boolean\"},\"textColor\":{\"type\":\"string\"},\"backgroundColor\":{\"type\":\"string\"}},\"additionalProperties\":false},\"styledtext\":{\"type\":\"object\",\"properties\":{\"type\":{\"type\":\"string\",\"enum\":[\"text\"]},\"text\":{\"type\":\"string\"},\"styles\":{\"$ref\":\"#/$defs/styles\"}},\"additionalProperties\":false,\"required\":[\"type\",\"text\"]},\"inlinecontent\":{\"type\":\"array\",\"items\":{\"anyOf\":[{\"type\":\"object\",\"properties\":{\"type\":{\"type\":\"string\",\"enum\":[\"mention\"]},\"props\":{\"type\":\"object\",\"properties\":{\"user\":{\"type\":\"string\"}},\"additionalProperties\":false}},\"additionalProperties\":false,\"required\":[\"type\"]},{\"$ref\":\"#/$defs/styledtext\"},{\"type\":\"object\",\"properties\":{\"type\":{\"type\":\"string\",\"enum\":[\"link\"]},\"content\":{\"type\":\"array\",\"items\":{\"$ref\":\"#/$defs/styledtext\"}},\"href\":{\"type\":\"string\"}},\"additionalProperties\":false,\"required\":[\"type\",\"href\",\"content\"]}]}},\"block\":{\"anyOf\":[{\"type\":\"object\",\"properties\":{\"type\":{\"type\":\"string\",\"enum\":[\"paragraph\",\"quote\",\"toggleListItem\",\"bulletListItem\",\"numberedListItem\"]},\"content\":{\"$ref\":\"#/$defs/inlinecontent\"},\"props\":{\"type\":\"object\",\"properties\":{},\"additionalProperties\":false}},\"additionalProperties\":false,\"required\":[\"type\"]},{\"type\":\"object\",\"properties\":{\"type\":{\"type\":\"string\",\"enum\":[\"heading\"]},\"content\":{\"$ref\":\"#/$defs/inlinecontent\"},\"props\":{\"type\":\"object\",\"properties\":{\"level\":{\"type\":\"number\",\"enum\":[1,2,3]},\"isTogglable\":{\"type\":\"boolean\"}},\"additionalProperties\":false}},\"additionalProperties\":false,\"required\":[\"type\"]},{\"type\":\"object\",\"properties\":{\"type\":{\"type\":\"string\",\"enum\":[\"codeBlock\"]},\"content\":{\"$ref\":\"#/$defs/inlinecontent\"},\"props\":{\"type\":\"object\",\"properties\":{\"language\":{\"type\":\"string\"}},\"additionalProperties\":false}},\"additionalProperties\":false,\"required\":[\"type\"]},{\"type\":\"object\",\"properties\":{\"type\":{\"type\":\"string\",\"enum\":[\"checkListItem\"]},\"content\":{\"$ref\":\"#/$defs/inlinecontent\"},\"props\":{\"type\":\"object\",\"properties\":{\"checked\":{\"type\":\"boolean\"}},\"additionalProperties\":false}},\"additionalProperties\":false,\"required\":[\"type\"]},{\"type\":\"object\",\"properties\":{\"type\":{\"type\":\"string\",\"enum\":[\"table\"]},\"content\":{\"type\":\"object\",\"properties\":{}},\"props\":{\"type\":\"object\",\"properties\":{},\"additionalProperties\":false}},\"additionalProperties\":false,\"required\":[\"type\"]}]}}}}}],\"stream\":true}", + "headers": [], + "cookies": [] + }, + "response": { + "status": 200, + "statusText": "", + "body": "data: {\"id\":\"chatcmpl-BhXn8NoT91oI5Q2YF3DINu8iJ3QhW\",\"object\":\"chat.completion.chunk\",\"created\":1749717698,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_a288987b44\",\"choices\":[{\"index\":0,\"delta\":{\"role\":\"assistant\",\"content\":null,\"tool_calls\":[{\"index\":0,\"id\":\"call_rAA3ggx9y0fCErE8pEZpQGiv\",\"type\":\"function\",\"function\":{\"name\":\"json\",\"arguments\":\"\"}}],\"refusal\":null},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BhXn8NoT91oI5Q2YF3DINu8iJ3QhW\",\"object\":\"chat.completion.chunk\",\"created\":1749717698,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_a288987b44\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"{\\\"\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BhXn8NoT91oI5Q2YF3DINu8iJ3QhW\",\"object\":\"chat.completion.chunk\",\"created\":1749717698,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_a288987b44\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"operations\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BhXn8NoT91oI5Q2YF3DINu8iJ3QhW\",\"object\":\"chat.completion.chunk\",\"created\":1749717698,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_a288987b44\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"\\\":[\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BhXn8NoT91oI5Q2YF3DINu8iJ3QhW\",\"object\":\"chat.completion.chunk\",\"created\":1749717698,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_a288987b44\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"{\\\"\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BhXn8NoT91oI5Q2YF3DINu8iJ3QhW\",\"object\":\"chat.completion.chunk\",\"created\":1749717698,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_a288987b44\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"type\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BhXn8NoT91oI5Q2YF3DINu8iJ3QhW\",\"object\":\"chat.completion.chunk\",\"created\":1749717698,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_a288987b44\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"\\\":\\\"\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BhXn8NoT91oI5Q2YF3DINu8iJ3QhW\",\"object\":\"chat.completion.chunk\",\"created\":1749717698,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_a288987b44\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"update\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BhXn8NoT91oI5Q2YF3DINu8iJ3QhW\",\"object\":\"chat.completion.chunk\",\"created\":1749717698,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_a288987b44\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"\\\",\\\"\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BhXn8NoT91oI5Q2YF3DINu8iJ3QhW\",\"object\":\"chat.completion.chunk\",\"created\":1749717698,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_a288987b44\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"id\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BhXn8NoT91oI5Q2YF3DINu8iJ3QhW\",\"object\":\"chat.completion.chunk\",\"created\":1749717698,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_a288987b44\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"\\\":\\\"\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BhXn8NoT91oI5Q2YF3DINu8iJ3QhW\",\"object\":\"chat.completion.chunk\",\"created\":1749717698,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_a288987b44\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"ref\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BhXn8NoT91oI5Q2YF3DINu8iJ3QhW\",\"object\":\"chat.completion.chunk\",\"created\":1749717698,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_a288987b44\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"2\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BhXn8NoT91oI5Q2YF3DINu8iJ3QhW\",\"object\":\"chat.completion.chunk\",\"created\":1749717698,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_a288987b44\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"$\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BhXn8NoT91oI5Q2YF3DINu8iJ3QhW\",\"object\":\"chat.completion.chunk\",\"created\":1749717698,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_a288987b44\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"\\\",\\\"\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BhXn8NoT91oI5Q2YF3DINu8iJ3QhW\",\"object\":\"chat.completion.chunk\",\"created\":1749717698,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_a288987b44\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"block\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BhXn8NoT91oI5Q2YF3DINu8iJ3QhW\",\"object\":\"chat.completion.chunk\",\"created\":1749717698,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_a288987b44\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"\\\":{\\\"\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BhXn8NoT91oI5Q2YF3DINu8iJ3QhW\",\"object\":\"chat.completion.chunk\",\"created\":1749717698,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_a288987b44\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"type\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BhXn8NoT91oI5Q2YF3DINu8iJ3QhW\",\"object\":\"chat.completion.chunk\",\"created\":1749717698,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_a288987b44\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"\\\":\\\"\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BhXn8NoT91oI5Q2YF3DINu8iJ3QhW\",\"object\":\"chat.completion.chunk\",\"created\":1749717698,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_a288987b44\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"paragraph\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BhXn8NoT91oI5Q2YF3DINu8iJ3QhW\",\"object\":\"chat.completion.chunk\",\"created\":1749717698,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_a288987b44\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"\\\",\\\"\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BhXn8NoT91oI5Q2YF3DINu8iJ3QhW\",\"object\":\"chat.completion.chunk\",\"created\":1749717698,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_a288987b44\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"content\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BhXn8NoT91oI5Q2YF3DINu8iJ3QhW\",\"object\":\"chat.completion.chunk\",\"created\":1749717698,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_a288987b44\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"\\\":[\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BhXn8NoT91oI5Q2YF3DINu8iJ3QhW\",\"object\":\"chat.completion.chunk\",\"created\":1749717698,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_a288987b44\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"{\\\"\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BhXn8NoT91oI5Q2YF3DINu8iJ3QhW\",\"object\":\"chat.completion.chunk\",\"created\":1749717698,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_a288987b44\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"type\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BhXn8NoT91oI5Q2YF3DINu8iJ3QhW\",\"object\":\"chat.completion.chunk\",\"created\":1749717698,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_a288987b44\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"\\\":\\\"\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BhXn8NoT91oI5Q2YF3DINu8iJ3QhW\",\"object\":\"chat.completion.chunk\",\"created\":1749717698,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_a288987b44\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"text\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BhXn8NoT91oI5Q2YF3DINu8iJ3QhW\",\"object\":\"chat.completion.chunk\",\"created\":1749717698,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_a288987b44\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"\\\",\\\"\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BhXn8NoT91oI5Q2YF3DINu8iJ3QhW\",\"object\":\"chat.completion.chunk\",\"created\":1749717698,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_a288987b44\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"text\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BhXn8NoT91oI5Q2YF3DINu8iJ3QhW\",\"object\":\"chat.completion.chunk\",\"created\":1749717698,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_a288987b44\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"\\\":\\\"\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BhXn8NoT91oI5Q2YF3DINu8iJ3QhW\",\"object\":\"chat.completion.chunk\",\"created\":1749717698,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_a288987b44\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"Hello\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BhXn8NoT91oI5Q2YF3DINu8iJ3QhW\",\"object\":\"chat.completion.chunk\",\"created\":1749717698,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_a288987b44\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\",\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BhXn8NoT91oI5Q2YF3DINu8iJ3QhW\",\"object\":\"chat.completion.chunk\",\"created\":1749717698,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_a288987b44\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\" \\\",\\\"\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BhXn8NoT91oI5Q2YF3DINu8iJ3QhW\",\"object\":\"chat.completion.chunk\",\"created\":1749717698,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_a288987b44\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"styles\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BhXn8NoT91oI5Q2YF3DINu8iJ3QhW\",\"object\":\"chat.completion.chunk\",\"created\":1749717698,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_a288987b44\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"\\\":\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BhXn8NoT91oI5Q2YF3DINu8iJ3QhW\",\"object\":\"chat.completion.chunk\",\"created\":1749717698,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_a288987b44\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"{}\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BhXn8NoT91oI5Q2YF3DINu8iJ3QhW\",\"object\":\"chat.completion.chunk\",\"created\":1749717698,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_a288987b44\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"},{\\\"\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BhXn8NoT91oI5Q2YF3DINu8iJ3QhW\",\"object\":\"chat.completion.chunk\",\"created\":1749717698,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_a288987b44\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"type\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BhXn8NoT91oI5Q2YF3DINu8iJ3QhW\",\"object\":\"chat.completion.chunk\",\"created\":1749717698,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_a288987b44\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"\\\":\\\"\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BhXn8NoT91oI5Q2YF3DINu8iJ3QhW\",\"object\":\"chat.completion.chunk\",\"created\":1749717698,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_a288987b44\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"mention\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BhXn8NoT91oI5Q2YF3DINu8iJ3QhW\",\"object\":\"chat.completion.chunk\",\"created\":1749717698,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_a288987b44\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"\\\",\\\"\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BhXn8NoT91oI5Q2YF3DINu8iJ3QhW\",\"object\":\"chat.completion.chunk\",\"created\":1749717698,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_a288987b44\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"props\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BhXn8NoT91oI5Q2YF3DINu8iJ3QhW\",\"object\":\"chat.completion.chunk\",\"created\":1749717698,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_a288987b44\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"\\\":{\\\"\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BhXn8NoT91oI5Q2YF3DINu8iJ3QhW\",\"object\":\"chat.completion.chunk\",\"created\":1749717698,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_a288987b44\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"user\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BhXn8NoT91oI5Q2YF3DINu8iJ3QhW\",\"object\":\"chat.completion.chunk\",\"created\":1749717698,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_a288987b44\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"\\\":\\\"\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BhXn8NoT91oI5Q2YF3DINu8iJ3QhW\",\"object\":\"chat.completion.chunk\",\"created\":1749717698,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_a288987b44\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"John\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BhXn8NoT91oI5Q2YF3DINu8iJ3QhW\",\"object\":\"chat.completion.chunk\",\"created\":1749717698,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_a288987b44\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\" Doe\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BhXn8NoT91oI5Q2YF3DINu8iJ3QhW\",\"object\":\"chat.completion.chunk\",\"created\":1749717698,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_a288987b44\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"\\\"}\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BhXn8NoT91oI5Q2YF3DINu8iJ3QhW\",\"object\":\"chat.completion.chunk\",\"created\":1749717698,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_a288987b44\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"},{\\\"\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BhXn8NoT91oI5Q2YF3DINu8iJ3QhW\",\"object\":\"chat.completion.chunk\",\"created\":1749717698,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_a288987b44\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"type\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BhXn8NoT91oI5Q2YF3DINu8iJ3QhW\",\"object\":\"chat.completion.chunk\",\"created\":1749717698,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_a288987b44\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"\\\":\\\"\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BhXn8NoT91oI5Q2YF3DINu8iJ3QhW\",\"object\":\"chat.completion.chunk\",\"created\":1749717698,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_a288987b44\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"text\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BhXn8NoT91oI5Q2YF3DINu8iJ3QhW\",\"object\":\"chat.completion.chunk\",\"created\":1749717698,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_a288987b44\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"\\\",\\\"\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BhXn8NoT91oI5Q2YF3DINu8iJ3QhW\",\"object\":\"chat.completion.chunk\",\"created\":1749717698,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_a288987b44\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"text\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BhXn8NoT91oI5Q2YF3DINu8iJ3QhW\",\"object\":\"chat.completion.chunk\",\"created\":1749717698,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_a288987b44\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"\\\":\\\"\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BhXn8NoT91oI5Q2YF3DINu8iJ3QhW\",\"object\":\"chat.completion.chunk\",\"created\":1749717698,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_a288987b44\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"!\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BhXn8NoT91oI5Q2YF3DINu8iJ3QhW\",\"object\":\"chat.completion.chunk\",\"created\":1749717698,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_a288987b44\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\" \\\",\\\"\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BhXn8NoT91oI5Q2YF3DINu8iJ3QhW\",\"object\":\"chat.completion.chunk\",\"created\":1749717698,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_a288987b44\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"styles\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BhXn8NoT91oI5Q2YF3DINu8iJ3QhW\",\"object\":\"chat.completion.chunk\",\"created\":1749717698,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_a288987b44\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"\\\":\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BhXn8NoT91oI5Q2YF3DINu8iJ3QhW\",\"object\":\"chat.completion.chunk\",\"created\":1749717698,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_a288987b44\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"{}\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BhXn8NoT91oI5Q2YF3DINu8iJ3QhW\",\"object\":\"chat.completion.chunk\",\"created\":1749717698,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_a288987b44\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"},{\\\"\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BhXn8NoT91oI5Q2YF3DINu8iJ3QhW\",\"object\":\"chat.completion.chunk\",\"created\":1749717698,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_a288987b44\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"type\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BhXn8NoT91oI5Q2YF3DINu8iJ3QhW\",\"object\":\"chat.completion.chunk\",\"created\":1749717698,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_a288987b44\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"\\\":\\\"\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BhXn8NoT91oI5Q2YF3DINu8iJ3QhW\",\"object\":\"chat.completion.chunk\",\"created\":1749717698,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_a288987b44\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"text\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BhXn8NoT91oI5Q2YF3DINu8iJ3QhW\",\"object\":\"chat.completion.chunk\",\"created\":1749717698,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_a288987b44\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"\\\",\\\"\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BhXn8NoT91oI5Q2YF3DINu8iJ3QhW\",\"object\":\"chat.completion.chunk\",\"created\":1749717698,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_a288987b44\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"text\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BhXn8NoT91oI5Q2YF3DINu8iJ3QhW\",\"object\":\"chat.completion.chunk\",\"created\":1749717698,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_a288987b44\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"\\\":\\\"\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BhXn8NoT91oI5Q2YF3DINu8iJ3QhW\",\"object\":\"chat.completion.chunk\",\"created\":1749717698,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_a288987b44\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"How\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BhXn8NoT91oI5Q2YF3DINu8iJ3QhW\",\"object\":\"chat.completion.chunk\",\"created\":1749717698,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_a288987b44\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\" are\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BhXn8NoT91oI5Q2YF3DINu8iJ3QhW\",\"object\":\"chat.completion.chunk\",\"created\":1749717698,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_a288987b44\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\" you\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BhXn8NoT91oI5Q2YF3DINu8iJ3QhW\",\"object\":\"chat.completion.chunk\",\"created\":1749717698,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_a288987b44\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\" doing\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BhXn8NoT91oI5Q2YF3DINu8iJ3QhW\",\"object\":\"chat.completion.chunk\",\"created\":1749717698,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_a288987b44\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"?\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BhXn8NoT91oI5Q2YF3DINu8iJ3QhW\",\"object\":\"chat.completion.chunk\",\"created\":1749717698,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_a288987b44\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"\\\",\\\"\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BhXn8NoT91oI5Q2YF3DINu8iJ3QhW\",\"object\":\"chat.completion.chunk\",\"created\":1749717698,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_a288987b44\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"styles\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BhXn8NoT91oI5Q2YF3DINu8iJ3QhW\",\"object\":\"chat.completion.chunk\",\"created\":1749717698,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_a288987b44\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"\\\":\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BhXn8NoT91oI5Q2YF3DINu8iJ3QhW\",\"object\":\"chat.completion.chunk\",\"created\":1749717698,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_a288987b44\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"{}\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BhXn8NoT91oI5Q2YF3DINu8iJ3QhW\",\"object\":\"chat.completion.chunk\",\"created\":1749717698,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_a288987b44\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"},{\\\"\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BhXn8NoT91oI5Q2YF3DINu8iJ3QhW\",\"object\":\"chat.completion.chunk\",\"created\":1749717698,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_a288987b44\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"type\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BhXn8NoT91oI5Q2YF3DINu8iJ3QhW\",\"object\":\"chat.completion.chunk\",\"created\":1749717698,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_a288987b44\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"\\\":\\\"\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BhXn8NoT91oI5Q2YF3DINu8iJ3QhW\",\"object\":\"chat.completion.chunk\",\"created\":1749717698,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_a288987b44\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"text\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BhXn8NoT91oI5Q2YF3DINu8iJ3QhW\",\"object\":\"chat.completion.chunk\",\"created\":1749717698,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_a288987b44\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"\\\",\\\"\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BhXn8NoT91oI5Q2YF3DINu8iJ3QhW\",\"object\":\"chat.completion.chunk\",\"created\":1749717698,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_a288987b44\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"text\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BhXn8NoT91oI5Q2YF3DINu8iJ3QhW\",\"object\":\"chat.completion.chunk\",\"created\":1749717698,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_a288987b44\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"\\\":\\\"\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BhXn8NoT91oI5Q2YF3DINu8iJ3QhW\",\"object\":\"chat.completion.chunk\",\"created\":1749717698,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_a288987b44\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\" \\\",\\\"\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BhXn8NoT91oI5Q2YF3DINu8iJ3QhW\",\"object\":\"chat.completion.chunk\",\"created\":1749717698,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_a288987b44\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"styles\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BhXn8NoT91oI5Q2YF3DINu8iJ3QhW\",\"object\":\"chat.completion.chunk\",\"created\":1749717698,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_a288987b44\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"\\\":\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BhXn8NoT91oI5Q2YF3DINu8iJ3QhW\",\"object\":\"chat.completion.chunk\",\"created\":1749717698,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_a288987b44\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"{}\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BhXn8NoT91oI5Q2YF3DINu8iJ3QhW\",\"object\":\"chat.completion.chunk\",\"created\":1749717698,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_a288987b44\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"},{\\\"\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BhXn8NoT91oI5Q2YF3DINu8iJ3QhW\",\"object\":\"chat.completion.chunk\",\"created\":1749717698,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_a288987b44\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"type\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BhXn8NoT91oI5Q2YF3DINu8iJ3QhW\",\"object\":\"chat.completion.chunk\",\"created\":1749717698,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_a288987b44\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"\\\":\\\"\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BhXn8NoT91oI5Q2YF3DINu8iJ3QhW\",\"object\":\"chat.completion.chunk\",\"created\":1749717698,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_a288987b44\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"text\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BhXn8NoT91oI5Q2YF3DINu8iJ3QhW\",\"object\":\"chat.completion.chunk\",\"created\":1749717698,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_a288987b44\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"\\\",\\\"\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BhXn8NoT91oI5Q2YF3DINu8iJ3QhW\",\"object\":\"chat.completion.chunk\",\"created\":1749717698,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_a288987b44\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"text\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BhXn8NoT91oI5Q2YF3DINu8iJ3QhW\",\"object\":\"chat.completion.chunk\",\"created\":1749717698,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_a288987b44\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"\\\":\\\"\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BhXn8NoT91oI5Q2YF3DINu8iJ3QhW\",\"object\":\"chat.completion.chunk\",\"created\":1749717698,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_a288987b44\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"This\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BhXn8NoT91oI5Q2YF3DINu8iJ3QhW\",\"object\":\"chat.completion.chunk\",\"created\":1749717698,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_a288987b44\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\" text\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BhXn8NoT91oI5Q2YF3DINu8iJ3QhW\",\"object\":\"chat.completion.chunk\",\"created\":1749717698,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_a288987b44\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\" is\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BhXn8NoT91oI5Q2YF3DINu8iJ3QhW\",\"object\":\"chat.completion.chunk\",\"created\":1749717698,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_a288987b44\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\" blue\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BhXn8NoT91oI5Q2YF3DINu8iJ3QhW\",\"object\":\"chat.completion.chunk\",\"created\":1749717698,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_a288987b44\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"!\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BhXn8NoT91oI5Q2YF3DINu8iJ3QhW\",\"object\":\"chat.completion.chunk\",\"created\":1749717698,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_a288987b44\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"\\\",\\\"\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BhXn8NoT91oI5Q2YF3DINu8iJ3QhW\",\"object\":\"chat.completion.chunk\",\"created\":1749717698,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_a288987b44\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"styles\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BhXn8NoT91oI5Q2YF3DINu8iJ3QhW\",\"object\":\"chat.completion.chunk\",\"created\":1749717698,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_a288987b44\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"\\\":{\\\"\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BhXn8NoT91oI5Q2YF3DINu8iJ3QhW\",\"object\":\"chat.completion.chunk\",\"created\":1749717698,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_a288987b44\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"text\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BhXn8NoT91oI5Q2YF3DINu8iJ3QhW\",\"object\":\"chat.completion.chunk\",\"created\":1749717698,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_a288987b44\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"Color\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BhXn8NoT91oI5Q2YF3DINu8iJ3QhW\",\"object\":\"chat.completion.chunk\",\"created\":1749717698,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_a288987b44\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"\\\":\\\"\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BhXn8NoT91oI5Q2YF3DINu8iJ3QhW\",\"object\":\"chat.completion.chunk\",\"created\":1749717698,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_a288987b44\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"blue\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BhXn8NoT91oI5Q2YF3DINu8iJ3QhW\",\"object\":\"chat.completion.chunk\",\"created\":1749717698,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_a288987b44\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"\\\"}}\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BhXn8NoT91oI5Q2YF3DINu8iJ3QhW\",\"object\":\"chat.completion.chunk\",\"created\":1749717698,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_a288987b44\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"]\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BhXn8NoT91oI5Q2YF3DINu8iJ3QhW\",\"object\":\"chat.completion.chunk\",\"created\":1749717698,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_a288987b44\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"}}\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BhXn8NoT91oI5Q2YF3DINu8iJ3QhW\",\"object\":\"chat.completion.chunk\",\"created\":1749717698,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_a288987b44\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"]}\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BhXn8NoT91oI5Q2YF3DINu8iJ3QhW\",\"object\":\"chat.completion.chunk\",\"created\":1749717698,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_a288987b44\",\"choices\":[{\"index\":0,\"delta\":{},\"logprobs\":null,\"finish_reason\":\"stop\"}]}\n\ndata: [DONE]\n\n", + "headers": [] + } +} \ No newline at end of file diff --git a/packages/xl-ai/src/api/formats/json/__snapshots__/json.test.ts/Update/__msw_snapshots__/openai.chat/gpt-4o-2024-08-06 (streaming)/styles + ic in source block, remove mention_1_17dc3d8c194646451e873fad764cf266.json b/packages/xl-ai/src/api/formats/json/__snapshots__/json.test.ts/Update/__msw_snapshots__/openai.chat/gpt-4o-2024-08-06 (streaming)/styles + ic in source block, remove mention_1_17dc3d8c194646451e873fad764cf266.json new file mode 100644 index 0000000000..3b8f4ab6f0 --- /dev/null +++ b/packages/xl-ai/src/api/formats/json/__snapshots__/json.test.ts/Update/__msw_snapshots__/openai.chat/gpt-4o-2024-08-06 (streaming)/styles + ic in source block, remove mention_1_17dc3d8c194646451e873fad764cf266.json @@ -0,0 +1,15 @@ +{ + "request": { + "method": "POST", + "url": "https://localhost:3000/ai?provider=openai&url=https%3A%2F%2Fapi.openai.com%2Fv1%2Fchat%2Fcompletions", + "body": "{\"model\":\"gpt-4o-2024-08-06\",\"temperature\":0,\"messages\":[{\"role\":\"system\",\"content\":\"You're manipulating a text document using JSON blocks. \\n Make sure to follow the json schema provided. When referencing ids they MUST be EXACTLY the same (including the trailing $). \\n This is the document as an array of JSON blocks (the cursor is BETWEEN two blocks as indicated by cursor: true):\"},{\"role\":\"system\",\"content\":\"[{\\\"id\\\":\\\"ref1$\\\",\\\"block\\\":{\\\"id\\\":\\\"ref1\\\",\\\"type\\\":\\\"paragraph\\\",\\\"props\\\":{\\\"textColor\\\":\\\"default\\\",\\\"backgroundColor\\\":\\\"default\\\",\\\"textAlignment\\\":\\\"left\\\"},\\\"content\\\":[{\\\"type\\\":\\\"text\\\",\\\"text\\\":\\\"Hello, world!\\\",\\\"styles\\\":{}}]}},{\\\"cursor\\\":true},{\\\"id\\\":\\\"ref2$\\\",\\\"block\\\":{\\\"id\\\":\\\"ref2\\\",\\\"type\\\":\\\"paragraph\\\",\\\"props\\\":{\\\"textColor\\\":\\\"default\\\",\\\"backgroundColor\\\":\\\"default\\\",\\\"textAlignment\\\":\\\"left\\\"},\\\"content\\\":[{\\\"type\\\":\\\"text\\\",\\\"text\\\":\\\"Hello, \\\",\\\"styles\\\":{}},{\\\"type\\\":\\\"mention\\\",\\\"props\\\":{\\\"user\\\":\\\"John Doe\\\"}},{\\\"type\\\":\\\"text\\\",\\\"text\\\":\\\"! \\\",\\\"styles\\\":{}},{\\\"type\\\":\\\"text\\\",\\\"text\\\":\\\"How are you doing?\\\",\\\"styles\\\":{\\\"bold\\\":true}},{\\\"type\\\":\\\"text\\\",\\\"text\\\":\\\" \\\",\\\"styles\\\":{}},{\\\"type\\\":\\\"text\\\",\\\"text\\\":\\\"This text is blue!\\\",\\\"styles\\\":{\\\"textColor\\\":\\\"blue\\\"}}]}},{\\\"id\\\":\\\"ref3$\\\",\\\"block\\\":{\\\"id\\\":\\\"ref3\\\",\\\"type\\\":\\\"paragraph\\\",\\\"props\\\":{\\\"textColor\\\":\\\"default\\\",\\\"backgroundColor\\\":\\\"default\\\",\\\"textAlignment\\\":\\\"left\\\"},\\\"content\\\":[{\\\"type\\\":\\\"text\\\",\\\"text\\\":\\\"Hello, world! \\\",\\\"styles\\\":{}},{\\\"type\\\":\\\"text\\\",\\\"text\\\":\\\"Bold text. \\\",\\\"styles\\\":{\\\"bold\\\":true}},{\\\"type\\\":\\\"link\\\",\\\"href\\\":\\\"https://www.google.com\\\",\\\"content\\\":[{\\\"type\\\":\\\"text\\\",\\\"text\\\":\\\"Link.\\\",\\\"styles\\\":{}}]}]}}]\"},{\"role\":\"system\",\"content\":\"The user asks you to do the following:\"},{\"role\":\"user\",\"content\":\"change to say 'Hello! How are you doing? This text is blue!' (remove mention but keep bold text)\"},{\"role\":\"system\",\"content\":\"First, determine what part of the document the user is talking about. You SHOULD probably take cursor info into account if needed.\\n EXAMPLE: if user says \\\"below\\\" (without pointing to a specific part of the document) he / she probably indicates the block(s) after the cursor. \\n EXAMPLE: If you want to insert content AT the cursor position (UNLESS indicated otherwise by the user), then you need `referenceId` to point to the block before the cursor with position `after` (or block below and `before`).\\n \\n Prefer updating existing blocks over removing and adding (but this also depends on the user's question).\"}],\"tool_choice\":{\"type\":\"function\",\"function\":{\"name\":\"json\"}},\"tools\":[{\"type\":\"function\",\"function\":{\"name\":\"json\",\"description\":\"Respond with a JSON object.\",\"parameters\":{\"type\":\"object\",\"properties\":{\"operations\":{\"type\":\"array\",\"items\":{\"anyOf\":[{\"type\":\"object\",\"description\":\"Update a block, the new block will replace the existing block.\",\"properties\":{\"type\":{\"type\":\"string\",\"enum\":[\"update\"]},\"id\":{\"type\":\"string\",\"description\":\"id of block to update\"},\"block\":{\"$ref\":\"#/$defs/block\"}},\"required\":[\"type\",\"id\",\"block\"],\"additionalProperties\":false},{\"type\":\"object\",\"description\":\"Insert new blocks\",\"properties\":{\"type\":{\"type\":\"string\",\"enum\":[\"add\"]},\"referenceId\":{\"type\":\"string\",\"description\":\"MUST be an id of a block in the document\"},\"position\":{\"type\":\"string\",\"enum\":[\"before\",\"after\"],\"description\":\"`after` to add blocks AFTER (below) the block with `referenceId`, `before` to add the block BEFORE (above)\"},\"blocks\":{\"items\":{\"$ref\":\"#/$defs/block\"},\"type\":\"array\"}},\"required\":[\"type\",\"referenceId\",\"position\",\"blocks\"],\"additionalProperties\":false},{\"type\":\"object\",\"description\":\"Delete a block\",\"properties\":{\"type\":{\"type\":\"string\",\"enum\":[\"delete\"]},\"id\":{\"type\":\"string\",\"description\":\"id of block to delete\"}},\"required\":[\"type\",\"id\"],\"additionalProperties\":false}]}}},\"additionalProperties\":false,\"required\":[\"operations\"],\"$defs\":{\"styles\":{\"type\":\"object\",\"properties\":{\"bold\":{\"type\":\"boolean\"},\"italic\":{\"type\":\"boolean\"},\"underline\":{\"type\":\"boolean\"},\"strike\":{\"type\":\"boolean\"},\"code\":{\"type\":\"boolean\"},\"textColor\":{\"type\":\"string\"},\"backgroundColor\":{\"type\":\"string\"}},\"additionalProperties\":false},\"styledtext\":{\"type\":\"object\",\"properties\":{\"type\":{\"type\":\"string\",\"enum\":[\"text\"]},\"text\":{\"type\":\"string\"},\"styles\":{\"$ref\":\"#/$defs/styles\"}},\"additionalProperties\":false,\"required\":[\"type\",\"text\"]},\"inlinecontent\":{\"type\":\"array\",\"items\":{\"anyOf\":[{\"type\":\"object\",\"properties\":{\"type\":{\"type\":\"string\",\"enum\":[\"mention\"]},\"props\":{\"type\":\"object\",\"properties\":{\"user\":{\"type\":\"string\"}},\"additionalProperties\":false}},\"additionalProperties\":false,\"required\":[\"type\"]},{\"$ref\":\"#/$defs/styledtext\"},{\"type\":\"object\",\"properties\":{\"type\":{\"type\":\"string\",\"enum\":[\"link\"]},\"content\":{\"type\":\"array\",\"items\":{\"$ref\":\"#/$defs/styledtext\"}},\"href\":{\"type\":\"string\"}},\"additionalProperties\":false,\"required\":[\"type\",\"href\",\"content\"]}]}},\"block\":{\"anyOf\":[{\"type\":\"object\",\"properties\":{\"type\":{\"type\":\"string\",\"enum\":[\"paragraph\",\"quote\",\"toggleListItem\",\"bulletListItem\",\"numberedListItem\"]},\"content\":{\"$ref\":\"#/$defs/inlinecontent\"},\"props\":{\"type\":\"object\",\"properties\":{},\"additionalProperties\":false}},\"additionalProperties\":false,\"required\":[\"type\"]},{\"type\":\"object\",\"properties\":{\"type\":{\"type\":\"string\",\"enum\":[\"heading\"]},\"content\":{\"$ref\":\"#/$defs/inlinecontent\"},\"props\":{\"type\":\"object\",\"properties\":{\"level\":{\"type\":\"number\",\"enum\":[1,2,3]},\"isTogglable\":{\"type\":\"boolean\"}},\"additionalProperties\":false}},\"additionalProperties\":false,\"required\":[\"type\"]},{\"type\":\"object\",\"properties\":{\"type\":{\"type\":\"string\",\"enum\":[\"codeBlock\"]},\"content\":{\"$ref\":\"#/$defs/inlinecontent\"},\"props\":{\"type\":\"object\",\"properties\":{\"language\":{\"type\":\"string\"}},\"additionalProperties\":false}},\"additionalProperties\":false,\"required\":[\"type\"]},{\"type\":\"object\",\"properties\":{\"type\":{\"type\":\"string\",\"enum\":[\"checkListItem\"]},\"content\":{\"$ref\":\"#/$defs/inlinecontent\"},\"props\":{\"type\":\"object\",\"properties\":{\"checked\":{\"type\":\"boolean\"}},\"additionalProperties\":false}},\"additionalProperties\":false,\"required\":[\"type\"]},{\"type\":\"object\",\"properties\":{\"type\":{\"type\":\"string\",\"enum\":[\"table\"]},\"content\":{\"type\":\"object\",\"properties\":{}},\"props\":{\"type\":\"object\",\"properties\":{},\"additionalProperties\":false}},\"additionalProperties\":false,\"required\":[\"type\"]}]}}}}}],\"stream\":true}", + "headers": [], + "cookies": [] + }, + "response": { + "status": 200, + "statusText": "", + "body": "data: {\"id\":\"chatcmpl-BhXnC5WNT7FcjTdwv3T9px1j5piQp\",\"object\":\"chat.completion.chunk\",\"created\":1749717702,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_a288987b44\",\"choices\":[{\"index\":0,\"delta\":{\"role\":\"assistant\",\"content\":null,\"tool_calls\":[{\"index\":0,\"id\":\"call_5Z1xd3i8hAG6GTgra1CgcHPE\",\"type\":\"function\",\"function\":{\"name\":\"json\",\"arguments\":\"\"}}],\"refusal\":null},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BhXnC5WNT7FcjTdwv3T9px1j5piQp\",\"object\":\"chat.completion.chunk\",\"created\":1749717702,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_a288987b44\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"{\\\"\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BhXnC5WNT7FcjTdwv3T9px1j5piQp\",\"object\":\"chat.completion.chunk\",\"created\":1749717702,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_a288987b44\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"operations\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BhXnC5WNT7FcjTdwv3T9px1j5piQp\",\"object\":\"chat.completion.chunk\",\"created\":1749717702,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_a288987b44\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"\\\":[\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BhXnC5WNT7FcjTdwv3T9px1j5piQp\",\"object\":\"chat.completion.chunk\",\"created\":1749717702,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_a288987b44\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"{\\\"\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BhXnC5WNT7FcjTdwv3T9px1j5piQp\",\"object\":\"chat.completion.chunk\",\"created\":1749717702,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_a288987b44\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"type\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BhXnC5WNT7FcjTdwv3T9px1j5piQp\",\"object\":\"chat.completion.chunk\",\"created\":1749717702,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_a288987b44\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"\\\":\\\"\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BhXnC5WNT7FcjTdwv3T9px1j5piQp\",\"object\":\"chat.completion.chunk\",\"created\":1749717702,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_a288987b44\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"update\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BhXnC5WNT7FcjTdwv3T9px1j5piQp\",\"object\":\"chat.completion.chunk\",\"created\":1749717702,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_a288987b44\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"\\\",\\\"\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BhXnC5WNT7FcjTdwv3T9px1j5piQp\",\"object\":\"chat.completion.chunk\",\"created\":1749717702,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_a288987b44\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"id\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BhXnC5WNT7FcjTdwv3T9px1j5piQp\",\"object\":\"chat.completion.chunk\",\"created\":1749717702,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_a288987b44\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"\\\":\\\"\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BhXnC5WNT7FcjTdwv3T9px1j5piQp\",\"object\":\"chat.completion.chunk\",\"created\":1749717702,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_a288987b44\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"ref\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BhXnC5WNT7FcjTdwv3T9px1j5piQp\",\"object\":\"chat.completion.chunk\",\"created\":1749717702,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_a288987b44\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"2\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BhXnC5WNT7FcjTdwv3T9px1j5piQp\",\"object\":\"chat.completion.chunk\",\"created\":1749717702,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_a288987b44\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"$\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BhXnC5WNT7FcjTdwv3T9px1j5piQp\",\"object\":\"chat.completion.chunk\",\"created\":1749717702,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_a288987b44\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"\\\",\\\"\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BhXnC5WNT7FcjTdwv3T9px1j5piQp\",\"object\":\"chat.completion.chunk\",\"created\":1749717702,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_a288987b44\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"block\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BhXnC5WNT7FcjTdwv3T9px1j5piQp\",\"object\":\"chat.completion.chunk\",\"created\":1749717702,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_a288987b44\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"\\\":{\\\"\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BhXnC5WNT7FcjTdwv3T9px1j5piQp\",\"object\":\"chat.completion.chunk\",\"created\":1749717702,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_a288987b44\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"type\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BhXnC5WNT7FcjTdwv3T9px1j5piQp\",\"object\":\"chat.completion.chunk\",\"created\":1749717702,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_a288987b44\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"\\\":\\\"\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BhXnC5WNT7FcjTdwv3T9px1j5piQp\",\"object\":\"chat.completion.chunk\",\"created\":1749717702,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_a288987b44\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"paragraph\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BhXnC5WNT7FcjTdwv3T9px1j5piQp\",\"object\":\"chat.completion.chunk\",\"created\":1749717702,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_a288987b44\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"\\\",\\\"\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BhXnC5WNT7FcjTdwv3T9px1j5piQp\",\"object\":\"chat.completion.chunk\",\"created\":1749717702,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_a288987b44\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"content\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BhXnC5WNT7FcjTdwv3T9px1j5piQp\",\"object\":\"chat.completion.chunk\",\"created\":1749717702,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_a288987b44\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"\\\":[\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BhXnC5WNT7FcjTdwv3T9px1j5piQp\",\"object\":\"chat.completion.chunk\",\"created\":1749717702,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_a288987b44\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"{\\\"\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BhXnC5WNT7FcjTdwv3T9px1j5piQp\",\"object\":\"chat.completion.chunk\",\"created\":1749717702,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_a288987b44\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"type\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BhXnC5WNT7FcjTdwv3T9px1j5piQp\",\"object\":\"chat.completion.chunk\",\"created\":1749717702,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_a288987b44\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"\\\":\\\"\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BhXnC5WNT7FcjTdwv3T9px1j5piQp\",\"object\":\"chat.completion.chunk\",\"created\":1749717702,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_a288987b44\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"text\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BhXnC5WNT7FcjTdwv3T9px1j5piQp\",\"object\":\"chat.completion.chunk\",\"created\":1749717702,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_a288987b44\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"\\\",\\\"\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BhXnC5WNT7FcjTdwv3T9px1j5piQp\",\"object\":\"chat.completion.chunk\",\"created\":1749717702,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_a288987b44\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"text\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BhXnC5WNT7FcjTdwv3T9px1j5piQp\",\"object\":\"chat.completion.chunk\",\"created\":1749717702,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_a288987b44\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"\\\":\\\"\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BhXnC5WNT7FcjTdwv3T9px1j5piQp\",\"object\":\"chat.completion.chunk\",\"created\":1749717702,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_a288987b44\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"Hello\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BhXnC5WNT7FcjTdwv3T9px1j5piQp\",\"object\":\"chat.completion.chunk\",\"created\":1749717702,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_a288987b44\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"!\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BhXnC5WNT7FcjTdwv3T9px1j5piQp\",\"object\":\"chat.completion.chunk\",\"created\":1749717702,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_a288987b44\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\" \\\",\\\"\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BhXnC5WNT7FcjTdwv3T9px1j5piQp\",\"object\":\"chat.completion.chunk\",\"created\":1749717702,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_a288987b44\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"styles\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BhXnC5WNT7FcjTdwv3T9px1j5piQp\",\"object\":\"chat.completion.chunk\",\"created\":1749717702,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_a288987b44\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"\\\":\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BhXnC5WNT7FcjTdwv3T9px1j5piQp\",\"object\":\"chat.completion.chunk\",\"created\":1749717702,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_a288987b44\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"{}\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BhXnC5WNT7FcjTdwv3T9px1j5piQp\",\"object\":\"chat.completion.chunk\",\"created\":1749717702,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_a288987b44\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"},{\\\"\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BhXnC5WNT7FcjTdwv3T9px1j5piQp\",\"object\":\"chat.completion.chunk\",\"created\":1749717702,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_a288987b44\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"type\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BhXnC5WNT7FcjTdwv3T9px1j5piQp\",\"object\":\"chat.completion.chunk\",\"created\":1749717702,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_a288987b44\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"\\\":\\\"\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BhXnC5WNT7FcjTdwv3T9px1j5piQp\",\"object\":\"chat.completion.chunk\",\"created\":1749717702,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_a288987b44\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"text\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BhXnC5WNT7FcjTdwv3T9px1j5piQp\",\"object\":\"chat.completion.chunk\",\"created\":1749717702,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_a288987b44\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"\\\",\\\"\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BhXnC5WNT7FcjTdwv3T9px1j5piQp\",\"object\":\"chat.completion.chunk\",\"created\":1749717702,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_a288987b44\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"text\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BhXnC5WNT7FcjTdwv3T9px1j5piQp\",\"object\":\"chat.completion.chunk\",\"created\":1749717702,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_a288987b44\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"\\\":\\\"\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BhXnC5WNT7FcjTdwv3T9px1j5piQp\",\"object\":\"chat.completion.chunk\",\"created\":1749717702,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_a288987b44\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"How\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BhXnC5WNT7FcjTdwv3T9px1j5piQp\",\"object\":\"chat.completion.chunk\",\"created\":1749717702,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_a288987b44\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\" are\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BhXnC5WNT7FcjTdwv3T9px1j5piQp\",\"object\":\"chat.completion.chunk\",\"created\":1749717702,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_a288987b44\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\" you\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BhXnC5WNT7FcjTdwv3T9px1j5piQp\",\"object\":\"chat.completion.chunk\",\"created\":1749717702,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_a288987b44\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\" doing\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BhXnC5WNT7FcjTdwv3T9px1j5piQp\",\"object\":\"chat.completion.chunk\",\"created\":1749717702,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_a288987b44\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"?\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BhXnC5WNT7FcjTdwv3T9px1j5piQp\",\"object\":\"chat.completion.chunk\",\"created\":1749717702,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_a288987b44\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"\\\",\\\"\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BhXnC5WNT7FcjTdwv3T9px1j5piQp\",\"object\":\"chat.completion.chunk\",\"created\":1749717702,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_a288987b44\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"styles\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BhXnC5WNT7FcjTdwv3T9px1j5piQp\",\"object\":\"chat.completion.chunk\",\"created\":1749717702,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_a288987b44\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"\\\":{\\\"\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BhXnC5WNT7FcjTdwv3T9px1j5piQp\",\"object\":\"chat.completion.chunk\",\"created\":1749717702,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_a288987b44\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"bold\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BhXnC5WNT7FcjTdwv3T9px1j5piQp\",\"object\":\"chat.completion.chunk\",\"created\":1749717702,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_a288987b44\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"\\\":\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BhXnC5WNT7FcjTdwv3T9px1j5piQp\",\"object\":\"chat.completion.chunk\",\"created\":1749717702,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_a288987b44\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"true\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BhXnC5WNT7FcjTdwv3T9px1j5piQp\",\"object\":\"chat.completion.chunk\",\"created\":1749717702,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_a288987b44\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"}},\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BhXnC5WNT7FcjTdwv3T9px1j5piQp\",\"object\":\"chat.completion.chunk\",\"created\":1749717702,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_a288987b44\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"{\\\"\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BhXnC5WNT7FcjTdwv3T9px1j5piQp\",\"object\":\"chat.completion.chunk\",\"created\":1749717702,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_a288987b44\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"type\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BhXnC5WNT7FcjTdwv3T9px1j5piQp\",\"object\":\"chat.completion.chunk\",\"created\":1749717702,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_a288987b44\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"\\\":\\\"\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BhXnC5WNT7FcjTdwv3T9px1j5piQp\",\"object\":\"chat.completion.chunk\",\"created\":1749717702,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_a288987b44\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"text\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BhXnC5WNT7FcjTdwv3T9px1j5piQp\",\"object\":\"chat.completion.chunk\",\"created\":1749717702,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_a288987b44\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"\\\",\\\"\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BhXnC5WNT7FcjTdwv3T9px1j5piQp\",\"object\":\"chat.completion.chunk\",\"created\":1749717702,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_a288987b44\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"text\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BhXnC5WNT7FcjTdwv3T9px1j5piQp\",\"object\":\"chat.completion.chunk\",\"created\":1749717702,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_a288987b44\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"\\\":\\\"\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BhXnC5WNT7FcjTdwv3T9px1j5piQp\",\"object\":\"chat.completion.chunk\",\"created\":1749717702,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_a288987b44\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\" \\\",\\\"\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BhXnC5WNT7FcjTdwv3T9px1j5piQp\",\"object\":\"chat.completion.chunk\",\"created\":1749717702,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_a288987b44\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"styles\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BhXnC5WNT7FcjTdwv3T9px1j5piQp\",\"object\":\"chat.completion.chunk\",\"created\":1749717702,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_a288987b44\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"\\\":\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BhXnC5WNT7FcjTdwv3T9px1j5piQp\",\"object\":\"chat.completion.chunk\",\"created\":1749717702,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_a288987b44\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"{}\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BhXnC5WNT7FcjTdwv3T9px1j5piQp\",\"object\":\"chat.completion.chunk\",\"created\":1749717702,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_a288987b44\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"},{\\\"\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BhXnC5WNT7FcjTdwv3T9px1j5piQp\",\"object\":\"chat.completion.chunk\",\"created\":1749717702,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_a288987b44\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"type\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BhXnC5WNT7FcjTdwv3T9px1j5piQp\",\"object\":\"chat.completion.chunk\",\"created\":1749717702,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_a288987b44\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"\\\":\\\"\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BhXnC5WNT7FcjTdwv3T9px1j5piQp\",\"object\":\"chat.completion.chunk\",\"created\":1749717702,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_a288987b44\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"text\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BhXnC5WNT7FcjTdwv3T9px1j5piQp\",\"object\":\"chat.completion.chunk\",\"created\":1749717702,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_a288987b44\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"\\\",\\\"\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BhXnC5WNT7FcjTdwv3T9px1j5piQp\",\"object\":\"chat.completion.chunk\",\"created\":1749717702,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_a288987b44\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"text\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BhXnC5WNT7FcjTdwv3T9px1j5piQp\",\"object\":\"chat.completion.chunk\",\"created\":1749717702,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_a288987b44\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"\\\":\\\"\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BhXnC5WNT7FcjTdwv3T9px1j5piQp\",\"object\":\"chat.completion.chunk\",\"created\":1749717702,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_a288987b44\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"This\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BhXnC5WNT7FcjTdwv3T9px1j5piQp\",\"object\":\"chat.completion.chunk\",\"created\":1749717702,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_a288987b44\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\" text\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BhXnC5WNT7FcjTdwv3T9px1j5piQp\",\"object\":\"chat.completion.chunk\",\"created\":1749717702,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_a288987b44\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\" is\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BhXnC5WNT7FcjTdwv3T9px1j5piQp\",\"object\":\"chat.completion.chunk\",\"created\":1749717702,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_a288987b44\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\" blue\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BhXnC5WNT7FcjTdwv3T9px1j5piQp\",\"object\":\"chat.completion.chunk\",\"created\":1749717702,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_a288987b44\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"!\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BhXnC5WNT7FcjTdwv3T9px1j5piQp\",\"object\":\"chat.completion.chunk\",\"created\":1749717702,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_a288987b44\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"\\\",\\\"\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BhXnC5WNT7FcjTdwv3T9px1j5piQp\",\"object\":\"chat.completion.chunk\",\"created\":1749717702,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_a288987b44\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"styles\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BhXnC5WNT7FcjTdwv3T9px1j5piQp\",\"object\":\"chat.completion.chunk\",\"created\":1749717702,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_a288987b44\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"\\\":{\\\"\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BhXnC5WNT7FcjTdwv3T9px1j5piQp\",\"object\":\"chat.completion.chunk\",\"created\":1749717702,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_a288987b44\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"text\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BhXnC5WNT7FcjTdwv3T9px1j5piQp\",\"object\":\"chat.completion.chunk\",\"created\":1749717702,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_a288987b44\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"Color\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BhXnC5WNT7FcjTdwv3T9px1j5piQp\",\"object\":\"chat.completion.chunk\",\"created\":1749717702,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_a288987b44\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"\\\":\\\"\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BhXnC5WNT7FcjTdwv3T9px1j5piQp\",\"object\":\"chat.completion.chunk\",\"created\":1749717702,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_a288987b44\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"blue\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BhXnC5WNT7FcjTdwv3T9px1j5piQp\",\"object\":\"chat.completion.chunk\",\"created\":1749717702,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_a288987b44\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"\\\"}}\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BhXnC5WNT7FcjTdwv3T9px1j5piQp\",\"object\":\"chat.completion.chunk\",\"created\":1749717702,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_a288987b44\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"]\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BhXnC5WNT7FcjTdwv3T9px1j5piQp\",\"object\":\"chat.completion.chunk\",\"created\":1749717702,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_a288987b44\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"}}\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BhXnC5WNT7FcjTdwv3T9px1j5piQp\",\"object\":\"chat.completion.chunk\",\"created\":1749717702,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_a288987b44\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"]}\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BhXnC5WNT7FcjTdwv3T9px1j5piQp\",\"object\":\"chat.completion.chunk\",\"created\":1749717702,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_a288987b44\",\"choices\":[{\"index\":0,\"delta\":{},\"logprobs\":null,\"finish_reason\":\"stop\"}]}\n\ndata: [DONE]\n\n", + "headers": [] + } +} \ No newline at end of file diff --git a/packages/xl-ai/src/api/formats/json/__snapshots__/json.test.ts/Update/__msw_snapshots__/openai.chat/gpt-4o-2024-08-06 (streaming)/styles + ic in source block, remove mention_1_9f350039f2cb03f51f6bbe34ba4c044a.json b/packages/xl-ai/src/api/formats/json/__snapshots__/json.test.ts/Update/__msw_snapshots__/openai.chat/gpt-4o-2024-08-06 (streaming)/styles + ic in source block, remove mention_1_9f350039f2cb03f51f6bbe34ba4c044a.json deleted file mode 100644 index 01952d29c0..0000000000 --- a/packages/xl-ai/src/api/formats/json/__snapshots__/json.test.ts/Update/__msw_snapshots__/openai.chat/gpt-4o-2024-08-06 (streaming)/styles + ic in source block, remove mention_1_9f350039f2cb03f51f6bbe34ba4c044a.json +++ /dev/null @@ -1,15 +0,0 @@ -{ - "request": { - "method": "POST", - "url": "https://localhost:3000/ai?provider=openai&url=https%3A%2F%2Fapi.openai.com%2Fv1%2Fchat%2Fcompletions", - "body": "{\"model\":\"gpt-4o-2024-08-06\",\"temperature\":0,\"messages\":[{\"role\":\"system\",\"content\":\"You're manipulating a text document using JSON blocks. \\n Make sure to follow the json schema provided. When referencing ids they MUST be EXACTLY the same (including the trailing $). \\n This is the document as an array of JSON blocks (the cursor is BETWEEN two blocks as indicated by cursor: true):\"},{\"role\":\"system\",\"content\":\"[{\\\"id\\\":\\\"ref1$\\\",\\\"block\\\":{\\\"id\\\":\\\"ref1\\\",\\\"type\\\":\\\"paragraph\\\",\\\"props\\\":{\\\"textColor\\\":\\\"default\\\",\\\"backgroundColor\\\":\\\"default\\\",\\\"textAlignment\\\":\\\"left\\\"},\\\"content\\\":[{\\\"type\\\":\\\"text\\\",\\\"text\\\":\\\"Hello, world!\\\",\\\"styles\\\":{}}]}},{\\\"cursor\\\":true},{\\\"id\\\":\\\"ref2$\\\",\\\"block\\\":{\\\"id\\\":\\\"ref2\\\",\\\"type\\\":\\\"paragraph\\\",\\\"props\\\":{\\\"textColor\\\":\\\"default\\\",\\\"backgroundColor\\\":\\\"default\\\",\\\"textAlignment\\\":\\\"left\\\"},\\\"content\\\":[{\\\"type\\\":\\\"text\\\",\\\"text\\\":\\\"Hello, \\\",\\\"styles\\\":{}},{\\\"type\\\":\\\"mention\\\",\\\"props\\\":{\\\"user\\\":\\\"John Doe\\\"}},{\\\"type\\\":\\\"text\\\",\\\"text\\\":\\\"! \\\",\\\"styles\\\":{}},{\\\"type\\\":\\\"text\\\",\\\"text\\\":\\\"How are you doing?\\\",\\\"styles\\\":{\\\"bold\\\":true}},{\\\"type\\\":\\\"text\\\",\\\"text\\\":\\\" \\\",\\\"styles\\\":{}},{\\\"type\\\":\\\"text\\\",\\\"text\\\":\\\"This text is blue!\\\",\\\"styles\\\":{\\\"textColor\\\":\\\"blue\\\"}}]}},{\\\"id\\\":\\\"ref3$\\\",\\\"block\\\":{\\\"id\\\":\\\"ref3\\\",\\\"type\\\":\\\"paragraph\\\",\\\"props\\\":{\\\"textColor\\\":\\\"default\\\",\\\"backgroundColor\\\":\\\"default\\\",\\\"textAlignment\\\":\\\"left\\\"},\\\"content\\\":[{\\\"type\\\":\\\"text\\\",\\\"text\\\":\\\"Hello, world! \\\",\\\"styles\\\":{}},{\\\"type\\\":\\\"text\\\",\\\"text\\\":\\\"Bold text. \\\",\\\"styles\\\":{\\\"bold\\\":true}},{\\\"type\\\":\\\"link\\\",\\\"href\\\":\\\"https://www.google.com\\\",\\\"content\\\":[{\\\"type\\\":\\\"text\\\",\\\"text\\\":\\\"Link.\\\",\\\"styles\\\":{}}]}]}}]\"},{\"role\":\"system\",\"content\":\"The user asks you to do the following:\"},{\"role\":\"user\",\"content\":\"change to say 'Hello! How are you doing? This text is blue!' (remove mention but keep bold text)\"},{\"role\":\"system\",\"content\":\"First, determine what part of the document the user is talking about. You SHOULD probably take cursor info into account if needed.\\n EXAMPLE: if user says \\\"below\\\" (without pointing to a specific part of the document) he / she probably indicates the block(s) after the cursor. \\n EXAMPLE: If you want to insert content AT the cursor position (UNLESS indicated otherwise by the user), then you need `referenceId` to point to the block before the cursor with position `after` (or block below and `before`).\\n \\n Prefer updating existing blocks over removing and adding (but this also depends on the user's question).\"}],\"tool_choice\":{\"type\":\"function\",\"function\":{\"name\":\"json\"}},\"tools\":[{\"type\":\"function\",\"function\":{\"name\":\"json\",\"description\":\"Respond with a JSON object.\",\"parameters\":{\"type\":\"object\",\"properties\":{\"operations\":{\"type\":\"array\",\"items\":{\"anyOf\":[{\"type\":\"object\",\"description\":\"Update a block, the new block will replace the existing block.\",\"properties\":{\"type\":{\"type\":\"string\",\"enum\":[\"update\"]},\"id\":{\"type\":\"string\",\"description\":\"id of block to update\"},\"block\":{\"$ref\":\"#/$defs/block\"}},\"required\":[\"type\",\"id\",\"block\"],\"additionalProperties\":false},{\"type\":\"object\",\"description\":\"Insert new blocks\",\"properties\":{\"type\":{\"type\":\"string\",\"enum\":[\"add\"]},\"referenceId\":{\"type\":\"string\",\"description\":\"MUST be an id of a block in the document\"},\"position\":{\"type\":\"string\",\"enum\":[\"before\",\"after\"],\"description\":\"`after` to add blocks AFTER (below) the block with `referenceId`, `before` to add the block BEFORE (above)\"},\"blocks\":{\"items\":{\"$ref\":\"#/$defs/block\"},\"type\":\"array\"}},\"required\":[\"type\",\"referenceId\",\"position\",\"blocks\"],\"additionalProperties\":false},{\"type\":\"object\",\"description\":\"Delete a block\",\"properties\":{\"type\":{\"type\":\"string\",\"enum\":[\"delete\"]},\"id\":{\"type\":\"string\",\"description\":\"id of block to delete\"}},\"required\":[\"type\",\"id\"],\"additionalProperties\":false}]}}},\"additionalProperties\":false,\"required\":[\"operations\"],\"$defs\":{\"styles\":{\"type\":\"object\",\"properties\":{\"bold\":{\"type\":\"boolean\"},\"italic\":{\"type\":\"boolean\"},\"underline\":{\"type\":\"boolean\"},\"strike\":{\"type\":\"boolean\"},\"code\":{\"type\":\"boolean\"},\"textColor\":{\"type\":\"string\"},\"backgroundColor\":{\"type\":\"string\"}},\"additionalProperties\":false},\"styledtext\":{\"type\":\"object\",\"properties\":{\"type\":{\"type\":\"string\",\"enum\":[\"text\"]},\"text\":{\"type\":\"string\"},\"styles\":{\"$ref\":\"#/$defs/styles\"}},\"additionalProperties\":false,\"required\":[\"type\",\"text\"]},\"inlinecontent\":{\"type\":\"array\",\"items\":{\"anyOf\":[{\"type\":\"object\",\"properties\":{\"type\":{\"type\":\"string\",\"enum\":[\"mention\"]},\"props\":{\"type\":\"object\",\"properties\":{\"user\":{\"type\":\"string\"}},\"additionalProperties\":false}},\"additionalProperties\":false,\"required\":[\"type\"]},{\"$ref\":\"#/$defs/styledtext\"},{\"type\":\"object\",\"properties\":{\"type\":{\"type\":\"string\",\"enum\":[\"link\"]},\"content\":{\"type\":\"array\",\"items\":{\"$ref\":\"#/$defs/styledtext\"}},\"href\":{\"type\":\"string\"}},\"additionalProperties\":false,\"required\":[\"type\",\"href\",\"content\"]}]}},\"block\":{\"anyOf\":[{\"type\":\"object\",\"properties\":{\"type\":{\"type\":\"string\",\"enum\":[\"paragraph\",\"quote\",\"bulletListItem\",\"numberedListItem\"]},\"content\":{\"$ref\":\"#/$defs/inlinecontent\"},\"props\":{\"type\":\"object\",\"properties\":{},\"additionalProperties\":false}},\"additionalProperties\":false,\"required\":[\"type\"]},{\"type\":\"object\",\"properties\":{\"type\":{\"type\":\"string\",\"enum\":[\"heading\"]},\"content\":{\"$ref\":\"#/$defs/inlinecontent\"},\"props\":{\"type\":\"object\",\"properties\":{\"level\":{\"type\":\"number\",\"enum\":[1,2,3]}},\"additionalProperties\":false}},\"additionalProperties\":false,\"required\":[\"type\"]},{\"type\":\"object\",\"properties\":{\"type\":{\"type\":\"string\",\"enum\":[\"codeBlock\"]},\"content\":{\"$ref\":\"#/$defs/inlinecontent\"},\"props\":{\"type\":\"object\",\"properties\":{\"language\":{\"type\":\"string\"}},\"additionalProperties\":false}},\"additionalProperties\":false,\"required\":[\"type\"]},{\"type\":\"object\",\"properties\":{\"type\":{\"type\":\"string\",\"enum\":[\"checkListItem\"]},\"content\":{\"$ref\":\"#/$defs/inlinecontent\"},\"props\":{\"type\":\"object\",\"properties\":{\"checked\":{\"type\":\"boolean\"}},\"additionalProperties\":false}},\"additionalProperties\":false,\"required\":[\"type\"]},{\"type\":\"object\",\"properties\":{\"type\":{\"type\":\"string\",\"enum\":[\"table\"]},\"content\":{\"type\":\"object\",\"properties\":{}},\"props\":{\"type\":\"object\",\"properties\":{},\"additionalProperties\":false}},\"additionalProperties\":false,\"required\":[\"type\"]}]}}}}}],\"stream\":true}", - "headers": [], - "cookies": [] - }, - "response": { - "status": 200, - "statusText": "", - "body": "data: {\"id\":\"chatcmpl-BgV4oIDIXhh5cmFHfLdI9GyDY0hgr\",\"object\":\"chat.completion.chunk\",\"created\":1749468934,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_07871e2ad8\",\"choices\":[{\"index\":0,\"delta\":{\"role\":\"assistant\",\"content\":null,\"tool_calls\":[{\"index\":0,\"id\":\"call_z7ShG2J3o7Bffe4Kootp26PE\",\"type\":\"function\",\"function\":{\"name\":\"json\",\"arguments\":\"\"}}],\"refusal\":null},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BgV4oIDIXhh5cmFHfLdI9GyDY0hgr\",\"object\":\"chat.completion.chunk\",\"created\":1749468934,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_07871e2ad8\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"{\\\"\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BgV4oIDIXhh5cmFHfLdI9GyDY0hgr\",\"object\":\"chat.completion.chunk\",\"created\":1749468934,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_07871e2ad8\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"operations\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BgV4oIDIXhh5cmFHfLdI9GyDY0hgr\",\"object\":\"chat.completion.chunk\",\"created\":1749468934,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_07871e2ad8\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"\\\":[\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BgV4oIDIXhh5cmFHfLdI9GyDY0hgr\",\"object\":\"chat.completion.chunk\",\"created\":1749468934,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_07871e2ad8\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"{\\\"\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BgV4oIDIXhh5cmFHfLdI9GyDY0hgr\",\"object\":\"chat.completion.chunk\",\"created\":1749468934,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_07871e2ad8\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"type\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BgV4oIDIXhh5cmFHfLdI9GyDY0hgr\",\"object\":\"chat.completion.chunk\",\"created\":1749468934,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_07871e2ad8\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"\\\":\\\"\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BgV4oIDIXhh5cmFHfLdI9GyDY0hgr\",\"object\":\"chat.completion.chunk\",\"created\":1749468934,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_07871e2ad8\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"update\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BgV4oIDIXhh5cmFHfLdI9GyDY0hgr\",\"object\":\"chat.completion.chunk\",\"created\":1749468934,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_07871e2ad8\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"\\\",\\\"\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BgV4oIDIXhh5cmFHfLdI9GyDY0hgr\",\"object\":\"chat.completion.chunk\",\"created\":1749468934,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_07871e2ad8\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"id\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BgV4oIDIXhh5cmFHfLdI9GyDY0hgr\",\"object\":\"chat.completion.chunk\",\"created\":1749468934,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_07871e2ad8\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"\\\":\\\"\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BgV4oIDIXhh5cmFHfLdI9GyDY0hgr\",\"object\":\"chat.completion.chunk\",\"created\":1749468934,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_07871e2ad8\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"ref\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BgV4oIDIXhh5cmFHfLdI9GyDY0hgr\",\"object\":\"chat.completion.chunk\",\"created\":1749468934,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_07871e2ad8\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"2\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BgV4oIDIXhh5cmFHfLdI9GyDY0hgr\",\"object\":\"chat.completion.chunk\",\"created\":1749468934,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_07871e2ad8\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"$\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BgV4oIDIXhh5cmFHfLdI9GyDY0hgr\",\"object\":\"chat.completion.chunk\",\"created\":1749468934,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_07871e2ad8\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"\\\",\\\"\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BgV4oIDIXhh5cmFHfLdI9GyDY0hgr\",\"object\":\"chat.completion.chunk\",\"created\":1749468934,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_07871e2ad8\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"block\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BgV4oIDIXhh5cmFHfLdI9GyDY0hgr\",\"object\":\"chat.completion.chunk\",\"created\":1749468934,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_07871e2ad8\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"\\\":{\\\"\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BgV4oIDIXhh5cmFHfLdI9GyDY0hgr\",\"object\":\"chat.completion.chunk\",\"created\":1749468934,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_07871e2ad8\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"type\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BgV4oIDIXhh5cmFHfLdI9GyDY0hgr\",\"object\":\"chat.completion.chunk\",\"created\":1749468934,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_07871e2ad8\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"\\\":\\\"\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BgV4oIDIXhh5cmFHfLdI9GyDY0hgr\",\"object\":\"chat.completion.chunk\",\"created\":1749468934,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_07871e2ad8\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"paragraph\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BgV4oIDIXhh5cmFHfLdI9GyDY0hgr\",\"object\":\"chat.completion.chunk\",\"created\":1749468934,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_07871e2ad8\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"\\\",\\\"\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BgV4oIDIXhh5cmFHfLdI9GyDY0hgr\",\"object\":\"chat.completion.chunk\",\"created\":1749468934,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_07871e2ad8\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"content\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BgV4oIDIXhh5cmFHfLdI9GyDY0hgr\",\"object\":\"chat.completion.chunk\",\"created\":1749468934,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_07871e2ad8\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"\\\":[\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BgV4oIDIXhh5cmFHfLdI9GyDY0hgr\",\"object\":\"chat.completion.chunk\",\"created\":1749468934,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_07871e2ad8\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"{\\\"\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BgV4oIDIXhh5cmFHfLdI9GyDY0hgr\",\"object\":\"chat.completion.chunk\",\"created\":1749468934,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_07871e2ad8\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"type\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BgV4oIDIXhh5cmFHfLdI9GyDY0hgr\",\"object\":\"chat.completion.chunk\",\"created\":1749468934,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_07871e2ad8\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"\\\":\\\"\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BgV4oIDIXhh5cmFHfLdI9GyDY0hgr\",\"object\":\"chat.completion.chunk\",\"created\":1749468934,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_07871e2ad8\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"text\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BgV4oIDIXhh5cmFHfLdI9GyDY0hgr\",\"object\":\"chat.completion.chunk\",\"created\":1749468934,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_07871e2ad8\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"\\\",\\\"\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BgV4oIDIXhh5cmFHfLdI9GyDY0hgr\",\"object\":\"chat.completion.chunk\",\"created\":1749468934,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_07871e2ad8\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"text\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BgV4oIDIXhh5cmFHfLdI9GyDY0hgr\",\"object\":\"chat.completion.chunk\",\"created\":1749468934,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_07871e2ad8\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"\\\":\\\"\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BgV4oIDIXhh5cmFHfLdI9GyDY0hgr\",\"object\":\"chat.completion.chunk\",\"created\":1749468934,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_07871e2ad8\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"Hello\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BgV4oIDIXhh5cmFHfLdI9GyDY0hgr\",\"object\":\"chat.completion.chunk\",\"created\":1749468934,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_07871e2ad8\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"!\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BgV4oIDIXhh5cmFHfLdI9GyDY0hgr\",\"object\":\"chat.completion.chunk\",\"created\":1749468934,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_07871e2ad8\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\" \\\",\\\"\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BgV4oIDIXhh5cmFHfLdI9GyDY0hgr\",\"object\":\"chat.completion.chunk\",\"created\":1749468934,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_07871e2ad8\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"styles\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BgV4oIDIXhh5cmFHfLdI9GyDY0hgr\",\"object\":\"chat.completion.chunk\",\"created\":1749468934,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_07871e2ad8\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"\\\":\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BgV4oIDIXhh5cmFHfLdI9GyDY0hgr\",\"object\":\"chat.completion.chunk\",\"created\":1749468934,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_07871e2ad8\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"{}\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BgV4oIDIXhh5cmFHfLdI9GyDY0hgr\",\"object\":\"chat.completion.chunk\",\"created\":1749468934,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_07871e2ad8\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"},{\\\"\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BgV4oIDIXhh5cmFHfLdI9GyDY0hgr\",\"object\":\"chat.completion.chunk\",\"created\":1749468934,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_07871e2ad8\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"type\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BgV4oIDIXhh5cmFHfLdI9GyDY0hgr\",\"object\":\"chat.completion.chunk\",\"created\":1749468934,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_07871e2ad8\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"\\\":\\\"\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BgV4oIDIXhh5cmFHfLdI9GyDY0hgr\",\"object\":\"chat.completion.chunk\",\"created\":1749468934,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_07871e2ad8\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"text\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BgV4oIDIXhh5cmFHfLdI9GyDY0hgr\",\"object\":\"chat.completion.chunk\",\"created\":1749468934,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_07871e2ad8\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"\\\",\\\"\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BgV4oIDIXhh5cmFHfLdI9GyDY0hgr\",\"object\":\"chat.completion.chunk\",\"created\":1749468934,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_07871e2ad8\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"text\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BgV4oIDIXhh5cmFHfLdI9GyDY0hgr\",\"object\":\"chat.completion.chunk\",\"created\":1749468934,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_07871e2ad8\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"\\\":\\\"\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BgV4oIDIXhh5cmFHfLdI9GyDY0hgr\",\"object\":\"chat.completion.chunk\",\"created\":1749468934,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_07871e2ad8\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"How\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BgV4oIDIXhh5cmFHfLdI9GyDY0hgr\",\"object\":\"chat.completion.chunk\",\"created\":1749468934,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_07871e2ad8\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\" are\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BgV4oIDIXhh5cmFHfLdI9GyDY0hgr\",\"object\":\"chat.completion.chunk\",\"created\":1749468934,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_07871e2ad8\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\" you\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BgV4oIDIXhh5cmFHfLdI9GyDY0hgr\",\"object\":\"chat.completion.chunk\",\"created\":1749468934,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_07871e2ad8\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\" doing\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BgV4oIDIXhh5cmFHfLdI9GyDY0hgr\",\"object\":\"chat.completion.chunk\",\"created\":1749468934,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_07871e2ad8\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"?\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BgV4oIDIXhh5cmFHfLdI9GyDY0hgr\",\"object\":\"chat.completion.chunk\",\"created\":1749468934,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_07871e2ad8\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"\\\",\\\"\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BgV4oIDIXhh5cmFHfLdI9GyDY0hgr\",\"object\":\"chat.completion.chunk\",\"created\":1749468934,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_07871e2ad8\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"styles\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BgV4oIDIXhh5cmFHfLdI9GyDY0hgr\",\"object\":\"chat.completion.chunk\",\"created\":1749468934,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_07871e2ad8\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"\\\":{\\\"\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BgV4oIDIXhh5cmFHfLdI9GyDY0hgr\",\"object\":\"chat.completion.chunk\",\"created\":1749468934,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_07871e2ad8\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"bold\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BgV4oIDIXhh5cmFHfLdI9GyDY0hgr\",\"object\":\"chat.completion.chunk\",\"created\":1749468934,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_07871e2ad8\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"\\\":\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BgV4oIDIXhh5cmFHfLdI9GyDY0hgr\",\"object\":\"chat.completion.chunk\",\"created\":1749468934,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_07871e2ad8\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"true\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BgV4oIDIXhh5cmFHfLdI9GyDY0hgr\",\"object\":\"chat.completion.chunk\",\"created\":1749468934,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_07871e2ad8\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"}},\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BgV4oIDIXhh5cmFHfLdI9GyDY0hgr\",\"object\":\"chat.completion.chunk\",\"created\":1749468934,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_07871e2ad8\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"{\\\"\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BgV4oIDIXhh5cmFHfLdI9GyDY0hgr\",\"object\":\"chat.completion.chunk\",\"created\":1749468934,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_07871e2ad8\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"type\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BgV4oIDIXhh5cmFHfLdI9GyDY0hgr\",\"object\":\"chat.completion.chunk\",\"created\":1749468934,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_07871e2ad8\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"\\\":\\\"\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BgV4oIDIXhh5cmFHfLdI9GyDY0hgr\",\"object\":\"chat.completion.chunk\",\"created\":1749468934,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_07871e2ad8\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"text\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BgV4oIDIXhh5cmFHfLdI9GyDY0hgr\",\"object\":\"chat.completion.chunk\",\"created\":1749468934,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_07871e2ad8\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"\\\",\\\"\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BgV4oIDIXhh5cmFHfLdI9GyDY0hgr\",\"object\":\"chat.completion.chunk\",\"created\":1749468934,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_07871e2ad8\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"text\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BgV4oIDIXhh5cmFHfLdI9GyDY0hgr\",\"object\":\"chat.completion.chunk\",\"created\":1749468934,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_07871e2ad8\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"\\\":\\\"\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BgV4oIDIXhh5cmFHfLdI9GyDY0hgr\",\"object\":\"chat.completion.chunk\",\"created\":1749468934,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_07871e2ad8\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\" \\\",\\\"\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BgV4oIDIXhh5cmFHfLdI9GyDY0hgr\",\"object\":\"chat.completion.chunk\",\"created\":1749468934,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_07871e2ad8\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"styles\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BgV4oIDIXhh5cmFHfLdI9GyDY0hgr\",\"object\":\"chat.completion.chunk\",\"created\":1749468934,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_07871e2ad8\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"\\\":\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BgV4oIDIXhh5cmFHfLdI9GyDY0hgr\",\"object\":\"chat.completion.chunk\",\"created\":1749468934,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_07871e2ad8\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"{}\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BgV4oIDIXhh5cmFHfLdI9GyDY0hgr\",\"object\":\"chat.completion.chunk\",\"created\":1749468934,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_07871e2ad8\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"},{\\\"\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BgV4oIDIXhh5cmFHfLdI9GyDY0hgr\",\"object\":\"chat.completion.chunk\",\"created\":1749468934,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_07871e2ad8\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"type\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BgV4oIDIXhh5cmFHfLdI9GyDY0hgr\",\"object\":\"chat.completion.chunk\",\"created\":1749468934,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_07871e2ad8\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"\\\":\\\"\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BgV4oIDIXhh5cmFHfLdI9GyDY0hgr\",\"object\":\"chat.completion.chunk\",\"created\":1749468934,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_07871e2ad8\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"text\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BgV4oIDIXhh5cmFHfLdI9GyDY0hgr\",\"object\":\"chat.completion.chunk\",\"created\":1749468934,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_07871e2ad8\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"\\\",\\\"\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BgV4oIDIXhh5cmFHfLdI9GyDY0hgr\",\"object\":\"chat.completion.chunk\",\"created\":1749468934,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_07871e2ad8\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"text\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BgV4oIDIXhh5cmFHfLdI9GyDY0hgr\",\"object\":\"chat.completion.chunk\",\"created\":1749468934,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_07871e2ad8\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"\\\":\\\"\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BgV4oIDIXhh5cmFHfLdI9GyDY0hgr\",\"object\":\"chat.completion.chunk\",\"created\":1749468934,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_07871e2ad8\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"This\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BgV4oIDIXhh5cmFHfLdI9GyDY0hgr\",\"object\":\"chat.completion.chunk\",\"created\":1749468934,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_07871e2ad8\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\" text\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BgV4oIDIXhh5cmFHfLdI9GyDY0hgr\",\"object\":\"chat.completion.chunk\",\"created\":1749468934,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_07871e2ad8\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\" is\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BgV4oIDIXhh5cmFHfLdI9GyDY0hgr\",\"object\":\"chat.completion.chunk\",\"created\":1749468934,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_07871e2ad8\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\" blue\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BgV4oIDIXhh5cmFHfLdI9GyDY0hgr\",\"object\":\"chat.completion.chunk\",\"created\":1749468934,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_07871e2ad8\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"!\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BgV4oIDIXhh5cmFHfLdI9GyDY0hgr\",\"object\":\"chat.completion.chunk\",\"created\":1749468934,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_07871e2ad8\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"\\\",\\\"\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BgV4oIDIXhh5cmFHfLdI9GyDY0hgr\",\"object\":\"chat.completion.chunk\",\"created\":1749468934,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_07871e2ad8\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"styles\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BgV4oIDIXhh5cmFHfLdI9GyDY0hgr\",\"object\":\"chat.completion.chunk\",\"created\":1749468934,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_07871e2ad8\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"\\\":{\\\"\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BgV4oIDIXhh5cmFHfLdI9GyDY0hgr\",\"object\":\"chat.completion.chunk\",\"created\":1749468934,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_07871e2ad8\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"text\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BgV4oIDIXhh5cmFHfLdI9GyDY0hgr\",\"object\":\"chat.completion.chunk\",\"created\":1749468934,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_07871e2ad8\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"Color\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BgV4oIDIXhh5cmFHfLdI9GyDY0hgr\",\"object\":\"chat.completion.chunk\",\"created\":1749468934,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_07871e2ad8\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"\\\":\\\"\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BgV4oIDIXhh5cmFHfLdI9GyDY0hgr\",\"object\":\"chat.completion.chunk\",\"created\":1749468934,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_07871e2ad8\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"blue\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BgV4oIDIXhh5cmFHfLdI9GyDY0hgr\",\"object\":\"chat.completion.chunk\",\"created\":1749468934,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_07871e2ad8\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"\\\"}}\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BgV4oIDIXhh5cmFHfLdI9GyDY0hgr\",\"object\":\"chat.completion.chunk\",\"created\":1749468934,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_07871e2ad8\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"]\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BgV4oIDIXhh5cmFHfLdI9GyDY0hgr\",\"object\":\"chat.completion.chunk\",\"created\":1749468934,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_07871e2ad8\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"}}\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BgV4oIDIXhh5cmFHfLdI9GyDY0hgr\",\"object\":\"chat.completion.chunk\",\"created\":1749468934,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_07871e2ad8\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"]}\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BgV4oIDIXhh5cmFHfLdI9GyDY0hgr\",\"object\":\"chat.completion.chunk\",\"created\":1749468934,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_07871e2ad8\",\"choices\":[{\"index\":0,\"delta\":{},\"logprobs\":null,\"finish_reason\":\"stop\"}]}\n\ndata: [DONE]\n\n", - "headers": [] - } -} \ No newline at end of file diff --git a/packages/xl-ai/src/api/formats/json/__snapshots__/json.test.ts/Update/__msw_snapshots__/openai.chat/gpt-4o-2024-08-06 (streaming)/styles + ic in source block, replace content_1_227b2d39791a0ef10449233995f36b2f.json b/packages/xl-ai/src/api/formats/json/__snapshots__/json.test.ts/Update/__msw_snapshots__/openai.chat/gpt-4o-2024-08-06 (streaming)/styles + ic in source block, replace content_1_227b2d39791a0ef10449233995f36b2f.json deleted file mode 100644 index 7b1f4bda72..0000000000 --- a/packages/xl-ai/src/api/formats/json/__snapshots__/json.test.ts/Update/__msw_snapshots__/openai.chat/gpt-4o-2024-08-06 (streaming)/styles + ic in source block, replace content_1_227b2d39791a0ef10449233995f36b2f.json +++ /dev/null @@ -1,15 +0,0 @@ -{ - "request": { - "method": "POST", - "url": "https://localhost:3000/ai?provider=openai&url=https%3A%2F%2Fapi.openai.com%2Fv1%2Fchat%2Fcompletions", - "body": "{\"model\":\"gpt-4o-2024-08-06\",\"temperature\":0,\"messages\":[{\"role\":\"system\",\"content\":\"You're manipulating a text document using JSON blocks. \\n Make sure to follow the json schema provided. When referencing ids they MUST be EXACTLY the same (including the trailing $). \\n This is the document as an array of JSON blocks (the cursor is BETWEEN two blocks as indicated by cursor: true):\"},{\"role\":\"system\",\"content\":\"[{\\\"id\\\":\\\"ref1$\\\",\\\"block\\\":{\\\"id\\\":\\\"ref1\\\",\\\"type\\\":\\\"paragraph\\\",\\\"props\\\":{\\\"textColor\\\":\\\"default\\\",\\\"backgroundColor\\\":\\\"default\\\",\\\"textAlignment\\\":\\\"left\\\"},\\\"content\\\":[{\\\"type\\\":\\\"text\\\",\\\"text\\\":\\\"Hello, world!\\\",\\\"styles\\\":{}}]}},{\\\"cursor\\\":true},{\\\"id\\\":\\\"ref2$\\\",\\\"block\\\":{\\\"id\\\":\\\"ref2\\\",\\\"type\\\":\\\"paragraph\\\",\\\"props\\\":{\\\"textColor\\\":\\\"default\\\",\\\"backgroundColor\\\":\\\"default\\\",\\\"textAlignment\\\":\\\"left\\\"},\\\"content\\\":[{\\\"type\\\":\\\"text\\\",\\\"text\\\":\\\"Hello, \\\",\\\"styles\\\":{}},{\\\"type\\\":\\\"mention\\\",\\\"props\\\":{\\\"user\\\":\\\"John Doe\\\"}},{\\\"type\\\":\\\"text\\\",\\\"text\\\":\\\"! \\\",\\\"styles\\\":{}},{\\\"type\\\":\\\"text\\\",\\\"text\\\":\\\"How are you doing?\\\",\\\"styles\\\":{\\\"bold\\\":true}},{\\\"type\\\":\\\"text\\\",\\\"text\\\":\\\" \\\",\\\"styles\\\":{}},{\\\"type\\\":\\\"text\\\",\\\"text\\\":\\\"This text is blue!\\\",\\\"styles\\\":{\\\"textColor\\\":\\\"blue\\\"}}]}},{\\\"id\\\":\\\"ref3$\\\",\\\"block\\\":{\\\"id\\\":\\\"ref3\\\",\\\"type\\\":\\\"paragraph\\\",\\\"props\\\":{\\\"textColor\\\":\\\"default\\\",\\\"backgroundColor\\\":\\\"default\\\",\\\"textAlignment\\\":\\\"left\\\"},\\\"content\\\":[{\\\"type\\\":\\\"text\\\",\\\"text\\\":\\\"Hello, world! \\\",\\\"styles\\\":{}},{\\\"type\\\":\\\"text\\\",\\\"text\\\":\\\"Bold text. \\\",\\\"styles\\\":{\\\"bold\\\":true}},{\\\"type\\\":\\\"link\\\",\\\"href\\\":\\\"https://www.google.com\\\",\\\"content\\\":[{\\\"type\\\":\\\"text\\\",\\\"text\\\":\\\"Link.\\\",\\\"styles\\\":{}}]}]}}]\"},{\"role\":\"system\",\"content\":\"The user asks you to do the following:\"},{\"role\":\"user\",\"content\":\"update the content of the second block to 'Hello, updated content'\"},{\"role\":\"system\",\"content\":\"First, determine what part of the document the user is talking about. You SHOULD probably take cursor info into account if needed.\\n EXAMPLE: if user says \\\"below\\\" (without pointing to a specific part of the document) he / she probably indicates the block(s) after the cursor. \\n EXAMPLE: If you want to insert content AT the cursor position (UNLESS indicated otherwise by the user), then you need `referenceId` to point to the block before the cursor with position `after` (or block below and `before`).\\n \\n Prefer updating existing blocks over removing and adding (but this also depends on the user's question).\"}],\"tool_choice\":{\"type\":\"function\",\"function\":{\"name\":\"json\"}},\"tools\":[{\"type\":\"function\",\"function\":{\"name\":\"json\",\"description\":\"Respond with a JSON object.\",\"parameters\":{\"type\":\"object\",\"properties\":{\"operations\":{\"type\":\"array\",\"items\":{\"anyOf\":[{\"type\":\"object\",\"description\":\"Update a block, the new block will replace the existing block.\",\"properties\":{\"type\":{\"type\":\"string\",\"enum\":[\"update\"]},\"id\":{\"type\":\"string\",\"description\":\"id of block to update\"},\"block\":{\"$ref\":\"#/$defs/block\"}},\"required\":[\"type\",\"id\",\"block\"],\"additionalProperties\":false},{\"type\":\"object\",\"description\":\"Insert new blocks\",\"properties\":{\"type\":{\"type\":\"string\",\"enum\":[\"add\"]},\"referenceId\":{\"type\":\"string\",\"description\":\"MUST be an id of a block in the document\"},\"position\":{\"type\":\"string\",\"enum\":[\"before\",\"after\"],\"description\":\"`after` to add blocks AFTER (below) the block with `referenceId`, `before` to add the block BEFORE (above)\"},\"blocks\":{\"items\":{\"$ref\":\"#/$defs/block\"},\"type\":\"array\"}},\"required\":[\"type\",\"referenceId\",\"position\",\"blocks\"],\"additionalProperties\":false},{\"type\":\"object\",\"description\":\"Delete a block\",\"properties\":{\"type\":{\"type\":\"string\",\"enum\":[\"delete\"]},\"id\":{\"type\":\"string\",\"description\":\"id of block to delete\"}},\"required\":[\"type\",\"id\"],\"additionalProperties\":false}]}}},\"additionalProperties\":false,\"required\":[\"operations\"],\"$defs\":{\"styles\":{\"type\":\"object\",\"properties\":{\"bold\":{\"type\":\"boolean\"},\"italic\":{\"type\":\"boolean\"},\"underline\":{\"type\":\"boolean\"},\"strike\":{\"type\":\"boolean\"},\"code\":{\"type\":\"boolean\"},\"textColor\":{\"type\":\"string\"},\"backgroundColor\":{\"type\":\"string\"}},\"additionalProperties\":false},\"styledtext\":{\"type\":\"object\",\"properties\":{\"type\":{\"type\":\"string\",\"enum\":[\"text\"]},\"text\":{\"type\":\"string\"},\"styles\":{\"$ref\":\"#/$defs/styles\"}},\"additionalProperties\":false,\"required\":[\"type\",\"text\"]},\"inlinecontent\":{\"type\":\"array\",\"items\":{\"anyOf\":[{\"type\":\"object\",\"properties\":{\"type\":{\"type\":\"string\",\"enum\":[\"mention\"]},\"props\":{\"type\":\"object\",\"properties\":{\"user\":{\"type\":\"string\"}},\"additionalProperties\":false}},\"additionalProperties\":false,\"required\":[\"type\"]},{\"$ref\":\"#/$defs/styledtext\"},{\"type\":\"object\",\"properties\":{\"type\":{\"type\":\"string\",\"enum\":[\"link\"]},\"content\":{\"type\":\"array\",\"items\":{\"$ref\":\"#/$defs/styledtext\"}},\"href\":{\"type\":\"string\"}},\"additionalProperties\":false,\"required\":[\"type\",\"href\",\"content\"]}]}},\"block\":{\"anyOf\":[{\"type\":\"object\",\"properties\":{\"type\":{\"type\":\"string\",\"enum\":[\"paragraph\",\"quote\",\"bulletListItem\",\"numberedListItem\"]},\"content\":{\"$ref\":\"#/$defs/inlinecontent\"},\"props\":{\"type\":\"object\",\"properties\":{},\"additionalProperties\":false}},\"additionalProperties\":false,\"required\":[\"type\"]},{\"type\":\"object\",\"properties\":{\"type\":{\"type\":\"string\",\"enum\":[\"heading\"]},\"content\":{\"$ref\":\"#/$defs/inlinecontent\"},\"props\":{\"type\":\"object\",\"properties\":{\"level\":{\"type\":\"number\",\"enum\":[1,2,3]}},\"additionalProperties\":false}},\"additionalProperties\":false,\"required\":[\"type\"]},{\"type\":\"object\",\"properties\":{\"type\":{\"type\":\"string\",\"enum\":[\"codeBlock\"]},\"content\":{\"$ref\":\"#/$defs/inlinecontent\"},\"props\":{\"type\":\"object\",\"properties\":{\"language\":{\"type\":\"string\"}},\"additionalProperties\":false}},\"additionalProperties\":false,\"required\":[\"type\"]},{\"type\":\"object\",\"properties\":{\"type\":{\"type\":\"string\",\"enum\":[\"checkListItem\"]},\"content\":{\"$ref\":\"#/$defs/inlinecontent\"},\"props\":{\"type\":\"object\",\"properties\":{\"checked\":{\"type\":\"boolean\"}},\"additionalProperties\":false}},\"additionalProperties\":false,\"required\":[\"type\"]},{\"type\":\"object\",\"properties\":{\"type\":{\"type\":\"string\",\"enum\":[\"table\"]},\"content\":{\"type\":\"object\",\"properties\":{}},\"props\":{\"type\":\"object\",\"properties\":{},\"additionalProperties\":false}},\"additionalProperties\":false,\"required\":[\"type\"]}]}}}}}],\"stream\":true}", - "headers": [], - "cookies": [] - }, - "response": { - "status": 200, - "statusText": "", - "body": "data: {\"id\":\"chatcmpl-BgV4jlhw5Ir5dY4wbMCCHl7nywE0Q\",\"object\":\"chat.completion.chunk\",\"created\":1749468929,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_07871e2ad8\",\"choices\":[{\"index\":0,\"delta\":{\"role\":\"assistant\",\"content\":null,\"tool_calls\":[{\"index\":0,\"id\":\"call_pUQnu2u72iSSoB01uOqAkoEe\",\"type\":\"function\",\"function\":{\"name\":\"json\",\"arguments\":\"\"}}],\"refusal\":null},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BgV4jlhw5Ir5dY4wbMCCHl7nywE0Q\",\"object\":\"chat.completion.chunk\",\"created\":1749468929,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_07871e2ad8\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"{\\\"\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BgV4jlhw5Ir5dY4wbMCCHl7nywE0Q\",\"object\":\"chat.completion.chunk\",\"created\":1749468929,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_07871e2ad8\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"operations\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BgV4jlhw5Ir5dY4wbMCCHl7nywE0Q\",\"object\":\"chat.completion.chunk\",\"created\":1749468929,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_07871e2ad8\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"\\\":[\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BgV4jlhw5Ir5dY4wbMCCHl7nywE0Q\",\"object\":\"chat.completion.chunk\",\"created\":1749468929,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_07871e2ad8\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"{\\\"\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BgV4jlhw5Ir5dY4wbMCCHl7nywE0Q\",\"object\":\"chat.completion.chunk\",\"created\":1749468929,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_07871e2ad8\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"type\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BgV4jlhw5Ir5dY4wbMCCHl7nywE0Q\",\"object\":\"chat.completion.chunk\",\"created\":1749468929,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_07871e2ad8\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"\\\":\\\"\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BgV4jlhw5Ir5dY4wbMCCHl7nywE0Q\",\"object\":\"chat.completion.chunk\",\"created\":1749468929,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_07871e2ad8\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"update\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BgV4jlhw5Ir5dY4wbMCCHl7nywE0Q\",\"object\":\"chat.completion.chunk\",\"created\":1749468929,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_07871e2ad8\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"\\\",\\\"\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BgV4jlhw5Ir5dY4wbMCCHl7nywE0Q\",\"object\":\"chat.completion.chunk\",\"created\":1749468929,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_07871e2ad8\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"id\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BgV4jlhw5Ir5dY4wbMCCHl7nywE0Q\",\"object\":\"chat.completion.chunk\",\"created\":1749468929,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_07871e2ad8\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"\\\":\\\"\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BgV4jlhw5Ir5dY4wbMCCHl7nywE0Q\",\"object\":\"chat.completion.chunk\",\"created\":1749468929,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_07871e2ad8\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"ref\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BgV4jlhw5Ir5dY4wbMCCHl7nywE0Q\",\"object\":\"chat.completion.chunk\",\"created\":1749468929,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_07871e2ad8\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"2\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BgV4jlhw5Ir5dY4wbMCCHl7nywE0Q\",\"object\":\"chat.completion.chunk\",\"created\":1749468929,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_07871e2ad8\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"$\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BgV4jlhw5Ir5dY4wbMCCHl7nywE0Q\",\"object\":\"chat.completion.chunk\",\"created\":1749468929,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_07871e2ad8\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"\\\",\\\"\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BgV4jlhw5Ir5dY4wbMCCHl7nywE0Q\",\"object\":\"chat.completion.chunk\",\"created\":1749468929,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_07871e2ad8\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"block\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BgV4jlhw5Ir5dY4wbMCCHl7nywE0Q\",\"object\":\"chat.completion.chunk\",\"created\":1749468929,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_07871e2ad8\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"\\\":{\\\"\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BgV4jlhw5Ir5dY4wbMCCHl7nywE0Q\",\"object\":\"chat.completion.chunk\",\"created\":1749468929,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_07871e2ad8\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"type\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BgV4jlhw5Ir5dY4wbMCCHl7nywE0Q\",\"object\":\"chat.completion.chunk\",\"created\":1749468929,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_07871e2ad8\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"\\\":\\\"\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BgV4jlhw5Ir5dY4wbMCCHl7nywE0Q\",\"object\":\"chat.completion.chunk\",\"created\":1749468929,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_07871e2ad8\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"paragraph\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BgV4jlhw5Ir5dY4wbMCCHl7nywE0Q\",\"object\":\"chat.completion.chunk\",\"created\":1749468929,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_07871e2ad8\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"\\\",\\\"\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BgV4jlhw5Ir5dY4wbMCCHl7nywE0Q\",\"object\":\"chat.completion.chunk\",\"created\":1749468929,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_07871e2ad8\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"content\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BgV4jlhw5Ir5dY4wbMCCHl7nywE0Q\",\"object\":\"chat.completion.chunk\",\"created\":1749468929,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_07871e2ad8\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"\\\":[\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BgV4jlhw5Ir5dY4wbMCCHl7nywE0Q\",\"object\":\"chat.completion.chunk\",\"created\":1749468929,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_07871e2ad8\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"{\\\"\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BgV4jlhw5Ir5dY4wbMCCHl7nywE0Q\",\"object\":\"chat.completion.chunk\",\"created\":1749468929,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_07871e2ad8\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"type\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BgV4jlhw5Ir5dY4wbMCCHl7nywE0Q\",\"object\":\"chat.completion.chunk\",\"created\":1749468929,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_07871e2ad8\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"\\\":\\\"\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BgV4jlhw5Ir5dY4wbMCCHl7nywE0Q\",\"object\":\"chat.completion.chunk\",\"created\":1749468929,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_07871e2ad8\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"text\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BgV4jlhw5Ir5dY4wbMCCHl7nywE0Q\",\"object\":\"chat.completion.chunk\",\"created\":1749468929,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_07871e2ad8\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"\\\",\\\"\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BgV4jlhw5Ir5dY4wbMCCHl7nywE0Q\",\"object\":\"chat.completion.chunk\",\"created\":1749468929,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_07871e2ad8\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"text\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BgV4jlhw5Ir5dY4wbMCCHl7nywE0Q\",\"object\":\"chat.completion.chunk\",\"created\":1749468929,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_07871e2ad8\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"\\\":\\\"\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BgV4jlhw5Ir5dY4wbMCCHl7nywE0Q\",\"object\":\"chat.completion.chunk\",\"created\":1749468929,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_07871e2ad8\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"Hello\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BgV4jlhw5Ir5dY4wbMCCHl7nywE0Q\",\"object\":\"chat.completion.chunk\",\"created\":1749468929,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_07871e2ad8\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\",\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BgV4jlhw5Ir5dY4wbMCCHl7nywE0Q\",\"object\":\"chat.completion.chunk\",\"created\":1749468929,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_07871e2ad8\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\" updated\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BgV4jlhw5Ir5dY4wbMCCHl7nywE0Q\",\"object\":\"chat.completion.chunk\",\"created\":1749468929,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_07871e2ad8\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\" content\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BgV4jlhw5Ir5dY4wbMCCHl7nywE0Q\",\"object\":\"chat.completion.chunk\",\"created\":1749468929,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_07871e2ad8\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"\\\"}\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BgV4jlhw5Ir5dY4wbMCCHl7nywE0Q\",\"object\":\"chat.completion.chunk\",\"created\":1749468929,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_07871e2ad8\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"]\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BgV4jlhw5Ir5dY4wbMCCHl7nywE0Q\",\"object\":\"chat.completion.chunk\",\"created\":1749468929,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_07871e2ad8\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"}}\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BgV4jlhw5Ir5dY4wbMCCHl7nywE0Q\",\"object\":\"chat.completion.chunk\",\"created\":1749468929,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_07871e2ad8\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"]}\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BgV4jlhw5Ir5dY4wbMCCHl7nywE0Q\",\"object\":\"chat.completion.chunk\",\"created\":1749468929,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_07871e2ad8\",\"choices\":[{\"index\":0,\"delta\":{},\"logprobs\":null,\"finish_reason\":\"stop\"}]}\n\ndata: [DONE]\n\n", - "headers": [] - } -} \ No newline at end of file diff --git a/packages/xl-ai/src/api/formats/json/__snapshots__/json.test.ts/Update/__msw_snapshots__/openai.chat/gpt-4o-2024-08-06 (streaming)/styles + ic in source block, replace content_1_54cde846a56747d40bf32ef3e660bc18.json b/packages/xl-ai/src/api/formats/json/__snapshots__/json.test.ts/Update/__msw_snapshots__/openai.chat/gpt-4o-2024-08-06 (streaming)/styles + ic in source block, replace content_1_54cde846a56747d40bf32ef3e660bc18.json new file mode 100644 index 0000000000..10bf72cb91 --- /dev/null +++ b/packages/xl-ai/src/api/formats/json/__snapshots__/json.test.ts/Update/__msw_snapshots__/openai.chat/gpt-4o-2024-08-06 (streaming)/styles + ic in source block, replace content_1_54cde846a56747d40bf32ef3e660bc18.json @@ -0,0 +1,15 @@ +{ + "request": { + "method": "POST", + "url": "https://localhost:3000/ai?provider=openai&url=https%3A%2F%2Fapi.openai.com%2Fv1%2Fchat%2Fcompletions", + "body": "{\"model\":\"gpt-4o-2024-08-06\",\"temperature\":0,\"messages\":[{\"role\":\"system\",\"content\":\"You're manipulating a text document using JSON blocks. \\n Make sure to follow the json schema provided. When referencing ids they MUST be EXACTLY the same (including the trailing $). \\n This is the document as an array of JSON blocks (the cursor is BETWEEN two blocks as indicated by cursor: true):\"},{\"role\":\"system\",\"content\":\"[{\\\"id\\\":\\\"ref1$\\\",\\\"block\\\":{\\\"id\\\":\\\"ref1\\\",\\\"type\\\":\\\"paragraph\\\",\\\"props\\\":{\\\"textColor\\\":\\\"default\\\",\\\"backgroundColor\\\":\\\"default\\\",\\\"textAlignment\\\":\\\"left\\\"},\\\"content\\\":[{\\\"type\\\":\\\"text\\\",\\\"text\\\":\\\"Hello, world!\\\",\\\"styles\\\":{}}]}},{\\\"cursor\\\":true},{\\\"id\\\":\\\"ref2$\\\",\\\"block\\\":{\\\"id\\\":\\\"ref2\\\",\\\"type\\\":\\\"paragraph\\\",\\\"props\\\":{\\\"textColor\\\":\\\"default\\\",\\\"backgroundColor\\\":\\\"default\\\",\\\"textAlignment\\\":\\\"left\\\"},\\\"content\\\":[{\\\"type\\\":\\\"text\\\",\\\"text\\\":\\\"Hello, \\\",\\\"styles\\\":{}},{\\\"type\\\":\\\"mention\\\",\\\"props\\\":{\\\"user\\\":\\\"John Doe\\\"}},{\\\"type\\\":\\\"text\\\",\\\"text\\\":\\\"! \\\",\\\"styles\\\":{}},{\\\"type\\\":\\\"text\\\",\\\"text\\\":\\\"How are you doing?\\\",\\\"styles\\\":{\\\"bold\\\":true}},{\\\"type\\\":\\\"text\\\",\\\"text\\\":\\\" \\\",\\\"styles\\\":{}},{\\\"type\\\":\\\"text\\\",\\\"text\\\":\\\"This text is blue!\\\",\\\"styles\\\":{\\\"textColor\\\":\\\"blue\\\"}}]}},{\\\"id\\\":\\\"ref3$\\\",\\\"block\\\":{\\\"id\\\":\\\"ref3\\\",\\\"type\\\":\\\"paragraph\\\",\\\"props\\\":{\\\"textColor\\\":\\\"default\\\",\\\"backgroundColor\\\":\\\"default\\\",\\\"textAlignment\\\":\\\"left\\\"},\\\"content\\\":[{\\\"type\\\":\\\"text\\\",\\\"text\\\":\\\"Hello, world! \\\",\\\"styles\\\":{}},{\\\"type\\\":\\\"text\\\",\\\"text\\\":\\\"Bold text. \\\",\\\"styles\\\":{\\\"bold\\\":true}},{\\\"type\\\":\\\"link\\\",\\\"href\\\":\\\"https://www.google.com\\\",\\\"content\\\":[{\\\"type\\\":\\\"text\\\",\\\"text\\\":\\\"Link.\\\",\\\"styles\\\":{}}]}]}}]\"},{\"role\":\"system\",\"content\":\"The user asks you to do the following:\"},{\"role\":\"user\",\"content\":\"update the content of the second block to 'Hello, updated content'\"},{\"role\":\"system\",\"content\":\"First, determine what part of the document the user is talking about. You SHOULD probably take cursor info into account if needed.\\n EXAMPLE: if user says \\\"below\\\" (without pointing to a specific part of the document) he / she probably indicates the block(s) after the cursor. \\n EXAMPLE: If you want to insert content AT the cursor position (UNLESS indicated otherwise by the user), then you need `referenceId` to point to the block before the cursor with position `after` (or block below and `before`).\\n \\n Prefer updating existing blocks over removing and adding (but this also depends on the user's question).\"}],\"tool_choice\":{\"type\":\"function\",\"function\":{\"name\":\"json\"}},\"tools\":[{\"type\":\"function\",\"function\":{\"name\":\"json\",\"description\":\"Respond with a JSON object.\",\"parameters\":{\"type\":\"object\",\"properties\":{\"operations\":{\"type\":\"array\",\"items\":{\"anyOf\":[{\"type\":\"object\",\"description\":\"Update a block, the new block will replace the existing block.\",\"properties\":{\"type\":{\"type\":\"string\",\"enum\":[\"update\"]},\"id\":{\"type\":\"string\",\"description\":\"id of block to update\"},\"block\":{\"$ref\":\"#/$defs/block\"}},\"required\":[\"type\",\"id\",\"block\"],\"additionalProperties\":false},{\"type\":\"object\",\"description\":\"Insert new blocks\",\"properties\":{\"type\":{\"type\":\"string\",\"enum\":[\"add\"]},\"referenceId\":{\"type\":\"string\",\"description\":\"MUST be an id of a block in the document\"},\"position\":{\"type\":\"string\",\"enum\":[\"before\",\"after\"],\"description\":\"`after` to add blocks AFTER (below) the block with `referenceId`, `before` to add the block BEFORE (above)\"},\"blocks\":{\"items\":{\"$ref\":\"#/$defs/block\"},\"type\":\"array\"}},\"required\":[\"type\",\"referenceId\",\"position\",\"blocks\"],\"additionalProperties\":false},{\"type\":\"object\",\"description\":\"Delete a block\",\"properties\":{\"type\":{\"type\":\"string\",\"enum\":[\"delete\"]},\"id\":{\"type\":\"string\",\"description\":\"id of block to delete\"}},\"required\":[\"type\",\"id\"],\"additionalProperties\":false}]}}},\"additionalProperties\":false,\"required\":[\"operations\"],\"$defs\":{\"styles\":{\"type\":\"object\",\"properties\":{\"bold\":{\"type\":\"boolean\"},\"italic\":{\"type\":\"boolean\"},\"underline\":{\"type\":\"boolean\"},\"strike\":{\"type\":\"boolean\"},\"code\":{\"type\":\"boolean\"},\"textColor\":{\"type\":\"string\"},\"backgroundColor\":{\"type\":\"string\"}},\"additionalProperties\":false},\"styledtext\":{\"type\":\"object\",\"properties\":{\"type\":{\"type\":\"string\",\"enum\":[\"text\"]},\"text\":{\"type\":\"string\"},\"styles\":{\"$ref\":\"#/$defs/styles\"}},\"additionalProperties\":false,\"required\":[\"type\",\"text\"]},\"inlinecontent\":{\"type\":\"array\",\"items\":{\"anyOf\":[{\"type\":\"object\",\"properties\":{\"type\":{\"type\":\"string\",\"enum\":[\"mention\"]},\"props\":{\"type\":\"object\",\"properties\":{\"user\":{\"type\":\"string\"}},\"additionalProperties\":false}},\"additionalProperties\":false,\"required\":[\"type\"]},{\"$ref\":\"#/$defs/styledtext\"},{\"type\":\"object\",\"properties\":{\"type\":{\"type\":\"string\",\"enum\":[\"link\"]},\"content\":{\"type\":\"array\",\"items\":{\"$ref\":\"#/$defs/styledtext\"}},\"href\":{\"type\":\"string\"}},\"additionalProperties\":false,\"required\":[\"type\",\"href\",\"content\"]}]}},\"block\":{\"anyOf\":[{\"type\":\"object\",\"properties\":{\"type\":{\"type\":\"string\",\"enum\":[\"paragraph\",\"quote\",\"toggleListItem\",\"bulletListItem\",\"numberedListItem\"]},\"content\":{\"$ref\":\"#/$defs/inlinecontent\"},\"props\":{\"type\":\"object\",\"properties\":{},\"additionalProperties\":false}},\"additionalProperties\":false,\"required\":[\"type\"]},{\"type\":\"object\",\"properties\":{\"type\":{\"type\":\"string\",\"enum\":[\"heading\"]},\"content\":{\"$ref\":\"#/$defs/inlinecontent\"},\"props\":{\"type\":\"object\",\"properties\":{\"level\":{\"type\":\"number\",\"enum\":[1,2,3]},\"isTogglable\":{\"type\":\"boolean\"}},\"additionalProperties\":false}},\"additionalProperties\":false,\"required\":[\"type\"]},{\"type\":\"object\",\"properties\":{\"type\":{\"type\":\"string\",\"enum\":[\"codeBlock\"]},\"content\":{\"$ref\":\"#/$defs/inlinecontent\"},\"props\":{\"type\":\"object\",\"properties\":{\"language\":{\"type\":\"string\"}},\"additionalProperties\":false}},\"additionalProperties\":false,\"required\":[\"type\"]},{\"type\":\"object\",\"properties\":{\"type\":{\"type\":\"string\",\"enum\":[\"checkListItem\"]},\"content\":{\"$ref\":\"#/$defs/inlinecontent\"},\"props\":{\"type\":\"object\",\"properties\":{\"checked\":{\"type\":\"boolean\"}},\"additionalProperties\":false}},\"additionalProperties\":false,\"required\":[\"type\"]},{\"type\":\"object\",\"properties\":{\"type\":{\"type\":\"string\",\"enum\":[\"table\"]},\"content\":{\"type\":\"object\",\"properties\":{}},\"props\":{\"type\":\"object\",\"properties\":{},\"additionalProperties\":false}},\"additionalProperties\":false,\"required\":[\"type\"]}]}}}}}],\"stream\":true}", + "headers": [], + "cookies": [] + }, + "response": { + "status": 200, + "statusText": "", + "body": "data: {\"id\":\"chatcmpl-BhXn5sDLDv2Ll5OzLgk8bX8xc8cgD\",\"object\":\"chat.completion.chunk\",\"created\":1749717695,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_a288987b44\",\"choices\":[{\"index\":0,\"delta\":{\"role\":\"assistant\",\"content\":null,\"tool_calls\":[{\"index\":0,\"id\":\"call_Gx7qxSlAgUJFSMoZoxSIBx6h\",\"type\":\"function\",\"function\":{\"name\":\"json\",\"arguments\":\"\"}}],\"refusal\":null},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BhXn5sDLDv2Ll5OzLgk8bX8xc8cgD\",\"object\":\"chat.completion.chunk\",\"created\":1749717695,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_a288987b44\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"{\\\"\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BhXn5sDLDv2Ll5OzLgk8bX8xc8cgD\",\"object\":\"chat.completion.chunk\",\"created\":1749717695,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_a288987b44\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"operations\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BhXn5sDLDv2Ll5OzLgk8bX8xc8cgD\",\"object\":\"chat.completion.chunk\",\"created\":1749717695,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_a288987b44\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"\\\":[\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BhXn5sDLDv2Ll5OzLgk8bX8xc8cgD\",\"object\":\"chat.completion.chunk\",\"created\":1749717695,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_a288987b44\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"{\\\"\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BhXn5sDLDv2Ll5OzLgk8bX8xc8cgD\",\"object\":\"chat.completion.chunk\",\"created\":1749717695,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_a288987b44\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"type\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BhXn5sDLDv2Ll5OzLgk8bX8xc8cgD\",\"object\":\"chat.completion.chunk\",\"created\":1749717695,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_a288987b44\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"\\\":\\\"\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BhXn5sDLDv2Ll5OzLgk8bX8xc8cgD\",\"object\":\"chat.completion.chunk\",\"created\":1749717695,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_a288987b44\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"update\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BhXn5sDLDv2Ll5OzLgk8bX8xc8cgD\",\"object\":\"chat.completion.chunk\",\"created\":1749717695,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_a288987b44\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"\\\",\\\"\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BhXn5sDLDv2Ll5OzLgk8bX8xc8cgD\",\"object\":\"chat.completion.chunk\",\"created\":1749717695,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_a288987b44\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"id\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BhXn5sDLDv2Ll5OzLgk8bX8xc8cgD\",\"object\":\"chat.completion.chunk\",\"created\":1749717695,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_a288987b44\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"\\\":\\\"\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BhXn5sDLDv2Ll5OzLgk8bX8xc8cgD\",\"object\":\"chat.completion.chunk\",\"created\":1749717695,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_a288987b44\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"ref\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BhXn5sDLDv2Ll5OzLgk8bX8xc8cgD\",\"object\":\"chat.completion.chunk\",\"created\":1749717695,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_a288987b44\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"2\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BhXn5sDLDv2Ll5OzLgk8bX8xc8cgD\",\"object\":\"chat.completion.chunk\",\"created\":1749717695,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_a288987b44\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"$\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BhXn5sDLDv2Ll5OzLgk8bX8xc8cgD\",\"object\":\"chat.completion.chunk\",\"created\":1749717695,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_a288987b44\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"\\\",\\\"\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BhXn5sDLDv2Ll5OzLgk8bX8xc8cgD\",\"object\":\"chat.completion.chunk\",\"created\":1749717695,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_a288987b44\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"block\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BhXn5sDLDv2Ll5OzLgk8bX8xc8cgD\",\"object\":\"chat.completion.chunk\",\"created\":1749717695,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_a288987b44\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"\\\":{\\\"\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BhXn5sDLDv2Ll5OzLgk8bX8xc8cgD\",\"object\":\"chat.completion.chunk\",\"created\":1749717695,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_a288987b44\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"type\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BhXn5sDLDv2Ll5OzLgk8bX8xc8cgD\",\"object\":\"chat.completion.chunk\",\"created\":1749717695,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_a288987b44\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"\\\":\\\"\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BhXn5sDLDv2Ll5OzLgk8bX8xc8cgD\",\"object\":\"chat.completion.chunk\",\"created\":1749717695,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_a288987b44\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"paragraph\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BhXn5sDLDv2Ll5OzLgk8bX8xc8cgD\",\"object\":\"chat.completion.chunk\",\"created\":1749717695,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_a288987b44\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"\\\",\\\"\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BhXn5sDLDv2Ll5OzLgk8bX8xc8cgD\",\"object\":\"chat.completion.chunk\",\"created\":1749717695,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_a288987b44\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"content\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BhXn5sDLDv2Ll5OzLgk8bX8xc8cgD\",\"object\":\"chat.completion.chunk\",\"created\":1749717695,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_a288987b44\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"\\\":[\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BhXn5sDLDv2Ll5OzLgk8bX8xc8cgD\",\"object\":\"chat.completion.chunk\",\"created\":1749717695,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_a288987b44\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"{\\\"\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BhXn5sDLDv2Ll5OzLgk8bX8xc8cgD\",\"object\":\"chat.completion.chunk\",\"created\":1749717695,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_a288987b44\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"type\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BhXn5sDLDv2Ll5OzLgk8bX8xc8cgD\",\"object\":\"chat.completion.chunk\",\"created\":1749717695,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_a288987b44\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"\\\":\\\"\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BhXn5sDLDv2Ll5OzLgk8bX8xc8cgD\",\"object\":\"chat.completion.chunk\",\"created\":1749717695,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_a288987b44\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"text\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BhXn5sDLDv2Ll5OzLgk8bX8xc8cgD\",\"object\":\"chat.completion.chunk\",\"created\":1749717695,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_a288987b44\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"\\\",\\\"\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BhXn5sDLDv2Ll5OzLgk8bX8xc8cgD\",\"object\":\"chat.completion.chunk\",\"created\":1749717695,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_a288987b44\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"text\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BhXn5sDLDv2Ll5OzLgk8bX8xc8cgD\",\"object\":\"chat.completion.chunk\",\"created\":1749717695,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_a288987b44\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"\\\":\\\"\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BhXn5sDLDv2Ll5OzLgk8bX8xc8cgD\",\"object\":\"chat.completion.chunk\",\"created\":1749717695,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_a288987b44\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"Hello\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BhXn5sDLDv2Ll5OzLgk8bX8xc8cgD\",\"object\":\"chat.completion.chunk\",\"created\":1749717695,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_a288987b44\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\",\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BhXn5sDLDv2Ll5OzLgk8bX8xc8cgD\",\"object\":\"chat.completion.chunk\",\"created\":1749717695,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_a288987b44\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\" updated\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BhXn5sDLDv2Ll5OzLgk8bX8xc8cgD\",\"object\":\"chat.completion.chunk\",\"created\":1749717695,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_a288987b44\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\" content\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BhXn5sDLDv2Ll5OzLgk8bX8xc8cgD\",\"object\":\"chat.completion.chunk\",\"created\":1749717695,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_a288987b44\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"\\\",\\\"\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BhXn5sDLDv2Ll5OzLgk8bX8xc8cgD\",\"object\":\"chat.completion.chunk\",\"created\":1749717695,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_a288987b44\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"styles\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BhXn5sDLDv2Ll5OzLgk8bX8xc8cgD\",\"object\":\"chat.completion.chunk\",\"created\":1749717695,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_a288987b44\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"\\\":\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BhXn5sDLDv2Ll5OzLgk8bX8xc8cgD\",\"object\":\"chat.completion.chunk\",\"created\":1749717695,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_a288987b44\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"{\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BhXn5sDLDv2Ll5OzLgk8bX8xc8cgD\",\"object\":\"chat.completion.chunk\",\"created\":1749717695,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_a288987b44\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"}}\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BhXn5sDLDv2Ll5OzLgk8bX8xc8cgD\",\"object\":\"chat.completion.chunk\",\"created\":1749717695,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_a288987b44\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"]\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BhXn5sDLDv2Ll5OzLgk8bX8xc8cgD\",\"object\":\"chat.completion.chunk\",\"created\":1749717695,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_a288987b44\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"}}\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BhXn5sDLDv2Ll5OzLgk8bX8xc8cgD\",\"object\":\"chat.completion.chunk\",\"created\":1749717695,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_a288987b44\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"]}\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BhXn5sDLDv2Ll5OzLgk8bX8xc8cgD\",\"object\":\"chat.completion.chunk\",\"created\":1749717695,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_a288987b44\",\"choices\":[{\"index\":0,\"delta\":{},\"logprobs\":null,\"finish_reason\":\"stop\"}]}\n\ndata: [DONE]\n\n", + "headers": [] + } +} \ No newline at end of file diff --git a/packages/xl-ai/src/api/formats/json/__snapshots__/json.test.ts/Update/__msw_snapshots__/openai.chat/gpt-4o-2024-08-06 (streaming)/styles + ic in source block, update mention prop_1_841b722aad575282b313ceb633a220e6.json b/packages/xl-ai/src/api/formats/json/__snapshots__/json.test.ts/Update/__msw_snapshots__/openai.chat/gpt-4o-2024-08-06 (streaming)/styles + ic in source block, update mention prop_1_3cd1b65f227c6e8946230899bd334990.json similarity index 62% rename from packages/xl-ai/src/api/formats/json/__snapshots__/json.test.ts/Update/__msw_snapshots__/openai.chat/gpt-4o-2024-08-06 (streaming)/styles + ic in source block, update mention prop_1_841b722aad575282b313ceb633a220e6.json rename to packages/xl-ai/src/api/formats/json/__snapshots__/json.test.ts/Update/__msw_snapshots__/openai.chat/gpt-4o-2024-08-06 (streaming)/styles + ic in source block, update mention prop_1_3cd1b65f227c6e8946230899bd334990.json index 2d9edcf965..5a8ea3d96f 100644 --- a/packages/xl-ai/src/api/formats/json/__snapshots__/json.test.ts/Update/__msw_snapshots__/openai.chat/gpt-4o-2024-08-06 (streaming)/styles + ic in source block, update mention prop_1_841b722aad575282b313ceb633a220e6.json +++ b/packages/xl-ai/src/api/formats/json/__snapshots__/json.test.ts/Update/__msw_snapshots__/openai.chat/gpt-4o-2024-08-06 (streaming)/styles + ic in source block, update mention prop_1_3cd1b65f227c6e8946230899bd334990.json @@ -2,14 +2,14 @@ "request": { "method": "POST", "url": "https://localhost:3000/ai?provider=openai&url=https%3A%2F%2Fapi.openai.com%2Fv1%2Fchat%2Fcompletions", - "body": "{\"model\":\"gpt-4o-2024-08-06\",\"temperature\":0,\"messages\":[{\"role\":\"system\",\"content\":\"You're manipulating a text document using JSON blocks. \\n Make sure to follow the json schema provided. When referencing ids they MUST be EXACTLY the same (including the trailing $). \\n This is the document as an array of JSON blocks (the cursor is BETWEEN two blocks as indicated by cursor: true):\"},{\"role\":\"system\",\"content\":\"[{\\\"id\\\":\\\"ref1$\\\",\\\"block\\\":{\\\"id\\\":\\\"ref1\\\",\\\"type\\\":\\\"paragraph\\\",\\\"props\\\":{\\\"textColor\\\":\\\"default\\\",\\\"backgroundColor\\\":\\\"default\\\",\\\"textAlignment\\\":\\\"left\\\"},\\\"content\\\":[{\\\"type\\\":\\\"text\\\",\\\"text\\\":\\\"Hello, world!\\\",\\\"styles\\\":{}}]}},{\\\"cursor\\\":true},{\\\"id\\\":\\\"ref2$\\\",\\\"block\\\":{\\\"id\\\":\\\"ref2\\\",\\\"type\\\":\\\"paragraph\\\",\\\"props\\\":{\\\"textColor\\\":\\\"default\\\",\\\"backgroundColor\\\":\\\"default\\\",\\\"textAlignment\\\":\\\"left\\\"},\\\"content\\\":[{\\\"type\\\":\\\"text\\\",\\\"text\\\":\\\"Hello, \\\",\\\"styles\\\":{}},{\\\"type\\\":\\\"mention\\\",\\\"props\\\":{\\\"user\\\":\\\"John Doe\\\"}},{\\\"type\\\":\\\"text\\\",\\\"text\\\":\\\"! \\\",\\\"styles\\\":{}},{\\\"type\\\":\\\"text\\\",\\\"text\\\":\\\"How are you doing?\\\",\\\"styles\\\":{\\\"bold\\\":true}},{\\\"type\\\":\\\"text\\\",\\\"text\\\":\\\" \\\",\\\"styles\\\":{}},{\\\"type\\\":\\\"text\\\",\\\"text\\\":\\\"This text is blue!\\\",\\\"styles\\\":{\\\"textColor\\\":\\\"blue\\\"}}]}},{\\\"id\\\":\\\"ref3$\\\",\\\"block\\\":{\\\"id\\\":\\\"ref3\\\",\\\"type\\\":\\\"paragraph\\\",\\\"props\\\":{\\\"textColor\\\":\\\"default\\\",\\\"backgroundColor\\\":\\\"default\\\",\\\"textAlignment\\\":\\\"left\\\"},\\\"content\\\":[{\\\"type\\\":\\\"text\\\",\\\"text\\\":\\\"Hello, world! \\\",\\\"styles\\\":{}},{\\\"type\\\":\\\"text\\\",\\\"text\\\":\\\"Bold text. \\\",\\\"styles\\\":{\\\"bold\\\":true}},{\\\"type\\\":\\\"link\\\",\\\"href\\\":\\\"https://www.google.com\\\",\\\"content\\\":[{\\\"type\\\":\\\"text\\\",\\\"text\\\":\\\"Link.\\\",\\\"styles\\\":{}}]}]}}]\"},{\"role\":\"system\",\"content\":\"The user asks you to do the following:\"},{\"role\":\"user\",\"content\":\"update the mention to Jane Doe\"},{\"role\":\"system\",\"content\":\"First, determine what part of the document the user is talking about. You SHOULD probably take cursor info into account if needed.\\n EXAMPLE: if user says \\\"below\\\" (without pointing to a specific part of the document) he / she probably indicates the block(s) after the cursor. \\n EXAMPLE: If you want to insert content AT the cursor position (UNLESS indicated otherwise by the user), then you need `referenceId` to point to the block before the cursor with position `after` (or block below and `before`).\\n \\n Prefer updating existing blocks over removing and adding (but this also depends on the user's question).\"}],\"tool_choice\":{\"type\":\"function\",\"function\":{\"name\":\"json\"}},\"tools\":[{\"type\":\"function\",\"function\":{\"name\":\"json\",\"description\":\"Respond with a JSON object.\",\"parameters\":{\"type\":\"object\",\"properties\":{\"operations\":{\"type\":\"array\",\"items\":{\"anyOf\":[{\"type\":\"object\",\"description\":\"Update a block, the new block will replace the existing block.\",\"properties\":{\"type\":{\"type\":\"string\",\"enum\":[\"update\"]},\"id\":{\"type\":\"string\",\"description\":\"id of block to update\"},\"block\":{\"$ref\":\"#/$defs/block\"}},\"required\":[\"type\",\"id\",\"block\"],\"additionalProperties\":false},{\"type\":\"object\",\"description\":\"Insert new blocks\",\"properties\":{\"type\":{\"type\":\"string\",\"enum\":[\"add\"]},\"referenceId\":{\"type\":\"string\",\"description\":\"MUST be an id of a block in the document\"},\"position\":{\"type\":\"string\",\"enum\":[\"before\",\"after\"],\"description\":\"`after` to add blocks AFTER (below) the block with `referenceId`, `before` to add the block BEFORE (above)\"},\"blocks\":{\"items\":{\"$ref\":\"#/$defs/block\"},\"type\":\"array\"}},\"required\":[\"type\",\"referenceId\",\"position\",\"blocks\"],\"additionalProperties\":false},{\"type\":\"object\",\"description\":\"Delete a block\",\"properties\":{\"type\":{\"type\":\"string\",\"enum\":[\"delete\"]},\"id\":{\"type\":\"string\",\"description\":\"id of block to delete\"}},\"required\":[\"type\",\"id\"],\"additionalProperties\":false}]}}},\"additionalProperties\":false,\"required\":[\"operations\"],\"$defs\":{\"styles\":{\"type\":\"object\",\"properties\":{\"bold\":{\"type\":\"boolean\"},\"italic\":{\"type\":\"boolean\"},\"underline\":{\"type\":\"boolean\"},\"strike\":{\"type\":\"boolean\"},\"code\":{\"type\":\"boolean\"},\"textColor\":{\"type\":\"string\"},\"backgroundColor\":{\"type\":\"string\"}},\"additionalProperties\":false},\"styledtext\":{\"type\":\"object\",\"properties\":{\"type\":{\"type\":\"string\",\"enum\":[\"text\"]},\"text\":{\"type\":\"string\"},\"styles\":{\"$ref\":\"#/$defs/styles\"}},\"additionalProperties\":false,\"required\":[\"type\",\"text\"]},\"inlinecontent\":{\"type\":\"array\",\"items\":{\"anyOf\":[{\"type\":\"object\",\"properties\":{\"type\":{\"type\":\"string\",\"enum\":[\"mention\"]},\"props\":{\"type\":\"object\",\"properties\":{\"user\":{\"type\":\"string\"}},\"additionalProperties\":false}},\"additionalProperties\":false,\"required\":[\"type\"]},{\"$ref\":\"#/$defs/styledtext\"},{\"type\":\"object\",\"properties\":{\"type\":{\"type\":\"string\",\"enum\":[\"link\"]},\"content\":{\"type\":\"array\",\"items\":{\"$ref\":\"#/$defs/styledtext\"}},\"href\":{\"type\":\"string\"}},\"additionalProperties\":false,\"required\":[\"type\",\"href\",\"content\"]}]}},\"block\":{\"anyOf\":[{\"type\":\"object\",\"properties\":{\"type\":{\"type\":\"string\",\"enum\":[\"paragraph\",\"quote\",\"bulletListItem\",\"numberedListItem\"]},\"content\":{\"$ref\":\"#/$defs/inlinecontent\"},\"props\":{\"type\":\"object\",\"properties\":{},\"additionalProperties\":false}},\"additionalProperties\":false,\"required\":[\"type\"]},{\"type\":\"object\",\"properties\":{\"type\":{\"type\":\"string\",\"enum\":[\"heading\"]},\"content\":{\"$ref\":\"#/$defs/inlinecontent\"},\"props\":{\"type\":\"object\",\"properties\":{\"level\":{\"type\":\"number\",\"enum\":[1,2,3]}},\"additionalProperties\":false}},\"additionalProperties\":false,\"required\":[\"type\"]},{\"type\":\"object\",\"properties\":{\"type\":{\"type\":\"string\",\"enum\":[\"codeBlock\"]},\"content\":{\"$ref\":\"#/$defs/inlinecontent\"},\"props\":{\"type\":\"object\",\"properties\":{\"language\":{\"type\":\"string\"}},\"additionalProperties\":false}},\"additionalProperties\":false,\"required\":[\"type\"]},{\"type\":\"object\",\"properties\":{\"type\":{\"type\":\"string\",\"enum\":[\"checkListItem\"]},\"content\":{\"$ref\":\"#/$defs/inlinecontent\"},\"props\":{\"type\":\"object\",\"properties\":{\"checked\":{\"type\":\"boolean\"}},\"additionalProperties\":false}},\"additionalProperties\":false,\"required\":[\"type\"]},{\"type\":\"object\",\"properties\":{\"type\":{\"type\":\"string\",\"enum\":[\"table\"]},\"content\":{\"type\":\"object\",\"properties\":{}},\"props\":{\"type\":\"object\",\"properties\":{},\"additionalProperties\":false}},\"additionalProperties\":false,\"required\":[\"type\"]}]}}}}}],\"stream\":true}", + "body": "{\"model\":\"gpt-4o-2024-08-06\",\"temperature\":0,\"messages\":[{\"role\":\"system\",\"content\":\"You're manipulating a text document using JSON blocks. \\n Make sure to follow the json schema provided. When referencing ids they MUST be EXACTLY the same (including the trailing $). \\n This is the document as an array of JSON blocks (the cursor is BETWEEN two blocks as indicated by cursor: true):\"},{\"role\":\"system\",\"content\":\"[{\\\"id\\\":\\\"ref1$\\\",\\\"block\\\":{\\\"id\\\":\\\"ref1\\\",\\\"type\\\":\\\"paragraph\\\",\\\"props\\\":{\\\"textColor\\\":\\\"default\\\",\\\"backgroundColor\\\":\\\"default\\\",\\\"textAlignment\\\":\\\"left\\\"},\\\"content\\\":[{\\\"type\\\":\\\"text\\\",\\\"text\\\":\\\"Hello, world!\\\",\\\"styles\\\":{}}]}},{\\\"cursor\\\":true},{\\\"id\\\":\\\"ref2$\\\",\\\"block\\\":{\\\"id\\\":\\\"ref2\\\",\\\"type\\\":\\\"paragraph\\\",\\\"props\\\":{\\\"textColor\\\":\\\"default\\\",\\\"backgroundColor\\\":\\\"default\\\",\\\"textAlignment\\\":\\\"left\\\"},\\\"content\\\":[{\\\"type\\\":\\\"text\\\",\\\"text\\\":\\\"Hello, \\\",\\\"styles\\\":{}},{\\\"type\\\":\\\"mention\\\",\\\"props\\\":{\\\"user\\\":\\\"John Doe\\\"}},{\\\"type\\\":\\\"text\\\",\\\"text\\\":\\\"! \\\",\\\"styles\\\":{}},{\\\"type\\\":\\\"text\\\",\\\"text\\\":\\\"How are you doing?\\\",\\\"styles\\\":{\\\"bold\\\":true}},{\\\"type\\\":\\\"text\\\",\\\"text\\\":\\\" \\\",\\\"styles\\\":{}},{\\\"type\\\":\\\"text\\\",\\\"text\\\":\\\"This text is blue!\\\",\\\"styles\\\":{\\\"textColor\\\":\\\"blue\\\"}}]}},{\\\"id\\\":\\\"ref3$\\\",\\\"block\\\":{\\\"id\\\":\\\"ref3\\\",\\\"type\\\":\\\"paragraph\\\",\\\"props\\\":{\\\"textColor\\\":\\\"default\\\",\\\"backgroundColor\\\":\\\"default\\\",\\\"textAlignment\\\":\\\"left\\\"},\\\"content\\\":[{\\\"type\\\":\\\"text\\\",\\\"text\\\":\\\"Hello, world! \\\",\\\"styles\\\":{}},{\\\"type\\\":\\\"text\\\",\\\"text\\\":\\\"Bold text. \\\",\\\"styles\\\":{\\\"bold\\\":true}},{\\\"type\\\":\\\"link\\\",\\\"href\\\":\\\"https://www.google.com\\\",\\\"content\\\":[{\\\"type\\\":\\\"text\\\",\\\"text\\\":\\\"Link.\\\",\\\"styles\\\":{}}]}]}}]\"},{\"role\":\"system\",\"content\":\"The user asks you to do the following:\"},{\"role\":\"user\",\"content\":\"update the mention to Jane Doe\"},{\"role\":\"system\",\"content\":\"First, determine what part of the document the user is talking about. You SHOULD probably take cursor info into account if needed.\\n EXAMPLE: if user says \\\"below\\\" (without pointing to a specific part of the document) he / she probably indicates the block(s) after the cursor. \\n EXAMPLE: If you want to insert content AT the cursor position (UNLESS indicated otherwise by the user), then you need `referenceId` to point to the block before the cursor with position `after` (or block below and `before`).\\n \\n Prefer updating existing blocks over removing and adding (but this also depends on the user's question).\"}],\"tool_choice\":{\"type\":\"function\",\"function\":{\"name\":\"json\"}},\"tools\":[{\"type\":\"function\",\"function\":{\"name\":\"json\",\"description\":\"Respond with a JSON object.\",\"parameters\":{\"type\":\"object\",\"properties\":{\"operations\":{\"type\":\"array\",\"items\":{\"anyOf\":[{\"type\":\"object\",\"description\":\"Update a block, the new block will replace the existing block.\",\"properties\":{\"type\":{\"type\":\"string\",\"enum\":[\"update\"]},\"id\":{\"type\":\"string\",\"description\":\"id of block to update\"},\"block\":{\"$ref\":\"#/$defs/block\"}},\"required\":[\"type\",\"id\",\"block\"],\"additionalProperties\":false},{\"type\":\"object\",\"description\":\"Insert new blocks\",\"properties\":{\"type\":{\"type\":\"string\",\"enum\":[\"add\"]},\"referenceId\":{\"type\":\"string\",\"description\":\"MUST be an id of a block in the document\"},\"position\":{\"type\":\"string\",\"enum\":[\"before\",\"after\"],\"description\":\"`after` to add blocks AFTER (below) the block with `referenceId`, `before` to add the block BEFORE (above)\"},\"blocks\":{\"items\":{\"$ref\":\"#/$defs/block\"},\"type\":\"array\"}},\"required\":[\"type\",\"referenceId\",\"position\",\"blocks\"],\"additionalProperties\":false},{\"type\":\"object\",\"description\":\"Delete a block\",\"properties\":{\"type\":{\"type\":\"string\",\"enum\":[\"delete\"]},\"id\":{\"type\":\"string\",\"description\":\"id of block to delete\"}},\"required\":[\"type\",\"id\"],\"additionalProperties\":false}]}}},\"additionalProperties\":false,\"required\":[\"operations\"],\"$defs\":{\"styles\":{\"type\":\"object\",\"properties\":{\"bold\":{\"type\":\"boolean\"},\"italic\":{\"type\":\"boolean\"},\"underline\":{\"type\":\"boolean\"},\"strike\":{\"type\":\"boolean\"},\"code\":{\"type\":\"boolean\"},\"textColor\":{\"type\":\"string\"},\"backgroundColor\":{\"type\":\"string\"}},\"additionalProperties\":false},\"styledtext\":{\"type\":\"object\",\"properties\":{\"type\":{\"type\":\"string\",\"enum\":[\"text\"]},\"text\":{\"type\":\"string\"},\"styles\":{\"$ref\":\"#/$defs/styles\"}},\"additionalProperties\":false,\"required\":[\"type\",\"text\"]},\"inlinecontent\":{\"type\":\"array\",\"items\":{\"anyOf\":[{\"type\":\"object\",\"properties\":{\"type\":{\"type\":\"string\",\"enum\":[\"mention\"]},\"props\":{\"type\":\"object\",\"properties\":{\"user\":{\"type\":\"string\"}},\"additionalProperties\":false}},\"additionalProperties\":false,\"required\":[\"type\"]},{\"$ref\":\"#/$defs/styledtext\"},{\"type\":\"object\",\"properties\":{\"type\":{\"type\":\"string\",\"enum\":[\"link\"]},\"content\":{\"type\":\"array\",\"items\":{\"$ref\":\"#/$defs/styledtext\"}},\"href\":{\"type\":\"string\"}},\"additionalProperties\":false,\"required\":[\"type\",\"href\",\"content\"]}]}},\"block\":{\"anyOf\":[{\"type\":\"object\",\"properties\":{\"type\":{\"type\":\"string\",\"enum\":[\"paragraph\",\"quote\",\"toggleListItem\",\"bulletListItem\",\"numberedListItem\"]},\"content\":{\"$ref\":\"#/$defs/inlinecontent\"},\"props\":{\"type\":\"object\",\"properties\":{},\"additionalProperties\":false}},\"additionalProperties\":false,\"required\":[\"type\"]},{\"type\":\"object\",\"properties\":{\"type\":{\"type\":\"string\",\"enum\":[\"heading\"]},\"content\":{\"$ref\":\"#/$defs/inlinecontent\"},\"props\":{\"type\":\"object\",\"properties\":{\"level\":{\"type\":\"number\",\"enum\":[1,2,3]},\"isTogglable\":{\"type\":\"boolean\"}},\"additionalProperties\":false}},\"additionalProperties\":false,\"required\":[\"type\"]},{\"type\":\"object\",\"properties\":{\"type\":{\"type\":\"string\",\"enum\":[\"codeBlock\"]},\"content\":{\"$ref\":\"#/$defs/inlinecontent\"},\"props\":{\"type\":\"object\",\"properties\":{\"language\":{\"type\":\"string\"}},\"additionalProperties\":false}},\"additionalProperties\":false,\"required\":[\"type\"]},{\"type\":\"object\",\"properties\":{\"type\":{\"type\":\"string\",\"enum\":[\"checkListItem\"]},\"content\":{\"$ref\":\"#/$defs/inlinecontent\"},\"props\":{\"type\":\"object\",\"properties\":{\"checked\":{\"type\":\"boolean\"}},\"additionalProperties\":false}},\"additionalProperties\":false,\"required\":[\"type\"]},{\"type\":\"object\",\"properties\":{\"type\":{\"type\":\"string\",\"enum\":[\"table\"]},\"content\":{\"type\":\"object\",\"properties\":{}},\"props\":{\"type\":\"object\",\"properties\":{},\"additionalProperties\":false}},\"additionalProperties\":false,\"required\":[\"type\"]}]}}}}}],\"stream\":true}", "headers": [], "cookies": [] }, "response": { "status": 200, "statusText": "", - "body": "data: {\"id\":\"chatcmpl-BgV4uC9yHK6WQZbwcZt5xNiQlzNKj\",\"object\":\"chat.completion.chunk\",\"created\":1749468940,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_a288987b44\",\"choices\":[{\"index\":0,\"delta\":{\"role\":\"assistant\",\"content\":null,\"tool_calls\":[{\"index\":0,\"id\":\"call_cO5wXTlsokRzywtdYL93CawC\",\"type\":\"function\",\"function\":{\"name\":\"json\",\"arguments\":\"\"}}],\"refusal\":null},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BgV4uC9yHK6WQZbwcZt5xNiQlzNKj\",\"object\":\"chat.completion.chunk\",\"created\":1749468940,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_a288987b44\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"{\\\"\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BgV4uC9yHK6WQZbwcZt5xNiQlzNKj\",\"object\":\"chat.completion.chunk\",\"created\":1749468940,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_a288987b44\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"operations\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BgV4uC9yHK6WQZbwcZt5xNiQlzNKj\",\"object\":\"chat.completion.chunk\",\"created\":1749468940,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_a288987b44\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"\\\":[\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BgV4uC9yHK6WQZbwcZt5xNiQlzNKj\",\"object\":\"chat.completion.chunk\",\"created\":1749468940,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_a288987b44\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"{\\\"\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BgV4uC9yHK6WQZbwcZt5xNiQlzNKj\",\"object\":\"chat.completion.chunk\",\"created\":1749468940,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_a288987b44\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"type\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BgV4uC9yHK6WQZbwcZt5xNiQlzNKj\",\"object\":\"chat.completion.chunk\",\"created\":1749468940,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_a288987b44\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"\\\":\\\"\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BgV4uC9yHK6WQZbwcZt5xNiQlzNKj\",\"object\":\"chat.completion.chunk\",\"created\":1749468940,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_a288987b44\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"update\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BgV4uC9yHK6WQZbwcZt5xNiQlzNKj\",\"object\":\"chat.completion.chunk\",\"created\":1749468940,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_a288987b44\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"\\\",\\\"\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BgV4uC9yHK6WQZbwcZt5xNiQlzNKj\",\"object\":\"chat.completion.chunk\",\"created\":1749468940,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_a288987b44\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"id\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BgV4uC9yHK6WQZbwcZt5xNiQlzNKj\",\"object\":\"chat.completion.chunk\",\"created\":1749468940,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_a288987b44\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"\\\":\\\"\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BgV4uC9yHK6WQZbwcZt5xNiQlzNKj\",\"object\":\"chat.completion.chunk\",\"created\":1749468940,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_a288987b44\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"ref\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BgV4uC9yHK6WQZbwcZt5xNiQlzNKj\",\"object\":\"chat.completion.chunk\",\"created\":1749468940,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_a288987b44\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"2\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BgV4uC9yHK6WQZbwcZt5xNiQlzNKj\",\"object\":\"chat.completion.chunk\",\"created\":1749468940,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_a288987b44\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"$\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BgV4uC9yHK6WQZbwcZt5xNiQlzNKj\",\"object\":\"chat.completion.chunk\",\"created\":1749468940,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_a288987b44\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"\\\",\\\"\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BgV4uC9yHK6WQZbwcZt5xNiQlzNKj\",\"object\":\"chat.completion.chunk\",\"created\":1749468940,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_a288987b44\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"block\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BgV4uC9yHK6WQZbwcZt5xNiQlzNKj\",\"object\":\"chat.completion.chunk\",\"created\":1749468940,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_a288987b44\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"\\\":{\\\"\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BgV4uC9yHK6WQZbwcZt5xNiQlzNKj\",\"object\":\"chat.completion.chunk\",\"created\":1749468940,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_a288987b44\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"type\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BgV4uC9yHK6WQZbwcZt5xNiQlzNKj\",\"object\":\"chat.completion.chunk\",\"created\":1749468940,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_a288987b44\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"\\\":\\\"\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BgV4uC9yHK6WQZbwcZt5xNiQlzNKj\",\"object\":\"chat.completion.chunk\",\"created\":1749468940,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_a288987b44\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"paragraph\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BgV4uC9yHK6WQZbwcZt5xNiQlzNKj\",\"object\":\"chat.completion.chunk\",\"created\":1749468940,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_a288987b44\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"\\\",\\\"\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BgV4uC9yHK6WQZbwcZt5xNiQlzNKj\",\"object\":\"chat.completion.chunk\",\"created\":1749468940,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_a288987b44\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"props\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BgV4uC9yHK6WQZbwcZt5xNiQlzNKj\",\"object\":\"chat.completion.chunk\",\"created\":1749468940,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_a288987b44\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"\\\":{\\\"\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BgV4uC9yHK6WQZbwcZt5xNiQlzNKj\",\"object\":\"chat.completion.chunk\",\"created\":1749468940,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_a288987b44\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"text\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BgV4uC9yHK6WQZbwcZt5xNiQlzNKj\",\"object\":\"chat.completion.chunk\",\"created\":1749468940,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_a288987b44\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"Color\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BgV4uC9yHK6WQZbwcZt5xNiQlzNKj\",\"object\":\"chat.completion.chunk\",\"created\":1749468940,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_a288987b44\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"\\\":\\\"\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BgV4uC9yHK6WQZbwcZt5xNiQlzNKj\",\"object\":\"chat.completion.chunk\",\"created\":1749468940,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_a288987b44\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"default\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BgV4uC9yHK6WQZbwcZt5xNiQlzNKj\",\"object\":\"chat.completion.chunk\",\"created\":1749468940,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_a288987b44\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"\\\",\\\"\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BgV4uC9yHK6WQZbwcZt5xNiQlzNKj\",\"object\":\"chat.completion.chunk\",\"created\":1749468940,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_a288987b44\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"background\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BgV4uC9yHK6WQZbwcZt5xNiQlzNKj\",\"object\":\"chat.completion.chunk\",\"created\":1749468940,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_a288987b44\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"Color\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BgV4uC9yHK6WQZbwcZt5xNiQlzNKj\",\"object\":\"chat.completion.chunk\",\"created\":1749468940,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_a288987b44\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"\\\":\\\"\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BgV4uC9yHK6WQZbwcZt5xNiQlzNKj\",\"object\":\"chat.completion.chunk\",\"created\":1749468940,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_a288987b44\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"default\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BgV4uC9yHK6WQZbwcZt5xNiQlzNKj\",\"object\":\"chat.completion.chunk\",\"created\":1749468940,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_a288987b44\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"\\\",\\\"\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BgV4uC9yHK6WQZbwcZt5xNiQlzNKj\",\"object\":\"chat.completion.chunk\",\"created\":1749468940,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_a288987b44\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"text\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BgV4uC9yHK6WQZbwcZt5xNiQlzNKj\",\"object\":\"chat.completion.chunk\",\"created\":1749468940,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_a288987b44\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"Alignment\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BgV4uC9yHK6WQZbwcZt5xNiQlzNKj\",\"object\":\"chat.completion.chunk\",\"created\":1749468940,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_a288987b44\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"\\\":\\\"\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BgV4uC9yHK6WQZbwcZt5xNiQlzNKj\",\"object\":\"chat.completion.chunk\",\"created\":1749468940,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_a288987b44\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"left\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BgV4uC9yHK6WQZbwcZt5xNiQlzNKj\",\"object\":\"chat.completion.chunk\",\"created\":1749468940,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_a288987b44\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"\\\"}\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BgV4uC9yHK6WQZbwcZt5xNiQlzNKj\",\"object\":\"chat.completion.chunk\",\"created\":1749468940,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_a288987b44\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\",\\\"\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BgV4uC9yHK6WQZbwcZt5xNiQlzNKj\",\"object\":\"chat.completion.chunk\",\"created\":1749468940,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_a288987b44\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"content\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BgV4uC9yHK6WQZbwcZt5xNiQlzNKj\",\"object\":\"chat.completion.chunk\",\"created\":1749468940,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_a288987b44\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"\\\":[\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BgV4uC9yHK6WQZbwcZt5xNiQlzNKj\",\"object\":\"chat.completion.chunk\",\"created\":1749468940,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_a288987b44\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"{\\\"\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BgV4uC9yHK6WQZbwcZt5xNiQlzNKj\",\"object\":\"chat.completion.chunk\",\"created\":1749468940,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_a288987b44\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"type\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BgV4uC9yHK6WQZbwcZt5xNiQlzNKj\",\"object\":\"chat.completion.chunk\",\"created\":1749468940,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_a288987b44\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"\\\":\\\"\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BgV4uC9yHK6WQZbwcZt5xNiQlzNKj\",\"object\":\"chat.completion.chunk\",\"created\":1749468940,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_a288987b44\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"text\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BgV4uC9yHK6WQZbwcZt5xNiQlzNKj\",\"object\":\"chat.completion.chunk\",\"created\":1749468940,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_a288987b44\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"\\\",\\\"\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BgV4uC9yHK6WQZbwcZt5xNiQlzNKj\",\"object\":\"chat.completion.chunk\",\"created\":1749468940,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_a288987b44\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"text\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BgV4uC9yHK6WQZbwcZt5xNiQlzNKj\",\"object\":\"chat.completion.chunk\",\"created\":1749468940,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_a288987b44\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"\\\":\\\"\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BgV4uC9yHK6WQZbwcZt5xNiQlzNKj\",\"object\":\"chat.completion.chunk\",\"created\":1749468940,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_a288987b44\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"Hello\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BgV4uC9yHK6WQZbwcZt5xNiQlzNKj\",\"object\":\"chat.completion.chunk\",\"created\":1749468940,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_a288987b44\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\",\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BgV4uC9yHK6WQZbwcZt5xNiQlzNKj\",\"object\":\"chat.completion.chunk\",\"created\":1749468940,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_a288987b44\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\" \\\",\\\"\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BgV4uC9yHK6WQZbwcZt5xNiQlzNKj\",\"object\":\"chat.completion.chunk\",\"created\":1749468940,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_a288987b44\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"styles\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BgV4uC9yHK6WQZbwcZt5xNiQlzNKj\",\"object\":\"chat.completion.chunk\",\"created\":1749468940,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_a288987b44\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"\\\":\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BgV4uC9yHK6WQZbwcZt5xNiQlzNKj\",\"object\":\"chat.completion.chunk\",\"created\":1749468940,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_a288987b44\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"{}\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BgV4uC9yHK6WQZbwcZt5xNiQlzNKj\",\"object\":\"chat.completion.chunk\",\"created\":1749468940,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_a288987b44\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"},{\\\"\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BgV4uC9yHK6WQZbwcZt5xNiQlzNKj\",\"object\":\"chat.completion.chunk\",\"created\":1749468940,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_a288987b44\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"type\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BgV4uC9yHK6WQZbwcZt5xNiQlzNKj\",\"object\":\"chat.completion.chunk\",\"created\":1749468940,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_a288987b44\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"\\\":\\\"\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BgV4uC9yHK6WQZbwcZt5xNiQlzNKj\",\"object\":\"chat.completion.chunk\",\"created\":1749468940,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_a288987b44\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"mention\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BgV4uC9yHK6WQZbwcZt5xNiQlzNKj\",\"object\":\"chat.completion.chunk\",\"created\":1749468940,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_a288987b44\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"\\\",\\\"\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BgV4uC9yHK6WQZbwcZt5xNiQlzNKj\",\"object\":\"chat.completion.chunk\",\"created\":1749468940,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_a288987b44\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"props\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BgV4uC9yHK6WQZbwcZt5xNiQlzNKj\",\"object\":\"chat.completion.chunk\",\"created\":1749468940,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_a288987b44\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"\\\":{\\\"\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BgV4uC9yHK6WQZbwcZt5xNiQlzNKj\",\"object\":\"chat.completion.chunk\",\"created\":1749468940,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_a288987b44\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"user\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BgV4uC9yHK6WQZbwcZt5xNiQlzNKj\",\"object\":\"chat.completion.chunk\",\"created\":1749468940,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_a288987b44\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"\\\":\\\"\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BgV4uC9yHK6WQZbwcZt5xNiQlzNKj\",\"object\":\"chat.completion.chunk\",\"created\":1749468940,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_a288987b44\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"Jane\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BgV4uC9yHK6WQZbwcZt5xNiQlzNKj\",\"object\":\"chat.completion.chunk\",\"created\":1749468940,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_a288987b44\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\" Doe\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BgV4uC9yHK6WQZbwcZt5xNiQlzNKj\",\"object\":\"chat.completion.chunk\",\"created\":1749468940,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_a288987b44\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"\\\"}\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BgV4uC9yHK6WQZbwcZt5xNiQlzNKj\",\"object\":\"chat.completion.chunk\",\"created\":1749468940,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_a288987b44\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"},{\\\"\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BgV4uC9yHK6WQZbwcZt5xNiQlzNKj\",\"object\":\"chat.completion.chunk\",\"created\":1749468940,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_a288987b44\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"type\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BgV4uC9yHK6WQZbwcZt5xNiQlzNKj\",\"object\":\"chat.completion.chunk\",\"created\":1749468940,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_a288987b44\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"\\\":\\\"\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BgV4uC9yHK6WQZbwcZt5xNiQlzNKj\",\"object\":\"chat.completion.chunk\",\"created\":1749468940,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_a288987b44\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"text\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BgV4uC9yHK6WQZbwcZt5xNiQlzNKj\",\"object\":\"chat.completion.chunk\",\"created\":1749468940,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_a288987b44\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"\\\",\\\"\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BgV4uC9yHK6WQZbwcZt5xNiQlzNKj\",\"object\":\"chat.completion.chunk\",\"created\":1749468940,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_a288987b44\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"text\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BgV4uC9yHK6WQZbwcZt5xNiQlzNKj\",\"object\":\"chat.completion.chunk\",\"created\":1749468940,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_a288987b44\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"\\\":\\\"\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BgV4uC9yHK6WQZbwcZt5xNiQlzNKj\",\"object\":\"chat.completion.chunk\",\"created\":1749468940,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_a288987b44\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"!\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BgV4uC9yHK6WQZbwcZt5xNiQlzNKj\",\"object\":\"chat.completion.chunk\",\"created\":1749468940,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_a288987b44\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\" \\\",\\\"\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BgV4uC9yHK6WQZbwcZt5xNiQlzNKj\",\"object\":\"chat.completion.chunk\",\"created\":1749468940,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_a288987b44\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"styles\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BgV4uC9yHK6WQZbwcZt5xNiQlzNKj\",\"object\":\"chat.completion.chunk\",\"created\":1749468940,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_a288987b44\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"\\\":\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BgV4uC9yHK6WQZbwcZt5xNiQlzNKj\",\"object\":\"chat.completion.chunk\",\"created\":1749468940,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_a288987b44\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"{}\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BgV4uC9yHK6WQZbwcZt5xNiQlzNKj\",\"object\":\"chat.completion.chunk\",\"created\":1749468940,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_a288987b44\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"},{\\\"\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BgV4uC9yHK6WQZbwcZt5xNiQlzNKj\",\"object\":\"chat.completion.chunk\",\"created\":1749468940,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_a288987b44\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"type\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BgV4uC9yHK6WQZbwcZt5xNiQlzNKj\",\"object\":\"chat.completion.chunk\",\"created\":1749468940,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_a288987b44\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"\\\":\\\"\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BgV4uC9yHK6WQZbwcZt5xNiQlzNKj\",\"object\":\"chat.completion.chunk\",\"created\":1749468940,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_a288987b44\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"text\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BgV4uC9yHK6WQZbwcZt5xNiQlzNKj\",\"object\":\"chat.completion.chunk\",\"created\":1749468940,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_a288987b44\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"\\\",\\\"\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BgV4uC9yHK6WQZbwcZt5xNiQlzNKj\",\"object\":\"chat.completion.chunk\",\"created\":1749468940,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_a288987b44\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"text\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BgV4uC9yHK6WQZbwcZt5xNiQlzNKj\",\"object\":\"chat.completion.chunk\",\"created\":1749468940,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_a288987b44\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"\\\":\\\"\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BgV4uC9yHK6WQZbwcZt5xNiQlzNKj\",\"object\":\"chat.completion.chunk\",\"created\":1749468940,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_a288987b44\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"How\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BgV4uC9yHK6WQZbwcZt5xNiQlzNKj\",\"object\":\"chat.completion.chunk\",\"created\":1749468940,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_a288987b44\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\" are\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BgV4uC9yHK6WQZbwcZt5xNiQlzNKj\",\"object\":\"chat.completion.chunk\",\"created\":1749468940,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_a288987b44\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\" you\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BgV4uC9yHK6WQZbwcZt5xNiQlzNKj\",\"object\":\"chat.completion.chunk\",\"created\":1749468940,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_a288987b44\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\" doing\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BgV4uC9yHK6WQZbwcZt5xNiQlzNKj\",\"object\":\"chat.completion.chunk\",\"created\":1749468940,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_a288987b44\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"?\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BgV4uC9yHK6WQZbwcZt5xNiQlzNKj\",\"object\":\"chat.completion.chunk\",\"created\":1749468940,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_a288987b44\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"\\\",\\\"\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BgV4uC9yHK6WQZbwcZt5xNiQlzNKj\",\"object\":\"chat.completion.chunk\",\"created\":1749468940,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_a288987b44\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"styles\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BgV4uC9yHK6WQZbwcZt5xNiQlzNKj\",\"object\":\"chat.completion.chunk\",\"created\":1749468940,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_a288987b44\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"\\\":{\\\"\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BgV4uC9yHK6WQZbwcZt5xNiQlzNKj\",\"object\":\"chat.completion.chunk\",\"created\":1749468940,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_a288987b44\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"bold\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BgV4uC9yHK6WQZbwcZt5xNiQlzNKj\",\"object\":\"chat.completion.chunk\",\"created\":1749468940,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_a288987b44\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"\\\":\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BgV4uC9yHK6WQZbwcZt5xNiQlzNKj\",\"object\":\"chat.completion.chunk\",\"created\":1749468940,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_a288987b44\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"true\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BgV4uC9yHK6WQZbwcZt5xNiQlzNKj\",\"object\":\"chat.completion.chunk\",\"created\":1749468940,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_a288987b44\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"}},\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BgV4uC9yHK6WQZbwcZt5xNiQlzNKj\",\"object\":\"chat.completion.chunk\",\"created\":1749468940,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_a288987b44\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"{\\\"\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BgV4uC9yHK6WQZbwcZt5xNiQlzNKj\",\"object\":\"chat.completion.chunk\",\"created\":1749468940,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_a288987b44\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"type\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BgV4uC9yHK6WQZbwcZt5xNiQlzNKj\",\"object\":\"chat.completion.chunk\",\"created\":1749468940,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_a288987b44\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"\\\":\\\"\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BgV4uC9yHK6WQZbwcZt5xNiQlzNKj\",\"object\":\"chat.completion.chunk\",\"created\":1749468940,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_a288987b44\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"text\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BgV4uC9yHK6WQZbwcZt5xNiQlzNKj\",\"object\":\"chat.completion.chunk\",\"created\":1749468940,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_a288987b44\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"\\\",\\\"\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BgV4uC9yHK6WQZbwcZt5xNiQlzNKj\",\"object\":\"chat.completion.chunk\",\"created\":1749468940,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_a288987b44\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"text\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BgV4uC9yHK6WQZbwcZt5xNiQlzNKj\",\"object\":\"chat.completion.chunk\",\"created\":1749468940,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_a288987b44\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"\\\":\\\"\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BgV4uC9yHK6WQZbwcZt5xNiQlzNKj\",\"object\":\"chat.completion.chunk\",\"created\":1749468940,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_a288987b44\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\" \\\",\\\"\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BgV4uC9yHK6WQZbwcZt5xNiQlzNKj\",\"object\":\"chat.completion.chunk\",\"created\":1749468940,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_a288987b44\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"styles\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BgV4uC9yHK6WQZbwcZt5xNiQlzNKj\",\"object\":\"chat.completion.chunk\",\"created\":1749468940,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_a288987b44\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"\\\":\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BgV4uC9yHK6WQZbwcZt5xNiQlzNKj\",\"object\":\"chat.completion.chunk\",\"created\":1749468940,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_a288987b44\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"{}\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BgV4uC9yHK6WQZbwcZt5xNiQlzNKj\",\"object\":\"chat.completion.chunk\",\"created\":1749468940,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_a288987b44\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"},{\\\"\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BgV4uC9yHK6WQZbwcZt5xNiQlzNKj\",\"object\":\"chat.completion.chunk\",\"created\":1749468940,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_a288987b44\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"type\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BgV4uC9yHK6WQZbwcZt5xNiQlzNKj\",\"object\":\"chat.completion.chunk\",\"created\":1749468940,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_a288987b44\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"\\\":\\\"\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BgV4uC9yHK6WQZbwcZt5xNiQlzNKj\",\"object\":\"chat.completion.chunk\",\"created\":1749468940,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_a288987b44\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"text\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BgV4uC9yHK6WQZbwcZt5xNiQlzNKj\",\"object\":\"chat.completion.chunk\",\"created\":1749468940,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_a288987b44\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"\\\",\\\"\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BgV4uC9yHK6WQZbwcZt5xNiQlzNKj\",\"object\":\"chat.completion.chunk\",\"created\":1749468940,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_a288987b44\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"text\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BgV4uC9yHK6WQZbwcZt5xNiQlzNKj\",\"object\":\"chat.completion.chunk\",\"created\":1749468940,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_a288987b44\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"\\\":\\\"\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BgV4uC9yHK6WQZbwcZt5xNiQlzNKj\",\"object\":\"chat.completion.chunk\",\"created\":1749468940,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_a288987b44\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"This\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BgV4uC9yHK6WQZbwcZt5xNiQlzNKj\",\"object\":\"chat.completion.chunk\",\"created\":1749468940,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_a288987b44\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\" text\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BgV4uC9yHK6WQZbwcZt5xNiQlzNKj\",\"object\":\"chat.completion.chunk\",\"created\":1749468940,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_a288987b44\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\" is\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BgV4uC9yHK6WQZbwcZt5xNiQlzNKj\",\"object\":\"chat.completion.chunk\",\"created\":1749468940,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_a288987b44\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\" blue\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BgV4uC9yHK6WQZbwcZt5xNiQlzNKj\",\"object\":\"chat.completion.chunk\",\"created\":1749468940,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_a288987b44\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"!\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BgV4uC9yHK6WQZbwcZt5xNiQlzNKj\",\"object\":\"chat.completion.chunk\",\"created\":1749468940,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_a288987b44\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"\\\",\\\"\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BgV4uC9yHK6WQZbwcZt5xNiQlzNKj\",\"object\":\"chat.completion.chunk\",\"created\":1749468940,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_a288987b44\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"styles\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BgV4uC9yHK6WQZbwcZt5xNiQlzNKj\",\"object\":\"chat.completion.chunk\",\"created\":1749468940,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_a288987b44\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"\\\":{\\\"\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BgV4uC9yHK6WQZbwcZt5xNiQlzNKj\",\"object\":\"chat.completion.chunk\",\"created\":1749468940,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_a288987b44\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"text\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BgV4uC9yHK6WQZbwcZt5xNiQlzNKj\",\"object\":\"chat.completion.chunk\",\"created\":1749468940,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_a288987b44\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"Color\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BgV4uC9yHK6WQZbwcZt5xNiQlzNKj\",\"object\":\"chat.completion.chunk\",\"created\":1749468940,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_a288987b44\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"\\\":\\\"\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BgV4uC9yHK6WQZbwcZt5xNiQlzNKj\",\"object\":\"chat.completion.chunk\",\"created\":1749468940,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_a288987b44\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"blue\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BgV4uC9yHK6WQZbwcZt5xNiQlzNKj\",\"object\":\"chat.completion.chunk\",\"created\":1749468940,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_a288987b44\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"\\\"}}\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BgV4uC9yHK6WQZbwcZt5xNiQlzNKj\",\"object\":\"chat.completion.chunk\",\"created\":1749468940,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_a288987b44\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"]\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BgV4uC9yHK6WQZbwcZt5xNiQlzNKj\",\"object\":\"chat.completion.chunk\",\"created\":1749468940,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_a288987b44\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"}}\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BgV4uC9yHK6WQZbwcZt5xNiQlzNKj\",\"object\":\"chat.completion.chunk\",\"created\":1749468940,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_a288987b44\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"]}\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BgV4uC9yHK6WQZbwcZt5xNiQlzNKj\",\"object\":\"chat.completion.chunk\",\"created\":1749468940,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_a288987b44\",\"choices\":[{\"index\":0,\"delta\":{},\"logprobs\":null,\"finish_reason\":\"stop\"}]}\n\ndata: [DONE]\n\n", + "body": "data: {\"id\":\"chatcmpl-BhXnL5y4gfhzSdN4rZDm8bz6W159W\",\"object\":\"chat.completion.chunk\",\"created\":1749717711,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_a288987b44\",\"choices\":[{\"index\":0,\"delta\":{\"role\":\"assistant\",\"content\":null,\"tool_calls\":[{\"index\":0,\"id\":\"call_PmSZCiltxsa1OofDrma7cpre\",\"type\":\"function\",\"function\":{\"name\":\"json\",\"arguments\":\"\"}}],\"refusal\":null},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BhXnL5y4gfhzSdN4rZDm8bz6W159W\",\"object\":\"chat.completion.chunk\",\"created\":1749717711,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_a288987b44\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"{\\\"\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BhXnL5y4gfhzSdN4rZDm8bz6W159W\",\"object\":\"chat.completion.chunk\",\"created\":1749717711,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_a288987b44\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"operations\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BhXnL5y4gfhzSdN4rZDm8bz6W159W\",\"object\":\"chat.completion.chunk\",\"created\":1749717711,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_a288987b44\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"\\\":[\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BhXnL5y4gfhzSdN4rZDm8bz6W159W\",\"object\":\"chat.completion.chunk\",\"created\":1749717711,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_a288987b44\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"{\\\"\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BhXnL5y4gfhzSdN4rZDm8bz6W159W\",\"object\":\"chat.completion.chunk\",\"created\":1749717711,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_a288987b44\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"type\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BhXnL5y4gfhzSdN4rZDm8bz6W159W\",\"object\":\"chat.completion.chunk\",\"created\":1749717711,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_a288987b44\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"\\\":\\\"\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BhXnL5y4gfhzSdN4rZDm8bz6W159W\",\"object\":\"chat.completion.chunk\",\"created\":1749717711,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_a288987b44\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"update\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BhXnL5y4gfhzSdN4rZDm8bz6W159W\",\"object\":\"chat.completion.chunk\",\"created\":1749717711,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_a288987b44\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"\\\",\\\"\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BhXnL5y4gfhzSdN4rZDm8bz6W159W\",\"object\":\"chat.completion.chunk\",\"created\":1749717711,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_a288987b44\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"id\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BhXnL5y4gfhzSdN4rZDm8bz6W159W\",\"object\":\"chat.completion.chunk\",\"created\":1749717711,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_a288987b44\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"\\\":\\\"\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BhXnL5y4gfhzSdN4rZDm8bz6W159W\",\"object\":\"chat.completion.chunk\",\"created\":1749717711,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_a288987b44\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"ref\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BhXnL5y4gfhzSdN4rZDm8bz6W159W\",\"object\":\"chat.completion.chunk\",\"created\":1749717711,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_a288987b44\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"2\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BhXnL5y4gfhzSdN4rZDm8bz6W159W\",\"object\":\"chat.completion.chunk\",\"created\":1749717711,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_a288987b44\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"$\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BhXnL5y4gfhzSdN4rZDm8bz6W159W\",\"object\":\"chat.completion.chunk\",\"created\":1749717711,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_a288987b44\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"\\\",\\\"\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BhXnL5y4gfhzSdN4rZDm8bz6W159W\",\"object\":\"chat.completion.chunk\",\"created\":1749717711,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_a288987b44\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"block\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BhXnL5y4gfhzSdN4rZDm8bz6W159W\",\"object\":\"chat.completion.chunk\",\"created\":1749717711,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_a288987b44\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"\\\":{\\\"\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BhXnL5y4gfhzSdN4rZDm8bz6W159W\",\"object\":\"chat.completion.chunk\",\"created\":1749717711,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_a288987b44\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"type\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BhXnL5y4gfhzSdN4rZDm8bz6W159W\",\"object\":\"chat.completion.chunk\",\"created\":1749717711,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_a288987b44\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"\\\":\\\"\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BhXnL5y4gfhzSdN4rZDm8bz6W159W\",\"object\":\"chat.completion.chunk\",\"created\":1749717711,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_a288987b44\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"paragraph\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BhXnL5y4gfhzSdN4rZDm8bz6W159W\",\"object\":\"chat.completion.chunk\",\"created\":1749717711,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_a288987b44\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"\\\",\\\"\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BhXnL5y4gfhzSdN4rZDm8bz6W159W\",\"object\":\"chat.completion.chunk\",\"created\":1749717711,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_a288987b44\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"props\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BhXnL5y4gfhzSdN4rZDm8bz6W159W\",\"object\":\"chat.completion.chunk\",\"created\":1749717711,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_a288987b44\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"\\\":{\\\"\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BhXnL5y4gfhzSdN4rZDm8bz6W159W\",\"object\":\"chat.completion.chunk\",\"created\":1749717711,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_a288987b44\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"text\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BhXnL5y4gfhzSdN4rZDm8bz6W159W\",\"object\":\"chat.completion.chunk\",\"created\":1749717711,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_a288987b44\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"Color\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BhXnL5y4gfhzSdN4rZDm8bz6W159W\",\"object\":\"chat.completion.chunk\",\"created\":1749717711,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_a288987b44\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"\\\":\\\"\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BhXnL5y4gfhzSdN4rZDm8bz6W159W\",\"object\":\"chat.completion.chunk\",\"created\":1749717711,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_a288987b44\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"default\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BhXnL5y4gfhzSdN4rZDm8bz6W159W\",\"object\":\"chat.completion.chunk\",\"created\":1749717711,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_a288987b44\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"\\\",\\\"\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BhXnL5y4gfhzSdN4rZDm8bz6W159W\",\"object\":\"chat.completion.chunk\",\"created\":1749717711,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_a288987b44\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"background\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BhXnL5y4gfhzSdN4rZDm8bz6W159W\",\"object\":\"chat.completion.chunk\",\"created\":1749717711,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_a288987b44\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"Color\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BhXnL5y4gfhzSdN4rZDm8bz6W159W\",\"object\":\"chat.completion.chunk\",\"created\":1749717711,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_a288987b44\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"\\\":\\\"\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BhXnL5y4gfhzSdN4rZDm8bz6W159W\",\"object\":\"chat.completion.chunk\",\"created\":1749717711,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_a288987b44\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"default\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BhXnL5y4gfhzSdN4rZDm8bz6W159W\",\"object\":\"chat.completion.chunk\",\"created\":1749717711,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_a288987b44\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"\\\",\\\"\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BhXnL5y4gfhzSdN4rZDm8bz6W159W\",\"object\":\"chat.completion.chunk\",\"created\":1749717711,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_a288987b44\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"text\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BhXnL5y4gfhzSdN4rZDm8bz6W159W\",\"object\":\"chat.completion.chunk\",\"created\":1749717711,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_a288987b44\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"Alignment\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BhXnL5y4gfhzSdN4rZDm8bz6W159W\",\"object\":\"chat.completion.chunk\",\"created\":1749717711,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_a288987b44\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"\\\":\\\"\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BhXnL5y4gfhzSdN4rZDm8bz6W159W\",\"object\":\"chat.completion.chunk\",\"created\":1749717711,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_a288987b44\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"left\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BhXnL5y4gfhzSdN4rZDm8bz6W159W\",\"object\":\"chat.completion.chunk\",\"created\":1749717711,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_a288987b44\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"\\\"}\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BhXnL5y4gfhzSdN4rZDm8bz6W159W\",\"object\":\"chat.completion.chunk\",\"created\":1749717711,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_a288987b44\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\",\\\"\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BhXnL5y4gfhzSdN4rZDm8bz6W159W\",\"object\":\"chat.completion.chunk\",\"created\":1749717711,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_a288987b44\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"content\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BhXnL5y4gfhzSdN4rZDm8bz6W159W\",\"object\":\"chat.completion.chunk\",\"created\":1749717711,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_a288987b44\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"\\\":[\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BhXnL5y4gfhzSdN4rZDm8bz6W159W\",\"object\":\"chat.completion.chunk\",\"created\":1749717711,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_a288987b44\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"{\\\"\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BhXnL5y4gfhzSdN4rZDm8bz6W159W\",\"object\":\"chat.completion.chunk\",\"created\":1749717711,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_a288987b44\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"type\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BhXnL5y4gfhzSdN4rZDm8bz6W159W\",\"object\":\"chat.completion.chunk\",\"created\":1749717711,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_a288987b44\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"\\\":\\\"\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BhXnL5y4gfhzSdN4rZDm8bz6W159W\",\"object\":\"chat.completion.chunk\",\"created\":1749717711,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_a288987b44\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"text\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BhXnL5y4gfhzSdN4rZDm8bz6W159W\",\"object\":\"chat.completion.chunk\",\"created\":1749717711,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_a288987b44\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"\\\",\\\"\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BhXnL5y4gfhzSdN4rZDm8bz6W159W\",\"object\":\"chat.completion.chunk\",\"created\":1749717711,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_a288987b44\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"text\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BhXnL5y4gfhzSdN4rZDm8bz6W159W\",\"object\":\"chat.completion.chunk\",\"created\":1749717711,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_a288987b44\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"\\\":\\\"\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BhXnL5y4gfhzSdN4rZDm8bz6W159W\",\"object\":\"chat.completion.chunk\",\"created\":1749717711,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_a288987b44\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"Hello\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BhXnL5y4gfhzSdN4rZDm8bz6W159W\",\"object\":\"chat.completion.chunk\",\"created\":1749717711,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_a288987b44\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\",\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BhXnL5y4gfhzSdN4rZDm8bz6W159W\",\"object\":\"chat.completion.chunk\",\"created\":1749717711,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_a288987b44\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\" \\\",\\\"\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BhXnL5y4gfhzSdN4rZDm8bz6W159W\",\"object\":\"chat.completion.chunk\",\"created\":1749717711,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_a288987b44\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"styles\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BhXnL5y4gfhzSdN4rZDm8bz6W159W\",\"object\":\"chat.completion.chunk\",\"created\":1749717711,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_a288987b44\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"\\\":\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BhXnL5y4gfhzSdN4rZDm8bz6W159W\",\"object\":\"chat.completion.chunk\",\"created\":1749717711,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_a288987b44\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"{}\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BhXnL5y4gfhzSdN4rZDm8bz6W159W\",\"object\":\"chat.completion.chunk\",\"created\":1749717711,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_a288987b44\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"},{\\\"\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BhXnL5y4gfhzSdN4rZDm8bz6W159W\",\"object\":\"chat.completion.chunk\",\"created\":1749717711,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_a288987b44\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"type\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BhXnL5y4gfhzSdN4rZDm8bz6W159W\",\"object\":\"chat.completion.chunk\",\"created\":1749717711,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_a288987b44\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"\\\":\\\"\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BhXnL5y4gfhzSdN4rZDm8bz6W159W\",\"object\":\"chat.completion.chunk\",\"created\":1749717711,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_a288987b44\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"mention\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BhXnL5y4gfhzSdN4rZDm8bz6W159W\",\"object\":\"chat.completion.chunk\",\"created\":1749717711,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_a288987b44\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"\\\",\\\"\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BhXnL5y4gfhzSdN4rZDm8bz6W159W\",\"object\":\"chat.completion.chunk\",\"created\":1749717711,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_a288987b44\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"props\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BhXnL5y4gfhzSdN4rZDm8bz6W159W\",\"object\":\"chat.completion.chunk\",\"created\":1749717711,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_a288987b44\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"\\\":{\\\"\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BhXnL5y4gfhzSdN4rZDm8bz6W159W\",\"object\":\"chat.completion.chunk\",\"created\":1749717711,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_a288987b44\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"user\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BhXnL5y4gfhzSdN4rZDm8bz6W159W\",\"object\":\"chat.completion.chunk\",\"created\":1749717711,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_a288987b44\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"\\\":\\\"\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BhXnL5y4gfhzSdN4rZDm8bz6W159W\",\"object\":\"chat.completion.chunk\",\"created\":1749717711,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_a288987b44\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"Jane\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BhXnL5y4gfhzSdN4rZDm8bz6W159W\",\"object\":\"chat.completion.chunk\",\"created\":1749717711,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_a288987b44\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\" Doe\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BhXnL5y4gfhzSdN4rZDm8bz6W159W\",\"object\":\"chat.completion.chunk\",\"created\":1749717711,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_a288987b44\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"\\\"}\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BhXnL5y4gfhzSdN4rZDm8bz6W159W\",\"object\":\"chat.completion.chunk\",\"created\":1749717711,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_a288987b44\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"},{\\\"\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BhXnL5y4gfhzSdN4rZDm8bz6W159W\",\"object\":\"chat.completion.chunk\",\"created\":1749717711,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_a288987b44\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"type\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BhXnL5y4gfhzSdN4rZDm8bz6W159W\",\"object\":\"chat.completion.chunk\",\"created\":1749717711,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_a288987b44\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"\\\":\\\"\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BhXnL5y4gfhzSdN4rZDm8bz6W159W\",\"object\":\"chat.completion.chunk\",\"created\":1749717711,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_a288987b44\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"text\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BhXnL5y4gfhzSdN4rZDm8bz6W159W\",\"object\":\"chat.completion.chunk\",\"created\":1749717711,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_a288987b44\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"\\\",\\\"\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BhXnL5y4gfhzSdN4rZDm8bz6W159W\",\"object\":\"chat.completion.chunk\",\"created\":1749717711,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_a288987b44\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"text\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BhXnL5y4gfhzSdN4rZDm8bz6W159W\",\"object\":\"chat.completion.chunk\",\"created\":1749717711,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_a288987b44\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"\\\":\\\"\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BhXnL5y4gfhzSdN4rZDm8bz6W159W\",\"object\":\"chat.completion.chunk\",\"created\":1749717711,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_a288987b44\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"!\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BhXnL5y4gfhzSdN4rZDm8bz6W159W\",\"object\":\"chat.completion.chunk\",\"created\":1749717711,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_a288987b44\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\" \\\",\\\"\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BhXnL5y4gfhzSdN4rZDm8bz6W159W\",\"object\":\"chat.completion.chunk\",\"created\":1749717711,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_a288987b44\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"styles\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BhXnL5y4gfhzSdN4rZDm8bz6W159W\",\"object\":\"chat.completion.chunk\",\"created\":1749717711,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_a288987b44\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"\\\":\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BhXnL5y4gfhzSdN4rZDm8bz6W159W\",\"object\":\"chat.completion.chunk\",\"created\":1749717711,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_a288987b44\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"{}\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BhXnL5y4gfhzSdN4rZDm8bz6W159W\",\"object\":\"chat.completion.chunk\",\"created\":1749717711,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_a288987b44\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"},{\\\"\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BhXnL5y4gfhzSdN4rZDm8bz6W159W\",\"object\":\"chat.completion.chunk\",\"created\":1749717711,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_a288987b44\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"type\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BhXnL5y4gfhzSdN4rZDm8bz6W159W\",\"object\":\"chat.completion.chunk\",\"created\":1749717711,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_a288987b44\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"\\\":\\\"\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BhXnL5y4gfhzSdN4rZDm8bz6W159W\",\"object\":\"chat.completion.chunk\",\"created\":1749717711,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_a288987b44\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"text\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BhXnL5y4gfhzSdN4rZDm8bz6W159W\",\"object\":\"chat.completion.chunk\",\"created\":1749717711,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_a288987b44\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"\\\",\\\"\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BhXnL5y4gfhzSdN4rZDm8bz6W159W\",\"object\":\"chat.completion.chunk\",\"created\":1749717711,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_a288987b44\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"text\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BhXnL5y4gfhzSdN4rZDm8bz6W159W\",\"object\":\"chat.completion.chunk\",\"created\":1749717711,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_a288987b44\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"\\\":\\\"\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BhXnL5y4gfhzSdN4rZDm8bz6W159W\",\"object\":\"chat.completion.chunk\",\"created\":1749717711,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_a288987b44\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"How\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BhXnL5y4gfhzSdN4rZDm8bz6W159W\",\"object\":\"chat.completion.chunk\",\"created\":1749717711,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_a288987b44\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\" are\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BhXnL5y4gfhzSdN4rZDm8bz6W159W\",\"object\":\"chat.completion.chunk\",\"created\":1749717711,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_a288987b44\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\" you\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BhXnL5y4gfhzSdN4rZDm8bz6W159W\",\"object\":\"chat.completion.chunk\",\"created\":1749717711,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_a288987b44\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\" doing\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BhXnL5y4gfhzSdN4rZDm8bz6W159W\",\"object\":\"chat.completion.chunk\",\"created\":1749717711,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_a288987b44\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"?\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BhXnL5y4gfhzSdN4rZDm8bz6W159W\",\"object\":\"chat.completion.chunk\",\"created\":1749717711,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_a288987b44\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"\\\",\\\"\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BhXnL5y4gfhzSdN4rZDm8bz6W159W\",\"object\":\"chat.completion.chunk\",\"created\":1749717711,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_a288987b44\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"styles\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BhXnL5y4gfhzSdN4rZDm8bz6W159W\",\"object\":\"chat.completion.chunk\",\"created\":1749717711,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_a288987b44\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"\\\":{\\\"\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BhXnL5y4gfhzSdN4rZDm8bz6W159W\",\"object\":\"chat.completion.chunk\",\"created\":1749717711,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_a288987b44\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"bold\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BhXnL5y4gfhzSdN4rZDm8bz6W159W\",\"object\":\"chat.completion.chunk\",\"created\":1749717711,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_a288987b44\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"\\\":\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BhXnL5y4gfhzSdN4rZDm8bz6W159W\",\"object\":\"chat.completion.chunk\",\"created\":1749717711,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_a288987b44\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"true\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BhXnL5y4gfhzSdN4rZDm8bz6W159W\",\"object\":\"chat.completion.chunk\",\"created\":1749717711,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_a288987b44\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"}},\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BhXnL5y4gfhzSdN4rZDm8bz6W159W\",\"object\":\"chat.completion.chunk\",\"created\":1749717711,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_a288987b44\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"{\\\"\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BhXnL5y4gfhzSdN4rZDm8bz6W159W\",\"object\":\"chat.completion.chunk\",\"created\":1749717711,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_a288987b44\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"type\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BhXnL5y4gfhzSdN4rZDm8bz6W159W\",\"object\":\"chat.completion.chunk\",\"created\":1749717711,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_a288987b44\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"\\\":\\\"\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BhXnL5y4gfhzSdN4rZDm8bz6W159W\",\"object\":\"chat.completion.chunk\",\"created\":1749717711,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_a288987b44\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"text\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BhXnL5y4gfhzSdN4rZDm8bz6W159W\",\"object\":\"chat.completion.chunk\",\"created\":1749717711,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_a288987b44\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"\\\",\\\"\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BhXnL5y4gfhzSdN4rZDm8bz6W159W\",\"object\":\"chat.completion.chunk\",\"created\":1749717711,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_a288987b44\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"text\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BhXnL5y4gfhzSdN4rZDm8bz6W159W\",\"object\":\"chat.completion.chunk\",\"created\":1749717711,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_a288987b44\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"\\\":\\\"\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BhXnL5y4gfhzSdN4rZDm8bz6W159W\",\"object\":\"chat.completion.chunk\",\"created\":1749717711,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_a288987b44\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\" \\\",\\\"\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BhXnL5y4gfhzSdN4rZDm8bz6W159W\",\"object\":\"chat.completion.chunk\",\"created\":1749717711,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_a288987b44\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"styles\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BhXnL5y4gfhzSdN4rZDm8bz6W159W\",\"object\":\"chat.completion.chunk\",\"created\":1749717711,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_a288987b44\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"\\\":\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BhXnL5y4gfhzSdN4rZDm8bz6W159W\",\"object\":\"chat.completion.chunk\",\"created\":1749717711,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_a288987b44\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"{}\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BhXnL5y4gfhzSdN4rZDm8bz6W159W\",\"object\":\"chat.completion.chunk\",\"created\":1749717711,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_a288987b44\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"},{\\\"\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BhXnL5y4gfhzSdN4rZDm8bz6W159W\",\"object\":\"chat.completion.chunk\",\"created\":1749717711,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_a288987b44\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"type\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BhXnL5y4gfhzSdN4rZDm8bz6W159W\",\"object\":\"chat.completion.chunk\",\"created\":1749717711,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_a288987b44\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"\\\":\\\"\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BhXnL5y4gfhzSdN4rZDm8bz6W159W\",\"object\":\"chat.completion.chunk\",\"created\":1749717711,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_a288987b44\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"text\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BhXnL5y4gfhzSdN4rZDm8bz6W159W\",\"object\":\"chat.completion.chunk\",\"created\":1749717711,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_a288987b44\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"\\\",\\\"\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BhXnL5y4gfhzSdN4rZDm8bz6W159W\",\"object\":\"chat.completion.chunk\",\"created\":1749717711,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_a288987b44\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"text\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BhXnL5y4gfhzSdN4rZDm8bz6W159W\",\"object\":\"chat.completion.chunk\",\"created\":1749717711,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_a288987b44\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"\\\":\\\"\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BhXnL5y4gfhzSdN4rZDm8bz6W159W\",\"object\":\"chat.completion.chunk\",\"created\":1749717711,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_a288987b44\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"This\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BhXnL5y4gfhzSdN4rZDm8bz6W159W\",\"object\":\"chat.completion.chunk\",\"created\":1749717711,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_a288987b44\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\" text\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BhXnL5y4gfhzSdN4rZDm8bz6W159W\",\"object\":\"chat.completion.chunk\",\"created\":1749717711,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_a288987b44\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\" is\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BhXnL5y4gfhzSdN4rZDm8bz6W159W\",\"object\":\"chat.completion.chunk\",\"created\":1749717711,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_a288987b44\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\" blue\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BhXnL5y4gfhzSdN4rZDm8bz6W159W\",\"object\":\"chat.completion.chunk\",\"created\":1749717711,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_a288987b44\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"!\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BhXnL5y4gfhzSdN4rZDm8bz6W159W\",\"object\":\"chat.completion.chunk\",\"created\":1749717711,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_a288987b44\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"\\\",\\\"\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BhXnL5y4gfhzSdN4rZDm8bz6W159W\",\"object\":\"chat.completion.chunk\",\"created\":1749717711,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_a288987b44\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"styles\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BhXnL5y4gfhzSdN4rZDm8bz6W159W\",\"object\":\"chat.completion.chunk\",\"created\":1749717711,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_a288987b44\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"\\\":{\\\"\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BhXnL5y4gfhzSdN4rZDm8bz6W159W\",\"object\":\"chat.completion.chunk\",\"created\":1749717711,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_a288987b44\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"text\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BhXnL5y4gfhzSdN4rZDm8bz6W159W\",\"object\":\"chat.completion.chunk\",\"created\":1749717711,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_a288987b44\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"Color\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BhXnL5y4gfhzSdN4rZDm8bz6W159W\",\"object\":\"chat.completion.chunk\",\"created\":1749717711,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_a288987b44\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"\\\":\\\"\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BhXnL5y4gfhzSdN4rZDm8bz6W159W\",\"object\":\"chat.completion.chunk\",\"created\":1749717711,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_a288987b44\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"blue\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BhXnL5y4gfhzSdN4rZDm8bz6W159W\",\"object\":\"chat.completion.chunk\",\"created\":1749717711,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_a288987b44\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"\\\"}}\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BhXnL5y4gfhzSdN4rZDm8bz6W159W\",\"object\":\"chat.completion.chunk\",\"created\":1749717711,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_a288987b44\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"]\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BhXnL5y4gfhzSdN4rZDm8bz6W159W\",\"object\":\"chat.completion.chunk\",\"created\":1749717711,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_a288987b44\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"}}\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BhXnL5y4gfhzSdN4rZDm8bz6W159W\",\"object\":\"chat.completion.chunk\",\"created\":1749717711,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_a288987b44\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"]}\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BhXnL5y4gfhzSdN4rZDm8bz6W159W\",\"object\":\"chat.completion.chunk\",\"created\":1749717711,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_a288987b44\",\"choices\":[{\"index\":0,\"delta\":{},\"logprobs\":null,\"finish_reason\":\"stop\"}]}\n\ndata: [DONE]\n\n", "headers": [] } } \ No newline at end of file diff --git a/packages/xl-ai/src/api/formats/json/__snapshots__/json.test.ts/Update/__msw_snapshots__/openai.chat/gpt-4o-2024-08-06 (streaming)/styles + ic in source block, update text_1_bdf5f405ea3b8d9aadf31a40b1d32e78.json b/packages/xl-ai/src/api/formats/json/__snapshots__/json.test.ts/Update/__msw_snapshots__/openai.chat/gpt-4o-2024-08-06 (streaming)/styles + ic in source block, update text_1_8fd61178795235d2f7c3a46ed5c1a1fc.json similarity index 62% rename from packages/xl-ai/src/api/formats/json/__snapshots__/json.test.ts/Update/__msw_snapshots__/openai.chat/gpt-4o-2024-08-06 (streaming)/styles + ic in source block, update text_1_bdf5f405ea3b8d9aadf31a40b1d32e78.json rename to packages/xl-ai/src/api/formats/json/__snapshots__/json.test.ts/Update/__msw_snapshots__/openai.chat/gpt-4o-2024-08-06 (streaming)/styles + ic in source block, update text_1_8fd61178795235d2f7c3a46ed5c1a1fc.json index 96827d5cb3..2914c6dd52 100644 --- a/packages/xl-ai/src/api/formats/json/__snapshots__/json.test.ts/Update/__msw_snapshots__/openai.chat/gpt-4o-2024-08-06 (streaming)/styles + ic in source block, update text_1_bdf5f405ea3b8d9aadf31a40b1d32e78.json +++ b/packages/xl-ai/src/api/formats/json/__snapshots__/json.test.ts/Update/__msw_snapshots__/openai.chat/gpt-4o-2024-08-06 (streaming)/styles + ic in source block, update text_1_8fd61178795235d2f7c3a46ed5c1a1fc.json @@ -2,14 +2,14 @@ "request": { "method": "POST", "url": "https://localhost:3000/ai?provider=openai&url=https%3A%2F%2Fapi.openai.com%2Fv1%2Fchat%2Fcompletions", - "body": "{\"model\":\"gpt-4o-2024-08-06\",\"temperature\":0,\"messages\":[{\"role\":\"system\",\"content\":\"You're manipulating a text document using JSON blocks. \\n Make sure to follow the json schema provided. When referencing ids they MUST be EXACTLY the same (including the trailing $). \\n This is the document as an array of JSON blocks (the cursor is BETWEEN two blocks as indicated by cursor: true):\"},{\"role\":\"system\",\"content\":\"[{\\\"id\\\":\\\"ref1$\\\",\\\"block\\\":{\\\"id\\\":\\\"ref1\\\",\\\"type\\\":\\\"paragraph\\\",\\\"props\\\":{\\\"textColor\\\":\\\"default\\\",\\\"backgroundColor\\\":\\\"default\\\",\\\"textAlignment\\\":\\\"left\\\"},\\\"content\\\":[{\\\"type\\\":\\\"text\\\",\\\"text\\\":\\\"Hello, world!\\\",\\\"styles\\\":{}}]}},{\\\"cursor\\\":true},{\\\"id\\\":\\\"ref2$\\\",\\\"block\\\":{\\\"id\\\":\\\"ref2\\\",\\\"type\\\":\\\"paragraph\\\",\\\"props\\\":{\\\"textColor\\\":\\\"default\\\",\\\"backgroundColor\\\":\\\"default\\\",\\\"textAlignment\\\":\\\"left\\\"},\\\"content\\\":[{\\\"type\\\":\\\"text\\\",\\\"text\\\":\\\"Hello, \\\",\\\"styles\\\":{}},{\\\"type\\\":\\\"mention\\\",\\\"props\\\":{\\\"user\\\":\\\"John Doe\\\"}},{\\\"type\\\":\\\"text\\\",\\\"text\\\":\\\"! \\\",\\\"styles\\\":{}},{\\\"type\\\":\\\"text\\\",\\\"text\\\":\\\"How are you doing?\\\",\\\"styles\\\":{\\\"bold\\\":true}},{\\\"type\\\":\\\"text\\\",\\\"text\\\":\\\" \\\",\\\"styles\\\":{}},{\\\"type\\\":\\\"text\\\",\\\"text\\\":\\\"This text is blue!\\\",\\\"styles\\\":{\\\"textColor\\\":\\\"blue\\\"}}]}},{\\\"id\\\":\\\"ref3$\\\",\\\"block\\\":{\\\"id\\\":\\\"ref3\\\",\\\"type\\\":\\\"paragraph\\\",\\\"props\\\":{\\\"textColor\\\":\\\"default\\\",\\\"backgroundColor\\\":\\\"default\\\",\\\"textAlignment\\\":\\\"left\\\"},\\\"content\\\":[{\\\"type\\\":\\\"text\\\",\\\"text\\\":\\\"Hello, world! \\\",\\\"styles\\\":{}},{\\\"type\\\":\\\"text\\\",\\\"text\\\":\\\"Bold text. \\\",\\\"styles\\\":{\\\"bold\\\":true}},{\\\"type\\\":\\\"link\\\",\\\"href\\\":\\\"https://www.google.com\\\",\\\"content\\\":[{\\\"type\\\":\\\"text\\\",\\\"text\\\":\\\"Link.\\\",\\\"styles\\\":{}}]}]}}]\"},{\"role\":\"system\",\"content\":\"The user asks you to do the following:\"},{\"role\":\"user\",\"content\":\"translate the second block to german (use dir instead of Ihnen)\"},{\"role\":\"system\",\"content\":\"First, determine what part of the document the user is talking about. You SHOULD probably take cursor info into account if needed.\\n EXAMPLE: if user says \\\"below\\\" (without pointing to a specific part of the document) he / she probably indicates the block(s) after the cursor. \\n EXAMPLE: If you want to insert content AT the cursor position (UNLESS indicated otherwise by the user), then you need `referenceId` to point to the block before the cursor with position `after` (or block below and `before`).\\n \\n Prefer updating existing blocks over removing and adding (but this also depends on the user's question).\"}],\"tool_choice\":{\"type\":\"function\",\"function\":{\"name\":\"json\"}},\"tools\":[{\"type\":\"function\",\"function\":{\"name\":\"json\",\"description\":\"Respond with a JSON object.\",\"parameters\":{\"type\":\"object\",\"properties\":{\"operations\":{\"type\":\"array\",\"items\":{\"anyOf\":[{\"type\":\"object\",\"description\":\"Update a block, the new block will replace the existing block.\",\"properties\":{\"type\":{\"type\":\"string\",\"enum\":[\"update\"]},\"id\":{\"type\":\"string\",\"description\":\"id of block to update\"},\"block\":{\"$ref\":\"#/$defs/block\"}},\"required\":[\"type\",\"id\",\"block\"],\"additionalProperties\":false},{\"type\":\"object\",\"description\":\"Insert new blocks\",\"properties\":{\"type\":{\"type\":\"string\",\"enum\":[\"add\"]},\"referenceId\":{\"type\":\"string\",\"description\":\"MUST be an id of a block in the document\"},\"position\":{\"type\":\"string\",\"enum\":[\"before\",\"after\"],\"description\":\"`after` to add blocks AFTER (below) the block with `referenceId`, `before` to add the block BEFORE (above)\"},\"blocks\":{\"items\":{\"$ref\":\"#/$defs/block\"},\"type\":\"array\"}},\"required\":[\"type\",\"referenceId\",\"position\",\"blocks\"],\"additionalProperties\":false},{\"type\":\"object\",\"description\":\"Delete a block\",\"properties\":{\"type\":{\"type\":\"string\",\"enum\":[\"delete\"]},\"id\":{\"type\":\"string\",\"description\":\"id of block to delete\"}},\"required\":[\"type\",\"id\"],\"additionalProperties\":false}]}}},\"additionalProperties\":false,\"required\":[\"operations\"],\"$defs\":{\"styles\":{\"type\":\"object\",\"properties\":{\"bold\":{\"type\":\"boolean\"},\"italic\":{\"type\":\"boolean\"},\"underline\":{\"type\":\"boolean\"},\"strike\":{\"type\":\"boolean\"},\"code\":{\"type\":\"boolean\"},\"textColor\":{\"type\":\"string\"},\"backgroundColor\":{\"type\":\"string\"}},\"additionalProperties\":false},\"styledtext\":{\"type\":\"object\",\"properties\":{\"type\":{\"type\":\"string\",\"enum\":[\"text\"]},\"text\":{\"type\":\"string\"},\"styles\":{\"$ref\":\"#/$defs/styles\"}},\"additionalProperties\":false,\"required\":[\"type\",\"text\"]},\"inlinecontent\":{\"type\":\"array\",\"items\":{\"anyOf\":[{\"type\":\"object\",\"properties\":{\"type\":{\"type\":\"string\",\"enum\":[\"mention\"]},\"props\":{\"type\":\"object\",\"properties\":{\"user\":{\"type\":\"string\"}},\"additionalProperties\":false}},\"additionalProperties\":false,\"required\":[\"type\"]},{\"$ref\":\"#/$defs/styledtext\"},{\"type\":\"object\",\"properties\":{\"type\":{\"type\":\"string\",\"enum\":[\"link\"]},\"content\":{\"type\":\"array\",\"items\":{\"$ref\":\"#/$defs/styledtext\"}},\"href\":{\"type\":\"string\"}},\"additionalProperties\":false,\"required\":[\"type\",\"href\",\"content\"]}]}},\"block\":{\"anyOf\":[{\"type\":\"object\",\"properties\":{\"type\":{\"type\":\"string\",\"enum\":[\"paragraph\",\"quote\",\"bulletListItem\",\"numberedListItem\"]},\"content\":{\"$ref\":\"#/$defs/inlinecontent\"},\"props\":{\"type\":\"object\",\"properties\":{},\"additionalProperties\":false}},\"additionalProperties\":false,\"required\":[\"type\"]},{\"type\":\"object\",\"properties\":{\"type\":{\"type\":\"string\",\"enum\":[\"heading\"]},\"content\":{\"$ref\":\"#/$defs/inlinecontent\"},\"props\":{\"type\":\"object\",\"properties\":{\"level\":{\"type\":\"number\",\"enum\":[1,2,3]}},\"additionalProperties\":false}},\"additionalProperties\":false,\"required\":[\"type\"]},{\"type\":\"object\",\"properties\":{\"type\":{\"type\":\"string\",\"enum\":[\"codeBlock\"]},\"content\":{\"$ref\":\"#/$defs/inlinecontent\"},\"props\":{\"type\":\"object\",\"properties\":{\"language\":{\"type\":\"string\"}},\"additionalProperties\":false}},\"additionalProperties\":false,\"required\":[\"type\"]},{\"type\":\"object\",\"properties\":{\"type\":{\"type\":\"string\",\"enum\":[\"checkListItem\"]},\"content\":{\"$ref\":\"#/$defs/inlinecontent\"},\"props\":{\"type\":\"object\",\"properties\":{\"checked\":{\"type\":\"boolean\"}},\"additionalProperties\":false}},\"additionalProperties\":false,\"required\":[\"type\"]},{\"type\":\"object\",\"properties\":{\"type\":{\"type\":\"string\",\"enum\":[\"table\"]},\"content\":{\"type\":\"object\",\"properties\":{}},\"props\":{\"type\":\"object\",\"properties\":{},\"additionalProperties\":false}},\"additionalProperties\":false,\"required\":[\"type\"]}]}}}}}],\"stream\":true}", + "body": "{\"model\":\"gpt-4o-2024-08-06\",\"temperature\":0,\"messages\":[{\"role\":\"system\",\"content\":\"You're manipulating a text document using JSON blocks. \\n Make sure to follow the json schema provided. When referencing ids they MUST be EXACTLY the same (including the trailing $). \\n This is the document as an array of JSON blocks (the cursor is BETWEEN two blocks as indicated by cursor: true):\"},{\"role\":\"system\",\"content\":\"[{\\\"id\\\":\\\"ref1$\\\",\\\"block\\\":{\\\"id\\\":\\\"ref1\\\",\\\"type\\\":\\\"paragraph\\\",\\\"props\\\":{\\\"textColor\\\":\\\"default\\\",\\\"backgroundColor\\\":\\\"default\\\",\\\"textAlignment\\\":\\\"left\\\"},\\\"content\\\":[{\\\"type\\\":\\\"text\\\",\\\"text\\\":\\\"Hello, world!\\\",\\\"styles\\\":{}}]}},{\\\"cursor\\\":true},{\\\"id\\\":\\\"ref2$\\\",\\\"block\\\":{\\\"id\\\":\\\"ref2\\\",\\\"type\\\":\\\"paragraph\\\",\\\"props\\\":{\\\"textColor\\\":\\\"default\\\",\\\"backgroundColor\\\":\\\"default\\\",\\\"textAlignment\\\":\\\"left\\\"},\\\"content\\\":[{\\\"type\\\":\\\"text\\\",\\\"text\\\":\\\"Hello, \\\",\\\"styles\\\":{}},{\\\"type\\\":\\\"mention\\\",\\\"props\\\":{\\\"user\\\":\\\"John Doe\\\"}},{\\\"type\\\":\\\"text\\\",\\\"text\\\":\\\"! \\\",\\\"styles\\\":{}},{\\\"type\\\":\\\"text\\\",\\\"text\\\":\\\"How are you doing?\\\",\\\"styles\\\":{\\\"bold\\\":true}},{\\\"type\\\":\\\"text\\\",\\\"text\\\":\\\" \\\",\\\"styles\\\":{}},{\\\"type\\\":\\\"text\\\",\\\"text\\\":\\\"This text is blue!\\\",\\\"styles\\\":{\\\"textColor\\\":\\\"blue\\\"}}]}},{\\\"id\\\":\\\"ref3$\\\",\\\"block\\\":{\\\"id\\\":\\\"ref3\\\",\\\"type\\\":\\\"paragraph\\\",\\\"props\\\":{\\\"textColor\\\":\\\"default\\\",\\\"backgroundColor\\\":\\\"default\\\",\\\"textAlignment\\\":\\\"left\\\"},\\\"content\\\":[{\\\"type\\\":\\\"text\\\",\\\"text\\\":\\\"Hello, world! \\\",\\\"styles\\\":{}},{\\\"type\\\":\\\"text\\\",\\\"text\\\":\\\"Bold text. \\\",\\\"styles\\\":{\\\"bold\\\":true}},{\\\"type\\\":\\\"link\\\",\\\"href\\\":\\\"https://www.google.com\\\",\\\"content\\\":[{\\\"type\\\":\\\"text\\\",\\\"text\\\":\\\"Link.\\\",\\\"styles\\\":{}}]}]}}]\"},{\"role\":\"system\",\"content\":\"The user asks you to do the following:\"},{\"role\":\"user\",\"content\":\"translate the second block to german (use dir instead of Ihnen)\"},{\"role\":\"system\",\"content\":\"First, determine what part of the document the user is talking about. You SHOULD probably take cursor info into account if needed.\\n EXAMPLE: if user says \\\"below\\\" (without pointing to a specific part of the document) he / she probably indicates the block(s) after the cursor. \\n EXAMPLE: If you want to insert content AT the cursor position (UNLESS indicated otherwise by the user), then you need `referenceId` to point to the block before the cursor with position `after` (or block below and `before`).\\n \\n Prefer updating existing blocks over removing and adding (but this also depends on the user's question).\"}],\"tool_choice\":{\"type\":\"function\",\"function\":{\"name\":\"json\"}},\"tools\":[{\"type\":\"function\",\"function\":{\"name\":\"json\",\"description\":\"Respond with a JSON object.\",\"parameters\":{\"type\":\"object\",\"properties\":{\"operations\":{\"type\":\"array\",\"items\":{\"anyOf\":[{\"type\":\"object\",\"description\":\"Update a block, the new block will replace the existing block.\",\"properties\":{\"type\":{\"type\":\"string\",\"enum\":[\"update\"]},\"id\":{\"type\":\"string\",\"description\":\"id of block to update\"},\"block\":{\"$ref\":\"#/$defs/block\"}},\"required\":[\"type\",\"id\",\"block\"],\"additionalProperties\":false},{\"type\":\"object\",\"description\":\"Insert new blocks\",\"properties\":{\"type\":{\"type\":\"string\",\"enum\":[\"add\"]},\"referenceId\":{\"type\":\"string\",\"description\":\"MUST be an id of a block in the document\"},\"position\":{\"type\":\"string\",\"enum\":[\"before\",\"after\"],\"description\":\"`after` to add blocks AFTER (below) the block with `referenceId`, `before` to add the block BEFORE (above)\"},\"blocks\":{\"items\":{\"$ref\":\"#/$defs/block\"},\"type\":\"array\"}},\"required\":[\"type\",\"referenceId\",\"position\",\"blocks\"],\"additionalProperties\":false},{\"type\":\"object\",\"description\":\"Delete a block\",\"properties\":{\"type\":{\"type\":\"string\",\"enum\":[\"delete\"]},\"id\":{\"type\":\"string\",\"description\":\"id of block to delete\"}},\"required\":[\"type\",\"id\"],\"additionalProperties\":false}]}}},\"additionalProperties\":false,\"required\":[\"operations\"],\"$defs\":{\"styles\":{\"type\":\"object\",\"properties\":{\"bold\":{\"type\":\"boolean\"},\"italic\":{\"type\":\"boolean\"},\"underline\":{\"type\":\"boolean\"},\"strike\":{\"type\":\"boolean\"},\"code\":{\"type\":\"boolean\"},\"textColor\":{\"type\":\"string\"},\"backgroundColor\":{\"type\":\"string\"}},\"additionalProperties\":false},\"styledtext\":{\"type\":\"object\",\"properties\":{\"type\":{\"type\":\"string\",\"enum\":[\"text\"]},\"text\":{\"type\":\"string\"},\"styles\":{\"$ref\":\"#/$defs/styles\"}},\"additionalProperties\":false,\"required\":[\"type\",\"text\"]},\"inlinecontent\":{\"type\":\"array\",\"items\":{\"anyOf\":[{\"type\":\"object\",\"properties\":{\"type\":{\"type\":\"string\",\"enum\":[\"mention\"]},\"props\":{\"type\":\"object\",\"properties\":{\"user\":{\"type\":\"string\"}},\"additionalProperties\":false}},\"additionalProperties\":false,\"required\":[\"type\"]},{\"$ref\":\"#/$defs/styledtext\"},{\"type\":\"object\",\"properties\":{\"type\":{\"type\":\"string\",\"enum\":[\"link\"]},\"content\":{\"type\":\"array\",\"items\":{\"$ref\":\"#/$defs/styledtext\"}},\"href\":{\"type\":\"string\"}},\"additionalProperties\":false,\"required\":[\"type\",\"href\",\"content\"]}]}},\"block\":{\"anyOf\":[{\"type\":\"object\",\"properties\":{\"type\":{\"type\":\"string\",\"enum\":[\"paragraph\",\"quote\",\"toggleListItem\",\"bulletListItem\",\"numberedListItem\"]},\"content\":{\"$ref\":\"#/$defs/inlinecontent\"},\"props\":{\"type\":\"object\",\"properties\":{},\"additionalProperties\":false}},\"additionalProperties\":false,\"required\":[\"type\"]},{\"type\":\"object\",\"properties\":{\"type\":{\"type\":\"string\",\"enum\":[\"heading\"]},\"content\":{\"$ref\":\"#/$defs/inlinecontent\"},\"props\":{\"type\":\"object\",\"properties\":{\"level\":{\"type\":\"number\",\"enum\":[1,2,3]},\"isTogglable\":{\"type\":\"boolean\"}},\"additionalProperties\":false}},\"additionalProperties\":false,\"required\":[\"type\"]},{\"type\":\"object\",\"properties\":{\"type\":{\"type\":\"string\",\"enum\":[\"codeBlock\"]},\"content\":{\"$ref\":\"#/$defs/inlinecontent\"},\"props\":{\"type\":\"object\",\"properties\":{\"language\":{\"type\":\"string\"}},\"additionalProperties\":false}},\"additionalProperties\":false,\"required\":[\"type\"]},{\"type\":\"object\",\"properties\":{\"type\":{\"type\":\"string\",\"enum\":[\"checkListItem\"]},\"content\":{\"$ref\":\"#/$defs/inlinecontent\"},\"props\":{\"type\":\"object\",\"properties\":{\"checked\":{\"type\":\"boolean\"}},\"additionalProperties\":false}},\"additionalProperties\":false,\"required\":[\"type\"]},{\"type\":\"object\",\"properties\":{\"type\":{\"type\":\"string\",\"enum\":[\"table\"]},\"content\":{\"type\":\"object\",\"properties\":{}},\"props\":{\"type\":\"object\",\"properties\":{},\"additionalProperties\":false}},\"additionalProperties\":false,\"required\":[\"type\"]}]}}}}}],\"stream\":true}", "headers": [], "cookies": [] }, "response": { "status": 200, "statusText": "", - "body": "data: {\"id\":\"chatcmpl-BgV4kLx2TW7c4zhZ3sra37ATfT5O9\",\"object\":\"chat.completion.chunk\",\"created\":1749468930,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_a288987b44\",\"choices\":[{\"index\":0,\"delta\":{\"role\":\"assistant\",\"content\":null,\"tool_calls\":[{\"index\":0,\"id\":\"call_Acvg8osriJu9nkHN8Ed6KHZk\",\"type\":\"function\",\"function\":{\"name\":\"json\",\"arguments\":\"\"}}],\"refusal\":null},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BgV4kLx2TW7c4zhZ3sra37ATfT5O9\",\"object\":\"chat.completion.chunk\",\"created\":1749468930,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_a288987b44\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"{\\\"\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BgV4kLx2TW7c4zhZ3sra37ATfT5O9\",\"object\":\"chat.completion.chunk\",\"created\":1749468930,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_a288987b44\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"operations\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BgV4kLx2TW7c4zhZ3sra37ATfT5O9\",\"object\":\"chat.completion.chunk\",\"created\":1749468930,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_a288987b44\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"\\\":[\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BgV4kLx2TW7c4zhZ3sra37ATfT5O9\",\"object\":\"chat.completion.chunk\",\"created\":1749468930,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_a288987b44\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"{\\\"\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BgV4kLx2TW7c4zhZ3sra37ATfT5O9\",\"object\":\"chat.completion.chunk\",\"created\":1749468930,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_a288987b44\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"type\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BgV4kLx2TW7c4zhZ3sra37ATfT5O9\",\"object\":\"chat.completion.chunk\",\"created\":1749468930,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_a288987b44\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"\\\":\\\"\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BgV4kLx2TW7c4zhZ3sra37ATfT5O9\",\"object\":\"chat.completion.chunk\",\"created\":1749468930,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_a288987b44\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"update\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BgV4kLx2TW7c4zhZ3sra37ATfT5O9\",\"object\":\"chat.completion.chunk\",\"created\":1749468930,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_a288987b44\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"\\\",\\\"\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BgV4kLx2TW7c4zhZ3sra37ATfT5O9\",\"object\":\"chat.completion.chunk\",\"created\":1749468930,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_a288987b44\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"id\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BgV4kLx2TW7c4zhZ3sra37ATfT5O9\",\"object\":\"chat.completion.chunk\",\"created\":1749468930,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_a288987b44\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"\\\":\\\"\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BgV4kLx2TW7c4zhZ3sra37ATfT5O9\",\"object\":\"chat.completion.chunk\",\"created\":1749468930,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_a288987b44\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"ref\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BgV4kLx2TW7c4zhZ3sra37ATfT5O9\",\"object\":\"chat.completion.chunk\",\"created\":1749468930,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_a288987b44\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"2\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BgV4kLx2TW7c4zhZ3sra37ATfT5O9\",\"object\":\"chat.completion.chunk\",\"created\":1749468930,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_a288987b44\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"$\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BgV4kLx2TW7c4zhZ3sra37ATfT5O9\",\"object\":\"chat.completion.chunk\",\"created\":1749468930,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_a288987b44\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"\\\",\\\"\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BgV4kLx2TW7c4zhZ3sra37ATfT5O9\",\"object\":\"chat.completion.chunk\",\"created\":1749468930,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_a288987b44\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"block\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BgV4kLx2TW7c4zhZ3sra37ATfT5O9\",\"object\":\"chat.completion.chunk\",\"created\":1749468930,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_a288987b44\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"\\\":{\\\"\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BgV4kLx2TW7c4zhZ3sra37ATfT5O9\",\"object\":\"chat.completion.chunk\",\"created\":1749468930,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_a288987b44\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"type\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BgV4kLx2TW7c4zhZ3sra37ATfT5O9\",\"object\":\"chat.completion.chunk\",\"created\":1749468930,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_a288987b44\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"\\\":\\\"\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BgV4kLx2TW7c4zhZ3sra37ATfT5O9\",\"object\":\"chat.completion.chunk\",\"created\":1749468930,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_a288987b44\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"paragraph\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BgV4kLx2TW7c4zhZ3sra37ATfT5O9\",\"object\":\"chat.completion.chunk\",\"created\":1749468930,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_a288987b44\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"\\\",\\\"\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BgV4kLx2TW7c4zhZ3sra37ATfT5O9\",\"object\":\"chat.completion.chunk\",\"created\":1749468930,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_a288987b44\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"content\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BgV4kLx2TW7c4zhZ3sra37ATfT5O9\",\"object\":\"chat.completion.chunk\",\"created\":1749468930,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_a288987b44\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"\\\":[\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BgV4kLx2TW7c4zhZ3sra37ATfT5O9\",\"object\":\"chat.completion.chunk\",\"created\":1749468930,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_a288987b44\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"{\\\"\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BgV4kLx2TW7c4zhZ3sra37ATfT5O9\",\"object\":\"chat.completion.chunk\",\"created\":1749468930,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_a288987b44\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"type\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BgV4kLx2TW7c4zhZ3sra37ATfT5O9\",\"object\":\"chat.completion.chunk\",\"created\":1749468930,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_a288987b44\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"\\\":\\\"\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BgV4kLx2TW7c4zhZ3sra37ATfT5O9\",\"object\":\"chat.completion.chunk\",\"created\":1749468930,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_a288987b44\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"text\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BgV4kLx2TW7c4zhZ3sra37ATfT5O9\",\"object\":\"chat.completion.chunk\",\"created\":1749468930,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_a288987b44\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"\\\",\\\"\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BgV4kLx2TW7c4zhZ3sra37ATfT5O9\",\"object\":\"chat.completion.chunk\",\"created\":1749468930,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_a288987b44\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"text\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BgV4kLx2TW7c4zhZ3sra37ATfT5O9\",\"object\":\"chat.completion.chunk\",\"created\":1749468930,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_a288987b44\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"\\\":\\\"\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BgV4kLx2TW7c4zhZ3sra37ATfT5O9\",\"object\":\"chat.completion.chunk\",\"created\":1749468930,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_a288987b44\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"Hallo\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BgV4kLx2TW7c4zhZ3sra37ATfT5O9\",\"object\":\"chat.completion.chunk\",\"created\":1749468930,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_a288987b44\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\",\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BgV4kLx2TW7c4zhZ3sra37ATfT5O9\",\"object\":\"chat.completion.chunk\",\"created\":1749468930,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_a288987b44\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\" \\\",\\\"\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BgV4kLx2TW7c4zhZ3sra37ATfT5O9\",\"object\":\"chat.completion.chunk\",\"created\":1749468930,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_a288987b44\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"styles\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BgV4kLx2TW7c4zhZ3sra37ATfT5O9\",\"object\":\"chat.completion.chunk\",\"created\":1749468930,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_a288987b44\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"\\\":\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BgV4kLx2TW7c4zhZ3sra37ATfT5O9\",\"object\":\"chat.completion.chunk\",\"created\":1749468930,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_a288987b44\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"{}\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BgV4kLx2TW7c4zhZ3sra37ATfT5O9\",\"object\":\"chat.completion.chunk\",\"created\":1749468930,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_a288987b44\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"},{\\\"\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BgV4kLx2TW7c4zhZ3sra37ATfT5O9\",\"object\":\"chat.completion.chunk\",\"created\":1749468930,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_a288987b44\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"type\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BgV4kLx2TW7c4zhZ3sra37ATfT5O9\",\"object\":\"chat.completion.chunk\",\"created\":1749468930,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_a288987b44\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"\\\":\\\"\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BgV4kLx2TW7c4zhZ3sra37ATfT5O9\",\"object\":\"chat.completion.chunk\",\"created\":1749468930,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_a288987b44\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"mention\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BgV4kLx2TW7c4zhZ3sra37ATfT5O9\",\"object\":\"chat.completion.chunk\",\"created\":1749468930,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_a288987b44\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"\\\",\\\"\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BgV4kLx2TW7c4zhZ3sra37ATfT5O9\",\"object\":\"chat.completion.chunk\",\"created\":1749468930,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_a288987b44\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"props\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BgV4kLx2TW7c4zhZ3sra37ATfT5O9\",\"object\":\"chat.completion.chunk\",\"created\":1749468930,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_a288987b44\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"\\\":{\\\"\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BgV4kLx2TW7c4zhZ3sra37ATfT5O9\",\"object\":\"chat.completion.chunk\",\"created\":1749468930,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_a288987b44\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"user\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BgV4kLx2TW7c4zhZ3sra37ATfT5O9\",\"object\":\"chat.completion.chunk\",\"created\":1749468930,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_a288987b44\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"\\\":\\\"\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BgV4kLx2TW7c4zhZ3sra37ATfT5O9\",\"object\":\"chat.completion.chunk\",\"created\":1749468930,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_a288987b44\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"John\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BgV4kLx2TW7c4zhZ3sra37ATfT5O9\",\"object\":\"chat.completion.chunk\",\"created\":1749468930,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_a288987b44\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\" Doe\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BgV4kLx2TW7c4zhZ3sra37ATfT5O9\",\"object\":\"chat.completion.chunk\",\"created\":1749468930,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_a288987b44\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"\\\"}\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BgV4kLx2TW7c4zhZ3sra37ATfT5O9\",\"object\":\"chat.completion.chunk\",\"created\":1749468930,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_a288987b44\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"},{\\\"\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BgV4kLx2TW7c4zhZ3sra37ATfT5O9\",\"object\":\"chat.completion.chunk\",\"created\":1749468930,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_a288987b44\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"type\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BgV4kLx2TW7c4zhZ3sra37ATfT5O9\",\"object\":\"chat.completion.chunk\",\"created\":1749468930,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_a288987b44\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"\\\":\\\"\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BgV4kLx2TW7c4zhZ3sra37ATfT5O9\",\"object\":\"chat.completion.chunk\",\"created\":1749468930,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_a288987b44\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"text\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BgV4kLx2TW7c4zhZ3sra37ATfT5O9\",\"object\":\"chat.completion.chunk\",\"created\":1749468930,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_a288987b44\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"\\\",\\\"\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BgV4kLx2TW7c4zhZ3sra37ATfT5O9\",\"object\":\"chat.completion.chunk\",\"created\":1749468930,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_a288987b44\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"text\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BgV4kLx2TW7c4zhZ3sra37ATfT5O9\",\"object\":\"chat.completion.chunk\",\"created\":1749468930,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_a288987b44\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"\\\":\\\"\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BgV4kLx2TW7c4zhZ3sra37ATfT5O9\",\"object\":\"chat.completion.chunk\",\"created\":1749468930,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_a288987b44\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"!\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BgV4kLx2TW7c4zhZ3sra37ATfT5O9\",\"object\":\"chat.completion.chunk\",\"created\":1749468930,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_a288987b44\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\" \\\",\\\"\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BgV4kLx2TW7c4zhZ3sra37ATfT5O9\",\"object\":\"chat.completion.chunk\",\"created\":1749468930,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_a288987b44\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"styles\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BgV4kLx2TW7c4zhZ3sra37ATfT5O9\",\"object\":\"chat.completion.chunk\",\"created\":1749468930,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_a288987b44\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"\\\":\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BgV4kLx2TW7c4zhZ3sra37ATfT5O9\",\"object\":\"chat.completion.chunk\",\"created\":1749468930,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_a288987b44\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"{}\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BgV4kLx2TW7c4zhZ3sra37ATfT5O9\",\"object\":\"chat.completion.chunk\",\"created\":1749468930,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_a288987b44\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"},{\\\"\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BgV4kLx2TW7c4zhZ3sra37ATfT5O9\",\"object\":\"chat.completion.chunk\",\"created\":1749468930,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_a288987b44\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"type\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BgV4kLx2TW7c4zhZ3sra37ATfT5O9\",\"object\":\"chat.completion.chunk\",\"created\":1749468930,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_a288987b44\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"\\\":\\\"\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BgV4kLx2TW7c4zhZ3sra37ATfT5O9\",\"object\":\"chat.completion.chunk\",\"created\":1749468930,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_a288987b44\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"text\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BgV4kLx2TW7c4zhZ3sra37ATfT5O9\",\"object\":\"chat.completion.chunk\",\"created\":1749468930,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_a288987b44\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"\\\",\\\"\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BgV4kLx2TW7c4zhZ3sra37ATfT5O9\",\"object\":\"chat.completion.chunk\",\"created\":1749468930,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_a288987b44\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"text\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BgV4kLx2TW7c4zhZ3sra37ATfT5O9\",\"object\":\"chat.completion.chunk\",\"created\":1749468930,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_a288987b44\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"\\\":\\\"\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BgV4kLx2TW7c4zhZ3sra37ATfT5O9\",\"object\":\"chat.completion.chunk\",\"created\":1749468930,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_a288987b44\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"Wie\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BgV4kLx2TW7c4zhZ3sra37ATfT5O9\",\"object\":\"chat.completion.chunk\",\"created\":1749468930,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_a288987b44\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\" geht\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BgV4kLx2TW7c4zhZ3sra37ATfT5O9\",\"object\":\"chat.completion.chunk\",\"created\":1749468930,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_a288987b44\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\" es\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BgV4kLx2TW7c4zhZ3sra37ATfT5O9\",\"object\":\"chat.completion.chunk\",\"created\":1749468930,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_a288987b44\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\" dir\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BgV4kLx2TW7c4zhZ3sra37ATfT5O9\",\"object\":\"chat.completion.chunk\",\"created\":1749468930,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_a288987b44\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"?\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BgV4kLx2TW7c4zhZ3sra37ATfT5O9\",\"object\":\"chat.completion.chunk\",\"created\":1749468930,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_a288987b44\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"\\\",\\\"\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BgV4kLx2TW7c4zhZ3sra37ATfT5O9\",\"object\":\"chat.completion.chunk\",\"created\":1749468930,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_a288987b44\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"styles\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BgV4kLx2TW7c4zhZ3sra37ATfT5O9\",\"object\":\"chat.completion.chunk\",\"created\":1749468930,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_a288987b44\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"\\\":{\\\"\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BgV4kLx2TW7c4zhZ3sra37ATfT5O9\",\"object\":\"chat.completion.chunk\",\"created\":1749468930,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_a288987b44\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"bold\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BgV4kLx2TW7c4zhZ3sra37ATfT5O9\",\"object\":\"chat.completion.chunk\",\"created\":1749468930,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_a288987b44\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"\\\":\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BgV4kLx2TW7c4zhZ3sra37ATfT5O9\",\"object\":\"chat.completion.chunk\",\"created\":1749468930,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_a288987b44\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"true\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BgV4kLx2TW7c4zhZ3sra37ATfT5O9\",\"object\":\"chat.completion.chunk\",\"created\":1749468930,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_a288987b44\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"}},\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BgV4kLx2TW7c4zhZ3sra37ATfT5O9\",\"object\":\"chat.completion.chunk\",\"created\":1749468930,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_a288987b44\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"{\\\"\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BgV4kLx2TW7c4zhZ3sra37ATfT5O9\",\"object\":\"chat.completion.chunk\",\"created\":1749468930,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_a288987b44\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"type\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BgV4kLx2TW7c4zhZ3sra37ATfT5O9\",\"object\":\"chat.completion.chunk\",\"created\":1749468930,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_a288987b44\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"\\\":\\\"\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BgV4kLx2TW7c4zhZ3sra37ATfT5O9\",\"object\":\"chat.completion.chunk\",\"created\":1749468930,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_a288987b44\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"text\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BgV4kLx2TW7c4zhZ3sra37ATfT5O9\",\"object\":\"chat.completion.chunk\",\"created\":1749468930,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_a288987b44\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"\\\",\\\"\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BgV4kLx2TW7c4zhZ3sra37ATfT5O9\",\"object\":\"chat.completion.chunk\",\"created\":1749468930,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_a288987b44\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"text\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BgV4kLx2TW7c4zhZ3sra37ATfT5O9\",\"object\":\"chat.completion.chunk\",\"created\":1749468930,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_a288987b44\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"\\\":\\\"\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BgV4kLx2TW7c4zhZ3sra37ATfT5O9\",\"object\":\"chat.completion.chunk\",\"created\":1749468930,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_a288987b44\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\" \\\",\\\"\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BgV4kLx2TW7c4zhZ3sra37ATfT5O9\",\"object\":\"chat.completion.chunk\",\"created\":1749468930,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_a288987b44\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"styles\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BgV4kLx2TW7c4zhZ3sra37ATfT5O9\",\"object\":\"chat.completion.chunk\",\"created\":1749468930,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_a288987b44\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"\\\":\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BgV4kLx2TW7c4zhZ3sra37ATfT5O9\",\"object\":\"chat.completion.chunk\",\"created\":1749468930,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_a288987b44\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"{}\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BgV4kLx2TW7c4zhZ3sra37ATfT5O9\",\"object\":\"chat.completion.chunk\",\"created\":1749468930,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_a288987b44\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"},{\\\"\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BgV4kLx2TW7c4zhZ3sra37ATfT5O9\",\"object\":\"chat.completion.chunk\",\"created\":1749468930,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_a288987b44\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"type\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BgV4kLx2TW7c4zhZ3sra37ATfT5O9\",\"object\":\"chat.completion.chunk\",\"created\":1749468930,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_a288987b44\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"\\\":\\\"\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BgV4kLx2TW7c4zhZ3sra37ATfT5O9\",\"object\":\"chat.completion.chunk\",\"created\":1749468930,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_a288987b44\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"text\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BgV4kLx2TW7c4zhZ3sra37ATfT5O9\",\"object\":\"chat.completion.chunk\",\"created\":1749468930,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_a288987b44\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"\\\",\\\"\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BgV4kLx2TW7c4zhZ3sra37ATfT5O9\",\"object\":\"chat.completion.chunk\",\"created\":1749468930,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_a288987b44\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"text\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BgV4kLx2TW7c4zhZ3sra37ATfT5O9\",\"object\":\"chat.completion.chunk\",\"created\":1749468930,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_a288987b44\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"\\\":\\\"\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BgV4kLx2TW7c4zhZ3sra37ATfT5O9\",\"object\":\"chat.completion.chunk\",\"created\":1749468930,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_a288987b44\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"Dieser\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BgV4kLx2TW7c4zhZ3sra37ATfT5O9\",\"object\":\"chat.completion.chunk\",\"created\":1749468930,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_a288987b44\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\" Text\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BgV4kLx2TW7c4zhZ3sra37ATfT5O9\",\"object\":\"chat.completion.chunk\",\"created\":1749468930,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_a288987b44\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\" ist\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BgV4kLx2TW7c4zhZ3sra37ATfT5O9\",\"object\":\"chat.completion.chunk\",\"created\":1749468930,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_a288987b44\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\" blau\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BgV4kLx2TW7c4zhZ3sra37ATfT5O9\",\"object\":\"chat.completion.chunk\",\"created\":1749468930,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_a288987b44\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"!\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BgV4kLx2TW7c4zhZ3sra37ATfT5O9\",\"object\":\"chat.completion.chunk\",\"created\":1749468930,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_a288987b44\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"\\\",\\\"\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BgV4kLx2TW7c4zhZ3sra37ATfT5O9\",\"object\":\"chat.completion.chunk\",\"created\":1749468930,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_a288987b44\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"styles\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BgV4kLx2TW7c4zhZ3sra37ATfT5O9\",\"object\":\"chat.completion.chunk\",\"created\":1749468930,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_a288987b44\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"\\\":{\\\"\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BgV4kLx2TW7c4zhZ3sra37ATfT5O9\",\"object\":\"chat.completion.chunk\",\"created\":1749468930,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_a288987b44\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"text\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BgV4kLx2TW7c4zhZ3sra37ATfT5O9\",\"object\":\"chat.completion.chunk\",\"created\":1749468930,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_a288987b44\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"Color\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BgV4kLx2TW7c4zhZ3sra37ATfT5O9\",\"object\":\"chat.completion.chunk\",\"created\":1749468930,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_a288987b44\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"\\\":\\\"\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BgV4kLx2TW7c4zhZ3sra37ATfT5O9\",\"object\":\"chat.completion.chunk\",\"created\":1749468930,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_a288987b44\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"blue\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BgV4kLx2TW7c4zhZ3sra37ATfT5O9\",\"object\":\"chat.completion.chunk\",\"created\":1749468930,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_a288987b44\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"\\\"}}\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BgV4kLx2TW7c4zhZ3sra37ATfT5O9\",\"object\":\"chat.completion.chunk\",\"created\":1749468930,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_a288987b44\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"]\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BgV4kLx2TW7c4zhZ3sra37ATfT5O9\",\"object\":\"chat.completion.chunk\",\"created\":1749468930,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_a288987b44\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"}}\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BgV4kLx2TW7c4zhZ3sra37ATfT5O9\",\"object\":\"chat.completion.chunk\",\"created\":1749468930,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_a288987b44\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"]}\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BgV4kLx2TW7c4zhZ3sra37ATfT5O9\",\"object\":\"chat.completion.chunk\",\"created\":1749468930,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_a288987b44\",\"choices\":[{\"index\":0,\"delta\":{},\"logprobs\":null,\"finish_reason\":\"stop\"}]}\n\ndata: [DONE]\n\n", + "body": "data: {\"id\":\"chatcmpl-BhXn6HiqKdaNBaVBwayVJN30edbo1\",\"object\":\"chat.completion.chunk\",\"created\":1749717696,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_a288987b44\",\"choices\":[{\"index\":0,\"delta\":{\"role\":\"assistant\",\"content\":null,\"tool_calls\":[{\"index\":0,\"id\":\"call_vDv6bFU6dk0LFFsxVibN98DO\",\"type\":\"function\",\"function\":{\"name\":\"json\",\"arguments\":\"\"}}],\"refusal\":null},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BhXn6HiqKdaNBaVBwayVJN30edbo1\",\"object\":\"chat.completion.chunk\",\"created\":1749717696,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_a288987b44\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"{\\\"\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BhXn6HiqKdaNBaVBwayVJN30edbo1\",\"object\":\"chat.completion.chunk\",\"created\":1749717696,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_a288987b44\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"operations\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BhXn6HiqKdaNBaVBwayVJN30edbo1\",\"object\":\"chat.completion.chunk\",\"created\":1749717696,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_a288987b44\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"\\\":[\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BhXn6HiqKdaNBaVBwayVJN30edbo1\",\"object\":\"chat.completion.chunk\",\"created\":1749717696,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_a288987b44\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"{\\\"\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BhXn6HiqKdaNBaVBwayVJN30edbo1\",\"object\":\"chat.completion.chunk\",\"created\":1749717696,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_a288987b44\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"type\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BhXn6HiqKdaNBaVBwayVJN30edbo1\",\"object\":\"chat.completion.chunk\",\"created\":1749717696,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_a288987b44\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"\\\":\\\"\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BhXn6HiqKdaNBaVBwayVJN30edbo1\",\"object\":\"chat.completion.chunk\",\"created\":1749717696,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_a288987b44\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"update\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BhXn6HiqKdaNBaVBwayVJN30edbo1\",\"object\":\"chat.completion.chunk\",\"created\":1749717696,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_a288987b44\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"\\\",\\\"\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BhXn6HiqKdaNBaVBwayVJN30edbo1\",\"object\":\"chat.completion.chunk\",\"created\":1749717696,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_a288987b44\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"id\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BhXn6HiqKdaNBaVBwayVJN30edbo1\",\"object\":\"chat.completion.chunk\",\"created\":1749717696,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_a288987b44\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"\\\":\\\"\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BhXn6HiqKdaNBaVBwayVJN30edbo1\",\"object\":\"chat.completion.chunk\",\"created\":1749717696,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_a288987b44\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"ref\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BhXn6HiqKdaNBaVBwayVJN30edbo1\",\"object\":\"chat.completion.chunk\",\"created\":1749717696,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_a288987b44\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"2\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BhXn6HiqKdaNBaVBwayVJN30edbo1\",\"object\":\"chat.completion.chunk\",\"created\":1749717696,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_a288987b44\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"$\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BhXn6HiqKdaNBaVBwayVJN30edbo1\",\"object\":\"chat.completion.chunk\",\"created\":1749717696,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_a288987b44\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"\\\",\\\"\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BhXn6HiqKdaNBaVBwayVJN30edbo1\",\"object\":\"chat.completion.chunk\",\"created\":1749717696,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_a288987b44\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"block\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BhXn6HiqKdaNBaVBwayVJN30edbo1\",\"object\":\"chat.completion.chunk\",\"created\":1749717696,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_a288987b44\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"\\\":{\\\"\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BhXn6HiqKdaNBaVBwayVJN30edbo1\",\"object\":\"chat.completion.chunk\",\"created\":1749717696,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_a288987b44\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"type\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BhXn6HiqKdaNBaVBwayVJN30edbo1\",\"object\":\"chat.completion.chunk\",\"created\":1749717696,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_a288987b44\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"\\\":\\\"\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BhXn6HiqKdaNBaVBwayVJN30edbo1\",\"object\":\"chat.completion.chunk\",\"created\":1749717696,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_a288987b44\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"paragraph\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BhXn6HiqKdaNBaVBwayVJN30edbo1\",\"object\":\"chat.completion.chunk\",\"created\":1749717696,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_a288987b44\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"\\\",\\\"\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BhXn6HiqKdaNBaVBwayVJN30edbo1\",\"object\":\"chat.completion.chunk\",\"created\":1749717696,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_a288987b44\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"content\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BhXn6HiqKdaNBaVBwayVJN30edbo1\",\"object\":\"chat.completion.chunk\",\"created\":1749717696,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_a288987b44\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"\\\":[\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BhXn6HiqKdaNBaVBwayVJN30edbo1\",\"object\":\"chat.completion.chunk\",\"created\":1749717696,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_a288987b44\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"{\\\"\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BhXn6HiqKdaNBaVBwayVJN30edbo1\",\"object\":\"chat.completion.chunk\",\"created\":1749717696,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_a288987b44\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"type\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BhXn6HiqKdaNBaVBwayVJN30edbo1\",\"object\":\"chat.completion.chunk\",\"created\":1749717696,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_a288987b44\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"\\\":\\\"\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BhXn6HiqKdaNBaVBwayVJN30edbo1\",\"object\":\"chat.completion.chunk\",\"created\":1749717696,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_a288987b44\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"text\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BhXn6HiqKdaNBaVBwayVJN30edbo1\",\"object\":\"chat.completion.chunk\",\"created\":1749717696,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_a288987b44\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"\\\",\\\"\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BhXn6HiqKdaNBaVBwayVJN30edbo1\",\"object\":\"chat.completion.chunk\",\"created\":1749717696,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_a288987b44\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"text\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BhXn6HiqKdaNBaVBwayVJN30edbo1\",\"object\":\"chat.completion.chunk\",\"created\":1749717696,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_a288987b44\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"\\\":\\\"\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BhXn6HiqKdaNBaVBwayVJN30edbo1\",\"object\":\"chat.completion.chunk\",\"created\":1749717696,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_a288987b44\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"Hallo\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BhXn6HiqKdaNBaVBwayVJN30edbo1\",\"object\":\"chat.completion.chunk\",\"created\":1749717696,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_a288987b44\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\",\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BhXn6HiqKdaNBaVBwayVJN30edbo1\",\"object\":\"chat.completion.chunk\",\"created\":1749717696,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_a288987b44\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\" \\\",\\\"\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BhXn6HiqKdaNBaVBwayVJN30edbo1\",\"object\":\"chat.completion.chunk\",\"created\":1749717696,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_a288987b44\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"styles\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BhXn6HiqKdaNBaVBwayVJN30edbo1\",\"object\":\"chat.completion.chunk\",\"created\":1749717696,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_a288987b44\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"\\\":\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BhXn6HiqKdaNBaVBwayVJN30edbo1\",\"object\":\"chat.completion.chunk\",\"created\":1749717696,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_a288987b44\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"{}\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BhXn6HiqKdaNBaVBwayVJN30edbo1\",\"object\":\"chat.completion.chunk\",\"created\":1749717696,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_a288987b44\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"},{\\\"\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BhXn6HiqKdaNBaVBwayVJN30edbo1\",\"object\":\"chat.completion.chunk\",\"created\":1749717696,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_a288987b44\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"type\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BhXn6HiqKdaNBaVBwayVJN30edbo1\",\"object\":\"chat.completion.chunk\",\"created\":1749717696,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_a288987b44\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"\\\":\\\"\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BhXn6HiqKdaNBaVBwayVJN30edbo1\",\"object\":\"chat.completion.chunk\",\"created\":1749717696,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_a288987b44\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"mention\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BhXn6HiqKdaNBaVBwayVJN30edbo1\",\"object\":\"chat.completion.chunk\",\"created\":1749717696,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_a288987b44\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"\\\",\\\"\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BhXn6HiqKdaNBaVBwayVJN30edbo1\",\"object\":\"chat.completion.chunk\",\"created\":1749717696,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_a288987b44\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"props\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BhXn6HiqKdaNBaVBwayVJN30edbo1\",\"object\":\"chat.completion.chunk\",\"created\":1749717696,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_a288987b44\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"\\\":{\\\"\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BhXn6HiqKdaNBaVBwayVJN30edbo1\",\"object\":\"chat.completion.chunk\",\"created\":1749717696,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_a288987b44\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"user\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BhXn6HiqKdaNBaVBwayVJN30edbo1\",\"object\":\"chat.completion.chunk\",\"created\":1749717696,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_a288987b44\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"\\\":\\\"\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BhXn6HiqKdaNBaVBwayVJN30edbo1\",\"object\":\"chat.completion.chunk\",\"created\":1749717696,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_a288987b44\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"John\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BhXn6HiqKdaNBaVBwayVJN30edbo1\",\"object\":\"chat.completion.chunk\",\"created\":1749717696,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_a288987b44\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\" Doe\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BhXn6HiqKdaNBaVBwayVJN30edbo1\",\"object\":\"chat.completion.chunk\",\"created\":1749717696,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_a288987b44\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"\\\"}\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BhXn6HiqKdaNBaVBwayVJN30edbo1\",\"object\":\"chat.completion.chunk\",\"created\":1749717696,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_a288987b44\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"},{\\\"\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BhXn6HiqKdaNBaVBwayVJN30edbo1\",\"object\":\"chat.completion.chunk\",\"created\":1749717696,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_a288987b44\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"type\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BhXn6HiqKdaNBaVBwayVJN30edbo1\",\"object\":\"chat.completion.chunk\",\"created\":1749717696,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_a288987b44\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"\\\":\\\"\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BhXn6HiqKdaNBaVBwayVJN30edbo1\",\"object\":\"chat.completion.chunk\",\"created\":1749717696,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_a288987b44\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"text\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BhXn6HiqKdaNBaVBwayVJN30edbo1\",\"object\":\"chat.completion.chunk\",\"created\":1749717696,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_a288987b44\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"\\\",\\\"\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BhXn6HiqKdaNBaVBwayVJN30edbo1\",\"object\":\"chat.completion.chunk\",\"created\":1749717696,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_a288987b44\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"text\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BhXn6HiqKdaNBaVBwayVJN30edbo1\",\"object\":\"chat.completion.chunk\",\"created\":1749717696,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_a288987b44\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"\\\":\\\"\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BhXn6HiqKdaNBaVBwayVJN30edbo1\",\"object\":\"chat.completion.chunk\",\"created\":1749717696,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_a288987b44\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"!\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BhXn6HiqKdaNBaVBwayVJN30edbo1\",\"object\":\"chat.completion.chunk\",\"created\":1749717696,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_a288987b44\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\" \\\",\\\"\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BhXn6HiqKdaNBaVBwayVJN30edbo1\",\"object\":\"chat.completion.chunk\",\"created\":1749717696,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_a288987b44\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"styles\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BhXn6HiqKdaNBaVBwayVJN30edbo1\",\"object\":\"chat.completion.chunk\",\"created\":1749717696,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_a288987b44\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"\\\":\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BhXn6HiqKdaNBaVBwayVJN30edbo1\",\"object\":\"chat.completion.chunk\",\"created\":1749717696,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_a288987b44\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"{}\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BhXn6HiqKdaNBaVBwayVJN30edbo1\",\"object\":\"chat.completion.chunk\",\"created\":1749717696,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_a288987b44\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"},{\\\"\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BhXn6HiqKdaNBaVBwayVJN30edbo1\",\"object\":\"chat.completion.chunk\",\"created\":1749717696,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_a288987b44\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"type\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BhXn6HiqKdaNBaVBwayVJN30edbo1\",\"object\":\"chat.completion.chunk\",\"created\":1749717696,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_a288987b44\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"\\\":\\\"\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BhXn6HiqKdaNBaVBwayVJN30edbo1\",\"object\":\"chat.completion.chunk\",\"created\":1749717696,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_a288987b44\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"text\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BhXn6HiqKdaNBaVBwayVJN30edbo1\",\"object\":\"chat.completion.chunk\",\"created\":1749717696,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_a288987b44\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"\\\",\\\"\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BhXn6HiqKdaNBaVBwayVJN30edbo1\",\"object\":\"chat.completion.chunk\",\"created\":1749717696,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_a288987b44\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"text\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BhXn6HiqKdaNBaVBwayVJN30edbo1\",\"object\":\"chat.completion.chunk\",\"created\":1749717696,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_a288987b44\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"\\\":\\\"\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BhXn6HiqKdaNBaVBwayVJN30edbo1\",\"object\":\"chat.completion.chunk\",\"created\":1749717696,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_a288987b44\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"Wie\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BhXn6HiqKdaNBaVBwayVJN30edbo1\",\"object\":\"chat.completion.chunk\",\"created\":1749717696,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_a288987b44\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\" geht\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BhXn6HiqKdaNBaVBwayVJN30edbo1\",\"object\":\"chat.completion.chunk\",\"created\":1749717696,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_a288987b44\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\" es\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BhXn6HiqKdaNBaVBwayVJN30edbo1\",\"object\":\"chat.completion.chunk\",\"created\":1749717696,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_a288987b44\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\" dir\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BhXn6HiqKdaNBaVBwayVJN30edbo1\",\"object\":\"chat.completion.chunk\",\"created\":1749717696,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_a288987b44\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"?\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BhXn6HiqKdaNBaVBwayVJN30edbo1\",\"object\":\"chat.completion.chunk\",\"created\":1749717696,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_a288987b44\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"\\\",\\\"\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BhXn6HiqKdaNBaVBwayVJN30edbo1\",\"object\":\"chat.completion.chunk\",\"created\":1749717696,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_a288987b44\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"styles\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BhXn6HiqKdaNBaVBwayVJN30edbo1\",\"object\":\"chat.completion.chunk\",\"created\":1749717696,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_a288987b44\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"\\\":{\\\"\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BhXn6HiqKdaNBaVBwayVJN30edbo1\",\"object\":\"chat.completion.chunk\",\"created\":1749717696,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_a288987b44\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"bold\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BhXn6HiqKdaNBaVBwayVJN30edbo1\",\"object\":\"chat.completion.chunk\",\"created\":1749717696,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_a288987b44\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"\\\":\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BhXn6HiqKdaNBaVBwayVJN30edbo1\",\"object\":\"chat.completion.chunk\",\"created\":1749717696,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_a288987b44\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"true\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BhXn6HiqKdaNBaVBwayVJN30edbo1\",\"object\":\"chat.completion.chunk\",\"created\":1749717696,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_a288987b44\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"}},\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BhXn6HiqKdaNBaVBwayVJN30edbo1\",\"object\":\"chat.completion.chunk\",\"created\":1749717696,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_a288987b44\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"{\\\"\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BhXn6HiqKdaNBaVBwayVJN30edbo1\",\"object\":\"chat.completion.chunk\",\"created\":1749717696,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_a288987b44\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"type\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BhXn6HiqKdaNBaVBwayVJN30edbo1\",\"object\":\"chat.completion.chunk\",\"created\":1749717696,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_a288987b44\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"\\\":\\\"\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BhXn6HiqKdaNBaVBwayVJN30edbo1\",\"object\":\"chat.completion.chunk\",\"created\":1749717696,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_a288987b44\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"text\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BhXn6HiqKdaNBaVBwayVJN30edbo1\",\"object\":\"chat.completion.chunk\",\"created\":1749717696,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_a288987b44\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"\\\",\\\"\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BhXn6HiqKdaNBaVBwayVJN30edbo1\",\"object\":\"chat.completion.chunk\",\"created\":1749717696,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_a288987b44\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"text\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BhXn6HiqKdaNBaVBwayVJN30edbo1\",\"object\":\"chat.completion.chunk\",\"created\":1749717696,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_a288987b44\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"\\\":\\\"\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BhXn6HiqKdaNBaVBwayVJN30edbo1\",\"object\":\"chat.completion.chunk\",\"created\":1749717696,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_a288987b44\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\" \\\",\\\"\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BhXn6HiqKdaNBaVBwayVJN30edbo1\",\"object\":\"chat.completion.chunk\",\"created\":1749717696,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_a288987b44\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"styles\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BhXn6HiqKdaNBaVBwayVJN30edbo1\",\"object\":\"chat.completion.chunk\",\"created\":1749717696,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_a288987b44\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"\\\":\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BhXn6HiqKdaNBaVBwayVJN30edbo1\",\"object\":\"chat.completion.chunk\",\"created\":1749717696,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_a288987b44\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"{}\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BhXn6HiqKdaNBaVBwayVJN30edbo1\",\"object\":\"chat.completion.chunk\",\"created\":1749717696,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_a288987b44\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"},{\\\"\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BhXn6HiqKdaNBaVBwayVJN30edbo1\",\"object\":\"chat.completion.chunk\",\"created\":1749717696,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_a288987b44\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"type\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BhXn6HiqKdaNBaVBwayVJN30edbo1\",\"object\":\"chat.completion.chunk\",\"created\":1749717696,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_a288987b44\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"\\\":\\\"\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BhXn6HiqKdaNBaVBwayVJN30edbo1\",\"object\":\"chat.completion.chunk\",\"created\":1749717696,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_a288987b44\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"text\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BhXn6HiqKdaNBaVBwayVJN30edbo1\",\"object\":\"chat.completion.chunk\",\"created\":1749717696,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_a288987b44\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"\\\",\\\"\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BhXn6HiqKdaNBaVBwayVJN30edbo1\",\"object\":\"chat.completion.chunk\",\"created\":1749717696,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_a288987b44\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"text\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BhXn6HiqKdaNBaVBwayVJN30edbo1\",\"object\":\"chat.completion.chunk\",\"created\":1749717696,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_a288987b44\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"\\\":\\\"\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BhXn6HiqKdaNBaVBwayVJN30edbo1\",\"object\":\"chat.completion.chunk\",\"created\":1749717696,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_a288987b44\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"Dieser\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BhXn6HiqKdaNBaVBwayVJN30edbo1\",\"object\":\"chat.completion.chunk\",\"created\":1749717696,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_a288987b44\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\" Text\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BhXn6HiqKdaNBaVBwayVJN30edbo1\",\"object\":\"chat.completion.chunk\",\"created\":1749717696,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_a288987b44\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\" ist\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BhXn6HiqKdaNBaVBwayVJN30edbo1\",\"object\":\"chat.completion.chunk\",\"created\":1749717696,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_a288987b44\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\" blau\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BhXn6HiqKdaNBaVBwayVJN30edbo1\",\"object\":\"chat.completion.chunk\",\"created\":1749717696,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_a288987b44\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"!\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BhXn6HiqKdaNBaVBwayVJN30edbo1\",\"object\":\"chat.completion.chunk\",\"created\":1749717696,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_a288987b44\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"\\\",\\\"\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BhXn6HiqKdaNBaVBwayVJN30edbo1\",\"object\":\"chat.completion.chunk\",\"created\":1749717696,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_a288987b44\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"styles\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BhXn6HiqKdaNBaVBwayVJN30edbo1\",\"object\":\"chat.completion.chunk\",\"created\":1749717696,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_a288987b44\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"\\\":{\\\"\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BhXn6HiqKdaNBaVBwayVJN30edbo1\",\"object\":\"chat.completion.chunk\",\"created\":1749717696,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_a288987b44\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"text\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BhXn6HiqKdaNBaVBwayVJN30edbo1\",\"object\":\"chat.completion.chunk\",\"created\":1749717696,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_a288987b44\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"Color\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BhXn6HiqKdaNBaVBwayVJN30edbo1\",\"object\":\"chat.completion.chunk\",\"created\":1749717696,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_a288987b44\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"\\\":\\\"\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BhXn6HiqKdaNBaVBwayVJN30edbo1\",\"object\":\"chat.completion.chunk\",\"created\":1749717696,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_a288987b44\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"blue\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BhXn6HiqKdaNBaVBwayVJN30edbo1\",\"object\":\"chat.completion.chunk\",\"created\":1749717696,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_a288987b44\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"\\\"}}\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BhXn6HiqKdaNBaVBwayVJN30edbo1\",\"object\":\"chat.completion.chunk\",\"created\":1749717696,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_a288987b44\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"]\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BhXn6HiqKdaNBaVBwayVJN30edbo1\",\"object\":\"chat.completion.chunk\",\"created\":1749717696,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_a288987b44\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"}}\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BhXn6HiqKdaNBaVBwayVJN30edbo1\",\"object\":\"chat.completion.chunk\",\"created\":1749717696,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_a288987b44\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"]}\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BhXn6HiqKdaNBaVBwayVJN30edbo1\",\"object\":\"chat.completion.chunk\",\"created\":1749717696,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_a288987b44\",\"choices\":[{\"index\":0,\"delta\":{},\"logprobs\":null,\"finish_reason\":\"stop\"}]}\n\ndata: [DONE]\n\n", "headers": [] } } \ No newline at end of file diff --git a/packages/xl-ai/src/api/formats/json/__snapshots__/json.test.ts/Update/__msw_snapshots__/openai.chat/gpt-4o-2024-08-06 (streaming)/styles + ic in target block, add mark (paragraph)_1_3b0a65bb924ff954776356237aaf040b.json b/packages/xl-ai/src/api/formats/json/__snapshots__/json.test.ts/Update/__msw_snapshots__/openai.chat/gpt-4o-2024-08-06 (streaming)/styles + ic in target block, add mark (paragraph)_1_68428df2323f980073c56959b5e5592a.json similarity index 66% rename from packages/xl-ai/src/api/formats/json/__snapshots__/json.test.ts/Update/__msw_snapshots__/openai.chat/gpt-4o-2024-08-06 (streaming)/styles + ic in target block, add mark (paragraph)_1_3b0a65bb924ff954776356237aaf040b.json rename to packages/xl-ai/src/api/formats/json/__snapshots__/json.test.ts/Update/__msw_snapshots__/openai.chat/gpt-4o-2024-08-06 (streaming)/styles + ic in target block, add mark (paragraph)_1_68428df2323f980073c56959b5e5592a.json index 23f027ceb7..166796c74f 100644 --- a/packages/xl-ai/src/api/formats/json/__snapshots__/json.test.ts/Update/__msw_snapshots__/openai.chat/gpt-4o-2024-08-06 (streaming)/styles + ic in target block, add mark (paragraph)_1_3b0a65bb924ff954776356237aaf040b.json +++ b/packages/xl-ai/src/api/formats/json/__snapshots__/json.test.ts/Update/__msw_snapshots__/openai.chat/gpt-4o-2024-08-06 (streaming)/styles + ic in target block, add mark (paragraph)_1_68428df2323f980073c56959b5e5592a.json @@ -2,14 +2,14 @@ "request": { "method": "POST", "url": "https://localhost:3000/ai?provider=openai&url=https%3A%2F%2Fapi.openai.com%2Fv1%2Fchat%2Fcompletions", - "body": "{\"model\":\"gpt-4o-2024-08-06\",\"temperature\":0,\"messages\":[{\"role\":\"system\",\"content\":\"You're manipulating a text document using JSON blocks. \\n Make sure to follow the json schema provided. When referencing ids they MUST be EXACTLY the same (including the trailing $). \\n This is the document as an array of JSON blocks (the cursor is BETWEEN two blocks as indicated by cursor: true):\"},{\"role\":\"system\",\"content\":\"[{\\\"id\\\":\\\"ref1$\\\",\\\"block\\\":{\\\"id\\\":\\\"ref1\\\",\\\"type\\\":\\\"paragraph\\\",\\\"props\\\":{\\\"textColor\\\":\\\"default\\\",\\\"backgroundColor\\\":\\\"default\\\",\\\"textAlignment\\\":\\\"left\\\"},\\\"content\\\":[{\\\"type\\\":\\\"text\\\",\\\"text\\\":\\\"Hello, world!\\\",\\\"styles\\\":{}}]}},{\\\"cursor\\\":true},{\\\"id\\\":\\\"ref2$\\\",\\\"block\\\":{\\\"id\\\":\\\"ref2\\\",\\\"type\\\":\\\"paragraph\\\",\\\"props\\\":{\\\"textColor\\\":\\\"default\\\",\\\"backgroundColor\\\":\\\"default\\\",\\\"textAlignment\\\":\\\"left\\\"},\\\"content\\\":[{\\\"type\\\":\\\"text\\\",\\\"text\\\":\\\"Hello, \\\",\\\"styles\\\":{}},{\\\"type\\\":\\\"mention\\\",\\\"props\\\":{\\\"user\\\":\\\"John Doe\\\"}},{\\\"type\\\":\\\"text\\\",\\\"text\\\":\\\"! \\\",\\\"styles\\\":{}},{\\\"type\\\":\\\"text\\\",\\\"text\\\":\\\"How are you doing?\\\",\\\"styles\\\":{\\\"bold\\\":true}},{\\\"type\\\":\\\"text\\\",\\\"text\\\":\\\" \\\",\\\"styles\\\":{}},{\\\"type\\\":\\\"text\\\",\\\"text\\\":\\\"This text is blue!\\\",\\\"styles\\\":{\\\"textColor\\\":\\\"blue\\\"}}]}},{\\\"id\\\":\\\"ref3$\\\",\\\"block\\\":{\\\"id\\\":\\\"ref3\\\",\\\"type\\\":\\\"paragraph\\\",\\\"props\\\":{\\\"textColor\\\":\\\"default\\\",\\\"backgroundColor\\\":\\\"default\\\",\\\"textAlignment\\\":\\\"left\\\"},\\\"content\\\":[{\\\"type\\\":\\\"text\\\",\\\"text\\\":\\\"Hello, world! \\\",\\\"styles\\\":{}},{\\\"type\\\":\\\"text\\\",\\\"text\\\":\\\"Bold text. \\\",\\\"styles\\\":{\\\"bold\\\":true}},{\\\"type\\\":\\\"link\\\",\\\"href\\\":\\\"https://www.google.com\\\",\\\"content\\\":[{\\\"type\\\":\\\"text\\\",\\\"text\\\":\\\"Link.\\\",\\\"styles\\\":{}}]}]}}]\"},{\"role\":\"system\",\"content\":\"The user asks you to do the following:\"},{\"role\":\"user\",\"content\":\"make first paragraph bold\"},{\"role\":\"system\",\"content\":\"First, determine what part of the document the user is talking about. You SHOULD probably take cursor info into account if needed.\\n EXAMPLE: if user says \\\"below\\\" (without pointing to a specific part of the document) he / she probably indicates the block(s) after the cursor. \\n EXAMPLE: If you want to insert content AT the cursor position (UNLESS indicated otherwise by the user), then you need `referenceId` to point to the block before the cursor with position `after` (or block below and `before`).\\n \\n Prefer updating existing blocks over removing and adding (but this also depends on the user's question).\"}],\"tool_choice\":{\"type\":\"function\",\"function\":{\"name\":\"json\"}},\"tools\":[{\"type\":\"function\",\"function\":{\"name\":\"json\",\"description\":\"Respond with a JSON object.\",\"parameters\":{\"type\":\"object\",\"properties\":{\"operations\":{\"type\":\"array\",\"items\":{\"anyOf\":[{\"type\":\"object\",\"description\":\"Update a block, the new block will replace the existing block.\",\"properties\":{\"type\":{\"type\":\"string\",\"enum\":[\"update\"]},\"id\":{\"type\":\"string\",\"description\":\"id of block to update\"},\"block\":{\"$ref\":\"#/$defs/block\"}},\"required\":[\"type\",\"id\",\"block\"],\"additionalProperties\":false},{\"type\":\"object\",\"description\":\"Insert new blocks\",\"properties\":{\"type\":{\"type\":\"string\",\"enum\":[\"add\"]},\"referenceId\":{\"type\":\"string\",\"description\":\"MUST be an id of a block in the document\"},\"position\":{\"type\":\"string\",\"enum\":[\"before\",\"after\"],\"description\":\"`after` to add blocks AFTER (below) the block with `referenceId`, `before` to add the block BEFORE (above)\"},\"blocks\":{\"items\":{\"$ref\":\"#/$defs/block\"},\"type\":\"array\"}},\"required\":[\"type\",\"referenceId\",\"position\",\"blocks\"],\"additionalProperties\":false},{\"type\":\"object\",\"description\":\"Delete a block\",\"properties\":{\"type\":{\"type\":\"string\",\"enum\":[\"delete\"]},\"id\":{\"type\":\"string\",\"description\":\"id of block to delete\"}},\"required\":[\"type\",\"id\"],\"additionalProperties\":false}]}}},\"additionalProperties\":false,\"required\":[\"operations\"],\"$defs\":{\"styles\":{\"type\":\"object\",\"properties\":{\"bold\":{\"type\":\"boolean\"},\"italic\":{\"type\":\"boolean\"},\"underline\":{\"type\":\"boolean\"},\"strike\":{\"type\":\"boolean\"},\"code\":{\"type\":\"boolean\"},\"textColor\":{\"type\":\"string\"},\"backgroundColor\":{\"type\":\"string\"}},\"additionalProperties\":false},\"styledtext\":{\"type\":\"object\",\"properties\":{\"type\":{\"type\":\"string\",\"enum\":[\"text\"]},\"text\":{\"type\":\"string\"},\"styles\":{\"$ref\":\"#/$defs/styles\"}},\"additionalProperties\":false,\"required\":[\"type\",\"text\"]},\"inlinecontent\":{\"type\":\"array\",\"items\":{\"anyOf\":[{\"type\":\"object\",\"properties\":{\"type\":{\"type\":\"string\",\"enum\":[\"mention\"]},\"props\":{\"type\":\"object\",\"properties\":{\"user\":{\"type\":\"string\"}},\"additionalProperties\":false}},\"additionalProperties\":false,\"required\":[\"type\"]},{\"$ref\":\"#/$defs/styledtext\"},{\"type\":\"object\",\"properties\":{\"type\":{\"type\":\"string\",\"enum\":[\"link\"]},\"content\":{\"type\":\"array\",\"items\":{\"$ref\":\"#/$defs/styledtext\"}},\"href\":{\"type\":\"string\"}},\"additionalProperties\":false,\"required\":[\"type\",\"href\",\"content\"]}]}},\"block\":{\"anyOf\":[{\"type\":\"object\",\"properties\":{\"type\":{\"type\":\"string\",\"enum\":[\"paragraph\",\"quote\",\"bulletListItem\",\"numberedListItem\"]},\"content\":{\"$ref\":\"#/$defs/inlinecontent\"},\"props\":{\"type\":\"object\",\"properties\":{},\"additionalProperties\":false}},\"additionalProperties\":false,\"required\":[\"type\"]},{\"type\":\"object\",\"properties\":{\"type\":{\"type\":\"string\",\"enum\":[\"heading\"]},\"content\":{\"$ref\":\"#/$defs/inlinecontent\"},\"props\":{\"type\":\"object\",\"properties\":{\"level\":{\"type\":\"number\",\"enum\":[1,2,3]}},\"additionalProperties\":false}},\"additionalProperties\":false,\"required\":[\"type\"]},{\"type\":\"object\",\"properties\":{\"type\":{\"type\":\"string\",\"enum\":[\"codeBlock\"]},\"content\":{\"$ref\":\"#/$defs/inlinecontent\"},\"props\":{\"type\":\"object\",\"properties\":{\"language\":{\"type\":\"string\"}},\"additionalProperties\":false}},\"additionalProperties\":false,\"required\":[\"type\"]},{\"type\":\"object\",\"properties\":{\"type\":{\"type\":\"string\",\"enum\":[\"checkListItem\"]},\"content\":{\"$ref\":\"#/$defs/inlinecontent\"},\"props\":{\"type\":\"object\",\"properties\":{\"checked\":{\"type\":\"boolean\"}},\"additionalProperties\":false}},\"additionalProperties\":false,\"required\":[\"type\"]},{\"type\":\"object\",\"properties\":{\"type\":{\"type\":\"string\",\"enum\":[\"table\"]},\"content\":{\"type\":\"object\",\"properties\":{}},\"props\":{\"type\":\"object\",\"properties\":{},\"additionalProperties\":false}},\"additionalProperties\":false,\"required\":[\"type\"]}]}}}}}],\"stream\":true}", + "body": "{\"model\":\"gpt-4o-2024-08-06\",\"temperature\":0,\"messages\":[{\"role\":\"system\",\"content\":\"You're manipulating a text document using JSON blocks. \\n Make sure to follow the json schema provided. When referencing ids they MUST be EXACTLY the same (including the trailing $). \\n This is the document as an array of JSON blocks (the cursor is BETWEEN two blocks as indicated by cursor: true):\"},{\"role\":\"system\",\"content\":\"[{\\\"id\\\":\\\"ref1$\\\",\\\"block\\\":{\\\"id\\\":\\\"ref1\\\",\\\"type\\\":\\\"paragraph\\\",\\\"props\\\":{\\\"textColor\\\":\\\"default\\\",\\\"backgroundColor\\\":\\\"default\\\",\\\"textAlignment\\\":\\\"left\\\"},\\\"content\\\":[{\\\"type\\\":\\\"text\\\",\\\"text\\\":\\\"Hello, world!\\\",\\\"styles\\\":{}}]}},{\\\"cursor\\\":true},{\\\"id\\\":\\\"ref2$\\\",\\\"block\\\":{\\\"id\\\":\\\"ref2\\\",\\\"type\\\":\\\"paragraph\\\",\\\"props\\\":{\\\"textColor\\\":\\\"default\\\",\\\"backgroundColor\\\":\\\"default\\\",\\\"textAlignment\\\":\\\"left\\\"},\\\"content\\\":[{\\\"type\\\":\\\"text\\\",\\\"text\\\":\\\"Hello, \\\",\\\"styles\\\":{}},{\\\"type\\\":\\\"mention\\\",\\\"props\\\":{\\\"user\\\":\\\"John Doe\\\"}},{\\\"type\\\":\\\"text\\\",\\\"text\\\":\\\"! \\\",\\\"styles\\\":{}},{\\\"type\\\":\\\"text\\\",\\\"text\\\":\\\"How are you doing?\\\",\\\"styles\\\":{\\\"bold\\\":true}},{\\\"type\\\":\\\"text\\\",\\\"text\\\":\\\" \\\",\\\"styles\\\":{}},{\\\"type\\\":\\\"text\\\",\\\"text\\\":\\\"This text is blue!\\\",\\\"styles\\\":{\\\"textColor\\\":\\\"blue\\\"}}]}},{\\\"id\\\":\\\"ref3$\\\",\\\"block\\\":{\\\"id\\\":\\\"ref3\\\",\\\"type\\\":\\\"paragraph\\\",\\\"props\\\":{\\\"textColor\\\":\\\"default\\\",\\\"backgroundColor\\\":\\\"default\\\",\\\"textAlignment\\\":\\\"left\\\"},\\\"content\\\":[{\\\"type\\\":\\\"text\\\",\\\"text\\\":\\\"Hello, world! \\\",\\\"styles\\\":{}},{\\\"type\\\":\\\"text\\\",\\\"text\\\":\\\"Bold text. \\\",\\\"styles\\\":{\\\"bold\\\":true}},{\\\"type\\\":\\\"link\\\",\\\"href\\\":\\\"https://www.google.com\\\",\\\"content\\\":[{\\\"type\\\":\\\"text\\\",\\\"text\\\":\\\"Link.\\\",\\\"styles\\\":{}}]}]}}]\"},{\"role\":\"system\",\"content\":\"The user asks you to do the following:\"},{\"role\":\"user\",\"content\":\"make first paragraph bold\"},{\"role\":\"system\",\"content\":\"First, determine what part of the document the user is talking about. You SHOULD probably take cursor info into account if needed.\\n EXAMPLE: if user says \\\"below\\\" (without pointing to a specific part of the document) he / she probably indicates the block(s) after the cursor. \\n EXAMPLE: If you want to insert content AT the cursor position (UNLESS indicated otherwise by the user), then you need `referenceId` to point to the block before the cursor with position `after` (or block below and `before`).\\n \\n Prefer updating existing blocks over removing and adding (but this also depends on the user's question).\"}],\"tool_choice\":{\"type\":\"function\",\"function\":{\"name\":\"json\"}},\"tools\":[{\"type\":\"function\",\"function\":{\"name\":\"json\",\"description\":\"Respond with a JSON object.\",\"parameters\":{\"type\":\"object\",\"properties\":{\"operations\":{\"type\":\"array\",\"items\":{\"anyOf\":[{\"type\":\"object\",\"description\":\"Update a block, the new block will replace the existing block.\",\"properties\":{\"type\":{\"type\":\"string\",\"enum\":[\"update\"]},\"id\":{\"type\":\"string\",\"description\":\"id of block to update\"},\"block\":{\"$ref\":\"#/$defs/block\"}},\"required\":[\"type\",\"id\",\"block\"],\"additionalProperties\":false},{\"type\":\"object\",\"description\":\"Insert new blocks\",\"properties\":{\"type\":{\"type\":\"string\",\"enum\":[\"add\"]},\"referenceId\":{\"type\":\"string\",\"description\":\"MUST be an id of a block in the document\"},\"position\":{\"type\":\"string\",\"enum\":[\"before\",\"after\"],\"description\":\"`after` to add blocks AFTER (below) the block with `referenceId`, `before` to add the block BEFORE (above)\"},\"blocks\":{\"items\":{\"$ref\":\"#/$defs/block\"},\"type\":\"array\"}},\"required\":[\"type\",\"referenceId\",\"position\",\"blocks\"],\"additionalProperties\":false},{\"type\":\"object\",\"description\":\"Delete a block\",\"properties\":{\"type\":{\"type\":\"string\",\"enum\":[\"delete\"]},\"id\":{\"type\":\"string\",\"description\":\"id of block to delete\"}},\"required\":[\"type\",\"id\"],\"additionalProperties\":false}]}}},\"additionalProperties\":false,\"required\":[\"operations\"],\"$defs\":{\"styles\":{\"type\":\"object\",\"properties\":{\"bold\":{\"type\":\"boolean\"},\"italic\":{\"type\":\"boolean\"},\"underline\":{\"type\":\"boolean\"},\"strike\":{\"type\":\"boolean\"},\"code\":{\"type\":\"boolean\"},\"textColor\":{\"type\":\"string\"},\"backgroundColor\":{\"type\":\"string\"}},\"additionalProperties\":false},\"styledtext\":{\"type\":\"object\",\"properties\":{\"type\":{\"type\":\"string\",\"enum\":[\"text\"]},\"text\":{\"type\":\"string\"},\"styles\":{\"$ref\":\"#/$defs/styles\"}},\"additionalProperties\":false,\"required\":[\"type\",\"text\"]},\"inlinecontent\":{\"type\":\"array\",\"items\":{\"anyOf\":[{\"type\":\"object\",\"properties\":{\"type\":{\"type\":\"string\",\"enum\":[\"mention\"]},\"props\":{\"type\":\"object\",\"properties\":{\"user\":{\"type\":\"string\"}},\"additionalProperties\":false}},\"additionalProperties\":false,\"required\":[\"type\"]},{\"$ref\":\"#/$defs/styledtext\"},{\"type\":\"object\",\"properties\":{\"type\":{\"type\":\"string\",\"enum\":[\"link\"]},\"content\":{\"type\":\"array\",\"items\":{\"$ref\":\"#/$defs/styledtext\"}},\"href\":{\"type\":\"string\"}},\"additionalProperties\":false,\"required\":[\"type\",\"href\",\"content\"]}]}},\"block\":{\"anyOf\":[{\"type\":\"object\",\"properties\":{\"type\":{\"type\":\"string\",\"enum\":[\"paragraph\",\"quote\",\"toggleListItem\",\"bulletListItem\",\"numberedListItem\"]},\"content\":{\"$ref\":\"#/$defs/inlinecontent\"},\"props\":{\"type\":\"object\",\"properties\":{},\"additionalProperties\":false}},\"additionalProperties\":false,\"required\":[\"type\"]},{\"type\":\"object\",\"properties\":{\"type\":{\"type\":\"string\",\"enum\":[\"heading\"]},\"content\":{\"$ref\":\"#/$defs/inlinecontent\"},\"props\":{\"type\":\"object\",\"properties\":{\"level\":{\"type\":\"number\",\"enum\":[1,2,3]},\"isTogglable\":{\"type\":\"boolean\"}},\"additionalProperties\":false}},\"additionalProperties\":false,\"required\":[\"type\"]},{\"type\":\"object\",\"properties\":{\"type\":{\"type\":\"string\",\"enum\":[\"codeBlock\"]},\"content\":{\"$ref\":\"#/$defs/inlinecontent\"},\"props\":{\"type\":\"object\",\"properties\":{\"language\":{\"type\":\"string\"}},\"additionalProperties\":false}},\"additionalProperties\":false,\"required\":[\"type\"]},{\"type\":\"object\",\"properties\":{\"type\":{\"type\":\"string\",\"enum\":[\"checkListItem\"]},\"content\":{\"$ref\":\"#/$defs/inlinecontent\"},\"props\":{\"type\":\"object\",\"properties\":{\"checked\":{\"type\":\"boolean\"}},\"additionalProperties\":false}},\"additionalProperties\":false,\"required\":[\"type\"]},{\"type\":\"object\",\"properties\":{\"type\":{\"type\":\"string\",\"enum\":[\"table\"]},\"content\":{\"type\":\"object\",\"properties\":{}},\"props\":{\"type\":\"object\",\"properties\":{},\"additionalProperties\":false}},\"additionalProperties\":false,\"required\":[\"type\"]}]}}}}}],\"stream\":true}", "headers": [], "cookies": [] }, "response": { "status": 200, "statusText": "", - "body": "data: {\"id\":\"chatcmpl-BgV4rdjC2mcqgsZalWAda3zYxw2fA\",\"object\":\"chat.completion.chunk\",\"created\":1749468937,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_a288987b44\",\"choices\":[{\"index\":0,\"delta\":{\"role\":\"assistant\",\"content\":null,\"tool_calls\":[{\"index\":0,\"id\":\"call_Xa2hz17YnVfbJfuBe7kM8PvU\",\"type\":\"function\",\"function\":{\"name\":\"json\",\"arguments\":\"\"}}],\"refusal\":null},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BgV4rdjC2mcqgsZalWAda3zYxw2fA\",\"object\":\"chat.completion.chunk\",\"created\":1749468937,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_a288987b44\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"{\\\"\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BgV4rdjC2mcqgsZalWAda3zYxw2fA\",\"object\":\"chat.completion.chunk\",\"created\":1749468937,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_a288987b44\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"operations\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BgV4rdjC2mcqgsZalWAda3zYxw2fA\",\"object\":\"chat.completion.chunk\",\"created\":1749468937,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_a288987b44\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"\\\":[\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BgV4rdjC2mcqgsZalWAda3zYxw2fA\",\"object\":\"chat.completion.chunk\",\"created\":1749468937,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_a288987b44\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"{\\\"\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BgV4rdjC2mcqgsZalWAda3zYxw2fA\",\"object\":\"chat.completion.chunk\",\"created\":1749468937,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_a288987b44\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"type\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BgV4rdjC2mcqgsZalWAda3zYxw2fA\",\"object\":\"chat.completion.chunk\",\"created\":1749468937,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_a288987b44\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"\\\":\\\"\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BgV4rdjC2mcqgsZalWAda3zYxw2fA\",\"object\":\"chat.completion.chunk\",\"created\":1749468937,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_a288987b44\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"update\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BgV4rdjC2mcqgsZalWAda3zYxw2fA\",\"object\":\"chat.completion.chunk\",\"created\":1749468937,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_a288987b44\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"\\\",\\\"\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BgV4rdjC2mcqgsZalWAda3zYxw2fA\",\"object\":\"chat.completion.chunk\",\"created\":1749468937,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_a288987b44\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"id\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BgV4rdjC2mcqgsZalWAda3zYxw2fA\",\"object\":\"chat.completion.chunk\",\"created\":1749468937,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_a288987b44\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"\\\":\\\"\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BgV4rdjC2mcqgsZalWAda3zYxw2fA\",\"object\":\"chat.completion.chunk\",\"created\":1749468937,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_a288987b44\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"ref\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BgV4rdjC2mcqgsZalWAda3zYxw2fA\",\"object\":\"chat.completion.chunk\",\"created\":1749468937,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_a288987b44\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"1\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BgV4rdjC2mcqgsZalWAda3zYxw2fA\",\"object\":\"chat.completion.chunk\",\"created\":1749468937,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_a288987b44\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"$\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BgV4rdjC2mcqgsZalWAda3zYxw2fA\",\"object\":\"chat.completion.chunk\",\"created\":1749468937,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_a288987b44\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"\\\",\\\"\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BgV4rdjC2mcqgsZalWAda3zYxw2fA\",\"object\":\"chat.completion.chunk\",\"created\":1749468937,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_a288987b44\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"block\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BgV4rdjC2mcqgsZalWAda3zYxw2fA\",\"object\":\"chat.completion.chunk\",\"created\":1749468937,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_a288987b44\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"\\\":{\\\"\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BgV4rdjC2mcqgsZalWAda3zYxw2fA\",\"object\":\"chat.completion.chunk\",\"created\":1749468937,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_a288987b44\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"type\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BgV4rdjC2mcqgsZalWAda3zYxw2fA\",\"object\":\"chat.completion.chunk\",\"created\":1749468937,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_a288987b44\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"\\\":\\\"\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BgV4rdjC2mcqgsZalWAda3zYxw2fA\",\"object\":\"chat.completion.chunk\",\"created\":1749468937,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_a288987b44\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"paragraph\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BgV4rdjC2mcqgsZalWAda3zYxw2fA\",\"object\":\"chat.completion.chunk\",\"created\":1749468937,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_a288987b44\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"\\\",\\\"\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BgV4rdjC2mcqgsZalWAda3zYxw2fA\",\"object\":\"chat.completion.chunk\",\"created\":1749468937,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_a288987b44\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"content\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BgV4rdjC2mcqgsZalWAda3zYxw2fA\",\"object\":\"chat.completion.chunk\",\"created\":1749468937,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_a288987b44\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"\\\":[\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BgV4rdjC2mcqgsZalWAda3zYxw2fA\",\"object\":\"chat.completion.chunk\",\"created\":1749468937,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_a288987b44\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"{\\\"\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BgV4rdjC2mcqgsZalWAda3zYxw2fA\",\"object\":\"chat.completion.chunk\",\"created\":1749468937,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_a288987b44\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"type\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BgV4rdjC2mcqgsZalWAda3zYxw2fA\",\"object\":\"chat.completion.chunk\",\"created\":1749468937,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_a288987b44\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"\\\":\\\"\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BgV4rdjC2mcqgsZalWAda3zYxw2fA\",\"object\":\"chat.completion.chunk\",\"created\":1749468937,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_a288987b44\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"text\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BgV4rdjC2mcqgsZalWAda3zYxw2fA\",\"object\":\"chat.completion.chunk\",\"created\":1749468937,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_a288987b44\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"\\\",\\\"\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BgV4rdjC2mcqgsZalWAda3zYxw2fA\",\"object\":\"chat.completion.chunk\",\"created\":1749468937,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_a288987b44\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"text\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BgV4rdjC2mcqgsZalWAda3zYxw2fA\",\"object\":\"chat.completion.chunk\",\"created\":1749468937,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_a288987b44\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"\\\":\\\"\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BgV4rdjC2mcqgsZalWAda3zYxw2fA\",\"object\":\"chat.completion.chunk\",\"created\":1749468937,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_a288987b44\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"Hello\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BgV4rdjC2mcqgsZalWAda3zYxw2fA\",\"object\":\"chat.completion.chunk\",\"created\":1749468937,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_a288987b44\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\",\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BgV4rdjC2mcqgsZalWAda3zYxw2fA\",\"object\":\"chat.completion.chunk\",\"created\":1749468937,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_a288987b44\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\" world\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BgV4rdjC2mcqgsZalWAda3zYxw2fA\",\"object\":\"chat.completion.chunk\",\"created\":1749468937,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_a288987b44\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"!\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BgV4rdjC2mcqgsZalWAda3zYxw2fA\",\"object\":\"chat.completion.chunk\",\"created\":1749468937,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_a288987b44\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"\\\",\\\"\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BgV4rdjC2mcqgsZalWAda3zYxw2fA\",\"object\":\"chat.completion.chunk\",\"created\":1749468937,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_a288987b44\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"styles\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BgV4rdjC2mcqgsZalWAda3zYxw2fA\",\"object\":\"chat.completion.chunk\",\"created\":1749468937,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_a288987b44\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"\\\":{\\\"\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BgV4rdjC2mcqgsZalWAda3zYxw2fA\",\"object\":\"chat.completion.chunk\",\"created\":1749468937,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_a288987b44\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"bold\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BgV4rdjC2mcqgsZalWAda3zYxw2fA\",\"object\":\"chat.completion.chunk\",\"created\":1749468937,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_a288987b44\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"\\\":\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BgV4rdjC2mcqgsZalWAda3zYxw2fA\",\"object\":\"chat.completion.chunk\",\"created\":1749468937,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_a288987b44\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"true\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BgV4rdjC2mcqgsZalWAda3zYxw2fA\",\"object\":\"chat.completion.chunk\",\"created\":1749468937,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_a288987b44\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"}}\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BgV4rdjC2mcqgsZalWAda3zYxw2fA\",\"object\":\"chat.completion.chunk\",\"created\":1749468937,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_a288987b44\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"]\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BgV4rdjC2mcqgsZalWAda3zYxw2fA\",\"object\":\"chat.completion.chunk\",\"created\":1749468937,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_a288987b44\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"}}\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BgV4rdjC2mcqgsZalWAda3zYxw2fA\",\"object\":\"chat.completion.chunk\",\"created\":1749468937,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_a288987b44\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"]}\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BgV4rdjC2mcqgsZalWAda3zYxw2fA\",\"object\":\"chat.completion.chunk\",\"created\":1749468937,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_a288987b44\",\"choices\":[{\"index\":0,\"delta\":{},\"logprobs\":null,\"finish_reason\":\"stop\"}]}\n\ndata: [DONE]\n\n", + "body": "data: {\"id\":\"chatcmpl-BhXnIW5qJIfcabnBfp5MkjQZ6Ti41\",\"object\":\"chat.completion.chunk\",\"created\":1749717708,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_a288987b44\",\"choices\":[{\"index\":0,\"delta\":{\"role\":\"assistant\",\"content\":null,\"tool_calls\":[{\"index\":0,\"id\":\"call_evPPhpcRMsFGYTakhELWyLX3\",\"type\":\"function\",\"function\":{\"name\":\"json\",\"arguments\":\"\"}}],\"refusal\":null},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BhXnIW5qJIfcabnBfp5MkjQZ6Ti41\",\"object\":\"chat.completion.chunk\",\"created\":1749717708,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_a288987b44\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"{\\\"\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BhXnIW5qJIfcabnBfp5MkjQZ6Ti41\",\"object\":\"chat.completion.chunk\",\"created\":1749717708,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_a288987b44\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"operations\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BhXnIW5qJIfcabnBfp5MkjQZ6Ti41\",\"object\":\"chat.completion.chunk\",\"created\":1749717708,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_a288987b44\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"\\\":[\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BhXnIW5qJIfcabnBfp5MkjQZ6Ti41\",\"object\":\"chat.completion.chunk\",\"created\":1749717708,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_a288987b44\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"{\\\"\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BhXnIW5qJIfcabnBfp5MkjQZ6Ti41\",\"object\":\"chat.completion.chunk\",\"created\":1749717708,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_a288987b44\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"type\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BhXnIW5qJIfcabnBfp5MkjQZ6Ti41\",\"object\":\"chat.completion.chunk\",\"created\":1749717708,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_a288987b44\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"\\\":\\\"\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BhXnIW5qJIfcabnBfp5MkjQZ6Ti41\",\"object\":\"chat.completion.chunk\",\"created\":1749717708,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_a288987b44\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"update\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BhXnIW5qJIfcabnBfp5MkjQZ6Ti41\",\"object\":\"chat.completion.chunk\",\"created\":1749717708,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_a288987b44\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"\\\",\\\"\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BhXnIW5qJIfcabnBfp5MkjQZ6Ti41\",\"object\":\"chat.completion.chunk\",\"created\":1749717708,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_a288987b44\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"id\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BhXnIW5qJIfcabnBfp5MkjQZ6Ti41\",\"object\":\"chat.completion.chunk\",\"created\":1749717708,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_a288987b44\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"\\\":\\\"\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BhXnIW5qJIfcabnBfp5MkjQZ6Ti41\",\"object\":\"chat.completion.chunk\",\"created\":1749717708,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_a288987b44\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"ref\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BhXnIW5qJIfcabnBfp5MkjQZ6Ti41\",\"object\":\"chat.completion.chunk\",\"created\":1749717708,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_a288987b44\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"1\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BhXnIW5qJIfcabnBfp5MkjQZ6Ti41\",\"object\":\"chat.completion.chunk\",\"created\":1749717708,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_a288987b44\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"$\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BhXnIW5qJIfcabnBfp5MkjQZ6Ti41\",\"object\":\"chat.completion.chunk\",\"created\":1749717708,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_a288987b44\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"\\\",\\\"\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BhXnIW5qJIfcabnBfp5MkjQZ6Ti41\",\"object\":\"chat.completion.chunk\",\"created\":1749717708,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_a288987b44\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"block\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BhXnIW5qJIfcabnBfp5MkjQZ6Ti41\",\"object\":\"chat.completion.chunk\",\"created\":1749717708,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_a288987b44\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"\\\":{\\\"\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BhXnIW5qJIfcabnBfp5MkjQZ6Ti41\",\"object\":\"chat.completion.chunk\",\"created\":1749717708,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_a288987b44\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"type\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BhXnIW5qJIfcabnBfp5MkjQZ6Ti41\",\"object\":\"chat.completion.chunk\",\"created\":1749717708,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_a288987b44\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"\\\":\\\"\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BhXnIW5qJIfcabnBfp5MkjQZ6Ti41\",\"object\":\"chat.completion.chunk\",\"created\":1749717708,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_a288987b44\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"paragraph\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BhXnIW5qJIfcabnBfp5MkjQZ6Ti41\",\"object\":\"chat.completion.chunk\",\"created\":1749717708,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_a288987b44\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"\\\",\\\"\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BhXnIW5qJIfcabnBfp5MkjQZ6Ti41\",\"object\":\"chat.completion.chunk\",\"created\":1749717708,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_a288987b44\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"content\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BhXnIW5qJIfcabnBfp5MkjQZ6Ti41\",\"object\":\"chat.completion.chunk\",\"created\":1749717708,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_a288987b44\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"\\\":[\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BhXnIW5qJIfcabnBfp5MkjQZ6Ti41\",\"object\":\"chat.completion.chunk\",\"created\":1749717708,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_a288987b44\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"{\\\"\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BhXnIW5qJIfcabnBfp5MkjQZ6Ti41\",\"object\":\"chat.completion.chunk\",\"created\":1749717708,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_a288987b44\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"type\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BhXnIW5qJIfcabnBfp5MkjQZ6Ti41\",\"object\":\"chat.completion.chunk\",\"created\":1749717708,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_a288987b44\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"\\\":\\\"\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BhXnIW5qJIfcabnBfp5MkjQZ6Ti41\",\"object\":\"chat.completion.chunk\",\"created\":1749717708,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_a288987b44\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"text\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BhXnIW5qJIfcabnBfp5MkjQZ6Ti41\",\"object\":\"chat.completion.chunk\",\"created\":1749717708,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_a288987b44\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"\\\",\\\"\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BhXnIW5qJIfcabnBfp5MkjQZ6Ti41\",\"object\":\"chat.completion.chunk\",\"created\":1749717708,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_a288987b44\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"text\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BhXnIW5qJIfcabnBfp5MkjQZ6Ti41\",\"object\":\"chat.completion.chunk\",\"created\":1749717708,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_a288987b44\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"\\\":\\\"\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BhXnIW5qJIfcabnBfp5MkjQZ6Ti41\",\"object\":\"chat.completion.chunk\",\"created\":1749717708,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_a288987b44\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"Hello\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BhXnIW5qJIfcabnBfp5MkjQZ6Ti41\",\"object\":\"chat.completion.chunk\",\"created\":1749717708,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_a288987b44\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\",\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BhXnIW5qJIfcabnBfp5MkjQZ6Ti41\",\"object\":\"chat.completion.chunk\",\"created\":1749717708,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_a288987b44\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\" world\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BhXnIW5qJIfcabnBfp5MkjQZ6Ti41\",\"object\":\"chat.completion.chunk\",\"created\":1749717708,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_a288987b44\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"!\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BhXnIW5qJIfcabnBfp5MkjQZ6Ti41\",\"object\":\"chat.completion.chunk\",\"created\":1749717708,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_a288987b44\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"\\\",\\\"\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BhXnIW5qJIfcabnBfp5MkjQZ6Ti41\",\"object\":\"chat.completion.chunk\",\"created\":1749717708,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_a288987b44\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"styles\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BhXnIW5qJIfcabnBfp5MkjQZ6Ti41\",\"object\":\"chat.completion.chunk\",\"created\":1749717708,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_a288987b44\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"\\\":{\\\"\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BhXnIW5qJIfcabnBfp5MkjQZ6Ti41\",\"object\":\"chat.completion.chunk\",\"created\":1749717708,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_a288987b44\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"bold\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BhXnIW5qJIfcabnBfp5MkjQZ6Ti41\",\"object\":\"chat.completion.chunk\",\"created\":1749717708,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_a288987b44\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"\\\":\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BhXnIW5qJIfcabnBfp5MkjQZ6Ti41\",\"object\":\"chat.completion.chunk\",\"created\":1749717708,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_a288987b44\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"true\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BhXnIW5qJIfcabnBfp5MkjQZ6Ti41\",\"object\":\"chat.completion.chunk\",\"created\":1749717708,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_a288987b44\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"}}\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BhXnIW5qJIfcabnBfp5MkjQZ6Ti41\",\"object\":\"chat.completion.chunk\",\"created\":1749717708,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_a288987b44\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"]\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BhXnIW5qJIfcabnBfp5MkjQZ6Ti41\",\"object\":\"chat.completion.chunk\",\"created\":1749717708,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_a288987b44\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"}}\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BhXnIW5qJIfcabnBfp5MkjQZ6Ti41\",\"object\":\"chat.completion.chunk\",\"created\":1749717708,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_a288987b44\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"]}\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BhXnIW5qJIfcabnBfp5MkjQZ6Ti41\",\"object\":\"chat.completion.chunk\",\"created\":1749717708,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_a288987b44\",\"choices\":[{\"index\":0,\"delta\":{},\"logprobs\":null,\"finish_reason\":\"stop\"}]}\n\ndata: [DONE]\n\n", "headers": [] } } \ No newline at end of file diff --git a/packages/xl-ai/src/api/formats/json/__snapshots__/json.test.ts/Update/__msw_snapshots__/openai.chat/gpt-4o-2024-08-06 (streaming)/styles + ic in target block, add mark (word)_1_8d6ac75d2fe03ed372dc4dfb15b98743.json b/packages/xl-ai/src/api/formats/json/__snapshots__/json.test.ts/Update/__msw_snapshots__/openai.chat/gpt-4o-2024-08-06 (streaming)/styles + ic in target block, add mark (word)_1_fcea684e1046247de9494412e5098d53.json similarity index 51% rename from packages/xl-ai/src/api/formats/json/__snapshots__/json.test.ts/Update/__msw_snapshots__/openai.chat/gpt-4o-2024-08-06 (streaming)/styles + ic in target block, add mark (word)_1_8d6ac75d2fe03ed372dc4dfb15b98743.json rename to packages/xl-ai/src/api/formats/json/__snapshots__/json.test.ts/Update/__msw_snapshots__/openai.chat/gpt-4o-2024-08-06 (streaming)/styles + ic in target block, add mark (word)_1_fcea684e1046247de9494412e5098d53.json index b46cd71d1f..e1bac39769 100644 --- a/packages/xl-ai/src/api/formats/json/__snapshots__/json.test.ts/Update/__msw_snapshots__/openai.chat/gpt-4o-2024-08-06 (streaming)/styles + ic in target block, add mark (word)_1_8d6ac75d2fe03ed372dc4dfb15b98743.json +++ b/packages/xl-ai/src/api/formats/json/__snapshots__/json.test.ts/Update/__msw_snapshots__/openai.chat/gpt-4o-2024-08-06 (streaming)/styles + ic in target block, add mark (word)_1_fcea684e1046247de9494412e5098d53.json @@ -2,14 +2,14 @@ "request": { "method": "POST", "url": "https://localhost:3000/ai?provider=openai&url=https%3A%2F%2Fapi.openai.com%2Fv1%2Fchat%2Fcompletions", - "body": "{\"model\":\"gpt-4o-2024-08-06\",\"temperature\":0,\"messages\":[{\"role\":\"system\",\"content\":\"You're manipulating a text document using JSON blocks. \\n Make sure to follow the json schema provided. When referencing ids they MUST be EXACTLY the same (including the trailing $). \\n This is the document as an array of JSON blocks (the cursor is BETWEEN two blocks as indicated by cursor: true):\"},{\"role\":\"system\",\"content\":\"[{\\\"id\\\":\\\"ref1$\\\",\\\"block\\\":{\\\"id\\\":\\\"ref1\\\",\\\"type\\\":\\\"paragraph\\\",\\\"props\\\":{\\\"textColor\\\":\\\"default\\\",\\\"backgroundColor\\\":\\\"default\\\",\\\"textAlignment\\\":\\\"left\\\"},\\\"content\\\":[{\\\"type\\\":\\\"text\\\",\\\"text\\\":\\\"Hello, world!\\\",\\\"styles\\\":{}}]}},{\\\"cursor\\\":true},{\\\"id\\\":\\\"ref2$\\\",\\\"block\\\":{\\\"id\\\":\\\"ref2\\\",\\\"type\\\":\\\"paragraph\\\",\\\"props\\\":{\\\"textColor\\\":\\\"default\\\",\\\"backgroundColor\\\":\\\"default\\\",\\\"textAlignment\\\":\\\"left\\\"},\\\"content\\\":[{\\\"type\\\":\\\"text\\\",\\\"text\\\":\\\"Hello, \\\",\\\"styles\\\":{}},{\\\"type\\\":\\\"mention\\\",\\\"props\\\":{\\\"user\\\":\\\"John Doe\\\"}},{\\\"type\\\":\\\"text\\\",\\\"text\\\":\\\"! \\\",\\\"styles\\\":{}},{\\\"type\\\":\\\"text\\\",\\\"text\\\":\\\"How are you doing?\\\",\\\"styles\\\":{\\\"bold\\\":true}},{\\\"type\\\":\\\"text\\\",\\\"text\\\":\\\" \\\",\\\"styles\\\":{}},{\\\"type\\\":\\\"text\\\",\\\"text\\\":\\\"This text is blue!\\\",\\\"styles\\\":{\\\"textColor\\\":\\\"blue\\\"}}]}},{\\\"id\\\":\\\"ref3$\\\",\\\"block\\\":{\\\"id\\\":\\\"ref3\\\",\\\"type\\\":\\\"paragraph\\\",\\\"props\\\":{\\\"textColor\\\":\\\"default\\\",\\\"backgroundColor\\\":\\\"default\\\",\\\"textAlignment\\\":\\\"left\\\"},\\\"content\\\":[{\\\"type\\\":\\\"text\\\",\\\"text\\\":\\\"Hello, world! \\\",\\\"styles\\\":{}},{\\\"type\\\":\\\"text\\\",\\\"text\\\":\\\"Bold text. \\\",\\\"styles\\\":{\\\"bold\\\":true}},{\\\"type\\\":\\\"link\\\",\\\"href\\\":\\\"https://www.google.com\\\",\\\"content\\\":[{\\\"type\\\":\\\"text\\\",\\\"text\\\":\\\"Link.\\\",\\\"styles\\\":{}}]}]}}]\"},{\"role\":\"system\",\"content\":\"The user asks you to do the following:\"},{\"role\":\"user\",\"content\":\"make 'world!' (in the first block) bold\"},{\"role\":\"system\",\"content\":\"First, determine what part of the document the user is talking about. You SHOULD probably take cursor info into account if needed.\\n EXAMPLE: if user says \\\"below\\\" (without pointing to a specific part of the document) he / she probably indicates the block(s) after the cursor. \\n EXAMPLE: If you want to insert content AT the cursor position (UNLESS indicated otherwise by the user), then you need `referenceId` to point to the block before the cursor with position `after` (or block below and `before`).\\n \\n Prefer updating existing blocks over removing and adding (but this also depends on the user's question).\"}],\"tool_choice\":{\"type\":\"function\",\"function\":{\"name\":\"json\"}},\"tools\":[{\"type\":\"function\",\"function\":{\"name\":\"json\",\"description\":\"Respond with a JSON object.\",\"parameters\":{\"type\":\"object\",\"properties\":{\"operations\":{\"type\":\"array\",\"items\":{\"anyOf\":[{\"type\":\"object\",\"description\":\"Update a block, the new block will replace the existing block.\",\"properties\":{\"type\":{\"type\":\"string\",\"enum\":[\"update\"]},\"id\":{\"type\":\"string\",\"description\":\"id of block to update\"},\"block\":{\"$ref\":\"#/$defs/block\"}},\"required\":[\"type\",\"id\",\"block\"],\"additionalProperties\":false},{\"type\":\"object\",\"description\":\"Insert new blocks\",\"properties\":{\"type\":{\"type\":\"string\",\"enum\":[\"add\"]},\"referenceId\":{\"type\":\"string\",\"description\":\"MUST be an id of a block in the document\"},\"position\":{\"type\":\"string\",\"enum\":[\"before\",\"after\"],\"description\":\"`after` to add blocks AFTER (below) the block with `referenceId`, `before` to add the block BEFORE (above)\"},\"blocks\":{\"items\":{\"$ref\":\"#/$defs/block\"},\"type\":\"array\"}},\"required\":[\"type\",\"referenceId\",\"position\",\"blocks\"],\"additionalProperties\":false},{\"type\":\"object\",\"description\":\"Delete a block\",\"properties\":{\"type\":{\"type\":\"string\",\"enum\":[\"delete\"]},\"id\":{\"type\":\"string\",\"description\":\"id of block to delete\"}},\"required\":[\"type\",\"id\"],\"additionalProperties\":false}]}}},\"additionalProperties\":false,\"required\":[\"operations\"],\"$defs\":{\"styles\":{\"type\":\"object\",\"properties\":{\"bold\":{\"type\":\"boolean\"},\"italic\":{\"type\":\"boolean\"},\"underline\":{\"type\":\"boolean\"},\"strike\":{\"type\":\"boolean\"},\"code\":{\"type\":\"boolean\"},\"textColor\":{\"type\":\"string\"},\"backgroundColor\":{\"type\":\"string\"}},\"additionalProperties\":false},\"styledtext\":{\"type\":\"object\",\"properties\":{\"type\":{\"type\":\"string\",\"enum\":[\"text\"]},\"text\":{\"type\":\"string\"},\"styles\":{\"$ref\":\"#/$defs/styles\"}},\"additionalProperties\":false,\"required\":[\"type\",\"text\"]},\"inlinecontent\":{\"type\":\"array\",\"items\":{\"anyOf\":[{\"type\":\"object\",\"properties\":{\"type\":{\"type\":\"string\",\"enum\":[\"mention\"]},\"props\":{\"type\":\"object\",\"properties\":{\"user\":{\"type\":\"string\"}},\"additionalProperties\":false}},\"additionalProperties\":false,\"required\":[\"type\"]},{\"$ref\":\"#/$defs/styledtext\"},{\"type\":\"object\",\"properties\":{\"type\":{\"type\":\"string\",\"enum\":[\"link\"]},\"content\":{\"type\":\"array\",\"items\":{\"$ref\":\"#/$defs/styledtext\"}},\"href\":{\"type\":\"string\"}},\"additionalProperties\":false,\"required\":[\"type\",\"href\",\"content\"]}]}},\"block\":{\"anyOf\":[{\"type\":\"object\",\"properties\":{\"type\":{\"type\":\"string\",\"enum\":[\"paragraph\",\"quote\",\"bulletListItem\",\"numberedListItem\"]},\"content\":{\"$ref\":\"#/$defs/inlinecontent\"},\"props\":{\"type\":\"object\",\"properties\":{},\"additionalProperties\":false}},\"additionalProperties\":false,\"required\":[\"type\"]},{\"type\":\"object\",\"properties\":{\"type\":{\"type\":\"string\",\"enum\":[\"heading\"]},\"content\":{\"$ref\":\"#/$defs/inlinecontent\"},\"props\":{\"type\":\"object\",\"properties\":{\"level\":{\"type\":\"number\",\"enum\":[1,2,3]}},\"additionalProperties\":false}},\"additionalProperties\":false,\"required\":[\"type\"]},{\"type\":\"object\",\"properties\":{\"type\":{\"type\":\"string\",\"enum\":[\"codeBlock\"]},\"content\":{\"$ref\":\"#/$defs/inlinecontent\"},\"props\":{\"type\":\"object\",\"properties\":{\"language\":{\"type\":\"string\"}},\"additionalProperties\":false}},\"additionalProperties\":false,\"required\":[\"type\"]},{\"type\":\"object\",\"properties\":{\"type\":{\"type\":\"string\",\"enum\":[\"checkListItem\"]},\"content\":{\"$ref\":\"#/$defs/inlinecontent\"},\"props\":{\"type\":\"object\",\"properties\":{\"checked\":{\"type\":\"boolean\"}},\"additionalProperties\":false}},\"additionalProperties\":false,\"required\":[\"type\"]},{\"type\":\"object\",\"properties\":{\"type\":{\"type\":\"string\",\"enum\":[\"table\"]},\"content\":{\"type\":\"object\",\"properties\":{}},\"props\":{\"type\":\"object\",\"properties\":{},\"additionalProperties\":false}},\"additionalProperties\":false,\"required\":[\"type\"]}]}}}}}],\"stream\":true}", + "body": "{\"model\":\"gpt-4o-2024-08-06\",\"temperature\":0,\"messages\":[{\"role\":\"system\",\"content\":\"You're manipulating a text document using JSON blocks. \\n Make sure to follow the json schema provided. When referencing ids they MUST be EXACTLY the same (including the trailing $). \\n This is the document as an array of JSON blocks (the cursor is BETWEEN two blocks as indicated by cursor: true):\"},{\"role\":\"system\",\"content\":\"[{\\\"id\\\":\\\"ref1$\\\",\\\"block\\\":{\\\"id\\\":\\\"ref1\\\",\\\"type\\\":\\\"paragraph\\\",\\\"props\\\":{\\\"textColor\\\":\\\"default\\\",\\\"backgroundColor\\\":\\\"default\\\",\\\"textAlignment\\\":\\\"left\\\"},\\\"content\\\":[{\\\"type\\\":\\\"text\\\",\\\"text\\\":\\\"Hello, world!\\\",\\\"styles\\\":{}}]}},{\\\"cursor\\\":true},{\\\"id\\\":\\\"ref2$\\\",\\\"block\\\":{\\\"id\\\":\\\"ref2\\\",\\\"type\\\":\\\"paragraph\\\",\\\"props\\\":{\\\"textColor\\\":\\\"default\\\",\\\"backgroundColor\\\":\\\"default\\\",\\\"textAlignment\\\":\\\"left\\\"},\\\"content\\\":[{\\\"type\\\":\\\"text\\\",\\\"text\\\":\\\"Hello, \\\",\\\"styles\\\":{}},{\\\"type\\\":\\\"mention\\\",\\\"props\\\":{\\\"user\\\":\\\"John Doe\\\"}},{\\\"type\\\":\\\"text\\\",\\\"text\\\":\\\"! \\\",\\\"styles\\\":{}},{\\\"type\\\":\\\"text\\\",\\\"text\\\":\\\"How are you doing?\\\",\\\"styles\\\":{\\\"bold\\\":true}},{\\\"type\\\":\\\"text\\\",\\\"text\\\":\\\" \\\",\\\"styles\\\":{}},{\\\"type\\\":\\\"text\\\",\\\"text\\\":\\\"This text is blue!\\\",\\\"styles\\\":{\\\"textColor\\\":\\\"blue\\\"}}]}},{\\\"id\\\":\\\"ref3$\\\",\\\"block\\\":{\\\"id\\\":\\\"ref3\\\",\\\"type\\\":\\\"paragraph\\\",\\\"props\\\":{\\\"textColor\\\":\\\"default\\\",\\\"backgroundColor\\\":\\\"default\\\",\\\"textAlignment\\\":\\\"left\\\"},\\\"content\\\":[{\\\"type\\\":\\\"text\\\",\\\"text\\\":\\\"Hello, world! \\\",\\\"styles\\\":{}},{\\\"type\\\":\\\"text\\\",\\\"text\\\":\\\"Bold text. \\\",\\\"styles\\\":{\\\"bold\\\":true}},{\\\"type\\\":\\\"link\\\",\\\"href\\\":\\\"https://www.google.com\\\",\\\"content\\\":[{\\\"type\\\":\\\"text\\\",\\\"text\\\":\\\"Link.\\\",\\\"styles\\\":{}}]}]}}]\"},{\"role\":\"system\",\"content\":\"The user asks you to do the following:\"},{\"role\":\"user\",\"content\":\"make 'world!' (in the first block) bold\"},{\"role\":\"system\",\"content\":\"First, determine what part of the document the user is talking about. You SHOULD probably take cursor info into account if needed.\\n EXAMPLE: if user says \\\"below\\\" (without pointing to a specific part of the document) he / she probably indicates the block(s) after the cursor. \\n EXAMPLE: If you want to insert content AT the cursor position (UNLESS indicated otherwise by the user), then you need `referenceId` to point to the block before the cursor with position `after` (or block below and `before`).\\n \\n Prefer updating existing blocks over removing and adding (but this also depends on the user's question).\"}],\"tool_choice\":{\"type\":\"function\",\"function\":{\"name\":\"json\"}},\"tools\":[{\"type\":\"function\",\"function\":{\"name\":\"json\",\"description\":\"Respond with a JSON object.\",\"parameters\":{\"type\":\"object\",\"properties\":{\"operations\":{\"type\":\"array\",\"items\":{\"anyOf\":[{\"type\":\"object\",\"description\":\"Update a block, the new block will replace the existing block.\",\"properties\":{\"type\":{\"type\":\"string\",\"enum\":[\"update\"]},\"id\":{\"type\":\"string\",\"description\":\"id of block to update\"},\"block\":{\"$ref\":\"#/$defs/block\"}},\"required\":[\"type\",\"id\",\"block\"],\"additionalProperties\":false},{\"type\":\"object\",\"description\":\"Insert new blocks\",\"properties\":{\"type\":{\"type\":\"string\",\"enum\":[\"add\"]},\"referenceId\":{\"type\":\"string\",\"description\":\"MUST be an id of a block in the document\"},\"position\":{\"type\":\"string\",\"enum\":[\"before\",\"after\"],\"description\":\"`after` to add blocks AFTER (below) the block with `referenceId`, `before` to add the block BEFORE (above)\"},\"blocks\":{\"items\":{\"$ref\":\"#/$defs/block\"},\"type\":\"array\"}},\"required\":[\"type\",\"referenceId\",\"position\",\"blocks\"],\"additionalProperties\":false},{\"type\":\"object\",\"description\":\"Delete a block\",\"properties\":{\"type\":{\"type\":\"string\",\"enum\":[\"delete\"]},\"id\":{\"type\":\"string\",\"description\":\"id of block to delete\"}},\"required\":[\"type\",\"id\"],\"additionalProperties\":false}]}}},\"additionalProperties\":false,\"required\":[\"operations\"],\"$defs\":{\"styles\":{\"type\":\"object\",\"properties\":{\"bold\":{\"type\":\"boolean\"},\"italic\":{\"type\":\"boolean\"},\"underline\":{\"type\":\"boolean\"},\"strike\":{\"type\":\"boolean\"},\"code\":{\"type\":\"boolean\"},\"textColor\":{\"type\":\"string\"},\"backgroundColor\":{\"type\":\"string\"}},\"additionalProperties\":false},\"styledtext\":{\"type\":\"object\",\"properties\":{\"type\":{\"type\":\"string\",\"enum\":[\"text\"]},\"text\":{\"type\":\"string\"},\"styles\":{\"$ref\":\"#/$defs/styles\"}},\"additionalProperties\":false,\"required\":[\"type\",\"text\"]},\"inlinecontent\":{\"type\":\"array\",\"items\":{\"anyOf\":[{\"type\":\"object\",\"properties\":{\"type\":{\"type\":\"string\",\"enum\":[\"mention\"]},\"props\":{\"type\":\"object\",\"properties\":{\"user\":{\"type\":\"string\"}},\"additionalProperties\":false}},\"additionalProperties\":false,\"required\":[\"type\"]},{\"$ref\":\"#/$defs/styledtext\"},{\"type\":\"object\",\"properties\":{\"type\":{\"type\":\"string\",\"enum\":[\"link\"]},\"content\":{\"type\":\"array\",\"items\":{\"$ref\":\"#/$defs/styledtext\"}},\"href\":{\"type\":\"string\"}},\"additionalProperties\":false,\"required\":[\"type\",\"href\",\"content\"]}]}},\"block\":{\"anyOf\":[{\"type\":\"object\",\"properties\":{\"type\":{\"type\":\"string\",\"enum\":[\"paragraph\",\"quote\",\"toggleListItem\",\"bulletListItem\",\"numberedListItem\"]},\"content\":{\"$ref\":\"#/$defs/inlinecontent\"},\"props\":{\"type\":\"object\",\"properties\":{},\"additionalProperties\":false}},\"additionalProperties\":false,\"required\":[\"type\"]},{\"type\":\"object\",\"properties\":{\"type\":{\"type\":\"string\",\"enum\":[\"heading\"]},\"content\":{\"$ref\":\"#/$defs/inlinecontent\"},\"props\":{\"type\":\"object\",\"properties\":{\"level\":{\"type\":\"number\",\"enum\":[1,2,3]},\"isTogglable\":{\"type\":\"boolean\"}},\"additionalProperties\":false}},\"additionalProperties\":false,\"required\":[\"type\"]},{\"type\":\"object\",\"properties\":{\"type\":{\"type\":\"string\",\"enum\":[\"codeBlock\"]},\"content\":{\"$ref\":\"#/$defs/inlinecontent\"},\"props\":{\"type\":\"object\",\"properties\":{\"language\":{\"type\":\"string\"}},\"additionalProperties\":false}},\"additionalProperties\":false,\"required\":[\"type\"]},{\"type\":\"object\",\"properties\":{\"type\":{\"type\":\"string\",\"enum\":[\"checkListItem\"]},\"content\":{\"$ref\":\"#/$defs/inlinecontent\"},\"props\":{\"type\":\"object\",\"properties\":{\"checked\":{\"type\":\"boolean\"}},\"additionalProperties\":false}},\"additionalProperties\":false,\"required\":[\"type\"]},{\"type\":\"object\",\"properties\":{\"type\":{\"type\":\"string\",\"enum\":[\"table\"]},\"content\":{\"type\":\"object\",\"properties\":{}},\"props\":{\"type\":\"object\",\"properties\":{},\"additionalProperties\":false}},\"additionalProperties\":false,\"required\":[\"type\"]}]}}}}}],\"stream\":true}", "headers": [], "cookies": [] }, "response": { "status": 200, "statusText": "", - "body": "data: {\"id\":\"chatcmpl-BgV4qXv2dCfreoE9UsfBMHCpGEdjS\",\"object\":\"chat.completion.chunk\",\"created\":1749468936,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_07871e2ad8\",\"choices\":[{\"index\":0,\"delta\":{\"role\":\"assistant\",\"content\":null,\"tool_calls\":[{\"index\":0,\"id\":\"call_SsFyxmeB1NuPf6WME3ifCoDZ\",\"type\":\"function\",\"function\":{\"name\":\"json\",\"arguments\":\"\"}}],\"refusal\":null},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BgV4qXv2dCfreoE9UsfBMHCpGEdjS\",\"object\":\"chat.completion.chunk\",\"created\":1749468936,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_07871e2ad8\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"{\\\"\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BgV4qXv2dCfreoE9UsfBMHCpGEdjS\",\"object\":\"chat.completion.chunk\",\"created\":1749468936,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_07871e2ad8\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"operations\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BgV4qXv2dCfreoE9UsfBMHCpGEdjS\",\"object\":\"chat.completion.chunk\",\"created\":1749468936,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_07871e2ad8\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"\\\":[\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BgV4qXv2dCfreoE9UsfBMHCpGEdjS\",\"object\":\"chat.completion.chunk\",\"created\":1749468936,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_07871e2ad8\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"{\\\"\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BgV4qXv2dCfreoE9UsfBMHCpGEdjS\",\"object\":\"chat.completion.chunk\",\"created\":1749468936,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_07871e2ad8\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"type\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BgV4qXv2dCfreoE9UsfBMHCpGEdjS\",\"object\":\"chat.completion.chunk\",\"created\":1749468936,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_07871e2ad8\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"\\\":\\\"\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BgV4qXv2dCfreoE9UsfBMHCpGEdjS\",\"object\":\"chat.completion.chunk\",\"created\":1749468936,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_07871e2ad8\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"update\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BgV4qXv2dCfreoE9UsfBMHCpGEdjS\",\"object\":\"chat.completion.chunk\",\"created\":1749468936,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_07871e2ad8\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"\\\",\\\"\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BgV4qXv2dCfreoE9UsfBMHCpGEdjS\",\"object\":\"chat.completion.chunk\",\"created\":1749468936,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_07871e2ad8\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"id\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BgV4qXv2dCfreoE9UsfBMHCpGEdjS\",\"object\":\"chat.completion.chunk\",\"created\":1749468936,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_07871e2ad8\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"\\\":\\\"\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BgV4qXv2dCfreoE9UsfBMHCpGEdjS\",\"object\":\"chat.completion.chunk\",\"created\":1749468936,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_07871e2ad8\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"ref\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BgV4qXv2dCfreoE9UsfBMHCpGEdjS\",\"object\":\"chat.completion.chunk\",\"created\":1749468936,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_07871e2ad8\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"1\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BgV4qXv2dCfreoE9UsfBMHCpGEdjS\",\"object\":\"chat.completion.chunk\",\"created\":1749468936,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_07871e2ad8\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"$\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BgV4qXv2dCfreoE9UsfBMHCpGEdjS\",\"object\":\"chat.completion.chunk\",\"created\":1749468936,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_07871e2ad8\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"\\\",\\\"\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BgV4qXv2dCfreoE9UsfBMHCpGEdjS\",\"object\":\"chat.completion.chunk\",\"created\":1749468936,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_07871e2ad8\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"block\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BgV4qXv2dCfreoE9UsfBMHCpGEdjS\",\"object\":\"chat.completion.chunk\",\"created\":1749468936,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_07871e2ad8\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"\\\":{\\\"\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BgV4qXv2dCfreoE9UsfBMHCpGEdjS\",\"object\":\"chat.completion.chunk\",\"created\":1749468936,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_07871e2ad8\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"type\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BgV4qXv2dCfreoE9UsfBMHCpGEdjS\",\"object\":\"chat.completion.chunk\",\"created\":1749468936,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_07871e2ad8\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"\\\":\\\"\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BgV4qXv2dCfreoE9UsfBMHCpGEdjS\",\"object\":\"chat.completion.chunk\",\"created\":1749468936,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_07871e2ad8\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"paragraph\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BgV4qXv2dCfreoE9UsfBMHCpGEdjS\",\"object\":\"chat.completion.chunk\",\"created\":1749468936,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_07871e2ad8\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"\\\",\\\"\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BgV4qXv2dCfreoE9UsfBMHCpGEdjS\",\"object\":\"chat.completion.chunk\",\"created\":1749468936,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_07871e2ad8\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"content\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BgV4qXv2dCfreoE9UsfBMHCpGEdjS\",\"object\":\"chat.completion.chunk\",\"created\":1749468936,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_07871e2ad8\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"\\\":[\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BgV4qXv2dCfreoE9UsfBMHCpGEdjS\",\"object\":\"chat.completion.chunk\",\"created\":1749468936,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_07871e2ad8\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"{\\\"\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BgV4qXv2dCfreoE9UsfBMHCpGEdjS\",\"object\":\"chat.completion.chunk\",\"created\":1749468936,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_07871e2ad8\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"type\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BgV4qXv2dCfreoE9UsfBMHCpGEdjS\",\"object\":\"chat.completion.chunk\",\"created\":1749468936,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_07871e2ad8\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"\\\":\\\"\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BgV4qXv2dCfreoE9UsfBMHCpGEdjS\",\"object\":\"chat.completion.chunk\",\"created\":1749468936,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_07871e2ad8\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"text\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BgV4qXv2dCfreoE9UsfBMHCpGEdjS\",\"object\":\"chat.completion.chunk\",\"created\":1749468936,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_07871e2ad8\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"\\\",\\\"\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BgV4qXv2dCfreoE9UsfBMHCpGEdjS\",\"object\":\"chat.completion.chunk\",\"created\":1749468936,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_07871e2ad8\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"text\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BgV4qXv2dCfreoE9UsfBMHCpGEdjS\",\"object\":\"chat.completion.chunk\",\"created\":1749468936,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_07871e2ad8\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"\\\":\\\"\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BgV4qXv2dCfreoE9UsfBMHCpGEdjS\",\"object\":\"chat.completion.chunk\",\"created\":1749468936,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_07871e2ad8\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"Hello\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BgV4qXv2dCfreoE9UsfBMHCpGEdjS\",\"object\":\"chat.completion.chunk\",\"created\":1749468936,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_07871e2ad8\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\",\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BgV4qXv2dCfreoE9UsfBMHCpGEdjS\",\"object\":\"chat.completion.chunk\",\"created\":1749468936,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_07871e2ad8\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\" \\\",\\\"\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BgV4qXv2dCfreoE9UsfBMHCpGEdjS\",\"object\":\"chat.completion.chunk\",\"created\":1749468936,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_07871e2ad8\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"styles\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BgV4qXv2dCfreoE9UsfBMHCpGEdjS\",\"object\":\"chat.completion.chunk\",\"created\":1749468936,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_07871e2ad8\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"\\\":\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BgV4qXv2dCfreoE9UsfBMHCpGEdjS\",\"object\":\"chat.completion.chunk\",\"created\":1749468936,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_07871e2ad8\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"{}\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BgV4qXv2dCfreoE9UsfBMHCpGEdjS\",\"object\":\"chat.completion.chunk\",\"created\":1749468936,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_07871e2ad8\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"},{\\\"\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BgV4qXv2dCfreoE9UsfBMHCpGEdjS\",\"object\":\"chat.completion.chunk\",\"created\":1749468936,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_07871e2ad8\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"type\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BgV4qXv2dCfreoE9UsfBMHCpGEdjS\",\"object\":\"chat.completion.chunk\",\"created\":1749468936,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_07871e2ad8\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"\\\":\\\"\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BgV4qXv2dCfreoE9UsfBMHCpGEdjS\",\"object\":\"chat.completion.chunk\",\"created\":1749468936,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_07871e2ad8\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"text\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BgV4qXv2dCfreoE9UsfBMHCpGEdjS\",\"object\":\"chat.completion.chunk\",\"created\":1749468936,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_07871e2ad8\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"\\\",\\\"\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BgV4qXv2dCfreoE9UsfBMHCpGEdjS\",\"object\":\"chat.completion.chunk\",\"created\":1749468936,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_07871e2ad8\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"text\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BgV4qXv2dCfreoE9UsfBMHCpGEdjS\",\"object\":\"chat.completion.chunk\",\"created\":1749468936,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_07871e2ad8\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"\\\":\\\"\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BgV4qXv2dCfreoE9UsfBMHCpGEdjS\",\"object\":\"chat.completion.chunk\",\"created\":1749468936,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_07871e2ad8\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"world\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BgV4qXv2dCfreoE9UsfBMHCpGEdjS\",\"object\":\"chat.completion.chunk\",\"created\":1749468936,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_07871e2ad8\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"!\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BgV4qXv2dCfreoE9UsfBMHCpGEdjS\",\"object\":\"chat.completion.chunk\",\"created\":1749468936,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_07871e2ad8\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"\\\",\\\"\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BgV4qXv2dCfreoE9UsfBMHCpGEdjS\",\"object\":\"chat.completion.chunk\",\"created\":1749468936,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_07871e2ad8\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"styles\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BgV4qXv2dCfreoE9UsfBMHCpGEdjS\",\"object\":\"chat.completion.chunk\",\"created\":1749468936,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_07871e2ad8\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"\\\":{\\\"\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BgV4qXv2dCfreoE9UsfBMHCpGEdjS\",\"object\":\"chat.completion.chunk\",\"created\":1749468936,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_07871e2ad8\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"bold\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BgV4qXv2dCfreoE9UsfBMHCpGEdjS\",\"object\":\"chat.completion.chunk\",\"created\":1749468936,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_07871e2ad8\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"\\\":\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BgV4qXv2dCfreoE9UsfBMHCpGEdjS\",\"object\":\"chat.completion.chunk\",\"created\":1749468936,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_07871e2ad8\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"true\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BgV4qXv2dCfreoE9UsfBMHCpGEdjS\",\"object\":\"chat.completion.chunk\",\"created\":1749468936,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_07871e2ad8\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"}}\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BgV4qXv2dCfreoE9UsfBMHCpGEdjS\",\"object\":\"chat.completion.chunk\",\"created\":1749468936,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_07871e2ad8\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"]\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BgV4qXv2dCfreoE9UsfBMHCpGEdjS\",\"object\":\"chat.completion.chunk\",\"created\":1749468936,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_07871e2ad8\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"}}\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BgV4qXv2dCfreoE9UsfBMHCpGEdjS\",\"object\":\"chat.completion.chunk\",\"created\":1749468936,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_07871e2ad8\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"]}\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BgV4qXv2dCfreoE9UsfBMHCpGEdjS\",\"object\":\"chat.completion.chunk\",\"created\":1749468936,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_07871e2ad8\",\"choices\":[{\"index\":0,\"delta\":{},\"logprobs\":null,\"finish_reason\":\"stop\"}]}\n\ndata: [DONE]\n\n", + "body": "data: {\"id\":\"chatcmpl-BhXnGxC3xXuCB6AphkXEGLzAuYjrk\",\"object\":\"chat.completion.chunk\",\"created\":1749717706,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_a288987b44\",\"choices\":[{\"index\":0,\"delta\":{\"role\":\"assistant\",\"content\":null,\"tool_calls\":[{\"index\":0,\"id\":\"call_Q7QE9Fx9TdHOZErBtxWxg5Vg\",\"type\":\"function\",\"function\":{\"name\":\"json\",\"arguments\":\"\"}}],\"refusal\":null},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BhXnGxC3xXuCB6AphkXEGLzAuYjrk\",\"object\":\"chat.completion.chunk\",\"created\":1749717706,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_a288987b44\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"{\\\"\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BhXnGxC3xXuCB6AphkXEGLzAuYjrk\",\"object\":\"chat.completion.chunk\",\"created\":1749717706,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_a288987b44\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"operations\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BhXnGxC3xXuCB6AphkXEGLzAuYjrk\",\"object\":\"chat.completion.chunk\",\"created\":1749717706,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_a288987b44\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"\\\":[\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BhXnGxC3xXuCB6AphkXEGLzAuYjrk\",\"object\":\"chat.completion.chunk\",\"created\":1749717706,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_a288987b44\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"{\\\"\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BhXnGxC3xXuCB6AphkXEGLzAuYjrk\",\"object\":\"chat.completion.chunk\",\"created\":1749717706,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_a288987b44\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"type\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BhXnGxC3xXuCB6AphkXEGLzAuYjrk\",\"object\":\"chat.completion.chunk\",\"created\":1749717706,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_a288987b44\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"\\\":\\\"\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BhXnGxC3xXuCB6AphkXEGLzAuYjrk\",\"object\":\"chat.completion.chunk\",\"created\":1749717706,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_a288987b44\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"update\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BhXnGxC3xXuCB6AphkXEGLzAuYjrk\",\"object\":\"chat.completion.chunk\",\"created\":1749717706,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_a288987b44\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"\\\",\\\"\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BhXnGxC3xXuCB6AphkXEGLzAuYjrk\",\"object\":\"chat.completion.chunk\",\"created\":1749717706,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_a288987b44\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"id\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BhXnGxC3xXuCB6AphkXEGLzAuYjrk\",\"object\":\"chat.completion.chunk\",\"created\":1749717706,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_a288987b44\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"\\\":\\\"\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BhXnGxC3xXuCB6AphkXEGLzAuYjrk\",\"object\":\"chat.completion.chunk\",\"created\":1749717706,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_a288987b44\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"ref\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BhXnGxC3xXuCB6AphkXEGLzAuYjrk\",\"object\":\"chat.completion.chunk\",\"created\":1749717706,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_a288987b44\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"1\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BhXnGxC3xXuCB6AphkXEGLzAuYjrk\",\"object\":\"chat.completion.chunk\",\"created\":1749717706,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_a288987b44\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"$\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BhXnGxC3xXuCB6AphkXEGLzAuYjrk\",\"object\":\"chat.completion.chunk\",\"created\":1749717706,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_a288987b44\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"\\\",\\\"\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BhXnGxC3xXuCB6AphkXEGLzAuYjrk\",\"object\":\"chat.completion.chunk\",\"created\":1749717706,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_a288987b44\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"block\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BhXnGxC3xXuCB6AphkXEGLzAuYjrk\",\"object\":\"chat.completion.chunk\",\"created\":1749717706,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_a288987b44\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"\\\":{\\\"\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BhXnGxC3xXuCB6AphkXEGLzAuYjrk\",\"object\":\"chat.completion.chunk\",\"created\":1749717706,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_a288987b44\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"type\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BhXnGxC3xXuCB6AphkXEGLzAuYjrk\",\"object\":\"chat.completion.chunk\",\"created\":1749717706,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_a288987b44\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"\\\":\\\"\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BhXnGxC3xXuCB6AphkXEGLzAuYjrk\",\"object\":\"chat.completion.chunk\",\"created\":1749717706,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_a288987b44\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"paragraph\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BhXnGxC3xXuCB6AphkXEGLzAuYjrk\",\"object\":\"chat.completion.chunk\",\"created\":1749717706,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_a288987b44\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"\\\",\\\"\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BhXnGxC3xXuCB6AphkXEGLzAuYjrk\",\"object\":\"chat.completion.chunk\",\"created\":1749717706,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_a288987b44\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"content\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BhXnGxC3xXuCB6AphkXEGLzAuYjrk\",\"object\":\"chat.completion.chunk\",\"created\":1749717706,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_a288987b44\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"\\\":[\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BhXnGxC3xXuCB6AphkXEGLzAuYjrk\",\"object\":\"chat.completion.chunk\",\"created\":1749717706,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_a288987b44\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"{\\\"\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BhXnGxC3xXuCB6AphkXEGLzAuYjrk\",\"object\":\"chat.completion.chunk\",\"created\":1749717706,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_a288987b44\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"type\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BhXnGxC3xXuCB6AphkXEGLzAuYjrk\",\"object\":\"chat.completion.chunk\",\"created\":1749717706,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_a288987b44\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"\\\":\\\"\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BhXnGxC3xXuCB6AphkXEGLzAuYjrk\",\"object\":\"chat.completion.chunk\",\"created\":1749717706,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_a288987b44\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"text\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BhXnGxC3xXuCB6AphkXEGLzAuYjrk\",\"object\":\"chat.completion.chunk\",\"created\":1749717706,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_a288987b44\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"\\\",\\\"\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BhXnGxC3xXuCB6AphkXEGLzAuYjrk\",\"object\":\"chat.completion.chunk\",\"created\":1749717706,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_a288987b44\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"text\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BhXnGxC3xXuCB6AphkXEGLzAuYjrk\",\"object\":\"chat.completion.chunk\",\"created\":1749717706,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_a288987b44\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"\\\":\\\"\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BhXnGxC3xXuCB6AphkXEGLzAuYjrk\",\"object\":\"chat.completion.chunk\",\"created\":1749717706,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_a288987b44\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"Hello\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BhXnGxC3xXuCB6AphkXEGLzAuYjrk\",\"object\":\"chat.completion.chunk\",\"created\":1749717706,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_a288987b44\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\",\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BhXnGxC3xXuCB6AphkXEGLzAuYjrk\",\"object\":\"chat.completion.chunk\",\"created\":1749717706,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_a288987b44\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\" \\\",\\\"\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BhXnGxC3xXuCB6AphkXEGLzAuYjrk\",\"object\":\"chat.completion.chunk\",\"created\":1749717706,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_a288987b44\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"styles\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BhXnGxC3xXuCB6AphkXEGLzAuYjrk\",\"object\":\"chat.completion.chunk\",\"created\":1749717706,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_a288987b44\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"\\\":\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BhXnGxC3xXuCB6AphkXEGLzAuYjrk\",\"object\":\"chat.completion.chunk\",\"created\":1749717706,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_a288987b44\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"{}\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BhXnGxC3xXuCB6AphkXEGLzAuYjrk\",\"object\":\"chat.completion.chunk\",\"created\":1749717706,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_a288987b44\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"},{\\\"\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BhXnGxC3xXuCB6AphkXEGLzAuYjrk\",\"object\":\"chat.completion.chunk\",\"created\":1749717706,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_a288987b44\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"type\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BhXnGxC3xXuCB6AphkXEGLzAuYjrk\",\"object\":\"chat.completion.chunk\",\"created\":1749717706,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_a288987b44\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"\\\":\\\"\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BhXnGxC3xXuCB6AphkXEGLzAuYjrk\",\"object\":\"chat.completion.chunk\",\"created\":1749717706,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_a288987b44\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"text\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BhXnGxC3xXuCB6AphkXEGLzAuYjrk\",\"object\":\"chat.completion.chunk\",\"created\":1749717706,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_a288987b44\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"\\\",\\\"\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BhXnGxC3xXuCB6AphkXEGLzAuYjrk\",\"object\":\"chat.completion.chunk\",\"created\":1749717706,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_a288987b44\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"text\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BhXnGxC3xXuCB6AphkXEGLzAuYjrk\",\"object\":\"chat.completion.chunk\",\"created\":1749717706,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_a288987b44\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"\\\":\\\"\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BhXnGxC3xXuCB6AphkXEGLzAuYjrk\",\"object\":\"chat.completion.chunk\",\"created\":1749717706,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_a288987b44\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"world\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BhXnGxC3xXuCB6AphkXEGLzAuYjrk\",\"object\":\"chat.completion.chunk\",\"created\":1749717706,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_a288987b44\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"!\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BhXnGxC3xXuCB6AphkXEGLzAuYjrk\",\"object\":\"chat.completion.chunk\",\"created\":1749717706,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_a288987b44\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"\\\",\\\"\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BhXnGxC3xXuCB6AphkXEGLzAuYjrk\",\"object\":\"chat.completion.chunk\",\"created\":1749717706,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_a288987b44\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"styles\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BhXnGxC3xXuCB6AphkXEGLzAuYjrk\",\"object\":\"chat.completion.chunk\",\"created\":1749717706,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_a288987b44\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"\\\":{\\\"\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BhXnGxC3xXuCB6AphkXEGLzAuYjrk\",\"object\":\"chat.completion.chunk\",\"created\":1749717706,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_a288987b44\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"bold\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BhXnGxC3xXuCB6AphkXEGLzAuYjrk\",\"object\":\"chat.completion.chunk\",\"created\":1749717706,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_a288987b44\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"\\\":\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BhXnGxC3xXuCB6AphkXEGLzAuYjrk\",\"object\":\"chat.completion.chunk\",\"created\":1749717706,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_a288987b44\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"true\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BhXnGxC3xXuCB6AphkXEGLzAuYjrk\",\"object\":\"chat.completion.chunk\",\"created\":1749717706,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_a288987b44\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"}}\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BhXnGxC3xXuCB6AphkXEGLzAuYjrk\",\"object\":\"chat.completion.chunk\",\"created\":1749717706,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_a288987b44\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"]\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BhXnGxC3xXuCB6AphkXEGLzAuYjrk\",\"object\":\"chat.completion.chunk\",\"created\":1749717706,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_a288987b44\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"}}\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BhXnGxC3xXuCB6AphkXEGLzAuYjrk\",\"object\":\"chat.completion.chunk\",\"created\":1749717706,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_a288987b44\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"]}\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BhXnGxC3xXuCB6AphkXEGLzAuYjrk\",\"object\":\"chat.completion.chunk\",\"created\":1749717706,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_a288987b44\",\"choices\":[{\"index\":0,\"delta\":{},\"logprobs\":null,\"finish_reason\":\"stop\"}]}\n\ndata: [DONE]\n\n", "headers": [] } } \ No newline at end of file diff --git a/packages/xl-ai/src/api/formats/json/__snapshots__/json.test.ts/Update/__msw_snapshots__/openai.chat/gpt-4o-2024-08-06 (streaming)/translate selection_1_3f8ef537734ef9b7d2142c49bde8cbdd.json b/packages/xl-ai/src/api/formats/json/__snapshots__/json.test.ts/Update/__msw_snapshots__/openai.chat/gpt-4o-2024-08-06 (streaming)/translate selection_1_ac70d79d18996d3e08a6559885013c70.json similarity index 54% rename from packages/xl-ai/src/api/formats/json/__snapshots__/json.test.ts/Update/__msw_snapshots__/openai.chat/gpt-4o-2024-08-06 (streaming)/translate selection_1_3f8ef537734ef9b7d2142c49bde8cbdd.json rename to packages/xl-ai/src/api/formats/json/__snapshots__/json.test.ts/Update/__msw_snapshots__/openai.chat/gpt-4o-2024-08-06 (streaming)/translate selection_1_ac70d79d18996d3e08a6559885013c70.json index 8b757748d1..9bf7cc7714 100644 --- a/packages/xl-ai/src/api/formats/json/__snapshots__/json.test.ts/Update/__msw_snapshots__/openai.chat/gpt-4o-2024-08-06 (streaming)/translate selection_1_3f8ef537734ef9b7d2142c49bde8cbdd.json +++ b/packages/xl-ai/src/api/formats/json/__snapshots__/json.test.ts/Update/__msw_snapshots__/openai.chat/gpt-4o-2024-08-06 (streaming)/translate selection_1_ac70d79d18996d3e08a6559885013c70.json @@ -2,14 +2,14 @@ "request": { "method": "POST", "url": "https://localhost:3000/ai?provider=openai&url=https%3A%2F%2Fapi.openai.com%2Fv1%2Fchat%2Fcompletions", - "body": "{\"model\":\"gpt-4o-2024-08-06\",\"temperature\":0,\"messages\":[{\"role\":\"system\",\"content\":\"You're manipulating a selected part of a text document using JSON blocks. \\n Make sure to follow the json schema provided and always include the trailing $ in ids. \\n This is the selection as an array of JSON blocks:\"},{\"role\":\"system\",\"content\":\"[{\\\"id\\\":\\\"ref2$\\\",\\\"block\\\":{\\\"id\\\":\\\"ref2\\\",\\\"type\\\":\\\"paragraph\\\",\\\"props\\\":{\\\"textColor\\\":\\\"default\\\",\\\"backgroundColor\\\":\\\"default\\\",\\\"textAlignment\\\":\\\"left\\\"},\\\"content\\\":[{\\\"type\\\":\\\"text\\\",\\\"text\\\":\\\"Hello\\\",\\\"styles\\\":{}}],\\\"children\\\":[]}}]\"},{\"role\":\"system\",\"content\":\"This is the entire document (INCLUDING the selected text), find the selected text in there to understand the context:\"},{\"role\":\"system\",\"content\":\"[{\\\"block\\\":{\\\"type\\\":\\\"paragraph\\\",\\\"props\\\":{\\\"textColor\\\":\\\"default\\\",\\\"backgroundColor\\\":\\\"default\\\",\\\"textAlignment\\\":\\\"left\\\"},\\\"content\\\":[{\\\"type\\\":\\\"text\\\",\\\"text\\\":\\\"Hello, world!\\\",\\\"styles\\\":{}}]}},{\\\"block\\\":{\\\"type\\\":\\\"paragraph\\\",\\\"props\\\":{\\\"textColor\\\":\\\"default\\\",\\\"backgroundColor\\\":\\\"default\\\",\\\"textAlignment\\\":\\\"left\\\"},\\\"content\\\":[{\\\"type\\\":\\\"text\\\",\\\"text\\\":\\\"Hello, \\\",\\\"styles\\\":{}},{\\\"type\\\":\\\"mention\\\",\\\"props\\\":{\\\"user\\\":\\\"John Doe\\\"}},{\\\"type\\\":\\\"text\\\",\\\"text\\\":\\\"! \\\",\\\"styles\\\":{}},{\\\"type\\\":\\\"text\\\",\\\"text\\\":\\\"How are you doing?\\\",\\\"styles\\\":{\\\"bold\\\":true}},{\\\"type\\\":\\\"text\\\",\\\"text\\\":\\\" \\\",\\\"styles\\\":{}},{\\\"type\\\":\\\"text\\\",\\\"text\\\":\\\"This text is blue!\\\",\\\"styles\\\":{\\\"textColor\\\":\\\"blue\\\"}}]}},{\\\"block\\\":{\\\"type\\\":\\\"paragraph\\\",\\\"props\\\":{\\\"textColor\\\":\\\"default\\\",\\\"backgroundColor\\\":\\\"default\\\",\\\"textAlignment\\\":\\\"left\\\"},\\\"content\\\":[{\\\"type\\\":\\\"text\\\",\\\"text\\\":\\\"Hello, world! \\\",\\\"styles\\\":{}},{\\\"type\\\":\\\"text\\\",\\\"text\\\":\\\"Bold text. \\\",\\\"styles\\\":{\\\"bold\\\":true}},{\\\"type\\\":\\\"link\\\",\\\"href\\\":\\\"https://www.google.com\\\",\\\"content\\\":[{\\\"type\\\":\\\"text\\\",\\\"text\\\":\\\"Link.\\\",\\\"styles\\\":{}}]}]}}]\"},{\"role\":\"system\",\"content\":\"The user asks you to do the following:\"},{\"role\":\"user\",\"content\":\"translate to German\"}],\"tool_choice\":{\"type\":\"function\",\"function\":{\"name\":\"json\"}},\"tools\":[{\"type\":\"function\",\"function\":{\"name\":\"json\",\"description\":\"Respond with a JSON object.\",\"parameters\":{\"type\":\"object\",\"properties\":{\"operations\":{\"type\":\"array\",\"items\":{\"anyOf\":[{\"type\":\"object\",\"description\":\"Update a block, the new block will replace the existing block.\",\"properties\":{\"type\":{\"type\":\"string\",\"enum\":[\"update\"]},\"id\":{\"type\":\"string\",\"description\":\"id of block to update\"},\"block\":{\"$ref\":\"#/$defs/block\"}},\"required\":[\"type\",\"id\",\"block\"],\"additionalProperties\":false},{\"type\":\"object\",\"description\":\"Insert new blocks\",\"properties\":{\"type\":{\"type\":\"string\",\"enum\":[\"add\"]},\"referenceId\":{\"type\":\"string\",\"description\":\"MUST be an id of a block in the document\"},\"position\":{\"type\":\"string\",\"enum\":[\"before\",\"after\"],\"description\":\"`after` to add blocks AFTER (below) the block with `referenceId`, `before` to add the block BEFORE (above)\"},\"blocks\":{\"items\":{\"$ref\":\"#/$defs/block\"},\"type\":\"array\"}},\"required\":[\"type\",\"referenceId\",\"position\",\"blocks\"],\"additionalProperties\":false},{\"type\":\"object\",\"description\":\"Delete a block\",\"properties\":{\"type\":{\"type\":\"string\",\"enum\":[\"delete\"]},\"id\":{\"type\":\"string\",\"description\":\"id of block to delete\"}},\"required\":[\"type\",\"id\"],\"additionalProperties\":false}]}}},\"additionalProperties\":false,\"required\":[\"operations\"],\"$defs\":{\"styles\":{\"type\":\"object\",\"properties\":{\"bold\":{\"type\":\"boolean\"},\"italic\":{\"type\":\"boolean\"},\"underline\":{\"type\":\"boolean\"},\"strike\":{\"type\":\"boolean\"},\"code\":{\"type\":\"boolean\"},\"textColor\":{\"type\":\"string\"},\"backgroundColor\":{\"type\":\"string\"}},\"additionalProperties\":false},\"styledtext\":{\"type\":\"object\",\"properties\":{\"type\":{\"type\":\"string\",\"enum\":[\"text\"]},\"text\":{\"type\":\"string\"},\"styles\":{\"$ref\":\"#/$defs/styles\"}},\"additionalProperties\":false,\"required\":[\"type\",\"text\"]},\"inlinecontent\":{\"type\":\"array\",\"items\":{\"anyOf\":[{\"type\":\"object\",\"properties\":{\"type\":{\"type\":\"string\",\"enum\":[\"mention\"]},\"props\":{\"type\":\"object\",\"properties\":{\"user\":{\"type\":\"string\"}},\"additionalProperties\":false}},\"additionalProperties\":false,\"required\":[\"type\"]},{\"$ref\":\"#/$defs/styledtext\"},{\"type\":\"object\",\"properties\":{\"type\":{\"type\":\"string\",\"enum\":[\"link\"]},\"content\":{\"type\":\"array\",\"items\":{\"$ref\":\"#/$defs/styledtext\"}},\"href\":{\"type\":\"string\"}},\"additionalProperties\":false,\"required\":[\"type\",\"href\",\"content\"]}]}},\"block\":{\"anyOf\":[{\"type\":\"object\",\"properties\":{\"type\":{\"type\":\"string\",\"enum\":[\"paragraph\",\"quote\",\"bulletListItem\",\"numberedListItem\"]},\"content\":{\"$ref\":\"#/$defs/inlinecontent\"},\"props\":{\"type\":\"object\",\"properties\":{},\"additionalProperties\":false}},\"additionalProperties\":false,\"required\":[\"type\"]},{\"type\":\"object\",\"properties\":{\"type\":{\"type\":\"string\",\"enum\":[\"heading\"]},\"content\":{\"$ref\":\"#/$defs/inlinecontent\"},\"props\":{\"type\":\"object\",\"properties\":{\"level\":{\"type\":\"number\",\"enum\":[1,2,3]}},\"additionalProperties\":false}},\"additionalProperties\":false,\"required\":[\"type\"]},{\"type\":\"object\",\"properties\":{\"type\":{\"type\":\"string\",\"enum\":[\"codeBlock\"]},\"content\":{\"$ref\":\"#/$defs/inlinecontent\"},\"props\":{\"type\":\"object\",\"properties\":{\"language\":{\"type\":\"string\"}},\"additionalProperties\":false}},\"additionalProperties\":false,\"required\":[\"type\"]},{\"type\":\"object\",\"properties\":{\"type\":{\"type\":\"string\",\"enum\":[\"checkListItem\"]},\"content\":{\"$ref\":\"#/$defs/inlinecontent\"},\"props\":{\"type\":\"object\",\"properties\":{\"checked\":{\"type\":\"boolean\"}},\"additionalProperties\":false}},\"additionalProperties\":false,\"required\":[\"type\"]},{\"type\":\"object\",\"properties\":{\"type\":{\"type\":\"string\",\"enum\":[\"table\"]},\"content\":{\"type\":\"object\",\"properties\":{}},\"props\":{\"type\":\"object\",\"properties\":{},\"additionalProperties\":false}},\"additionalProperties\":false,\"required\":[\"type\"]}]}}}}}],\"stream\":true}", + "body": "{\"model\":\"gpt-4o-2024-08-06\",\"temperature\":0,\"messages\":[{\"role\":\"system\",\"content\":\"You're manipulating a selected part of a text document using JSON blocks. \\n Make sure to follow the json schema provided and always include the trailing $ in ids. \\n This is the selection as an array of JSON blocks:\"},{\"role\":\"system\",\"content\":\"[{\\\"id\\\":\\\"ref2$\\\",\\\"block\\\":{\\\"id\\\":\\\"ref2\\\",\\\"type\\\":\\\"paragraph\\\",\\\"props\\\":{\\\"textColor\\\":\\\"default\\\",\\\"backgroundColor\\\":\\\"default\\\",\\\"textAlignment\\\":\\\"left\\\"},\\\"content\\\":[{\\\"type\\\":\\\"text\\\",\\\"text\\\":\\\"Hello\\\",\\\"styles\\\":{}}],\\\"children\\\":[]}}]\"},{\"role\":\"system\",\"content\":\"This is the entire document (INCLUDING the selected text), find the selected text in there to understand the context:\"},{\"role\":\"system\",\"content\":\"[{\\\"block\\\":{\\\"type\\\":\\\"paragraph\\\",\\\"props\\\":{\\\"textColor\\\":\\\"default\\\",\\\"backgroundColor\\\":\\\"default\\\",\\\"textAlignment\\\":\\\"left\\\"},\\\"content\\\":[{\\\"type\\\":\\\"text\\\",\\\"text\\\":\\\"Hello, world!\\\",\\\"styles\\\":{}}]}},{\\\"block\\\":{\\\"type\\\":\\\"paragraph\\\",\\\"props\\\":{\\\"textColor\\\":\\\"default\\\",\\\"backgroundColor\\\":\\\"default\\\",\\\"textAlignment\\\":\\\"left\\\"},\\\"content\\\":[{\\\"type\\\":\\\"text\\\",\\\"text\\\":\\\"Hello, \\\",\\\"styles\\\":{}},{\\\"type\\\":\\\"mention\\\",\\\"props\\\":{\\\"user\\\":\\\"John Doe\\\"}},{\\\"type\\\":\\\"text\\\",\\\"text\\\":\\\"! \\\",\\\"styles\\\":{}},{\\\"type\\\":\\\"text\\\",\\\"text\\\":\\\"How are you doing?\\\",\\\"styles\\\":{\\\"bold\\\":true}},{\\\"type\\\":\\\"text\\\",\\\"text\\\":\\\" \\\",\\\"styles\\\":{}},{\\\"type\\\":\\\"text\\\",\\\"text\\\":\\\"This text is blue!\\\",\\\"styles\\\":{\\\"textColor\\\":\\\"blue\\\"}}]}},{\\\"block\\\":{\\\"type\\\":\\\"paragraph\\\",\\\"props\\\":{\\\"textColor\\\":\\\"default\\\",\\\"backgroundColor\\\":\\\"default\\\",\\\"textAlignment\\\":\\\"left\\\"},\\\"content\\\":[{\\\"type\\\":\\\"text\\\",\\\"text\\\":\\\"Hello, world! \\\",\\\"styles\\\":{}},{\\\"type\\\":\\\"text\\\",\\\"text\\\":\\\"Bold text. \\\",\\\"styles\\\":{\\\"bold\\\":true}},{\\\"type\\\":\\\"link\\\",\\\"href\\\":\\\"https://www.google.com\\\",\\\"content\\\":[{\\\"type\\\":\\\"text\\\",\\\"text\\\":\\\"Link.\\\",\\\"styles\\\":{}}]}]}}]\"},{\"role\":\"system\",\"content\":\"The user asks you to do the following:\"},{\"role\":\"user\",\"content\":\"translate to German\"}],\"tool_choice\":{\"type\":\"function\",\"function\":{\"name\":\"json\"}},\"tools\":[{\"type\":\"function\",\"function\":{\"name\":\"json\",\"description\":\"Respond with a JSON object.\",\"parameters\":{\"type\":\"object\",\"properties\":{\"operations\":{\"type\":\"array\",\"items\":{\"anyOf\":[{\"type\":\"object\",\"description\":\"Update a block, the new block will replace the existing block.\",\"properties\":{\"type\":{\"type\":\"string\",\"enum\":[\"update\"]},\"id\":{\"type\":\"string\",\"description\":\"id of block to update\"},\"block\":{\"$ref\":\"#/$defs/block\"}},\"required\":[\"type\",\"id\",\"block\"],\"additionalProperties\":false},{\"type\":\"object\",\"description\":\"Insert new blocks\",\"properties\":{\"type\":{\"type\":\"string\",\"enum\":[\"add\"]},\"referenceId\":{\"type\":\"string\",\"description\":\"MUST be an id of a block in the document\"},\"position\":{\"type\":\"string\",\"enum\":[\"before\",\"after\"],\"description\":\"`after` to add blocks AFTER (below) the block with `referenceId`, `before` to add the block BEFORE (above)\"},\"blocks\":{\"items\":{\"$ref\":\"#/$defs/block\"},\"type\":\"array\"}},\"required\":[\"type\",\"referenceId\",\"position\",\"blocks\"],\"additionalProperties\":false},{\"type\":\"object\",\"description\":\"Delete a block\",\"properties\":{\"type\":{\"type\":\"string\",\"enum\":[\"delete\"]},\"id\":{\"type\":\"string\",\"description\":\"id of block to delete\"}},\"required\":[\"type\",\"id\"],\"additionalProperties\":false}]}}},\"additionalProperties\":false,\"required\":[\"operations\"],\"$defs\":{\"styles\":{\"type\":\"object\",\"properties\":{\"bold\":{\"type\":\"boolean\"},\"italic\":{\"type\":\"boolean\"},\"underline\":{\"type\":\"boolean\"},\"strike\":{\"type\":\"boolean\"},\"code\":{\"type\":\"boolean\"},\"textColor\":{\"type\":\"string\"},\"backgroundColor\":{\"type\":\"string\"}},\"additionalProperties\":false},\"styledtext\":{\"type\":\"object\",\"properties\":{\"type\":{\"type\":\"string\",\"enum\":[\"text\"]},\"text\":{\"type\":\"string\"},\"styles\":{\"$ref\":\"#/$defs/styles\"}},\"additionalProperties\":false,\"required\":[\"type\",\"text\"]},\"inlinecontent\":{\"type\":\"array\",\"items\":{\"anyOf\":[{\"type\":\"object\",\"properties\":{\"type\":{\"type\":\"string\",\"enum\":[\"mention\"]},\"props\":{\"type\":\"object\",\"properties\":{\"user\":{\"type\":\"string\"}},\"additionalProperties\":false}},\"additionalProperties\":false,\"required\":[\"type\"]},{\"$ref\":\"#/$defs/styledtext\"},{\"type\":\"object\",\"properties\":{\"type\":{\"type\":\"string\",\"enum\":[\"link\"]},\"content\":{\"type\":\"array\",\"items\":{\"$ref\":\"#/$defs/styledtext\"}},\"href\":{\"type\":\"string\"}},\"additionalProperties\":false,\"required\":[\"type\",\"href\",\"content\"]}]}},\"block\":{\"anyOf\":[{\"type\":\"object\",\"properties\":{\"type\":{\"type\":\"string\",\"enum\":[\"paragraph\",\"quote\",\"toggleListItem\",\"bulletListItem\",\"numberedListItem\"]},\"content\":{\"$ref\":\"#/$defs/inlinecontent\"},\"props\":{\"type\":\"object\",\"properties\":{},\"additionalProperties\":false}},\"additionalProperties\":false,\"required\":[\"type\"]},{\"type\":\"object\",\"properties\":{\"type\":{\"type\":\"string\",\"enum\":[\"heading\"]},\"content\":{\"$ref\":\"#/$defs/inlinecontent\"},\"props\":{\"type\":\"object\",\"properties\":{\"level\":{\"type\":\"number\",\"enum\":[1,2,3]},\"isTogglable\":{\"type\":\"boolean\"}},\"additionalProperties\":false}},\"additionalProperties\":false,\"required\":[\"type\"]},{\"type\":\"object\",\"properties\":{\"type\":{\"type\":\"string\",\"enum\":[\"codeBlock\"]},\"content\":{\"$ref\":\"#/$defs/inlinecontent\"},\"props\":{\"type\":\"object\",\"properties\":{\"language\":{\"type\":\"string\"}},\"additionalProperties\":false}},\"additionalProperties\":false,\"required\":[\"type\"]},{\"type\":\"object\",\"properties\":{\"type\":{\"type\":\"string\",\"enum\":[\"checkListItem\"]},\"content\":{\"$ref\":\"#/$defs/inlinecontent\"},\"props\":{\"type\":\"object\",\"properties\":{\"checked\":{\"type\":\"boolean\"}},\"additionalProperties\":false}},\"additionalProperties\":false,\"required\":[\"type\"]},{\"type\":\"object\",\"properties\":{\"type\":{\"type\":\"string\",\"enum\":[\"table\"]},\"content\":{\"type\":\"object\",\"properties\":{}},\"props\":{\"type\":\"object\",\"properties\":{},\"additionalProperties\":false}},\"additionalProperties\":false,\"required\":[\"type\"]}]}}}}}],\"stream\":true}", "headers": [], "cookies": [] }, "response": { "status": 200, "statusText": "", - "body": "data: {\"id\":\"chatcmpl-BgV4bZOeUDIr4Yexw7CjZiflgEazb\",\"object\":\"chat.completion.chunk\",\"created\":1749468921,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_a288987b44\",\"choices\":[{\"index\":0,\"delta\":{\"role\":\"assistant\",\"content\":null,\"tool_calls\":[{\"index\":0,\"id\":\"call_Nq9wVpzlA5iJNusNjMNqabhA\",\"type\":\"function\",\"function\":{\"name\":\"json\",\"arguments\":\"\"}}],\"refusal\":null},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BgV4bZOeUDIr4Yexw7CjZiflgEazb\",\"object\":\"chat.completion.chunk\",\"created\":1749468921,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_a288987b44\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"{\\\"\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BgV4bZOeUDIr4Yexw7CjZiflgEazb\",\"object\":\"chat.completion.chunk\",\"created\":1749468921,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_a288987b44\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"operations\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BgV4bZOeUDIr4Yexw7CjZiflgEazb\",\"object\":\"chat.completion.chunk\",\"created\":1749468921,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_a288987b44\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"\\\":[\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BgV4bZOeUDIr4Yexw7CjZiflgEazb\",\"object\":\"chat.completion.chunk\",\"created\":1749468921,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_a288987b44\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"{\\\"\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BgV4bZOeUDIr4Yexw7CjZiflgEazb\",\"object\":\"chat.completion.chunk\",\"created\":1749468921,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_a288987b44\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"type\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BgV4bZOeUDIr4Yexw7CjZiflgEazb\",\"object\":\"chat.completion.chunk\",\"created\":1749468921,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_a288987b44\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"\\\":\\\"\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BgV4bZOeUDIr4Yexw7CjZiflgEazb\",\"object\":\"chat.completion.chunk\",\"created\":1749468921,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_a288987b44\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"update\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BgV4bZOeUDIr4Yexw7CjZiflgEazb\",\"object\":\"chat.completion.chunk\",\"created\":1749468921,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_a288987b44\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"\\\",\\\"\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BgV4bZOeUDIr4Yexw7CjZiflgEazb\",\"object\":\"chat.completion.chunk\",\"created\":1749468921,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_a288987b44\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"id\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BgV4bZOeUDIr4Yexw7CjZiflgEazb\",\"object\":\"chat.completion.chunk\",\"created\":1749468921,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_a288987b44\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"\\\":\\\"\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BgV4bZOeUDIr4Yexw7CjZiflgEazb\",\"object\":\"chat.completion.chunk\",\"created\":1749468921,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_a288987b44\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"ref\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BgV4bZOeUDIr4Yexw7CjZiflgEazb\",\"object\":\"chat.completion.chunk\",\"created\":1749468921,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_a288987b44\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"2\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BgV4bZOeUDIr4Yexw7CjZiflgEazb\",\"object\":\"chat.completion.chunk\",\"created\":1749468921,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_a288987b44\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"$\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BgV4bZOeUDIr4Yexw7CjZiflgEazb\",\"object\":\"chat.completion.chunk\",\"created\":1749468921,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_a288987b44\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"\\\",\\\"\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BgV4bZOeUDIr4Yexw7CjZiflgEazb\",\"object\":\"chat.completion.chunk\",\"created\":1749468921,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_a288987b44\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"block\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BgV4bZOeUDIr4Yexw7CjZiflgEazb\",\"object\":\"chat.completion.chunk\",\"created\":1749468921,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_a288987b44\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"\\\":{\\\"\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BgV4bZOeUDIr4Yexw7CjZiflgEazb\",\"object\":\"chat.completion.chunk\",\"created\":1749468921,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_a288987b44\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"type\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BgV4bZOeUDIr4Yexw7CjZiflgEazb\",\"object\":\"chat.completion.chunk\",\"created\":1749468921,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_a288987b44\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"\\\":\\\"\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BgV4bZOeUDIr4Yexw7CjZiflgEazb\",\"object\":\"chat.completion.chunk\",\"created\":1749468921,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_a288987b44\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"paragraph\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BgV4bZOeUDIr4Yexw7CjZiflgEazb\",\"object\":\"chat.completion.chunk\",\"created\":1749468921,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_a288987b44\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"\\\",\\\"\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BgV4bZOeUDIr4Yexw7CjZiflgEazb\",\"object\":\"chat.completion.chunk\",\"created\":1749468921,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_a288987b44\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"content\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BgV4bZOeUDIr4Yexw7CjZiflgEazb\",\"object\":\"chat.completion.chunk\",\"created\":1749468921,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_a288987b44\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"\\\":[\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BgV4bZOeUDIr4Yexw7CjZiflgEazb\",\"object\":\"chat.completion.chunk\",\"created\":1749468921,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_a288987b44\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"{\\\"\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BgV4bZOeUDIr4Yexw7CjZiflgEazb\",\"object\":\"chat.completion.chunk\",\"created\":1749468921,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_a288987b44\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"type\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BgV4bZOeUDIr4Yexw7CjZiflgEazb\",\"object\":\"chat.completion.chunk\",\"created\":1749468921,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_a288987b44\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"\\\":\\\"\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BgV4bZOeUDIr4Yexw7CjZiflgEazb\",\"object\":\"chat.completion.chunk\",\"created\":1749468921,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_a288987b44\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"text\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BgV4bZOeUDIr4Yexw7CjZiflgEazb\",\"object\":\"chat.completion.chunk\",\"created\":1749468921,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_a288987b44\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"\\\",\\\"\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BgV4bZOeUDIr4Yexw7CjZiflgEazb\",\"object\":\"chat.completion.chunk\",\"created\":1749468921,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_a288987b44\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"text\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BgV4bZOeUDIr4Yexw7CjZiflgEazb\",\"object\":\"chat.completion.chunk\",\"created\":1749468921,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_a288987b44\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"\\\":\\\"\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BgV4bZOeUDIr4Yexw7CjZiflgEazb\",\"object\":\"chat.completion.chunk\",\"created\":1749468921,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_a288987b44\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"Hallo\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BgV4bZOeUDIr4Yexw7CjZiflgEazb\",\"object\":\"chat.completion.chunk\",\"created\":1749468921,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_a288987b44\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"\\\",\\\"\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BgV4bZOeUDIr4Yexw7CjZiflgEazb\",\"object\":\"chat.completion.chunk\",\"created\":1749468921,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_a288987b44\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"styles\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BgV4bZOeUDIr4Yexw7CjZiflgEazb\",\"object\":\"chat.completion.chunk\",\"created\":1749468921,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_a288987b44\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"\\\":\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BgV4bZOeUDIr4Yexw7CjZiflgEazb\",\"object\":\"chat.completion.chunk\",\"created\":1749468921,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_a288987b44\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"{\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BgV4bZOeUDIr4Yexw7CjZiflgEazb\",\"object\":\"chat.completion.chunk\",\"created\":1749468921,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_a288987b44\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"}}\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BgV4bZOeUDIr4Yexw7CjZiflgEazb\",\"object\":\"chat.completion.chunk\",\"created\":1749468921,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_a288987b44\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"]\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BgV4bZOeUDIr4Yexw7CjZiflgEazb\",\"object\":\"chat.completion.chunk\",\"created\":1749468921,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_a288987b44\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"}}\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BgV4bZOeUDIr4Yexw7CjZiflgEazb\",\"object\":\"chat.completion.chunk\",\"created\":1749468921,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_a288987b44\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"]}\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BgV4bZOeUDIr4Yexw7CjZiflgEazb\",\"object\":\"chat.completion.chunk\",\"created\":1749468921,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_a288987b44\",\"choices\":[{\"index\":0,\"delta\":{},\"logprobs\":null,\"finish_reason\":\"stop\"}]}\n\ndata: [DONE]\n\n", + "body": "data: {\"id\":\"chatcmpl-BhXmziZ06ysd91lofgsWzBGmT5mY9\",\"object\":\"chat.completion.chunk\",\"created\":1749717689,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_07871e2ad8\",\"choices\":[{\"index\":0,\"delta\":{\"role\":\"assistant\",\"content\":null,\"tool_calls\":[{\"index\":0,\"id\":\"call_wgBruMucV0hTHhsiF8aeuK3L\",\"type\":\"function\",\"function\":{\"name\":\"json\",\"arguments\":\"\"}}],\"refusal\":null},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BhXmziZ06ysd91lofgsWzBGmT5mY9\",\"object\":\"chat.completion.chunk\",\"created\":1749717689,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_07871e2ad8\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"{\\\"\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BhXmziZ06ysd91lofgsWzBGmT5mY9\",\"object\":\"chat.completion.chunk\",\"created\":1749717689,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_07871e2ad8\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"operations\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BhXmziZ06ysd91lofgsWzBGmT5mY9\",\"object\":\"chat.completion.chunk\",\"created\":1749717689,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_07871e2ad8\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"\\\":[\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BhXmziZ06ysd91lofgsWzBGmT5mY9\",\"object\":\"chat.completion.chunk\",\"created\":1749717689,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_07871e2ad8\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"{\\\"\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BhXmziZ06ysd91lofgsWzBGmT5mY9\",\"object\":\"chat.completion.chunk\",\"created\":1749717689,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_07871e2ad8\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"type\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BhXmziZ06ysd91lofgsWzBGmT5mY9\",\"object\":\"chat.completion.chunk\",\"created\":1749717689,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_07871e2ad8\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"\\\":\\\"\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BhXmziZ06ysd91lofgsWzBGmT5mY9\",\"object\":\"chat.completion.chunk\",\"created\":1749717689,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_07871e2ad8\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"update\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BhXmziZ06ysd91lofgsWzBGmT5mY9\",\"object\":\"chat.completion.chunk\",\"created\":1749717689,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_07871e2ad8\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"\\\",\\\"\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BhXmziZ06ysd91lofgsWzBGmT5mY9\",\"object\":\"chat.completion.chunk\",\"created\":1749717689,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_07871e2ad8\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"id\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BhXmziZ06ysd91lofgsWzBGmT5mY9\",\"object\":\"chat.completion.chunk\",\"created\":1749717689,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_07871e2ad8\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"\\\":\\\"\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BhXmziZ06ysd91lofgsWzBGmT5mY9\",\"object\":\"chat.completion.chunk\",\"created\":1749717689,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_07871e2ad8\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"ref\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BhXmziZ06ysd91lofgsWzBGmT5mY9\",\"object\":\"chat.completion.chunk\",\"created\":1749717689,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_07871e2ad8\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"2\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BhXmziZ06ysd91lofgsWzBGmT5mY9\",\"object\":\"chat.completion.chunk\",\"created\":1749717689,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_07871e2ad8\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"$\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BhXmziZ06ysd91lofgsWzBGmT5mY9\",\"object\":\"chat.completion.chunk\",\"created\":1749717689,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_07871e2ad8\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"\\\",\\\"\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BhXmziZ06ysd91lofgsWzBGmT5mY9\",\"object\":\"chat.completion.chunk\",\"created\":1749717689,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_07871e2ad8\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"block\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BhXmziZ06ysd91lofgsWzBGmT5mY9\",\"object\":\"chat.completion.chunk\",\"created\":1749717689,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_07871e2ad8\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"\\\":{\\\"\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BhXmziZ06ysd91lofgsWzBGmT5mY9\",\"object\":\"chat.completion.chunk\",\"created\":1749717689,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_07871e2ad8\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"type\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BhXmziZ06ysd91lofgsWzBGmT5mY9\",\"object\":\"chat.completion.chunk\",\"created\":1749717689,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_07871e2ad8\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"\\\":\\\"\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BhXmziZ06ysd91lofgsWzBGmT5mY9\",\"object\":\"chat.completion.chunk\",\"created\":1749717689,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_07871e2ad8\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"paragraph\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BhXmziZ06ysd91lofgsWzBGmT5mY9\",\"object\":\"chat.completion.chunk\",\"created\":1749717689,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_07871e2ad8\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"\\\",\\\"\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BhXmziZ06ysd91lofgsWzBGmT5mY9\",\"object\":\"chat.completion.chunk\",\"created\":1749717689,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_07871e2ad8\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"content\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BhXmziZ06ysd91lofgsWzBGmT5mY9\",\"object\":\"chat.completion.chunk\",\"created\":1749717689,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_07871e2ad8\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"\\\":[\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BhXmziZ06ysd91lofgsWzBGmT5mY9\",\"object\":\"chat.completion.chunk\",\"created\":1749717689,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_07871e2ad8\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"{\\\"\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BhXmziZ06ysd91lofgsWzBGmT5mY9\",\"object\":\"chat.completion.chunk\",\"created\":1749717689,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_07871e2ad8\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"type\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BhXmziZ06ysd91lofgsWzBGmT5mY9\",\"object\":\"chat.completion.chunk\",\"created\":1749717689,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_07871e2ad8\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"\\\":\\\"\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BhXmziZ06ysd91lofgsWzBGmT5mY9\",\"object\":\"chat.completion.chunk\",\"created\":1749717689,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_07871e2ad8\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"text\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BhXmziZ06ysd91lofgsWzBGmT5mY9\",\"object\":\"chat.completion.chunk\",\"created\":1749717689,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_07871e2ad8\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"\\\",\\\"\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BhXmziZ06ysd91lofgsWzBGmT5mY9\",\"object\":\"chat.completion.chunk\",\"created\":1749717689,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_07871e2ad8\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"text\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BhXmziZ06ysd91lofgsWzBGmT5mY9\",\"object\":\"chat.completion.chunk\",\"created\":1749717689,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_07871e2ad8\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"\\\":\\\"\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BhXmziZ06ysd91lofgsWzBGmT5mY9\",\"object\":\"chat.completion.chunk\",\"created\":1749717689,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_07871e2ad8\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"Hallo\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BhXmziZ06ysd91lofgsWzBGmT5mY9\",\"object\":\"chat.completion.chunk\",\"created\":1749717689,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_07871e2ad8\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"\\\",\\\"\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BhXmziZ06ysd91lofgsWzBGmT5mY9\",\"object\":\"chat.completion.chunk\",\"created\":1749717689,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_07871e2ad8\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"styles\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BhXmziZ06ysd91lofgsWzBGmT5mY9\",\"object\":\"chat.completion.chunk\",\"created\":1749717689,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_07871e2ad8\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"\\\":\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BhXmziZ06ysd91lofgsWzBGmT5mY9\",\"object\":\"chat.completion.chunk\",\"created\":1749717689,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_07871e2ad8\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"{\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BhXmziZ06ysd91lofgsWzBGmT5mY9\",\"object\":\"chat.completion.chunk\",\"created\":1749717689,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_07871e2ad8\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"}}\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BhXmziZ06ysd91lofgsWzBGmT5mY9\",\"object\":\"chat.completion.chunk\",\"created\":1749717689,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_07871e2ad8\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"]\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BhXmziZ06ysd91lofgsWzBGmT5mY9\",\"object\":\"chat.completion.chunk\",\"created\":1749717689,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_07871e2ad8\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"}}\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BhXmziZ06ysd91lofgsWzBGmT5mY9\",\"object\":\"chat.completion.chunk\",\"created\":1749717689,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_07871e2ad8\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"]}\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BhXmziZ06ysd91lofgsWzBGmT5mY9\",\"object\":\"chat.completion.chunk\",\"created\":1749717689,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_07871e2ad8\",\"choices\":[{\"index\":0,\"delta\":{},\"logprobs\":null,\"finish_reason\":\"stop\"}]}\n\ndata: [DONE]\n\n", "headers": [] } } \ No newline at end of file diff --git a/packages/xl-ai/src/api/formats/json/__snapshots__/json.test.ts/Update/__msw_snapshots__/openai.chat/gpt-4o-2024-08-06 (streaming)/turn paragraphs into list_1_92a38569e8e9c873af8553e1607a7ba7.json b/packages/xl-ai/src/api/formats/json/__snapshots__/json.test.ts/Update/__msw_snapshots__/openai.chat/gpt-4o-2024-08-06 (streaming)/turn paragraphs into list_1_92a38569e8e9c873af8553e1607a7ba7.json new file mode 100644 index 0000000000..9dcddb386a --- /dev/null +++ b/packages/xl-ai/src/api/formats/json/__snapshots__/json.test.ts/Update/__msw_snapshots__/openai.chat/gpt-4o-2024-08-06 (streaming)/turn paragraphs into list_1_92a38569e8e9c873af8553e1607a7ba7.json @@ -0,0 +1,15 @@ +{ + "request": { + "method": "POST", + "url": "https://localhost:3000/ai?provider=openai&url=https%3A%2F%2Fapi.openai.com%2Fv1%2Fchat%2Fcompletions", + "body": "{\"model\":\"gpt-4o-2024-08-06\",\"temperature\":0,\"messages\":[{\"role\":\"system\",\"content\":\"You're manipulating a selected part of a text document using JSON blocks. \\n Make sure to follow the json schema provided and always include the trailing $ in ids. \\n This is the selection as an array of JSON blocks:\"},{\"role\":\"system\",\"content\":\"[{\\\"id\\\":\\\"ref2$\\\",\\\"block\\\":{\\\"id\\\":\\\"ref2\\\",\\\"type\\\":\\\"paragraph\\\",\\\"props\\\":{\\\"textColor\\\":\\\"default\\\",\\\"backgroundColor\\\":\\\"default\\\",\\\"textAlignment\\\":\\\"left\\\"},\\\"content\\\":[{\\\"type\\\":\\\"text\\\",\\\"text\\\":\\\"Apples\\\",\\\"styles\\\":{}}],\\\"children\\\":[]}},{\\\"id\\\":\\\"ref3$\\\",\\\"block\\\":{\\\"id\\\":\\\"ref3\\\",\\\"type\\\":\\\"paragraph\\\",\\\"props\\\":{\\\"textColor\\\":\\\"default\\\",\\\"backgroundColor\\\":\\\"default\\\",\\\"textAlignment\\\":\\\"left\\\"},\\\"content\\\":[{\\\"type\\\":\\\"text\\\",\\\"text\\\":\\\"Bananas\\\",\\\"styles\\\":{}}],\\\"children\\\":[]}}]\"},{\"role\":\"system\",\"content\":\"This is the entire document (INCLUDING the selected text), find the selected text in there to understand the context:\"},{\"role\":\"system\",\"content\":\"[{\\\"block\\\":{\\\"type\\\":\\\"paragraph\\\",\\\"props\\\":{\\\"textColor\\\":\\\"default\\\",\\\"backgroundColor\\\":\\\"default\\\",\\\"textAlignment\\\":\\\"left\\\"},\\\"content\\\":[{\\\"type\\\":\\\"text\\\",\\\"text\\\":\\\"I need to buy:\\\",\\\"styles\\\":{}}]}},{\\\"block\\\":{\\\"type\\\":\\\"paragraph\\\",\\\"props\\\":{\\\"textColor\\\":\\\"default\\\",\\\"backgroundColor\\\":\\\"default\\\",\\\"textAlignment\\\":\\\"left\\\"},\\\"content\\\":[{\\\"type\\\":\\\"text\\\",\\\"text\\\":\\\"Apples\\\",\\\"styles\\\":{}}]}},{\\\"block\\\":{\\\"type\\\":\\\"paragraph\\\",\\\"props\\\":{\\\"textColor\\\":\\\"default\\\",\\\"backgroundColor\\\":\\\"default\\\",\\\"textAlignment\\\":\\\"left\\\"},\\\"content\\\":[{\\\"type\\\":\\\"text\\\",\\\"text\\\":\\\"Bananas\\\",\\\"styles\\\":{}}]}}]\"},{\"role\":\"system\",\"content\":\"The user asks you to do the following:\"},{\"role\":\"user\",\"content\":\"turn into list (update existing blocks)\"}],\"tool_choice\":{\"type\":\"function\",\"function\":{\"name\":\"json\"}},\"tools\":[{\"type\":\"function\",\"function\":{\"name\":\"json\",\"description\":\"Respond with a JSON object.\",\"parameters\":{\"type\":\"object\",\"properties\":{\"operations\":{\"type\":\"array\",\"items\":{\"anyOf\":[{\"type\":\"object\",\"description\":\"Update a block, the new block will replace the existing block.\",\"properties\":{\"type\":{\"type\":\"string\",\"enum\":[\"update\"]},\"id\":{\"type\":\"string\",\"description\":\"id of block to update\"},\"block\":{\"$ref\":\"#/$defs/block\"}},\"required\":[\"type\",\"id\",\"block\"],\"additionalProperties\":false},{\"type\":\"object\",\"description\":\"Insert new blocks\",\"properties\":{\"type\":{\"type\":\"string\",\"enum\":[\"add\"]},\"referenceId\":{\"type\":\"string\",\"description\":\"MUST be an id of a block in the document\"},\"position\":{\"type\":\"string\",\"enum\":[\"before\",\"after\"],\"description\":\"`after` to add blocks AFTER (below) the block with `referenceId`, `before` to add the block BEFORE (above)\"},\"blocks\":{\"items\":{\"$ref\":\"#/$defs/block\"},\"type\":\"array\"}},\"required\":[\"type\",\"referenceId\",\"position\",\"blocks\"],\"additionalProperties\":false},{\"type\":\"object\",\"description\":\"Delete a block\",\"properties\":{\"type\":{\"type\":\"string\",\"enum\":[\"delete\"]},\"id\":{\"type\":\"string\",\"description\":\"id of block to delete\"}},\"required\":[\"type\",\"id\"],\"additionalProperties\":false}]}}},\"additionalProperties\":false,\"required\":[\"operations\"],\"$defs\":{\"styles\":{\"type\":\"object\",\"properties\":{\"bold\":{\"type\":\"boolean\"},\"italic\":{\"type\":\"boolean\"},\"underline\":{\"type\":\"boolean\"},\"strike\":{\"type\":\"boolean\"},\"code\":{\"type\":\"boolean\"},\"textColor\":{\"type\":\"string\"},\"backgroundColor\":{\"type\":\"string\"}},\"additionalProperties\":false},\"styledtext\":{\"type\":\"object\",\"properties\":{\"type\":{\"type\":\"string\",\"enum\":[\"text\"]},\"text\":{\"type\":\"string\"},\"styles\":{\"$ref\":\"#/$defs/styles\"}},\"additionalProperties\":false,\"required\":[\"type\",\"text\"]},\"inlinecontent\":{\"type\":\"array\",\"items\":{\"anyOf\":[{\"type\":\"object\",\"properties\":{\"type\":{\"type\":\"string\",\"enum\":[\"mention\"]},\"props\":{\"type\":\"object\",\"properties\":{\"user\":{\"type\":\"string\"}},\"additionalProperties\":false}},\"additionalProperties\":false,\"required\":[\"type\"]},{\"$ref\":\"#/$defs/styledtext\"},{\"type\":\"object\",\"properties\":{\"type\":{\"type\":\"string\",\"enum\":[\"link\"]},\"content\":{\"type\":\"array\",\"items\":{\"$ref\":\"#/$defs/styledtext\"}},\"href\":{\"type\":\"string\"}},\"additionalProperties\":false,\"required\":[\"type\",\"href\",\"content\"]}]}},\"block\":{\"anyOf\":[{\"type\":\"object\",\"properties\":{\"type\":{\"type\":\"string\",\"enum\":[\"paragraph\",\"quote\",\"toggleListItem\",\"bulletListItem\",\"numberedListItem\"]},\"content\":{\"$ref\":\"#/$defs/inlinecontent\"},\"props\":{\"type\":\"object\",\"properties\":{},\"additionalProperties\":false}},\"additionalProperties\":false,\"required\":[\"type\"]},{\"type\":\"object\",\"properties\":{\"type\":{\"type\":\"string\",\"enum\":[\"heading\"]},\"content\":{\"$ref\":\"#/$defs/inlinecontent\"},\"props\":{\"type\":\"object\",\"properties\":{\"level\":{\"type\":\"number\",\"enum\":[1,2,3]},\"isTogglable\":{\"type\":\"boolean\"}},\"additionalProperties\":false}},\"additionalProperties\":false,\"required\":[\"type\"]},{\"type\":\"object\",\"properties\":{\"type\":{\"type\":\"string\",\"enum\":[\"codeBlock\"]},\"content\":{\"$ref\":\"#/$defs/inlinecontent\"},\"props\":{\"type\":\"object\",\"properties\":{\"language\":{\"type\":\"string\"}},\"additionalProperties\":false}},\"additionalProperties\":false,\"required\":[\"type\"]},{\"type\":\"object\",\"properties\":{\"type\":{\"type\":\"string\",\"enum\":[\"checkListItem\"]},\"content\":{\"$ref\":\"#/$defs/inlinecontent\"},\"props\":{\"type\":\"object\",\"properties\":{\"checked\":{\"type\":\"boolean\"}},\"additionalProperties\":false}},\"additionalProperties\":false,\"required\":[\"type\"]},{\"type\":\"object\",\"properties\":{\"type\":{\"type\":\"string\",\"enum\":[\"table\"]},\"content\":{\"type\":\"object\",\"properties\":{}},\"props\":{\"type\":\"object\",\"properties\":{},\"additionalProperties\":false}},\"additionalProperties\":false,\"required\":[\"type\"]}]}}}}}],\"stream\":true}", + "headers": [], + "cookies": [] + }, + "response": { + "status": 200, + "statusText": "", + "body": "data: {\"id\":\"chatcmpl-BhXnP2QDa2wVa9JK03tzTEmH33dhI\",\"object\":\"chat.completion.chunk\",\"created\":1749717715,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_07871e2ad8\",\"choices\":[{\"index\":0,\"delta\":{\"role\":\"assistant\",\"content\":null,\"tool_calls\":[{\"index\":0,\"id\":\"call_3GhuWdQTeVTTLTQBlwGJyH41\",\"type\":\"function\",\"function\":{\"name\":\"json\",\"arguments\":\"\"}}],\"refusal\":null},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BhXnP2QDa2wVa9JK03tzTEmH33dhI\",\"object\":\"chat.completion.chunk\",\"created\":1749717715,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_07871e2ad8\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"{\\\"\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BhXnP2QDa2wVa9JK03tzTEmH33dhI\",\"object\":\"chat.completion.chunk\",\"created\":1749717715,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_07871e2ad8\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"operations\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BhXnP2QDa2wVa9JK03tzTEmH33dhI\",\"object\":\"chat.completion.chunk\",\"created\":1749717715,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_07871e2ad8\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"\\\":[\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BhXnP2QDa2wVa9JK03tzTEmH33dhI\",\"object\":\"chat.completion.chunk\",\"created\":1749717715,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_07871e2ad8\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"{\\\"\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BhXnP2QDa2wVa9JK03tzTEmH33dhI\",\"object\":\"chat.completion.chunk\",\"created\":1749717715,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_07871e2ad8\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"type\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BhXnP2QDa2wVa9JK03tzTEmH33dhI\",\"object\":\"chat.completion.chunk\",\"created\":1749717715,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_07871e2ad8\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"\\\":\\\"\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BhXnP2QDa2wVa9JK03tzTEmH33dhI\",\"object\":\"chat.completion.chunk\",\"created\":1749717715,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_07871e2ad8\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"update\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BhXnP2QDa2wVa9JK03tzTEmH33dhI\",\"object\":\"chat.completion.chunk\",\"created\":1749717715,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_07871e2ad8\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"\\\",\\\"\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BhXnP2QDa2wVa9JK03tzTEmH33dhI\",\"object\":\"chat.completion.chunk\",\"created\":1749717715,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_07871e2ad8\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"id\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BhXnP2QDa2wVa9JK03tzTEmH33dhI\",\"object\":\"chat.completion.chunk\",\"created\":1749717715,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_07871e2ad8\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"\\\":\\\"\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BhXnP2QDa2wVa9JK03tzTEmH33dhI\",\"object\":\"chat.completion.chunk\",\"created\":1749717715,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_07871e2ad8\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"ref\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BhXnP2QDa2wVa9JK03tzTEmH33dhI\",\"object\":\"chat.completion.chunk\",\"created\":1749717715,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_07871e2ad8\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"2\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BhXnP2QDa2wVa9JK03tzTEmH33dhI\",\"object\":\"chat.completion.chunk\",\"created\":1749717715,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_07871e2ad8\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"$\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BhXnP2QDa2wVa9JK03tzTEmH33dhI\",\"object\":\"chat.completion.chunk\",\"created\":1749717715,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_07871e2ad8\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"\\\",\\\"\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BhXnP2QDa2wVa9JK03tzTEmH33dhI\",\"object\":\"chat.completion.chunk\",\"created\":1749717715,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_07871e2ad8\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"block\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BhXnP2QDa2wVa9JK03tzTEmH33dhI\",\"object\":\"chat.completion.chunk\",\"created\":1749717715,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_07871e2ad8\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"\\\":{\\\"\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BhXnP2QDa2wVa9JK03tzTEmH33dhI\",\"object\":\"chat.completion.chunk\",\"created\":1749717715,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_07871e2ad8\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"type\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BhXnP2QDa2wVa9JK03tzTEmH33dhI\",\"object\":\"chat.completion.chunk\",\"created\":1749717715,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_07871e2ad8\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"\\\":\\\"\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BhXnP2QDa2wVa9JK03tzTEmH33dhI\",\"object\":\"chat.completion.chunk\",\"created\":1749717715,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_07871e2ad8\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"bullet\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BhXnP2QDa2wVa9JK03tzTEmH33dhI\",\"object\":\"chat.completion.chunk\",\"created\":1749717715,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_07871e2ad8\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"List\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BhXnP2QDa2wVa9JK03tzTEmH33dhI\",\"object\":\"chat.completion.chunk\",\"created\":1749717715,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_07871e2ad8\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"Item\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BhXnP2QDa2wVa9JK03tzTEmH33dhI\",\"object\":\"chat.completion.chunk\",\"created\":1749717715,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_07871e2ad8\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"\\\",\\\"\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BhXnP2QDa2wVa9JK03tzTEmH33dhI\",\"object\":\"chat.completion.chunk\",\"created\":1749717715,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_07871e2ad8\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"content\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BhXnP2QDa2wVa9JK03tzTEmH33dhI\",\"object\":\"chat.completion.chunk\",\"created\":1749717715,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_07871e2ad8\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"\\\":[\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BhXnP2QDa2wVa9JK03tzTEmH33dhI\",\"object\":\"chat.completion.chunk\",\"created\":1749717715,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_07871e2ad8\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"{\\\"\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BhXnP2QDa2wVa9JK03tzTEmH33dhI\",\"object\":\"chat.completion.chunk\",\"created\":1749717715,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_07871e2ad8\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"type\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BhXnP2QDa2wVa9JK03tzTEmH33dhI\",\"object\":\"chat.completion.chunk\",\"created\":1749717715,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_07871e2ad8\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"\\\":\\\"\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BhXnP2QDa2wVa9JK03tzTEmH33dhI\",\"object\":\"chat.completion.chunk\",\"created\":1749717715,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_07871e2ad8\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"text\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BhXnP2QDa2wVa9JK03tzTEmH33dhI\",\"object\":\"chat.completion.chunk\",\"created\":1749717715,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_07871e2ad8\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"\\\",\\\"\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BhXnP2QDa2wVa9JK03tzTEmH33dhI\",\"object\":\"chat.completion.chunk\",\"created\":1749717715,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_07871e2ad8\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"text\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BhXnP2QDa2wVa9JK03tzTEmH33dhI\",\"object\":\"chat.completion.chunk\",\"created\":1749717715,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_07871e2ad8\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"\\\":\\\"\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BhXnP2QDa2wVa9JK03tzTEmH33dhI\",\"object\":\"chat.completion.chunk\",\"created\":1749717715,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_07871e2ad8\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"Ap\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BhXnP2QDa2wVa9JK03tzTEmH33dhI\",\"object\":\"chat.completion.chunk\",\"created\":1749717715,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_07871e2ad8\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"ples\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BhXnP2QDa2wVa9JK03tzTEmH33dhI\",\"object\":\"chat.completion.chunk\",\"created\":1749717715,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_07871e2ad8\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"\\\",\\\"\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BhXnP2QDa2wVa9JK03tzTEmH33dhI\",\"object\":\"chat.completion.chunk\",\"created\":1749717715,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_07871e2ad8\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"styles\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BhXnP2QDa2wVa9JK03tzTEmH33dhI\",\"object\":\"chat.completion.chunk\",\"created\":1749717715,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_07871e2ad8\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"\\\":\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BhXnP2QDa2wVa9JK03tzTEmH33dhI\",\"object\":\"chat.completion.chunk\",\"created\":1749717715,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_07871e2ad8\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"{\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BhXnP2QDa2wVa9JK03tzTEmH33dhI\",\"object\":\"chat.completion.chunk\",\"created\":1749717715,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_07871e2ad8\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"}}\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BhXnP2QDa2wVa9JK03tzTEmH33dhI\",\"object\":\"chat.completion.chunk\",\"created\":1749717715,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_07871e2ad8\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"]}\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BhXnP2QDa2wVa9JK03tzTEmH33dhI\",\"object\":\"chat.completion.chunk\",\"created\":1749717715,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_07871e2ad8\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"},{\\\"\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BhXnP2QDa2wVa9JK03tzTEmH33dhI\",\"object\":\"chat.completion.chunk\",\"created\":1749717715,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_07871e2ad8\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"type\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BhXnP2QDa2wVa9JK03tzTEmH33dhI\",\"object\":\"chat.completion.chunk\",\"created\":1749717715,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_07871e2ad8\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"\\\":\\\"\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BhXnP2QDa2wVa9JK03tzTEmH33dhI\",\"object\":\"chat.completion.chunk\",\"created\":1749717715,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_07871e2ad8\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"update\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BhXnP2QDa2wVa9JK03tzTEmH33dhI\",\"object\":\"chat.completion.chunk\",\"created\":1749717715,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_07871e2ad8\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"\\\",\\\"\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BhXnP2QDa2wVa9JK03tzTEmH33dhI\",\"object\":\"chat.completion.chunk\",\"created\":1749717715,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_07871e2ad8\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"id\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BhXnP2QDa2wVa9JK03tzTEmH33dhI\",\"object\":\"chat.completion.chunk\",\"created\":1749717715,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_07871e2ad8\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"\\\":\\\"\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BhXnP2QDa2wVa9JK03tzTEmH33dhI\",\"object\":\"chat.completion.chunk\",\"created\":1749717715,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_07871e2ad8\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"ref\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BhXnP2QDa2wVa9JK03tzTEmH33dhI\",\"object\":\"chat.completion.chunk\",\"created\":1749717715,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_07871e2ad8\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"3\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BhXnP2QDa2wVa9JK03tzTEmH33dhI\",\"object\":\"chat.completion.chunk\",\"created\":1749717715,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_07871e2ad8\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"$\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BhXnP2QDa2wVa9JK03tzTEmH33dhI\",\"object\":\"chat.completion.chunk\",\"created\":1749717715,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_07871e2ad8\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"\\\",\\\"\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BhXnP2QDa2wVa9JK03tzTEmH33dhI\",\"object\":\"chat.completion.chunk\",\"created\":1749717715,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_07871e2ad8\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"block\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BhXnP2QDa2wVa9JK03tzTEmH33dhI\",\"object\":\"chat.completion.chunk\",\"created\":1749717715,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_07871e2ad8\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"\\\":{\\\"\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BhXnP2QDa2wVa9JK03tzTEmH33dhI\",\"object\":\"chat.completion.chunk\",\"created\":1749717715,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_07871e2ad8\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"type\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BhXnP2QDa2wVa9JK03tzTEmH33dhI\",\"object\":\"chat.completion.chunk\",\"created\":1749717715,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_07871e2ad8\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"\\\":\\\"\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BhXnP2QDa2wVa9JK03tzTEmH33dhI\",\"object\":\"chat.completion.chunk\",\"created\":1749717715,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_07871e2ad8\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"bullet\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BhXnP2QDa2wVa9JK03tzTEmH33dhI\",\"object\":\"chat.completion.chunk\",\"created\":1749717715,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_07871e2ad8\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"List\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BhXnP2QDa2wVa9JK03tzTEmH33dhI\",\"object\":\"chat.completion.chunk\",\"created\":1749717715,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_07871e2ad8\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"Item\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BhXnP2QDa2wVa9JK03tzTEmH33dhI\",\"object\":\"chat.completion.chunk\",\"created\":1749717715,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_07871e2ad8\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"\\\",\\\"\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BhXnP2QDa2wVa9JK03tzTEmH33dhI\",\"object\":\"chat.completion.chunk\",\"created\":1749717715,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_07871e2ad8\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"content\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BhXnP2QDa2wVa9JK03tzTEmH33dhI\",\"object\":\"chat.completion.chunk\",\"created\":1749717715,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_07871e2ad8\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"\\\":[\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BhXnP2QDa2wVa9JK03tzTEmH33dhI\",\"object\":\"chat.completion.chunk\",\"created\":1749717715,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_07871e2ad8\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"{\\\"\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BhXnP2QDa2wVa9JK03tzTEmH33dhI\",\"object\":\"chat.completion.chunk\",\"created\":1749717715,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_07871e2ad8\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"type\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BhXnP2QDa2wVa9JK03tzTEmH33dhI\",\"object\":\"chat.completion.chunk\",\"created\":1749717715,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_07871e2ad8\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"\\\":\\\"\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BhXnP2QDa2wVa9JK03tzTEmH33dhI\",\"object\":\"chat.completion.chunk\",\"created\":1749717715,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_07871e2ad8\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"text\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BhXnP2QDa2wVa9JK03tzTEmH33dhI\",\"object\":\"chat.completion.chunk\",\"created\":1749717715,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_07871e2ad8\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"\\\",\\\"\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BhXnP2QDa2wVa9JK03tzTEmH33dhI\",\"object\":\"chat.completion.chunk\",\"created\":1749717715,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_07871e2ad8\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"text\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BhXnP2QDa2wVa9JK03tzTEmH33dhI\",\"object\":\"chat.completion.chunk\",\"created\":1749717715,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_07871e2ad8\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"\\\":\\\"\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BhXnP2QDa2wVa9JK03tzTEmH33dhI\",\"object\":\"chat.completion.chunk\",\"created\":1749717715,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_07871e2ad8\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"Ban\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BhXnP2QDa2wVa9JK03tzTEmH33dhI\",\"object\":\"chat.completion.chunk\",\"created\":1749717715,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_07871e2ad8\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"anas\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BhXnP2QDa2wVa9JK03tzTEmH33dhI\",\"object\":\"chat.completion.chunk\",\"created\":1749717715,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_07871e2ad8\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"\\\",\\\"\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BhXnP2QDa2wVa9JK03tzTEmH33dhI\",\"object\":\"chat.completion.chunk\",\"created\":1749717715,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_07871e2ad8\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"styles\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BhXnP2QDa2wVa9JK03tzTEmH33dhI\",\"object\":\"chat.completion.chunk\",\"created\":1749717715,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_07871e2ad8\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"\\\":\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BhXnP2QDa2wVa9JK03tzTEmH33dhI\",\"object\":\"chat.completion.chunk\",\"created\":1749717715,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_07871e2ad8\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"{\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BhXnP2QDa2wVa9JK03tzTEmH33dhI\",\"object\":\"chat.completion.chunk\",\"created\":1749717715,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_07871e2ad8\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"}}\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BhXnP2QDa2wVa9JK03tzTEmH33dhI\",\"object\":\"chat.completion.chunk\",\"created\":1749717715,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_07871e2ad8\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"]\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BhXnP2QDa2wVa9JK03tzTEmH33dhI\",\"object\":\"chat.completion.chunk\",\"created\":1749717715,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_07871e2ad8\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"}}\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BhXnP2QDa2wVa9JK03tzTEmH33dhI\",\"object\":\"chat.completion.chunk\",\"created\":1749717715,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_07871e2ad8\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"]}\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BhXnP2QDa2wVa9JK03tzTEmH33dhI\",\"object\":\"chat.completion.chunk\",\"created\":1749717715,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_07871e2ad8\",\"choices\":[{\"index\":0,\"delta\":{},\"logprobs\":null,\"finish_reason\":\"stop\"}]}\n\ndata: [DONE]\n\n", + "headers": [] + } +} \ No newline at end of file diff --git a/packages/xl-ai/src/api/formats/json/__snapshots__/json.test.ts/Update/__msw_snapshots__/openai.chat/gpt-4o-2024-08-06 (streaming)/turn paragraphs into list_1_f8fd91cad88cfec6db2a906b564d39d3.json b/packages/xl-ai/src/api/formats/json/__snapshots__/json.test.ts/Update/__msw_snapshots__/openai.chat/gpt-4o-2024-08-06 (streaming)/turn paragraphs into list_1_f8fd91cad88cfec6db2a906b564d39d3.json deleted file mode 100644 index 36d21c83de..0000000000 --- a/packages/xl-ai/src/api/formats/json/__snapshots__/json.test.ts/Update/__msw_snapshots__/openai.chat/gpt-4o-2024-08-06 (streaming)/turn paragraphs into list_1_f8fd91cad88cfec6db2a906b564d39d3.json +++ /dev/null @@ -1,15 +0,0 @@ -{ - "request": { - "method": "POST", - "url": "https://localhost:3000/ai?provider=openai&url=https%3A%2F%2Fapi.openai.com%2Fv1%2Fchat%2Fcompletions", - "body": "{\"model\":\"gpt-4o-2024-08-06\",\"temperature\":0,\"messages\":[{\"role\":\"system\",\"content\":\"You're manipulating a selected part of a text document using JSON blocks. \\n Make sure to follow the json schema provided and always include the trailing $ in ids. \\n This is the selection as an array of JSON blocks:\"},{\"role\":\"system\",\"content\":\"[{\\\"id\\\":\\\"ref2$\\\",\\\"block\\\":{\\\"id\\\":\\\"ref2\\\",\\\"type\\\":\\\"paragraph\\\",\\\"props\\\":{\\\"textColor\\\":\\\"default\\\",\\\"backgroundColor\\\":\\\"default\\\",\\\"textAlignment\\\":\\\"left\\\"},\\\"content\\\":[{\\\"type\\\":\\\"text\\\",\\\"text\\\":\\\"Apples\\\",\\\"styles\\\":{}}],\\\"children\\\":[]}},{\\\"id\\\":\\\"ref3$\\\",\\\"block\\\":{\\\"id\\\":\\\"ref3\\\",\\\"type\\\":\\\"paragraph\\\",\\\"props\\\":{\\\"textColor\\\":\\\"default\\\",\\\"backgroundColor\\\":\\\"default\\\",\\\"textAlignment\\\":\\\"left\\\"},\\\"content\\\":[{\\\"type\\\":\\\"text\\\",\\\"text\\\":\\\"Bananas\\\",\\\"styles\\\":{}}],\\\"children\\\":[]}}]\"},{\"role\":\"system\",\"content\":\"This is the entire document (INCLUDING the selected text), find the selected text in there to understand the context:\"},{\"role\":\"system\",\"content\":\"[{\\\"block\\\":{\\\"type\\\":\\\"paragraph\\\",\\\"props\\\":{\\\"textColor\\\":\\\"default\\\",\\\"backgroundColor\\\":\\\"default\\\",\\\"textAlignment\\\":\\\"left\\\"},\\\"content\\\":[{\\\"type\\\":\\\"text\\\",\\\"text\\\":\\\"I need to buy:\\\",\\\"styles\\\":{}}]}},{\\\"block\\\":{\\\"type\\\":\\\"paragraph\\\",\\\"props\\\":{\\\"textColor\\\":\\\"default\\\",\\\"backgroundColor\\\":\\\"default\\\",\\\"textAlignment\\\":\\\"left\\\"},\\\"content\\\":[{\\\"type\\\":\\\"text\\\",\\\"text\\\":\\\"Apples\\\",\\\"styles\\\":{}}]}},{\\\"block\\\":{\\\"type\\\":\\\"paragraph\\\",\\\"props\\\":{\\\"textColor\\\":\\\"default\\\",\\\"backgroundColor\\\":\\\"default\\\",\\\"textAlignment\\\":\\\"left\\\"},\\\"content\\\":[{\\\"type\\\":\\\"text\\\",\\\"text\\\":\\\"Bananas\\\",\\\"styles\\\":{}}]}}]\"},{\"role\":\"system\",\"content\":\"The user asks you to do the following:\"},{\"role\":\"user\",\"content\":\"turn into list (update existing blocks)\"}],\"tool_choice\":{\"type\":\"function\",\"function\":{\"name\":\"json\"}},\"tools\":[{\"type\":\"function\",\"function\":{\"name\":\"json\",\"description\":\"Respond with a JSON object.\",\"parameters\":{\"type\":\"object\",\"properties\":{\"operations\":{\"type\":\"array\",\"items\":{\"anyOf\":[{\"type\":\"object\",\"description\":\"Update a block, the new block will replace the existing block.\",\"properties\":{\"type\":{\"type\":\"string\",\"enum\":[\"update\"]},\"id\":{\"type\":\"string\",\"description\":\"id of block to update\"},\"block\":{\"$ref\":\"#/$defs/block\"}},\"required\":[\"type\",\"id\",\"block\"],\"additionalProperties\":false},{\"type\":\"object\",\"description\":\"Insert new blocks\",\"properties\":{\"type\":{\"type\":\"string\",\"enum\":[\"add\"]},\"referenceId\":{\"type\":\"string\",\"description\":\"MUST be an id of a block in the document\"},\"position\":{\"type\":\"string\",\"enum\":[\"before\",\"after\"],\"description\":\"`after` to add blocks AFTER (below) the block with `referenceId`, `before` to add the block BEFORE (above)\"},\"blocks\":{\"items\":{\"$ref\":\"#/$defs/block\"},\"type\":\"array\"}},\"required\":[\"type\",\"referenceId\",\"position\",\"blocks\"],\"additionalProperties\":false},{\"type\":\"object\",\"description\":\"Delete a block\",\"properties\":{\"type\":{\"type\":\"string\",\"enum\":[\"delete\"]},\"id\":{\"type\":\"string\",\"description\":\"id of block to delete\"}},\"required\":[\"type\",\"id\"],\"additionalProperties\":false}]}}},\"additionalProperties\":false,\"required\":[\"operations\"],\"$defs\":{\"styles\":{\"type\":\"object\",\"properties\":{\"bold\":{\"type\":\"boolean\"},\"italic\":{\"type\":\"boolean\"},\"underline\":{\"type\":\"boolean\"},\"strike\":{\"type\":\"boolean\"},\"code\":{\"type\":\"boolean\"},\"textColor\":{\"type\":\"string\"},\"backgroundColor\":{\"type\":\"string\"}},\"additionalProperties\":false},\"styledtext\":{\"type\":\"object\",\"properties\":{\"type\":{\"type\":\"string\",\"enum\":[\"text\"]},\"text\":{\"type\":\"string\"},\"styles\":{\"$ref\":\"#/$defs/styles\"}},\"additionalProperties\":false,\"required\":[\"type\",\"text\"]},\"inlinecontent\":{\"type\":\"array\",\"items\":{\"anyOf\":[{\"type\":\"object\",\"properties\":{\"type\":{\"type\":\"string\",\"enum\":[\"mention\"]},\"props\":{\"type\":\"object\",\"properties\":{\"user\":{\"type\":\"string\"}},\"additionalProperties\":false}},\"additionalProperties\":false,\"required\":[\"type\"]},{\"$ref\":\"#/$defs/styledtext\"},{\"type\":\"object\",\"properties\":{\"type\":{\"type\":\"string\",\"enum\":[\"link\"]},\"content\":{\"type\":\"array\",\"items\":{\"$ref\":\"#/$defs/styledtext\"}},\"href\":{\"type\":\"string\"}},\"additionalProperties\":false,\"required\":[\"type\",\"href\",\"content\"]}]}},\"block\":{\"anyOf\":[{\"type\":\"object\",\"properties\":{\"type\":{\"type\":\"string\",\"enum\":[\"paragraph\",\"quote\",\"bulletListItem\",\"numberedListItem\"]},\"content\":{\"$ref\":\"#/$defs/inlinecontent\"},\"props\":{\"type\":\"object\",\"properties\":{},\"additionalProperties\":false}},\"additionalProperties\":false,\"required\":[\"type\"]},{\"type\":\"object\",\"properties\":{\"type\":{\"type\":\"string\",\"enum\":[\"heading\"]},\"content\":{\"$ref\":\"#/$defs/inlinecontent\"},\"props\":{\"type\":\"object\",\"properties\":{\"level\":{\"type\":\"number\",\"enum\":[1,2,3]}},\"additionalProperties\":false}},\"additionalProperties\":false,\"required\":[\"type\"]},{\"type\":\"object\",\"properties\":{\"type\":{\"type\":\"string\",\"enum\":[\"codeBlock\"]},\"content\":{\"$ref\":\"#/$defs/inlinecontent\"},\"props\":{\"type\":\"object\",\"properties\":{\"language\":{\"type\":\"string\"}},\"additionalProperties\":false}},\"additionalProperties\":false,\"required\":[\"type\"]},{\"type\":\"object\",\"properties\":{\"type\":{\"type\":\"string\",\"enum\":[\"checkListItem\"]},\"content\":{\"$ref\":\"#/$defs/inlinecontent\"},\"props\":{\"type\":\"object\",\"properties\":{\"checked\":{\"type\":\"boolean\"}},\"additionalProperties\":false}},\"additionalProperties\":false,\"required\":[\"type\"]},{\"type\":\"object\",\"properties\":{\"type\":{\"type\":\"string\",\"enum\":[\"table\"]},\"content\":{\"type\":\"object\",\"properties\":{}},\"props\":{\"type\":\"object\",\"properties\":{},\"additionalProperties\":false}},\"additionalProperties\":false,\"required\":[\"type\"]}]}}}}}],\"stream\":true}", - "headers": [], - "cookies": [] - }, - "response": { - "status": 200, - "statusText": "", - "body": "data: {\"id\":\"chatcmpl-BgV4yjBm1T7sxo0qykSjkjxiksixu\",\"object\":\"chat.completion.chunk\",\"created\":1749468944,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_a288987b44\",\"choices\":[{\"index\":0,\"delta\":{\"role\":\"assistant\",\"content\":null,\"tool_calls\":[{\"index\":0,\"id\":\"call_EVVL8kijBtsk3fuPRNEFwkKB\",\"type\":\"function\",\"function\":{\"name\":\"json\",\"arguments\":\"\"}}],\"refusal\":null},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BgV4yjBm1T7sxo0qykSjkjxiksixu\",\"object\":\"chat.completion.chunk\",\"created\":1749468944,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_a288987b44\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"{\\\"\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BgV4yjBm1T7sxo0qykSjkjxiksixu\",\"object\":\"chat.completion.chunk\",\"created\":1749468944,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_a288987b44\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"operations\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BgV4yjBm1T7sxo0qykSjkjxiksixu\",\"object\":\"chat.completion.chunk\",\"created\":1749468944,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_a288987b44\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"\\\":[\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BgV4yjBm1T7sxo0qykSjkjxiksixu\",\"object\":\"chat.completion.chunk\",\"created\":1749468944,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_a288987b44\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"{\\\"\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BgV4yjBm1T7sxo0qykSjkjxiksixu\",\"object\":\"chat.completion.chunk\",\"created\":1749468944,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_a288987b44\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"type\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BgV4yjBm1T7sxo0qykSjkjxiksixu\",\"object\":\"chat.completion.chunk\",\"created\":1749468944,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_a288987b44\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"\\\":\\\"\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BgV4yjBm1T7sxo0qykSjkjxiksixu\",\"object\":\"chat.completion.chunk\",\"created\":1749468944,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_a288987b44\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"update\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BgV4yjBm1T7sxo0qykSjkjxiksixu\",\"object\":\"chat.completion.chunk\",\"created\":1749468944,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_a288987b44\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"\\\",\\\"\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BgV4yjBm1T7sxo0qykSjkjxiksixu\",\"object\":\"chat.completion.chunk\",\"created\":1749468944,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_a288987b44\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"id\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BgV4yjBm1T7sxo0qykSjkjxiksixu\",\"object\":\"chat.completion.chunk\",\"created\":1749468944,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_a288987b44\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"\\\":\\\"\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BgV4yjBm1T7sxo0qykSjkjxiksixu\",\"object\":\"chat.completion.chunk\",\"created\":1749468944,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_a288987b44\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"ref\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BgV4yjBm1T7sxo0qykSjkjxiksixu\",\"object\":\"chat.completion.chunk\",\"created\":1749468944,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_a288987b44\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"2\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BgV4yjBm1T7sxo0qykSjkjxiksixu\",\"object\":\"chat.completion.chunk\",\"created\":1749468944,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_a288987b44\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"$\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BgV4yjBm1T7sxo0qykSjkjxiksixu\",\"object\":\"chat.completion.chunk\",\"created\":1749468944,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_a288987b44\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"\\\",\\\"\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BgV4yjBm1T7sxo0qykSjkjxiksixu\",\"object\":\"chat.completion.chunk\",\"created\":1749468944,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_a288987b44\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"block\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BgV4yjBm1T7sxo0qykSjkjxiksixu\",\"object\":\"chat.completion.chunk\",\"created\":1749468944,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_a288987b44\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"\\\":{\\\"\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BgV4yjBm1T7sxo0qykSjkjxiksixu\",\"object\":\"chat.completion.chunk\",\"created\":1749468944,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_a288987b44\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"type\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BgV4yjBm1T7sxo0qykSjkjxiksixu\",\"object\":\"chat.completion.chunk\",\"created\":1749468944,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_a288987b44\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"\\\":\\\"\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BgV4yjBm1T7sxo0qykSjkjxiksixu\",\"object\":\"chat.completion.chunk\",\"created\":1749468944,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_a288987b44\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"bullet\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BgV4yjBm1T7sxo0qykSjkjxiksixu\",\"object\":\"chat.completion.chunk\",\"created\":1749468944,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_a288987b44\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"List\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BgV4yjBm1T7sxo0qykSjkjxiksixu\",\"object\":\"chat.completion.chunk\",\"created\":1749468944,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_a288987b44\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"Item\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BgV4yjBm1T7sxo0qykSjkjxiksixu\",\"object\":\"chat.completion.chunk\",\"created\":1749468944,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_a288987b44\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"\\\",\\\"\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BgV4yjBm1T7sxo0qykSjkjxiksixu\",\"object\":\"chat.completion.chunk\",\"created\":1749468944,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_a288987b44\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"content\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BgV4yjBm1T7sxo0qykSjkjxiksixu\",\"object\":\"chat.completion.chunk\",\"created\":1749468944,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_a288987b44\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"\\\":[\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BgV4yjBm1T7sxo0qykSjkjxiksixu\",\"object\":\"chat.completion.chunk\",\"created\":1749468944,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_a288987b44\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"{\\\"\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BgV4yjBm1T7sxo0qykSjkjxiksixu\",\"object\":\"chat.completion.chunk\",\"created\":1749468944,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_a288987b44\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"type\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BgV4yjBm1T7sxo0qykSjkjxiksixu\",\"object\":\"chat.completion.chunk\",\"created\":1749468944,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_a288987b44\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"\\\":\\\"\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BgV4yjBm1T7sxo0qykSjkjxiksixu\",\"object\":\"chat.completion.chunk\",\"created\":1749468944,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_a288987b44\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"text\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BgV4yjBm1T7sxo0qykSjkjxiksixu\",\"object\":\"chat.completion.chunk\",\"created\":1749468944,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_a288987b44\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"\\\",\\\"\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BgV4yjBm1T7sxo0qykSjkjxiksixu\",\"object\":\"chat.completion.chunk\",\"created\":1749468944,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_a288987b44\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"text\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BgV4yjBm1T7sxo0qykSjkjxiksixu\",\"object\":\"chat.completion.chunk\",\"created\":1749468944,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_a288987b44\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"\\\":\\\"\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BgV4yjBm1T7sxo0qykSjkjxiksixu\",\"object\":\"chat.completion.chunk\",\"created\":1749468944,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_a288987b44\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"Ap\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BgV4yjBm1T7sxo0qykSjkjxiksixu\",\"object\":\"chat.completion.chunk\",\"created\":1749468944,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_a288987b44\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"ples\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BgV4yjBm1T7sxo0qykSjkjxiksixu\",\"object\":\"chat.completion.chunk\",\"created\":1749468944,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_a288987b44\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"\\\",\\\"\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BgV4yjBm1T7sxo0qykSjkjxiksixu\",\"object\":\"chat.completion.chunk\",\"created\":1749468944,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_a288987b44\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"styles\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BgV4yjBm1T7sxo0qykSjkjxiksixu\",\"object\":\"chat.completion.chunk\",\"created\":1749468944,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_a288987b44\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"\\\":\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BgV4yjBm1T7sxo0qykSjkjxiksixu\",\"object\":\"chat.completion.chunk\",\"created\":1749468944,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_a288987b44\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"{\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BgV4yjBm1T7sxo0qykSjkjxiksixu\",\"object\":\"chat.completion.chunk\",\"created\":1749468944,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_a288987b44\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"}}\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BgV4yjBm1T7sxo0qykSjkjxiksixu\",\"object\":\"chat.completion.chunk\",\"created\":1749468944,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_a288987b44\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"]}\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BgV4yjBm1T7sxo0qykSjkjxiksixu\",\"object\":\"chat.completion.chunk\",\"created\":1749468944,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_a288987b44\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"},{\\\"\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BgV4yjBm1T7sxo0qykSjkjxiksixu\",\"object\":\"chat.completion.chunk\",\"created\":1749468944,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_a288987b44\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"type\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BgV4yjBm1T7sxo0qykSjkjxiksixu\",\"object\":\"chat.completion.chunk\",\"created\":1749468944,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_a288987b44\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"\\\":\\\"\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BgV4yjBm1T7sxo0qykSjkjxiksixu\",\"object\":\"chat.completion.chunk\",\"created\":1749468944,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_a288987b44\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"update\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BgV4yjBm1T7sxo0qykSjkjxiksixu\",\"object\":\"chat.completion.chunk\",\"created\":1749468944,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_a288987b44\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"\\\",\\\"\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BgV4yjBm1T7sxo0qykSjkjxiksixu\",\"object\":\"chat.completion.chunk\",\"created\":1749468944,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_a288987b44\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"id\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BgV4yjBm1T7sxo0qykSjkjxiksixu\",\"object\":\"chat.completion.chunk\",\"created\":1749468944,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_a288987b44\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"\\\":\\\"\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BgV4yjBm1T7sxo0qykSjkjxiksixu\",\"object\":\"chat.completion.chunk\",\"created\":1749468944,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_a288987b44\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"ref\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BgV4yjBm1T7sxo0qykSjkjxiksixu\",\"object\":\"chat.completion.chunk\",\"created\":1749468944,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_a288987b44\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"3\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BgV4yjBm1T7sxo0qykSjkjxiksixu\",\"object\":\"chat.completion.chunk\",\"created\":1749468944,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_a288987b44\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"$\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BgV4yjBm1T7sxo0qykSjkjxiksixu\",\"object\":\"chat.completion.chunk\",\"created\":1749468944,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_a288987b44\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"\\\",\\\"\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BgV4yjBm1T7sxo0qykSjkjxiksixu\",\"object\":\"chat.completion.chunk\",\"created\":1749468944,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_a288987b44\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"block\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BgV4yjBm1T7sxo0qykSjkjxiksixu\",\"object\":\"chat.completion.chunk\",\"created\":1749468944,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_a288987b44\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"\\\":{\\\"\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BgV4yjBm1T7sxo0qykSjkjxiksixu\",\"object\":\"chat.completion.chunk\",\"created\":1749468944,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_a288987b44\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"type\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BgV4yjBm1T7sxo0qykSjkjxiksixu\",\"object\":\"chat.completion.chunk\",\"created\":1749468944,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_a288987b44\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"\\\":\\\"\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BgV4yjBm1T7sxo0qykSjkjxiksixu\",\"object\":\"chat.completion.chunk\",\"created\":1749468944,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_a288987b44\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"bullet\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BgV4yjBm1T7sxo0qykSjkjxiksixu\",\"object\":\"chat.completion.chunk\",\"created\":1749468944,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_a288987b44\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"List\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BgV4yjBm1T7sxo0qykSjkjxiksixu\",\"object\":\"chat.completion.chunk\",\"created\":1749468944,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_a288987b44\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"Item\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BgV4yjBm1T7sxo0qykSjkjxiksixu\",\"object\":\"chat.completion.chunk\",\"created\":1749468944,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_a288987b44\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"\\\",\\\"\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BgV4yjBm1T7sxo0qykSjkjxiksixu\",\"object\":\"chat.completion.chunk\",\"created\":1749468944,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_a288987b44\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"content\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BgV4yjBm1T7sxo0qykSjkjxiksixu\",\"object\":\"chat.completion.chunk\",\"created\":1749468944,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_a288987b44\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"\\\":[\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BgV4yjBm1T7sxo0qykSjkjxiksixu\",\"object\":\"chat.completion.chunk\",\"created\":1749468944,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_a288987b44\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"{\\\"\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BgV4yjBm1T7sxo0qykSjkjxiksixu\",\"object\":\"chat.completion.chunk\",\"created\":1749468944,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_a288987b44\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"type\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BgV4yjBm1T7sxo0qykSjkjxiksixu\",\"object\":\"chat.completion.chunk\",\"created\":1749468944,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_a288987b44\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"\\\":\\\"\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BgV4yjBm1T7sxo0qykSjkjxiksixu\",\"object\":\"chat.completion.chunk\",\"created\":1749468944,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_a288987b44\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"text\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BgV4yjBm1T7sxo0qykSjkjxiksixu\",\"object\":\"chat.completion.chunk\",\"created\":1749468944,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_a288987b44\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"\\\",\\\"\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BgV4yjBm1T7sxo0qykSjkjxiksixu\",\"object\":\"chat.completion.chunk\",\"created\":1749468944,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_a288987b44\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"text\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BgV4yjBm1T7sxo0qykSjkjxiksixu\",\"object\":\"chat.completion.chunk\",\"created\":1749468944,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_a288987b44\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"\\\":\\\"\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BgV4yjBm1T7sxo0qykSjkjxiksixu\",\"object\":\"chat.completion.chunk\",\"created\":1749468944,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_a288987b44\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"Ban\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BgV4yjBm1T7sxo0qykSjkjxiksixu\",\"object\":\"chat.completion.chunk\",\"created\":1749468944,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_a288987b44\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"anas\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BgV4yjBm1T7sxo0qykSjkjxiksixu\",\"object\":\"chat.completion.chunk\",\"created\":1749468944,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_a288987b44\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"\\\",\\\"\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BgV4yjBm1T7sxo0qykSjkjxiksixu\",\"object\":\"chat.completion.chunk\",\"created\":1749468944,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_a288987b44\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"styles\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BgV4yjBm1T7sxo0qykSjkjxiksixu\",\"object\":\"chat.completion.chunk\",\"created\":1749468944,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_a288987b44\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"\\\":\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BgV4yjBm1T7sxo0qykSjkjxiksixu\",\"object\":\"chat.completion.chunk\",\"created\":1749468944,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_a288987b44\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"{\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BgV4yjBm1T7sxo0qykSjkjxiksixu\",\"object\":\"chat.completion.chunk\",\"created\":1749468944,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_a288987b44\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"}}\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BgV4yjBm1T7sxo0qykSjkjxiksixu\",\"object\":\"chat.completion.chunk\",\"created\":1749468944,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_a288987b44\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"]\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BgV4yjBm1T7sxo0qykSjkjxiksixu\",\"object\":\"chat.completion.chunk\",\"created\":1749468944,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_a288987b44\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"}}\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BgV4yjBm1T7sxo0qykSjkjxiksixu\",\"object\":\"chat.completion.chunk\",\"created\":1749468944,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_a288987b44\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"]}\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BgV4yjBm1T7sxo0qykSjkjxiksixu\",\"object\":\"chat.completion.chunk\",\"created\":1749468944,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_a288987b44\",\"choices\":[{\"index\":0,\"delta\":{},\"logprobs\":null,\"finish_reason\":\"stop\"}]}\n\ndata: [DONE]\n\n", - "headers": [] - } -} \ No newline at end of file diff --git a/packages/xl-ai/src/api/formats/json/__snapshots__/json.test.ts/Update/__msw_snapshots__/openai.chat/gpt-4o-2024-08-06 (streaming)/update block prop and content_1_43d5973147f933116f10f4eb6d3397e6.json b/packages/xl-ai/src/api/formats/json/__snapshots__/json.test.ts/Update/__msw_snapshots__/openai.chat/gpt-4o-2024-08-06 (streaming)/update block prop and content_1_43d5973147f933116f10f4eb6d3397e6.json deleted file mode 100644 index cacf37bced..0000000000 --- a/packages/xl-ai/src/api/formats/json/__snapshots__/json.test.ts/Update/__msw_snapshots__/openai.chat/gpt-4o-2024-08-06 (streaming)/update block prop and content_1_43d5973147f933116f10f4eb6d3397e6.json +++ /dev/null @@ -1,15 +0,0 @@ -{ - "request": { - "method": "POST", - "url": "https://localhost:3000/ai?provider=openai&url=https%3A%2F%2Fapi.openai.com%2Fv1%2Fchat%2Fcompletions", - "body": "{\"model\":\"gpt-4o-2024-08-06\",\"temperature\":0,\"messages\":[{\"role\":\"system\",\"content\":\"You're manipulating a text document using JSON blocks. \\n Make sure to follow the json schema provided. When referencing ids they MUST be EXACTLY the same (including the trailing $). \\n This is the document as an array of JSON blocks (the cursor is BETWEEN two blocks as indicated by cursor: true):\"},{\"role\":\"system\",\"content\":\"[{\\\"id\\\":\\\"ref1$\\\",\\\"block\\\":{\\\"id\\\":\\\"ref1\\\",\\\"type\\\":\\\"paragraph\\\",\\\"props\\\":{\\\"textColor\\\":\\\"default\\\",\\\"backgroundColor\\\":\\\"default\\\",\\\"textAlignment\\\":\\\"left\\\"},\\\"content\\\":[{\\\"type\\\":\\\"text\\\",\\\"text\\\":\\\"Hello, world!\\\",\\\"styles\\\":{}}]}},{\\\"cursor\\\":true},{\\\"id\\\":\\\"ref2$\\\",\\\"block\\\":{\\\"id\\\":\\\"ref2\\\",\\\"type\\\":\\\"paragraph\\\",\\\"props\\\":{\\\"textColor\\\":\\\"default\\\",\\\"backgroundColor\\\":\\\"default\\\",\\\"textAlignment\\\":\\\"left\\\"},\\\"content\\\":[{\\\"type\\\":\\\"text\\\",\\\"text\\\":\\\"Hello, \\\",\\\"styles\\\":{}},{\\\"type\\\":\\\"mention\\\",\\\"props\\\":{\\\"user\\\":\\\"John Doe\\\"}},{\\\"type\\\":\\\"text\\\",\\\"text\\\":\\\"! \\\",\\\"styles\\\":{}},{\\\"type\\\":\\\"text\\\",\\\"text\\\":\\\"How are you doing?\\\",\\\"styles\\\":{\\\"bold\\\":true}},{\\\"type\\\":\\\"text\\\",\\\"text\\\":\\\" \\\",\\\"styles\\\":{}},{\\\"type\\\":\\\"text\\\",\\\"text\\\":\\\"This text is blue!\\\",\\\"styles\\\":{\\\"textColor\\\":\\\"blue\\\"}}]}},{\\\"id\\\":\\\"ref3$\\\",\\\"block\\\":{\\\"id\\\":\\\"ref3\\\",\\\"type\\\":\\\"paragraph\\\",\\\"props\\\":{\\\"textColor\\\":\\\"default\\\",\\\"backgroundColor\\\":\\\"default\\\",\\\"textAlignment\\\":\\\"left\\\"},\\\"content\\\":[{\\\"type\\\":\\\"text\\\",\\\"text\\\":\\\"Hello, world! \\\",\\\"styles\\\":{}},{\\\"type\\\":\\\"text\\\",\\\"text\\\":\\\"Bold text. \\\",\\\"styles\\\":{\\\"bold\\\":true}},{\\\"type\\\":\\\"link\\\",\\\"href\\\":\\\"https://www.google.com\\\",\\\"content\\\":[{\\\"type\\\":\\\"text\\\",\\\"text\\\":\\\"Link.\\\",\\\"styles\\\":{}}]}]}}]\"},{\"role\":\"system\",\"content\":\"The user asks you to do the following:\"},{\"role\":\"user\",\"content\":\"make the first paragraph right aligned and update the content to 'What's up, world!'\"},{\"role\":\"system\",\"content\":\"First, determine what part of the document the user is talking about. You SHOULD probably take cursor info into account if needed.\\n EXAMPLE: if user says \\\"below\\\" (without pointing to a specific part of the document) he / she probably indicates the block(s) after the cursor. \\n EXAMPLE: If you want to insert content AT the cursor position (UNLESS indicated otherwise by the user), then you need `referenceId` to point to the block before the cursor with position `after` (or block below and `before`).\\n \\n Prefer updating existing blocks over removing and adding (but this also depends on the user's question).\"}],\"tool_choice\":{\"type\":\"function\",\"function\":{\"name\":\"json\"}},\"tools\":[{\"type\":\"function\",\"function\":{\"name\":\"json\",\"description\":\"Respond with a JSON object.\",\"parameters\":{\"type\":\"object\",\"properties\":{\"operations\":{\"type\":\"array\",\"items\":{\"anyOf\":[{\"type\":\"object\",\"description\":\"Update a block, the new block will replace the existing block.\",\"properties\":{\"type\":{\"type\":\"string\",\"enum\":[\"update\"]},\"id\":{\"type\":\"string\",\"description\":\"id of block to update\"},\"block\":{\"$ref\":\"#/$defs/block\"}},\"required\":[\"type\",\"id\",\"block\"],\"additionalProperties\":false},{\"type\":\"object\",\"description\":\"Insert new blocks\",\"properties\":{\"type\":{\"type\":\"string\",\"enum\":[\"add\"]},\"referenceId\":{\"type\":\"string\",\"description\":\"MUST be an id of a block in the document\"},\"position\":{\"type\":\"string\",\"enum\":[\"before\",\"after\"],\"description\":\"`after` to add blocks AFTER (below) the block with `referenceId`, `before` to add the block BEFORE (above)\"},\"blocks\":{\"items\":{\"$ref\":\"#/$defs/block\"},\"type\":\"array\"}},\"required\":[\"type\",\"referenceId\",\"position\",\"blocks\"],\"additionalProperties\":false},{\"type\":\"object\",\"description\":\"Delete a block\",\"properties\":{\"type\":{\"type\":\"string\",\"enum\":[\"delete\"]},\"id\":{\"type\":\"string\",\"description\":\"id of block to delete\"}},\"required\":[\"type\",\"id\"],\"additionalProperties\":false}]}}},\"additionalProperties\":false,\"required\":[\"operations\"],\"$defs\":{\"styles\":{\"type\":\"object\",\"properties\":{\"bold\":{\"type\":\"boolean\"},\"italic\":{\"type\":\"boolean\"},\"underline\":{\"type\":\"boolean\"},\"strike\":{\"type\":\"boolean\"},\"code\":{\"type\":\"boolean\"},\"textColor\":{\"type\":\"string\"},\"backgroundColor\":{\"type\":\"string\"}},\"additionalProperties\":false},\"styledtext\":{\"type\":\"object\",\"properties\":{\"type\":{\"type\":\"string\",\"enum\":[\"text\"]},\"text\":{\"type\":\"string\"},\"styles\":{\"$ref\":\"#/$defs/styles\"}},\"additionalProperties\":false,\"required\":[\"type\",\"text\"]},\"inlinecontent\":{\"type\":\"array\",\"items\":{\"anyOf\":[{\"type\":\"object\",\"properties\":{\"type\":{\"type\":\"string\",\"enum\":[\"mention\"]},\"props\":{\"type\":\"object\",\"properties\":{\"user\":{\"type\":\"string\"}},\"additionalProperties\":false}},\"additionalProperties\":false,\"required\":[\"type\"]},{\"$ref\":\"#/$defs/styledtext\"},{\"type\":\"object\",\"properties\":{\"type\":{\"type\":\"string\",\"enum\":[\"link\"]},\"content\":{\"type\":\"array\",\"items\":{\"$ref\":\"#/$defs/styledtext\"}},\"href\":{\"type\":\"string\"}},\"additionalProperties\":false,\"required\":[\"type\",\"href\",\"content\"]}]}},\"block\":{\"anyOf\":[{\"type\":\"object\",\"properties\":{\"type\":{\"type\":\"string\",\"enum\":[\"paragraph\",\"quote\",\"bulletListItem\",\"numberedListItem\"]},\"content\":{\"$ref\":\"#/$defs/inlinecontent\"},\"props\":{\"type\":\"object\",\"properties\":{},\"additionalProperties\":false}},\"additionalProperties\":false,\"required\":[\"type\"]},{\"type\":\"object\",\"properties\":{\"type\":{\"type\":\"string\",\"enum\":[\"heading\"]},\"content\":{\"$ref\":\"#/$defs/inlinecontent\"},\"props\":{\"type\":\"object\",\"properties\":{\"level\":{\"type\":\"number\",\"enum\":[1,2,3]}},\"additionalProperties\":false}},\"additionalProperties\":false,\"required\":[\"type\"]},{\"type\":\"object\",\"properties\":{\"type\":{\"type\":\"string\",\"enum\":[\"codeBlock\"]},\"content\":{\"$ref\":\"#/$defs/inlinecontent\"},\"props\":{\"type\":\"object\",\"properties\":{\"language\":{\"type\":\"string\"}},\"additionalProperties\":false}},\"additionalProperties\":false,\"required\":[\"type\"]},{\"type\":\"object\",\"properties\":{\"type\":{\"type\":\"string\",\"enum\":[\"checkListItem\"]},\"content\":{\"$ref\":\"#/$defs/inlinecontent\"},\"props\":{\"type\":\"object\",\"properties\":{\"checked\":{\"type\":\"boolean\"}},\"additionalProperties\":false}},\"additionalProperties\":false,\"required\":[\"type\"]},{\"type\":\"object\",\"properties\":{\"type\":{\"type\":\"string\",\"enum\":[\"table\"]},\"content\":{\"type\":\"object\",\"properties\":{}},\"props\":{\"type\":\"object\",\"properties\":{},\"additionalProperties\":false}},\"additionalProperties\":false,\"required\":[\"type\"]}]}}}}}],\"stream\":true}", - "headers": [], - "cookies": [] - }, - "response": { - "status": 200, - "statusText": "", - "body": "data: {\"id\":\"chatcmpl-BgV4iBRXHwC4FfCTsuxjEOeI2v134\",\"object\":\"chat.completion.chunk\",\"created\":1749468928,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_07871e2ad8\",\"choices\":[{\"index\":0,\"delta\":{\"role\":\"assistant\",\"content\":null,\"tool_calls\":[{\"index\":0,\"id\":\"call_U727K44Sex4mfW2dD0wefqHI\",\"type\":\"function\",\"function\":{\"name\":\"json\",\"arguments\":\"\"}}],\"refusal\":null},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BgV4iBRXHwC4FfCTsuxjEOeI2v134\",\"object\":\"chat.completion.chunk\",\"created\":1749468928,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_07871e2ad8\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"{\\\"\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BgV4iBRXHwC4FfCTsuxjEOeI2v134\",\"object\":\"chat.completion.chunk\",\"created\":1749468928,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_07871e2ad8\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"operations\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BgV4iBRXHwC4FfCTsuxjEOeI2v134\",\"object\":\"chat.completion.chunk\",\"created\":1749468928,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_07871e2ad8\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"\\\":[\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BgV4iBRXHwC4FfCTsuxjEOeI2v134\",\"object\":\"chat.completion.chunk\",\"created\":1749468928,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_07871e2ad8\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"{\\\"\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BgV4iBRXHwC4FfCTsuxjEOeI2v134\",\"object\":\"chat.completion.chunk\",\"created\":1749468928,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_07871e2ad8\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"type\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BgV4iBRXHwC4FfCTsuxjEOeI2v134\",\"object\":\"chat.completion.chunk\",\"created\":1749468928,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_07871e2ad8\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"\\\":\\\"\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BgV4iBRXHwC4FfCTsuxjEOeI2v134\",\"object\":\"chat.completion.chunk\",\"created\":1749468928,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_07871e2ad8\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"update\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BgV4iBRXHwC4FfCTsuxjEOeI2v134\",\"object\":\"chat.completion.chunk\",\"created\":1749468928,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_07871e2ad8\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"\\\",\\\"\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BgV4iBRXHwC4FfCTsuxjEOeI2v134\",\"object\":\"chat.completion.chunk\",\"created\":1749468928,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_07871e2ad8\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"id\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BgV4iBRXHwC4FfCTsuxjEOeI2v134\",\"object\":\"chat.completion.chunk\",\"created\":1749468928,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_07871e2ad8\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"\\\":\\\"\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BgV4iBRXHwC4FfCTsuxjEOeI2v134\",\"object\":\"chat.completion.chunk\",\"created\":1749468928,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_07871e2ad8\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"ref\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BgV4iBRXHwC4FfCTsuxjEOeI2v134\",\"object\":\"chat.completion.chunk\",\"created\":1749468928,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_07871e2ad8\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"1\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BgV4iBRXHwC4FfCTsuxjEOeI2v134\",\"object\":\"chat.completion.chunk\",\"created\":1749468928,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_07871e2ad8\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"$\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BgV4iBRXHwC4FfCTsuxjEOeI2v134\",\"object\":\"chat.completion.chunk\",\"created\":1749468928,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_07871e2ad8\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"\\\",\\\"\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BgV4iBRXHwC4FfCTsuxjEOeI2v134\",\"object\":\"chat.completion.chunk\",\"created\":1749468928,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_07871e2ad8\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"block\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BgV4iBRXHwC4FfCTsuxjEOeI2v134\",\"object\":\"chat.completion.chunk\",\"created\":1749468928,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_07871e2ad8\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"\\\":{\\\"\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BgV4iBRXHwC4FfCTsuxjEOeI2v134\",\"object\":\"chat.completion.chunk\",\"created\":1749468928,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_07871e2ad8\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"type\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BgV4iBRXHwC4FfCTsuxjEOeI2v134\",\"object\":\"chat.completion.chunk\",\"created\":1749468928,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_07871e2ad8\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"\\\":\\\"\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BgV4iBRXHwC4FfCTsuxjEOeI2v134\",\"object\":\"chat.completion.chunk\",\"created\":1749468928,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_07871e2ad8\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"paragraph\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BgV4iBRXHwC4FfCTsuxjEOeI2v134\",\"object\":\"chat.completion.chunk\",\"created\":1749468928,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_07871e2ad8\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"\\\",\\\"\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BgV4iBRXHwC4FfCTsuxjEOeI2v134\",\"object\":\"chat.completion.chunk\",\"created\":1749468928,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_07871e2ad8\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"props\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BgV4iBRXHwC4FfCTsuxjEOeI2v134\",\"object\":\"chat.completion.chunk\",\"created\":1749468928,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_07871e2ad8\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"\\\":{\\\"\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BgV4iBRXHwC4FfCTsuxjEOeI2v134\",\"object\":\"chat.completion.chunk\",\"created\":1749468928,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_07871e2ad8\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"text\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BgV4iBRXHwC4FfCTsuxjEOeI2v134\",\"object\":\"chat.completion.chunk\",\"created\":1749468928,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_07871e2ad8\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"Color\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BgV4iBRXHwC4FfCTsuxjEOeI2v134\",\"object\":\"chat.completion.chunk\",\"created\":1749468928,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_07871e2ad8\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"\\\":\\\"\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BgV4iBRXHwC4FfCTsuxjEOeI2v134\",\"object\":\"chat.completion.chunk\",\"created\":1749468928,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_07871e2ad8\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"default\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BgV4iBRXHwC4FfCTsuxjEOeI2v134\",\"object\":\"chat.completion.chunk\",\"created\":1749468928,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_07871e2ad8\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"\\\",\\\"\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BgV4iBRXHwC4FfCTsuxjEOeI2v134\",\"object\":\"chat.completion.chunk\",\"created\":1749468928,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_07871e2ad8\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"background\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BgV4iBRXHwC4FfCTsuxjEOeI2v134\",\"object\":\"chat.completion.chunk\",\"created\":1749468928,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_07871e2ad8\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"Color\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BgV4iBRXHwC4FfCTsuxjEOeI2v134\",\"object\":\"chat.completion.chunk\",\"created\":1749468928,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_07871e2ad8\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"\\\":\\\"\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BgV4iBRXHwC4FfCTsuxjEOeI2v134\",\"object\":\"chat.completion.chunk\",\"created\":1749468928,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_07871e2ad8\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"default\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BgV4iBRXHwC4FfCTsuxjEOeI2v134\",\"object\":\"chat.completion.chunk\",\"created\":1749468928,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_07871e2ad8\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"\\\",\\\"\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BgV4iBRXHwC4FfCTsuxjEOeI2v134\",\"object\":\"chat.completion.chunk\",\"created\":1749468928,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_07871e2ad8\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"text\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BgV4iBRXHwC4FfCTsuxjEOeI2v134\",\"object\":\"chat.completion.chunk\",\"created\":1749468928,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_07871e2ad8\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"Alignment\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BgV4iBRXHwC4FfCTsuxjEOeI2v134\",\"object\":\"chat.completion.chunk\",\"created\":1749468928,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_07871e2ad8\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"\\\":\\\"\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BgV4iBRXHwC4FfCTsuxjEOeI2v134\",\"object\":\"chat.completion.chunk\",\"created\":1749468928,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_07871e2ad8\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"right\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BgV4iBRXHwC4FfCTsuxjEOeI2v134\",\"object\":\"chat.completion.chunk\",\"created\":1749468928,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_07871e2ad8\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"\\\"}\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BgV4iBRXHwC4FfCTsuxjEOeI2v134\",\"object\":\"chat.completion.chunk\",\"created\":1749468928,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_07871e2ad8\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\",\\\"\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BgV4iBRXHwC4FfCTsuxjEOeI2v134\",\"object\":\"chat.completion.chunk\",\"created\":1749468928,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_07871e2ad8\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"content\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BgV4iBRXHwC4FfCTsuxjEOeI2v134\",\"object\":\"chat.completion.chunk\",\"created\":1749468928,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_07871e2ad8\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"\\\":[\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BgV4iBRXHwC4FfCTsuxjEOeI2v134\",\"object\":\"chat.completion.chunk\",\"created\":1749468928,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_07871e2ad8\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"{\\\"\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BgV4iBRXHwC4FfCTsuxjEOeI2v134\",\"object\":\"chat.completion.chunk\",\"created\":1749468928,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_07871e2ad8\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"type\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BgV4iBRXHwC4FfCTsuxjEOeI2v134\",\"object\":\"chat.completion.chunk\",\"created\":1749468928,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_07871e2ad8\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"\\\":\\\"\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BgV4iBRXHwC4FfCTsuxjEOeI2v134\",\"object\":\"chat.completion.chunk\",\"created\":1749468928,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_07871e2ad8\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"text\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BgV4iBRXHwC4FfCTsuxjEOeI2v134\",\"object\":\"chat.completion.chunk\",\"created\":1749468928,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_07871e2ad8\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"\\\",\\\"\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BgV4iBRXHwC4FfCTsuxjEOeI2v134\",\"object\":\"chat.completion.chunk\",\"created\":1749468928,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_07871e2ad8\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"text\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BgV4iBRXHwC4FfCTsuxjEOeI2v134\",\"object\":\"chat.completion.chunk\",\"created\":1749468928,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_07871e2ad8\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"\\\":\\\"\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BgV4iBRXHwC4FfCTsuxjEOeI2v134\",\"object\":\"chat.completion.chunk\",\"created\":1749468928,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_07871e2ad8\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"What's\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BgV4iBRXHwC4FfCTsuxjEOeI2v134\",\"object\":\"chat.completion.chunk\",\"created\":1749468928,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_07871e2ad8\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\" up\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BgV4iBRXHwC4FfCTsuxjEOeI2v134\",\"object\":\"chat.completion.chunk\",\"created\":1749468928,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_07871e2ad8\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\",\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BgV4iBRXHwC4FfCTsuxjEOeI2v134\",\"object\":\"chat.completion.chunk\",\"created\":1749468928,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_07871e2ad8\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\" world\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BgV4iBRXHwC4FfCTsuxjEOeI2v134\",\"object\":\"chat.completion.chunk\",\"created\":1749468928,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_07871e2ad8\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"!\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BgV4iBRXHwC4FfCTsuxjEOeI2v134\",\"object\":\"chat.completion.chunk\",\"created\":1749468928,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_07871e2ad8\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"\\\",\\\"\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BgV4iBRXHwC4FfCTsuxjEOeI2v134\",\"object\":\"chat.completion.chunk\",\"created\":1749468928,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_07871e2ad8\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"styles\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BgV4iBRXHwC4FfCTsuxjEOeI2v134\",\"object\":\"chat.completion.chunk\",\"created\":1749468928,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_07871e2ad8\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"\\\":\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BgV4iBRXHwC4FfCTsuxjEOeI2v134\",\"object\":\"chat.completion.chunk\",\"created\":1749468928,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_07871e2ad8\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"{\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BgV4iBRXHwC4FfCTsuxjEOeI2v134\",\"object\":\"chat.completion.chunk\",\"created\":1749468928,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_07871e2ad8\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"}}\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BgV4iBRXHwC4FfCTsuxjEOeI2v134\",\"object\":\"chat.completion.chunk\",\"created\":1749468928,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_07871e2ad8\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"]\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BgV4iBRXHwC4FfCTsuxjEOeI2v134\",\"object\":\"chat.completion.chunk\",\"created\":1749468928,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_07871e2ad8\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"}}\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BgV4iBRXHwC4FfCTsuxjEOeI2v134\",\"object\":\"chat.completion.chunk\",\"created\":1749468928,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_07871e2ad8\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"]}\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BgV4iBRXHwC4FfCTsuxjEOeI2v134\",\"object\":\"chat.completion.chunk\",\"created\":1749468928,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_07871e2ad8\",\"choices\":[{\"index\":0,\"delta\":{},\"logprobs\":null,\"finish_reason\":\"stop\"}]}\n\ndata: [DONE]\n\n", - "headers": [] - } -} \ No newline at end of file diff --git a/packages/xl-ai/src/api/formats/json/__snapshots__/json.test.ts/Update/__msw_snapshots__/openai.chat/gpt-4o-2024-08-06 (streaming)/update block prop and content_1_a4ddde00c3875d2cf2396b340029cbdd.json b/packages/xl-ai/src/api/formats/json/__snapshots__/json.test.ts/Update/__msw_snapshots__/openai.chat/gpt-4o-2024-08-06 (streaming)/update block prop and content_1_a4ddde00c3875d2cf2396b340029cbdd.json new file mode 100644 index 0000000000..1e734ad627 --- /dev/null +++ b/packages/xl-ai/src/api/formats/json/__snapshots__/json.test.ts/Update/__msw_snapshots__/openai.chat/gpt-4o-2024-08-06 (streaming)/update block prop and content_1_a4ddde00c3875d2cf2396b340029cbdd.json @@ -0,0 +1,15 @@ +{ + "request": { + "method": "POST", + "url": "https://localhost:3000/ai?provider=openai&url=https%3A%2F%2Fapi.openai.com%2Fv1%2Fchat%2Fcompletions", + "body": "{\"model\":\"gpt-4o-2024-08-06\",\"temperature\":0,\"messages\":[{\"role\":\"system\",\"content\":\"You're manipulating a text document using JSON blocks. \\n Make sure to follow the json schema provided. When referencing ids they MUST be EXACTLY the same (including the trailing $). \\n This is the document as an array of JSON blocks (the cursor is BETWEEN two blocks as indicated by cursor: true):\"},{\"role\":\"system\",\"content\":\"[{\\\"id\\\":\\\"ref1$\\\",\\\"block\\\":{\\\"id\\\":\\\"ref1\\\",\\\"type\\\":\\\"paragraph\\\",\\\"props\\\":{\\\"textColor\\\":\\\"default\\\",\\\"backgroundColor\\\":\\\"default\\\",\\\"textAlignment\\\":\\\"left\\\"},\\\"content\\\":[{\\\"type\\\":\\\"text\\\",\\\"text\\\":\\\"Hello, world!\\\",\\\"styles\\\":{}}]}},{\\\"cursor\\\":true},{\\\"id\\\":\\\"ref2$\\\",\\\"block\\\":{\\\"id\\\":\\\"ref2\\\",\\\"type\\\":\\\"paragraph\\\",\\\"props\\\":{\\\"textColor\\\":\\\"default\\\",\\\"backgroundColor\\\":\\\"default\\\",\\\"textAlignment\\\":\\\"left\\\"},\\\"content\\\":[{\\\"type\\\":\\\"text\\\",\\\"text\\\":\\\"Hello, \\\",\\\"styles\\\":{}},{\\\"type\\\":\\\"mention\\\",\\\"props\\\":{\\\"user\\\":\\\"John Doe\\\"}},{\\\"type\\\":\\\"text\\\",\\\"text\\\":\\\"! \\\",\\\"styles\\\":{}},{\\\"type\\\":\\\"text\\\",\\\"text\\\":\\\"How are you doing?\\\",\\\"styles\\\":{\\\"bold\\\":true}},{\\\"type\\\":\\\"text\\\",\\\"text\\\":\\\" \\\",\\\"styles\\\":{}},{\\\"type\\\":\\\"text\\\",\\\"text\\\":\\\"This text is blue!\\\",\\\"styles\\\":{\\\"textColor\\\":\\\"blue\\\"}}]}},{\\\"id\\\":\\\"ref3$\\\",\\\"block\\\":{\\\"id\\\":\\\"ref3\\\",\\\"type\\\":\\\"paragraph\\\",\\\"props\\\":{\\\"textColor\\\":\\\"default\\\",\\\"backgroundColor\\\":\\\"default\\\",\\\"textAlignment\\\":\\\"left\\\"},\\\"content\\\":[{\\\"type\\\":\\\"text\\\",\\\"text\\\":\\\"Hello, world! \\\",\\\"styles\\\":{}},{\\\"type\\\":\\\"text\\\",\\\"text\\\":\\\"Bold text. \\\",\\\"styles\\\":{\\\"bold\\\":true}},{\\\"type\\\":\\\"link\\\",\\\"href\\\":\\\"https://www.google.com\\\",\\\"content\\\":[{\\\"type\\\":\\\"text\\\",\\\"text\\\":\\\"Link.\\\",\\\"styles\\\":{}}]}]}}]\"},{\"role\":\"system\",\"content\":\"The user asks you to do the following:\"},{\"role\":\"user\",\"content\":\"make the first paragraph right aligned and update the content to 'What's up, world!'\"},{\"role\":\"system\",\"content\":\"First, determine what part of the document the user is talking about. You SHOULD probably take cursor info into account if needed.\\n EXAMPLE: if user says \\\"below\\\" (without pointing to a specific part of the document) he / she probably indicates the block(s) after the cursor. \\n EXAMPLE: If you want to insert content AT the cursor position (UNLESS indicated otherwise by the user), then you need `referenceId` to point to the block before the cursor with position `after` (or block below and `before`).\\n \\n Prefer updating existing blocks over removing and adding (but this also depends on the user's question).\"}],\"tool_choice\":{\"type\":\"function\",\"function\":{\"name\":\"json\"}},\"tools\":[{\"type\":\"function\",\"function\":{\"name\":\"json\",\"description\":\"Respond with a JSON object.\",\"parameters\":{\"type\":\"object\",\"properties\":{\"operations\":{\"type\":\"array\",\"items\":{\"anyOf\":[{\"type\":\"object\",\"description\":\"Update a block, the new block will replace the existing block.\",\"properties\":{\"type\":{\"type\":\"string\",\"enum\":[\"update\"]},\"id\":{\"type\":\"string\",\"description\":\"id of block to update\"},\"block\":{\"$ref\":\"#/$defs/block\"}},\"required\":[\"type\",\"id\",\"block\"],\"additionalProperties\":false},{\"type\":\"object\",\"description\":\"Insert new blocks\",\"properties\":{\"type\":{\"type\":\"string\",\"enum\":[\"add\"]},\"referenceId\":{\"type\":\"string\",\"description\":\"MUST be an id of a block in the document\"},\"position\":{\"type\":\"string\",\"enum\":[\"before\",\"after\"],\"description\":\"`after` to add blocks AFTER (below) the block with `referenceId`, `before` to add the block BEFORE (above)\"},\"blocks\":{\"items\":{\"$ref\":\"#/$defs/block\"},\"type\":\"array\"}},\"required\":[\"type\",\"referenceId\",\"position\",\"blocks\"],\"additionalProperties\":false},{\"type\":\"object\",\"description\":\"Delete a block\",\"properties\":{\"type\":{\"type\":\"string\",\"enum\":[\"delete\"]},\"id\":{\"type\":\"string\",\"description\":\"id of block to delete\"}},\"required\":[\"type\",\"id\"],\"additionalProperties\":false}]}}},\"additionalProperties\":false,\"required\":[\"operations\"],\"$defs\":{\"styles\":{\"type\":\"object\",\"properties\":{\"bold\":{\"type\":\"boolean\"},\"italic\":{\"type\":\"boolean\"},\"underline\":{\"type\":\"boolean\"},\"strike\":{\"type\":\"boolean\"},\"code\":{\"type\":\"boolean\"},\"textColor\":{\"type\":\"string\"},\"backgroundColor\":{\"type\":\"string\"}},\"additionalProperties\":false},\"styledtext\":{\"type\":\"object\",\"properties\":{\"type\":{\"type\":\"string\",\"enum\":[\"text\"]},\"text\":{\"type\":\"string\"},\"styles\":{\"$ref\":\"#/$defs/styles\"}},\"additionalProperties\":false,\"required\":[\"type\",\"text\"]},\"inlinecontent\":{\"type\":\"array\",\"items\":{\"anyOf\":[{\"type\":\"object\",\"properties\":{\"type\":{\"type\":\"string\",\"enum\":[\"mention\"]},\"props\":{\"type\":\"object\",\"properties\":{\"user\":{\"type\":\"string\"}},\"additionalProperties\":false}},\"additionalProperties\":false,\"required\":[\"type\"]},{\"$ref\":\"#/$defs/styledtext\"},{\"type\":\"object\",\"properties\":{\"type\":{\"type\":\"string\",\"enum\":[\"link\"]},\"content\":{\"type\":\"array\",\"items\":{\"$ref\":\"#/$defs/styledtext\"}},\"href\":{\"type\":\"string\"}},\"additionalProperties\":false,\"required\":[\"type\",\"href\",\"content\"]}]}},\"block\":{\"anyOf\":[{\"type\":\"object\",\"properties\":{\"type\":{\"type\":\"string\",\"enum\":[\"paragraph\",\"quote\",\"toggleListItem\",\"bulletListItem\",\"numberedListItem\"]},\"content\":{\"$ref\":\"#/$defs/inlinecontent\"},\"props\":{\"type\":\"object\",\"properties\":{},\"additionalProperties\":false}},\"additionalProperties\":false,\"required\":[\"type\"]},{\"type\":\"object\",\"properties\":{\"type\":{\"type\":\"string\",\"enum\":[\"heading\"]},\"content\":{\"$ref\":\"#/$defs/inlinecontent\"},\"props\":{\"type\":\"object\",\"properties\":{\"level\":{\"type\":\"number\",\"enum\":[1,2,3]},\"isTogglable\":{\"type\":\"boolean\"}},\"additionalProperties\":false}},\"additionalProperties\":false,\"required\":[\"type\"]},{\"type\":\"object\",\"properties\":{\"type\":{\"type\":\"string\",\"enum\":[\"codeBlock\"]},\"content\":{\"$ref\":\"#/$defs/inlinecontent\"},\"props\":{\"type\":\"object\",\"properties\":{\"language\":{\"type\":\"string\"}},\"additionalProperties\":false}},\"additionalProperties\":false,\"required\":[\"type\"]},{\"type\":\"object\",\"properties\":{\"type\":{\"type\":\"string\",\"enum\":[\"checkListItem\"]},\"content\":{\"$ref\":\"#/$defs/inlinecontent\"},\"props\":{\"type\":\"object\",\"properties\":{\"checked\":{\"type\":\"boolean\"}},\"additionalProperties\":false}},\"additionalProperties\":false,\"required\":[\"type\"]},{\"type\":\"object\",\"properties\":{\"type\":{\"type\":\"string\",\"enum\":[\"table\"]},\"content\":{\"type\":\"object\",\"properties\":{}},\"props\":{\"type\":\"object\",\"properties\":{},\"additionalProperties\":false}},\"additionalProperties\":false,\"required\":[\"type\"]}]}}}}}],\"stream\":true}", + "headers": [], + "cookies": [] + }, + "response": { + "status": 200, + "statusText": "", + "body": "data: {\"id\":\"chatcmpl-BhXn4kTvEvNE39E687cz1NVF3yBVl\",\"object\":\"chat.completion.chunk\",\"created\":1749717694,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_a288987b44\",\"choices\":[{\"index\":0,\"delta\":{\"role\":\"assistant\",\"content\":null,\"tool_calls\":[{\"index\":0,\"id\":\"call_ZZEERcnwLOA8IaDhuDt78wVB\",\"type\":\"function\",\"function\":{\"name\":\"json\",\"arguments\":\"\"}}],\"refusal\":null},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BhXn4kTvEvNE39E687cz1NVF3yBVl\",\"object\":\"chat.completion.chunk\",\"created\":1749717694,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_a288987b44\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"{\\\"\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BhXn4kTvEvNE39E687cz1NVF3yBVl\",\"object\":\"chat.completion.chunk\",\"created\":1749717694,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_a288987b44\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"operations\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BhXn4kTvEvNE39E687cz1NVF3yBVl\",\"object\":\"chat.completion.chunk\",\"created\":1749717694,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_a288987b44\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"\\\":[\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BhXn4kTvEvNE39E687cz1NVF3yBVl\",\"object\":\"chat.completion.chunk\",\"created\":1749717694,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_a288987b44\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"{\\\"\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BhXn4kTvEvNE39E687cz1NVF3yBVl\",\"object\":\"chat.completion.chunk\",\"created\":1749717694,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_a288987b44\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"type\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BhXn4kTvEvNE39E687cz1NVF3yBVl\",\"object\":\"chat.completion.chunk\",\"created\":1749717694,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_a288987b44\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"\\\":\\\"\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BhXn4kTvEvNE39E687cz1NVF3yBVl\",\"object\":\"chat.completion.chunk\",\"created\":1749717694,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_a288987b44\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"update\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BhXn4kTvEvNE39E687cz1NVF3yBVl\",\"object\":\"chat.completion.chunk\",\"created\":1749717694,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_a288987b44\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"\\\",\\\"\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BhXn4kTvEvNE39E687cz1NVF3yBVl\",\"object\":\"chat.completion.chunk\",\"created\":1749717694,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_a288987b44\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"id\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BhXn4kTvEvNE39E687cz1NVF3yBVl\",\"object\":\"chat.completion.chunk\",\"created\":1749717694,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_a288987b44\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"\\\":\\\"\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BhXn4kTvEvNE39E687cz1NVF3yBVl\",\"object\":\"chat.completion.chunk\",\"created\":1749717694,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_a288987b44\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"ref\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BhXn4kTvEvNE39E687cz1NVF3yBVl\",\"object\":\"chat.completion.chunk\",\"created\":1749717694,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_a288987b44\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"1\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BhXn4kTvEvNE39E687cz1NVF3yBVl\",\"object\":\"chat.completion.chunk\",\"created\":1749717694,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_a288987b44\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"$\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BhXn4kTvEvNE39E687cz1NVF3yBVl\",\"object\":\"chat.completion.chunk\",\"created\":1749717694,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_a288987b44\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"\\\",\\\"\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BhXn4kTvEvNE39E687cz1NVF3yBVl\",\"object\":\"chat.completion.chunk\",\"created\":1749717694,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_a288987b44\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"block\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BhXn4kTvEvNE39E687cz1NVF3yBVl\",\"object\":\"chat.completion.chunk\",\"created\":1749717694,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_a288987b44\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"\\\":{\\\"\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BhXn4kTvEvNE39E687cz1NVF3yBVl\",\"object\":\"chat.completion.chunk\",\"created\":1749717694,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_a288987b44\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"type\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BhXn4kTvEvNE39E687cz1NVF3yBVl\",\"object\":\"chat.completion.chunk\",\"created\":1749717694,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_a288987b44\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"\\\":\\\"\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BhXn4kTvEvNE39E687cz1NVF3yBVl\",\"object\":\"chat.completion.chunk\",\"created\":1749717694,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_a288987b44\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"paragraph\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BhXn4kTvEvNE39E687cz1NVF3yBVl\",\"object\":\"chat.completion.chunk\",\"created\":1749717694,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_a288987b44\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"\\\",\\\"\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BhXn4kTvEvNE39E687cz1NVF3yBVl\",\"object\":\"chat.completion.chunk\",\"created\":1749717694,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_a288987b44\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"props\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BhXn4kTvEvNE39E687cz1NVF3yBVl\",\"object\":\"chat.completion.chunk\",\"created\":1749717694,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_a288987b44\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"\\\":{\\\"\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BhXn4kTvEvNE39E687cz1NVF3yBVl\",\"object\":\"chat.completion.chunk\",\"created\":1749717694,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_a288987b44\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"text\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BhXn4kTvEvNE39E687cz1NVF3yBVl\",\"object\":\"chat.completion.chunk\",\"created\":1749717694,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_a288987b44\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"Alignment\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BhXn4kTvEvNE39E687cz1NVF3yBVl\",\"object\":\"chat.completion.chunk\",\"created\":1749717694,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_a288987b44\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"\\\":\\\"\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BhXn4kTvEvNE39E687cz1NVF3yBVl\",\"object\":\"chat.completion.chunk\",\"created\":1749717694,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_a288987b44\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"right\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BhXn4kTvEvNE39E687cz1NVF3yBVl\",\"object\":\"chat.completion.chunk\",\"created\":1749717694,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_a288987b44\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"\\\"}\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BhXn4kTvEvNE39E687cz1NVF3yBVl\",\"object\":\"chat.completion.chunk\",\"created\":1749717694,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_a288987b44\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\",\\\"\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BhXn4kTvEvNE39E687cz1NVF3yBVl\",\"object\":\"chat.completion.chunk\",\"created\":1749717694,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_a288987b44\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"content\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BhXn4kTvEvNE39E687cz1NVF3yBVl\",\"object\":\"chat.completion.chunk\",\"created\":1749717694,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_a288987b44\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"\\\":[\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BhXn4kTvEvNE39E687cz1NVF3yBVl\",\"object\":\"chat.completion.chunk\",\"created\":1749717694,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_a288987b44\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"{\\\"\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BhXn4kTvEvNE39E687cz1NVF3yBVl\",\"object\":\"chat.completion.chunk\",\"created\":1749717694,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_a288987b44\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"type\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BhXn4kTvEvNE39E687cz1NVF3yBVl\",\"object\":\"chat.completion.chunk\",\"created\":1749717694,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_a288987b44\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"\\\":\\\"\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BhXn4kTvEvNE39E687cz1NVF3yBVl\",\"object\":\"chat.completion.chunk\",\"created\":1749717694,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_a288987b44\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"text\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BhXn4kTvEvNE39E687cz1NVF3yBVl\",\"object\":\"chat.completion.chunk\",\"created\":1749717694,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_a288987b44\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"\\\",\\\"\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BhXn4kTvEvNE39E687cz1NVF3yBVl\",\"object\":\"chat.completion.chunk\",\"created\":1749717694,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_a288987b44\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"text\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BhXn4kTvEvNE39E687cz1NVF3yBVl\",\"object\":\"chat.completion.chunk\",\"created\":1749717694,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_a288987b44\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"\\\":\\\"\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BhXn4kTvEvNE39E687cz1NVF3yBVl\",\"object\":\"chat.completion.chunk\",\"created\":1749717694,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_a288987b44\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"What's\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BhXn4kTvEvNE39E687cz1NVF3yBVl\",\"object\":\"chat.completion.chunk\",\"created\":1749717694,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_a288987b44\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\" up\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BhXn4kTvEvNE39E687cz1NVF3yBVl\",\"object\":\"chat.completion.chunk\",\"created\":1749717694,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_a288987b44\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\",\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BhXn4kTvEvNE39E687cz1NVF3yBVl\",\"object\":\"chat.completion.chunk\",\"created\":1749717694,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_a288987b44\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\" world\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BhXn4kTvEvNE39E687cz1NVF3yBVl\",\"object\":\"chat.completion.chunk\",\"created\":1749717694,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_a288987b44\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"!\\\"\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BhXn4kTvEvNE39E687cz1NVF3yBVl\",\"object\":\"chat.completion.chunk\",\"created\":1749717694,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_a288987b44\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"}]\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BhXn4kTvEvNE39E687cz1NVF3yBVl\",\"object\":\"chat.completion.chunk\",\"created\":1749717694,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_a288987b44\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"}}\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BhXn4kTvEvNE39E687cz1NVF3yBVl\",\"object\":\"chat.completion.chunk\",\"created\":1749717694,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_a288987b44\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"]}\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BhXn4kTvEvNE39E687cz1NVF3yBVl\",\"object\":\"chat.completion.chunk\",\"created\":1749717694,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_a288987b44\",\"choices\":[{\"index\":0,\"delta\":{},\"logprobs\":null,\"finish_reason\":\"stop\"}]}\n\ndata: [DONE]\n\n", + "headers": [] + } +} \ No newline at end of file diff --git a/packages/xl-ai/src/api/formats/json/__snapshots__/json.test.ts/Update/__msw_snapshots__/openai.chat/gpt-4o-2024-08-06 (streaming)/update block prop_1_ee851cec429cc29d5405179c1adb8b21.json b/packages/xl-ai/src/api/formats/json/__snapshots__/json.test.ts/Update/__msw_snapshots__/openai.chat/gpt-4o-2024-08-06 (streaming)/update block prop_1_ae61cf288535fdbe1bbb5dfe30414566.json similarity index 51% rename from packages/xl-ai/src/api/formats/json/__snapshots__/json.test.ts/Update/__msw_snapshots__/openai.chat/gpt-4o-2024-08-06 (streaming)/update block prop_1_ee851cec429cc29d5405179c1adb8b21.json rename to packages/xl-ai/src/api/formats/json/__snapshots__/json.test.ts/Update/__msw_snapshots__/openai.chat/gpt-4o-2024-08-06 (streaming)/update block prop_1_ae61cf288535fdbe1bbb5dfe30414566.json index f265054fcb..54e08ff646 100644 --- a/packages/xl-ai/src/api/formats/json/__snapshots__/json.test.ts/Update/__msw_snapshots__/openai.chat/gpt-4o-2024-08-06 (streaming)/update block prop_1_ee851cec429cc29d5405179c1adb8b21.json +++ b/packages/xl-ai/src/api/formats/json/__snapshots__/json.test.ts/Update/__msw_snapshots__/openai.chat/gpt-4o-2024-08-06 (streaming)/update block prop_1_ae61cf288535fdbe1bbb5dfe30414566.json @@ -2,14 +2,14 @@ "request": { "method": "POST", "url": "https://localhost:3000/ai?provider=openai&url=https%3A%2F%2Fapi.openai.com%2Fv1%2Fchat%2Fcompletions", - "body": "{\"model\":\"gpt-4o-2024-08-06\",\"temperature\":0,\"messages\":[{\"role\":\"system\",\"content\":\"You're manipulating a text document using JSON blocks. \\n Make sure to follow the json schema provided. When referencing ids they MUST be EXACTLY the same (including the trailing $). \\n This is the document as an array of JSON blocks (the cursor is BETWEEN two blocks as indicated by cursor: true):\"},{\"role\":\"system\",\"content\":\"[{\\\"id\\\":\\\"ref1$\\\",\\\"block\\\":{\\\"id\\\":\\\"ref1\\\",\\\"type\\\":\\\"paragraph\\\",\\\"props\\\":{\\\"textColor\\\":\\\"default\\\",\\\"backgroundColor\\\":\\\"default\\\",\\\"textAlignment\\\":\\\"left\\\"},\\\"content\\\":[{\\\"type\\\":\\\"text\\\",\\\"text\\\":\\\"Hello, world!\\\",\\\"styles\\\":{}}]}},{\\\"cursor\\\":true},{\\\"id\\\":\\\"ref2$\\\",\\\"block\\\":{\\\"id\\\":\\\"ref2\\\",\\\"type\\\":\\\"paragraph\\\",\\\"props\\\":{\\\"textColor\\\":\\\"default\\\",\\\"backgroundColor\\\":\\\"default\\\",\\\"textAlignment\\\":\\\"left\\\"},\\\"content\\\":[{\\\"type\\\":\\\"text\\\",\\\"text\\\":\\\"Hello, \\\",\\\"styles\\\":{}},{\\\"type\\\":\\\"mention\\\",\\\"props\\\":{\\\"user\\\":\\\"John Doe\\\"}},{\\\"type\\\":\\\"text\\\",\\\"text\\\":\\\"! \\\",\\\"styles\\\":{}},{\\\"type\\\":\\\"text\\\",\\\"text\\\":\\\"How are you doing?\\\",\\\"styles\\\":{\\\"bold\\\":true}},{\\\"type\\\":\\\"text\\\",\\\"text\\\":\\\" \\\",\\\"styles\\\":{}},{\\\"type\\\":\\\"text\\\",\\\"text\\\":\\\"This text is blue!\\\",\\\"styles\\\":{\\\"textColor\\\":\\\"blue\\\"}}]}},{\\\"id\\\":\\\"ref3$\\\",\\\"block\\\":{\\\"id\\\":\\\"ref3\\\",\\\"type\\\":\\\"paragraph\\\",\\\"props\\\":{\\\"textColor\\\":\\\"default\\\",\\\"backgroundColor\\\":\\\"default\\\",\\\"textAlignment\\\":\\\"left\\\"},\\\"content\\\":[{\\\"type\\\":\\\"text\\\",\\\"text\\\":\\\"Hello, world! \\\",\\\"styles\\\":{}},{\\\"type\\\":\\\"text\\\",\\\"text\\\":\\\"Bold text. \\\",\\\"styles\\\":{\\\"bold\\\":true}},{\\\"type\\\":\\\"link\\\",\\\"href\\\":\\\"https://www.google.com\\\",\\\"content\\\":[{\\\"type\\\":\\\"text\\\",\\\"text\\\":\\\"Link.\\\",\\\"styles\\\":{}}]}]}}]\"},{\"role\":\"system\",\"content\":\"The user asks you to do the following:\"},{\"role\":\"user\",\"content\":\"make the first paragraph right aligned\"},{\"role\":\"system\",\"content\":\"First, determine what part of the document the user is talking about. You SHOULD probably take cursor info into account if needed.\\n EXAMPLE: if user says \\\"below\\\" (without pointing to a specific part of the document) he / she probably indicates the block(s) after the cursor. \\n EXAMPLE: If you want to insert content AT the cursor position (UNLESS indicated otherwise by the user), then you need `referenceId` to point to the block before the cursor with position `after` (or block below and `before`).\\n \\n Prefer updating existing blocks over removing and adding (but this also depends on the user's question).\"}],\"tool_choice\":{\"type\":\"function\",\"function\":{\"name\":\"json\"}},\"tools\":[{\"type\":\"function\",\"function\":{\"name\":\"json\",\"description\":\"Respond with a JSON object.\",\"parameters\":{\"type\":\"object\",\"properties\":{\"operations\":{\"type\":\"array\",\"items\":{\"anyOf\":[{\"type\":\"object\",\"description\":\"Update a block, the new block will replace the existing block.\",\"properties\":{\"type\":{\"type\":\"string\",\"enum\":[\"update\"]},\"id\":{\"type\":\"string\",\"description\":\"id of block to update\"},\"block\":{\"$ref\":\"#/$defs/block\"}},\"required\":[\"type\",\"id\",\"block\"],\"additionalProperties\":false},{\"type\":\"object\",\"description\":\"Insert new blocks\",\"properties\":{\"type\":{\"type\":\"string\",\"enum\":[\"add\"]},\"referenceId\":{\"type\":\"string\",\"description\":\"MUST be an id of a block in the document\"},\"position\":{\"type\":\"string\",\"enum\":[\"before\",\"after\"],\"description\":\"`after` to add blocks AFTER (below) the block with `referenceId`, `before` to add the block BEFORE (above)\"},\"blocks\":{\"items\":{\"$ref\":\"#/$defs/block\"},\"type\":\"array\"}},\"required\":[\"type\",\"referenceId\",\"position\",\"blocks\"],\"additionalProperties\":false},{\"type\":\"object\",\"description\":\"Delete a block\",\"properties\":{\"type\":{\"type\":\"string\",\"enum\":[\"delete\"]},\"id\":{\"type\":\"string\",\"description\":\"id of block to delete\"}},\"required\":[\"type\",\"id\"],\"additionalProperties\":false}]}}},\"additionalProperties\":false,\"required\":[\"operations\"],\"$defs\":{\"styles\":{\"type\":\"object\",\"properties\":{\"bold\":{\"type\":\"boolean\"},\"italic\":{\"type\":\"boolean\"},\"underline\":{\"type\":\"boolean\"},\"strike\":{\"type\":\"boolean\"},\"code\":{\"type\":\"boolean\"},\"textColor\":{\"type\":\"string\"},\"backgroundColor\":{\"type\":\"string\"}},\"additionalProperties\":false},\"styledtext\":{\"type\":\"object\",\"properties\":{\"type\":{\"type\":\"string\",\"enum\":[\"text\"]},\"text\":{\"type\":\"string\"},\"styles\":{\"$ref\":\"#/$defs/styles\"}},\"additionalProperties\":false,\"required\":[\"type\",\"text\"]},\"inlinecontent\":{\"type\":\"array\",\"items\":{\"anyOf\":[{\"type\":\"object\",\"properties\":{\"type\":{\"type\":\"string\",\"enum\":[\"mention\"]},\"props\":{\"type\":\"object\",\"properties\":{\"user\":{\"type\":\"string\"}},\"additionalProperties\":false}},\"additionalProperties\":false,\"required\":[\"type\"]},{\"$ref\":\"#/$defs/styledtext\"},{\"type\":\"object\",\"properties\":{\"type\":{\"type\":\"string\",\"enum\":[\"link\"]},\"content\":{\"type\":\"array\",\"items\":{\"$ref\":\"#/$defs/styledtext\"}},\"href\":{\"type\":\"string\"}},\"additionalProperties\":false,\"required\":[\"type\",\"href\",\"content\"]}]}},\"block\":{\"anyOf\":[{\"type\":\"object\",\"properties\":{\"type\":{\"type\":\"string\",\"enum\":[\"paragraph\",\"quote\",\"bulletListItem\",\"numberedListItem\"]},\"content\":{\"$ref\":\"#/$defs/inlinecontent\"},\"props\":{\"type\":\"object\",\"properties\":{},\"additionalProperties\":false}},\"additionalProperties\":false,\"required\":[\"type\"]},{\"type\":\"object\",\"properties\":{\"type\":{\"type\":\"string\",\"enum\":[\"heading\"]},\"content\":{\"$ref\":\"#/$defs/inlinecontent\"},\"props\":{\"type\":\"object\",\"properties\":{\"level\":{\"type\":\"number\",\"enum\":[1,2,3]}},\"additionalProperties\":false}},\"additionalProperties\":false,\"required\":[\"type\"]},{\"type\":\"object\",\"properties\":{\"type\":{\"type\":\"string\",\"enum\":[\"codeBlock\"]},\"content\":{\"$ref\":\"#/$defs/inlinecontent\"},\"props\":{\"type\":\"object\",\"properties\":{\"language\":{\"type\":\"string\"}},\"additionalProperties\":false}},\"additionalProperties\":false,\"required\":[\"type\"]},{\"type\":\"object\",\"properties\":{\"type\":{\"type\":\"string\",\"enum\":[\"checkListItem\"]},\"content\":{\"$ref\":\"#/$defs/inlinecontent\"},\"props\":{\"type\":\"object\",\"properties\":{\"checked\":{\"type\":\"boolean\"}},\"additionalProperties\":false}},\"additionalProperties\":false,\"required\":[\"type\"]},{\"type\":\"object\",\"properties\":{\"type\":{\"type\":\"string\",\"enum\":[\"table\"]},\"content\":{\"type\":\"object\",\"properties\":{}},\"props\":{\"type\":\"object\",\"properties\":{},\"additionalProperties\":false}},\"additionalProperties\":false,\"required\":[\"type\"]}]}}}}}],\"stream\":true}", + "body": "{\"model\":\"gpt-4o-2024-08-06\",\"temperature\":0,\"messages\":[{\"role\":\"system\",\"content\":\"You're manipulating a text document using JSON blocks. \\n Make sure to follow the json schema provided. When referencing ids they MUST be EXACTLY the same (including the trailing $). \\n This is the document as an array of JSON blocks (the cursor is BETWEEN two blocks as indicated by cursor: true):\"},{\"role\":\"system\",\"content\":\"[{\\\"id\\\":\\\"ref1$\\\",\\\"block\\\":{\\\"id\\\":\\\"ref1\\\",\\\"type\\\":\\\"paragraph\\\",\\\"props\\\":{\\\"textColor\\\":\\\"default\\\",\\\"backgroundColor\\\":\\\"default\\\",\\\"textAlignment\\\":\\\"left\\\"},\\\"content\\\":[{\\\"type\\\":\\\"text\\\",\\\"text\\\":\\\"Hello, world!\\\",\\\"styles\\\":{}}]}},{\\\"cursor\\\":true},{\\\"id\\\":\\\"ref2$\\\",\\\"block\\\":{\\\"id\\\":\\\"ref2\\\",\\\"type\\\":\\\"paragraph\\\",\\\"props\\\":{\\\"textColor\\\":\\\"default\\\",\\\"backgroundColor\\\":\\\"default\\\",\\\"textAlignment\\\":\\\"left\\\"},\\\"content\\\":[{\\\"type\\\":\\\"text\\\",\\\"text\\\":\\\"Hello, \\\",\\\"styles\\\":{}},{\\\"type\\\":\\\"mention\\\",\\\"props\\\":{\\\"user\\\":\\\"John Doe\\\"}},{\\\"type\\\":\\\"text\\\",\\\"text\\\":\\\"! \\\",\\\"styles\\\":{}},{\\\"type\\\":\\\"text\\\",\\\"text\\\":\\\"How are you doing?\\\",\\\"styles\\\":{\\\"bold\\\":true}},{\\\"type\\\":\\\"text\\\",\\\"text\\\":\\\" \\\",\\\"styles\\\":{}},{\\\"type\\\":\\\"text\\\",\\\"text\\\":\\\"This text is blue!\\\",\\\"styles\\\":{\\\"textColor\\\":\\\"blue\\\"}}]}},{\\\"id\\\":\\\"ref3$\\\",\\\"block\\\":{\\\"id\\\":\\\"ref3\\\",\\\"type\\\":\\\"paragraph\\\",\\\"props\\\":{\\\"textColor\\\":\\\"default\\\",\\\"backgroundColor\\\":\\\"default\\\",\\\"textAlignment\\\":\\\"left\\\"},\\\"content\\\":[{\\\"type\\\":\\\"text\\\",\\\"text\\\":\\\"Hello, world! \\\",\\\"styles\\\":{}},{\\\"type\\\":\\\"text\\\",\\\"text\\\":\\\"Bold text. \\\",\\\"styles\\\":{\\\"bold\\\":true}},{\\\"type\\\":\\\"link\\\",\\\"href\\\":\\\"https://www.google.com\\\",\\\"content\\\":[{\\\"type\\\":\\\"text\\\",\\\"text\\\":\\\"Link.\\\",\\\"styles\\\":{}}]}]}}]\"},{\"role\":\"system\",\"content\":\"The user asks you to do the following:\"},{\"role\":\"user\",\"content\":\"make the first paragraph right aligned\"},{\"role\":\"system\",\"content\":\"First, determine what part of the document the user is talking about. You SHOULD probably take cursor info into account if needed.\\n EXAMPLE: if user says \\\"below\\\" (without pointing to a specific part of the document) he / she probably indicates the block(s) after the cursor. \\n EXAMPLE: If you want to insert content AT the cursor position (UNLESS indicated otherwise by the user), then you need `referenceId` to point to the block before the cursor with position `after` (or block below and `before`).\\n \\n Prefer updating existing blocks over removing and adding (but this also depends on the user's question).\"}],\"tool_choice\":{\"type\":\"function\",\"function\":{\"name\":\"json\"}},\"tools\":[{\"type\":\"function\",\"function\":{\"name\":\"json\",\"description\":\"Respond with a JSON object.\",\"parameters\":{\"type\":\"object\",\"properties\":{\"operations\":{\"type\":\"array\",\"items\":{\"anyOf\":[{\"type\":\"object\",\"description\":\"Update a block, the new block will replace the existing block.\",\"properties\":{\"type\":{\"type\":\"string\",\"enum\":[\"update\"]},\"id\":{\"type\":\"string\",\"description\":\"id of block to update\"},\"block\":{\"$ref\":\"#/$defs/block\"}},\"required\":[\"type\",\"id\",\"block\"],\"additionalProperties\":false},{\"type\":\"object\",\"description\":\"Insert new blocks\",\"properties\":{\"type\":{\"type\":\"string\",\"enum\":[\"add\"]},\"referenceId\":{\"type\":\"string\",\"description\":\"MUST be an id of a block in the document\"},\"position\":{\"type\":\"string\",\"enum\":[\"before\",\"after\"],\"description\":\"`after` to add blocks AFTER (below) the block with `referenceId`, `before` to add the block BEFORE (above)\"},\"blocks\":{\"items\":{\"$ref\":\"#/$defs/block\"},\"type\":\"array\"}},\"required\":[\"type\",\"referenceId\",\"position\",\"blocks\"],\"additionalProperties\":false},{\"type\":\"object\",\"description\":\"Delete a block\",\"properties\":{\"type\":{\"type\":\"string\",\"enum\":[\"delete\"]},\"id\":{\"type\":\"string\",\"description\":\"id of block to delete\"}},\"required\":[\"type\",\"id\"],\"additionalProperties\":false}]}}},\"additionalProperties\":false,\"required\":[\"operations\"],\"$defs\":{\"styles\":{\"type\":\"object\",\"properties\":{\"bold\":{\"type\":\"boolean\"},\"italic\":{\"type\":\"boolean\"},\"underline\":{\"type\":\"boolean\"},\"strike\":{\"type\":\"boolean\"},\"code\":{\"type\":\"boolean\"},\"textColor\":{\"type\":\"string\"},\"backgroundColor\":{\"type\":\"string\"}},\"additionalProperties\":false},\"styledtext\":{\"type\":\"object\",\"properties\":{\"type\":{\"type\":\"string\",\"enum\":[\"text\"]},\"text\":{\"type\":\"string\"},\"styles\":{\"$ref\":\"#/$defs/styles\"}},\"additionalProperties\":false,\"required\":[\"type\",\"text\"]},\"inlinecontent\":{\"type\":\"array\",\"items\":{\"anyOf\":[{\"type\":\"object\",\"properties\":{\"type\":{\"type\":\"string\",\"enum\":[\"mention\"]},\"props\":{\"type\":\"object\",\"properties\":{\"user\":{\"type\":\"string\"}},\"additionalProperties\":false}},\"additionalProperties\":false,\"required\":[\"type\"]},{\"$ref\":\"#/$defs/styledtext\"},{\"type\":\"object\",\"properties\":{\"type\":{\"type\":\"string\",\"enum\":[\"link\"]},\"content\":{\"type\":\"array\",\"items\":{\"$ref\":\"#/$defs/styledtext\"}},\"href\":{\"type\":\"string\"}},\"additionalProperties\":false,\"required\":[\"type\",\"href\",\"content\"]}]}},\"block\":{\"anyOf\":[{\"type\":\"object\",\"properties\":{\"type\":{\"type\":\"string\",\"enum\":[\"paragraph\",\"quote\",\"toggleListItem\",\"bulletListItem\",\"numberedListItem\"]},\"content\":{\"$ref\":\"#/$defs/inlinecontent\"},\"props\":{\"type\":\"object\",\"properties\":{},\"additionalProperties\":false}},\"additionalProperties\":false,\"required\":[\"type\"]},{\"type\":\"object\",\"properties\":{\"type\":{\"type\":\"string\",\"enum\":[\"heading\"]},\"content\":{\"$ref\":\"#/$defs/inlinecontent\"},\"props\":{\"type\":\"object\",\"properties\":{\"level\":{\"type\":\"number\",\"enum\":[1,2,3]},\"isTogglable\":{\"type\":\"boolean\"}},\"additionalProperties\":false}},\"additionalProperties\":false,\"required\":[\"type\"]},{\"type\":\"object\",\"properties\":{\"type\":{\"type\":\"string\",\"enum\":[\"codeBlock\"]},\"content\":{\"$ref\":\"#/$defs/inlinecontent\"},\"props\":{\"type\":\"object\",\"properties\":{\"language\":{\"type\":\"string\"}},\"additionalProperties\":false}},\"additionalProperties\":false,\"required\":[\"type\"]},{\"type\":\"object\",\"properties\":{\"type\":{\"type\":\"string\",\"enum\":[\"checkListItem\"]},\"content\":{\"$ref\":\"#/$defs/inlinecontent\"},\"props\":{\"type\":\"object\",\"properties\":{\"checked\":{\"type\":\"boolean\"}},\"additionalProperties\":false}},\"additionalProperties\":false,\"required\":[\"type\"]},{\"type\":\"object\",\"properties\":{\"type\":{\"type\":\"string\",\"enum\":[\"table\"]},\"content\":{\"type\":\"object\",\"properties\":{}},\"props\":{\"type\":\"object\",\"properties\":{},\"additionalProperties\":false}},\"additionalProperties\":false,\"required\":[\"type\"]}]}}}}}],\"stream\":true}", "headers": [], "cookies": [] }, "response": { "status": 200, "statusText": "", - "body": "data: {\"id\":\"chatcmpl-BgV4exBDLYlITPGdL4KAuHW3cL3iV\",\"object\":\"chat.completion.chunk\",\"created\":1749468924,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_07871e2ad8\",\"choices\":[{\"index\":0,\"delta\":{\"role\":\"assistant\",\"content\":null,\"tool_calls\":[{\"index\":0,\"id\":\"call_7N6FLaRBJ1Vo84DXrMXocZlL\",\"type\":\"function\",\"function\":{\"name\":\"json\",\"arguments\":\"\"}}],\"refusal\":null},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BgV4exBDLYlITPGdL4KAuHW3cL3iV\",\"object\":\"chat.completion.chunk\",\"created\":1749468924,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_07871e2ad8\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"{\\\"\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BgV4exBDLYlITPGdL4KAuHW3cL3iV\",\"object\":\"chat.completion.chunk\",\"created\":1749468924,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_07871e2ad8\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"operations\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BgV4exBDLYlITPGdL4KAuHW3cL3iV\",\"object\":\"chat.completion.chunk\",\"created\":1749468924,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_07871e2ad8\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"\\\":[\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BgV4exBDLYlITPGdL4KAuHW3cL3iV\",\"object\":\"chat.completion.chunk\",\"created\":1749468924,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_07871e2ad8\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"{\\\"\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BgV4exBDLYlITPGdL4KAuHW3cL3iV\",\"object\":\"chat.completion.chunk\",\"created\":1749468924,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_07871e2ad8\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"type\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BgV4exBDLYlITPGdL4KAuHW3cL3iV\",\"object\":\"chat.completion.chunk\",\"created\":1749468924,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_07871e2ad8\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"\\\":\\\"\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BgV4exBDLYlITPGdL4KAuHW3cL3iV\",\"object\":\"chat.completion.chunk\",\"created\":1749468924,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_07871e2ad8\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"update\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BgV4exBDLYlITPGdL4KAuHW3cL3iV\",\"object\":\"chat.completion.chunk\",\"created\":1749468924,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_07871e2ad8\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"\\\",\\\"\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BgV4exBDLYlITPGdL4KAuHW3cL3iV\",\"object\":\"chat.completion.chunk\",\"created\":1749468924,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_07871e2ad8\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"id\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BgV4exBDLYlITPGdL4KAuHW3cL3iV\",\"object\":\"chat.completion.chunk\",\"created\":1749468924,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_07871e2ad8\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"\\\":\\\"\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BgV4exBDLYlITPGdL4KAuHW3cL3iV\",\"object\":\"chat.completion.chunk\",\"created\":1749468924,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_07871e2ad8\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"ref\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BgV4exBDLYlITPGdL4KAuHW3cL3iV\",\"object\":\"chat.completion.chunk\",\"created\":1749468924,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_07871e2ad8\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"1\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BgV4exBDLYlITPGdL4KAuHW3cL3iV\",\"object\":\"chat.completion.chunk\",\"created\":1749468924,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_07871e2ad8\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"$\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BgV4exBDLYlITPGdL4KAuHW3cL3iV\",\"object\":\"chat.completion.chunk\",\"created\":1749468924,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_07871e2ad8\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"\\\",\\\"\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BgV4exBDLYlITPGdL4KAuHW3cL3iV\",\"object\":\"chat.completion.chunk\",\"created\":1749468924,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_07871e2ad8\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"block\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BgV4exBDLYlITPGdL4KAuHW3cL3iV\",\"object\":\"chat.completion.chunk\",\"created\":1749468924,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_07871e2ad8\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"\\\":{\\\"\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BgV4exBDLYlITPGdL4KAuHW3cL3iV\",\"object\":\"chat.completion.chunk\",\"created\":1749468924,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_07871e2ad8\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"type\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BgV4exBDLYlITPGdL4KAuHW3cL3iV\",\"object\":\"chat.completion.chunk\",\"created\":1749468924,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_07871e2ad8\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"\\\":\\\"\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BgV4exBDLYlITPGdL4KAuHW3cL3iV\",\"object\":\"chat.completion.chunk\",\"created\":1749468924,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_07871e2ad8\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"paragraph\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BgV4exBDLYlITPGdL4KAuHW3cL3iV\",\"object\":\"chat.completion.chunk\",\"created\":1749468924,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_07871e2ad8\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"\\\",\\\"\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BgV4exBDLYlITPGdL4KAuHW3cL3iV\",\"object\":\"chat.completion.chunk\",\"created\":1749468924,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_07871e2ad8\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"props\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BgV4exBDLYlITPGdL4KAuHW3cL3iV\",\"object\":\"chat.completion.chunk\",\"created\":1749468924,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_07871e2ad8\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"\\\":{\\\"\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BgV4exBDLYlITPGdL4KAuHW3cL3iV\",\"object\":\"chat.completion.chunk\",\"created\":1749468924,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_07871e2ad8\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"text\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BgV4exBDLYlITPGdL4KAuHW3cL3iV\",\"object\":\"chat.completion.chunk\",\"created\":1749468924,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_07871e2ad8\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"Color\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BgV4exBDLYlITPGdL4KAuHW3cL3iV\",\"object\":\"chat.completion.chunk\",\"created\":1749468924,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_07871e2ad8\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"\\\":\\\"\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BgV4exBDLYlITPGdL4KAuHW3cL3iV\",\"object\":\"chat.completion.chunk\",\"created\":1749468924,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_07871e2ad8\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"default\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BgV4exBDLYlITPGdL4KAuHW3cL3iV\",\"object\":\"chat.completion.chunk\",\"created\":1749468924,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_07871e2ad8\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"\\\",\\\"\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BgV4exBDLYlITPGdL4KAuHW3cL3iV\",\"object\":\"chat.completion.chunk\",\"created\":1749468924,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_07871e2ad8\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"background\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BgV4exBDLYlITPGdL4KAuHW3cL3iV\",\"object\":\"chat.completion.chunk\",\"created\":1749468924,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_07871e2ad8\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"Color\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BgV4exBDLYlITPGdL4KAuHW3cL3iV\",\"object\":\"chat.completion.chunk\",\"created\":1749468924,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_07871e2ad8\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"\\\":\\\"\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BgV4exBDLYlITPGdL4KAuHW3cL3iV\",\"object\":\"chat.completion.chunk\",\"created\":1749468924,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_07871e2ad8\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"default\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BgV4exBDLYlITPGdL4KAuHW3cL3iV\",\"object\":\"chat.completion.chunk\",\"created\":1749468924,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_07871e2ad8\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"\\\",\\\"\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BgV4exBDLYlITPGdL4KAuHW3cL3iV\",\"object\":\"chat.completion.chunk\",\"created\":1749468924,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_07871e2ad8\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"text\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BgV4exBDLYlITPGdL4KAuHW3cL3iV\",\"object\":\"chat.completion.chunk\",\"created\":1749468924,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_07871e2ad8\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"Alignment\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BgV4exBDLYlITPGdL4KAuHW3cL3iV\",\"object\":\"chat.completion.chunk\",\"created\":1749468924,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_07871e2ad8\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"\\\":\\\"\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BgV4exBDLYlITPGdL4KAuHW3cL3iV\",\"object\":\"chat.completion.chunk\",\"created\":1749468924,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_07871e2ad8\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"right\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BgV4exBDLYlITPGdL4KAuHW3cL3iV\",\"object\":\"chat.completion.chunk\",\"created\":1749468924,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_07871e2ad8\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"\\\"}\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BgV4exBDLYlITPGdL4KAuHW3cL3iV\",\"object\":\"chat.completion.chunk\",\"created\":1749468924,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_07871e2ad8\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\",\\\"\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BgV4exBDLYlITPGdL4KAuHW3cL3iV\",\"object\":\"chat.completion.chunk\",\"created\":1749468924,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_07871e2ad8\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"content\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BgV4exBDLYlITPGdL4KAuHW3cL3iV\",\"object\":\"chat.completion.chunk\",\"created\":1749468924,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_07871e2ad8\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"\\\":[\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BgV4exBDLYlITPGdL4KAuHW3cL3iV\",\"object\":\"chat.completion.chunk\",\"created\":1749468924,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_07871e2ad8\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"{\\\"\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BgV4exBDLYlITPGdL4KAuHW3cL3iV\",\"object\":\"chat.completion.chunk\",\"created\":1749468924,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_07871e2ad8\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"type\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BgV4exBDLYlITPGdL4KAuHW3cL3iV\",\"object\":\"chat.completion.chunk\",\"created\":1749468924,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_07871e2ad8\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"\\\":\\\"\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BgV4exBDLYlITPGdL4KAuHW3cL3iV\",\"object\":\"chat.completion.chunk\",\"created\":1749468924,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_07871e2ad8\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"text\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BgV4exBDLYlITPGdL4KAuHW3cL3iV\",\"object\":\"chat.completion.chunk\",\"created\":1749468924,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_07871e2ad8\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"\\\",\\\"\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BgV4exBDLYlITPGdL4KAuHW3cL3iV\",\"object\":\"chat.completion.chunk\",\"created\":1749468924,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_07871e2ad8\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"text\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BgV4exBDLYlITPGdL4KAuHW3cL3iV\",\"object\":\"chat.completion.chunk\",\"created\":1749468924,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_07871e2ad8\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"\\\":\\\"\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BgV4exBDLYlITPGdL4KAuHW3cL3iV\",\"object\":\"chat.completion.chunk\",\"created\":1749468924,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_07871e2ad8\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"Hello\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BgV4exBDLYlITPGdL4KAuHW3cL3iV\",\"object\":\"chat.completion.chunk\",\"created\":1749468924,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_07871e2ad8\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\",\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BgV4exBDLYlITPGdL4KAuHW3cL3iV\",\"object\":\"chat.completion.chunk\",\"created\":1749468924,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_07871e2ad8\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\" world\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BgV4exBDLYlITPGdL4KAuHW3cL3iV\",\"object\":\"chat.completion.chunk\",\"created\":1749468924,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_07871e2ad8\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"!\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BgV4exBDLYlITPGdL4KAuHW3cL3iV\",\"object\":\"chat.completion.chunk\",\"created\":1749468924,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_07871e2ad8\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"\\\",\\\"\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BgV4exBDLYlITPGdL4KAuHW3cL3iV\",\"object\":\"chat.completion.chunk\",\"created\":1749468924,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_07871e2ad8\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"styles\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BgV4exBDLYlITPGdL4KAuHW3cL3iV\",\"object\":\"chat.completion.chunk\",\"created\":1749468924,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_07871e2ad8\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"\\\":\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BgV4exBDLYlITPGdL4KAuHW3cL3iV\",\"object\":\"chat.completion.chunk\",\"created\":1749468924,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_07871e2ad8\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"{\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BgV4exBDLYlITPGdL4KAuHW3cL3iV\",\"object\":\"chat.completion.chunk\",\"created\":1749468924,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_07871e2ad8\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"}}\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BgV4exBDLYlITPGdL4KAuHW3cL3iV\",\"object\":\"chat.completion.chunk\",\"created\":1749468924,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_07871e2ad8\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"]\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BgV4exBDLYlITPGdL4KAuHW3cL3iV\",\"object\":\"chat.completion.chunk\",\"created\":1749468924,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_07871e2ad8\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"}}\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BgV4exBDLYlITPGdL4KAuHW3cL3iV\",\"object\":\"chat.completion.chunk\",\"created\":1749468924,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_07871e2ad8\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"]}\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BgV4exBDLYlITPGdL4KAuHW3cL3iV\",\"object\":\"chat.completion.chunk\",\"created\":1749468924,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_07871e2ad8\",\"choices\":[{\"index\":0,\"delta\":{},\"logprobs\":null,\"finish_reason\":\"stop\"}]}\n\ndata: [DONE]\n\n", + "body": "data: {\"id\":\"chatcmpl-BhXn17s0XbRJm2981Ratc8d4KOD9e\",\"object\":\"chat.completion.chunk\",\"created\":1749717691,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_a288987b44\",\"choices\":[{\"index\":0,\"delta\":{\"role\":\"assistant\",\"content\":null,\"tool_calls\":[{\"index\":0,\"id\":\"call_SbTLUEUA13vrWDTBYnWQdIkq\",\"type\":\"function\",\"function\":{\"name\":\"json\",\"arguments\":\"\"}}],\"refusal\":null},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BhXn17s0XbRJm2981Ratc8d4KOD9e\",\"object\":\"chat.completion.chunk\",\"created\":1749717691,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_a288987b44\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"{\\\"\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BhXn17s0XbRJm2981Ratc8d4KOD9e\",\"object\":\"chat.completion.chunk\",\"created\":1749717691,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_a288987b44\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"operations\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BhXn17s0XbRJm2981Ratc8d4KOD9e\",\"object\":\"chat.completion.chunk\",\"created\":1749717691,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_a288987b44\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"\\\":[\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BhXn17s0XbRJm2981Ratc8d4KOD9e\",\"object\":\"chat.completion.chunk\",\"created\":1749717691,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_a288987b44\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"{\\\"\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BhXn17s0XbRJm2981Ratc8d4KOD9e\",\"object\":\"chat.completion.chunk\",\"created\":1749717691,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_a288987b44\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"type\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BhXn17s0XbRJm2981Ratc8d4KOD9e\",\"object\":\"chat.completion.chunk\",\"created\":1749717691,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_a288987b44\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"\\\":\\\"\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BhXn17s0XbRJm2981Ratc8d4KOD9e\",\"object\":\"chat.completion.chunk\",\"created\":1749717691,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_a288987b44\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"update\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BhXn17s0XbRJm2981Ratc8d4KOD9e\",\"object\":\"chat.completion.chunk\",\"created\":1749717691,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_a288987b44\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"\\\",\\\"\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BhXn17s0XbRJm2981Ratc8d4KOD9e\",\"object\":\"chat.completion.chunk\",\"created\":1749717691,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_a288987b44\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"id\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BhXn17s0XbRJm2981Ratc8d4KOD9e\",\"object\":\"chat.completion.chunk\",\"created\":1749717691,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_a288987b44\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"\\\":\\\"\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BhXn17s0XbRJm2981Ratc8d4KOD9e\",\"object\":\"chat.completion.chunk\",\"created\":1749717691,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_a288987b44\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"ref\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BhXn17s0XbRJm2981Ratc8d4KOD9e\",\"object\":\"chat.completion.chunk\",\"created\":1749717691,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_a288987b44\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"1\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BhXn17s0XbRJm2981Ratc8d4KOD9e\",\"object\":\"chat.completion.chunk\",\"created\":1749717691,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_a288987b44\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"$\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BhXn17s0XbRJm2981Ratc8d4KOD9e\",\"object\":\"chat.completion.chunk\",\"created\":1749717691,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_a288987b44\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"\\\",\\\"\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BhXn17s0XbRJm2981Ratc8d4KOD9e\",\"object\":\"chat.completion.chunk\",\"created\":1749717691,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_a288987b44\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"block\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BhXn17s0XbRJm2981Ratc8d4KOD9e\",\"object\":\"chat.completion.chunk\",\"created\":1749717691,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_a288987b44\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"\\\":{\\\"\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BhXn17s0XbRJm2981Ratc8d4KOD9e\",\"object\":\"chat.completion.chunk\",\"created\":1749717691,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_a288987b44\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"type\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BhXn17s0XbRJm2981Ratc8d4KOD9e\",\"object\":\"chat.completion.chunk\",\"created\":1749717691,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_a288987b44\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"\\\":\\\"\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BhXn17s0XbRJm2981Ratc8d4KOD9e\",\"object\":\"chat.completion.chunk\",\"created\":1749717691,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_a288987b44\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"paragraph\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BhXn17s0XbRJm2981Ratc8d4KOD9e\",\"object\":\"chat.completion.chunk\",\"created\":1749717691,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_a288987b44\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"\\\",\\\"\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BhXn17s0XbRJm2981Ratc8d4KOD9e\",\"object\":\"chat.completion.chunk\",\"created\":1749717691,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_a288987b44\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"props\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BhXn17s0XbRJm2981Ratc8d4KOD9e\",\"object\":\"chat.completion.chunk\",\"created\":1749717691,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_a288987b44\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"\\\":{\\\"\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BhXn17s0XbRJm2981Ratc8d4KOD9e\",\"object\":\"chat.completion.chunk\",\"created\":1749717691,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_a288987b44\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"text\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BhXn17s0XbRJm2981Ratc8d4KOD9e\",\"object\":\"chat.completion.chunk\",\"created\":1749717691,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_a288987b44\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"Color\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BhXn17s0XbRJm2981Ratc8d4KOD9e\",\"object\":\"chat.completion.chunk\",\"created\":1749717691,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_a288987b44\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"\\\":\\\"\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BhXn17s0XbRJm2981Ratc8d4KOD9e\",\"object\":\"chat.completion.chunk\",\"created\":1749717691,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_a288987b44\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"default\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BhXn17s0XbRJm2981Ratc8d4KOD9e\",\"object\":\"chat.completion.chunk\",\"created\":1749717691,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_a288987b44\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"\\\",\\\"\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BhXn17s0XbRJm2981Ratc8d4KOD9e\",\"object\":\"chat.completion.chunk\",\"created\":1749717691,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_a288987b44\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"background\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BhXn17s0XbRJm2981Ratc8d4KOD9e\",\"object\":\"chat.completion.chunk\",\"created\":1749717691,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_a288987b44\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"Color\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BhXn17s0XbRJm2981Ratc8d4KOD9e\",\"object\":\"chat.completion.chunk\",\"created\":1749717691,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_a288987b44\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"\\\":\\\"\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BhXn17s0XbRJm2981Ratc8d4KOD9e\",\"object\":\"chat.completion.chunk\",\"created\":1749717691,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_a288987b44\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"default\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BhXn17s0XbRJm2981Ratc8d4KOD9e\",\"object\":\"chat.completion.chunk\",\"created\":1749717691,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_a288987b44\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"\\\",\\\"\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BhXn17s0XbRJm2981Ratc8d4KOD9e\",\"object\":\"chat.completion.chunk\",\"created\":1749717691,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_a288987b44\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"text\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BhXn17s0XbRJm2981Ratc8d4KOD9e\",\"object\":\"chat.completion.chunk\",\"created\":1749717691,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_a288987b44\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"Alignment\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BhXn17s0XbRJm2981Ratc8d4KOD9e\",\"object\":\"chat.completion.chunk\",\"created\":1749717691,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_a288987b44\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"\\\":\\\"\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BhXn17s0XbRJm2981Ratc8d4KOD9e\",\"object\":\"chat.completion.chunk\",\"created\":1749717691,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_a288987b44\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"right\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BhXn17s0XbRJm2981Ratc8d4KOD9e\",\"object\":\"chat.completion.chunk\",\"created\":1749717691,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_a288987b44\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"\\\"}\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BhXn17s0XbRJm2981Ratc8d4KOD9e\",\"object\":\"chat.completion.chunk\",\"created\":1749717691,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_a288987b44\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\",\\\"\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BhXn17s0XbRJm2981Ratc8d4KOD9e\",\"object\":\"chat.completion.chunk\",\"created\":1749717691,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_a288987b44\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"content\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BhXn17s0XbRJm2981Ratc8d4KOD9e\",\"object\":\"chat.completion.chunk\",\"created\":1749717691,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_a288987b44\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"\\\":[\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BhXn17s0XbRJm2981Ratc8d4KOD9e\",\"object\":\"chat.completion.chunk\",\"created\":1749717691,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_a288987b44\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"{\\\"\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BhXn17s0XbRJm2981Ratc8d4KOD9e\",\"object\":\"chat.completion.chunk\",\"created\":1749717691,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_a288987b44\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"type\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BhXn17s0XbRJm2981Ratc8d4KOD9e\",\"object\":\"chat.completion.chunk\",\"created\":1749717691,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_a288987b44\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"\\\":\\\"\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BhXn17s0XbRJm2981Ratc8d4KOD9e\",\"object\":\"chat.completion.chunk\",\"created\":1749717691,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_a288987b44\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"text\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BhXn17s0XbRJm2981Ratc8d4KOD9e\",\"object\":\"chat.completion.chunk\",\"created\":1749717691,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_a288987b44\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"\\\",\\\"\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BhXn17s0XbRJm2981Ratc8d4KOD9e\",\"object\":\"chat.completion.chunk\",\"created\":1749717691,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_a288987b44\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"text\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BhXn17s0XbRJm2981Ratc8d4KOD9e\",\"object\":\"chat.completion.chunk\",\"created\":1749717691,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_a288987b44\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"\\\":\\\"\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BhXn17s0XbRJm2981Ratc8d4KOD9e\",\"object\":\"chat.completion.chunk\",\"created\":1749717691,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_a288987b44\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"Hello\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BhXn17s0XbRJm2981Ratc8d4KOD9e\",\"object\":\"chat.completion.chunk\",\"created\":1749717691,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_a288987b44\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\",\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BhXn17s0XbRJm2981Ratc8d4KOD9e\",\"object\":\"chat.completion.chunk\",\"created\":1749717691,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_a288987b44\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\" world\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BhXn17s0XbRJm2981Ratc8d4KOD9e\",\"object\":\"chat.completion.chunk\",\"created\":1749717691,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_a288987b44\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"!\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BhXn17s0XbRJm2981Ratc8d4KOD9e\",\"object\":\"chat.completion.chunk\",\"created\":1749717691,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_a288987b44\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"\\\",\\\"\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BhXn17s0XbRJm2981Ratc8d4KOD9e\",\"object\":\"chat.completion.chunk\",\"created\":1749717691,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_a288987b44\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"styles\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BhXn17s0XbRJm2981Ratc8d4KOD9e\",\"object\":\"chat.completion.chunk\",\"created\":1749717691,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_a288987b44\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"\\\":\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BhXn17s0XbRJm2981Ratc8d4KOD9e\",\"object\":\"chat.completion.chunk\",\"created\":1749717691,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_a288987b44\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"{\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BhXn17s0XbRJm2981Ratc8d4KOD9e\",\"object\":\"chat.completion.chunk\",\"created\":1749717691,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_a288987b44\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"}}\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BhXn17s0XbRJm2981Ratc8d4KOD9e\",\"object\":\"chat.completion.chunk\",\"created\":1749717691,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_a288987b44\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"]\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BhXn17s0XbRJm2981Ratc8d4KOD9e\",\"object\":\"chat.completion.chunk\",\"created\":1749717691,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_a288987b44\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"}}\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BhXn17s0XbRJm2981Ratc8d4KOD9e\",\"object\":\"chat.completion.chunk\",\"created\":1749717691,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_a288987b44\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"]}\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BhXn17s0XbRJm2981Ratc8d4KOD9e\",\"object\":\"chat.completion.chunk\",\"created\":1749717691,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_a288987b44\",\"choices\":[{\"index\":0,\"delta\":{},\"logprobs\":null,\"finish_reason\":\"stop\"}]}\n\ndata: [DONE]\n\n", "headers": [] } } \ No newline at end of file diff --git a/packages/xl-ai/src/api/formats/json/__snapshots__/json.test.ts/Update/__msw_snapshots__/openai.chat/gpt-4o-2024-08-06 (streaming)/update block type and content_1_5a7248b251deacea1a5b64dadf15ec95.json b/packages/xl-ai/src/api/formats/json/__snapshots__/json.test.ts/Update/__msw_snapshots__/openai.chat/gpt-4o-2024-08-06 (streaming)/update block type and content_1_afc4e7b2974a37fa22c2e033f00945bf.json similarity index 53% rename from packages/xl-ai/src/api/formats/json/__snapshots__/json.test.ts/Update/__msw_snapshots__/openai.chat/gpt-4o-2024-08-06 (streaming)/update block type and content_1_5a7248b251deacea1a5b64dadf15ec95.json rename to packages/xl-ai/src/api/formats/json/__snapshots__/json.test.ts/Update/__msw_snapshots__/openai.chat/gpt-4o-2024-08-06 (streaming)/update block type and content_1_afc4e7b2974a37fa22c2e033f00945bf.json index 61a3879805..15af511cb8 100644 --- a/packages/xl-ai/src/api/formats/json/__snapshots__/json.test.ts/Update/__msw_snapshots__/openai.chat/gpt-4o-2024-08-06 (streaming)/update block type and content_1_5a7248b251deacea1a5b64dadf15ec95.json +++ b/packages/xl-ai/src/api/formats/json/__snapshots__/json.test.ts/Update/__msw_snapshots__/openai.chat/gpt-4o-2024-08-06 (streaming)/update block type and content_1_afc4e7b2974a37fa22c2e033f00945bf.json @@ -2,14 +2,14 @@ "request": { "method": "POST", "url": "https://localhost:3000/ai?provider=openai&url=https%3A%2F%2Fapi.openai.com%2Fv1%2Fchat%2Fcompletions", - "body": "{\"model\":\"gpt-4o-2024-08-06\",\"temperature\":0,\"messages\":[{\"role\":\"system\",\"content\":\"You're manipulating a text document using JSON blocks. \\n Make sure to follow the json schema provided. When referencing ids they MUST be EXACTLY the same (including the trailing $). \\n This is the document as an array of JSON blocks (the cursor is BETWEEN two blocks as indicated by cursor: true):\"},{\"role\":\"system\",\"content\":\"[{\\\"id\\\":\\\"ref1$\\\",\\\"block\\\":{\\\"id\\\":\\\"ref1\\\",\\\"type\\\":\\\"paragraph\\\",\\\"props\\\":{\\\"textColor\\\":\\\"default\\\",\\\"backgroundColor\\\":\\\"default\\\",\\\"textAlignment\\\":\\\"left\\\"},\\\"content\\\":[{\\\"type\\\":\\\"text\\\",\\\"text\\\":\\\"Hello, world!\\\",\\\"styles\\\":{}}]}},{\\\"cursor\\\":true},{\\\"id\\\":\\\"ref2$\\\",\\\"block\\\":{\\\"id\\\":\\\"ref2\\\",\\\"type\\\":\\\"paragraph\\\",\\\"props\\\":{\\\"textColor\\\":\\\"default\\\",\\\"backgroundColor\\\":\\\"default\\\",\\\"textAlignment\\\":\\\"left\\\"},\\\"content\\\":[{\\\"type\\\":\\\"text\\\",\\\"text\\\":\\\"Hello, \\\",\\\"styles\\\":{}},{\\\"type\\\":\\\"mention\\\",\\\"props\\\":{\\\"user\\\":\\\"John Doe\\\"}},{\\\"type\\\":\\\"text\\\",\\\"text\\\":\\\"! \\\",\\\"styles\\\":{}},{\\\"type\\\":\\\"text\\\",\\\"text\\\":\\\"How are you doing?\\\",\\\"styles\\\":{\\\"bold\\\":true}},{\\\"type\\\":\\\"text\\\",\\\"text\\\":\\\" \\\",\\\"styles\\\":{}},{\\\"type\\\":\\\"text\\\",\\\"text\\\":\\\"This text is blue!\\\",\\\"styles\\\":{\\\"textColor\\\":\\\"blue\\\"}}]}},{\\\"id\\\":\\\"ref3$\\\",\\\"block\\\":{\\\"id\\\":\\\"ref3\\\",\\\"type\\\":\\\"paragraph\\\",\\\"props\\\":{\\\"textColor\\\":\\\"default\\\",\\\"backgroundColor\\\":\\\"default\\\",\\\"textAlignment\\\":\\\"left\\\"},\\\"content\\\":[{\\\"type\\\":\\\"text\\\",\\\"text\\\":\\\"Hello, world! \\\",\\\"styles\\\":{}},{\\\"type\\\":\\\"text\\\",\\\"text\\\":\\\"Bold text. \\\",\\\"styles\\\":{\\\"bold\\\":true}},{\\\"type\\\":\\\"link\\\",\\\"href\\\":\\\"https://www.google.com\\\",\\\"content\\\":[{\\\"type\\\":\\\"text\\\",\\\"text\\\":\\\"Link.\\\",\\\"styles\\\":{}}]}]}}]\"},{\"role\":\"system\",\"content\":\"The user asks you to do the following:\"},{\"role\":\"user\",\"content\":\"make the first paragraph a heading and update the content to 'What's up, world!'\"},{\"role\":\"system\",\"content\":\"First, determine what part of the document the user is talking about. You SHOULD probably take cursor info into account if needed.\\n EXAMPLE: if user says \\\"below\\\" (without pointing to a specific part of the document) he / she probably indicates the block(s) after the cursor. \\n EXAMPLE: If you want to insert content AT the cursor position (UNLESS indicated otherwise by the user), then you need `referenceId` to point to the block before the cursor with position `after` (or block below and `before`).\\n \\n Prefer updating existing blocks over removing and adding (but this also depends on the user's question).\"}],\"tool_choice\":{\"type\":\"function\",\"function\":{\"name\":\"json\"}},\"tools\":[{\"type\":\"function\",\"function\":{\"name\":\"json\",\"description\":\"Respond with a JSON object.\",\"parameters\":{\"type\":\"object\",\"properties\":{\"operations\":{\"type\":\"array\",\"items\":{\"anyOf\":[{\"type\":\"object\",\"description\":\"Update a block, the new block will replace the existing block.\",\"properties\":{\"type\":{\"type\":\"string\",\"enum\":[\"update\"]},\"id\":{\"type\":\"string\",\"description\":\"id of block to update\"},\"block\":{\"$ref\":\"#/$defs/block\"}},\"required\":[\"type\",\"id\",\"block\"],\"additionalProperties\":false},{\"type\":\"object\",\"description\":\"Insert new blocks\",\"properties\":{\"type\":{\"type\":\"string\",\"enum\":[\"add\"]},\"referenceId\":{\"type\":\"string\",\"description\":\"MUST be an id of a block in the document\"},\"position\":{\"type\":\"string\",\"enum\":[\"before\",\"after\"],\"description\":\"`after` to add blocks AFTER (below) the block with `referenceId`, `before` to add the block BEFORE (above)\"},\"blocks\":{\"items\":{\"$ref\":\"#/$defs/block\"},\"type\":\"array\"}},\"required\":[\"type\",\"referenceId\",\"position\",\"blocks\"],\"additionalProperties\":false},{\"type\":\"object\",\"description\":\"Delete a block\",\"properties\":{\"type\":{\"type\":\"string\",\"enum\":[\"delete\"]},\"id\":{\"type\":\"string\",\"description\":\"id of block to delete\"}},\"required\":[\"type\",\"id\"],\"additionalProperties\":false}]}}},\"additionalProperties\":false,\"required\":[\"operations\"],\"$defs\":{\"styles\":{\"type\":\"object\",\"properties\":{\"bold\":{\"type\":\"boolean\"},\"italic\":{\"type\":\"boolean\"},\"underline\":{\"type\":\"boolean\"},\"strike\":{\"type\":\"boolean\"},\"code\":{\"type\":\"boolean\"},\"textColor\":{\"type\":\"string\"},\"backgroundColor\":{\"type\":\"string\"}},\"additionalProperties\":false},\"styledtext\":{\"type\":\"object\",\"properties\":{\"type\":{\"type\":\"string\",\"enum\":[\"text\"]},\"text\":{\"type\":\"string\"},\"styles\":{\"$ref\":\"#/$defs/styles\"}},\"additionalProperties\":false,\"required\":[\"type\",\"text\"]},\"inlinecontent\":{\"type\":\"array\",\"items\":{\"anyOf\":[{\"type\":\"object\",\"properties\":{\"type\":{\"type\":\"string\",\"enum\":[\"mention\"]},\"props\":{\"type\":\"object\",\"properties\":{\"user\":{\"type\":\"string\"}},\"additionalProperties\":false}},\"additionalProperties\":false,\"required\":[\"type\"]},{\"$ref\":\"#/$defs/styledtext\"},{\"type\":\"object\",\"properties\":{\"type\":{\"type\":\"string\",\"enum\":[\"link\"]},\"content\":{\"type\":\"array\",\"items\":{\"$ref\":\"#/$defs/styledtext\"}},\"href\":{\"type\":\"string\"}},\"additionalProperties\":false,\"required\":[\"type\",\"href\",\"content\"]}]}},\"block\":{\"anyOf\":[{\"type\":\"object\",\"properties\":{\"type\":{\"type\":\"string\",\"enum\":[\"paragraph\",\"quote\",\"bulletListItem\",\"numberedListItem\"]},\"content\":{\"$ref\":\"#/$defs/inlinecontent\"},\"props\":{\"type\":\"object\",\"properties\":{},\"additionalProperties\":false}},\"additionalProperties\":false,\"required\":[\"type\"]},{\"type\":\"object\",\"properties\":{\"type\":{\"type\":\"string\",\"enum\":[\"heading\"]},\"content\":{\"$ref\":\"#/$defs/inlinecontent\"},\"props\":{\"type\":\"object\",\"properties\":{\"level\":{\"type\":\"number\",\"enum\":[1,2,3]}},\"additionalProperties\":false}},\"additionalProperties\":false,\"required\":[\"type\"]},{\"type\":\"object\",\"properties\":{\"type\":{\"type\":\"string\",\"enum\":[\"codeBlock\"]},\"content\":{\"$ref\":\"#/$defs/inlinecontent\"},\"props\":{\"type\":\"object\",\"properties\":{\"language\":{\"type\":\"string\"}},\"additionalProperties\":false}},\"additionalProperties\":false,\"required\":[\"type\"]},{\"type\":\"object\",\"properties\":{\"type\":{\"type\":\"string\",\"enum\":[\"checkListItem\"]},\"content\":{\"$ref\":\"#/$defs/inlinecontent\"},\"props\":{\"type\":\"object\",\"properties\":{\"checked\":{\"type\":\"boolean\"}},\"additionalProperties\":false}},\"additionalProperties\":false,\"required\":[\"type\"]},{\"type\":\"object\",\"properties\":{\"type\":{\"type\":\"string\",\"enum\":[\"table\"]},\"content\":{\"type\":\"object\",\"properties\":{}},\"props\":{\"type\":\"object\",\"properties\":{},\"additionalProperties\":false}},\"additionalProperties\":false,\"required\":[\"type\"]}]}}}}}],\"stream\":true}", + "body": "{\"model\":\"gpt-4o-2024-08-06\",\"temperature\":0,\"messages\":[{\"role\":\"system\",\"content\":\"You're manipulating a text document using JSON blocks. \\n Make sure to follow the json schema provided. When referencing ids they MUST be EXACTLY the same (including the trailing $). \\n This is the document as an array of JSON blocks (the cursor is BETWEEN two blocks as indicated by cursor: true):\"},{\"role\":\"system\",\"content\":\"[{\\\"id\\\":\\\"ref1$\\\",\\\"block\\\":{\\\"id\\\":\\\"ref1\\\",\\\"type\\\":\\\"paragraph\\\",\\\"props\\\":{\\\"textColor\\\":\\\"default\\\",\\\"backgroundColor\\\":\\\"default\\\",\\\"textAlignment\\\":\\\"left\\\"},\\\"content\\\":[{\\\"type\\\":\\\"text\\\",\\\"text\\\":\\\"Hello, world!\\\",\\\"styles\\\":{}}]}},{\\\"cursor\\\":true},{\\\"id\\\":\\\"ref2$\\\",\\\"block\\\":{\\\"id\\\":\\\"ref2\\\",\\\"type\\\":\\\"paragraph\\\",\\\"props\\\":{\\\"textColor\\\":\\\"default\\\",\\\"backgroundColor\\\":\\\"default\\\",\\\"textAlignment\\\":\\\"left\\\"},\\\"content\\\":[{\\\"type\\\":\\\"text\\\",\\\"text\\\":\\\"Hello, \\\",\\\"styles\\\":{}},{\\\"type\\\":\\\"mention\\\",\\\"props\\\":{\\\"user\\\":\\\"John Doe\\\"}},{\\\"type\\\":\\\"text\\\",\\\"text\\\":\\\"! \\\",\\\"styles\\\":{}},{\\\"type\\\":\\\"text\\\",\\\"text\\\":\\\"How are you doing?\\\",\\\"styles\\\":{\\\"bold\\\":true}},{\\\"type\\\":\\\"text\\\",\\\"text\\\":\\\" \\\",\\\"styles\\\":{}},{\\\"type\\\":\\\"text\\\",\\\"text\\\":\\\"This text is blue!\\\",\\\"styles\\\":{\\\"textColor\\\":\\\"blue\\\"}}]}},{\\\"id\\\":\\\"ref3$\\\",\\\"block\\\":{\\\"id\\\":\\\"ref3\\\",\\\"type\\\":\\\"paragraph\\\",\\\"props\\\":{\\\"textColor\\\":\\\"default\\\",\\\"backgroundColor\\\":\\\"default\\\",\\\"textAlignment\\\":\\\"left\\\"},\\\"content\\\":[{\\\"type\\\":\\\"text\\\",\\\"text\\\":\\\"Hello, world! \\\",\\\"styles\\\":{}},{\\\"type\\\":\\\"text\\\",\\\"text\\\":\\\"Bold text. \\\",\\\"styles\\\":{\\\"bold\\\":true}},{\\\"type\\\":\\\"link\\\",\\\"href\\\":\\\"https://www.google.com\\\",\\\"content\\\":[{\\\"type\\\":\\\"text\\\",\\\"text\\\":\\\"Link.\\\",\\\"styles\\\":{}}]}]}}]\"},{\"role\":\"system\",\"content\":\"The user asks you to do the following:\"},{\"role\":\"user\",\"content\":\"make the first paragraph a heading and update the content to 'What's up, world!'\"},{\"role\":\"system\",\"content\":\"First, determine what part of the document the user is talking about. You SHOULD probably take cursor info into account if needed.\\n EXAMPLE: if user says \\\"below\\\" (without pointing to a specific part of the document) he / she probably indicates the block(s) after the cursor. \\n EXAMPLE: If you want to insert content AT the cursor position (UNLESS indicated otherwise by the user), then you need `referenceId` to point to the block before the cursor with position `after` (or block below and `before`).\\n \\n Prefer updating existing blocks over removing and adding (but this also depends on the user's question).\"}],\"tool_choice\":{\"type\":\"function\",\"function\":{\"name\":\"json\"}},\"tools\":[{\"type\":\"function\",\"function\":{\"name\":\"json\",\"description\":\"Respond with a JSON object.\",\"parameters\":{\"type\":\"object\",\"properties\":{\"operations\":{\"type\":\"array\",\"items\":{\"anyOf\":[{\"type\":\"object\",\"description\":\"Update a block, the new block will replace the existing block.\",\"properties\":{\"type\":{\"type\":\"string\",\"enum\":[\"update\"]},\"id\":{\"type\":\"string\",\"description\":\"id of block to update\"},\"block\":{\"$ref\":\"#/$defs/block\"}},\"required\":[\"type\",\"id\",\"block\"],\"additionalProperties\":false},{\"type\":\"object\",\"description\":\"Insert new blocks\",\"properties\":{\"type\":{\"type\":\"string\",\"enum\":[\"add\"]},\"referenceId\":{\"type\":\"string\",\"description\":\"MUST be an id of a block in the document\"},\"position\":{\"type\":\"string\",\"enum\":[\"before\",\"after\"],\"description\":\"`after` to add blocks AFTER (below) the block with `referenceId`, `before` to add the block BEFORE (above)\"},\"blocks\":{\"items\":{\"$ref\":\"#/$defs/block\"},\"type\":\"array\"}},\"required\":[\"type\",\"referenceId\",\"position\",\"blocks\"],\"additionalProperties\":false},{\"type\":\"object\",\"description\":\"Delete a block\",\"properties\":{\"type\":{\"type\":\"string\",\"enum\":[\"delete\"]},\"id\":{\"type\":\"string\",\"description\":\"id of block to delete\"}},\"required\":[\"type\",\"id\"],\"additionalProperties\":false}]}}},\"additionalProperties\":false,\"required\":[\"operations\"],\"$defs\":{\"styles\":{\"type\":\"object\",\"properties\":{\"bold\":{\"type\":\"boolean\"},\"italic\":{\"type\":\"boolean\"},\"underline\":{\"type\":\"boolean\"},\"strike\":{\"type\":\"boolean\"},\"code\":{\"type\":\"boolean\"},\"textColor\":{\"type\":\"string\"},\"backgroundColor\":{\"type\":\"string\"}},\"additionalProperties\":false},\"styledtext\":{\"type\":\"object\",\"properties\":{\"type\":{\"type\":\"string\",\"enum\":[\"text\"]},\"text\":{\"type\":\"string\"},\"styles\":{\"$ref\":\"#/$defs/styles\"}},\"additionalProperties\":false,\"required\":[\"type\",\"text\"]},\"inlinecontent\":{\"type\":\"array\",\"items\":{\"anyOf\":[{\"type\":\"object\",\"properties\":{\"type\":{\"type\":\"string\",\"enum\":[\"mention\"]},\"props\":{\"type\":\"object\",\"properties\":{\"user\":{\"type\":\"string\"}},\"additionalProperties\":false}},\"additionalProperties\":false,\"required\":[\"type\"]},{\"$ref\":\"#/$defs/styledtext\"},{\"type\":\"object\",\"properties\":{\"type\":{\"type\":\"string\",\"enum\":[\"link\"]},\"content\":{\"type\":\"array\",\"items\":{\"$ref\":\"#/$defs/styledtext\"}},\"href\":{\"type\":\"string\"}},\"additionalProperties\":false,\"required\":[\"type\",\"href\",\"content\"]}]}},\"block\":{\"anyOf\":[{\"type\":\"object\",\"properties\":{\"type\":{\"type\":\"string\",\"enum\":[\"paragraph\",\"quote\",\"toggleListItem\",\"bulletListItem\",\"numberedListItem\"]},\"content\":{\"$ref\":\"#/$defs/inlinecontent\"},\"props\":{\"type\":\"object\",\"properties\":{},\"additionalProperties\":false}},\"additionalProperties\":false,\"required\":[\"type\"]},{\"type\":\"object\",\"properties\":{\"type\":{\"type\":\"string\",\"enum\":[\"heading\"]},\"content\":{\"$ref\":\"#/$defs/inlinecontent\"},\"props\":{\"type\":\"object\",\"properties\":{\"level\":{\"type\":\"number\",\"enum\":[1,2,3]},\"isTogglable\":{\"type\":\"boolean\"}},\"additionalProperties\":false}},\"additionalProperties\":false,\"required\":[\"type\"]},{\"type\":\"object\",\"properties\":{\"type\":{\"type\":\"string\",\"enum\":[\"codeBlock\"]},\"content\":{\"$ref\":\"#/$defs/inlinecontent\"},\"props\":{\"type\":\"object\",\"properties\":{\"language\":{\"type\":\"string\"}},\"additionalProperties\":false}},\"additionalProperties\":false,\"required\":[\"type\"]},{\"type\":\"object\",\"properties\":{\"type\":{\"type\":\"string\",\"enum\":[\"checkListItem\"]},\"content\":{\"$ref\":\"#/$defs/inlinecontent\"},\"props\":{\"type\":\"object\",\"properties\":{\"checked\":{\"type\":\"boolean\"}},\"additionalProperties\":false}},\"additionalProperties\":false,\"required\":[\"type\"]},{\"type\":\"object\",\"properties\":{\"type\":{\"type\":\"string\",\"enum\":[\"table\"]},\"content\":{\"type\":\"object\",\"properties\":{}},\"props\":{\"type\":\"object\",\"properties\":{},\"additionalProperties\":false}},\"additionalProperties\":false,\"required\":[\"type\"]}]}}}}}],\"stream\":true}", "headers": [], "cookies": [] }, "response": { "status": 200, "statusText": "", - "body": "data: {\"id\":\"chatcmpl-BgV4gciPhVshqtDrIlfhC8blbUvTW\",\"object\":\"chat.completion.chunk\",\"created\":1749468926,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_07871e2ad8\",\"choices\":[{\"index\":0,\"delta\":{\"role\":\"assistant\",\"content\":null,\"tool_calls\":[{\"index\":0,\"id\":\"call_HfzIdZyYfk8SPWvR9jWARCKz\",\"type\":\"function\",\"function\":{\"name\":\"json\",\"arguments\":\"\"}}],\"refusal\":null},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BgV4gciPhVshqtDrIlfhC8blbUvTW\",\"object\":\"chat.completion.chunk\",\"created\":1749468926,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_07871e2ad8\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"{\\\"\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BgV4gciPhVshqtDrIlfhC8blbUvTW\",\"object\":\"chat.completion.chunk\",\"created\":1749468926,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_07871e2ad8\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"operations\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BgV4gciPhVshqtDrIlfhC8blbUvTW\",\"object\":\"chat.completion.chunk\",\"created\":1749468926,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_07871e2ad8\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"\\\":[\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BgV4gciPhVshqtDrIlfhC8blbUvTW\",\"object\":\"chat.completion.chunk\",\"created\":1749468926,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_07871e2ad8\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"{\\\"\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BgV4gciPhVshqtDrIlfhC8blbUvTW\",\"object\":\"chat.completion.chunk\",\"created\":1749468926,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_07871e2ad8\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"type\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BgV4gciPhVshqtDrIlfhC8blbUvTW\",\"object\":\"chat.completion.chunk\",\"created\":1749468926,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_07871e2ad8\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"\\\":\\\"\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BgV4gciPhVshqtDrIlfhC8blbUvTW\",\"object\":\"chat.completion.chunk\",\"created\":1749468926,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_07871e2ad8\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"update\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BgV4gciPhVshqtDrIlfhC8blbUvTW\",\"object\":\"chat.completion.chunk\",\"created\":1749468926,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_07871e2ad8\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"\\\",\\\"\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BgV4gciPhVshqtDrIlfhC8blbUvTW\",\"object\":\"chat.completion.chunk\",\"created\":1749468926,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_07871e2ad8\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"id\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BgV4gciPhVshqtDrIlfhC8blbUvTW\",\"object\":\"chat.completion.chunk\",\"created\":1749468926,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_07871e2ad8\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"\\\":\\\"\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BgV4gciPhVshqtDrIlfhC8blbUvTW\",\"object\":\"chat.completion.chunk\",\"created\":1749468926,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_07871e2ad8\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"ref\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BgV4gciPhVshqtDrIlfhC8blbUvTW\",\"object\":\"chat.completion.chunk\",\"created\":1749468926,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_07871e2ad8\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"1\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BgV4gciPhVshqtDrIlfhC8blbUvTW\",\"object\":\"chat.completion.chunk\",\"created\":1749468926,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_07871e2ad8\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"$\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BgV4gciPhVshqtDrIlfhC8blbUvTW\",\"object\":\"chat.completion.chunk\",\"created\":1749468926,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_07871e2ad8\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"\\\",\\\"\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BgV4gciPhVshqtDrIlfhC8blbUvTW\",\"object\":\"chat.completion.chunk\",\"created\":1749468926,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_07871e2ad8\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"block\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BgV4gciPhVshqtDrIlfhC8blbUvTW\",\"object\":\"chat.completion.chunk\",\"created\":1749468926,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_07871e2ad8\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"\\\":{\\\"\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BgV4gciPhVshqtDrIlfhC8blbUvTW\",\"object\":\"chat.completion.chunk\",\"created\":1749468926,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_07871e2ad8\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"type\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BgV4gciPhVshqtDrIlfhC8blbUvTW\",\"object\":\"chat.completion.chunk\",\"created\":1749468926,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_07871e2ad8\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"\\\":\\\"\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BgV4gciPhVshqtDrIlfhC8blbUvTW\",\"object\":\"chat.completion.chunk\",\"created\":1749468926,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_07871e2ad8\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"heading\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BgV4gciPhVshqtDrIlfhC8blbUvTW\",\"object\":\"chat.completion.chunk\",\"created\":1749468926,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_07871e2ad8\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"\\\",\\\"\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BgV4gciPhVshqtDrIlfhC8blbUvTW\",\"object\":\"chat.completion.chunk\",\"created\":1749468926,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_07871e2ad8\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"content\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BgV4gciPhVshqtDrIlfhC8blbUvTW\",\"object\":\"chat.completion.chunk\",\"created\":1749468926,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_07871e2ad8\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"\\\":[\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BgV4gciPhVshqtDrIlfhC8blbUvTW\",\"object\":\"chat.completion.chunk\",\"created\":1749468926,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_07871e2ad8\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"{\\\"\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BgV4gciPhVshqtDrIlfhC8blbUvTW\",\"object\":\"chat.completion.chunk\",\"created\":1749468926,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_07871e2ad8\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"type\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BgV4gciPhVshqtDrIlfhC8blbUvTW\",\"object\":\"chat.completion.chunk\",\"created\":1749468926,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_07871e2ad8\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"\\\":\\\"\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BgV4gciPhVshqtDrIlfhC8blbUvTW\",\"object\":\"chat.completion.chunk\",\"created\":1749468926,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_07871e2ad8\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"text\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BgV4gciPhVshqtDrIlfhC8blbUvTW\",\"object\":\"chat.completion.chunk\",\"created\":1749468926,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_07871e2ad8\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"\\\",\\\"\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BgV4gciPhVshqtDrIlfhC8blbUvTW\",\"object\":\"chat.completion.chunk\",\"created\":1749468926,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_07871e2ad8\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"text\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BgV4gciPhVshqtDrIlfhC8blbUvTW\",\"object\":\"chat.completion.chunk\",\"created\":1749468926,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_07871e2ad8\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"\\\":\\\"\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BgV4gciPhVshqtDrIlfhC8blbUvTW\",\"object\":\"chat.completion.chunk\",\"created\":1749468926,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_07871e2ad8\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"What's\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BgV4gciPhVshqtDrIlfhC8blbUvTW\",\"object\":\"chat.completion.chunk\",\"created\":1749468926,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_07871e2ad8\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\" up\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BgV4gciPhVshqtDrIlfhC8blbUvTW\",\"object\":\"chat.completion.chunk\",\"created\":1749468926,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_07871e2ad8\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\",\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BgV4gciPhVshqtDrIlfhC8blbUvTW\",\"object\":\"chat.completion.chunk\",\"created\":1749468926,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_07871e2ad8\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\" world\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BgV4gciPhVshqtDrIlfhC8blbUvTW\",\"object\":\"chat.completion.chunk\",\"created\":1749468926,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_07871e2ad8\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"!\\\"\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BgV4gciPhVshqtDrIlfhC8blbUvTW\",\"object\":\"chat.completion.chunk\",\"created\":1749468926,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_07871e2ad8\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"}\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BgV4gciPhVshqtDrIlfhC8blbUvTW\",\"object\":\"chat.completion.chunk\",\"created\":1749468926,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_07871e2ad8\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"],\\\"\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BgV4gciPhVshqtDrIlfhC8blbUvTW\",\"object\":\"chat.completion.chunk\",\"created\":1749468926,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_07871e2ad8\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"props\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BgV4gciPhVshqtDrIlfhC8blbUvTW\",\"object\":\"chat.completion.chunk\",\"created\":1749468926,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_07871e2ad8\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"\\\":{\\\"\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BgV4gciPhVshqtDrIlfhC8blbUvTW\",\"object\":\"chat.completion.chunk\",\"created\":1749468926,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_07871e2ad8\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"level\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BgV4gciPhVshqtDrIlfhC8blbUvTW\",\"object\":\"chat.completion.chunk\",\"created\":1749468926,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_07871e2ad8\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"\\\":\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BgV4gciPhVshqtDrIlfhC8blbUvTW\",\"object\":\"chat.completion.chunk\",\"created\":1749468926,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_07871e2ad8\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"1\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BgV4gciPhVshqtDrIlfhC8blbUvTW\",\"object\":\"chat.completion.chunk\",\"created\":1749468926,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_07871e2ad8\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"}}\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BgV4gciPhVshqtDrIlfhC8blbUvTW\",\"object\":\"chat.completion.chunk\",\"created\":1749468926,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_07871e2ad8\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"}\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BgV4gciPhVshqtDrIlfhC8blbUvTW\",\"object\":\"chat.completion.chunk\",\"created\":1749468926,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_07871e2ad8\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"]}\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BgV4gciPhVshqtDrIlfhC8blbUvTW\",\"object\":\"chat.completion.chunk\",\"created\":1749468926,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_07871e2ad8\",\"choices\":[{\"index\":0,\"delta\":{},\"logprobs\":null,\"finish_reason\":\"stop\"}]}\n\ndata: [DONE]\n\n", + "body": "data: {\"id\":\"chatcmpl-BhXn28AOy24UizleKHQEehqfvjIFQ\",\"object\":\"chat.completion.chunk\",\"created\":1749717692,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_a288987b44\",\"choices\":[{\"index\":0,\"delta\":{\"role\":\"assistant\",\"content\":null,\"tool_calls\":[{\"index\":0,\"id\":\"call_cGUGCCFZTEkpkynPxkPVpjvV\",\"type\":\"function\",\"function\":{\"name\":\"json\",\"arguments\":\"\"}}],\"refusal\":null},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BhXn28AOy24UizleKHQEehqfvjIFQ\",\"object\":\"chat.completion.chunk\",\"created\":1749717692,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_a288987b44\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"{\\\"\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BhXn28AOy24UizleKHQEehqfvjIFQ\",\"object\":\"chat.completion.chunk\",\"created\":1749717692,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_a288987b44\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"operations\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BhXn28AOy24UizleKHQEehqfvjIFQ\",\"object\":\"chat.completion.chunk\",\"created\":1749717692,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_a288987b44\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"\\\":[\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BhXn28AOy24UizleKHQEehqfvjIFQ\",\"object\":\"chat.completion.chunk\",\"created\":1749717692,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_a288987b44\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"{\\\"\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BhXn28AOy24UizleKHQEehqfvjIFQ\",\"object\":\"chat.completion.chunk\",\"created\":1749717692,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_a288987b44\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"type\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BhXn28AOy24UizleKHQEehqfvjIFQ\",\"object\":\"chat.completion.chunk\",\"created\":1749717692,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_a288987b44\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"\\\":\\\"\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BhXn28AOy24UizleKHQEehqfvjIFQ\",\"object\":\"chat.completion.chunk\",\"created\":1749717692,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_a288987b44\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"update\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BhXn28AOy24UizleKHQEehqfvjIFQ\",\"object\":\"chat.completion.chunk\",\"created\":1749717692,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_a288987b44\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"\\\",\\\"\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BhXn28AOy24UizleKHQEehqfvjIFQ\",\"object\":\"chat.completion.chunk\",\"created\":1749717692,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_a288987b44\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"id\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BhXn28AOy24UizleKHQEehqfvjIFQ\",\"object\":\"chat.completion.chunk\",\"created\":1749717692,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_a288987b44\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"\\\":\\\"\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BhXn28AOy24UizleKHQEehqfvjIFQ\",\"object\":\"chat.completion.chunk\",\"created\":1749717692,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_a288987b44\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"ref\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BhXn28AOy24UizleKHQEehqfvjIFQ\",\"object\":\"chat.completion.chunk\",\"created\":1749717692,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_a288987b44\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"1\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BhXn28AOy24UizleKHQEehqfvjIFQ\",\"object\":\"chat.completion.chunk\",\"created\":1749717692,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_a288987b44\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"$\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BhXn28AOy24UizleKHQEehqfvjIFQ\",\"object\":\"chat.completion.chunk\",\"created\":1749717692,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_a288987b44\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"\\\",\\\"\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BhXn28AOy24UizleKHQEehqfvjIFQ\",\"object\":\"chat.completion.chunk\",\"created\":1749717692,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_a288987b44\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"block\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BhXn28AOy24UizleKHQEehqfvjIFQ\",\"object\":\"chat.completion.chunk\",\"created\":1749717692,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_a288987b44\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"\\\":{\\\"\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BhXn28AOy24UizleKHQEehqfvjIFQ\",\"object\":\"chat.completion.chunk\",\"created\":1749717692,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_a288987b44\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"type\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BhXn28AOy24UizleKHQEehqfvjIFQ\",\"object\":\"chat.completion.chunk\",\"created\":1749717692,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_a288987b44\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"\\\":\\\"\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BhXn28AOy24UizleKHQEehqfvjIFQ\",\"object\":\"chat.completion.chunk\",\"created\":1749717692,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_a288987b44\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"heading\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BhXn28AOy24UizleKHQEehqfvjIFQ\",\"object\":\"chat.completion.chunk\",\"created\":1749717692,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_a288987b44\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"\\\",\\\"\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BhXn28AOy24UizleKHQEehqfvjIFQ\",\"object\":\"chat.completion.chunk\",\"created\":1749717692,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_a288987b44\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"content\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BhXn28AOy24UizleKHQEehqfvjIFQ\",\"object\":\"chat.completion.chunk\",\"created\":1749717692,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_a288987b44\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"\\\":[\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BhXn28AOy24UizleKHQEehqfvjIFQ\",\"object\":\"chat.completion.chunk\",\"created\":1749717692,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_a288987b44\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"{\\\"\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BhXn28AOy24UizleKHQEehqfvjIFQ\",\"object\":\"chat.completion.chunk\",\"created\":1749717692,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_a288987b44\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"type\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BhXn28AOy24UizleKHQEehqfvjIFQ\",\"object\":\"chat.completion.chunk\",\"created\":1749717692,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_a288987b44\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"\\\":\\\"\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BhXn28AOy24UizleKHQEehqfvjIFQ\",\"object\":\"chat.completion.chunk\",\"created\":1749717692,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_a288987b44\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"text\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BhXn28AOy24UizleKHQEehqfvjIFQ\",\"object\":\"chat.completion.chunk\",\"created\":1749717692,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_a288987b44\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"\\\",\\\"\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BhXn28AOy24UizleKHQEehqfvjIFQ\",\"object\":\"chat.completion.chunk\",\"created\":1749717692,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_a288987b44\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"text\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BhXn28AOy24UizleKHQEehqfvjIFQ\",\"object\":\"chat.completion.chunk\",\"created\":1749717692,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_a288987b44\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"\\\":\\\"\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BhXn28AOy24UizleKHQEehqfvjIFQ\",\"object\":\"chat.completion.chunk\",\"created\":1749717692,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_a288987b44\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"What's\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BhXn28AOy24UizleKHQEehqfvjIFQ\",\"object\":\"chat.completion.chunk\",\"created\":1749717692,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_a288987b44\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\" up\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BhXn28AOy24UizleKHQEehqfvjIFQ\",\"object\":\"chat.completion.chunk\",\"created\":1749717692,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_a288987b44\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\",\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BhXn28AOy24UizleKHQEehqfvjIFQ\",\"object\":\"chat.completion.chunk\",\"created\":1749717692,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_a288987b44\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\" world\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BhXn28AOy24UizleKHQEehqfvjIFQ\",\"object\":\"chat.completion.chunk\",\"created\":1749717692,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_a288987b44\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"!\\\"\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BhXn28AOy24UizleKHQEehqfvjIFQ\",\"object\":\"chat.completion.chunk\",\"created\":1749717692,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_a288987b44\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"}\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BhXn28AOy24UizleKHQEehqfvjIFQ\",\"object\":\"chat.completion.chunk\",\"created\":1749717692,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_a288987b44\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"],\\\"\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BhXn28AOy24UizleKHQEehqfvjIFQ\",\"object\":\"chat.completion.chunk\",\"created\":1749717692,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_a288987b44\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"props\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BhXn28AOy24UizleKHQEehqfvjIFQ\",\"object\":\"chat.completion.chunk\",\"created\":1749717692,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_a288987b44\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"\\\":{\\\"\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BhXn28AOy24UizleKHQEehqfvjIFQ\",\"object\":\"chat.completion.chunk\",\"created\":1749717692,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_a288987b44\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"level\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BhXn28AOy24UizleKHQEehqfvjIFQ\",\"object\":\"chat.completion.chunk\",\"created\":1749717692,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_a288987b44\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"\\\":\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BhXn28AOy24UizleKHQEehqfvjIFQ\",\"object\":\"chat.completion.chunk\",\"created\":1749717692,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_a288987b44\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"1\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BhXn28AOy24UizleKHQEehqfvjIFQ\",\"object\":\"chat.completion.chunk\",\"created\":1749717692,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_a288987b44\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"}}\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BhXn28AOy24UizleKHQEehqfvjIFQ\",\"object\":\"chat.completion.chunk\",\"created\":1749717692,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_a288987b44\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"}\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BhXn28AOy24UizleKHQEehqfvjIFQ\",\"object\":\"chat.completion.chunk\",\"created\":1749717692,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_a288987b44\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"]}\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BhXn28AOy24UizleKHQEehqfvjIFQ\",\"object\":\"chat.completion.chunk\",\"created\":1749717692,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_a288987b44\",\"choices\":[{\"index\":0,\"delta\":{},\"logprobs\":null,\"finish_reason\":\"stop\"}]}\n\ndata: [DONE]\n\n", "headers": [] } } \ No newline at end of file diff --git a/packages/xl-ai/src/api/formats/json/__snapshots__/json.test.ts/Update/__msw_snapshots__/openai.chat/gpt-4o-2024-08-06 (streaming)/update block type_1_b6f799a650384ed95bc3120ab70452bf.json b/packages/xl-ai/src/api/formats/json/__snapshots__/json.test.ts/Update/__msw_snapshots__/openai.chat/gpt-4o-2024-08-06 (streaming)/update block type_1_2ae2921e287bba5542cd135b44ba405b.json similarity index 52% rename from packages/xl-ai/src/api/formats/json/__snapshots__/json.test.ts/Update/__msw_snapshots__/openai.chat/gpt-4o-2024-08-06 (streaming)/update block type_1_b6f799a650384ed95bc3120ab70452bf.json rename to packages/xl-ai/src/api/formats/json/__snapshots__/json.test.ts/Update/__msw_snapshots__/openai.chat/gpt-4o-2024-08-06 (streaming)/update block type_1_2ae2921e287bba5542cd135b44ba405b.json index 2904c9427b..2a1b9500a0 100644 --- a/packages/xl-ai/src/api/formats/json/__snapshots__/json.test.ts/Update/__msw_snapshots__/openai.chat/gpt-4o-2024-08-06 (streaming)/update block type_1_b6f799a650384ed95bc3120ab70452bf.json +++ b/packages/xl-ai/src/api/formats/json/__snapshots__/json.test.ts/Update/__msw_snapshots__/openai.chat/gpt-4o-2024-08-06 (streaming)/update block type_1_2ae2921e287bba5542cd135b44ba405b.json @@ -2,14 +2,14 @@ "request": { "method": "POST", "url": "https://localhost:3000/ai?provider=openai&url=https%3A%2F%2Fapi.openai.com%2Fv1%2Fchat%2Fcompletions", - "body": "{\"model\":\"gpt-4o-2024-08-06\",\"temperature\":0,\"messages\":[{\"role\":\"system\",\"content\":\"You're manipulating a text document using JSON blocks. \\n Make sure to follow the json schema provided. When referencing ids they MUST be EXACTLY the same (including the trailing $). \\n This is the document as an array of JSON blocks (the cursor is BETWEEN two blocks as indicated by cursor: true):\"},{\"role\":\"system\",\"content\":\"[{\\\"id\\\":\\\"ref1$\\\",\\\"block\\\":{\\\"id\\\":\\\"ref1\\\",\\\"type\\\":\\\"paragraph\\\",\\\"props\\\":{\\\"textColor\\\":\\\"default\\\",\\\"backgroundColor\\\":\\\"default\\\",\\\"textAlignment\\\":\\\"left\\\"},\\\"content\\\":[{\\\"type\\\":\\\"text\\\",\\\"text\\\":\\\"Hello, world!\\\",\\\"styles\\\":{}}]}},{\\\"cursor\\\":true},{\\\"id\\\":\\\"ref2$\\\",\\\"block\\\":{\\\"id\\\":\\\"ref2\\\",\\\"type\\\":\\\"paragraph\\\",\\\"props\\\":{\\\"textColor\\\":\\\"default\\\",\\\"backgroundColor\\\":\\\"default\\\",\\\"textAlignment\\\":\\\"left\\\"},\\\"content\\\":[{\\\"type\\\":\\\"text\\\",\\\"text\\\":\\\"Hello, \\\",\\\"styles\\\":{}},{\\\"type\\\":\\\"mention\\\",\\\"props\\\":{\\\"user\\\":\\\"John Doe\\\"}},{\\\"type\\\":\\\"text\\\",\\\"text\\\":\\\"! \\\",\\\"styles\\\":{}},{\\\"type\\\":\\\"text\\\",\\\"text\\\":\\\"How are you doing?\\\",\\\"styles\\\":{\\\"bold\\\":true}},{\\\"type\\\":\\\"text\\\",\\\"text\\\":\\\" \\\",\\\"styles\\\":{}},{\\\"type\\\":\\\"text\\\",\\\"text\\\":\\\"This text is blue!\\\",\\\"styles\\\":{\\\"textColor\\\":\\\"blue\\\"}}]}},{\\\"id\\\":\\\"ref3$\\\",\\\"block\\\":{\\\"id\\\":\\\"ref3\\\",\\\"type\\\":\\\"paragraph\\\",\\\"props\\\":{\\\"textColor\\\":\\\"default\\\",\\\"backgroundColor\\\":\\\"default\\\",\\\"textAlignment\\\":\\\"left\\\"},\\\"content\\\":[{\\\"type\\\":\\\"text\\\",\\\"text\\\":\\\"Hello, world! \\\",\\\"styles\\\":{}},{\\\"type\\\":\\\"text\\\",\\\"text\\\":\\\"Bold text. \\\",\\\"styles\\\":{\\\"bold\\\":true}},{\\\"type\\\":\\\"link\\\",\\\"href\\\":\\\"https://www.google.com\\\",\\\"content\\\":[{\\\"type\\\":\\\"text\\\",\\\"text\\\":\\\"Link.\\\",\\\"styles\\\":{}}]}]}}]\"},{\"role\":\"system\",\"content\":\"The user asks you to do the following:\"},{\"role\":\"user\",\"content\":\"make the first paragraph a heading\"},{\"role\":\"system\",\"content\":\"First, determine what part of the document the user is talking about. You SHOULD probably take cursor info into account if needed.\\n EXAMPLE: if user says \\\"below\\\" (without pointing to a specific part of the document) he / she probably indicates the block(s) after the cursor. \\n EXAMPLE: If you want to insert content AT the cursor position (UNLESS indicated otherwise by the user), then you need `referenceId` to point to the block before the cursor with position `after` (or block below and `before`).\\n \\n Prefer updating existing blocks over removing and adding (but this also depends on the user's question).\"}],\"tool_choice\":{\"type\":\"function\",\"function\":{\"name\":\"json\"}},\"tools\":[{\"type\":\"function\",\"function\":{\"name\":\"json\",\"description\":\"Respond with a JSON object.\",\"parameters\":{\"type\":\"object\",\"properties\":{\"operations\":{\"type\":\"array\",\"items\":{\"anyOf\":[{\"type\":\"object\",\"description\":\"Update a block, the new block will replace the existing block.\",\"properties\":{\"type\":{\"type\":\"string\",\"enum\":[\"update\"]},\"id\":{\"type\":\"string\",\"description\":\"id of block to update\"},\"block\":{\"$ref\":\"#/$defs/block\"}},\"required\":[\"type\",\"id\",\"block\"],\"additionalProperties\":false},{\"type\":\"object\",\"description\":\"Insert new blocks\",\"properties\":{\"type\":{\"type\":\"string\",\"enum\":[\"add\"]},\"referenceId\":{\"type\":\"string\",\"description\":\"MUST be an id of a block in the document\"},\"position\":{\"type\":\"string\",\"enum\":[\"before\",\"after\"],\"description\":\"`after` to add blocks AFTER (below) the block with `referenceId`, `before` to add the block BEFORE (above)\"},\"blocks\":{\"items\":{\"$ref\":\"#/$defs/block\"},\"type\":\"array\"}},\"required\":[\"type\",\"referenceId\",\"position\",\"blocks\"],\"additionalProperties\":false},{\"type\":\"object\",\"description\":\"Delete a block\",\"properties\":{\"type\":{\"type\":\"string\",\"enum\":[\"delete\"]},\"id\":{\"type\":\"string\",\"description\":\"id of block to delete\"}},\"required\":[\"type\",\"id\"],\"additionalProperties\":false}]}}},\"additionalProperties\":false,\"required\":[\"operations\"],\"$defs\":{\"styles\":{\"type\":\"object\",\"properties\":{\"bold\":{\"type\":\"boolean\"},\"italic\":{\"type\":\"boolean\"},\"underline\":{\"type\":\"boolean\"},\"strike\":{\"type\":\"boolean\"},\"code\":{\"type\":\"boolean\"},\"textColor\":{\"type\":\"string\"},\"backgroundColor\":{\"type\":\"string\"}},\"additionalProperties\":false},\"styledtext\":{\"type\":\"object\",\"properties\":{\"type\":{\"type\":\"string\",\"enum\":[\"text\"]},\"text\":{\"type\":\"string\"},\"styles\":{\"$ref\":\"#/$defs/styles\"}},\"additionalProperties\":false,\"required\":[\"type\",\"text\"]},\"inlinecontent\":{\"type\":\"array\",\"items\":{\"anyOf\":[{\"type\":\"object\",\"properties\":{\"type\":{\"type\":\"string\",\"enum\":[\"mention\"]},\"props\":{\"type\":\"object\",\"properties\":{\"user\":{\"type\":\"string\"}},\"additionalProperties\":false}},\"additionalProperties\":false,\"required\":[\"type\"]},{\"$ref\":\"#/$defs/styledtext\"},{\"type\":\"object\",\"properties\":{\"type\":{\"type\":\"string\",\"enum\":[\"link\"]},\"content\":{\"type\":\"array\",\"items\":{\"$ref\":\"#/$defs/styledtext\"}},\"href\":{\"type\":\"string\"}},\"additionalProperties\":false,\"required\":[\"type\",\"href\",\"content\"]}]}},\"block\":{\"anyOf\":[{\"type\":\"object\",\"properties\":{\"type\":{\"type\":\"string\",\"enum\":[\"paragraph\",\"quote\",\"bulletListItem\",\"numberedListItem\"]},\"content\":{\"$ref\":\"#/$defs/inlinecontent\"},\"props\":{\"type\":\"object\",\"properties\":{},\"additionalProperties\":false}},\"additionalProperties\":false,\"required\":[\"type\"]},{\"type\":\"object\",\"properties\":{\"type\":{\"type\":\"string\",\"enum\":[\"heading\"]},\"content\":{\"$ref\":\"#/$defs/inlinecontent\"},\"props\":{\"type\":\"object\",\"properties\":{\"level\":{\"type\":\"number\",\"enum\":[1,2,3]}},\"additionalProperties\":false}},\"additionalProperties\":false,\"required\":[\"type\"]},{\"type\":\"object\",\"properties\":{\"type\":{\"type\":\"string\",\"enum\":[\"codeBlock\"]},\"content\":{\"$ref\":\"#/$defs/inlinecontent\"},\"props\":{\"type\":\"object\",\"properties\":{\"language\":{\"type\":\"string\"}},\"additionalProperties\":false}},\"additionalProperties\":false,\"required\":[\"type\"]},{\"type\":\"object\",\"properties\":{\"type\":{\"type\":\"string\",\"enum\":[\"checkListItem\"]},\"content\":{\"$ref\":\"#/$defs/inlinecontent\"},\"props\":{\"type\":\"object\",\"properties\":{\"checked\":{\"type\":\"boolean\"}},\"additionalProperties\":false}},\"additionalProperties\":false,\"required\":[\"type\"]},{\"type\":\"object\",\"properties\":{\"type\":{\"type\":\"string\",\"enum\":[\"table\"]},\"content\":{\"type\":\"object\",\"properties\":{}},\"props\":{\"type\":\"object\",\"properties\":{},\"additionalProperties\":false}},\"additionalProperties\":false,\"required\":[\"type\"]}]}}}}}],\"stream\":true}", + "body": "{\"model\":\"gpt-4o-2024-08-06\",\"temperature\":0,\"messages\":[{\"role\":\"system\",\"content\":\"You're manipulating a text document using JSON blocks. \\n Make sure to follow the json schema provided. When referencing ids they MUST be EXACTLY the same (including the trailing $). \\n This is the document as an array of JSON blocks (the cursor is BETWEEN two blocks as indicated by cursor: true):\"},{\"role\":\"system\",\"content\":\"[{\\\"id\\\":\\\"ref1$\\\",\\\"block\\\":{\\\"id\\\":\\\"ref1\\\",\\\"type\\\":\\\"paragraph\\\",\\\"props\\\":{\\\"textColor\\\":\\\"default\\\",\\\"backgroundColor\\\":\\\"default\\\",\\\"textAlignment\\\":\\\"left\\\"},\\\"content\\\":[{\\\"type\\\":\\\"text\\\",\\\"text\\\":\\\"Hello, world!\\\",\\\"styles\\\":{}}]}},{\\\"cursor\\\":true},{\\\"id\\\":\\\"ref2$\\\",\\\"block\\\":{\\\"id\\\":\\\"ref2\\\",\\\"type\\\":\\\"paragraph\\\",\\\"props\\\":{\\\"textColor\\\":\\\"default\\\",\\\"backgroundColor\\\":\\\"default\\\",\\\"textAlignment\\\":\\\"left\\\"},\\\"content\\\":[{\\\"type\\\":\\\"text\\\",\\\"text\\\":\\\"Hello, \\\",\\\"styles\\\":{}},{\\\"type\\\":\\\"mention\\\",\\\"props\\\":{\\\"user\\\":\\\"John Doe\\\"}},{\\\"type\\\":\\\"text\\\",\\\"text\\\":\\\"! \\\",\\\"styles\\\":{}},{\\\"type\\\":\\\"text\\\",\\\"text\\\":\\\"How are you doing?\\\",\\\"styles\\\":{\\\"bold\\\":true}},{\\\"type\\\":\\\"text\\\",\\\"text\\\":\\\" \\\",\\\"styles\\\":{}},{\\\"type\\\":\\\"text\\\",\\\"text\\\":\\\"This text is blue!\\\",\\\"styles\\\":{\\\"textColor\\\":\\\"blue\\\"}}]}},{\\\"id\\\":\\\"ref3$\\\",\\\"block\\\":{\\\"id\\\":\\\"ref3\\\",\\\"type\\\":\\\"paragraph\\\",\\\"props\\\":{\\\"textColor\\\":\\\"default\\\",\\\"backgroundColor\\\":\\\"default\\\",\\\"textAlignment\\\":\\\"left\\\"},\\\"content\\\":[{\\\"type\\\":\\\"text\\\",\\\"text\\\":\\\"Hello, world! \\\",\\\"styles\\\":{}},{\\\"type\\\":\\\"text\\\",\\\"text\\\":\\\"Bold text. \\\",\\\"styles\\\":{\\\"bold\\\":true}},{\\\"type\\\":\\\"link\\\",\\\"href\\\":\\\"https://www.google.com\\\",\\\"content\\\":[{\\\"type\\\":\\\"text\\\",\\\"text\\\":\\\"Link.\\\",\\\"styles\\\":{}}]}]}}]\"},{\"role\":\"system\",\"content\":\"The user asks you to do the following:\"},{\"role\":\"user\",\"content\":\"make the first paragraph a heading\"},{\"role\":\"system\",\"content\":\"First, determine what part of the document the user is talking about. You SHOULD probably take cursor info into account if needed.\\n EXAMPLE: if user says \\\"below\\\" (without pointing to a specific part of the document) he / she probably indicates the block(s) after the cursor. \\n EXAMPLE: If you want to insert content AT the cursor position (UNLESS indicated otherwise by the user), then you need `referenceId` to point to the block before the cursor with position `after` (or block below and `before`).\\n \\n Prefer updating existing blocks over removing and adding (but this also depends on the user's question).\"}],\"tool_choice\":{\"type\":\"function\",\"function\":{\"name\":\"json\"}},\"tools\":[{\"type\":\"function\",\"function\":{\"name\":\"json\",\"description\":\"Respond with a JSON object.\",\"parameters\":{\"type\":\"object\",\"properties\":{\"operations\":{\"type\":\"array\",\"items\":{\"anyOf\":[{\"type\":\"object\",\"description\":\"Update a block, the new block will replace the existing block.\",\"properties\":{\"type\":{\"type\":\"string\",\"enum\":[\"update\"]},\"id\":{\"type\":\"string\",\"description\":\"id of block to update\"},\"block\":{\"$ref\":\"#/$defs/block\"}},\"required\":[\"type\",\"id\",\"block\"],\"additionalProperties\":false},{\"type\":\"object\",\"description\":\"Insert new blocks\",\"properties\":{\"type\":{\"type\":\"string\",\"enum\":[\"add\"]},\"referenceId\":{\"type\":\"string\",\"description\":\"MUST be an id of a block in the document\"},\"position\":{\"type\":\"string\",\"enum\":[\"before\",\"after\"],\"description\":\"`after` to add blocks AFTER (below) the block with `referenceId`, `before` to add the block BEFORE (above)\"},\"blocks\":{\"items\":{\"$ref\":\"#/$defs/block\"},\"type\":\"array\"}},\"required\":[\"type\",\"referenceId\",\"position\",\"blocks\"],\"additionalProperties\":false},{\"type\":\"object\",\"description\":\"Delete a block\",\"properties\":{\"type\":{\"type\":\"string\",\"enum\":[\"delete\"]},\"id\":{\"type\":\"string\",\"description\":\"id of block to delete\"}},\"required\":[\"type\",\"id\"],\"additionalProperties\":false}]}}},\"additionalProperties\":false,\"required\":[\"operations\"],\"$defs\":{\"styles\":{\"type\":\"object\",\"properties\":{\"bold\":{\"type\":\"boolean\"},\"italic\":{\"type\":\"boolean\"},\"underline\":{\"type\":\"boolean\"},\"strike\":{\"type\":\"boolean\"},\"code\":{\"type\":\"boolean\"},\"textColor\":{\"type\":\"string\"},\"backgroundColor\":{\"type\":\"string\"}},\"additionalProperties\":false},\"styledtext\":{\"type\":\"object\",\"properties\":{\"type\":{\"type\":\"string\",\"enum\":[\"text\"]},\"text\":{\"type\":\"string\"},\"styles\":{\"$ref\":\"#/$defs/styles\"}},\"additionalProperties\":false,\"required\":[\"type\",\"text\"]},\"inlinecontent\":{\"type\":\"array\",\"items\":{\"anyOf\":[{\"type\":\"object\",\"properties\":{\"type\":{\"type\":\"string\",\"enum\":[\"mention\"]},\"props\":{\"type\":\"object\",\"properties\":{\"user\":{\"type\":\"string\"}},\"additionalProperties\":false}},\"additionalProperties\":false,\"required\":[\"type\"]},{\"$ref\":\"#/$defs/styledtext\"},{\"type\":\"object\",\"properties\":{\"type\":{\"type\":\"string\",\"enum\":[\"link\"]},\"content\":{\"type\":\"array\",\"items\":{\"$ref\":\"#/$defs/styledtext\"}},\"href\":{\"type\":\"string\"}},\"additionalProperties\":false,\"required\":[\"type\",\"href\",\"content\"]}]}},\"block\":{\"anyOf\":[{\"type\":\"object\",\"properties\":{\"type\":{\"type\":\"string\",\"enum\":[\"paragraph\",\"quote\",\"toggleListItem\",\"bulletListItem\",\"numberedListItem\"]},\"content\":{\"$ref\":\"#/$defs/inlinecontent\"},\"props\":{\"type\":\"object\",\"properties\":{},\"additionalProperties\":false}},\"additionalProperties\":false,\"required\":[\"type\"]},{\"type\":\"object\",\"properties\":{\"type\":{\"type\":\"string\",\"enum\":[\"heading\"]},\"content\":{\"$ref\":\"#/$defs/inlinecontent\"},\"props\":{\"type\":\"object\",\"properties\":{\"level\":{\"type\":\"number\",\"enum\":[1,2,3]},\"isTogglable\":{\"type\":\"boolean\"}},\"additionalProperties\":false}},\"additionalProperties\":false,\"required\":[\"type\"]},{\"type\":\"object\",\"properties\":{\"type\":{\"type\":\"string\",\"enum\":[\"codeBlock\"]},\"content\":{\"$ref\":\"#/$defs/inlinecontent\"},\"props\":{\"type\":\"object\",\"properties\":{\"language\":{\"type\":\"string\"}},\"additionalProperties\":false}},\"additionalProperties\":false,\"required\":[\"type\"]},{\"type\":\"object\",\"properties\":{\"type\":{\"type\":\"string\",\"enum\":[\"checkListItem\"]},\"content\":{\"$ref\":\"#/$defs/inlinecontent\"},\"props\":{\"type\":\"object\",\"properties\":{\"checked\":{\"type\":\"boolean\"}},\"additionalProperties\":false}},\"additionalProperties\":false,\"required\":[\"type\"]},{\"type\":\"object\",\"properties\":{\"type\":{\"type\":\"string\",\"enum\":[\"table\"]},\"content\":{\"type\":\"object\",\"properties\":{}},\"props\":{\"type\":\"object\",\"properties\":{},\"additionalProperties\":false}},\"additionalProperties\":false,\"required\":[\"type\"]}]}}}}}],\"stream\":true}", "headers": [], "cookies": [] }, "response": { "status": 200, "statusText": "", - "body": "data: {\"id\":\"chatcmpl-BgV4d3ajTC7pUbdG3e7LfBw0SwQ6N\",\"object\":\"chat.completion.chunk\",\"created\":1749468923,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_07871e2ad8\",\"choices\":[{\"index\":0,\"delta\":{\"role\":\"assistant\",\"content\":null,\"tool_calls\":[{\"index\":0,\"id\":\"call_DDFAhFjCu4JjHl1VbN8idhRI\",\"type\":\"function\",\"function\":{\"name\":\"json\",\"arguments\":\"\"}}],\"refusal\":null},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BgV4d3ajTC7pUbdG3e7LfBw0SwQ6N\",\"object\":\"chat.completion.chunk\",\"created\":1749468923,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_07871e2ad8\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"{\\\"\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BgV4d3ajTC7pUbdG3e7LfBw0SwQ6N\",\"object\":\"chat.completion.chunk\",\"created\":1749468923,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_07871e2ad8\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"operations\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BgV4d3ajTC7pUbdG3e7LfBw0SwQ6N\",\"object\":\"chat.completion.chunk\",\"created\":1749468923,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_07871e2ad8\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"\\\":[\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BgV4d3ajTC7pUbdG3e7LfBw0SwQ6N\",\"object\":\"chat.completion.chunk\",\"created\":1749468923,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_07871e2ad8\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"{\\\"\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BgV4d3ajTC7pUbdG3e7LfBw0SwQ6N\",\"object\":\"chat.completion.chunk\",\"created\":1749468923,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_07871e2ad8\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"type\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BgV4d3ajTC7pUbdG3e7LfBw0SwQ6N\",\"object\":\"chat.completion.chunk\",\"created\":1749468923,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_07871e2ad8\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"\\\":\\\"\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BgV4d3ajTC7pUbdG3e7LfBw0SwQ6N\",\"object\":\"chat.completion.chunk\",\"created\":1749468923,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_07871e2ad8\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"update\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BgV4d3ajTC7pUbdG3e7LfBw0SwQ6N\",\"object\":\"chat.completion.chunk\",\"created\":1749468923,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_07871e2ad8\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"\\\",\\\"\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BgV4d3ajTC7pUbdG3e7LfBw0SwQ6N\",\"object\":\"chat.completion.chunk\",\"created\":1749468923,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_07871e2ad8\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"id\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BgV4d3ajTC7pUbdG3e7LfBw0SwQ6N\",\"object\":\"chat.completion.chunk\",\"created\":1749468923,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_07871e2ad8\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"\\\":\\\"\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BgV4d3ajTC7pUbdG3e7LfBw0SwQ6N\",\"object\":\"chat.completion.chunk\",\"created\":1749468923,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_07871e2ad8\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"ref\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BgV4d3ajTC7pUbdG3e7LfBw0SwQ6N\",\"object\":\"chat.completion.chunk\",\"created\":1749468923,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_07871e2ad8\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"1\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BgV4d3ajTC7pUbdG3e7LfBw0SwQ6N\",\"object\":\"chat.completion.chunk\",\"created\":1749468923,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_07871e2ad8\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"$\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BgV4d3ajTC7pUbdG3e7LfBw0SwQ6N\",\"object\":\"chat.completion.chunk\",\"created\":1749468923,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_07871e2ad8\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"\\\",\\\"\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BgV4d3ajTC7pUbdG3e7LfBw0SwQ6N\",\"object\":\"chat.completion.chunk\",\"created\":1749468923,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_07871e2ad8\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"block\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BgV4d3ajTC7pUbdG3e7LfBw0SwQ6N\",\"object\":\"chat.completion.chunk\",\"created\":1749468923,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_07871e2ad8\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"\\\":{\\\"\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BgV4d3ajTC7pUbdG3e7LfBw0SwQ6N\",\"object\":\"chat.completion.chunk\",\"created\":1749468923,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_07871e2ad8\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"type\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BgV4d3ajTC7pUbdG3e7LfBw0SwQ6N\",\"object\":\"chat.completion.chunk\",\"created\":1749468923,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_07871e2ad8\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"\\\":\\\"\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BgV4d3ajTC7pUbdG3e7LfBw0SwQ6N\",\"object\":\"chat.completion.chunk\",\"created\":1749468923,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_07871e2ad8\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"heading\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BgV4d3ajTC7pUbdG3e7LfBw0SwQ6N\",\"object\":\"chat.completion.chunk\",\"created\":1749468923,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_07871e2ad8\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"\\\",\\\"\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BgV4d3ajTC7pUbdG3e7LfBw0SwQ6N\",\"object\":\"chat.completion.chunk\",\"created\":1749468923,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_07871e2ad8\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"content\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BgV4d3ajTC7pUbdG3e7LfBw0SwQ6N\",\"object\":\"chat.completion.chunk\",\"created\":1749468923,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_07871e2ad8\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"\\\":[\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BgV4d3ajTC7pUbdG3e7LfBw0SwQ6N\",\"object\":\"chat.completion.chunk\",\"created\":1749468923,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_07871e2ad8\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"{\\\"\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BgV4d3ajTC7pUbdG3e7LfBw0SwQ6N\",\"object\":\"chat.completion.chunk\",\"created\":1749468923,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_07871e2ad8\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"type\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BgV4d3ajTC7pUbdG3e7LfBw0SwQ6N\",\"object\":\"chat.completion.chunk\",\"created\":1749468923,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_07871e2ad8\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"\\\":\\\"\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BgV4d3ajTC7pUbdG3e7LfBw0SwQ6N\",\"object\":\"chat.completion.chunk\",\"created\":1749468923,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_07871e2ad8\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"text\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BgV4d3ajTC7pUbdG3e7LfBw0SwQ6N\",\"object\":\"chat.completion.chunk\",\"created\":1749468923,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_07871e2ad8\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"\\\",\\\"\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BgV4d3ajTC7pUbdG3e7LfBw0SwQ6N\",\"object\":\"chat.completion.chunk\",\"created\":1749468923,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_07871e2ad8\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"text\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BgV4d3ajTC7pUbdG3e7LfBw0SwQ6N\",\"object\":\"chat.completion.chunk\",\"created\":1749468923,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_07871e2ad8\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"\\\":\\\"\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BgV4d3ajTC7pUbdG3e7LfBw0SwQ6N\",\"object\":\"chat.completion.chunk\",\"created\":1749468923,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_07871e2ad8\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"Hello\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BgV4d3ajTC7pUbdG3e7LfBw0SwQ6N\",\"object\":\"chat.completion.chunk\",\"created\":1749468923,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_07871e2ad8\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\",\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BgV4d3ajTC7pUbdG3e7LfBw0SwQ6N\",\"object\":\"chat.completion.chunk\",\"created\":1749468923,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_07871e2ad8\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\" world\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BgV4d3ajTC7pUbdG3e7LfBw0SwQ6N\",\"object\":\"chat.completion.chunk\",\"created\":1749468923,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_07871e2ad8\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"!\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BgV4d3ajTC7pUbdG3e7LfBw0SwQ6N\",\"object\":\"chat.completion.chunk\",\"created\":1749468923,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_07871e2ad8\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"\\\",\\\"\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BgV4d3ajTC7pUbdG3e7LfBw0SwQ6N\",\"object\":\"chat.completion.chunk\",\"created\":1749468923,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_07871e2ad8\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"styles\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BgV4d3ajTC7pUbdG3e7LfBw0SwQ6N\",\"object\":\"chat.completion.chunk\",\"created\":1749468923,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_07871e2ad8\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"\\\":\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BgV4d3ajTC7pUbdG3e7LfBw0SwQ6N\",\"object\":\"chat.completion.chunk\",\"created\":1749468923,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_07871e2ad8\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"{\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BgV4d3ajTC7pUbdG3e7LfBw0SwQ6N\",\"object\":\"chat.completion.chunk\",\"created\":1749468923,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_07871e2ad8\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"}}\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BgV4d3ajTC7pUbdG3e7LfBw0SwQ6N\",\"object\":\"chat.completion.chunk\",\"created\":1749468923,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_07871e2ad8\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"],\\\"\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BgV4d3ajTC7pUbdG3e7LfBw0SwQ6N\",\"object\":\"chat.completion.chunk\",\"created\":1749468923,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_07871e2ad8\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"props\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BgV4d3ajTC7pUbdG3e7LfBw0SwQ6N\",\"object\":\"chat.completion.chunk\",\"created\":1749468923,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_07871e2ad8\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"\\\":{\\\"\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BgV4d3ajTC7pUbdG3e7LfBw0SwQ6N\",\"object\":\"chat.completion.chunk\",\"created\":1749468923,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_07871e2ad8\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"level\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BgV4d3ajTC7pUbdG3e7LfBw0SwQ6N\",\"object\":\"chat.completion.chunk\",\"created\":1749468923,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_07871e2ad8\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"\\\":\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BgV4d3ajTC7pUbdG3e7LfBw0SwQ6N\",\"object\":\"chat.completion.chunk\",\"created\":1749468923,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_07871e2ad8\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"1\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BgV4d3ajTC7pUbdG3e7LfBw0SwQ6N\",\"object\":\"chat.completion.chunk\",\"created\":1749468923,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_07871e2ad8\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"}}\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BgV4d3ajTC7pUbdG3e7LfBw0SwQ6N\",\"object\":\"chat.completion.chunk\",\"created\":1749468923,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_07871e2ad8\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"}\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BgV4d3ajTC7pUbdG3e7LfBw0SwQ6N\",\"object\":\"chat.completion.chunk\",\"created\":1749468923,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_07871e2ad8\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"]}\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BgV4d3ajTC7pUbdG3e7LfBw0SwQ6N\",\"object\":\"chat.completion.chunk\",\"created\":1749468923,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_07871e2ad8\",\"choices\":[{\"index\":0,\"delta\":{},\"logprobs\":null,\"finish_reason\":\"stop\"}]}\n\ndata: [DONE]\n\n", + "body": "data: {\"id\":\"chatcmpl-BhXn05N0qxFS68Zm3d7XDQXFtVZwQ\",\"object\":\"chat.completion.chunk\",\"created\":1749717690,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_a288987b44\",\"choices\":[{\"index\":0,\"delta\":{\"role\":\"assistant\",\"content\":null,\"tool_calls\":[{\"index\":0,\"id\":\"call_jRX2hogAWV0oGUdOYCBFzuxq\",\"type\":\"function\",\"function\":{\"name\":\"json\",\"arguments\":\"\"}}],\"refusal\":null},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BhXn05N0qxFS68Zm3d7XDQXFtVZwQ\",\"object\":\"chat.completion.chunk\",\"created\":1749717690,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_a288987b44\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"{\\\"\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BhXn05N0qxFS68Zm3d7XDQXFtVZwQ\",\"object\":\"chat.completion.chunk\",\"created\":1749717690,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_a288987b44\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"operations\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BhXn05N0qxFS68Zm3d7XDQXFtVZwQ\",\"object\":\"chat.completion.chunk\",\"created\":1749717690,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_a288987b44\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"\\\":[\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BhXn05N0qxFS68Zm3d7XDQXFtVZwQ\",\"object\":\"chat.completion.chunk\",\"created\":1749717690,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_a288987b44\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"{\\\"\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BhXn05N0qxFS68Zm3d7XDQXFtVZwQ\",\"object\":\"chat.completion.chunk\",\"created\":1749717690,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_a288987b44\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"type\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BhXn05N0qxFS68Zm3d7XDQXFtVZwQ\",\"object\":\"chat.completion.chunk\",\"created\":1749717690,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_a288987b44\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"\\\":\\\"\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BhXn05N0qxFS68Zm3d7XDQXFtVZwQ\",\"object\":\"chat.completion.chunk\",\"created\":1749717690,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_a288987b44\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"update\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BhXn05N0qxFS68Zm3d7XDQXFtVZwQ\",\"object\":\"chat.completion.chunk\",\"created\":1749717690,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_a288987b44\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"\\\",\\\"\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BhXn05N0qxFS68Zm3d7XDQXFtVZwQ\",\"object\":\"chat.completion.chunk\",\"created\":1749717690,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_a288987b44\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"id\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BhXn05N0qxFS68Zm3d7XDQXFtVZwQ\",\"object\":\"chat.completion.chunk\",\"created\":1749717690,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_a288987b44\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"\\\":\\\"\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BhXn05N0qxFS68Zm3d7XDQXFtVZwQ\",\"object\":\"chat.completion.chunk\",\"created\":1749717690,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_a288987b44\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"ref\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BhXn05N0qxFS68Zm3d7XDQXFtVZwQ\",\"object\":\"chat.completion.chunk\",\"created\":1749717690,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_a288987b44\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"1\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BhXn05N0qxFS68Zm3d7XDQXFtVZwQ\",\"object\":\"chat.completion.chunk\",\"created\":1749717690,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_a288987b44\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"$\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BhXn05N0qxFS68Zm3d7XDQXFtVZwQ\",\"object\":\"chat.completion.chunk\",\"created\":1749717690,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_a288987b44\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"\\\",\\\"\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BhXn05N0qxFS68Zm3d7XDQXFtVZwQ\",\"object\":\"chat.completion.chunk\",\"created\":1749717690,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_a288987b44\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"block\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BhXn05N0qxFS68Zm3d7XDQXFtVZwQ\",\"object\":\"chat.completion.chunk\",\"created\":1749717690,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_a288987b44\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"\\\":{\\\"\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BhXn05N0qxFS68Zm3d7XDQXFtVZwQ\",\"object\":\"chat.completion.chunk\",\"created\":1749717690,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_a288987b44\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"type\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BhXn05N0qxFS68Zm3d7XDQXFtVZwQ\",\"object\":\"chat.completion.chunk\",\"created\":1749717690,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_a288987b44\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"\\\":\\\"\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BhXn05N0qxFS68Zm3d7XDQXFtVZwQ\",\"object\":\"chat.completion.chunk\",\"created\":1749717690,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_a288987b44\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"heading\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BhXn05N0qxFS68Zm3d7XDQXFtVZwQ\",\"object\":\"chat.completion.chunk\",\"created\":1749717690,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_a288987b44\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"\\\",\\\"\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BhXn05N0qxFS68Zm3d7XDQXFtVZwQ\",\"object\":\"chat.completion.chunk\",\"created\":1749717690,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_a288987b44\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"content\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BhXn05N0qxFS68Zm3d7XDQXFtVZwQ\",\"object\":\"chat.completion.chunk\",\"created\":1749717690,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_a288987b44\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"\\\":[\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BhXn05N0qxFS68Zm3d7XDQXFtVZwQ\",\"object\":\"chat.completion.chunk\",\"created\":1749717690,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_a288987b44\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"{\\\"\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BhXn05N0qxFS68Zm3d7XDQXFtVZwQ\",\"object\":\"chat.completion.chunk\",\"created\":1749717690,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_a288987b44\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"type\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BhXn05N0qxFS68Zm3d7XDQXFtVZwQ\",\"object\":\"chat.completion.chunk\",\"created\":1749717690,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_a288987b44\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"\\\":\\\"\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BhXn05N0qxFS68Zm3d7XDQXFtVZwQ\",\"object\":\"chat.completion.chunk\",\"created\":1749717690,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_a288987b44\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"text\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BhXn05N0qxFS68Zm3d7XDQXFtVZwQ\",\"object\":\"chat.completion.chunk\",\"created\":1749717690,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_a288987b44\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"\\\",\\\"\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BhXn05N0qxFS68Zm3d7XDQXFtVZwQ\",\"object\":\"chat.completion.chunk\",\"created\":1749717690,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_a288987b44\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"text\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BhXn05N0qxFS68Zm3d7XDQXFtVZwQ\",\"object\":\"chat.completion.chunk\",\"created\":1749717690,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_a288987b44\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"\\\":\\\"\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BhXn05N0qxFS68Zm3d7XDQXFtVZwQ\",\"object\":\"chat.completion.chunk\",\"created\":1749717690,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_a288987b44\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"Hello\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BhXn05N0qxFS68Zm3d7XDQXFtVZwQ\",\"object\":\"chat.completion.chunk\",\"created\":1749717690,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_a288987b44\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\",\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BhXn05N0qxFS68Zm3d7XDQXFtVZwQ\",\"object\":\"chat.completion.chunk\",\"created\":1749717690,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_a288987b44\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\" world\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BhXn05N0qxFS68Zm3d7XDQXFtVZwQ\",\"object\":\"chat.completion.chunk\",\"created\":1749717690,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_a288987b44\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"!\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BhXn05N0qxFS68Zm3d7XDQXFtVZwQ\",\"object\":\"chat.completion.chunk\",\"created\":1749717690,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_a288987b44\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"\\\",\\\"\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BhXn05N0qxFS68Zm3d7XDQXFtVZwQ\",\"object\":\"chat.completion.chunk\",\"created\":1749717690,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_a288987b44\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"styles\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BhXn05N0qxFS68Zm3d7XDQXFtVZwQ\",\"object\":\"chat.completion.chunk\",\"created\":1749717690,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_a288987b44\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"\\\":\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BhXn05N0qxFS68Zm3d7XDQXFtVZwQ\",\"object\":\"chat.completion.chunk\",\"created\":1749717690,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_a288987b44\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"{\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BhXn05N0qxFS68Zm3d7XDQXFtVZwQ\",\"object\":\"chat.completion.chunk\",\"created\":1749717690,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_a288987b44\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"}}\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BhXn05N0qxFS68Zm3d7XDQXFtVZwQ\",\"object\":\"chat.completion.chunk\",\"created\":1749717690,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_a288987b44\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"],\\\"\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BhXn05N0qxFS68Zm3d7XDQXFtVZwQ\",\"object\":\"chat.completion.chunk\",\"created\":1749717690,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_a288987b44\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"props\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BhXn05N0qxFS68Zm3d7XDQXFtVZwQ\",\"object\":\"chat.completion.chunk\",\"created\":1749717690,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_a288987b44\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"\\\":{\\\"\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BhXn05N0qxFS68Zm3d7XDQXFtVZwQ\",\"object\":\"chat.completion.chunk\",\"created\":1749717690,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_a288987b44\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"level\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BhXn05N0qxFS68Zm3d7XDQXFtVZwQ\",\"object\":\"chat.completion.chunk\",\"created\":1749717690,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_a288987b44\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"\\\":\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BhXn05N0qxFS68Zm3d7XDQXFtVZwQ\",\"object\":\"chat.completion.chunk\",\"created\":1749717690,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_a288987b44\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"1\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BhXn05N0qxFS68Zm3d7XDQXFtVZwQ\",\"object\":\"chat.completion.chunk\",\"created\":1749717690,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_a288987b44\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"}}\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BhXn05N0qxFS68Zm3d7XDQXFtVZwQ\",\"object\":\"chat.completion.chunk\",\"created\":1749717690,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_a288987b44\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"}\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BhXn05N0qxFS68Zm3d7XDQXFtVZwQ\",\"object\":\"chat.completion.chunk\",\"created\":1749717690,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_a288987b44\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"]}\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BhXn05N0qxFS68Zm3d7XDQXFtVZwQ\",\"object\":\"chat.completion.chunk\",\"created\":1749717690,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_a288987b44\",\"choices\":[{\"index\":0,\"delta\":{},\"logprobs\":null,\"finish_reason\":\"stop\"}]}\n\ndata: [DONE]\n\n", "headers": [] } } \ No newline at end of file From d322a9f10acfd7cbcefde8e0e84092c89fd8934b Mon Sep 17 00:00:00 2001 From: yousefed Date: Thu, 12 Jun 2025 16:03:25 +0200 Subject: [PATCH 20/34] update snaps --- ...h1) and code block_1_4ed20a68d545bbcac0a6974406d9b1b1.json | 2 +- .../add a list (end)_1_a8c0f5688c447808ea40e16816bc9d88.json | 2 +- ...agraph (empty doc)_1_4200cbf42b5dd56e2fb7c1dc4c0e5c95.json | 2 +- ...ew paragraph (end)_1_3cecc2859589d59d7b2a73b271a02ebb.json | 2 +- ... paragraph (start)_1_0b6e5ba7c365aa004ab09915db4747d2.json | 2 +- ...h1) and code block_1_f09fb671c15594eba4367376e1de7404.json | 2 +- .../add a list (end)_1_9ca128e303da5f76048c82f2c1928b5f.json | 2 +- ...agraph (empty doc)_1_fedaaecc10d6ddf733d85168d2167795.json | 2 +- ...ew paragraph (end)_1_fe965ef7a99beb3acc090a9f597b4279.json | 2 +- ... paragraph (start)_1_232100784a2397a470c08d82001cb7fb.json | 2 +- ...h1) and code block_1_da4995473884c05440ca118c6ae41453.json | 2 +- .../add a list (end)_1_bcc7319416c9b14368ea5ad861f9b722.json | 2 +- ...agraph (empty doc)_1_8fd66df698028c81b94d9c3da3f48565.json | 2 +- ...ew paragraph (end)_1_1df9f2bee04498ef092f332ebce02289.json | 2 +- ... paragraph (start)_1_ddea32bf65559924075cf5a378ff52a9.json | 2 +- ...h1) and code block_1_411b9303baf0445a2b3d22af986dcbd7.json | 2 +- .../add a list (end)_1_b62f9dcc3af6272c847eb867f28464e4.json | 2 +- ...agraph (empty doc)_1_e3538aed67ed181c709f2c76ebd3b88c.json | 2 +- ...ew paragraph (end)_1_4da2dc377fad46f51e531f5cb2594b48.json | 2 +- ... paragraph (start)_1_9a1739085965869c82a4ab025a9b426c.json | 2 +- ...h1) and code block_1_91d754a12d792f37fe1483d19a7b4e64.json | 2 +- .../add a list (end)_1_1b9c5367195624176c28a1ca3684ebac.json | 2 +- ...agraph (empty doc)_1_bda56d4903fe73aa33304a959057957d.json | 2 +- ...ew paragraph (end)_1_731edbb5fc3b6e4a927978b9e203f336.json | 2 +- ... paragraph (start)_1_56f9b395b16c8dc222ce13deb68cd412.json | 2 +- ...d update paragraph_1_a16755b57abd9123bc8d138ece2fc206.json | 2 +- ...d update selection_1_9d3466520f605a356f2c31458954e816.json | 2 +- ...d update paragraph_1_051b564433dad882d26853a2d2e41841.json | 2 +- ...d update selection_1_0ca431ee9c56812e10198e60552a536f.json | 2 +- ...d update paragraph_1_8ef78aa1880fd8536fa49acb127f51c0.json | 2 +- ...d update selection_1_04f9e76ff73eff953288564e5385dbd4.json | 2 +- ...d update paragraph_1_e9e8ca04b228ebbec6f48d24c147fbcf.json | 2 +- ...d update selection_1_f5cd402d603bead3d759ebb5485f39c3.json | 2 +- ...d update paragraph_1_2551adfcc4ecd63e37094152b44c1144.json | 2 +- ...d update selection_1_fc5837fa3ab53d1a511a8092a926d87d.json | 2 +- ...delete first block_1_a4ec61146ba0a517742770cb5843201f.json | 2 +- ...delete first block_1_ee24300ba2c8986f54c02b0d2aec9691.json | 2 +- ...delete first block_1_21ad45e4791e6ce60e52c20228c507ff.json | 2 +- ...delete first block_1_002ed2fb069e97008c626fe8c2d43637.json | 2 +- ...delete first block_1_af53bf5e53a86669deaae43b9ab27c67.json | 2 +- ...e text within mark_1_a97a8a61e45a5cfa1f37771aefbf06ba.json | 2 +- ...drop mark and link_1_80d39d8c2f69d28a6aec0dee64eb7b4f.json | 2 +- ...ify nested content_1_64d59c27de629179d00d268836aebcba.json | 2 +- ...ify parent content_1_7cb863416d6d953446640251160e084e.json | 2 +- ...block, add mention_1_c6025cf7f6efc3b57f721752b1f49801.json | 2 +- .../standard update_1_b3b73d97f68d26aba18541b8c809ec4d.json | 2 +- ...block, remove mark_1_f6a509381d62c4242864af576bb7ba61.json | 2 +- ...ck, remove mention_1_61539d923364c797cda8519b7d6dbb77.json | 2 +- ...k, replace content_1_a73907775c98b6c395eac24591e7f1d4.json | 2 +- ...pdate mention prop_1_1821b0f5da6b0bdb28f9444c6eaca222.json | 2 +- ...block, update text_1_82f2d8a07824544fad31d34c8a554af1.json | 2 +- ...d mark (paragraph)_1_c8bc122a4cb48783ca677fc4aa6cd947.json | 2 +- ...k, add mark (word)_1_686bfcd92e4eb65462c1811ad4a3976d.json | 2 +- ...ranslate selection_1_2968b738a7996331d8faf2692d652c3c.json | 2 +- ...ragraphs into list_1_dd8e963f842a261deec745e8d4608bfd.json | 2 +- ...k type and content_1_06943ba0bda62a61f058ba07379ab4b7.json | 2 +- .../update block type_1_9e53c774c99f178f06b3c7b3608d1605.json | 2 +- ...e text within mark_1_2b911dce06e556a512fa22d1a0042b5a.json | 2 +- ...drop mark and link_1_f7d042c6ddd42b02098b813fe6e2da2b.json | 2 +- ...ify nested content_1_0cbaaf87b0c6b588f7d7e21f72ed7a7c.json | 2 +- ...ify parent content_1_d190a41cfce34eb5362468031cb608fe.json | 2 +- ...block, add mention_1_963338caea5317fbaa588fed459f0895.json | 2 +- .../standard update_1_da09ee8bda5dc347edc748b59bc3bb16.json | 2 +- ...block, remove mark_1_90482aba878618976330fda1af8f6766.json | 2 +- ...ck, remove mention_1_5c149679babf73b41810f291fcb4d558.json | 2 +- ...k, replace content_1_0c9d3ace7da95353a998edbaff79177d.json | 2 +- ...pdate mention prop_1_57893638a0ceb0edac342346fa706076.json | 2 +- ...block, update text_1_ef01870ca5f4083b4ea345e00d3c52ff.json | 2 +- ...d mark (paragraph)_1_ee8107efdf5fd19552a7fff0b08f6657.json | 2 +- ...k, add mark (word)_1_ca95d8d83853d5deb4765c6768a2563f.json | 2 +- ...ranslate selection_1_674d4ec4b8af2ac528ec90892731f67a.json | 2 +- ...ragraphs into list_1_1ec910c96203d1d86b7dcce97e352e91.json | 2 +- ...k type and content_1_e09825f3b2477a73e86972716897a19e.json | 2 +- .../update block type_1_cf54cfb6c7dfc32b6429ca1a2302a2b6.json | 2 +- ...e text within mark_1_efeeda50dc4be1869d555c44cc00a5f5.json | 2 +- ...drop mark and link_1_e3ff518cb46e814abe773f4184678323.json | 2 +- ...ify nested content_1_c335661f5c1022666f7905497d4a3189.json | 2 +- ...ify parent content_1_73db91187a949699f0fd921ebe60d841.json | 2 +- ...block, add mention_1_57f7d170977b8d3400a3a1d7182790b0.json | 2 +- .../standard update_1_67b27460b36b3013a36967448a8522c4.json | 2 +- ...block, remove mark_1_abd6ba31606c51fb682ca64b85af7008.json | 2 +- ...ck, remove mention_1_bcb2fc9b7ec7eb1ae370d9387dc7e505.json | 2 +- ...k, replace content_1_9e6d5cd399d444173556b9dc0afc3334.json | 2 +- ...pdate mention prop_1_e1d72f9616d34022fba9ea219eb13748.json | 2 +- ...block, update text_1_bd11c0a3efe0e2b04a0133c6ca73a5cd.json | 2 +- ...d mark (paragraph)_1_c865fea79947e8f5885f8c7ebc7dd91a.json | 2 +- ...k, add mark (word)_1_e155e7bf26070976e31928b82bb13fbc.json | 2 +- ...ranslate selection_1_54ec8515dd6ab214d8b92c5cf4f09529.json | 2 +- ...ragraphs into list_1_ec7bd4074c354be223256a9d0ab17e64.json | 2 +- ...k type and content_1_a935b00dc3276d6713bffbfb1fdf211e.json | 2 +- .../update block type_1_21d1130a166f73bca224130b84ed37c4.json | 2 +- ...e text within mark_1_8798a9655a7eb7a651bb81f5f811fc60.json | 2 +- ...drop mark and link_1_001ea299cc5ab0754d17884094fa9d86.json | 2 +- ...ify nested content_1_3b7f9df9f7701d51e2ccf274e5280a7d.json | 2 +- ...ify parent content_1_3b9c9ee90eacd058e510ca1c82cbd554.json | 2 +- ...block, add mention_1_2e588074658964fdee8f372a25645e39.json | 2 +- .../standard update_1_8aa8c7ee6f4c17a92493df542b131069.json | 2 +- ...block, remove mark_1_7c37aad8ce27e926dc486960a90f35eb.json | 2 +- ...ck, remove mention_1_a9fa6b0be7fae1d70499aa6ecfea6704.json | 2 +- ...k, replace content_1_4d4299b8044479fe9e15a4a168707806.json | 2 +- ...pdate mention prop_1_c6fa894a14f6be81fb568283e4724af9.json | 2 +- ...block, update text_1_aa627d12493a30d6fa1bbf6d282b6ecd.json | 2 +- ...d mark (paragraph)_1_711e7638278935cce832085d8cce0abc.json | 2 +- ...k, add mark (word)_1_739768c550cdc9eb5af10dbacc7c6d22.json | 2 +- ...ranslate selection_1_83bf8aa261516bf197d1391294bbcb06.json | 2 +- ...ragraphs into list_1_5aa207db4b8600962363d2352bf0b1c4.json | 2 +- ...k type and content_1_12e64702225f7eb521a176feffbdde9a.json | 2 +- .../update block type_1_b81e29ddb0de05a668236685bd2df42c.json | 2 +- ...e text within mark_1_f48c2d1d72f4c3514c346629fb7f4d0d.json | 2 +- ...drop mark and link_1_c357b571feb374378ba1b288c39b6c31.json | 2 +- ...ify nested content_1_782caee9bbb515bfdae481d31ea48e48.json | 2 +- ...ify parent content_1_92e8df7af02866607d407a52926d4f52.json | 2 +- ...block, add mention_1_69dfced69472e5cf7789a98b3ccbbdd8.json | 2 +- .../standard update_1_f5d03fb0433b5e5b912f40dbffd9f462.json | 2 +- ...block, remove mark_1_d0386ebc8dc8350f33c44c2251cd1d3c.json | 2 +- ...ck, remove mention_1_83b1ed76da3ba0a764fdc6fb4d25e47a.json | 2 +- ...k, replace content_1_dd48a67d4d41880db75515d0a95a53dc.json | 2 +- ...pdate mention prop_1_e21784bb9948aac3dd70492535dff192.json | 2 +- ...block, update text_1_72b362e3a2e48e9e1d5dad68fc3da63c.json | 2 +- ...d mark (paragraph)_1_968bf60fd7c9520b848955d47ea8a568.json | 2 +- ...k, add mark (word)_1_45c3fcc7757ac314a77786102326e125.json | 2 +- ...ranslate selection_1_8cfca4c1847085a8a31be1818346738e.json | 2 +- ...ragraphs into list_1_2f31610c836b996af773c3856634d5c3.json | 2 +- ...k type and content_1_94cf62e3727b3443984720bc54218659.json | 2 +- .../update block type_1_19432d3e11d58717813be52d54eb6edd.json | 2 +- ...h1) and code block_1_da23f47c1267f17138027b6bd115b251.json | 4 ++-- .../add a list (end)_1_215b02f86ce29cdb7f8834b39d073041.json | 4 ++-- ...agraph (empty doc)_1_56cad0142b200cfff68d9ff03f02e930.json | 4 ++-- ...ew paragraph (end)_1_87a85aa54d0e545e325753089c3843b2.json | 4 ++-- ... paragraph (start)_1_572761dc235c6278ed438821af019645.json | 4 ++-- ...h1) and code block_1_a5e8aef512955120d014d7b2fc72d306.json | 2 +- .../add a list (end)_1_97ac96ad778b2e833c0e43c1a2221a4f.json | 2 +- ...agraph (empty doc)_1_25dfbd403ed079997ccc162bd02defa7.json | 2 +- ...ew paragraph (end)_1_240d8ee34ce9447499e1ea1058a6d6e3.json | 2 +- ... paragraph (start)_1_ccaaaa4df61f9ed8a174034e7eb066af.json | 2 +- ...d update paragraph_1_923d9eef4b0b2e7367fd68983678a41a.json | 4 ++-- ...d update selection_1_ca185676c21707be2b3524b104786716.json | 4 ++-- ...d update paragraph_1_6a4c9cc869ec961e3662b788540af827.json | 4 ++-- ...d update selection_1_8092e1583e60700c3cff810383dbf5ad.json | 4 ++-- ...delete first block_1_f36354147821c0e68c7e4d2ff18e8a95.json | 4 ++-- ...delete first block_1_4ac561ca5a33ecb3cbb77482471e2477.json | 4 ++-- ...r block formatting_1_4479e5ad2d77e8d9f6b49330a706a3af.json | 4 ++-- ...e text within mark_1_d8be2007761d56dcf271fa44d6e8a232.json | 4 ++-- ...drop mark and link_1_ce3a8d756277935c395939e94ffbdfb1.json | 4 ++-- ...ify nested content_1_65bac275d973af0c7b46b2b8d5d324fe.json | 4 ++-- ...ify parent content_1_e23642dde85b3d958c556c5e4f86ac38.json | 4 ++-- ...block, add mention_1_b2b46f2ea1174691cf498ebb089d464a.json | 4 ++-- .../standard update_1_94dcefb2b5844b8a3f64f32f87115a14.json | 4 ++-- ...block, remove mark_1_276903909ec4f878e8adc9c6bd53d0cf.json | 4 ++-- ...ck, remove mention_1_e494072895d2e9d6bd0465582b9034f6.json | 4 ++-- ...k, replace content_1_0781fecd32901229a780bd5675e62163.json | 4 ++-- ...pdate mention prop_1_2d779ce68436ee4e33b6781e66c95d4d.json | 4 ++-- ...block, update text_1_03a2f68b3d126b81618ffeebec9f2c7f.json | 4 ++-- ...d mark (paragraph)_1_7875145fec05f9cae7e28537ac95bc84.json | 4 ++-- ...k, add mark (word)_1_0fe47d4cbf760327d6622e9e27c734c4.json | 4 ++-- ...ranslate selection_1_a1c443203ee18f4ec6d71349d0c57311.json | 4 ++-- ...ragraphs into list_1_641282d2e6c4ebf728bf3d68a286275b.json | 4 ++-- ...k prop and content_1_535c3a219eb5cf340184d102273a2cf4.json | 4 ++-- .../update block prop_1_c7c286b44674e4f6141b1e95819b7f60.json | 4 ++-- ...k type and content_1_901d3a54e64251f1be4ee227b9fb4522.json | 4 ++-- .../update block type_1_90c759912d4965fb8ce694e2a63e26fb.json | 4 ++-- ...r block formatting_1_49a8b14dc6c4c5cc452e22c79dae5b62.json | 4 ++-- ...e text within mark_1_2c278aa8dd1cb7a5f35e306e9a02c487.json | 4 ++-- ...drop mark and link_1_8349974ecc8b2268c1b5b42aa93563b7.json | 4 ++-- ...ify nested content_1_3773830b2cf364532410c9c5498a1355.json | 4 ++-- ...ify parent content_1_c0dd9920ce66da75022907181066f5c8.json | 4 ++-- ...block, add mention_1_255c7e8a0fd687acb58e373b4b4e7bee.json | 4 ++-- .../standard update_1_462e7956999f00b4e3ff89faa46d3d4d.json | 2 +- ...block, remove mark_1_c7c6246b702c9417679fec382dfa34d1.json | 4 ++-- ...ck, remove mention_1_5eb79311fbbec3ee0ed02e0178b3bee6.json | 4 ++-- ...k, replace content_1_5d52b9a4787e7d80ebeabb4ebd975206.json | 4 ++-- ...pdate mention prop_1_18ed7c60005c23092d68b0d1f73af517.json | 4 ++-- ...block, update text_1_b2017bfc7ff6e6440d2459f1042a8a49.json | 4 ++-- ...d mark (paragraph)_1_b68a744287cba99975e82279562eb768.json | 4 ++-- ...k, add mark (word)_1_a435c74c2ca086ce0225445d217e9a2e.json | 4 ++-- ...ranslate selection_1_ac70d79d18996d3e08a6559885013c70.json | 2 +- ...ragraphs into list_1_92a38569e8e9c873af8553e1607a7ba7.json | 4 ++-- ...k prop and content_1_470bec988f3c558f26928b2f29b50637.json | 4 ++-- .../update block prop_1_7e88e61010d66486f9882befa48894db.json | 4 ++-- ...k type and content_1_1c088e30cb25a7508d30c2079426a225.json | 4 ++-- .../update block type_1_9fed5f51d881546a9031bc6308ff465c.json | 2 +- 181 files changed, 229 insertions(+), 229 deletions(-) diff --git a/packages/xl-ai/src/api/formats/html-blocks/__snapshots__/htmlBlocks.test.ts/Add/__msw_snapshots__/anthropic.messages/claude-3-7-sonnet-latest (non-streaming)/Add heading (h1) and code block_1_4ed20a68d545bbcac0a6974406d9b1b1.json b/packages/xl-ai/src/api/formats/html-blocks/__snapshots__/htmlBlocks.test.ts/Add/__msw_snapshots__/anthropic.messages/claude-3-7-sonnet-latest (non-streaming)/Add heading (h1) and code block_1_4ed20a68d545bbcac0a6974406d9b1b1.json index 07c3d92713..aabdc9917d 100644 --- a/packages/xl-ai/src/api/formats/html-blocks/__snapshots__/htmlBlocks.test.ts/Add/__msw_snapshots__/anthropic.messages/claude-3-7-sonnet-latest (non-streaming)/Add heading (h1) and code block_1_4ed20a68d545bbcac0a6974406d9b1b1.json +++ b/packages/xl-ai/src/api/formats/html-blocks/__snapshots__/htmlBlocks.test.ts/Add/__msw_snapshots__/anthropic.messages/claude-3-7-sonnet-latest (non-streaming)/Add heading (h1) and code block_1_4ed20a68d545bbcac0a6974406d9b1b1.json @@ -9,7 +9,7 @@ "response": { "status": 200, "statusText": "", - "body": "{\"id\":\"msg_01CvNNDGkyfR1VeWv4sjCDQe\",\"type\":\"message\",\"role\":\"assistant\",\"model\":\"claude-3-7-sonnet-20250219\",\"content\":[{\"type\":\"tool_use\",\"id\":\"toolu_01Sfb6t2T6NaHwLGw71Xk6iA\",\"name\":\"json\",\"input\":{\"operations\":[{\"type\":\"add\",\"referenceId\":\"ref2$\",\"position\":\"after\",\"blocks\":[\"

Code

\",\"
console.log('hello world');
\"]}]}}],\"stop_reason\":\"tool_use\",\"stop_sequence\":null,\"usage\":{\"input_tokens\":1141,\"cache_creation_input_tokens\":0,\"cache_read_input_tokens\":0,\"output_tokens\":115,\"service_tier\":\"standard\"}}", + "body": "{\"id\":\"msg_0183zGtnPWiKWYCcve2rFWrf\",\"type\":\"message\",\"role\":\"assistant\",\"model\":\"claude-3-7-sonnet-20250219\",\"content\":[{\"type\":\"tool_use\",\"id\":\"toolu_01DS37TZujMbriQPTgxmwaLo\",\"name\":\"json\",\"input\":{\"operations\":[{\"type\":\"add\",\"referenceId\":\"ref2$\",\"position\":\"after\",\"blocks\":[\"

Code

\",\"
console.log('hello world');
\"]}]}}],\"stop_reason\":\"tool_use\",\"stop_sequence\":null,\"usage\":{\"input_tokens\":1141,\"cache_creation_input_tokens\":0,\"cache_read_input_tokens\":0,\"output_tokens\":115,\"service_tier\":\"standard\"}}", "headers": [] } } \ No newline at end of file diff --git a/packages/xl-ai/src/api/formats/html-blocks/__snapshots__/htmlBlocks.test.ts/Add/__msw_snapshots__/anthropic.messages/claude-3-7-sonnet-latest (non-streaming)/add a list (end)_1_a8c0f5688c447808ea40e16816bc9d88.json b/packages/xl-ai/src/api/formats/html-blocks/__snapshots__/htmlBlocks.test.ts/Add/__msw_snapshots__/anthropic.messages/claude-3-7-sonnet-latest (non-streaming)/add a list (end)_1_a8c0f5688c447808ea40e16816bc9d88.json index 4671f34474..4b4867152d 100644 --- a/packages/xl-ai/src/api/formats/html-blocks/__snapshots__/htmlBlocks.test.ts/Add/__msw_snapshots__/anthropic.messages/claude-3-7-sonnet-latest (non-streaming)/add a list (end)_1_a8c0f5688c447808ea40e16816bc9d88.json +++ b/packages/xl-ai/src/api/formats/html-blocks/__snapshots__/htmlBlocks.test.ts/Add/__msw_snapshots__/anthropic.messages/claude-3-7-sonnet-latest (non-streaming)/add a list (end)_1_a8c0f5688c447808ea40e16816bc9d88.json @@ -9,7 +9,7 @@ "response": { "status": 200, "statusText": "", - "body": "{\"id\":\"msg_01CRWHfETGzBRnoYeagKsc7Q\",\"type\":\"message\",\"role\":\"assistant\",\"model\":\"claude-3-7-sonnet-20250219\",\"content\":[{\"type\":\"tool_use\",\"id\":\"toolu_0119L1JcnPAWnLHFoeLMkQA1\",\"name\":\"json\",\"input\":{\"operations\":[{\"type\":\"add\",\"referenceId\":\"ref2$\",\"position\":\"after\",\"blocks\":[\"
  • Apples
\",\"
  • Bananas
\"]}]}}],\"stop_reason\":\"tool_use\",\"stop_sequence\":null,\"usage\":{\"input_tokens\":1134,\"cache_creation_input_tokens\":0,\"cache_read_input_tokens\":0,\"output_tokens\":103,\"service_tier\":\"standard\"}}", + "body": "{\"id\":\"msg_01NDgmBLpPXjpsBTK4sfErNy\",\"type\":\"message\",\"role\":\"assistant\",\"model\":\"claude-3-7-sonnet-20250219\",\"content\":[{\"type\":\"tool_use\",\"id\":\"toolu_01FiKUed7BTXsgaLfdVrytX7\",\"name\":\"json\",\"input\":{\"operations\":[{\"type\":\"add\",\"referenceId\":\"ref2$\",\"position\":\"after\",\"blocks\":[\"
  • Apples
\",\"
  • Bananas
\"]}]}}],\"stop_reason\":\"tool_use\",\"stop_sequence\":null,\"usage\":{\"input_tokens\":1134,\"cache_creation_input_tokens\":0,\"cache_read_input_tokens\":0,\"output_tokens\":103,\"service_tier\":\"standard\"}}", "headers": [] } } \ No newline at end of file diff --git a/packages/xl-ai/src/api/formats/html-blocks/__snapshots__/htmlBlocks.test.ts/Add/__msw_snapshots__/anthropic.messages/claude-3-7-sonnet-latest (non-streaming)/add a new paragraph (empty doc)_1_4200cbf42b5dd56e2fb7c1dc4c0e5c95.json b/packages/xl-ai/src/api/formats/html-blocks/__snapshots__/htmlBlocks.test.ts/Add/__msw_snapshots__/anthropic.messages/claude-3-7-sonnet-latest (non-streaming)/add a new paragraph (empty doc)_1_4200cbf42b5dd56e2fb7c1dc4c0e5c95.json index 254d3fc2da..66875f0ba7 100644 --- a/packages/xl-ai/src/api/formats/html-blocks/__snapshots__/htmlBlocks.test.ts/Add/__msw_snapshots__/anthropic.messages/claude-3-7-sonnet-latest (non-streaming)/add a new paragraph (empty doc)_1_4200cbf42b5dd56e2fb7c1dc4c0e5c95.json +++ b/packages/xl-ai/src/api/formats/html-blocks/__snapshots__/htmlBlocks.test.ts/Add/__msw_snapshots__/anthropic.messages/claude-3-7-sonnet-latest (non-streaming)/add a new paragraph (empty doc)_1_4200cbf42b5dd56e2fb7c1dc4c0e5c95.json @@ -9,7 +9,7 @@ "response": { "status": 200, "statusText": "", - "body": "{\"id\":\"msg_017cBrLzbBcimHZvkBPHaHUS\",\"type\":\"message\",\"role\":\"assistant\",\"model\":\"claude-3-7-sonnet-20250219\",\"content\":[{\"type\":\"tool_use\",\"id\":\"toolu_01H2npMHYeXPe4vWmyeeAN6n\",\"name\":\"json\",\"input\":{\"operations\":[{\"type\":\"update\",\"id\":\"ref1$\",\"block\":\"

You look great today!

\"}]}}],\"stop_reason\":\"tool_use\",\"stop_sequence\":null,\"usage\":{\"input_tokens\":1097,\"cache_creation_input_tokens\":0,\"cache_read_input_tokens\":0,\"output_tokens\":74,\"service_tier\":\"standard\"}}", + "body": "{\"id\":\"msg_01Ek7kYgmf4spzqBFHhouYtT\",\"type\":\"message\",\"role\":\"assistant\",\"model\":\"claude-3-7-sonnet-20250219\",\"content\":[{\"type\":\"tool_use\",\"id\":\"toolu_011o6G8D4PEDAxGujpwNLJhc\",\"name\":\"json\",\"input\":{\"operations\":[{\"type\":\"update\",\"id\":\"ref1$\",\"block\":\"

You look great today!

\"}]}}],\"stop_reason\":\"tool_use\",\"stop_sequence\":null,\"usage\":{\"input_tokens\":1097,\"cache_creation_input_tokens\":0,\"cache_read_input_tokens\":0,\"output_tokens\":74,\"service_tier\":\"standard\"}}", "headers": [] } } \ No newline at end of file diff --git a/packages/xl-ai/src/api/formats/html-blocks/__snapshots__/htmlBlocks.test.ts/Add/__msw_snapshots__/anthropic.messages/claude-3-7-sonnet-latest (non-streaming)/add a new paragraph (end)_1_3cecc2859589d59d7b2a73b271a02ebb.json b/packages/xl-ai/src/api/formats/html-blocks/__snapshots__/htmlBlocks.test.ts/Add/__msw_snapshots__/anthropic.messages/claude-3-7-sonnet-latest (non-streaming)/add a new paragraph (end)_1_3cecc2859589d59d7b2a73b271a02ebb.json index 5002bfdb79..7a64682768 100644 --- a/packages/xl-ai/src/api/formats/html-blocks/__snapshots__/htmlBlocks.test.ts/Add/__msw_snapshots__/anthropic.messages/claude-3-7-sonnet-latest (non-streaming)/add a new paragraph (end)_1_3cecc2859589d59d7b2a73b271a02ebb.json +++ b/packages/xl-ai/src/api/formats/html-blocks/__snapshots__/htmlBlocks.test.ts/Add/__msw_snapshots__/anthropic.messages/claude-3-7-sonnet-latest (non-streaming)/add a new paragraph (end)_1_3cecc2859589d59d7b2a73b271a02ebb.json @@ -9,7 +9,7 @@ "response": { "status": 200, "statusText": "", - "body": "{\"id\":\"msg_01AdgqSQ8TTFkiYMU3VVczc1\",\"type\":\"message\",\"role\":\"assistant\",\"model\":\"claude-3-7-sonnet-20250219\",\"content\":[{\"type\":\"tool_use\",\"id\":\"toolu_01KnGeGTMvcmwDG1sraFPvok\",\"name\":\"json\",\"input\":{\"operations\":[{\"type\":\"add\",\"referenceId\":\"ref2$\",\"position\":\"after\",\"blocks\":[\"

You look great today!

\"]}]}}],\"stop_reason\":\"tool_use\",\"stop_sequence\":null,\"usage\":{\"input_tokens\":1129,\"cache_creation_input_tokens\":0,\"cache_read_input_tokens\":0,\"output_tokens\":86,\"service_tier\":\"standard\"}}", + "body": "{\"id\":\"msg_01KzaZaDvG28ztCjJ6RTjwhw\",\"type\":\"message\",\"role\":\"assistant\",\"model\":\"claude-3-7-sonnet-20250219\",\"content\":[{\"type\":\"tool_use\",\"id\":\"toolu_0138gtKR1dWPWX7GecVvp2cB\",\"name\":\"json\",\"input\":{\"operations\":[{\"type\":\"add\",\"referenceId\":\"ref2$\",\"position\":\"after\",\"blocks\":[\"

You look great today!

\"]}]}}],\"stop_reason\":\"tool_use\",\"stop_sequence\":null,\"usage\":{\"input_tokens\":1129,\"cache_creation_input_tokens\":0,\"cache_read_input_tokens\":0,\"output_tokens\":86,\"service_tier\":\"standard\"}}", "headers": [] } } \ No newline at end of file diff --git a/packages/xl-ai/src/api/formats/html-blocks/__snapshots__/htmlBlocks.test.ts/Add/__msw_snapshots__/anthropic.messages/claude-3-7-sonnet-latest (non-streaming)/add a new paragraph (start)_1_0b6e5ba7c365aa004ab09915db4747d2.json b/packages/xl-ai/src/api/formats/html-blocks/__snapshots__/htmlBlocks.test.ts/Add/__msw_snapshots__/anthropic.messages/claude-3-7-sonnet-latest (non-streaming)/add a new paragraph (start)_1_0b6e5ba7c365aa004ab09915db4747d2.json index 34b24c0ef3..4d69b10dc1 100644 --- a/packages/xl-ai/src/api/formats/html-blocks/__snapshots__/htmlBlocks.test.ts/Add/__msw_snapshots__/anthropic.messages/claude-3-7-sonnet-latest (non-streaming)/add a new paragraph (start)_1_0b6e5ba7c365aa004ab09915db4747d2.json +++ b/packages/xl-ai/src/api/formats/html-blocks/__snapshots__/htmlBlocks.test.ts/Add/__msw_snapshots__/anthropic.messages/claude-3-7-sonnet-latest (non-streaming)/add a new paragraph (start)_1_0b6e5ba7c365aa004ab09915db4747d2.json @@ -9,7 +9,7 @@ "response": { "status": 200, "statusText": "", - "body": "{\"id\":\"msg_01LRKwTKHRPt9GmtZwHQ87rG\",\"type\":\"message\",\"role\":\"assistant\",\"model\":\"claude-3-7-sonnet-20250219\",\"content\":[{\"type\":\"tool_use\",\"id\":\"toolu_01DmSBHzBkNM3XPPKv6vbR79\",\"name\":\"json\",\"input\":{\"operations\":[{\"type\":\"add\",\"referenceId\":\"ref1$\",\"position\":\"before\",\"blocks\":[\"

You look great today!

\"]}]}}],\"stop_reason\":\"tool_use\",\"stop_sequence\":null,\"usage\":{\"input_tokens\":1129,\"cache_creation_input_tokens\":0,\"cache_read_input_tokens\":0,\"output_tokens\":86,\"service_tier\":\"standard\"}}", + "body": "{\"id\":\"msg_011XHm9ZDt85ctCksKZX7siV\",\"type\":\"message\",\"role\":\"assistant\",\"model\":\"claude-3-7-sonnet-20250219\",\"content\":[{\"type\":\"tool_use\",\"id\":\"toolu_01DAd7t9r4VXAWruXV5pZW1M\",\"name\":\"json\",\"input\":{\"operations\":[{\"type\":\"add\",\"referenceId\":\"ref1$\",\"position\":\"before\",\"blocks\":[\"

You look great today!

\"]}]}}],\"stop_reason\":\"tool_use\",\"stop_sequence\":null,\"usage\":{\"input_tokens\":1129,\"cache_creation_input_tokens\":0,\"cache_read_input_tokens\":0,\"output_tokens\":86,\"service_tier\":\"standard\"}}", "headers": [] } } \ No newline at end of file diff --git a/packages/xl-ai/src/api/formats/html-blocks/__snapshots__/htmlBlocks.test.ts/Add/__msw_snapshots__/groq.chat/llama-3.3-70b-versatile (non-streaming)/Add heading (h1) and code block_1_f09fb671c15594eba4367376e1de7404.json b/packages/xl-ai/src/api/formats/html-blocks/__snapshots__/htmlBlocks.test.ts/Add/__msw_snapshots__/groq.chat/llama-3.3-70b-versatile (non-streaming)/Add heading (h1) and code block_1_f09fb671c15594eba4367376e1de7404.json index 1b5cc58d33..77e9c9c867 100644 --- a/packages/xl-ai/src/api/formats/html-blocks/__snapshots__/htmlBlocks.test.ts/Add/__msw_snapshots__/groq.chat/llama-3.3-70b-versatile (non-streaming)/Add heading (h1) and code block_1_f09fb671c15594eba4367376e1de7404.json +++ b/packages/xl-ai/src/api/formats/html-blocks/__snapshots__/htmlBlocks.test.ts/Add/__msw_snapshots__/groq.chat/llama-3.3-70b-versatile (non-streaming)/Add heading (h1) and code block_1_f09fb671c15594eba4367376e1de7404.json @@ -9,7 +9,7 @@ "response": { "status": 200, "statusText": "", - "body": "{\"id\":\"chatcmpl-da14a0a0-9d9e-44cd-8b00-e8d4cef12923\",\"object\":\"chat.completion\",\"created\":1749541785,\"model\":\"llama-3.3-70b-versatile\",\"choices\":[{\"index\":0,\"message\":{\"role\":\"assistant\",\"tool_calls\":[{\"id\":\"call_vnpd\",\"type\":\"function\",\"function\":{\"name\":\"json\",\"arguments\":\"{\\\"operations\\\":[{\\\"blocks\\\":[\\\"\\\\u003ch1\\\\u003eCode\\\\u003c/h1\\\\u003e\\\",\\\"\\\\u003cpre\\\\u003e\\\\u003ccode data-language=\\\\\\\"javascript\\\\\\\"\\\\u003econsole.log('hello world');\\\\u003c/code\\\\u003e\\\\u003c/pre\\\\u003e\\\"],\\\"position\\\":\\\"after\\\",\\\"referenceId\\\":\\\"ref2$\\\",\\\"type\\\":\\\"add\\\"}]}\"}}]},\"logprobs\":null,\"finish_reason\":\"tool_calls\"}],\"usage\":{\"queue_time\":0.09217157199999998,\"prompt_tokens\":859,\"prompt_time\":0.060099431,\"completion_tokens\":55,\"completion_time\":0.2,\"total_tokens\":914,\"total_time\":0.260099431},\"usage_breakdown\":{\"models\":null},\"system_fingerprint\":\"fp_2ddfbb0da0\",\"x_groq\":{\"id\":\"req_01jxcd2425fygt7mn17e6kjq2k\"}}\n", + "body": "{\"id\":\"chatcmpl-c2860c72-bf2c-4fc8-aeba-f90d1d5b3eed\",\"object\":\"chat.completion\",\"created\":1749735013,\"model\":\"llama-3.3-70b-versatile\",\"choices\":[{\"index\":0,\"message\":{\"role\":\"assistant\",\"tool_calls\":[{\"id\":\"22q145ykc\",\"type\":\"function\",\"function\":{\"name\":\"json\",\"arguments\":\"{\\\"operations\\\":[{\\\"blocks\\\":[\\\"\\\\u003ch1\\\\u003eCode\\\\u003c/h1\\\\u003e\\\",\\\"\\\\u003cpre\\\\u003e\\\\u003ccode data-language=\\\\\\\"javascript\\\\\\\"\\\\u003econsole.log('hello world');\\\\u003c/code\\\\u003e\\\\u003c/pre\\\\u003e\\\"],\\\"position\\\":\\\"after\\\",\\\"referenceId\\\":\\\"ref2$\\\",\\\"type\\\":\\\"add\\\"}]}\"}}]},\"logprobs\":null,\"finish_reason\":\"tool_calls\"}],\"usage\":{\"queue_time\":0.098036554,\"prompt_tokens\":846,\"prompt_time\":0.054901739,\"completion_tokens\":55,\"completion_time\":0.2,\"total_tokens\":901,\"total_time\":0.254901739},\"usage_breakdown\":null,\"system_fingerprint\":\"fp_3f3b593e33\",\"x_groq\":{\"id\":\"req_01jxj5ayhxfyevq2h8cd7byq22\"}}\n", "headers": [] } } \ No newline at end of file diff --git a/packages/xl-ai/src/api/formats/html-blocks/__snapshots__/htmlBlocks.test.ts/Add/__msw_snapshots__/groq.chat/llama-3.3-70b-versatile (non-streaming)/add a list (end)_1_9ca128e303da5f76048c82f2c1928b5f.json b/packages/xl-ai/src/api/formats/html-blocks/__snapshots__/htmlBlocks.test.ts/Add/__msw_snapshots__/groq.chat/llama-3.3-70b-versatile (non-streaming)/add a list (end)_1_9ca128e303da5f76048c82f2c1928b5f.json index 2ba897eebf..ac4fe16067 100644 --- a/packages/xl-ai/src/api/formats/html-blocks/__snapshots__/htmlBlocks.test.ts/Add/__msw_snapshots__/groq.chat/llama-3.3-70b-versatile (non-streaming)/add a list (end)_1_9ca128e303da5f76048c82f2c1928b5f.json +++ b/packages/xl-ai/src/api/formats/html-blocks/__snapshots__/htmlBlocks.test.ts/Add/__msw_snapshots__/groq.chat/llama-3.3-70b-versatile (non-streaming)/add a list (end)_1_9ca128e303da5f76048c82f2c1928b5f.json @@ -9,7 +9,7 @@ "response": { "status": 200, "statusText": "", - "body": "{\"id\":\"chatcmpl-13d2dbe8-4718-4b8b-aa15-f0a91fa2426b\",\"object\":\"chat.completion\",\"created\":1749541785,\"model\":\"llama-3.3-70b-versatile\",\"choices\":[{\"index\":0,\"message\":{\"role\":\"assistant\",\"tool_calls\":[{\"id\":\"call_drx9\",\"type\":\"function\",\"function\":{\"name\":\"json\",\"arguments\":\"{\\\"operations\\\":[{\\\"blocks\\\":[\\\"\\\\u003cul\\\\u003e\\\\u003cli\\\\u003eApples\\\\u003c/li\\\\u003e\\\\u003c/ul\\\\u003e\\\",\\\"\\\\u003cul\\\\u003e\\\\u003cli\\\\u003eBananas\\\\u003c/li\\\\u003e\\\\u003c/ul\\\\u003e\\\"],\\\"position\\\":\\\"after\\\",\\\"referenceId\\\":\\\"ref2$\\\",\\\"type\\\":\\\"add\\\"}]}\"}}]},\"logprobs\":null,\"finish_reason\":\"tool_calls\"}],\"usage\":{\"queue_time\":0.09369406100000001,\"prompt_tokens\":850,\"prompt_time\":0.055587285,\"completion_tokens\":51,\"completion_time\":0.185454545,\"total_tokens\":901,\"total_time\":0.24104183},\"usage_breakdown\":{\"models\":null},\"system_fingerprint\":\"fp_3f3b593e33\",\"x_groq\":{\"id\":\"req_01jxcd23nqfygrj3yzrxj5z860\"}}\n", + "body": "{\"id\":\"chatcmpl-de38ce51-356f-43d2-ab16-56237affd0f3\",\"object\":\"chat.completion\",\"created\":1749735012,\"model\":\"llama-3.3-70b-versatile\",\"choices\":[{\"index\":0,\"message\":{\"role\":\"assistant\",\"tool_calls\":[{\"id\":\"78ycvsd8a\",\"type\":\"function\",\"function\":{\"name\":\"json\",\"arguments\":\"{\\\"operations\\\":[{\\\"blocks\\\":[\\\"\\\\u003cul\\\\u003e\\\\u003cli\\\\u003eApples\\\\u003c/li\\\\u003e\\\\u003c/ul\\\\u003e\\\",\\\"\\\\u003cul\\\\u003e\\\\u003cli\\\\u003eBananas\\\\u003c/li\\\\u003e\\\\u003c/ul\\\\u003e\\\"],\\\"position\\\":\\\"after\\\",\\\"referenceId\\\":\\\"ref2$\\\",\\\"type\\\":\\\"add\\\"}]}\"}}]},\"logprobs\":null,\"finish_reason\":\"tool_calls\"}],\"usage\":{\"queue_time\":0.09182320900000002,\"prompt_tokens\":837,\"prompt_time\":0.078260528,\"completion_tokens\":51,\"completion_time\":0.185454545,\"total_tokens\":888,\"total_time\":0.263715073},\"usage_breakdown\":null,\"system_fingerprint\":\"fp_3f3b593e33\",\"x_groq\":{\"id\":\"req_01jxj5ay4efdw9tyxk502bp42n\"}}\n", "headers": [] } } \ No newline at end of file diff --git a/packages/xl-ai/src/api/formats/html-blocks/__snapshots__/htmlBlocks.test.ts/Add/__msw_snapshots__/groq.chat/llama-3.3-70b-versatile (non-streaming)/add a new paragraph (empty doc)_1_fedaaecc10d6ddf733d85168d2167795.json b/packages/xl-ai/src/api/formats/html-blocks/__snapshots__/htmlBlocks.test.ts/Add/__msw_snapshots__/groq.chat/llama-3.3-70b-versatile (non-streaming)/add a new paragraph (empty doc)_1_fedaaecc10d6ddf733d85168d2167795.json index d797253d29..b3973273ab 100644 --- a/packages/xl-ai/src/api/formats/html-blocks/__snapshots__/htmlBlocks.test.ts/Add/__msw_snapshots__/groq.chat/llama-3.3-70b-versatile (non-streaming)/add a new paragraph (empty doc)_1_fedaaecc10d6ddf733d85168d2167795.json +++ b/packages/xl-ai/src/api/formats/html-blocks/__snapshots__/htmlBlocks.test.ts/Add/__msw_snapshots__/groq.chat/llama-3.3-70b-versatile (non-streaming)/add a new paragraph (empty doc)_1_fedaaecc10d6ddf733d85168d2167795.json @@ -9,7 +9,7 @@ "response": { "status": 200, "statusText": "", - "body": "{\"id\":\"chatcmpl-aaa2ece8-8884-46ad-843c-531843124f86\",\"object\":\"chat.completion\",\"created\":1749541786,\"model\":\"llama-3.3-70b-versatile\",\"choices\":[{\"index\":0,\"message\":{\"role\":\"assistant\",\"tool_calls\":[{\"id\":\"call_8zm2\",\"type\":\"function\",\"function\":{\"name\":\"json\",\"arguments\":\"{\\\"operations\\\":[{\\\"block\\\":\\\"\\\\u003cp\\\\u003eYou look great today!\\\\u003c/p\\\\u003e\\\",\\\"id\\\":\\\"ref1$\\\",\\\"type\\\":\\\"update\\\"}]}\"}}]},\"logprobs\":null,\"finish_reason\":\"tool_calls\"}],\"usage\":{\"queue_time\":0.09218279000000001,\"prompt_tokens\":819,\"prompt_time\":0.06014022,\"completion_tokens\":29,\"completion_time\":0.113892234,\"total_tokens\":848,\"total_time\":0.174032454},\"usage_breakdown\":{\"models\":null},\"system_fingerprint\":\"fp_2ddfbb0da0\",\"x_groq\":{\"id\":\"req_01jxcd24ecetatd50kbfg89wsr\"}}\n", + "body": "{\"id\":\"chatcmpl-1fcf8b4d-cd99-49de-98eb-60a5afebbd2c\",\"object\":\"chat.completion\",\"created\":1749735013,\"model\":\"llama-3.3-70b-versatile\",\"choices\":[{\"index\":0,\"message\":{\"role\":\"assistant\",\"tool_calls\":[{\"id\":\"24xyx2pfn\",\"type\":\"function\",\"function\":{\"name\":\"json\",\"arguments\":\"{\\\"operations\\\":[{\\\"block\\\":\\\"\\\\u003cp\\\\u003eYou look great today!\\\\u003c/p\\\\u003e\\\",\\\"id\\\":\\\"ref1$\\\",\\\"type\\\":\\\"update\\\"}]}\"}}]},\"logprobs\":null,\"finish_reason\":\"tool_calls\"}],\"usage\":{\"queue_time\":0.09109946699999999,\"prompt_tokens\":806,\"prompt_time\":0.062129547,\"completion_tokens\":29,\"completion_time\":0.105454545,\"total_tokens\":835,\"total_time\":0.167584092},\"usage_breakdown\":null,\"system_fingerprint\":\"fp_6507bcfb6f\",\"x_groq\":{\"id\":\"req_01jxj5ayyhfygvd6f1rc0dfqmp\"}}\n", "headers": [] } } \ No newline at end of file diff --git a/packages/xl-ai/src/api/formats/html-blocks/__snapshots__/htmlBlocks.test.ts/Add/__msw_snapshots__/groq.chat/llama-3.3-70b-versatile (non-streaming)/add a new paragraph (end)_1_fe965ef7a99beb3acc090a9f597b4279.json b/packages/xl-ai/src/api/formats/html-blocks/__snapshots__/htmlBlocks.test.ts/Add/__msw_snapshots__/groq.chat/llama-3.3-70b-versatile (non-streaming)/add a new paragraph (end)_1_fe965ef7a99beb3acc090a9f597b4279.json index 97c3c38ad9..458499f712 100644 --- a/packages/xl-ai/src/api/formats/html-blocks/__snapshots__/htmlBlocks.test.ts/Add/__msw_snapshots__/groq.chat/llama-3.3-70b-versatile (non-streaming)/add a new paragraph (end)_1_fe965ef7a99beb3acc090a9f597b4279.json +++ b/packages/xl-ai/src/api/formats/html-blocks/__snapshots__/htmlBlocks.test.ts/Add/__msw_snapshots__/groq.chat/llama-3.3-70b-versatile (non-streaming)/add a new paragraph (end)_1_fe965ef7a99beb3acc090a9f597b4279.json @@ -9,7 +9,7 @@ "response": { "status": 200, "statusText": "", - "body": "{\"id\":\"chatcmpl-5f58c35b-1ee8-4e35-8c43-0758c831776c\",\"object\":\"chat.completion\",\"created\":1749541785,\"model\":\"llama-3.3-70b-versatile\",\"choices\":[{\"index\":0,\"message\":{\"role\":\"assistant\",\"tool_calls\":[{\"id\":\"call_0ctp\",\"type\":\"function\",\"function\":{\"name\":\"json\",\"arguments\":\"{\\\"operations\\\":[{\\\"blocks\\\":[\\\"\\\\u003cp\\\\u003eYou look great today!\\\\u003c/p\\\\u003e\\\"],\\\"position\\\":\\\"after\\\",\\\"referenceId\\\":\\\"ref2$\\\",\\\"type\\\":\\\"add\\\"}]}\"}}]},\"logprobs\":null,\"finish_reason\":\"tool_calls\"}],\"usage\":{\"queue_time\":0.093297942,\"prompt_tokens\":848,\"prompt_time\":0.062694425,\"completion_tokens\":35,\"completion_time\":0.127272727,\"total_tokens\":883,\"total_time\":0.189967152},\"usage_breakdown\":{\"models\":null},\"system_fingerprint\":\"fp_3f3b593e33\",\"x_groq\":{\"id\":\"req_01jxcd23bjfs6b925rc8b5hzvw\"}}\n", + "body": "{\"id\":\"chatcmpl-d4a27071-529d-40ea-b121-7aa202f0de46\",\"object\":\"chat.completion\",\"created\":1749735012,\"model\":\"llama-3.3-70b-versatile\",\"choices\":[{\"index\":0,\"message\":{\"role\":\"assistant\",\"tool_calls\":[{\"id\":\"gh75jer5b\",\"type\":\"function\",\"function\":{\"name\":\"json\",\"arguments\":\"{\\\"operations\\\":[{\\\"blocks\\\":[\\\"\\\\u003cp\\\\u003eYou look great today!\\\\u003c/p\\\\u003e\\\"],\\\"position\\\":\\\"after\\\",\\\"referenceId\\\":\\\"ref2$\\\",\\\"type\\\":\\\"add\\\"}]}\"}}]},\"logprobs\":null,\"finish_reason\":\"tool_calls\"}],\"usage\":{\"queue_time\":0.09238692300000001,\"prompt_tokens\":835,\"prompt_time\":0.061191316,\"completion_tokens\":35,\"completion_time\":0.127272727,\"total_tokens\":870,\"total_time\":0.188464043},\"usage_breakdown\":null,\"system_fingerprint\":\"fp_3f3b593e33\",\"x_groq\":{\"id\":\"req_01jxj5axsse8a86ce6fe3rca22\"}}\n", "headers": [] } } \ No newline at end of file diff --git a/packages/xl-ai/src/api/formats/html-blocks/__snapshots__/htmlBlocks.test.ts/Add/__msw_snapshots__/groq.chat/llama-3.3-70b-versatile (non-streaming)/add a new paragraph (start)_1_232100784a2397a470c08d82001cb7fb.json b/packages/xl-ai/src/api/formats/html-blocks/__snapshots__/htmlBlocks.test.ts/Add/__msw_snapshots__/groq.chat/llama-3.3-70b-versatile (non-streaming)/add a new paragraph (start)_1_232100784a2397a470c08d82001cb7fb.json index 4fb7590459..be7fce3ef0 100644 --- a/packages/xl-ai/src/api/formats/html-blocks/__snapshots__/htmlBlocks.test.ts/Add/__msw_snapshots__/groq.chat/llama-3.3-70b-versatile (non-streaming)/add a new paragraph (start)_1_232100784a2397a470c08d82001cb7fb.json +++ b/packages/xl-ai/src/api/formats/html-blocks/__snapshots__/htmlBlocks.test.ts/Add/__msw_snapshots__/groq.chat/llama-3.3-70b-versatile (non-streaming)/add a new paragraph (start)_1_232100784a2397a470c08d82001cb7fb.json @@ -9,7 +9,7 @@ "response": { "status": 200, "statusText": "", - "body": "{\"id\":\"chatcmpl-24150ec8-317d-46fd-83df-932e72c46b0f\",\"object\":\"chat.completion\",\"created\":1749541784,\"model\":\"llama-3.3-70b-versatile\",\"choices\":[{\"index\":0,\"message\":{\"role\":\"assistant\",\"tool_calls\":[{\"id\":\"call_63dr\",\"type\":\"function\",\"function\":{\"name\":\"json\",\"arguments\":\"{\\\"operations\\\":[{\\\"blocks\\\":[\\\"\\\\u003cp\\\\u003eYou look great today!\\\\u003c/p\\\\u003e\\\"],\\\"position\\\":\\\"before\\\",\\\"referenceId\\\":\\\"ref1$\\\",\\\"type\\\":\\\"add\\\"}]}\"}}]},\"logprobs\":null,\"finish_reason\":\"tool_calls\"}],\"usage\":{\"queue_time\":0.09554713100000001,\"prompt_tokens\":848,\"prompt_time\":0.06337155,\"completion_tokens\":35,\"completion_time\":0.12742372,\"total_tokens\":883,\"total_time\":0.19079527},\"usage_breakdown\":{\"models\":null},\"system_fingerprint\":\"fp_2ddfbb0da0\",\"x_groq\":{\"id\":\"req_01jxcd22ywfs68bq4yc7x5wtpb\"}}\n", + "body": "{\"id\":\"chatcmpl-526e8aaa-c021-4219-94d3-e716b215b01a\",\"object\":\"chat.completion\",\"created\":1749735011,\"model\":\"llama-3.3-70b-versatile\",\"choices\":[{\"index\":0,\"message\":{\"role\":\"assistant\",\"tool_calls\":[{\"id\":\"k88tbqp9f\",\"type\":\"function\",\"function\":{\"name\":\"json\",\"arguments\":\"{\\\"operations\\\":[{\\\"blocks\\\":[\\\"\\\\u003cp\\\\u003eYou look great today!\\\\u003c/p\\\\u003e\\\"],\\\"position\\\":\\\"before\\\",\\\"referenceId\\\":\\\"ref1$\\\",\\\"type\\\":\\\"add\\\"}]}\"}}]},\"logprobs\":null,\"finish_reason\":\"tool_calls\"}],\"usage\":{\"queue_time\":0.091399001,\"prompt_tokens\":835,\"prompt_time\":0.065172628,\"completion_tokens\":35,\"completion_time\":0.174045963,\"total_tokens\":870,\"total_time\":0.239218591},\"usage_breakdown\":null,\"system_fingerprint\":\"fp_3f3b593e33\",\"x_groq\":{\"id\":\"req_01jxj5axcpfdta36yqazhrbrgr\"}}\n", "headers": [] } } \ No newline at end of file diff --git a/packages/xl-ai/src/api/formats/html-blocks/__snapshots__/htmlBlocks.test.ts/Add/__msw_snapshots__/groq.chat/llama-3.3-70b-versatile (streaming)/Add heading (h1) and code block_1_da4995473884c05440ca118c6ae41453.json b/packages/xl-ai/src/api/formats/html-blocks/__snapshots__/htmlBlocks.test.ts/Add/__msw_snapshots__/groq.chat/llama-3.3-70b-versatile (streaming)/Add heading (h1) and code block_1_da4995473884c05440ca118c6ae41453.json index 59196e834b..8ceead3e82 100644 --- a/packages/xl-ai/src/api/formats/html-blocks/__snapshots__/htmlBlocks.test.ts/Add/__msw_snapshots__/groq.chat/llama-3.3-70b-versatile (streaming)/Add heading (h1) and code block_1_da4995473884c05440ca118c6ae41453.json +++ b/packages/xl-ai/src/api/formats/html-blocks/__snapshots__/htmlBlocks.test.ts/Add/__msw_snapshots__/groq.chat/llama-3.3-70b-versatile (streaming)/Add heading (h1) and code block_1_da4995473884c05440ca118c6ae41453.json @@ -9,7 +9,7 @@ "response": { "status": 200, "statusText": "", - "body": "data: {\"id\":\"chatcmpl-31db6e19-547a-4005-b555-f845c21cb939\",\"object\":\"chat.completion.chunk\",\"created\":1749541776,\"model\":\"llama-3.3-70b-versatile\",\"system_fingerprint\":\"fp_2ddfbb0da0\",\"choices\":[{\"index\":0,\"delta\":{\"role\":\"assistant\",\"content\":null},\"logprobs\":null,\"finish_reason\":null}],\"x_groq\":{\"id\":\"req_01jxcd1tpkfs49bffna3hqyk1m\"}}\n\ndata: {\"id\":\"chatcmpl-31db6e19-547a-4005-b555-f845c21cb939\",\"object\":\"chat.completion.chunk\",\"created\":1749541776,\"model\":\"llama-3.3-70b-versatile\",\"system_fingerprint\":\"fp_2ddfbb0da0\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"id\":\"call_de1a\",\"type\":\"function\",\"function\":{\"name\":\"json\",\"arguments\":\"{\\\"operations\\\":[{\\\"blocks\\\":[\\\"\\\\u003ch1\\\\u003eCode\\\\u003c/h1\\\\u003e\\\",\\\"\\\\u003cpre\\\\u003e\\\\u003ccode data-language=\\\\\\\"javascript\\\\\\\"\\\\u003econsole.log('hello world');\\\\u003c/code\\\\u003e\\\\u003c/pre\\\\u003e\\\"],\\\"position\\\":\\\"after\\\",\\\"referenceId\\\":\\\"ref2$\\\",\\\"type\\\":\\\"add\\\"}]}\"},\"index\":0}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-31db6e19-547a-4005-b555-f845c21cb939\",\"object\":\"chat.completion.chunk\",\"created\":1749541776,\"model\":\"llama-3.3-70b-versatile\",\"system_fingerprint\":\"fp_2ddfbb0da0\",\"choices\":[{\"index\":0,\"delta\":{},\"logprobs\":null,\"finish_reason\":\"tool_calls\"}],\"x_groq\":{\"id\":\"req_01jxcd1tpkfs49bffna3hqyk1m\",\"usage\":{\"queue_time\":0.10179555400000001,\"prompt_tokens\":859,\"prompt_time\":0.081460698,\"completion_tokens\":55,\"completion_time\":0.2,\"total_tokens\":914,\"total_time\":0.281460698}}}\n\ndata: [DONE]\n\n", + "body": "data: {\"id\":\"chatcmpl-72548951-766a-4018-ba35-a251b39e732d\",\"object\":\"chat.completion.chunk\",\"created\":1749735002,\"model\":\"llama-3.3-70b-versatile\",\"system_fingerprint\":\"fp_2ddfbb0da0\",\"choices\":[{\"index\":0,\"delta\":{\"role\":\"assistant\",\"content\":null},\"logprobs\":null,\"finish_reason\":null}],\"x_groq\":{\"id\":\"req_01jxj5amjje6yv7160wmb7q5mx\"}}\n\ndata: {\"id\":\"chatcmpl-72548951-766a-4018-ba35-a251b39e732d\",\"object\":\"chat.completion.chunk\",\"created\":1749735003,\"model\":\"llama-3.3-70b-versatile\",\"system_fingerprint\":\"fp_2ddfbb0da0\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"id\":\"hprz8hk3c\",\"type\":\"function\",\"function\":{\"name\":\"json\",\"arguments\":\"{\\\"operations\\\":[{\\\"blocks\\\":[\\\"\\\\u003ch1\\\\u003eCode\\\\u003c/h1\\\\u003e\\\",\\\"\\\\u003cpre\\\\u003e\\\\u003ccode data-language=\\\\\\\"javascript\\\\\\\"\\\\u003econsole.log('hello world');\\\\u003c/code\\\\u003e\\\\u003c/pre\\\\u003e\\\"],\\\"position\\\":\\\"after\\\",\\\"referenceId\\\":\\\"ref2$\\\",\\\"type\\\":\\\"add\\\"}]}\"},\"index\":0}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-72548951-766a-4018-ba35-a251b39e732d\",\"object\":\"chat.completion.chunk\",\"created\":1749735003,\"model\":\"llama-3.3-70b-versatile\",\"system_fingerprint\":\"fp_2ddfbb0da0\",\"choices\":[{\"index\":0,\"delta\":{},\"logprobs\":null,\"finish_reason\":\"tool_calls\"}],\"x_groq\":{\"id\":\"req_01jxj5amjje6yv7160wmb7q5mx\",\"usage\":{\"queue_time\":0.09459606400000001,\"prompt_tokens\":846,\"prompt_time\":0.064866899,\"completion_tokens\":55,\"completion_time\":0.2,\"total_tokens\":901,\"total_time\":0.264866899}}}\n\ndata: [DONE]\n\n", "headers": [] } } \ No newline at end of file diff --git a/packages/xl-ai/src/api/formats/html-blocks/__snapshots__/htmlBlocks.test.ts/Add/__msw_snapshots__/groq.chat/llama-3.3-70b-versatile (streaming)/add a list (end)_1_bcc7319416c9b14368ea5ad861f9b722.json b/packages/xl-ai/src/api/formats/html-blocks/__snapshots__/htmlBlocks.test.ts/Add/__msw_snapshots__/groq.chat/llama-3.3-70b-versatile (streaming)/add a list (end)_1_bcc7319416c9b14368ea5ad861f9b722.json index b2fdf7cf53..7c30bb39ac 100644 --- a/packages/xl-ai/src/api/formats/html-blocks/__snapshots__/htmlBlocks.test.ts/Add/__msw_snapshots__/groq.chat/llama-3.3-70b-versatile (streaming)/add a list (end)_1_bcc7319416c9b14368ea5ad861f9b722.json +++ b/packages/xl-ai/src/api/formats/html-blocks/__snapshots__/htmlBlocks.test.ts/Add/__msw_snapshots__/groq.chat/llama-3.3-70b-versatile (streaming)/add a list (end)_1_bcc7319416c9b14368ea5ad861f9b722.json @@ -9,7 +9,7 @@ "response": { "status": 200, "statusText": "", - "body": "data: {\"id\":\"chatcmpl-9a9ad8c2-2ad1-4cef-a0e0-9dbca5e8ea42\",\"object\":\"chat.completion.chunk\",\"created\":1749541775,\"model\":\"llama-3.3-70b-versatile\",\"system_fingerprint\":\"fp_3f3b593e33\",\"choices\":[{\"index\":0,\"delta\":{\"role\":\"assistant\",\"content\":null},\"logprobs\":null,\"finish_reason\":null}],\"x_groq\":{\"id\":\"req_01jxcd1tajet6ramzkhtzbyphb\"}}\n\ndata: {\"id\":\"chatcmpl-9a9ad8c2-2ad1-4cef-a0e0-9dbca5e8ea42\",\"object\":\"chat.completion.chunk\",\"created\":1749541775,\"model\":\"llama-3.3-70b-versatile\",\"system_fingerprint\":\"fp_3f3b593e33\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"id\":\"call_sqbs\",\"type\":\"function\",\"function\":{\"name\":\"json\",\"arguments\":\"{\\\"operations\\\":[{\\\"blocks\\\":[\\\"\\\\u003cul\\\\u003e\\\\u003cli\\\\u003eApples\\\\u003c/li\\\\u003e\\\\u003c/ul\\\\u003e\\\",\\\"\\\\u003cul\\\\u003e\\\\u003cli\\\\u003eBananas\\\\u003c/li\\\\u003e\\\\u003c/ul\\\\u003e\\\"],\\\"position\\\":\\\"after\\\",\\\"referenceId\\\":\\\"ref2$\\\",\\\"type\\\":\\\"add\\\"}]}\"},\"index\":0}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-9a9ad8c2-2ad1-4cef-a0e0-9dbca5e8ea42\",\"object\":\"chat.completion.chunk\",\"created\":1749541775,\"model\":\"llama-3.3-70b-versatile\",\"system_fingerprint\":\"fp_3f3b593e33\",\"choices\":[{\"index\":0,\"delta\":{},\"logprobs\":null,\"finish_reason\":\"tool_calls\"}],\"x_groq\":{\"id\":\"req_01jxcd1tajet6ramzkhtzbyphb\",\"usage\":{\"queue_time\":0.09329590600000001,\"prompt_tokens\":850,\"prompt_time\":0.064963418,\"completion_tokens\":51,\"completion_time\":0.185454545,\"total_tokens\":901,\"total_time\":0.250417963}}}\n\ndata: [DONE]\n\n", + "body": "data: {\"id\":\"chatcmpl-aaec325d-3a73-4a40-ae7a-1d7a6e2e2778\",\"object\":\"chat.completion.chunk\",\"created\":1749735002,\"model\":\"llama-3.3-70b-versatile\",\"system_fingerprint\":\"fp_6507bcfb6f\",\"choices\":[{\"index\":0,\"delta\":{\"role\":\"assistant\",\"content\":null},\"logprobs\":null,\"finish_reason\":null}],\"x_groq\":{\"id\":\"req_01jxj5am66fxmv61kd5fp0avm6\"}}\n\ndata: {\"id\":\"chatcmpl-aaec325d-3a73-4a40-ae7a-1d7a6e2e2778\",\"object\":\"chat.completion.chunk\",\"created\":1749735002,\"model\":\"llama-3.3-70b-versatile\",\"system_fingerprint\":\"fp_6507bcfb6f\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"id\":\"n75ngk650\",\"type\":\"function\",\"function\":{\"name\":\"json\",\"arguments\":\"{\\\"operations\\\":[{\\\"blocks\\\":[\\\"\\\\u003cul\\\\u003e\\\\u003cli\\\\u003eApples\\\\u003c/li\\\\u003e\\\\u003c/ul\\\\u003e\\\",\\\"\\\\u003cul\\\\u003e\\\\u003cli\\\\u003eBananas\\\\u003c/li\\\\u003e\\\\u003c/ul\\\\u003e\\\"],\\\"position\\\":\\\"after\\\",\\\"referenceId\\\":\\\"ref2$\\\",\\\"type\\\":\\\"add\\\"}]}\"},\"index\":0}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-aaec325d-3a73-4a40-ae7a-1d7a6e2e2778\",\"object\":\"chat.completion.chunk\",\"created\":1749735002,\"model\":\"llama-3.3-70b-versatile\",\"system_fingerprint\":\"fp_6507bcfb6f\",\"choices\":[{\"index\":0,\"delta\":{},\"logprobs\":null,\"finish_reason\":\"tool_calls\"}],\"x_groq\":{\"id\":\"req_01jxj5am66fxmv61kd5fp0avm6\",\"usage\":{\"queue_time\":0.106533102,\"prompt_tokens\":837,\"prompt_time\":0.054820783,\"completion_tokens\":51,\"completion_time\":0.185454545,\"total_tokens\":888,\"total_time\":0.240275328}}}\n\ndata: [DONE]\n\n", "headers": [] } } \ No newline at end of file diff --git a/packages/xl-ai/src/api/formats/html-blocks/__snapshots__/htmlBlocks.test.ts/Add/__msw_snapshots__/groq.chat/llama-3.3-70b-versatile (streaming)/add a new paragraph (empty doc)_1_8fd66df698028c81b94d9c3da3f48565.json b/packages/xl-ai/src/api/formats/html-blocks/__snapshots__/htmlBlocks.test.ts/Add/__msw_snapshots__/groq.chat/llama-3.3-70b-versatile (streaming)/add a new paragraph (empty doc)_1_8fd66df698028c81b94d9c3da3f48565.json index 0285668f17..b97582dd1e 100644 --- a/packages/xl-ai/src/api/formats/html-blocks/__snapshots__/htmlBlocks.test.ts/Add/__msw_snapshots__/groq.chat/llama-3.3-70b-versatile (streaming)/add a new paragraph (empty doc)_1_8fd66df698028c81b94d9c3da3f48565.json +++ b/packages/xl-ai/src/api/formats/html-blocks/__snapshots__/htmlBlocks.test.ts/Add/__msw_snapshots__/groq.chat/llama-3.3-70b-versatile (streaming)/add a new paragraph (empty doc)_1_8fd66df698028c81b94d9c3da3f48565.json @@ -9,7 +9,7 @@ "response": { "status": 200, "statusText": "", - "body": "data: {\"id\":\"chatcmpl-41409baa-9c1a-4fad-90cc-ffbd78b7a3df\",\"object\":\"chat.completion.chunk\",\"created\":1749541776,\"model\":\"llama-3.3-70b-versatile\",\"system_fingerprint\":\"fp_3f3b593e33\",\"choices\":[{\"index\":0,\"delta\":{\"role\":\"assistant\",\"content\":null},\"logprobs\":null,\"finish_reason\":null}],\"x_groq\":{\"id\":\"req_01jxcd1v3wet79rx3rtxyvfn8j\"}}\n\ndata: {\"id\":\"chatcmpl-41409baa-9c1a-4fad-90cc-ffbd78b7a3df\",\"object\":\"chat.completion.chunk\",\"created\":1749541776,\"model\":\"llama-3.3-70b-versatile\",\"system_fingerprint\":\"fp_3f3b593e33\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"id\":\"call_0jqd\",\"type\":\"function\",\"function\":{\"name\":\"json\",\"arguments\":\"{\\\"operations\\\":[{\\\"block\\\":\\\"\\\\u003cp\\\\u003eYou look great today!\\\\u003c/p\\\\u003e\\\",\\\"id\\\":\\\"ref1$\\\",\\\"type\\\":\\\"update\\\"}]}\"},\"index\":0}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-41409baa-9c1a-4fad-90cc-ffbd78b7a3df\",\"object\":\"chat.completion.chunk\",\"created\":1749541776,\"model\":\"llama-3.3-70b-versatile\",\"system_fingerprint\":\"fp_3f3b593e33\",\"choices\":[{\"index\":0,\"delta\":{},\"logprobs\":null,\"finish_reason\":\"tool_calls\"}],\"x_groq\":{\"id\":\"req_01jxcd1v3wet79rx3rtxyvfn8j\",\"usage\":{\"queue_time\":0.092929812,\"prompt_tokens\":819,\"prompt_time\":0.089388665,\"completion_tokens\":29,\"completion_time\":0.112356149,\"total_tokens\":848,\"total_time\":0.201744814}}}\n\ndata: [DONE]\n\n", + "body": "data: {\"id\":\"chatcmpl-6934a8ab-ea7d-455c-9385-777a43dc1dea\",\"object\":\"chat.completion.chunk\",\"created\":1749735003,\"model\":\"llama-3.3-70b-versatile\",\"system_fingerprint\":\"fp_6507bcfb6f\",\"choices\":[{\"index\":0,\"delta\":{\"role\":\"assistant\",\"content\":null},\"logprobs\":null,\"finish_reason\":null}],\"x_groq\":{\"id\":\"req_01jxj5amzgfd2vg0vxqbx0xpvj\"}}\n\ndata: {\"id\":\"chatcmpl-6934a8ab-ea7d-455c-9385-777a43dc1dea\",\"object\":\"chat.completion.chunk\",\"created\":1749735003,\"model\":\"llama-3.3-70b-versatile\",\"system_fingerprint\":\"fp_6507bcfb6f\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"id\":\"4nwdc3smg\",\"type\":\"function\",\"function\":{\"name\":\"json\",\"arguments\":\"{\\\"operations\\\":[{\\\"block\\\":\\\"\\\\u003cp\\\\u003eYou look great today!\\\\u003c/p\\\\u003e\\\",\\\"id\\\":\\\"ref1$\\\",\\\"type\\\":\\\"update\\\"}]}\"},\"index\":0}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-6934a8ab-ea7d-455c-9385-777a43dc1dea\",\"object\":\"chat.completion.chunk\",\"created\":1749735003,\"model\":\"llama-3.3-70b-versatile\",\"system_fingerprint\":\"fp_6507bcfb6f\",\"choices\":[{\"index\":0,\"delta\":{},\"logprobs\":null,\"finish_reason\":\"tool_calls\"}],\"x_groq\":{\"id\":\"req_01jxj5amzgfd2vg0vxqbx0xpvj\",\"usage\":{\"queue_time\":0.099784388,\"prompt_tokens\":806,\"prompt_time\":0.089811677,\"completion_tokens\":29,\"completion_time\":0.112542101,\"total_tokens\":835,\"total_time\":0.202353778}}}\n\ndata: [DONE]\n\n", "headers": [] } } \ No newline at end of file diff --git a/packages/xl-ai/src/api/formats/html-blocks/__snapshots__/htmlBlocks.test.ts/Add/__msw_snapshots__/groq.chat/llama-3.3-70b-versatile (streaming)/add a new paragraph (end)_1_1df9f2bee04498ef092f332ebce02289.json b/packages/xl-ai/src/api/formats/html-blocks/__snapshots__/htmlBlocks.test.ts/Add/__msw_snapshots__/groq.chat/llama-3.3-70b-versatile (streaming)/add a new paragraph (end)_1_1df9f2bee04498ef092f332ebce02289.json index f8626aa77f..3586f59f35 100644 --- a/packages/xl-ai/src/api/formats/html-blocks/__snapshots__/htmlBlocks.test.ts/Add/__msw_snapshots__/groq.chat/llama-3.3-70b-versatile (streaming)/add a new paragraph (end)_1_1df9f2bee04498ef092f332ebce02289.json +++ b/packages/xl-ai/src/api/formats/html-blocks/__snapshots__/htmlBlocks.test.ts/Add/__msw_snapshots__/groq.chat/llama-3.3-70b-versatile (streaming)/add a new paragraph (end)_1_1df9f2bee04498ef092f332ebce02289.json @@ -9,7 +9,7 @@ "response": { "status": 200, "statusText": "", - "body": "data: {\"id\":\"chatcmpl-4eadd31b-d788-4923-bd7f-6f5a33388b6b\",\"object\":\"chat.completion.chunk\",\"created\":1749541775,\"model\":\"llama-3.3-70b-versatile\",\"system_fingerprint\":\"fp_3f3b593e33\",\"choices\":[{\"index\":0,\"delta\":{\"role\":\"assistant\",\"content\":null},\"logprobs\":null,\"finish_reason\":null}],\"x_groq\":{\"id\":\"req_01jxcd1t0cfs3bjr8m1qpwwmxv\"}}\n\ndata: {\"id\":\"chatcmpl-4eadd31b-d788-4923-bd7f-6f5a33388b6b\",\"object\":\"chat.completion.chunk\",\"created\":1749541775,\"model\":\"llama-3.3-70b-versatile\",\"system_fingerprint\":\"fp_3f3b593e33\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"id\":\"call_ny2f\",\"type\":\"function\",\"function\":{\"name\":\"json\",\"arguments\":\"{\\\"operations\\\":[{\\\"blocks\\\":[\\\"\\\\u003cp\\\\u003eYou look great today!\\\\u003c/p\\\\u003e\\\"],\\\"position\\\":\\\"after\\\",\\\"referenceId\\\":\\\"ref2$\\\",\\\"type\\\":\\\"add\\\"}]}\"},\"index\":0}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-4eadd31b-d788-4923-bd7f-6f5a33388b6b\",\"object\":\"chat.completion.chunk\",\"created\":1749541775,\"model\":\"llama-3.3-70b-versatile\",\"system_fingerprint\":\"fp_3f3b593e33\",\"choices\":[{\"index\":0,\"delta\":{},\"logprobs\":null,\"finish_reason\":\"tool_calls\"}],\"x_groq\":{\"id\":\"req_01jxcd1t0cfs3bjr8m1qpwwmxv\",\"usage\":{\"queue_time\":0.09397548700000001,\"prompt_tokens\":848,\"prompt_time\":0.063115456,\"completion_tokens\":35,\"completion_time\":0.127272727,\"total_tokens\":883,\"total_time\":0.190388183}}}\n\ndata: [DONE]\n\n", + "body": "data: {\"id\":\"chatcmpl-369069e3-6b5f-418b-a117-2cdd68413046\",\"object\":\"chat.completion.chunk\",\"created\":1749735002,\"model\":\"llama-3.3-70b-versatile\",\"system_fingerprint\":\"fp_6507bcfb6f\",\"choices\":[{\"index\":0,\"delta\":{\"role\":\"assistant\",\"content\":null},\"logprobs\":null,\"finish_reason\":null}],\"x_groq\":{\"id\":\"req_01jxj5akvnfd0vvs7cg18wspc3\"}}\n\ndata: {\"id\":\"chatcmpl-369069e3-6b5f-418b-a117-2cdd68413046\",\"object\":\"chat.completion.chunk\",\"created\":1749735002,\"model\":\"llama-3.3-70b-versatile\",\"system_fingerprint\":\"fp_6507bcfb6f\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"id\":\"91b39mskf\",\"type\":\"function\",\"function\":{\"name\":\"json\",\"arguments\":\"{\\\"operations\\\":[{\\\"blocks\\\":[\\\"\\\\u003cp\\\\u003eYou look great today!\\\\u003c/p\\\\u003e\\\"],\\\"position\\\":\\\"after\\\",\\\"referenceId\\\":\\\"ref2$\\\",\\\"type\\\":\\\"add\\\"}]}\"},\"index\":0}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-369069e3-6b5f-418b-a117-2cdd68413046\",\"object\":\"chat.completion.chunk\",\"created\":1749735002,\"model\":\"llama-3.3-70b-versatile\",\"system_fingerprint\":\"fp_6507bcfb6f\",\"choices\":[{\"index\":0,\"delta\":{},\"logprobs\":null,\"finish_reason\":\"tool_calls\"}],\"x_groq\":{\"id\":\"req_01jxj5akvnfd0vvs7cg18wspc3\",\"usage\":{\"queue_time\":0.092571143,\"prompt_tokens\":835,\"prompt_time\":0.060993447,\"completion_tokens\":35,\"completion_time\":0.127272727,\"total_tokens\":870,\"total_time\":0.188266174}}}\n\ndata: [DONE]\n\n", "headers": [] } } \ No newline at end of file diff --git a/packages/xl-ai/src/api/formats/html-blocks/__snapshots__/htmlBlocks.test.ts/Add/__msw_snapshots__/groq.chat/llama-3.3-70b-versatile (streaming)/add a new paragraph (start)_1_ddea32bf65559924075cf5a378ff52a9.json b/packages/xl-ai/src/api/formats/html-blocks/__snapshots__/htmlBlocks.test.ts/Add/__msw_snapshots__/groq.chat/llama-3.3-70b-versatile (streaming)/add a new paragraph (start)_1_ddea32bf65559924075cf5a378ff52a9.json index e3162f0532..ba3e6bda43 100644 --- a/packages/xl-ai/src/api/formats/html-blocks/__snapshots__/htmlBlocks.test.ts/Add/__msw_snapshots__/groq.chat/llama-3.3-70b-versatile (streaming)/add a new paragraph (start)_1_ddea32bf65559924075cf5a378ff52a9.json +++ b/packages/xl-ai/src/api/formats/html-blocks/__snapshots__/htmlBlocks.test.ts/Add/__msw_snapshots__/groq.chat/llama-3.3-70b-versatile (streaming)/add a new paragraph (start)_1_ddea32bf65559924075cf5a378ff52a9.json @@ -9,7 +9,7 @@ "response": { "status": 200, "statusText": "", - "body": "data: {\"id\":\"chatcmpl-4c772d4a-80a1-43d7-b4c4-3f8a80bf7fd7\",\"object\":\"chat.completion.chunk\",\"created\":1749541775,\"model\":\"llama-3.3-70b-versatile\",\"system_fingerprint\":\"fp_2ddfbb0da0\",\"choices\":[{\"index\":0,\"delta\":{\"role\":\"assistant\",\"content\":null},\"logprobs\":null,\"finish_reason\":null}],\"x_groq\":{\"id\":\"req_01jxcd1sp9et6brjbqcmfgcq2d\"}}\n\ndata: {\"id\":\"chatcmpl-4c772d4a-80a1-43d7-b4c4-3f8a80bf7fd7\",\"object\":\"chat.completion.chunk\",\"created\":1749541775,\"model\":\"llama-3.3-70b-versatile\",\"system_fingerprint\":\"fp_2ddfbb0da0\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"id\":\"call_1qd5\",\"type\":\"function\",\"function\":{\"name\":\"json\",\"arguments\":\"{\\\"operations\\\":[{\\\"blocks\\\":[\\\"\\\\u003cp\\\\u003eYou look great today!\\\\u003c/p\\\\u003e\\\"],\\\"position\\\":\\\"before\\\",\\\"referenceId\\\":\\\"ref1$\\\",\\\"type\\\":\\\"add\\\"}]}\"},\"index\":0}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-4c772d4a-80a1-43d7-b4c4-3f8a80bf7fd7\",\"object\":\"chat.completion.chunk\",\"created\":1749541775,\"model\":\"llama-3.3-70b-versatile\",\"system_fingerprint\":\"fp_2ddfbb0da0\",\"choices\":[{\"index\":0,\"delta\":{},\"logprobs\":null,\"finish_reason\":\"tool_calls\"}],\"x_groq\":{\"id\":\"req_01jxcd1sp9et6brjbqcmfgcq2d\",\"usage\":{\"queue_time\":0.09440880200000001,\"prompt_tokens\":848,\"prompt_time\":0.06167313,\"completion_tokens\":35,\"completion_time\":0.127272727,\"total_tokens\":883,\"total_time\":0.188945857}}}\n\ndata: [DONE]\n\n", + "body": "data: {\"id\":\"chatcmpl-51f1dbd8-3053-4621-ba30-4fae667beaa2\",\"object\":\"chat.completion.chunk\",\"created\":1749735001,\"model\":\"llama-3.3-70b-versatile\",\"system_fingerprint\":\"fp_3f3b593e33\",\"choices\":[{\"index\":0,\"delta\":{\"role\":\"assistant\",\"content\":null},\"logprobs\":null,\"finish_reason\":null}],\"x_groq\":{\"id\":\"req_01jxj5akfre6tt924djjqwves4\"}}\n\ndata: {\"id\":\"chatcmpl-51f1dbd8-3053-4621-ba30-4fae667beaa2\",\"object\":\"chat.completion.chunk\",\"created\":1749735001,\"model\":\"llama-3.3-70b-versatile\",\"system_fingerprint\":\"fp_3f3b593e33\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"id\":\"ckhkh5yhs\",\"type\":\"function\",\"function\":{\"name\":\"json\",\"arguments\":\"{\\\"operations\\\":[{\\\"blocks\\\":[\\\"\\\\u003cp\\\\u003eYou look great today!\\\\u003c/p\\\\u003e\\\"],\\\"position\\\":\\\"before\\\",\\\"referenceId\\\":\\\"ref1$\\\",\\\"type\\\":\\\"add\\\"}]}\"},\"index\":0}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-51f1dbd8-3053-4621-ba30-4fae667beaa2\",\"object\":\"chat.completion.chunk\",\"created\":1749735001,\"model\":\"llama-3.3-70b-versatile\",\"system_fingerprint\":\"fp_3f3b593e33\",\"choices\":[{\"index\":0,\"delta\":{},\"logprobs\":null,\"finish_reason\":\"tool_calls\"}],\"x_groq\":{\"id\":\"req_01jxj5akfre6tt924djjqwves4\",\"usage\":{\"queue_time\":0.09118687499999999,\"prompt_tokens\":835,\"prompt_time\":0.061023436,\"completion_tokens\":35,\"completion_time\":0.14557445,\"total_tokens\":870,\"total_time\":0.206597886}}}\n\ndata: [DONE]\n\n", "headers": [] } } \ No newline at end of file diff --git a/packages/xl-ai/src/api/formats/html-blocks/__snapshots__/htmlBlocks.test.ts/Add/__msw_snapshots__/openai.chat/gpt-4o-2024-08-06 (non-streaming)/Add heading (h1) and code block_1_411b9303baf0445a2b3d22af986dcbd7.json b/packages/xl-ai/src/api/formats/html-blocks/__snapshots__/htmlBlocks.test.ts/Add/__msw_snapshots__/openai.chat/gpt-4o-2024-08-06 (non-streaming)/Add heading (h1) and code block_1_411b9303baf0445a2b3d22af986dcbd7.json index b2e64f6b2f..19c00931aa 100644 --- a/packages/xl-ai/src/api/formats/html-blocks/__snapshots__/htmlBlocks.test.ts/Add/__msw_snapshots__/openai.chat/gpt-4o-2024-08-06 (non-streaming)/Add heading (h1) and code block_1_411b9303baf0445a2b3d22af986dcbd7.json +++ b/packages/xl-ai/src/api/formats/html-blocks/__snapshots__/htmlBlocks.test.ts/Add/__msw_snapshots__/openai.chat/gpt-4o-2024-08-06 (non-streaming)/Add heading (h1) and code block_1_411b9303baf0445a2b3d22af986dcbd7.json @@ -9,7 +9,7 @@ "response": { "status": 200, "statusText": "", - "body": "{\n \"id\": \"chatcmpl-Bgo1EFfuPHcFWvs2prrAAI1oxPuU7\",\n \"object\": \"chat.completion\",\n \"created\": 1749541748,\n \"model\": \"gpt-4o-2024-08-06\",\n \"choices\": [\n {\n \"index\": 0,\n \"message\": {\n \"role\": \"assistant\",\n \"content\": null,\n \"tool_calls\": [\n {\n \"id\": \"call_IMNtM91lOXnVanNAUWhYhoYB\",\n \"type\": \"function\",\n \"function\": {\n \"name\": \"json\",\n \"arguments\": \"{\\\"operations\\\":[{\\\"type\\\":\\\"add\\\",\\\"referenceId\\\":\\\"ref2$\\\",\\\"position\\\":\\\"after\\\",\\\"blocks\\\":[\\\"

Code

\\\",\\\"
console.log('hello world');
\\\"]}]}\"\n }\n }\n ],\n \"refusal\": null,\n \"annotations\": []\n },\n \"logprobs\": null,\n \"finish_reason\": \"stop\"\n }\n ],\n \"usage\": {\n \"prompt_tokens\": 568,\n \"completion_tokens\": 54,\n \"total_tokens\": 622,\n \"prompt_tokens_details\": {\n \"cached_tokens\": 0,\n \"audio_tokens\": 0\n },\n \"completion_tokens_details\": {\n \"reasoning_tokens\": 0,\n \"audio_tokens\": 0,\n \"accepted_prediction_tokens\": 0,\n \"rejected_prediction_tokens\": 0\n }\n },\n \"service_tier\": \"default\",\n \"system_fingerprint\": \"fp_07871e2ad8\"\n}\n", + "body": "{\n \"id\": \"chatcmpl-BhcHcXzLav5y527uW3UhvSJD9dTeo\",\n \"object\": \"chat.completion\",\n \"created\": 1749734964,\n \"model\": \"gpt-4o-2024-08-06\",\n \"choices\": [\n {\n \"index\": 0,\n \"message\": {\n \"role\": \"assistant\",\n \"content\": null,\n \"tool_calls\": [\n {\n \"id\": \"call_HMrcqJl2U48muUM9mKVoEx89\",\n \"type\": \"function\",\n \"function\": {\n \"name\": \"json\",\n \"arguments\": \"{\\\"operations\\\":[{\\\"type\\\":\\\"add\\\",\\\"referenceId\\\":\\\"ref2$\\\",\\\"position\\\":\\\"after\\\",\\\"blocks\\\":[\\\"

Code

\\\",\\\"
console.log('hello world');
\\\"]}]}\"\n }\n }\n ],\n \"refusal\": null,\n \"annotations\": []\n },\n \"logprobs\": null,\n \"finish_reason\": \"stop\"\n }\n ],\n \"usage\": {\n \"prompt_tokens\": 568,\n \"completion_tokens\": 54,\n \"total_tokens\": 622,\n \"prompt_tokens_details\": {\n \"cached_tokens\": 0,\n \"audio_tokens\": 0\n },\n \"completion_tokens_details\": {\n \"reasoning_tokens\": 0,\n \"audio_tokens\": 0,\n \"accepted_prediction_tokens\": 0,\n \"rejected_prediction_tokens\": 0\n }\n },\n \"service_tier\": \"default\",\n \"system_fingerprint\": \"fp_07871e2ad8\"\n}\n", "headers": [] } } \ No newline at end of file diff --git a/packages/xl-ai/src/api/formats/html-blocks/__snapshots__/htmlBlocks.test.ts/Add/__msw_snapshots__/openai.chat/gpt-4o-2024-08-06 (non-streaming)/add a list (end)_1_b62f9dcc3af6272c847eb867f28464e4.json b/packages/xl-ai/src/api/formats/html-blocks/__snapshots__/htmlBlocks.test.ts/Add/__msw_snapshots__/openai.chat/gpt-4o-2024-08-06 (non-streaming)/add a list (end)_1_b62f9dcc3af6272c847eb867f28464e4.json index 3aaa77791d..22ed35bdc0 100644 --- a/packages/xl-ai/src/api/formats/html-blocks/__snapshots__/htmlBlocks.test.ts/Add/__msw_snapshots__/openai.chat/gpt-4o-2024-08-06 (non-streaming)/add a list (end)_1_b62f9dcc3af6272c847eb867f28464e4.json +++ b/packages/xl-ai/src/api/formats/html-blocks/__snapshots__/htmlBlocks.test.ts/Add/__msw_snapshots__/openai.chat/gpt-4o-2024-08-06 (non-streaming)/add a list (end)_1_b62f9dcc3af6272c847eb867f28464e4.json @@ -9,7 +9,7 @@ "response": { "status": 200, "statusText": "", - "body": "{\n \"id\": \"chatcmpl-Bgo1CRhMN3o7afiaTbitPP0CZDCQ2\",\n \"object\": \"chat.completion\",\n \"created\": 1749541746,\n \"model\": \"gpt-4o-2024-08-06\",\n \"choices\": [\n {\n \"index\": 0,\n \"message\": {\n \"role\": \"assistant\",\n \"content\": null,\n \"tool_calls\": [\n {\n \"id\": \"call_YdaVgNHg9IDD6vdIAI1ANcfQ\",\n \"type\": \"function\",\n \"function\": {\n \"name\": \"json\",\n \"arguments\": \"{\\\"operations\\\":[{\\\"type\\\":\\\"add\\\",\\\"referenceId\\\":\\\"ref2$\\\",\\\"position\\\":\\\"after\\\",\\\"blocks\\\":[\\\"
  • Apples
\\\",\\\"
  • Bananas
\\\"]}]}\"\n }\n }\n ],\n \"refusal\": null,\n \"annotations\": []\n },\n \"logprobs\": null,\n \"finish_reason\": \"stop\"\n }\n ],\n \"usage\": {\n \"prompt_tokens\": 559,\n \"completion_tokens\": 49,\n \"total_tokens\": 608,\n \"prompt_tokens_details\": {\n \"cached_tokens\": 0,\n \"audio_tokens\": 0\n },\n \"completion_tokens_details\": {\n \"reasoning_tokens\": 0,\n \"audio_tokens\": 0,\n \"accepted_prediction_tokens\": 0,\n \"rejected_prediction_tokens\": 0\n }\n },\n \"service_tier\": \"default\",\n \"system_fingerprint\": \"fp_07871e2ad8\"\n}\n", + "body": "{\n \"id\": \"chatcmpl-BhcHaJoVYMoMrMC30NpH85UeenBhz\",\n \"object\": \"chat.completion\",\n \"created\": 1749734962,\n \"model\": \"gpt-4o-2024-08-06\",\n \"choices\": [\n {\n \"index\": 0,\n \"message\": {\n \"role\": \"assistant\",\n \"content\": null,\n \"tool_calls\": [\n {\n \"id\": \"call_vVBHxWaXXZikr4jlgeBC3QvE\",\n \"type\": \"function\",\n \"function\": {\n \"name\": \"json\",\n \"arguments\": \"{\\\"operations\\\":[{\\\"type\\\":\\\"add\\\",\\\"referenceId\\\":\\\"ref2$\\\",\\\"position\\\":\\\"after\\\",\\\"blocks\\\":[\\\"
  • Apples
\\\",\\\"
  • Bananas
\\\"]}]}\"\n }\n }\n ],\n \"refusal\": null,\n \"annotations\": []\n },\n \"logprobs\": null,\n \"finish_reason\": \"stop\"\n }\n ],\n \"usage\": {\n \"prompt_tokens\": 559,\n \"completion_tokens\": 49,\n \"total_tokens\": 608,\n \"prompt_tokens_details\": {\n \"cached_tokens\": 0,\n \"audio_tokens\": 0\n },\n \"completion_tokens_details\": {\n \"reasoning_tokens\": 0,\n \"audio_tokens\": 0,\n \"accepted_prediction_tokens\": 0,\n \"rejected_prediction_tokens\": 0\n }\n },\n \"service_tier\": \"default\",\n \"system_fingerprint\": \"fp_07871e2ad8\"\n}\n", "headers": [] } } \ No newline at end of file diff --git a/packages/xl-ai/src/api/formats/html-blocks/__snapshots__/htmlBlocks.test.ts/Add/__msw_snapshots__/openai.chat/gpt-4o-2024-08-06 (non-streaming)/add a new paragraph (empty doc)_1_e3538aed67ed181c709f2c76ebd3b88c.json b/packages/xl-ai/src/api/formats/html-blocks/__snapshots__/htmlBlocks.test.ts/Add/__msw_snapshots__/openai.chat/gpt-4o-2024-08-06 (non-streaming)/add a new paragraph (empty doc)_1_e3538aed67ed181c709f2c76ebd3b88c.json index 547b1eb2c6..c333c9aab7 100644 --- a/packages/xl-ai/src/api/formats/html-blocks/__snapshots__/htmlBlocks.test.ts/Add/__msw_snapshots__/openai.chat/gpt-4o-2024-08-06 (non-streaming)/add a new paragraph (empty doc)_1_e3538aed67ed181c709f2c76ebd3b88c.json +++ b/packages/xl-ai/src/api/formats/html-blocks/__snapshots__/htmlBlocks.test.ts/Add/__msw_snapshots__/openai.chat/gpt-4o-2024-08-06 (non-streaming)/add a new paragraph (empty doc)_1_e3538aed67ed181c709f2c76ebd3b88c.json @@ -9,7 +9,7 @@ "response": { "status": 200, "statusText": "", - "body": "{\n \"id\": \"chatcmpl-Bgo1FHSUDt9oWchPFT0I4SN3EBKBy\",\n \"object\": \"chat.completion\",\n \"created\": 1749541749,\n \"model\": \"gpt-4o-2024-08-06\",\n \"choices\": [\n {\n \"index\": 0,\n \"message\": {\n \"role\": \"assistant\",\n \"content\": null,\n \"tool_calls\": [\n {\n \"id\": \"call_9t87mRYRYTYcw282STQc21BK\",\n \"type\": \"function\",\n \"function\": {\n \"name\": \"json\",\n \"arguments\": \"{\\\"operations\\\":[{\\\"type\\\":\\\"update\\\",\\\"id\\\":\\\"ref1$\\\",\\\"block\\\":\\\"

You look great today!

\\\"}]}\"\n }\n }\n ],\n \"refusal\": null,\n \"annotations\": []\n },\n \"logprobs\": null,\n \"finish_reason\": \"stop\"\n }\n ],\n \"usage\": {\n \"prompt_tokens\": 529,\n \"completion_tokens\": 27,\n \"total_tokens\": 556,\n \"prompt_tokens_details\": {\n \"cached_tokens\": 0,\n \"audio_tokens\": 0\n },\n \"completion_tokens_details\": {\n \"reasoning_tokens\": 0,\n \"audio_tokens\": 0,\n \"accepted_prediction_tokens\": 0,\n \"rejected_prediction_tokens\": 0\n }\n },\n \"service_tier\": \"default\",\n \"system_fingerprint\": \"fp_07871e2ad8\"\n}\n", + "body": "{\n \"id\": \"chatcmpl-BhcHeBLwNNR7ntGdzeAY52DxK4ymC\",\n \"object\": \"chat.completion\",\n \"created\": 1749734966,\n \"model\": \"gpt-4o-2024-08-06\",\n \"choices\": [\n {\n \"index\": 0,\n \"message\": {\n \"role\": \"assistant\",\n \"content\": null,\n \"tool_calls\": [\n {\n \"id\": \"call_kpodB0YgskXJbNi9zXuzVapO\",\n \"type\": \"function\",\n \"function\": {\n \"name\": \"json\",\n \"arguments\": \"{\\\"operations\\\":[{\\\"type\\\":\\\"update\\\",\\\"id\\\":\\\"ref1$\\\",\\\"block\\\":\\\"

You look great today!

\\\"}]}\"\n }\n }\n ],\n \"refusal\": null,\n \"annotations\": []\n },\n \"logprobs\": null,\n \"finish_reason\": \"stop\"\n }\n ],\n \"usage\": {\n \"prompt_tokens\": 529,\n \"completion_tokens\": 27,\n \"total_tokens\": 556,\n \"prompt_tokens_details\": {\n \"cached_tokens\": 0,\n \"audio_tokens\": 0\n },\n \"completion_tokens_details\": {\n \"reasoning_tokens\": 0,\n \"audio_tokens\": 0,\n \"accepted_prediction_tokens\": 0,\n \"rejected_prediction_tokens\": 0\n }\n },\n \"service_tier\": \"default\",\n \"system_fingerprint\": \"fp_07871e2ad8\"\n}\n", "headers": [] } } \ No newline at end of file diff --git a/packages/xl-ai/src/api/formats/html-blocks/__snapshots__/htmlBlocks.test.ts/Add/__msw_snapshots__/openai.chat/gpt-4o-2024-08-06 (non-streaming)/add a new paragraph (end)_1_4da2dc377fad46f51e531f5cb2594b48.json b/packages/xl-ai/src/api/formats/html-blocks/__snapshots__/htmlBlocks.test.ts/Add/__msw_snapshots__/openai.chat/gpt-4o-2024-08-06 (non-streaming)/add a new paragraph (end)_1_4da2dc377fad46f51e531f5cb2594b48.json index 4f7d4b9525..da55fabeb6 100644 --- a/packages/xl-ai/src/api/formats/html-blocks/__snapshots__/htmlBlocks.test.ts/Add/__msw_snapshots__/openai.chat/gpt-4o-2024-08-06 (non-streaming)/add a new paragraph (end)_1_4da2dc377fad46f51e531f5cb2594b48.json +++ b/packages/xl-ai/src/api/formats/html-blocks/__snapshots__/htmlBlocks.test.ts/Add/__msw_snapshots__/openai.chat/gpt-4o-2024-08-06 (non-streaming)/add a new paragraph (end)_1_4da2dc377fad46f51e531f5cb2594b48.json @@ -9,7 +9,7 @@ "response": { "status": 200, "statusText": "", - "body": "{\n \"id\": \"chatcmpl-Bgo1BZZq10E1utOcEv5FautvjNzd5\",\n \"object\": \"chat.completion\",\n \"created\": 1749541745,\n \"model\": \"gpt-4o-2024-08-06\",\n \"choices\": [\n {\n \"index\": 0,\n \"message\": {\n \"role\": \"assistant\",\n \"content\": null,\n \"tool_calls\": [\n {\n \"id\": \"call_Aoz72YzC4eGaTYJ46DkSOsuu\",\n \"type\": \"function\",\n \"function\": {\n \"name\": \"json\",\n \"arguments\": \"{\\\"operations\\\":[{\\\"type\\\":\\\"add\\\",\\\"referenceId\\\":\\\"ref2$\\\",\\\"position\\\":\\\"after\\\",\\\"blocks\\\":[\\\"

You look great today!

\\\"]}]}\"\n }\n }\n ],\n \"refusal\": null,\n \"annotations\": []\n },\n \"logprobs\": null,\n \"finish_reason\": \"stop\"\n }\n ],\n \"usage\": {\n \"prompt_tokens\": 557,\n \"completion_tokens\": 33,\n \"total_tokens\": 590,\n \"prompt_tokens_details\": {\n \"cached_tokens\": 0,\n \"audio_tokens\": 0\n },\n \"completion_tokens_details\": {\n \"reasoning_tokens\": 0,\n \"audio_tokens\": 0,\n \"accepted_prediction_tokens\": 0,\n \"rejected_prediction_tokens\": 0\n }\n },\n \"service_tier\": \"default\",\n \"system_fingerprint\": \"fp_07871e2ad8\"\n}\n", + "body": "{\n \"id\": \"chatcmpl-BhcHZThDBiAbblf8hHnPXcot6f7Uo\",\n \"object\": \"chat.completion\",\n \"created\": 1749734961,\n \"model\": \"gpt-4o-2024-08-06\",\n \"choices\": [\n {\n \"index\": 0,\n \"message\": {\n \"role\": \"assistant\",\n \"content\": null,\n \"tool_calls\": [\n {\n \"id\": \"call_WN68RZCd97USYTUoxTScDSr4\",\n \"type\": \"function\",\n \"function\": {\n \"name\": \"json\",\n \"arguments\": \"{\\\"operations\\\":[{\\\"type\\\":\\\"add\\\",\\\"referenceId\\\":\\\"ref2$\\\",\\\"position\\\":\\\"after\\\",\\\"blocks\\\":[\\\"

You look great today!

\\\"]}]}\"\n }\n }\n ],\n \"refusal\": null,\n \"annotations\": []\n },\n \"logprobs\": null,\n \"finish_reason\": \"stop\"\n }\n ],\n \"usage\": {\n \"prompt_tokens\": 557,\n \"completion_tokens\": 33,\n \"total_tokens\": 590,\n \"prompt_tokens_details\": {\n \"cached_tokens\": 0,\n \"audio_tokens\": 0\n },\n \"completion_tokens_details\": {\n \"reasoning_tokens\": 0,\n \"audio_tokens\": 0,\n \"accepted_prediction_tokens\": 0,\n \"rejected_prediction_tokens\": 0\n }\n },\n \"service_tier\": \"default\",\n \"system_fingerprint\": \"fp_07871e2ad8\"\n}\n", "headers": [] } } \ No newline at end of file diff --git a/packages/xl-ai/src/api/formats/html-blocks/__snapshots__/htmlBlocks.test.ts/Add/__msw_snapshots__/openai.chat/gpt-4o-2024-08-06 (non-streaming)/add a new paragraph (start)_1_9a1739085965869c82a4ab025a9b426c.json b/packages/xl-ai/src/api/formats/html-blocks/__snapshots__/htmlBlocks.test.ts/Add/__msw_snapshots__/openai.chat/gpt-4o-2024-08-06 (non-streaming)/add a new paragraph (start)_1_9a1739085965869c82a4ab025a9b426c.json index 93d7f3cde4..f4d51883ad 100644 --- a/packages/xl-ai/src/api/formats/html-blocks/__snapshots__/htmlBlocks.test.ts/Add/__msw_snapshots__/openai.chat/gpt-4o-2024-08-06 (non-streaming)/add a new paragraph (start)_1_9a1739085965869c82a4ab025a9b426c.json +++ b/packages/xl-ai/src/api/formats/html-blocks/__snapshots__/htmlBlocks.test.ts/Add/__msw_snapshots__/openai.chat/gpt-4o-2024-08-06 (non-streaming)/add a new paragraph (start)_1_9a1739085965869c82a4ab025a9b426c.json @@ -9,7 +9,7 @@ "response": { "status": 200, "statusText": "", - "body": "{\n \"id\": \"chatcmpl-Bgo19NC5TNNqAjPfhTxl8M58HBlkB\",\n \"object\": \"chat.completion\",\n \"created\": 1749541743,\n \"model\": \"gpt-4o-2024-08-06\",\n \"choices\": [\n {\n \"index\": 0,\n \"message\": {\n \"role\": \"assistant\",\n \"content\": null,\n \"tool_calls\": [\n {\n \"id\": \"call_JLipOUWucsBR9ejNKscWu1pR\",\n \"type\": \"function\",\n \"function\": {\n \"name\": \"json\",\n \"arguments\": \"{\\\"operations\\\":[{\\\"type\\\":\\\"add\\\",\\\"referenceId\\\":\\\"ref1$\\\",\\\"position\\\":\\\"before\\\",\\\"blocks\\\":[\\\"

You look great today!

\\\"]}]}\"\n }\n }\n ],\n \"refusal\": null,\n \"annotations\": []\n },\n \"logprobs\": null,\n \"finish_reason\": \"stop\"\n }\n ],\n \"usage\": {\n \"prompt_tokens\": 557,\n \"completion_tokens\": 33,\n \"total_tokens\": 590,\n \"prompt_tokens_details\": {\n \"cached_tokens\": 0,\n \"audio_tokens\": 0\n },\n \"completion_tokens_details\": {\n \"reasoning_tokens\": 0,\n \"audio_tokens\": 0,\n \"accepted_prediction_tokens\": 0,\n \"rejected_prediction_tokens\": 0\n }\n },\n \"service_tier\": \"default\",\n \"system_fingerprint\": \"fp_07871e2ad8\"\n}\n", + "body": "{\n \"id\": \"chatcmpl-BhcHXwZHLPKTGgETcmuOadPrjjciV\",\n \"object\": \"chat.completion\",\n \"created\": 1749734959,\n \"model\": \"gpt-4o-2024-08-06\",\n \"choices\": [\n {\n \"index\": 0,\n \"message\": {\n \"role\": \"assistant\",\n \"content\": null,\n \"tool_calls\": [\n {\n \"id\": \"call_bwEScmPOyhi63oPVn60iCfsZ\",\n \"type\": \"function\",\n \"function\": {\n \"name\": \"json\",\n \"arguments\": \"{\\\"operations\\\":[{\\\"type\\\":\\\"add\\\",\\\"referenceId\\\":\\\"ref1$\\\",\\\"position\\\":\\\"before\\\",\\\"blocks\\\":[\\\"

You look great today!

\\\"]}]}\"\n }\n }\n ],\n \"refusal\": null,\n \"annotations\": []\n },\n \"logprobs\": null,\n \"finish_reason\": \"stop\"\n }\n ],\n \"usage\": {\n \"prompt_tokens\": 557,\n \"completion_tokens\": 33,\n \"total_tokens\": 590,\n \"prompt_tokens_details\": {\n \"cached_tokens\": 0,\n \"audio_tokens\": 0\n },\n \"completion_tokens_details\": {\n \"reasoning_tokens\": 0,\n \"audio_tokens\": 0,\n \"accepted_prediction_tokens\": 0,\n \"rejected_prediction_tokens\": 0\n }\n },\n \"service_tier\": \"default\",\n \"system_fingerprint\": \"fp_07871e2ad8\"\n}\n", "headers": [] } } \ No newline at end of file diff --git a/packages/xl-ai/src/api/formats/html-blocks/__snapshots__/htmlBlocks.test.ts/Add/__msw_snapshots__/openai.chat/gpt-4o-2024-08-06 (streaming)/Add heading (h1) and code block_1_91d754a12d792f37fe1483d19a7b4e64.json b/packages/xl-ai/src/api/formats/html-blocks/__snapshots__/htmlBlocks.test.ts/Add/__msw_snapshots__/openai.chat/gpt-4o-2024-08-06 (streaming)/Add heading (h1) and code block_1_91d754a12d792f37fe1483d19a7b4e64.json index 4e91d76d72..f15b1587bd 100644 --- a/packages/xl-ai/src/api/formats/html-blocks/__snapshots__/htmlBlocks.test.ts/Add/__msw_snapshots__/openai.chat/gpt-4o-2024-08-06 (streaming)/Add heading (h1) and code block_1_91d754a12d792f37fe1483d19a7b4e64.json +++ b/packages/xl-ai/src/api/formats/html-blocks/__snapshots__/htmlBlocks.test.ts/Add/__msw_snapshots__/openai.chat/gpt-4o-2024-08-06 (streaming)/Add heading (h1) and code block_1_91d754a12d792f37fe1483d19a7b4e64.json @@ -9,7 +9,7 @@ "response": { "status": 200, "statusText": "", - "body": "data: {\"id\":\"chatcmpl-Bgn5nBNesLvC44zMiUckIUWeUN2Ws\",\"object\":\"chat.completion.chunk\",\"created\":1749538187,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_07871e2ad8\",\"choices\":[{\"index\":0,\"delta\":{\"role\":\"assistant\",\"content\":null,\"tool_calls\":[{\"index\":0,\"id\":\"call_t7HvFA2SfYxoGyXjyhqozmnP\",\"type\":\"function\",\"function\":{\"name\":\"json\",\"arguments\":\"\"}}],\"refusal\":null},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-Bgn5nBNesLvC44zMiUckIUWeUN2Ws\",\"object\":\"chat.completion.chunk\",\"created\":1749538187,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_07871e2ad8\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"{\\\"\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-Bgn5nBNesLvC44zMiUckIUWeUN2Ws\",\"object\":\"chat.completion.chunk\",\"created\":1749538187,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_07871e2ad8\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"operations\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-Bgn5nBNesLvC44zMiUckIUWeUN2Ws\",\"object\":\"chat.completion.chunk\",\"created\":1749538187,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_07871e2ad8\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"\\\":[\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-Bgn5nBNesLvC44zMiUckIUWeUN2Ws\",\"object\":\"chat.completion.chunk\",\"created\":1749538187,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_07871e2ad8\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"{\\\"\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-Bgn5nBNesLvC44zMiUckIUWeUN2Ws\",\"object\":\"chat.completion.chunk\",\"created\":1749538187,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_07871e2ad8\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"type\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-Bgn5nBNesLvC44zMiUckIUWeUN2Ws\",\"object\":\"chat.completion.chunk\",\"created\":1749538187,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_07871e2ad8\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"\\\":\\\"\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-Bgn5nBNesLvC44zMiUckIUWeUN2Ws\",\"object\":\"chat.completion.chunk\",\"created\":1749538187,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_07871e2ad8\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"add\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-Bgn5nBNesLvC44zMiUckIUWeUN2Ws\",\"object\":\"chat.completion.chunk\",\"created\":1749538187,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_07871e2ad8\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"\\\",\\\"\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-Bgn5nBNesLvC44zMiUckIUWeUN2Ws\",\"object\":\"chat.completion.chunk\",\"created\":1749538187,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_07871e2ad8\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"reference\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-Bgn5nBNesLvC44zMiUckIUWeUN2Ws\",\"object\":\"chat.completion.chunk\",\"created\":1749538187,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_07871e2ad8\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"Id\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-Bgn5nBNesLvC44zMiUckIUWeUN2Ws\",\"object\":\"chat.completion.chunk\",\"created\":1749538187,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_07871e2ad8\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"\\\":\\\"\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-Bgn5nBNesLvC44zMiUckIUWeUN2Ws\",\"object\":\"chat.completion.chunk\",\"created\":1749538187,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_07871e2ad8\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"ref\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-Bgn5nBNesLvC44zMiUckIUWeUN2Ws\",\"object\":\"chat.completion.chunk\",\"created\":1749538187,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_07871e2ad8\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"2\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-Bgn5nBNesLvC44zMiUckIUWeUN2Ws\",\"object\":\"chat.completion.chunk\",\"created\":1749538187,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_07871e2ad8\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"$\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-Bgn5nBNesLvC44zMiUckIUWeUN2Ws\",\"object\":\"chat.completion.chunk\",\"created\":1749538187,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_07871e2ad8\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"\\\",\\\"\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-Bgn5nBNesLvC44zMiUckIUWeUN2Ws\",\"object\":\"chat.completion.chunk\",\"created\":1749538187,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_07871e2ad8\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"position\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-Bgn5nBNesLvC44zMiUckIUWeUN2Ws\",\"object\":\"chat.completion.chunk\",\"created\":1749538187,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_07871e2ad8\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"\\\":\\\"\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-Bgn5nBNesLvC44zMiUckIUWeUN2Ws\",\"object\":\"chat.completion.chunk\",\"created\":1749538187,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_07871e2ad8\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"after\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-Bgn5nBNesLvC44zMiUckIUWeUN2Ws\",\"object\":\"chat.completion.chunk\",\"created\":1749538187,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_07871e2ad8\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"\\\",\\\"\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-Bgn5nBNesLvC44zMiUckIUWeUN2Ws\",\"object\":\"chat.completion.chunk\",\"created\":1749538187,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_07871e2ad8\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"blocks\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-Bgn5nBNesLvC44zMiUckIUWeUN2Ws\",\"object\":\"chat.completion.chunk\",\"created\":1749538187,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_07871e2ad8\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"\\\":[\\\"\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-Bgn5nBNesLvC44zMiUckIUWeUN2Ws\",\"object\":\"chat.completion.chunk\",\"created\":1749538187,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_07871e2ad8\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"<\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-Bgn5nBNesLvC44zMiUckIUWeUN2Ws\",\"object\":\"chat.completion.chunk\",\"created\":1749538187,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_07871e2ad8\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"h\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-Bgn5nBNesLvC44zMiUckIUWeUN2Ws\",\"object\":\"chat.completion.chunk\",\"created\":1749538187,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_07871e2ad8\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"1\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-Bgn5nBNesLvC44zMiUckIUWeUN2Ws\",\"object\":\"chat.completion.chunk\",\"created\":1749538187,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_07871e2ad8\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\">\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-Bgn5nBNesLvC44zMiUckIUWeUN2Ws\",\"object\":\"chat.completion.chunk\",\"created\":1749538187,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_07871e2ad8\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"Code\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-Bgn5nBNesLvC44zMiUckIUWeUN2Ws\",\"object\":\"chat.completion.chunk\",\"created\":1749538187,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_07871e2ad8\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-Bgn5nBNesLvC44zMiUckIUWeUN2Ws\",\"object\":\"chat.completion.chunk\",\"created\":1749538187,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_07871e2ad8\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"\\\",\\\"\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-Bgn5nBNesLvC44zMiUckIUWeUN2Ws\",\"object\":\"chat.completion.chunk\",\"created\":1749538187,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_07871e2ad8\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"<\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-Bgn5nBNesLvC44zMiUckIUWeUN2Ws\",\"object\":\"chat.completion.chunk\",\"created\":1749538187,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_07871e2ad8\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"pre\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-Bgn5nBNesLvC44zMiUckIUWeUN2Ws\",\"object\":\"chat.completion.chunk\",\"created\":1749538187,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_07871e2ad8\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"><\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-Bgn5nBNesLvC44zMiUckIUWeUN2Ws\",\"object\":\"chat.completion.chunk\",\"created\":1749538187,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_07871e2ad8\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"code\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-Bgn5nBNesLvC44zMiUckIUWeUN2Ws\",\"object\":\"chat.completion.chunk\",\"created\":1749538187,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_07871e2ad8\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\" data\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-Bgn5nBNesLvC44zMiUckIUWeUN2Ws\",\"object\":\"chat.completion.chunk\",\"created\":1749538187,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_07871e2ad8\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"-language\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-Bgn5nBNesLvC44zMiUckIUWeUN2Ws\",\"object\":\"chat.completion.chunk\",\"created\":1749538187,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_07871e2ad8\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"=\\\\\\\"\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-Bgn5nBNesLvC44zMiUckIUWeUN2Ws\",\"object\":\"chat.completion.chunk\",\"created\":1749538187,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_07871e2ad8\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"javascript\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-Bgn5nBNesLvC44zMiUckIUWeUN2Ws\",\"object\":\"chat.completion.chunk\",\"created\":1749538187,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_07871e2ad8\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"\\\\\\\">\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-Bgn5nBNesLvC44zMiUckIUWeUN2Ws\",\"object\":\"chat.completion.chunk\",\"created\":1749538187,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_07871e2ad8\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"console\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-Bgn5nBNesLvC44zMiUckIUWeUN2Ws\",\"object\":\"chat.completion.chunk\",\"created\":1749538187,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_07871e2ad8\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\".log\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-Bgn5nBNesLvC44zMiUckIUWeUN2Ws\",\"object\":\"chat.completion.chunk\",\"created\":1749538187,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_07871e2ad8\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"('\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-Bgn5nBNesLvC44zMiUckIUWeUN2Ws\",\"object\":\"chat.completion.chunk\",\"created\":1749538187,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_07871e2ad8\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"hello\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-Bgn5nBNesLvC44zMiUckIUWeUN2Ws\",\"object\":\"chat.completion.chunk\",\"created\":1749538187,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_07871e2ad8\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\" world\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-Bgn5nBNesLvC44zMiUckIUWeUN2Ws\",\"object\":\"chat.completion.chunk\",\"created\":1749538187,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_07871e2ad8\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"');\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-Bgn5nBNesLvC44zMiUckIUWeUN2Ws\",\"object\":\"chat.completion.chunk\",\"created\":1749538187,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_07871e2ad8\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-Bgn5nBNesLvC44zMiUckIUWeUN2Ws\",\"object\":\"chat.completion.chunk\",\"created\":1749538187,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_07871e2ad8\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"\\\"]\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-Bgn5nBNesLvC44zMiUckIUWeUN2Ws\",\"object\":\"chat.completion.chunk\",\"created\":1749538187,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_07871e2ad8\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"}\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-Bgn5nBNesLvC44zMiUckIUWeUN2Ws\",\"object\":\"chat.completion.chunk\",\"created\":1749538187,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_07871e2ad8\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"]}\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-Bgn5nBNesLvC44zMiUckIUWeUN2Ws\",\"object\":\"chat.completion.chunk\",\"created\":1749538187,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_07871e2ad8\",\"choices\":[{\"index\":0,\"delta\":{},\"logprobs\":null,\"finish_reason\":\"stop\"}]}\n\ndata: [DONE]\n\n", + "body": "data: {\"id\":\"chatcmpl-BhcGkPvyD6TOzq8n1OsFShY4AJVKy\",\"object\":\"chat.completion.chunk\",\"created\":1749734910,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_07871e2ad8\",\"choices\":[{\"index\":0,\"delta\":{\"role\":\"assistant\",\"content\":null,\"tool_calls\":[{\"index\":0,\"id\":\"call_6OdZVacjfv8FzU7hTBA7a1LT\",\"type\":\"function\",\"function\":{\"name\":\"json\",\"arguments\":\"\"}}],\"refusal\":null},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BhcGkPvyD6TOzq8n1OsFShY4AJVKy\",\"object\":\"chat.completion.chunk\",\"created\":1749734910,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_07871e2ad8\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"{\\\"\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BhcGkPvyD6TOzq8n1OsFShY4AJVKy\",\"object\":\"chat.completion.chunk\",\"created\":1749734910,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_07871e2ad8\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"operations\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BhcGkPvyD6TOzq8n1OsFShY4AJVKy\",\"object\":\"chat.completion.chunk\",\"created\":1749734910,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_07871e2ad8\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"\\\":[\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BhcGkPvyD6TOzq8n1OsFShY4AJVKy\",\"object\":\"chat.completion.chunk\",\"created\":1749734910,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_07871e2ad8\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"{\\\"\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BhcGkPvyD6TOzq8n1OsFShY4AJVKy\",\"object\":\"chat.completion.chunk\",\"created\":1749734910,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_07871e2ad8\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"type\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BhcGkPvyD6TOzq8n1OsFShY4AJVKy\",\"object\":\"chat.completion.chunk\",\"created\":1749734910,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_07871e2ad8\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"\\\":\\\"\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BhcGkPvyD6TOzq8n1OsFShY4AJVKy\",\"object\":\"chat.completion.chunk\",\"created\":1749734910,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_07871e2ad8\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"add\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BhcGkPvyD6TOzq8n1OsFShY4AJVKy\",\"object\":\"chat.completion.chunk\",\"created\":1749734910,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_07871e2ad8\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"\\\",\\\"\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BhcGkPvyD6TOzq8n1OsFShY4AJVKy\",\"object\":\"chat.completion.chunk\",\"created\":1749734910,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_07871e2ad8\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"reference\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BhcGkPvyD6TOzq8n1OsFShY4AJVKy\",\"object\":\"chat.completion.chunk\",\"created\":1749734910,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_07871e2ad8\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"Id\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BhcGkPvyD6TOzq8n1OsFShY4AJVKy\",\"object\":\"chat.completion.chunk\",\"created\":1749734910,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_07871e2ad8\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"\\\":\\\"\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BhcGkPvyD6TOzq8n1OsFShY4AJVKy\",\"object\":\"chat.completion.chunk\",\"created\":1749734910,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_07871e2ad8\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"ref\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BhcGkPvyD6TOzq8n1OsFShY4AJVKy\",\"object\":\"chat.completion.chunk\",\"created\":1749734910,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_07871e2ad8\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"2\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BhcGkPvyD6TOzq8n1OsFShY4AJVKy\",\"object\":\"chat.completion.chunk\",\"created\":1749734910,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_07871e2ad8\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"$\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BhcGkPvyD6TOzq8n1OsFShY4AJVKy\",\"object\":\"chat.completion.chunk\",\"created\":1749734910,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_07871e2ad8\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"\\\",\\\"\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BhcGkPvyD6TOzq8n1OsFShY4AJVKy\",\"object\":\"chat.completion.chunk\",\"created\":1749734910,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_07871e2ad8\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"position\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BhcGkPvyD6TOzq8n1OsFShY4AJVKy\",\"object\":\"chat.completion.chunk\",\"created\":1749734910,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_07871e2ad8\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"\\\":\\\"\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BhcGkPvyD6TOzq8n1OsFShY4AJVKy\",\"object\":\"chat.completion.chunk\",\"created\":1749734910,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_07871e2ad8\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"after\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BhcGkPvyD6TOzq8n1OsFShY4AJVKy\",\"object\":\"chat.completion.chunk\",\"created\":1749734910,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_07871e2ad8\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"\\\",\\\"\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BhcGkPvyD6TOzq8n1OsFShY4AJVKy\",\"object\":\"chat.completion.chunk\",\"created\":1749734910,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_07871e2ad8\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"blocks\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BhcGkPvyD6TOzq8n1OsFShY4AJVKy\",\"object\":\"chat.completion.chunk\",\"created\":1749734910,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_07871e2ad8\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"\\\":[\\\"\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BhcGkPvyD6TOzq8n1OsFShY4AJVKy\",\"object\":\"chat.completion.chunk\",\"created\":1749734910,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_07871e2ad8\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"<\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BhcGkPvyD6TOzq8n1OsFShY4AJVKy\",\"object\":\"chat.completion.chunk\",\"created\":1749734910,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_07871e2ad8\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"h\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BhcGkPvyD6TOzq8n1OsFShY4AJVKy\",\"object\":\"chat.completion.chunk\",\"created\":1749734910,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_07871e2ad8\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"1\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BhcGkPvyD6TOzq8n1OsFShY4AJVKy\",\"object\":\"chat.completion.chunk\",\"created\":1749734910,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_07871e2ad8\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\">\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BhcGkPvyD6TOzq8n1OsFShY4AJVKy\",\"object\":\"chat.completion.chunk\",\"created\":1749734910,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_07871e2ad8\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"Code\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BhcGkPvyD6TOzq8n1OsFShY4AJVKy\",\"object\":\"chat.completion.chunk\",\"created\":1749734910,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_07871e2ad8\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BhcGkPvyD6TOzq8n1OsFShY4AJVKy\",\"object\":\"chat.completion.chunk\",\"created\":1749734910,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_07871e2ad8\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"\\\",\\\"\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BhcGkPvyD6TOzq8n1OsFShY4AJVKy\",\"object\":\"chat.completion.chunk\",\"created\":1749734910,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_07871e2ad8\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"<\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BhcGkPvyD6TOzq8n1OsFShY4AJVKy\",\"object\":\"chat.completion.chunk\",\"created\":1749734910,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_07871e2ad8\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"pre\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BhcGkPvyD6TOzq8n1OsFShY4AJVKy\",\"object\":\"chat.completion.chunk\",\"created\":1749734910,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_07871e2ad8\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"><\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BhcGkPvyD6TOzq8n1OsFShY4AJVKy\",\"object\":\"chat.completion.chunk\",\"created\":1749734910,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_07871e2ad8\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"code\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BhcGkPvyD6TOzq8n1OsFShY4AJVKy\",\"object\":\"chat.completion.chunk\",\"created\":1749734910,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_07871e2ad8\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\" data\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BhcGkPvyD6TOzq8n1OsFShY4AJVKy\",\"object\":\"chat.completion.chunk\",\"created\":1749734910,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_07871e2ad8\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"-language\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BhcGkPvyD6TOzq8n1OsFShY4AJVKy\",\"object\":\"chat.completion.chunk\",\"created\":1749734910,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_07871e2ad8\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"=\\\\\\\"\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BhcGkPvyD6TOzq8n1OsFShY4AJVKy\",\"object\":\"chat.completion.chunk\",\"created\":1749734910,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_07871e2ad8\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"javascript\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BhcGkPvyD6TOzq8n1OsFShY4AJVKy\",\"object\":\"chat.completion.chunk\",\"created\":1749734910,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_07871e2ad8\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"\\\\\\\">\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BhcGkPvyD6TOzq8n1OsFShY4AJVKy\",\"object\":\"chat.completion.chunk\",\"created\":1749734910,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_07871e2ad8\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"console\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BhcGkPvyD6TOzq8n1OsFShY4AJVKy\",\"object\":\"chat.completion.chunk\",\"created\":1749734910,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_07871e2ad8\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\".log\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BhcGkPvyD6TOzq8n1OsFShY4AJVKy\",\"object\":\"chat.completion.chunk\",\"created\":1749734910,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_07871e2ad8\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"('\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BhcGkPvyD6TOzq8n1OsFShY4AJVKy\",\"object\":\"chat.completion.chunk\",\"created\":1749734910,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_07871e2ad8\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"hello\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BhcGkPvyD6TOzq8n1OsFShY4AJVKy\",\"object\":\"chat.completion.chunk\",\"created\":1749734910,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_07871e2ad8\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\" world\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BhcGkPvyD6TOzq8n1OsFShY4AJVKy\",\"object\":\"chat.completion.chunk\",\"created\":1749734910,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_07871e2ad8\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"');\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BhcGkPvyD6TOzq8n1OsFShY4AJVKy\",\"object\":\"chat.completion.chunk\",\"created\":1749734910,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_07871e2ad8\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BhcGkPvyD6TOzq8n1OsFShY4AJVKy\",\"object\":\"chat.completion.chunk\",\"created\":1749734910,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_07871e2ad8\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"\\\"]\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BhcGkPvyD6TOzq8n1OsFShY4AJVKy\",\"object\":\"chat.completion.chunk\",\"created\":1749734910,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_07871e2ad8\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"}\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BhcGkPvyD6TOzq8n1OsFShY4AJVKy\",\"object\":\"chat.completion.chunk\",\"created\":1749734910,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_07871e2ad8\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"]}\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BhcGkPvyD6TOzq8n1OsFShY4AJVKy\",\"object\":\"chat.completion.chunk\",\"created\":1749734910,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_07871e2ad8\",\"choices\":[{\"index\":0,\"delta\":{},\"logprobs\":null,\"finish_reason\":\"stop\"}]}\n\ndata: [DONE]\n\n", "headers": [] } } \ No newline at end of file diff --git a/packages/xl-ai/src/api/formats/html-blocks/__snapshots__/htmlBlocks.test.ts/Add/__msw_snapshots__/openai.chat/gpt-4o-2024-08-06 (streaming)/add a list (end)_1_1b9c5367195624176c28a1ca3684ebac.json b/packages/xl-ai/src/api/formats/html-blocks/__snapshots__/htmlBlocks.test.ts/Add/__msw_snapshots__/openai.chat/gpt-4o-2024-08-06 (streaming)/add a list (end)_1_1b9c5367195624176c28a1ca3684ebac.json index a106ba70b3..0eeaac13a5 100644 --- a/packages/xl-ai/src/api/formats/html-blocks/__snapshots__/htmlBlocks.test.ts/Add/__msw_snapshots__/openai.chat/gpt-4o-2024-08-06 (streaming)/add a list (end)_1_1b9c5367195624176c28a1ca3684ebac.json +++ b/packages/xl-ai/src/api/formats/html-blocks/__snapshots__/htmlBlocks.test.ts/Add/__msw_snapshots__/openai.chat/gpt-4o-2024-08-06 (streaming)/add a list (end)_1_1b9c5367195624176c28a1ca3684ebac.json @@ -9,7 +9,7 @@ "response": { "status": 200, "statusText": "", - "body": "data: {\"id\":\"chatcmpl-Bgn5lRdV6z1B2KOBznAVX8caPKq2L\",\"object\":\"chat.completion.chunk\",\"created\":1749538185,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_76544d79cb\",\"choices\":[{\"index\":0,\"delta\":{\"role\":\"assistant\",\"content\":null,\"tool_calls\":[{\"index\":0,\"id\":\"call_hehhopiQqguvrGXLp1jnBQPj\",\"type\":\"function\",\"function\":{\"name\":\"json\",\"arguments\":\"\"}}],\"refusal\":null},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-Bgn5lRdV6z1B2KOBznAVX8caPKq2L\",\"object\":\"chat.completion.chunk\",\"created\":1749538185,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_76544d79cb\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"{\\\"\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-Bgn5lRdV6z1B2KOBznAVX8caPKq2L\",\"object\":\"chat.completion.chunk\",\"created\":1749538185,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_76544d79cb\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"operations\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-Bgn5lRdV6z1B2KOBznAVX8caPKq2L\",\"object\":\"chat.completion.chunk\",\"created\":1749538185,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_76544d79cb\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"\\\":[\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-Bgn5lRdV6z1B2KOBznAVX8caPKq2L\",\"object\":\"chat.completion.chunk\",\"created\":1749538185,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_76544d79cb\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"{\\\"\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-Bgn5lRdV6z1B2KOBznAVX8caPKq2L\",\"object\":\"chat.completion.chunk\",\"created\":1749538185,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_76544d79cb\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"type\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-Bgn5lRdV6z1B2KOBznAVX8caPKq2L\",\"object\":\"chat.completion.chunk\",\"created\":1749538185,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_76544d79cb\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"\\\":\\\"\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-Bgn5lRdV6z1B2KOBznAVX8caPKq2L\",\"object\":\"chat.completion.chunk\",\"created\":1749538185,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_76544d79cb\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"add\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-Bgn5lRdV6z1B2KOBznAVX8caPKq2L\",\"object\":\"chat.completion.chunk\",\"created\":1749538185,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_76544d79cb\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"\\\",\\\"\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-Bgn5lRdV6z1B2KOBznAVX8caPKq2L\",\"object\":\"chat.completion.chunk\",\"created\":1749538185,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_76544d79cb\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"reference\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-Bgn5lRdV6z1B2KOBznAVX8caPKq2L\",\"object\":\"chat.completion.chunk\",\"created\":1749538185,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_76544d79cb\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"Id\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-Bgn5lRdV6z1B2KOBznAVX8caPKq2L\",\"object\":\"chat.completion.chunk\",\"created\":1749538185,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_76544d79cb\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"\\\":\\\"\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-Bgn5lRdV6z1B2KOBznAVX8caPKq2L\",\"object\":\"chat.completion.chunk\",\"created\":1749538185,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_76544d79cb\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"ref\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-Bgn5lRdV6z1B2KOBznAVX8caPKq2L\",\"object\":\"chat.completion.chunk\",\"created\":1749538185,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_76544d79cb\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"2\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-Bgn5lRdV6z1B2KOBznAVX8caPKq2L\",\"object\":\"chat.completion.chunk\",\"created\":1749538185,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_76544d79cb\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"$\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-Bgn5lRdV6z1B2KOBznAVX8caPKq2L\",\"object\":\"chat.completion.chunk\",\"created\":1749538185,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_76544d79cb\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"\\\",\\\"\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-Bgn5lRdV6z1B2KOBznAVX8caPKq2L\",\"object\":\"chat.completion.chunk\",\"created\":1749538185,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_76544d79cb\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"position\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-Bgn5lRdV6z1B2KOBznAVX8caPKq2L\",\"object\":\"chat.completion.chunk\",\"created\":1749538185,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_76544d79cb\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"\\\":\\\"\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-Bgn5lRdV6z1B2KOBznAVX8caPKq2L\",\"object\":\"chat.completion.chunk\",\"created\":1749538185,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_76544d79cb\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"after\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-Bgn5lRdV6z1B2KOBznAVX8caPKq2L\",\"object\":\"chat.completion.chunk\",\"created\":1749538185,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_76544d79cb\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"\\\",\\\"\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-Bgn5lRdV6z1B2KOBznAVX8caPKq2L\",\"object\":\"chat.completion.chunk\",\"created\":1749538185,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_76544d79cb\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"blocks\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-Bgn5lRdV6z1B2KOBznAVX8caPKq2L\",\"object\":\"chat.completion.chunk\",\"created\":1749538185,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_76544d79cb\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"\\\":[\\\"\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-Bgn5lRdV6z1B2KOBznAVX8caPKq2L\",\"object\":\"chat.completion.chunk\",\"created\":1749538185,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_76544d79cb\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"<\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-Bgn5lRdV6z1B2KOBznAVX8caPKq2L\",\"object\":\"chat.completion.chunk\",\"created\":1749538185,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_76544d79cb\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"ul\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-Bgn5lRdV6z1B2KOBznAVX8caPKq2L\",\"object\":\"chat.completion.chunk\",\"created\":1749538185,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_76544d79cb\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"><\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-Bgn5lRdV6z1B2KOBznAVX8caPKq2L\",\"object\":\"chat.completion.chunk\",\"created\":1749538185,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_76544d79cb\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"li\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-Bgn5lRdV6z1B2KOBznAVX8caPKq2L\",\"object\":\"chat.completion.chunk\",\"created\":1749538185,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_76544d79cb\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\">\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-Bgn5lRdV6z1B2KOBznAVX8caPKq2L\",\"object\":\"chat.completion.chunk\",\"created\":1749538185,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_76544d79cb\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"Ap\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-Bgn5lRdV6z1B2KOBznAVX8caPKq2L\",\"object\":\"chat.completion.chunk\",\"created\":1749538185,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_76544d79cb\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"ples\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-Bgn5lRdV6z1B2KOBznAVX8caPKq2L\",\"object\":\"chat.completion.chunk\",\"created\":1749538185,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_76544d79cb\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-Bgn5lRdV6z1B2KOBznAVX8caPKq2L\",\"object\":\"chat.completion.chunk\",\"created\":1749538185,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_76544d79cb\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"\\\",\\\"\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-Bgn5lRdV6z1B2KOBznAVX8caPKq2L\",\"object\":\"chat.completion.chunk\",\"created\":1749538185,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_76544d79cb\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"<\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-Bgn5lRdV6z1B2KOBznAVX8caPKq2L\",\"object\":\"chat.completion.chunk\",\"created\":1749538185,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_76544d79cb\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"ul\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-Bgn5lRdV6z1B2KOBznAVX8caPKq2L\",\"object\":\"chat.completion.chunk\",\"created\":1749538185,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_76544d79cb\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"><\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-Bgn5lRdV6z1B2KOBznAVX8caPKq2L\",\"object\":\"chat.completion.chunk\",\"created\":1749538185,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_76544d79cb\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"li\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-Bgn5lRdV6z1B2KOBznAVX8caPKq2L\",\"object\":\"chat.completion.chunk\",\"created\":1749538185,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_76544d79cb\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\">\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-Bgn5lRdV6z1B2KOBznAVX8caPKq2L\",\"object\":\"chat.completion.chunk\",\"created\":1749538185,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_76544d79cb\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"Ban\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-Bgn5lRdV6z1B2KOBznAVX8caPKq2L\",\"object\":\"chat.completion.chunk\",\"created\":1749538185,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_76544d79cb\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"anas\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-Bgn5lRdV6z1B2KOBznAVX8caPKq2L\",\"object\":\"chat.completion.chunk\",\"created\":1749538185,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_76544d79cb\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-Bgn5lRdV6z1B2KOBznAVX8caPKq2L\",\"object\":\"chat.completion.chunk\",\"created\":1749538185,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_76544d79cb\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"\\\"]\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-Bgn5lRdV6z1B2KOBznAVX8caPKq2L\",\"object\":\"chat.completion.chunk\",\"created\":1749538185,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_76544d79cb\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"}\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-Bgn5lRdV6z1B2KOBznAVX8caPKq2L\",\"object\":\"chat.completion.chunk\",\"created\":1749538185,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_76544d79cb\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"]}\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-Bgn5lRdV6z1B2KOBznAVX8caPKq2L\",\"object\":\"chat.completion.chunk\",\"created\":1749538185,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_76544d79cb\",\"choices\":[{\"index\":0,\"delta\":{},\"logprobs\":null,\"finish_reason\":\"stop\"}]}\n\ndata: [DONE]\n\n", + "body": "data: {\"id\":\"chatcmpl-BhcGi3eL7LDLXmNgxdS2BCXCkmDEf\",\"object\":\"chat.completion.chunk\",\"created\":1749734908,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_07871e2ad8\",\"choices\":[{\"index\":0,\"delta\":{\"role\":\"assistant\",\"content\":null,\"tool_calls\":[{\"index\":0,\"id\":\"call_aOOYXTtpsFfao3uqi9432RDF\",\"type\":\"function\",\"function\":{\"name\":\"json\",\"arguments\":\"\"}}],\"refusal\":null},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BhcGi3eL7LDLXmNgxdS2BCXCkmDEf\",\"object\":\"chat.completion.chunk\",\"created\":1749734908,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_07871e2ad8\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"{\\\"\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BhcGi3eL7LDLXmNgxdS2BCXCkmDEf\",\"object\":\"chat.completion.chunk\",\"created\":1749734908,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_07871e2ad8\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"operations\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BhcGi3eL7LDLXmNgxdS2BCXCkmDEf\",\"object\":\"chat.completion.chunk\",\"created\":1749734908,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_07871e2ad8\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"\\\":[\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BhcGi3eL7LDLXmNgxdS2BCXCkmDEf\",\"object\":\"chat.completion.chunk\",\"created\":1749734908,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_07871e2ad8\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"{\\\"\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BhcGi3eL7LDLXmNgxdS2BCXCkmDEf\",\"object\":\"chat.completion.chunk\",\"created\":1749734908,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_07871e2ad8\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"type\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BhcGi3eL7LDLXmNgxdS2BCXCkmDEf\",\"object\":\"chat.completion.chunk\",\"created\":1749734908,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_07871e2ad8\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"\\\":\\\"\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BhcGi3eL7LDLXmNgxdS2BCXCkmDEf\",\"object\":\"chat.completion.chunk\",\"created\":1749734908,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_07871e2ad8\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"add\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BhcGi3eL7LDLXmNgxdS2BCXCkmDEf\",\"object\":\"chat.completion.chunk\",\"created\":1749734908,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_07871e2ad8\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"\\\",\\\"\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BhcGi3eL7LDLXmNgxdS2BCXCkmDEf\",\"object\":\"chat.completion.chunk\",\"created\":1749734908,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_07871e2ad8\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"reference\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BhcGi3eL7LDLXmNgxdS2BCXCkmDEf\",\"object\":\"chat.completion.chunk\",\"created\":1749734908,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_07871e2ad8\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"Id\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BhcGi3eL7LDLXmNgxdS2BCXCkmDEf\",\"object\":\"chat.completion.chunk\",\"created\":1749734908,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_07871e2ad8\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"\\\":\\\"\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BhcGi3eL7LDLXmNgxdS2BCXCkmDEf\",\"object\":\"chat.completion.chunk\",\"created\":1749734908,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_07871e2ad8\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"ref\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BhcGi3eL7LDLXmNgxdS2BCXCkmDEf\",\"object\":\"chat.completion.chunk\",\"created\":1749734908,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_07871e2ad8\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"2\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BhcGi3eL7LDLXmNgxdS2BCXCkmDEf\",\"object\":\"chat.completion.chunk\",\"created\":1749734908,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_07871e2ad8\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"$\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BhcGi3eL7LDLXmNgxdS2BCXCkmDEf\",\"object\":\"chat.completion.chunk\",\"created\":1749734908,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_07871e2ad8\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"\\\",\\\"\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BhcGi3eL7LDLXmNgxdS2BCXCkmDEf\",\"object\":\"chat.completion.chunk\",\"created\":1749734908,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_07871e2ad8\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"position\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BhcGi3eL7LDLXmNgxdS2BCXCkmDEf\",\"object\":\"chat.completion.chunk\",\"created\":1749734908,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_07871e2ad8\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"\\\":\\\"\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BhcGi3eL7LDLXmNgxdS2BCXCkmDEf\",\"object\":\"chat.completion.chunk\",\"created\":1749734908,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_07871e2ad8\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"after\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BhcGi3eL7LDLXmNgxdS2BCXCkmDEf\",\"object\":\"chat.completion.chunk\",\"created\":1749734908,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_07871e2ad8\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"\\\",\\\"\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BhcGi3eL7LDLXmNgxdS2BCXCkmDEf\",\"object\":\"chat.completion.chunk\",\"created\":1749734908,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_07871e2ad8\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"blocks\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BhcGi3eL7LDLXmNgxdS2BCXCkmDEf\",\"object\":\"chat.completion.chunk\",\"created\":1749734908,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_07871e2ad8\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"\\\":[\\\"\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BhcGi3eL7LDLXmNgxdS2BCXCkmDEf\",\"object\":\"chat.completion.chunk\",\"created\":1749734908,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_07871e2ad8\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"<\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BhcGi3eL7LDLXmNgxdS2BCXCkmDEf\",\"object\":\"chat.completion.chunk\",\"created\":1749734908,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_07871e2ad8\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"ul\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BhcGi3eL7LDLXmNgxdS2BCXCkmDEf\",\"object\":\"chat.completion.chunk\",\"created\":1749734908,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_07871e2ad8\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"><\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BhcGi3eL7LDLXmNgxdS2BCXCkmDEf\",\"object\":\"chat.completion.chunk\",\"created\":1749734908,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_07871e2ad8\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"li\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BhcGi3eL7LDLXmNgxdS2BCXCkmDEf\",\"object\":\"chat.completion.chunk\",\"created\":1749734908,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_07871e2ad8\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\">\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BhcGi3eL7LDLXmNgxdS2BCXCkmDEf\",\"object\":\"chat.completion.chunk\",\"created\":1749734908,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_07871e2ad8\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"Ap\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BhcGi3eL7LDLXmNgxdS2BCXCkmDEf\",\"object\":\"chat.completion.chunk\",\"created\":1749734908,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_07871e2ad8\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"ples\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BhcGi3eL7LDLXmNgxdS2BCXCkmDEf\",\"object\":\"chat.completion.chunk\",\"created\":1749734908,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_07871e2ad8\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BhcGi3eL7LDLXmNgxdS2BCXCkmDEf\",\"object\":\"chat.completion.chunk\",\"created\":1749734908,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_07871e2ad8\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"\\\",\\\"\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BhcGi3eL7LDLXmNgxdS2BCXCkmDEf\",\"object\":\"chat.completion.chunk\",\"created\":1749734908,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_07871e2ad8\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"<\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BhcGi3eL7LDLXmNgxdS2BCXCkmDEf\",\"object\":\"chat.completion.chunk\",\"created\":1749734908,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_07871e2ad8\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"ul\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BhcGi3eL7LDLXmNgxdS2BCXCkmDEf\",\"object\":\"chat.completion.chunk\",\"created\":1749734908,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_07871e2ad8\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"><\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BhcGi3eL7LDLXmNgxdS2BCXCkmDEf\",\"object\":\"chat.completion.chunk\",\"created\":1749734908,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_07871e2ad8\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"li\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BhcGi3eL7LDLXmNgxdS2BCXCkmDEf\",\"object\":\"chat.completion.chunk\",\"created\":1749734908,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_07871e2ad8\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\">\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BhcGi3eL7LDLXmNgxdS2BCXCkmDEf\",\"object\":\"chat.completion.chunk\",\"created\":1749734908,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_07871e2ad8\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"Ban\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BhcGi3eL7LDLXmNgxdS2BCXCkmDEf\",\"object\":\"chat.completion.chunk\",\"created\":1749734908,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_07871e2ad8\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"anas\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BhcGi3eL7LDLXmNgxdS2BCXCkmDEf\",\"object\":\"chat.completion.chunk\",\"created\":1749734908,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_07871e2ad8\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BhcGi3eL7LDLXmNgxdS2BCXCkmDEf\",\"object\":\"chat.completion.chunk\",\"created\":1749734908,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_07871e2ad8\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"\\\"]\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BhcGi3eL7LDLXmNgxdS2BCXCkmDEf\",\"object\":\"chat.completion.chunk\",\"created\":1749734908,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_07871e2ad8\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"}\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BhcGi3eL7LDLXmNgxdS2BCXCkmDEf\",\"object\":\"chat.completion.chunk\",\"created\":1749734908,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_07871e2ad8\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"]}\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BhcGi3eL7LDLXmNgxdS2BCXCkmDEf\",\"object\":\"chat.completion.chunk\",\"created\":1749734908,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_07871e2ad8\",\"choices\":[{\"index\":0,\"delta\":{},\"logprobs\":null,\"finish_reason\":\"stop\"}]}\n\ndata: [DONE]\n\n", "headers": [] } } \ No newline at end of file diff --git a/packages/xl-ai/src/api/formats/html-blocks/__snapshots__/htmlBlocks.test.ts/Add/__msw_snapshots__/openai.chat/gpt-4o-2024-08-06 (streaming)/add a new paragraph (empty doc)_1_bda56d4903fe73aa33304a959057957d.json b/packages/xl-ai/src/api/formats/html-blocks/__snapshots__/htmlBlocks.test.ts/Add/__msw_snapshots__/openai.chat/gpt-4o-2024-08-06 (streaming)/add a new paragraph (empty doc)_1_bda56d4903fe73aa33304a959057957d.json index 13203ef780..9ed6be798a 100644 --- a/packages/xl-ai/src/api/formats/html-blocks/__snapshots__/htmlBlocks.test.ts/Add/__msw_snapshots__/openai.chat/gpt-4o-2024-08-06 (streaming)/add a new paragraph (empty doc)_1_bda56d4903fe73aa33304a959057957d.json +++ b/packages/xl-ai/src/api/formats/html-blocks/__snapshots__/htmlBlocks.test.ts/Add/__msw_snapshots__/openai.chat/gpt-4o-2024-08-06 (streaming)/add a new paragraph (empty doc)_1_bda56d4903fe73aa33304a959057957d.json @@ -9,7 +9,7 @@ "response": { "status": 200, "statusText": "", - "body": "data: {\"id\":\"chatcmpl-Bgn5pMPlOtVDgGRLnD5fdlXH2pnWI\",\"object\":\"chat.completion.chunk\",\"created\":1749538189,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_76544d79cb\",\"choices\":[{\"index\":0,\"delta\":{\"role\":\"assistant\",\"content\":null,\"tool_calls\":[{\"index\":0,\"id\":\"call_Gov1bF9Oi6uHCIs3jw2KyrBH\",\"type\":\"function\",\"function\":{\"name\":\"json\",\"arguments\":\"\"}}],\"refusal\":null},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-Bgn5pMPlOtVDgGRLnD5fdlXH2pnWI\",\"object\":\"chat.completion.chunk\",\"created\":1749538189,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_76544d79cb\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"{\\\"\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-Bgn5pMPlOtVDgGRLnD5fdlXH2pnWI\",\"object\":\"chat.completion.chunk\",\"created\":1749538189,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_76544d79cb\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"operations\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-Bgn5pMPlOtVDgGRLnD5fdlXH2pnWI\",\"object\":\"chat.completion.chunk\",\"created\":1749538189,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_76544d79cb\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"\\\":[\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-Bgn5pMPlOtVDgGRLnD5fdlXH2pnWI\",\"object\":\"chat.completion.chunk\",\"created\":1749538189,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_76544d79cb\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"{\\\"\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-Bgn5pMPlOtVDgGRLnD5fdlXH2pnWI\",\"object\":\"chat.completion.chunk\",\"created\":1749538189,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_76544d79cb\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"type\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-Bgn5pMPlOtVDgGRLnD5fdlXH2pnWI\",\"object\":\"chat.completion.chunk\",\"created\":1749538189,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_76544d79cb\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"\\\":\\\"\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-Bgn5pMPlOtVDgGRLnD5fdlXH2pnWI\",\"object\":\"chat.completion.chunk\",\"created\":1749538189,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_76544d79cb\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"update\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-Bgn5pMPlOtVDgGRLnD5fdlXH2pnWI\",\"object\":\"chat.completion.chunk\",\"created\":1749538189,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_76544d79cb\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"\\\",\\\"\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-Bgn5pMPlOtVDgGRLnD5fdlXH2pnWI\",\"object\":\"chat.completion.chunk\",\"created\":1749538189,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_76544d79cb\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"id\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-Bgn5pMPlOtVDgGRLnD5fdlXH2pnWI\",\"object\":\"chat.completion.chunk\",\"created\":1749538189,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_76544d79cb\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"\\\":\\\"\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-Bgn5pMPlOtVDgGRLnD5fdlXH2pnWI\",\"object\":\"chat.completion.chunk\",\"created\":1749538189,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_76544d79cb\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"ref\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-Bgn5pMPlOtVDgGRLnD5fdlXH2pnWI\",\"object\":\"chat.completion.chunk\",\"created\":1749538189,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_76544d79cb\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"1\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-Bgn5pMPlOtVDgGRLnD5fdlXH2pnWI\",\"object\":\"chat.completion.chunk\",\"created\":1749538189,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_76544d79cb\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"$\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-Bgn5pMPlOtVDgGRLnD5fdlXH2pnWI\",\"object\":\"chat.completion.chunk\",\"created\":1749538189,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_76544d79cb\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"\\\",\\\"\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-Bgn5pMPlOtVDgGRLnD5fdlXH2pnWI\",\"object\":\"chat.completion.chunk\",\"created\":1749538189,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_76544d79cb\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"block\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-Bgn5pMPlOtVDgGRLnD5fdlXH2pnWI\",\"object\":\"chat.completion.chunk\",\"created\":1749538189,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_76544d79cb\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"\\\":\\\"\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-Bgn5pMPlOtVDgGRLnD5fdlXH2pnWI\",\"object\":\"chat.completion.chunk\",\"created\":1749538189,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_76544d79cb\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"<\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-Bgn5pMPlOtVDgGRLnD5fdlXH2pnWI\",\"object\":\"chat.completion.chunk\",\"created\":1749538189,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_76544d79cb\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"p\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-Bgn5pMPlOtVDgGRLnD5fdlXH2pnWI\",\"object\":\"chat.completion.chunk\",\"created\":1749538189,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_76544d79cb\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\">You\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-Bgn5pMPlOtVDgGRLnD5fdlXH2pnWI\",\"object\":\"chat.completion.chunk\",\"created\":1749538189,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_76544d79cb\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\" look\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-Bgn5pMPlOtVDgGRLnD5fdlXH2pnWI\",\"object\":\"chat.completion.chunk\",\"created\":1749538189,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_76544d79cb\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\" great\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-Bgn5pMPlOtVDgGRLnD5fdlXH2pnWI\",\"object\":\"chat.completion.chunk\",\"created\":1749538189,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_76544d79cb\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\" today\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-Bgn5pMPlOtVDgGRLnD5fdlXH2pnWI\",\"object\":\"chat.completion.chunk\",\"created\":1749538189,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_76544d79cb\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"!\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-Bgn5pMPlOtVDgGRLnD5fdlXH2pnWI\",\"object\":\"chat.completion.chunk\",\"created\":1749538189,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_76544d79cb\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"\\\"}\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-Bgn5pMPlOtVDgGRLnD5fdlXH2pnWI\",\"object\":\"chat.completion.chunk\",\"created\":1749538189,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_76544d79cb\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"]}\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-Bgn5pMPlOtVDgGRLnD5fdlXH2pnWI\",\"object\":\"chat.completion.chunk\",\"created\":1749538189,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_76544d79cb\",\"choices\":[{\"index\":0,\"delta\":{},\"logprobs\":null,\"finish_reason\":\"stop\"}]}\n\ndata: [DONE]\n\n", + "body": "data: {\"id\":\"chatcmpl-BhcGmLLmNUQuO9oP5nEoolsBcpYWj\",\"object\":\"chat.completion.chunk\",\"created\":1749734912,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_07871e2ad8\",\"choices\":[{\"index\":0,\"delta\":{\"role\":\"assistant\",\"content\":null,\"tool_calls\":[{\"index\":0,\"id\":\"call_HS7IYn8XUwWzAFzkS9fgsQ8N\",\"type\":\"function\",\"function\":{\"name\":\"json\",\"arguments\":\"\"}}],\"refusal\":null},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BhcGmLLmNUQuO9oP5nEoolsBcpYWj\",\"object\":\"chat.completion.chunk\",\"created\":1749734912,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_07871e2ad8\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"{\\\"\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BhcGmLLmNUQuO9oP5nEoolsBcpYWj\",\"object\":\"chat.completion.chunk\",\"created\":1749734912,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_07871e2ad8\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"operations\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BhcGmLLmNUQuO9oP5nEoolsBcpYWj\",\"object\":\"chat.completion.chunk\",\"created\":1749734912,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_07871e2ad8\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"\\\":[\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BhcGmLLmNUQuO9oP5nEoolsBcpYWj\",\"object\":\"chat.completion.chunk\",\"created\":1749734912,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_07871e2ad8\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"{\\\"\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BhcGmLLmNUQuO9oP5nEoolsBcpYWj\",\"object\":\"chat.completion.chunk\",\"created\":1749734912,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_07871e2ad8\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"type\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BhcGmLLmNUQuO9oP5nEoolsBcpYWj\",\"object\":\"chat.completion.chunk\",\"created\":1749734912,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_07871e2ad8\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"\\\":\\\"\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BhcGmLLmNUQuO9oP5nEoolsBcpYWj\",\"object\":\"chat.completion.chunk\",\"created\":1749734912,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_07871e2ad8\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"update\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BhcGmLLmNUQuO9oP5nEoolsBcpYWj\",\"object\":\"chat.completion.chunk\",\"created\":1749734912,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_07871e2ad8\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"\\\",\\\"\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BhcGmLLmNUQuO9oP5nEoolsBcpYWj\",\"object\":\"chat.completion.chunk\",\"created\":1749734912,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_07871e2ad8\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"id\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BhcGmLLmNUQuO9oP5nEoolsBcpYWj\",\"object\":\"chat.completion.chunk\",\"created\":1749734912,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_07871e2ad8\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"\\\":\\\"\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BhcGmLLmNUQuO9oP5nEoolsBcpYWj\",\"object\":\"chat.completion.chunk\",\"created\":1749734912,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_07871e2ad8\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"ref\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BhcGmLLmNUQuO9oP5nEoolsBcpYWj\",\"object\":\"chat.completion.chunk\",\"created\":1749734912,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_07871e2ad8\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"1\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BhcGmLLmNUQuO9oP5nEoolsBcpYWj\",\"object\":\"chat.completion.chunk\",\"created\":1749734912,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_07871e2ad8\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"$\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BhcGmLLmNUQuO9oP5nEoolsBcpYWj\",\"object\":\"chat.completion.chunk\",\"created\":1749734912,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_07871e2ad8\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"\\\",\\\"\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BhcGmLLmNUQuO9oP5nEoolsBcpYWj\",\"object\":\"chat.completion.chunk\",\"created\":1749734912,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_07871e2ad8\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"block\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BhcGmLLmNUQuO9oP5nEoolsBcpYWj\",\"object\":\"chat.completion.chunk\",\"created\":1749734912,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_07871e2ad8\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"\\\":\\\"\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BhcGmLLmNUQuO9oP5nEoolsBcpYWj\",\"object\":\"chat.completion.chunk\",\"created\":1749734912,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_07871e2ad8\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"<\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BhcGmLLmNUQuO9oP5nEoolsBcpYWj\",\"object\":\"chat.completion.chunk\",\"created\":1749734912,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_07871e2ad8\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"p\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BhcGmLLmNUQuO9oP5nEoolsBcpYWj\",\"object\":\"chat.completion.chunk\",\"created\":1749734912,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_07871e2ad8\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\">You\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BhcGmLLmNUQuO9oP5nEoolsBcpYWj\",\"object\":\"chat.completion.chunk\",\"created\":1749734912,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_07871e2ad8\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\" look\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BhcGmLLmNUQuO9oP5nEoolsBcpYWj\",\"object\":\"chat.completion.chunk\",\"created\":1749734912,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_07871e2ad8\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\" great\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BhcGmLLmNUQuO9oP5nEoolsBcpYWj\",\"object\":\"chat.completion.chunk\",\"created\":1749734912,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_07871e2ad8\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\" today\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BhcGmLLmNUQuO9oP5nEoolsBcpYWj\",\"object\":\"chat.completion.chunk\",\"created\":1749734912,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_07871e2ad8\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"!\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BhcGmLLmNUQuO9oP5nEoolsBcpYWj\",\"object\":\"chat.completion.chunk\",\"created\":1749734912,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_07871e2ad8\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"\\\"}\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BhcGmLLmNUQuO9oP5nEoolsBcpYWj\",\"object\":\"chat.completion.chunk\",\"created\":1749734912,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_07871e2ad8\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"]}\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BhcGmLLmNUQuO9oP5nEoolsBcpYWj\",\"object\":\"chat.completion.chunk\",\"created\":1749734912,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_07871e2ad8\",\"choices\":[{\"index\":0,\"delta\":{},\"logprobs\":null,\"finish_reason\":\"stop\"}]}\n\ndata: [DONE]\n\n", "headers": [] } } \ No newline at end of file diff --git a/packages/xl-ai/src/api/formats/html-blocks/__snapshots__/htmlBlocks.test.ts/Add/__msw_snapshots__/openai.chat/gpt-4o-2024-08-06 (streaming)/add a new paragraph (end)_1_731edbb5fc3b6e4a927978b9e203f336.json b/packages/xl-ai/src/api/formats/html-blocks/__snapshots__/htmlBlocks.test.ts/Add/__msw_snapshots__/openai.chat/gpt-4o-2024-08-06 (streaming)/add a new paragraph (end)_1_731edbb5fc3b6e4a927978b9e203f336.json index 620bfaccd9..0fb54fdb96 100644 --- a/packages/xl-ai/src/api/formats/html-blocks/__snapshots__/htmlBlocks.test.ts/Add/__msw_snapshots__/openai.chat/gpt-4o-2024-08-06 (streaming)/add a new paragraph (end)_1_731edbb5fc3b6e4a927978b9e203f336.json +++ b/packages/xl-ai/src/api/formats/html-blocks/__snapshots__/htmlBlocks.test.ts/Add/__msw_snapshots__/openai.chat/gpt-4o-2024-08-06 (streaming)/add a new paragraph (end)_1_731edbb5fc3b6e4a927978b9e203f336.json @@ -9,7 +9,7 @@ "response": { "status": 200, "statusText": "", - "body": "data: {\"id\":\"chatcmpl-Bgn5kvLl0vMvvRFghnxOhSBa0iG4H\",\"object\":\"chat.completion.chunk\",\"created\":1749538184,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_07871e2ad8\",\"choices\":[{\"index\":0,\"delta\":{\"role\":\"assistant\",\"content\":null,\"tool_calls\":[{\"index\":0,\"id\":\"call_3ibh3xL7NdfM05j3AjG3ifcj\",\"type\":\"function\",\"function\":{\"name\":\"json\",\"arguments\":\"\"}}],\"refusal\":null},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-Bgn5kvLl0vMvvRFghnxOhSBa0iG4H\",\"object\":\"chat.completion.chunk\",\"created\":1749538184,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_07871e2ad8\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"{\\\"\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-Bgn5kvLl0vMvvRFghnxOhSBa0iG4H\",\"object\":\"chat.completion.chunk\",\"created\":1749538184,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_07871e2ad8\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"operations\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-Bgn5kvLl0vMvvRFghnxOhSBa0iG4H\",\"object\":\"chat.completion.chunk\",\"created\":1749538184,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_07871e2ad8\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"\\\":[\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-Bgn5kvLl0vMvvRFghnxOhSBa0iG4H\",\"object\":\"chat.completion.chunk\",\"created\":1749538184,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_07871e2ad8\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"{\\\"\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-Bgn5kvLl0vMvvRFghnxOhSBa0iG4H\",\"object\":\"chat.completion.chunk\",\"created\":1749538184,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_07871e2ad8\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"type\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-Bgn5kvLl0vMvvRFghnxOhSBa0iG4H\",\"object\":\"chat.completion.chunk\",\"created\":1749538184,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_07871e2ad8\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"\\\":\\\"\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-Bgn5kvLl0vMvvRFghnxOhSBa0iG4H\",\"object\":\"chat.completion.chunk\",\"created\":1749538184,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_07871e2ad8\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"add\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-Bgn5kvLl0vMvvRFghnxOhSBa0iG4H\",\"object\":\"chat.completion.chunk\",\"created\":1749538184,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_07871e2ad8\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"\\\",\\\"\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-Bgn5kvLl0vMvvRFghnxOhSBa0iG4H\",\"object\":\"chat.completion.chunk\",\"created\":1749538184,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_07871e2ad8\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"reference\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-Bgn5kvLl0vMvvRFghnxOhSBa0iG4H\",\"object\":\"chat.completion.chunk\",\"created\":1749538184,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_07871e2ad8\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"Id\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-Bgn5kvLl0vMvvRFghnxOhSBa0iG4H\",\"object\":\"chat.completion.chunk\",\"created\":1749538184,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_07871e2ad8\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"\\\":\\\"\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-Bgn5kvLl0vMvvRFghnxOhSBa0iG4H\",\"object\":\"chat.completion.chunk\",\"created\":1749538184,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_07871e2ad8\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"ref\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-Bgn5kvLl0vMvvRFghnxOhSBa0iG4H\",\"object\":\"chat.completion.chunk\",\"created\":1749538184,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_07871e2ad8\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"2\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-Bgn5kvLl0vMvvRFghnxOhSBa0iG4H\",\"object\":\"chat.completion.chunk\",\"created\":1749538184,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_07871e2ad8\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"$\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-Bgn5kvLl0vMvvRFghnxOhSBa0iG4H\",\"object\":\"chat.completion.chunk\",\"created\":1749538184,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_07871e2ad8\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"\\\",\\\"\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-Bgn5kvLl0vMvvRFghnxOhSBa0iG4H\",\"object\":\"chat.completion.chunk\",\"created\":1749538184,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_07871e2ad8\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"position\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-Bgn5kvLl0vMvvRFghnxOhSBa0iG4H\",\"object\":\"chat.completion.chunk\",\"created\":1749538184,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_07871e2ad8\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"\\\":\\\"\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-Bgn5kvLl0vMvvRFghnxOhSBa0iG4H\",\"object\":\"chat.completion.chunk\",\"created\":1749538184,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_07871e2ad8\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"after\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-Bgn5kvLl0vMvvRFghnxOhSBa0iG4H\",\"object\":\"chat.completion.chunk\",\"created\":1749538184,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_07871e2ad8\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"\\\",\\\"\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-Bgn5kvLl0vMvvRFghnxOhSBa0iG4H\",\"object\":\"chat.completion.chunk\",\"created\":1749538184,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_07871e2ad8\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"blocks\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-Bgn5kvLl0vMvvRFghnxOhSBa0iG4H\",\"object\":\"chat.completion.chunk\",\"created\":1749538184,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_07871e2ad8\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"\\\":[\\\"\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-Bgn5kvLl0vMvvRFghnxOhSBa0iG4H\",\"object\":\"chat.completion.chunk\",\"created\":1749538184,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_07871e2ad8\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"<\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-Bgn5kvLl0vMvvRFghnxOhSBa0iG4H\",\"object\":\"chat.completion.chunk\",\"created\":1749538184,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_07871e2ad8\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"p\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-Bgn5kvLl0vMvvRFghnxOhSBa0iG4H\",\"object\":\"chat.completion.chunk\",\"created\":1749538184,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_07871e2ad8\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\">You\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-Bgn5kvLl0vMvvRFghnxOhSBa0iG4H\",\"object\":\"chat.completion.chunk\",\"created\":1749538184,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_07871e2ad8\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\" look\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-Bgn5kvLl0vMvvRFghnxOhSBa0iG4H\",\"object\":\"chat.completion.chunk\",\"created\":1749538184,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_07871e2ad8\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\" great\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-Bgn5kvLl0vMvvRFghnxOhSBa0iG4H\",\"object\":\"chat.completion.chunk\",\"created\":1749538184,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_07871e2ad8\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\" today\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-Bgn5kvLl0vMvvRFghnxOhSBa0iG4H\",\"object\":\"chat.completion.chunk\",\"created\":1749538184,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_07871e2ad8\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"!\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-Bgn5kvLl0vMvvRFghnxOhSBa0iG4H\",\"object\":\"chat.completion.chunk\",\"created\":1749538184,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_07871e2ad8\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"\\\"]\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-Bgn5kvLl0vMvvRFghnxOhSBa0iG4H\",\"object\":\"chat.completion.chunk\",\"created\":1749538184,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_07871e2ad8\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"}\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-Bgn5kvLl0vMvvRFghnxOhSBa0iG4H\",\"object\":\"chat.completion.chunk\",\"created\":1749538184,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_07871e2ad8\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"]}\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-Bgn5kvLl0vMvvRFghnxOhSBa0iG4H\",\"object\":\"chat.completion.chunk\",\"created\":1749538184,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_07871e2ad8\",\"choices\":[{\"index\":0,\"delta\":{},\"logprobs\":null,\"finish_reason\":\"stop\"}]}\n\ndata: [DONE]\n\n", + "body": "data: {\"id\":\"chatcmpl-BhcGhb5lWmFs3Y4RYpLW3sw9aEepC\",\"object\":\"chat.completion.chunk\",\"created\":1749734907,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_07871e2ad8\",\"choices\":[{\"index\":0,\"delta\":{\"role\":\"assistant\",\"content\":null,\"tool_calls\":[{\"index\":0,\"id\":\"call_C1yHXWY86n85130YVLYbGjnf\",\"type\":\"function\",\"function\":{\"name\":\"json\",\"arguments\":\"\"}}],\"refusal\":null},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BhcGhb5lWmFs3Y4RYpLW3sw9aEepC\",\"object\":\"chat.completion.chunk\",\"created\":1749734907,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_07871e2ad8\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"{\\\"\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BhcGhb5lWmFs3Y4RYpLW3sw9aEepC\",\"object\":\"chat.completion.chunk\",\"created\":1749734907,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_07871e2ad8\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"operations\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BhcGhb5lWmFs3Y4RYpLW3sw9aEepC\",\"object\":\"chat.completion.chunk\",\"created\":1749734907,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_07871e2ad8\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"\\\":[\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BhcGhb5lWmFs3Y4RYpLW3sw9aEepC\",\"object\":\"chat.completion.chunk\",\"created\":1749734907,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_07871e2ad8\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"{\\\"\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BhcGhb5lWmFs3Y4RYpLW3sw9aEepC\",\"object\":\"chat.completion.chunk\",\"created\":1749734907,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_07871e2ad8\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"type\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BhcGhb5lWmFs3Y4RYpLW3sw9aEepC\",\"object\":\"chat.completion.chunk\",\"created\":1749734907,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_07871e2ad8\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"\\\":\\\"\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BhcGhb5lWmFs3Y4RYpLW3sw9aEepC\",\"object\":\"chat.completion.chunk\",\"created\":1749734907,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_07871e2ad8\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"add\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BhcGhb5lWmFs3Y4RYpLW3sw9aEepC\",\"object\":\"chat.completion.chunk\",\"created\":1749734907,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_07871e2ad8\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"\\\",\\\"\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BhcGhb5lWmFs3Y4RYpLW3sw9aEepC\",\"object\":\"chat.completion.chunk\",\"created\":1749734907,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_07871e2ad8\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"reference\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BhcGhb5lWmFs3Y4RYpLW3sw9aEepC\",\"object\":\"chat.completion.chunk\",\"created\":1749734907,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_07871e2ad8\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"Id\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BhcGhb5lWmFs3Y4RYpLW3sw9aEepC\",\"object\":\"chat.completion.chunk\",\"created\":1749734907,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_07871e2ad8\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"\\\":\\\"\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BhcGhb5lWmFs3Y4RYpLW3sw9aEepC\",\"object\":\"chat.completion.chunk\",\"created\":1749734907,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_07871e2ad8\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"ref\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BhcGhb5lWmFs3Y4RYpLW3sw9aEepC\",\"object\":\"chat.completion.chunk\",\"created\":1749734907,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_07871e2ad8\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"2\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BhcGhb5lWmFs3Y4RYpLW3sw9aEepC\",\"object\":\"chat.completion.chunk\",\"created\":1749734907,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_07871e2ad8\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"$\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BhcGhb5lWmFs3Y4RYpLW3sw9aEepC\",\"object\":\"chat.completion.chunk\",\"created\":1749734907,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_07871e2ad8\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"\\\",\\\"\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BhcGhb5lWmFs3Y4RYpLW3sw9aEepC\",\"object\":\"chat.completion.chunk\",\"created\":1749734907,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_07871e2ad8\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"position\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BhcGhb5lWmFs3Y4RYpLW3sw9aEepC\",\"object\":\"chat.completion.chunk\",\"created\":1749734907,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_07871e2ad8\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"\\\":\\\"\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BhcGhb5lWmFs3Y4RYpLW3sw9aEepC\",\"object\":\"chat.completion.chunk\",\"created\":1749734907,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_07871e2ad8\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"after\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BhcGhb5lWmFs3Y4RYpLW3sw9aEepC\",\"object\":\"chat.completion.chunk\",\"created\":1749734907,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_07871e2ad8\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"\\\",\\\"\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BhcGhb5lWmFs3Y4RYpLW3sw9aEepC\",\"object\":\"chat.completion.chunk\",\"created\":1749734907,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_07871e2ad8\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"blocks\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BhcGhb5lWmFs3Y4RYpLW3sw9aEepC\",\"object\":\"chat.completion.chunk\",\"created\":1749734907,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_07871e2ad8\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"\\\":[\\\"\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BhcGhb5lWmFs3Y4RYpLW3sw9aEepC\",\"object\":\"chat.completion.chunk\",\"created\":1749734907,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_07871e2ad8\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"<\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BhcGhb5lWmFs3Y4RYpLW3sw9aEepC\",\"object\":\"chat.completion.chunk\",\"created\":1749734907,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_07871e2ad8\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"p\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BhcGhb5lWmFs3Y4RYpLW3sw9aEepC\",\"object\":\"chat.completion.chunk\",\"created\":1749734907,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_07871e2ad8\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\">You\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BhcGhb5lWmFs3Y4RYpLW3sw9aEepC\",\"object\":\"chat.completion.chunk\",\"created\":1749734907,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_07871e2ad8\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\" look\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BhcGhb5lWmFs3Y4RYpLW3sw9aEepC\",\"object\":\"chat.completion.chunk\",\"created\":1749734907,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_07871e2ad8\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\" great\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BhcGhb5lWmFs3Y4RYpLW3sw9aEepC\",\"object\":\"chat.completion.chunk\",\"created\":1749734907,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_07871e2ad8\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\" today\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BhcGhb5lWmFs3Y4RYpLW3sw9aEepC\",\"object\":\"chat.completion.chunk\",\"created\":1749734907,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_07871e2ad8\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"!\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BhcGhb5lWmFs3Y4RYpLW3sw9aEepC\",\"object\":\"chat.completion.chunk\",\"created\":1749734907,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_07871e2ad8\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"\\\"]\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BhcGhb5lWmFs3Y4RYpLW3sw9aEepC\",\"object\":\"chat.completion.chunk\",\"created\":1749734907,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_07871e2ad8\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"}\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BhcGhb5lWmFs3Y4RYpLW3sw9aEepC\",\"object\":\"chat.completion.chunk\",\"created\":1749734907,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_07871e2ad8\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"]}\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BhcGhb5lWmFs3Y4RYpLW3sw9aEepC\",\"object\":\"chat.completion.chunk\",\"created\":1749734907,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_07871e2ad8\",\"choices\":[{\"index\":0,\"delta\":{},\"logprobs\":null,\"finish_reason\":\"stop\"}]}\n\ndata: [DONE]\n\n", "headers": [] } } \ No newline at end of file diff --git a/packages/xl-ai/src/api/formats/html-blocks/__snapshots__/htmlBlocks.test.ts/Add/__msw_snapshots__/openai.chat/gpt-4o-2024-08-06 (streaming)/add a new paragraph (start)_1_56f9b395b16c8dc222ce13deb68cd412.json b/packages/xl-ai/src/api/formats/html-blocks/__snapshots__/htmlBlocks.test.ts/Add/__msw_snapshots__/openai.chat/gpt-4o-2024-08-06 (streaming)/add a new paragraph (start)_1_56f9b395b16c8dc222ce13deb68cd412.json index dee9827b18..35597eb08a 100644 --- a/packages/xl-ai/src/api/formats/html-blocks/__snapshots__/htmlBlocks.test.ts/Add/__msw_snapshots__/openai.chat/gpt-4o-2024-08-06 (streaming)/add a new paragraph (start)_1_56f9b395b16c8dc222ce13deb68cd412.json +++ b/packages/xl-ai/src/api/formats/html-blocks/__snapshots__/htmlBlocks.test.ts/Add/__msw_snapshots__/openai.chat/gpt-4o-2024-08-06 (streaming)/add a new paragraph (start)_1_56f9b395b16c8dc222ce13deb68cd412.json @@ -9,7 +9,7 @@ "response": { "status": 200, "statusText": "", - "body": "data: {\"id\":\"chatcmpl-Bgn5jYATGI9D8jhIFPQv5s5nA3T9X\",\"object\":\"chat.completion.chunk\",\"created\":1749538183,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_76544d79cb\",\"choices\":[{\"index\":0,\"delta\":{\"role\":\"assistant\",\"content\":null,\"tool_calls\":[{\"index\":0,\"id\":\"call_7AhFDz7qBz7bgAqpkbd3GutP\",\"type\":\"function\",\"function\":{\"name\":\"json\",\"arguments\":\"\"}}],\"refusal\":null},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-Bgn5jYATGI9D8jhIFPQv5s5nA3T9X\",\"object\":\"chat.completion.chunk\",\"created\":1749538183,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_76544d79cb\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"{\\\"\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-Bgn5jYATGI9D8jhIFPQv5s5nA3T9X\",\"object\":\"chat.completion.chunk\",\"created\":1749538183,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_76544d79cb\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"operations\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-Bgn5jYATGI9D8jhIFPQv5s5nA3T9X\",\"object\":\"chat.completion.chunk\",\"created\":1749538183,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_76544d79cb\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"\\\":[\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-Bgn5jYATGI9D8jhIFPQv5s5nA3T9X\",\"object\":\"chat.completion.chunk\",\"created\":1749538183,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_76544d79cb\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"{\\\"\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-Bgn5jYATGI9D8jhIFPQv5s5nA3T9X\",\"object\":\"chat.completion.chunk\",\"created\":1749538183,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_76544d79cb\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"type\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-Bgn5jYATGI9D8jhIFPQv5s5nA3T9X\",\"object\":\"chat.completion.chunk\",\"created\":1749538183,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_76544d79cb\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"\\\":\\\"\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-Bgn5jYATGI9D8jhIFPQv5s5nA3T9X\",\"object\":\"chat.completion.chunk\",\"created\":1749538183,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_76544d79cb\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"add\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-Bgn5jYATGI9D8jhIFPQv5s5nA3T9X\",\"object\":\"chat.completion.chunk\",\"created\":1749538183,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_76544d79cb\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"\\\",\\\"\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-Bgn5jYATGI9D8jhIFPQv5s5nA3T9X\",\"object\":\"chat.completion.chunk\",\"created\":1749538183,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_76544d79cb\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"reference\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-Bgn5jYATGI9D8jhIFPQv5s5nA3T9X\",\"object\":\"chat.completion.chunk\",\"created\":1749538183,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_76544d79cb\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"Id\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-Bgn5jYATGI9D8jhIFPQv5s5nA3T9X\",\"object\":\"chat.completion.chunk\",\"created\":1749538183,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_76544d79cb\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"\\\":\\\"\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-Bgn5jYATGI9D8jhIFPQv5s5nA3T9X\",\"object\":\"chat.completion.chunk\",\"created\":1749538183,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_76544d79cb\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"ref\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-Bgn5jYATGI9D8jhIFPQv5s5nA3T9X\",\"object\":\"chat.completion.chunk\",\"created\":1749538183,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_76544d79cb\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"1\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-Bgn5jYATGI9D8jhIFPQv5s5nA3T9X\",\"object\":\"chat.completion.chunk\",\"created\":1749538183,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_76544d79cb\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"$\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-Bgn5jYATGI9D8jhIFPQv5s5nA3T9X\",\"object\":\"chat.completion.chunk\",\"created\":1749538183,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_76544d79cb\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"\\\",\\\"\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-Bgn5jYATGI9D8jhIFPQv5s5nA3T9X\",\"object\":\"chat.completion.chunk\",\"created\":1749538183,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_76544d79cb\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"position\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-Bgn5jYATGI9D8jhIFPQv5s5nA3T9X\",\"object\":\"chat.completion.chunk\",\"created\":1749538183,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_76544d79cb\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"\\\":\\\"\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-Bgn5jYATGI9D8jhIFPQv5s5nA3T9X\",\"object\":\"chat.completion.chunk\",\"created\":1749538183,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_76544d79cb\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"before\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-Bgn5jYATGI9D8jhIFPQv5s5nA3T9X\",\"object\":\"chat.completion.chunk\",\"created\":1749538183,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_76544d79cb\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"\\\",\\\"\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-Bgn5jYATGI9D8jhIFPQv5s5nA3T9X\",\"object\":\"chat.completion.chunk\",\"created\":1749538183,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_76544d79cb\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"blocks\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-Bgn5jYATGI9D8jhIFPQv5s5nA3T9X\",\"object\":\"chat.completion.chunk\",\"created\":1749538183,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_76544d79cb\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"\\\":[\\\"\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-Bgn5jYATGI9D8jhIFPQv5s5nA3T9X\",\"object\":\"chat.completion.chunk\",\"created\":1749538183,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_76544d79cb\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"<\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-Bgn5jYATGI9D8jhIFPQv5s5nA3T9X\",\"object\":\"chat.completion.chunk\",\"created\":1749538183,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_76544d79cb\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"p\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-Bgn5jYATGI9D8jhIFPQv5s5nA3T9X\",\"object\":\"chat.completion.chunk\",\"created\":1749538183,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_76544d79cb\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\">You\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-Bgn5jYATGI9D8jhIFPQv5s5nA3T9X\",\"object\":\"chat.completion.chunk\",\"created\":1749538183,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_76544d79cb\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\" look\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-Bgn5jYATGI9D8jhIFPQv5s5nA3T9X\",\"object\":\"chat.completion.chunk\",\"created\":1749538183,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_76544d79cb\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\" great\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-Bgn5jYATGI9D8jhIFPQv5s5nA3T9X\",\"object\":\"chat.completion.chunk\",\"created\":1749538183,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_76544d79cb\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\" today\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-Bgn5jYATGI9D8jhIFPQv5s5nA3T9X\",\"object\":\"chat.completion.chunk\",\"created\":1749538183,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_76544d79cb\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"!\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-Bgn5jYATGI9D8jhIFPQv5s5nA3T9X\",\"object\":\"chat.completion.chunk\",\"created\":1749538183,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_76544d79cb\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"\\\"]\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-Bgn5jYATGI9D8jhIFPQv5s5nA3T9X\",\"object\":\"chat.completion.chunk\",\"created\":1749538183,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_76544d79cb\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"}\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-Bgn5jYATGI9D8jhIFPQv5s5nA3T9X\",\"object\":\"chat.completion.chunk\",\"created\":1749538183,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_76544d79cb\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"]}\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-Bgn5jYATGI9D8jhIFPQv5s5nA3T9X\",\"object\":\"chat.completion.chunk\",\"created\":1749538183,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_76544d79cb\",\"choices\":[{\"index\":0,\"delta\":{},\"logprobs\":null,\"finish_reason\":\"stop\"}]}\n\ndata: [DONE]\n\n", + "body": "data: {\"id\":\"chatcmpl-BhcGexhSaSWTDmxY9Dd4iUZkHjleg\",\"object\":\"chat.completion.chunk\",\"created\":1749734904,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_07871e2ad8\",\"choices\":[{\"index\":0,\"delta\":{\"role\":\"assistant\",\"content\":null,\"tool_calls\":[{\"index\":0,\"id\":\"call_ipCKvBqGd30oP5MRdmPSHOt0\",\"type\":\"function\",\"function\":{\"name\":\"json\",\"arguments\":\"\"}}],\"refusal\":null},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BhcGexhSaSWTDmxY9Dd4iUZkHjleg\",\"object\":\"chat.completion.chunk\",\"created\":1749734904,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_07871e2ad8\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"{\\\"\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BhcGexhSaSWTDmxY9Dd4iUZkHjleg\",\"object\":\"chat.completion.chunk\",\"created\":1749734904,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_07871e2ad8\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"operations\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BhcGexhSaSWTDmxY9Dd4iUZkHjleg\",\"object\":\"chat.completion.chunk\",\"created\":1749734904,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_07871e2ad8\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"\\\":[\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BhcGexhSaSWTDmxY9Dd4iUZkHjleg\",\"object\":\"chat.completion.chunk\",\"created\":1749734904,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_07871e2ad8\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"{\\\"\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BhcGexhSaSWTDmxY9Dd4iUZkHjleg\",\"object\":\"chat.completion.chunk\",\"created\":1749734904,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_07871e2ad8\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"type\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BhcGexhSaSWTDmxY9Dd4iUZkHjleg\",\"object\":\"chat.completion.chunk\",\"created\":1749734904,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_07871e2ad8\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"\\\":\\\"\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BhcGexhSaSWTDmxY9Dd4iUZkHjleg\",\"object\":\"chat.completion.chunk\",\"created\":1749734904,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_07871e2ad8\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"add\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BhcGexhSaSWTDmxY9Dd4iUZkHjleg\",\"object\":\"chat.completion.chunk\",\"created\":1749734904,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_07871e2ad8\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"\\\",\\\"\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BhcGexhSaSWTDmxY9Dd4iUZkHjleg\",\"object\":\"chat.completion.chunk\",\"created\":1749734904,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_07871e2ad8\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"reference\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BhcGexhSaSWTDmxY9Dd4iUZkHjleg\",\"object\":\"chat.completion.chunk\",\"created\":1749734904,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_07871e2ad8\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"Id\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BhcGexhSaSWTDmxY9Dd4iUZkHjleg\",\"object\":\"chat.completion.chunk\",\"created\":1749734904,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_07871e2ad8\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"\\\":\\\"\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BhcGexhSaSWTDmxY9Dd4iUZkHjleg\",\"object\":\"chat.completion.chunk\",\"created\":1749734904,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_07871e2ad8\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"ref\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BhcGexhSaSWTDmxY9Dd4iUZkHjleg\",\"object\":\"chat.completion.chunk\",\"created\":1749734904,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_07871e2ad8\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"1\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BhcGexhSaSWTDmxY9Dd4iUZkHjleg\",\"object\":\"chat.completion.chunk\",\"created\":1749734904,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_07871e2ad8\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"$\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BhcGexhSaSWTDmxY9Dd4iUZkHjleg\",\"object\":\"chat.completion.chunk\",\"created\":1749734904,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_07871e2ad8\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"\\\",\\\"\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BhcGexhSaSWTDmxY9Dd4iUZkHjleg\",\"object\":\"chat.completion.chunk\",\"created\":1749734904,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_07871e2ad8\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"position\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BhcGexhSaSWTDmxY9Dd4iUZkHjleg\",\"object\":\"chat.completion.chunk\",\"created\":1749734904,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_07871e2ad8\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"\\\":\\\"\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BhcGexhSaSWTDmxY9Dd4iUZkHjleg\",\"object\":\"chat.completion.chunk\",\"created\":1749734904,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_07871e2ad8\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"before\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BhcGexhSaSWTDmxY9Dd4iUZkHjleg\",\"object\":\"chat.completion.chunk\",\"created\":1749734904,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_07871e2ad8\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"\\\",\\\"\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BhcGexhSaSWTDmxY9Dd4iUZkHjleg\",\"object\":\"chat.completion.chunk\",\"created\":1749734904,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_07871e2ad8\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"blocks\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BhcGexhSaSWTDmxY9Dd4iUZkHjleg\",\"object\":\"chat.completion.chunk\",\"created\":1749734904,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_07871e2ad8\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"\\\":[\\\"\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BhcGexhSaSWTDmxY9Dd4iUZkHjleg\",\"object\":\"chat.completion.chunk\",\"created\":1749734904,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_07871e2ad8\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"<\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BhcGexhSaSWTDmxY9Dd4iUZkHjleg\",\"object\":\"chat.completion.chunk\",\"created\":1749734904,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_07871e2ad8\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"p\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BhcGexhSaSWTDmxY9Dd4iUZkHjleg\",\"object\":\"chat.completion.chunk\",\"created\":1749734904,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_07871e2ad8\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\">You\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BhcGexhSaSWTDmxY9Dd4iUZkHjleg\",\"object\":\"chat.completion.chunk\",\"created\":1749734904,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_07871e2ad8\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\" look\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BhcGexhSaSWTDmxY9Dd4iUZkHjleg\",\"object\":\"chat.completion.chunk\",\"created\":1749734904,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_07871e2ad8\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\" great\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BhcGexhSaSWTDmxY9Dd4iUZkHjleg\",\"object\":\"chat.completion.chunk\",\"created\":1749734904,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_07871e2ad8\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\" today\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BhcGexhSaSWTDmxY9Dd4iUZkHjleg\",\"object\":\"chat.completion.chunk\",\"created\":1749734904,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_07871e2ad8\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"!\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BhcGexhSaSWTDmxY9Dd4iUZkHjleg\",\"object\":\"chat.completion.chunk\",\"created\":1749734904,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_07871e2ad8\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"\\\"]\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BhcGexhSaSWTDmxY9Dd4iUZkHjleg\",\"object\":\"chat.completion.chunk\",\"created\":1749734904,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_07871e2ad8\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"}\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BhcGexhSaSWTDmxY9Dd4iUZkHjleg\",\"object\":\"chat.completion.chunk\",\"created\":1749734904,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_07871e2ad8\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"]}\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BhcGexhSaSWTDmxY9Dd4iUZkHjleg\",\"object\":\"chat.completion.chunk\",\"created\":1749734904,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_07871e2ad8\",\"choices\":[{\"index\":0,\"delta\":{},\"logprobs\":null,\"finish_reason\":\"stop\"}]}\n\ndata: [DONE]\n\n", "headers": [] } } \ No newline at end of file diff --git a/packages/xl-ai/src/api/formats/html-blocks/__snapshots__/htmlBlocks.test.ts/Combined/__msw_snapshots__/anthropic.messages/claude-3-7-sonnet-latest (non-streaming)/add and update paragraph_1_a16755b57abd9123bc8d138ece2fc206.json b/packages/xl-ai/src/api/formats/html-blocks/__snapshots__/htmlBlocks.test.ts/Combined/__msw_snapshots__/anthropic.messages/claude-3-7-sonnet-latest (non-streaming)/add and update paragraph_1_a16755b57abd9123bc8d138ece2fc206.json index 1c56ddaa4e..d79f6a3386 100644 --- a/packages/xl-ai/src/api/formats/html-blocks/__snapshots__/htmlBlocks.test.ts/Combined/__msw_snapshots__/anthropic.messages/claude-3-7-sonnet-latest (non-streaming)/add and update paragraph_1_a16755b57abd9123bc8d138ece2fc206.json +++ b/packages/xl-ai/src/api/formats/html-blocks/__snapshots__/htmlBlocks.test.ts/Combined/__msw_snapshots__/anthropic.messages/claude-3-7-sonnet-latest (non-streaming)/add and update paragraph_1_a16755b57abd9123bc8d138ece2fc206.json @@ -9,7 +9,7 @@ "response": { "status": 200, "statusText": "", - "body": "{\"id\":\"msg_016YRrQBqsb7wer7tnpcMEJ2\",\"type\":\"message\",\"role\":\"assistant\",\"model\":\"claude-3-7-sonnet-20250219\",\"content\":[{\"type\":\"tool_use\",\"id\":\"toolu_01VnsrCgnSapBdDMuiz1acpY\",\"name\":\"json\",\"input\":{\"operations\":[{\"type\":\"update\",\"id\":\"ref1$\",\"block\":\"

Hallo, wereld!

\"},{\"type\":\"add\",\"referenceId\":\"ref1$\",\"position\":\"after\",\"blocks\":[\"

You look great today!

\"]}]}}],\"stop_reason\":\"tool_use\",\"stop_sequence\":null,\"usage\":{\"input_tokens\":1255,\"cache_creation_input_tokens\":0,\"cache_read_input_tokens\":0,\"output_tokens\":127,\"service_tier\":\"standard\"}}", + "body": "{\"id\":\"msg_01RsZ4QfScCQwSwXM3Wk2PfP\",\"type\":\"message\",\"role\":\"assistant\",\"model\":\"claude-3-7-sonnet-20250219\",\"content\":[{\"type\":\"tool_use\",\"id\":\"toolu_01DSe9Lc3XCXRWDU49uGB3xP\",\"name\":\"json\",\"input\":{\"operations\":[{\"type\":\"update\",\"id\":\"ref1$\",\"block\":\"

Hallo, wereld!

\"},{\"type\":\"add\",\"referenceId\":\"ref1$\",\"position\":\"after\",\"blocks\":[\"

You look great today!

\"]}]}}],\"stop_reason\":\"tool_use\",\"stop_sequence\":null,\"usage\":{\"input_tokens\":1255,\"cache_creation_input_tokens\":0,\"cache_read_input_tokens\":0,\"output_tokens\":127,\"service_tier\":\"standard\"}}", "headers": [] } } \ No newline at end of file diff --git a/packages/xl-ai/src/api/formats/html-blocks/__snapshots__/htmlBlocks.test.ts/Combined/__msw_snapshots__/anthropic.messages/claude-3-7-sonnet-latest (non-streaming)/add paragraph and update selection_1_9d3466520f605a356f2c31458954e816.json b/packages/xl-ai/src/api/formats/html-blocks/__snapshots__/htmlBlocks.test.ts/Combined/__msw_snapshots__/anthropic.messages/claude-3-7-sonnet-latest (non-streaming)/add paragraph and update selection_1_9d3466520f605a356f2c31458954e816.json index 4c654fc7ea..a27e6af334 100644 --- a/packages/xl-ai/src/api/formats/html-blocks/__snapshots__/htmlBlocks.test.ts/Combined/__msw_snapshots__/anthropic.messages/claude-3-7-sonnet-latest (non-streaming)/add paragraph and update selection_1_9d3466520f605a356f2c31458954e816.json +++ b/packages/xl-ai/src/api/formats/html-blocks/__snapshots__/htmlBlocks.test.ts/Combined/__msw_snapshots__/anthropic.messages/claude-3-7-sonnet-latest (non-streaming)/add paragraph and update selection_1_9d3466520f605a356f2c31458954e816.json @@ -9,7 +9,7 @@ "response": { "status": 200, "statusText": "", - "body": "{\"id\":\"msg_018ZgaeP3uzhztgJnDSY4opB\",\"type\":\"message\",\"role\":\"assistant\",\"model\":\"claude-3-7-sonnet-20250219\",\"content\":[{\"type\":\"tool_use\",\"id\":\"toolu_01FKg38FsUwf6tYtqDrzYdMm\",\"name\":\"json\",\"input\":{\"operations\":[{\"type\":\"add\",\"referenceId\":\"ref2$\",\"position\":\"before\",\"blocks\":[\"

You look great today!

\"]},{\"type\":\"update\",\"id\":\"ref2$\",\"block\":\"

Hallo

\"}]}}],\"stop_reason\":\"tool_use\",\"stop_sequence\":null,\"usage\":{\"input_tokens\":1078,\"cache_creation_input_tokens\":0,\"cache_read_input_tokens\":0,\"output_tokens\":124,\"service_tier\":\"standard\"}}", + "body": "{\"id\":\"msg_01WNGZ4AgjecSeF4a64wKvaA\",\"type\":\"message\",\"role\":\"assistant\",\"model\":\"claude-3-7-sonnet-20250219\",\"content\":[{\"type\":\"tool_use\",\"id\":\"toolu_01ATgVa6VrWee4M1tTRDDog7\",\"name\":\"json\",\"input\":{\"operations\":[{\"type\":\"add\",\"referenceId\":\"ref2$\",\"position\":\"before\",\"blocks\":[\"

You look great today!

\"]},{\"type\":\"update\",\"id\":\"ref2$\",\"block\":\"

Hallo

\"}]}}],\"stop_reason\":\"tool_use\",\"stop_sequence\":null,\"usage\":{\"input_tokens\":1078,\"cache_creation_input_tokens\":0,\"cache_read_input_tokens\":0,\"output_tokens\":124,\"service_tier\":\"standard\"}}", "headers": [] } } \ No newline at end of file diff --git a/packages/xl-ai/src/api/formats/html-blocks/__snapshots__/htmlBlocks.test.ts/Combined/__msw_snapshots__/groq.chat/llama-3.3-70b-versatile (non-streaming)/add and update paragraph_1_051b564433dad882d26853a2d2e41841.json b/packages/xl-ai/src/api/formats/html-blocks/__snapshots__/htmlBlocks.test.ts/Combined/__msw_snapshots__/groq.chat/llama-3.3-70b-versatile (non-streaming)/add and update paragraph_1_051b564433dad882d26853a2d2e41841.json index 6ddf73e28e..92b3343179 100644 --- a/packages/xl-ai/src/api/formats/html-blocks/__snapshots__/htmlBlocks.test.ts/Combined/__msw_snapshots__/groq.chat/llama-3.3-70b-versatile (non-streaming)/add and update paragraph_1_051b564433dad882d26853a2d2e41841.json +++ b/packages/xl-ai/src/api/formats/html-blocks/__snapshots__/htmlBlocks.test.ts/Combined/__msw_snapshots__/groq.chat/llama-3.3-70b-versatile (non-streaming)/add and update paragraph_1_051b564433dad882d26853a2d2e41841.json @@ -9,7 +9,7 @@ "response": { "status": 200, "statusText": "", - "body": "{\"id\":\"chatcmpl-e9eb8d49-f2f0-450a-b83c-9d9b5a2f4327\",\"object\":\"chat.completion\",\"created\":1749541793,\"model\":\"llama-3.3-70b-versatile\",\"choices\":[{\"index\":0,\"message\":{\"role\":\"assistant\",\"tool_calls\":[{\"id\":\"call_2kjy\",\"type\":\"function\",\"function\":{\"name\":\"json\",\"arguments\":\"{\\\"operations\\\":[{\\\"block\\\":\\\"\\\\u003cp\\\\u003eHallo, wereld!\\\\u003c/p\\\\u003e\\\",\\\"id\\\":\\\"ref1$\\\",\\\"type\\\":\\\"update\\\"},{\\\"blocks\\\":[\\\"\\\\u003cp\\\\u003eYou look great today!\\\\u003c/p\\\\u003e\\\"],\\\"position\\\":\\\"after\\\",\\\"referenceId\\\":\\\"ref1$\\\",\\\"type\\\":\\\"add\\\"}]}\"}}]},\"logprobs\":null,\"finish_reason\":\"tool_calls\"}],\"usage\":{\"queue_time\":0.09186020899999998,\"prompt_tokens\":953,\"prompt_time\":0.072878229,\"completion_tokens\":57,\"completion_time\":0.207272727,\"total_tokens\":1010,\"total_time\":0.280150956},\"usage_breakdown\":{\"models\":null},\"system_fingerprint\":\"fp_2ddfbb0da0\",\"x_groq\":{\"id\":\"req_01jxcd2b9xfs9vzpcbz0e2cr21\"}}\n", + "body": "{\"id\":\"chatcmpl-4fcb1519-dbc4-4471-b76b-5294aaac32f4\",\"object\":\"chat.completion\",\"created\":1749735020,\"model\":\"llama-3.3-70b-versatile\",\"choices\":[{\"index\":0,\"message\":{\"role\":\"assistant\",\"tool_calls\":[{\"id\":\"rtqvvxcb0\",\"type\":\"function\",\"function\":{\"name\":\"json\",\"arguments\":\"{\\\"operations\\\":[{\\\"block\\\":\\\"\\\\u003cp\\\\u003eHallo, wereld!\\\\u003c/p\\\\u003e\\\",\\\"id\\\":\\\"ref1$\\\",\\\"type\\\":\\\"update\\\"},{\\\"blocks\\\":[\\\"\\\\u003cp\\\\u003eYou look great today!\\\\u003c/p\\\\u003e\\\"],\\\"position\\\":\\\"after\\\",\\\"referenceId\\\":\\\"ref1$\\\",\\\"type\\\":\\\"add\\\"}]}\"}}]},\"logprobs\":null,\"finish_reason\":\"tool_calls\"}],\"usage\":{\"queue_time\":0.091253663,\"prompt_tokens\":940,\"prompt_time\":0.067942148,\"completion_tokens\":57,\"completion_time\":0.224358045,\"total_tokens\":997,\"total_time\":0.292300193},\"usage_breakdown\":null,\"system_fingerprint\":\"fp_3f3b593e33\",\"x_groq\":{\"id\":\"req_01jxj5b64we8m83ajdptwswp7v\"}}\n", "headers": [] } } \ No newline at end of file diff --git a/packages/xl-ai/src/api/formats/html-blocks/__snapshots__/htmlBlocks.test.ts/Combined/__msw_snapshots__/groq.chat/llama-3.3-70b-versatile (non-streaming)/add paragraph and update selection_1_0ca431ee9c56812e10198e60552a536f.json b/packages/xl-ai/src/api/formats/html-blocks/__snapshots__/htmlBlocks.test.ts/Combined/__msw_snapshots__/groq.chat/llama-3.3-70b-versatile (non-streaming)/add paragraph and update selection_1_0ca431ee9c56812e10198e60552a536f.json index 3e601b05ba..1a4e0a7734 100644 --- a/packages/xl-ai/src/api/formats/html-blocks/__snapshots__/htmlBlocks.test.ts/Combined/__msw_snapshots__/groq.chat/llama-3.3-70b-versatile (non-streaming)/add paragraph and update selection_1_0ca431ee9c56812e10198e60552a536f.json +++ b/packages/xl-ai/src/api/formats/html-blocks/__snapshots__/htmlBlocks.test.ts/Combined/__msw_snapshots__/groq.chat/llama-3.3-70b-versatile (non-streaming)/add paragraph and update selection_1_0ca431ee9c56812e10198e60552a536f.json @@ -9,7 +9,7 @@ "response": { "status": 200, "statusText": "", - "body": "{\"id\":\"chatcmpl-f020059a-215c-4ebd-b96f-bf9a3e32d95c\",\"object\":\"chat.completion\",\"created\":1749541793,\"model\":\"llama-3.3-70b-versatile\",\"choices\":[{\"index\":0,\"message\":{\"role\":\"assistant\",\"tool_calls\":[{\"id\":\"call_42bb\",\"type\":\"function\",\"function\":{\"name\":\"json\",\"arguments\":\"{\\\"operations\\\":[{\\\"blocks\\\":[\\\"\\\\u003cp\\\\u003eYou look great today!\\\\u003c/p\\\\u003e\\\"],\\\"position\\\":\\\"before\\\",\\\"referenceId\\\":\\\"ref2$\\\",\\\"type\\\":\\\"add\\\"},{\\\"block\\\":\\\"\\\\u003cp\\\\u003eHallo\\\\u003c/p\\\\u003e\\\",\\\"id\\\":\\\"ref2$\\\",\\\"type\\\":\\\"update\\\"}]}\"}}]},\"logprobs\":null,\"finish_reason\":\"tool_calls\"}],\"usage\":{\"queue_time\":0.093609981,\"prompt_tokens\":790,\"prompt_time\":0.059212579,\"completion_tokens\":66,\"completion_time\":0.24,\"total_tokens\":856,\"total_time\":0.299212579},\"usage_breakdown\":{\"models\":null},\"system_fingerprint\":\"fp_3f3b593e33\",\"x_groq\":{\"id\":\"req_01jxcd2bq8fs9s529n5ebt5zna\"}}\n", + "body": "{\"id\":\"chatcmpl-d6430160-0551-44b1-84be-25dc5afcdc00\",\"object\":\"chat.completion\",\"created\":1749735021,\"model\":\"llama-3.3-70b-versatile\",\"choices\":[{\"index\":0,\"message\":{\"role\":\"assistant\",\"tool_calls\":[{\"id\":\"x1khw2t17\",\"type\":\"function\",\"function\":{\"name\":\"json\",\"arguments\":\"{\\\"operations\\\":[{\\\"blocks\\\":[\\\"\\\\u003cp\\\\u003eYou look great today!\\\\u003c/p\\\\u003e\\\"],\\\"position\\\":\\\"before\\\",\\\"referenceId\\\":\\\"ref2$\\\",\\\"type\\\":\\\"add\\\"},{\\\"block\\\":\\\"\\\\u003cp\\\\u003eHallo\\\\u003c/p\\\\u003e\\\",\\\"id\\\":\\\"ref2$\\\",\\\"type\\\":\\\"update\\\"}]}\"}}]},\"logprobs\":null,\"finish_reason\":\"tool_calls\"}],\"usage\":{\"queue_time\":0.092257842,\"prompt_tokens\":777,\"prompt_time\":0.06067714,\"completion_tokens\":66,\"completion_time\":0.24,\"total_tokens\":843,\"total_time\":0.30067714},\"usage_breakdown\":null,\"system_fingerprint\":\"fp_3f3b593e33\",\"x_groq\":{\"id\":\"req_01jxj5b6jne8mrn0m5fzzwjm4j\"}}\n", "headers": [] } } \ No newline at end of file diff --git a/packages/xl-ai/src/api/formats/html-blocks/__snapshots__/htmlBlocks.test.ts/Combined/__msw_snapshots__/groq.chat/llama-3.3-70b-versatile (streaming)/add and update paragraph_1_8ef78aa1880fd8536fa49acb127f51c0.json b/packages/xl-ai/src/api/formats/html-blocks/__snapshots__/htmlBlocks.test.ts/Combined/__msw_snapshots__/groq.chat/llama-3.3-70b-versatile (streaming)/add and update paragraph_1_8ef78aa1880fd8536fa49acb127f51c0.json index 6866ac6875..b65d896c88 100644 --- a/packages/xl-ai/src/api/formats/html-blocks/__snapshots__/htmlBlocks.test.ts/Combined/__msw_snapshots__/groq.chat/llama-3.3-70b-versatile (streaming)/add and update paragraph_1_8ef78aa1880fd8536fa49acb127f51c0.json +++ b/packages/xl-ai/src/api/formats/html-blocks/__snapshots__/htmlBlocks.test.ts/Combined/__msw_snapshots__/groq.chat/llama-3.3-70b-versatile (streaming)/add and update paragraph_1_8ef78aa1880fd8536fa49acb127f51c0.json @@ -9,7 +9,7 @@ "response": { "status": 200, "statusText": "", - "body": "data: {\"id\":\"chatcmpl-c700f03a-9845-40be-a546-e24b4c3f0da2\",\"object\":\"chat.completion.chunk\",\"created\":1749541783,\"model\":\"llama-3.3-70b-versatile\",\"system_fingerprint\":\"fp_3f3b593e33\",\"choices\":[{\"index\":0,\"delta\":{\"role\":\"assistant\",\"content\":null},\"logprobs\":null,\"finish_reason\":null}],\"x_groq\":{\"id\":\"req_01jxcd2246fygr5j3fyqer1gjt\"}}\n\ndata: {\"id\":\"chatcmpl-c700f03a-9845-40be-a546-e24b4c3f0da2\",\"object\":\"chat.completion.chunk\",\"created\":1749541784,\"model\":\"llama-3.3-70b-versatile\",\"system_fingerprint\":\"fp_3f3b593e33\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"id\":\"call_gajv\",\"type\":\"function\",\"function\":{\"name\":\"json\",\"arguments\":\"{\\\"operations\\\":[{\\\"block\\\":\\\"\\\\u003cp\\\\u003eHallo, wereld!\\\\u003c/p\\\\u003e\\\",\\\"id\\\":\\\"ref1$\\\",\\\"type\\\":\\\"update\\\"},{\\\"blocks\\\":[\\\"\\\\u003cp\\\\u003eYou look great today!\\\\u003c/p\\\\u003e\\\"],\\\"position\\\":\\\"after\\\",\\\"referenceId\\\":\\\"ref1$\\\",\\\"type\\\":\\\"add\\\"}]}\"},\"index\":0}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-c700f03a-9845-40be-a546-e24b4c3f0da2\",\"object\":\"chat.completion.chunk\",\"created\":1749541784,\"model\":\"llama-3.3-70b-versatile\",\"system_fingerprint\":\"fp_3f3b593e33\",\"choices\":[{\"index\":0,\"delta\":{},\"logprobs\":null,\"finish_reason\":\"tool_calls\"}],\"x_groq\":{\"id\":\"req_01jxcd2246fygr5j3fyqer1gjt\",\"usage\":{\"queue_time\":0.09431794099999999,\"prompt_tokens\":953,\"prompt_time\":0.073490151,\"completion_tokens\":57,\"completion_time\":0.207272727,\"total_tokens\":1010,\"total_time\":0.280762878}}}\n\ndata: [DONE]\n\n", + "body": "data: {\"id\":\"chatcmpl-6e2d5c43-6a50-47c3-9645-7f5d5963334f\",\"object\":\"chat.completion.chunk\",\"created\":1749735010,\"model\":\"llama-3.3-70b-versatile\",\"system_fingerprint\":\"fp_3f3b593e33\",\"choices\":[{\"index\":0,\"delta\":{\"role\":\"assistant\",\"content\":null},\"logprobs\":null,\"finish_reason\":null}],\"x_groq\":{\"id\":\"req_01jxj5awfye88v3wh6v8hy10nb\"}}\n\ndata: {\"id\":\"chatcmpl-6e2d5c43-6a50-47c3-9645-7f5d5963334f\",\"object\":\"chat.completion.chunk\",\"created\":1749735011,\"model\":\"llama-3.3-70b-versatile\",\"system_fingerprint\":\"fp_3f3b593e33\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"id\":\"7dhghssm3\",\"type\":\"function\",\"function\":{\"name\":\"json\",\"arguments\":\"{\\\"operations\\\":[{\\\"block\\\":\\\"\\\\u003cp\\\\u003eHallo, wereld!\\\\u003c/p\\\\u003e\\\",\\\"id\\\":\\\"ref1$\\\",\\\"type\\\":\\\"update\\\"},{\\\"blocks\\\":[\\\"\\\\u003cp\\\\u003eYou look great today!\\\\u003c/p\\\\u003e\\\"],\\\"position\\\":\\\"after\\\",\\\"referenceId\\\":\\\"ref1$\\\",\\\"type\\\":\\\"add\\\"}]}\"},\"index\":0}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-6e2d5c43-6a50-47c3-9645-7f5d5963334f\",\"object\":\"chat.completion.chunk\",\"created\":1749735011,\"model\":\"llama-3.3-70b-versatile\",\"system_fingerprint\":\"fp_3f3b593e33\",\"choices\":[{\"index\":0,\"delta\":{},\"logprobs\":null,\"finish_reason\":\"tool_calls\"}],\"x_groq\":{\"id\":\"req_01jxj5awfye88v3wh6v8hy10nb\",\"usage\":{\"queue_time\":0.092593678,\"prompt_tokens\":940,\"prompt_time\":0.067451622,\"completion_tokens\":57,\"completion_time\":0.249589908,\"total_tokens\":997,\"total_time\":0.31704153}}}\n\ndata: [DONE]\n\n", "headers": [] } } \ No newline at end of file diff --git a/packages/xl-ai/src/api/formats/html-blocks/__snapshots__/htmlBlocks.test.ts/Combined/__msw_snapshots__/groq.chat/llama-3.3-70b-versatile (streaming)/add paragraph and update selection_1_04f9e76ff73eff953288564e5385dbd4.json b/packages/xl-ai/src/api/formats/html-blocks/__snapshots__/htmlBlocks.test.ts/Combined/__msw_snapshots__/groq.chat/llama-3.3-70b-versatile (streaming)/add paragraph and update selection_1_04f9e76ff73eff953288564e5385dbd4.json index 7733def00b..8a4b28a8a5 100644 --- a/packages/xl-ai/src/api/formats/html-blocks/__snapshots__/htmlBlocks.test.ts/Combined/__msw_snapshots__/groq.chat/llama-3.3-70b-versatile (streaming)/add paragraph and update selection_1_04f9e76ff73eff953288564e5385dbd4.json +++ b/packages/xl-ai/src/api/formats/html-blocks/__snapshots__/htmlBlocks.test.ts/Combined/__msw_snapshots__/groq.chat/llama-3.3-70b-versatile (streaming)/add paragraph and update selection_1_04f9e76ff73eff953288564e5385dbd4.json @@ -9,7 +9,7 @@ "response": { "status": 200, "statusText": "", - "body": "data: {\"id\":\"chatcmpl-3697ff86-c4a1-4f04-ac1c-582d5d644437\",\"object\":\"chat.completion.chunk\",\"created\":1749541784,\"model\":\"llama-3.3-70b-versatile\",\"system_fingerprint\":\"fp_3f3b593e33\",\"choices\":[{\"index\":0,\"delta\":{\"role\":\"assistant\",\"content\":null},\"logprobs\":null,\"finish_reason\":null}],\"x_groq\":{\"id\":\"req_01jxcd22hcetarj1zfcamdakvp\"}}\n\ndata: {\"id\":\"chatcmpl-3697ff86-c4a1-4f04-ac1c-582d5d644437\",\"object\":\"chat.completion.chunk\",\"created\":1749541784,\"model\":\"llama-3.3-70b-versatile\",\"system_fingerprint\":\"fp_3f3b593e33\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"id\":\"call_z340\",\"type\":\"function\",\"function\":{\"name\":\"json\",\"arguments\":\"{\\\"operations\\\":[{\\\"blocks\\\":[\\\"\\\\u003cp\\\\u003eYou look great today!\\\\u003c/p\\\\u003e\\\"],\\\"position\\\":\\\"before\\\",\\\"referenceId\\\":\\\"ref2$\\\",\\\"type\\\":\\\"add\\\"},{\\\"block\\\":\\\"\\\\u003cp\\\\u003eHallo\\\\u003c/p\\\\u003e\\\",\\\"id\\\":\\\"ref2$\\\",\\\"type\\\":\\\"update\\\"}]}\"},\"index\":0}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-3697ff86-c4a1-4f04-ac1c-582d5d644437\",\"object\":\"chat.completion.chunk\",\"created\":1749541784,\"model\":\"llama-3.3-70b-versatile\",\"system_fingerprint\":\"fp_3f3b593e33\",\"choices\":[{\"index\":0,\"delta\":{},\"logprobs\":null,\"finish_reason\":\"tool_calls\"}],\"x_groq\":{\"id\":\"req_01jxcd22hcetarj1zfcamdakvp\",\"usage\":{\"queue_time\":0.09454610899999999,\"prompt_tokens\":790,\"prompt_time\":0.058801772,\"completion_tokens\":66,\"completion_time\":0.24,\"total_tokens\":856,\"total_time\":0.298801772}}}\n\ndata: [DONE]\n\n", + "body": "data: {\"id\":\"chatcmpl-da63bfac-dc24-4950-95aa-cf33e51d8f7c\",\"object\":\"chat.completion.chunk\",\"created\":1749735011,\"model\":\"llama-3.3-70b-versatile\",\"system_fingerprint\":\"fp_3f3b593e33\",\"choices\":[{\"index\":0,\"delta\":{\"role\":\"assistant\",\"content\":null},\"logprobs\":null,\"finish_reason\":null}],\"x_groq\":{\"id\":\"req_01jxj5awyffyctg2cg8jyf1x7q\"}}\n\ndata: {\"id\":\"chatcmpl-da63bfac-dc24-4950-95aa-cf33e51d8f7c\",\"object\":\"chat.completion.chunk\",\"created\":1749735011,\"model\":\"llama-3.3-70b-versatile\",\"system_fingerprint\":\"fp_3f3b593e33\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"id\":\"qxzewbkcj\",\"type\":\"function\",\"function\":{\"name\":\"json\",\"arguments\":\"{\\\"operations\\\":[{\\\"blocks\\\":[\\\"\\\\u003cp\\\\u003eYou look great today!\\\\u003c/p\\\\u003e\\\"],\\\"position\\\":\\\"before\\\",\\\"referenceId\\\":\\\"ref2$\\\",\\\"type\\\":\\\"add\\\"},{\\\"block\\\":\\\"\\\\u003cp\\\\u003eHallo\\\\u003c/p\\\\u003e\\\",\\\"id\\\":\\\"ref2$\\\",\\\"type\\\":\\\"update\\\"}]}\"},\"index\":0}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-da63bfac-dc24-4950-95aa-cf33e51d8f7c\",\"object\":\"chat.completion.chunk\",\"created\":1749735011,\"model\":\"llama-3.3-70b-versatile\",\"system_fingerprint\":\"fp_3f3b593e33\",\"choices\":[{\"index\":0,\"delta\":{},\"logprobs\":null,\"finish_reason\":\"tool_calls\"}],\"x_groq\":{\"id\":\"req_01jxj5awyffyctg2cg8jyf1x7q\",\"usage\":{\"queue_time\":0.091723215,\"prompt_tokens\":777,\"prompt_time\":0.061640002,\"completion_tokens\":66,\"completion_time\":0.24,\"total_tokens\":843,\"total_time\":0.301640002}}}\n\ndata: [DONE]\n\n", "headers": [] } } \ No newline at end of file diff --git a/packages/xl-ai/src/api/formats/html-blocks/__snapshots__/htmlBlocks.test.ts/Combined/__msw_snapshots__/openai.chat/gpt-4o-2024-08-06 (non-streaming)/add and update paragraph_1_e9e8ca04b228ebbec6f48d24c147fbcf.json b/packages/xl-ai/src/api/formats/html-blocks/__snapshots__/htmlBlocks.test.ts/Combined/__msw_snapshots__/openai.chat/gpt-4o-2024-08-06 (non-streaming)/add and update paragraph_1_e9e8ca04b228ebbec6f48d24c147fbcf.json index 2b8acbb035..458604ebe0 100644 --- a/packages/xl-ai/src/api/formats/html-blocks/__snapshots__/htmlBlocks.test.ts/Combined/__msw_snapshots__/openai.chat/gpt-4o-2024-08-06 (non-streaming)/add and update paragraph_1_e9e8ca04b228ebbec6f48d24c147fbcf.json +++ b/packages/xl-ai/src/api/formats/html-blocks/__snapshots__/htmlBlocks.test.ts/Combined/__msw_snapshots__/openai.chat/gpt-4o-2024-08-06 (non-streaming)/add and update paragraph_1_e9e8ca04b228ebbec6f48d24c147fbcf.json @@ -9,7 +9,7 @@ "response": { "status": 200, "statusText": "", - "body": "{\n \"id\": \"chatcmpl-Bgo1cPI1ATbp2TztJsQjC6tAER3cZ\",\n \"object\": \"chat.completion\",\n \"created\": 1749541772,\n \"model\": \"gpt-4o-2024-08-06\",\n \"choices\": [\n {\n \"index\": 0,\n \"message\": {\n \"role\": \"assistant\",\n \"content\": null,\n \"tool_calls\": [\n {\n \"id\": \"call_kYwasrXpzmnpVQ4M2aFtWxEt\",\n \"type\": \"function\",\n \"function\": {\n \"name\": \"json\",\n \"arguments\": \"{\\\"operations\\\":[{\\\"type\\\":\\\"update\\\",\\\"id\\\":\\\"ref1$\\\",\\\"block\\\":\\\"

Hallo, wereld!

\\\"},{\\\"type\\\":\\\"add\\\",\\\"referenceId\\\":\\\"ref1$\\\",\\\"position\\\":\\\"after\\\",\\\"blocks\\\":[\\\"

You look great today!

\\\"]}]}\"\n }\n }\n ],\n \"refusal\": null,\n \"annotations\": []\n },\n \"logprobs\": null,\n \"finish_reason\": \"stop\"\n }\n ],\n \"usage\": {\n \"prompt_tokens\": 662,\n \"completion_tokens\": 55,\n \"total_tokens\": 717,\n \"prompt_tokens_details\": {\n \"cached_tokens\": 0,\n \"audio_tokens\": 0\n },\n \"completion_tokens_details\": {\n \"reasoning_tokens\": 0,\n \"audio_tokens\": 0,\n \"accepted_prediction_tokens\": 0,\n \"rejected_prediction_tokens\": 0\n }\n },\n \"service_tier\": \"default\",\n \"system_fingerprint\": \"fp_07871e2ad8\"\n}\n", + "body": "{\n \"id\": \"chatcmpl-BhcI4YClPDOLlQWC0xY3pVFCPUvCz\",\n \"object\": \"chat.completion\",\n \"created\": 1749734992,\n \"model\": \"gpt-4o-2024-08-06\",\n \"choices\": [\n {\n \"index\": 0,\n \"message\": {\n \"role\": \"assistant\",\n \"content\": null,\n \"tool_calls\": [\n {\n \"id\": \"call_bmqsuC0QzwcY2QEFzV3ORrxp\",\n \"type\": \"function\",\n \"function\": {\n \"name\": \"json\",\n \"arguments\": \"{\\\"operations\\\":[{\\\"type\\\":\\\"update\\\",\\\"id\\\":\\\"ref1$\\\",\\\"block\\\":\\\"

Hallo, wereld!

\\\"},{\\\"type\\\":\\\"add\\\",\\\"referenceId\\\":\\\"ref1$\\\",\\\"position\\\":\\\"after\\\",\\\"blocks\\\":[\\\"

You look great today!

\\\"]}]}\"\n }\n }\n ],\n \"refusal\": null,\n \"annotations\": []\n },\n \"logprobs\": null,\n \"finish_reason\": \"stop\"\n }\n ],\n \"usage\": {\n \"prompt_tokens\": 662,\n \"completion_tokens\": 55,\n \"total_tokens\": 717,\n \"prompt_tokens_details\": {\n \"cached_tokens\": 0,\n \"audio_tokens\": 0\n },\n \"completion_tokens_details\": {\n \"reasoning_tokens\": 0,\n \"audio_tokens\": 0,\n \"accepted_prediction_tokens\": 0,\n \"rejected_prediction_tokens\": 0\n }\n },\n \"service_tier\": \"default\",\n \"system_fingerprint\": \"fp_07871e2ad8\"\n}\n", "headers": [] } } \ No newline at end of file diff --git a/packages/xl-ai/src/api/formats/html-blocks/__snapshots__/htmlBlocks.test.ts/Combined/__msw_snapshots__/openai.chat/gpt-4o-2024-08-06 (non-streaming)/add paragraph and update selection_1_f5cd402d603bead3d759ebb5485f39c3.json b/packages/xl-ai/src/api/formats/html-blocks/__snapshots__/htmlBlocks.test.ts/Combined/__msw_snapshots__/openai.chat/gpt-4o-2024-08-06 (non-streaming)/add paragraph and update selection_1_f5cd402d603bead3d759ebb5485f39c3.json index ad100d7d10..de2671673e 100644 --- a/packages/xl-ai/src/api/formats/html-blocks/__snapshots__/htmlBlocks.test.ts/Combined/__msw_snapshots__/openai.chat/gpt-4o-2024-08-06 (non-streaming)/add paragraph and update selection_1_f5cd402d603bead3d759ebb5485f39c3.json +++ b/packages/xl-ai/src/api/formats/html-blocks/__snapshots__/htmlBlocks.test.ts/Combined/__msw_snapshots__/openai.chat/gpt-4o-2024-08-06 (non-streaming)/add paragraph and update selection_1_f5cd402d603bead3d759ebb5485f39c3.json @@ -9,7 +9,7 @@ "response": { "status": 200, "statusText": "", - "body": "{\n \"id\": \"chatcmpl-Bgo1eSphQgDzhkUvgoZyBmnyoMVyi\",\n \"object\": \"chat.completion\",\n \"created\": 1749541774,\n \"model\": \"gpt-4o-2024-08-06\",\n \"choices\": [\n {\n \"index\": 0,\n \"message\": {\n \"role\": \"assistant\",\n \"content\": null,\n \"tool_calls\": [\n {\n \"id\": \"call_ouWkuutKDtA4uTl57Av5WHO0\",\n \"type\": \"function\",\n \"function\": {\n \"name\": \"json\",\n \"arguments\": \"{\\\"operations\\\":[{\\\"type\\\":\\\"add\\\",\\\"referenceId\\\":\\\"ref2$\\\",\\\"position\\\":\\\"before\\\",\\\"blocks\\\":[\\\"

You look great today!

\\\"]},{\\\"type\\\":\\\"update\\\",\\\"id\\\":\\\"ref2$\\\",\\\"block\\\":\\\"

Hallo

\\\"}]}\"\n }\n }\n ],\n \"refusal\": null,\n \"annotations\": []\n },\n \"logprobs\": null,\n \"finish_reason\": \"stop\"\n }\n ],\n \"usage\": {\n \"prompt_tokens\": 503,\n \"completion_tokens\": 53,\n \"total_tokens\": 556,\n \"prompt_tokens_details\": {\n \"cached_tokens\": 0,\n \"audio_tokens\": 0\n },\n \"completion_tokens_details\": {\n \"reasoning_tokens\": 0,\n \"audio_tokens\": 0,\n \"accepted_prediction_tokens\": 0,\n \"rejected_prediction_tokens\": 0\n }\n },\n \"service_tier\": \"default\",\n \"system_fingerprint\": \"fp_07871e2ad8\"\n}\n", + "body": "{\n \"id\": \"chatcmpl-BhcI6p4L0WnWOsSyn0713fUYzN5GQ\",\n \"object\": \"chat.completion\",\n \"created\": 1749734994,\n \"model\": \"gpt-4o-2024-08-06\",\n \"choices\": [\n {\n \"index\": 0,\n \"message\": {\n \"role\": \"assistant\",\n \"content\": null,\n \"tool_calls\": [\n {\n \"id\": \"call_xDb7mcgCWRrNwwvaIc0YtmhP\",\n \"type\": \"function\",\n \"function\": {\n \"name\": \"json\",\n \"arguments\": \"{\\\"operations\\\":[{\\\"type\\\":\\\"add\\\",\\\"referenceId\\\":\\\"ref2$\\\",\\\"position\\\":\\\"before\\\",\\\"blocks\\\":[\\\"

You look great today!

\\\"]},{\\\"type\\\":\\\"update\\\",\\\"id\\\":\\\"ref2$\\\",\\\"block\\\":\\\"

Hallo

\\\"}]}\"\n }\n }\n ],\n \"refusal\": null,\n \"annotations\": []\n },\n \"logprobs\": null,\n \"finish_reason\": \"stop\"\n }\n ],\n \"usage\": {\n \"prompt_tokens\": 503,\n \"completion_tokens\": 53,\n \"total_tokens\": 556,\n \"prompt_tokens_details\": {\n \"cached_tokens\": 0,\n \"audio_tokens\": 0\n },\n \"completion_tokens_details\": {\n \"reasoning_tokens\": 0,\n \"audio_tokens\": 0,\n \"accepted_prediction_tokens\": 0,\n \"rejected_prediction_tokens\": 0\n }\n },\n \"service_tier\": \"default\",\n \"system_fingerprint\": \"fp_a288987b44\"\n}\n", "headers": [] } } \ No newline at end of file diff --git a/packages/xl-ai/src/api/formats/html-blocks/__snapshots__/htmlBlocks.test.ts/Combined/__msw_snapshots__/openai.chat/gpt-4o-2024-08-06 (streaming)/add and update paragraph_1_2551adfcc4ecd63e37094152b44c1144.json b/packages/xl-ai/src/api/formats/html-blocks/__snapshots__/htmlBlocks.test.ts/Combined/__msw_snapshots__/openai.chat/gpt-4o-2024-08-06 (streaming)/add and update paragraph_1_2551adfcc4ecd63e37094152b44c1144.json index a033ceb42a..4ef0cb9c6d 100644 --- a/packages/xl-ai/src/api/formats/html-blocks/__snapshots__/htmlBlocks.test.ts/Combined/__msw_snapshots__/openai.chat/gpt-4o-2024-08-06 (streaming)/add and update paragraph_1_2551adfcc4ecd63e37094152b44c1144.json +++ b/packages/xl-ai/src/api/formats/html-blocks/__snapshots__/htmlBlocks.test.ts/Combined/__msw_snapshots__/openai.chat/gpt-4o-2024-08-06 (streaming)/add and update paragraph_1_2551adfcc4ecd63e37094152b44c1144.json @@ -9,7 +9,7 @@ "response": { "status": 200, "statusText": "", - "body": "data: {\"id\":\"chatcmpl-Bgn6FMh5G71k8na02WDbjzJx33ZmR\",\"object\":\"chat.completion.chunk\",\"created\":1749538215,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_07871e2ad8\",\"choices\":[{\"index\":0,\"delta\":{\"role\":\"assistant\",\"content\":null,\"tool_calls\":[{\"index\":0,\"id\":\"call_jHEHFuRZQCHb1Wli9xZeakcP\",\"type\":\"function\",\"function\":{\"name\":\"json\",\"arguments\":\"\"}}],\"refusal\":null},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-Bgn6FMh5G71k8na02WDbjzJx33ZmR\",\"object\":\"chat.completion.chunk\",\"created\":1749538215,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_07871e2ad8\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"{\\\"\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-Bgn6FMh5G71k8na02WDbjzJx33ZmR\",\"object\":\"chat.completion.chunk\",\"created\":1749538215,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_07871e2ad8\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"operations\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-Bgn6FMh5G71k8na02WDbjzJx33ZmR\",\"object\":\"chat.completion.chunk\",\"created\":1749538215,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_07871e2ad8\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"\\\":[\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-Bgn6FMh5G71k8na02WDbjzJx33ZmR\",\"object\":\"chat.completion.chunk\",\"created\":1749538215,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_07871e2ad8\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"{\\\"\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-Bgn6FMh5G71k8na02WDbjzJx33ZmR\",\"object\":\"chat.completion.chunk\",\"created\":1749538215,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_07871e2ad8\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"type\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-Bgn6FMh5G71k8na02WDbjzJx33ZmR\",\"object\":\"chat.completion.chunk\",\"created\":1749538215,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_07871e2ad8\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"\\\":\\\"\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-Bgn6FMh5G71k8na02WDbjzJx33ZmR\",\"object\":\"chat.completion.chunk\",\"created\":1749538215,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_07871e2ad8\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"update\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-Bgn6FMh5G71k8na02WDbjzJx33ZmR\",\"object\":\"chat.completion.chunk\",\"created\":1749538215,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_07871e2ad8\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"\\\",\\\"\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-Bgn6FMh5G71k8na02WDbjzJx33ZmR\",\"object\":\"chat.completion.chunk\",\"created\":1749538215,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_07871e2ad8\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"id\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-Bgn6FMh5G71k8na02WDbjzJx33ZmR\",\"object\":\"chat.completion.chunk\",\"created\":1749538215,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_07871e2ad8\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"\\\":\\\"\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-Bgn6FMh5G71k8na02WDbjzJx33ZmR\",\"object\":\"chat.completion.chunk\",\"created\":1749538215,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_07871e2ad8\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"ref\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-Bgn6FMh5G71k8na02WDbjzJx33ZmR\",\"object\":\"chat.completion.chunk\",\"created\":1749538215,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_07871e2ad8\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"1\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-Bgn6FMh5G71k8na02WDbjzJx33ZmR\",\"object\":\"chat.completion.chunk\",\"created\":1749538215,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_07871e2ad8\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"$\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-Bgn6FMh5G71k8na02WDbjzJx33ZmR\",\"object\":\"chat.completion.chunk\",\"created\":1749538215,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_07871e2ad8\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"\\\",\\\"\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-Bgn6FMh5G71k8na02WDbjzJx33ZmR\",\"object\":\"chat.completion.chunk\",\"created\":1749538215,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_07871e2ad8\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"block\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-Bgn6FMh5G71k8na02WDbjzJx33ZmR\",\"object\":\"chat.completion.chunk\",\"created\":1749538215,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_07871e2ad8\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"\\\":\\\"\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-Bgn6FMh5G71k8na02WDbjzJx33ZmR\",\"object\":\"chat.completion.chunk\",\"created\":1749538215,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_07871e2ad8\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"<\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-Bgn6FMh5G71k8na02WDbjzJx33ZmR\",\"object\":\"chat.completion.chunk\",\"created\":1749538215,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_07871e2ad8\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"p\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-Bgn6FMh5G71k8na02WDbjzJx33ZmR\",\"object\":\"chat.completion.chunk\",\"created\":1749538215,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_07871e2ad8\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\">\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-Bgn6FMh5G71k8na02WDbjzJx33ZmR\",\"object\":\"chat.completion.chunk\",\"created\":1749538215,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_07871e2ad8\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"Hallo\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-Bgn6FMh5G71k8na02WDbjzJx33ZmR\",\"object\":\"chat.completion.chunk\",\"created\":1749538215,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_07871e2ad8\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\",\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-Bgn6FMh5G71k8na02WDbjzJx33ZmR\",\"object\":\"chat.completion.chunk\",\"created\":1749538215,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_07871e2ad8\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\" wereld\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-Bgn6FMh5G71k8na02WDbjzJx33ZmR\",\"object\":\"chat.completion.chunk\",\"created\":1749538215,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_07871e2ad8\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"!\\\"\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-Bgn6FMh5G71k8na02WDbjzJx33ZmR\",\"object\":\"chat.completion.chunk\",\"created\":1749538215,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_07871e2ad8\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"},{\\\"\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-Bgn6FMh5G71k8na02WDbjzJx33ZmR\",\"object\":\"chat.completion.chunk\",\"created\":1749538215,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_07871e2ad8\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"type\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-Bgn6FMh5G71k8na02WDbjzJx33ZmR\",\"object\":\"chat.completion.chunk\",\"created\":1749538215,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_07871e2ad8\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"\\\":\\\"\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-Bgn6FMh5G71k8na02WDbjzJx33ZmR\",\"object\":\"chat.completion.chunk\",\"created\":1749538215,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_07871e2ad8\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"add\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-Bgn6FMh5G71k8na02WDbjzJx33ZmR\",\"object\":\"chat.completion.chunk\",\"created\":1749538215,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_07871e2ad8\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"\\\",\\\"\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-Bgn6FMh5G71k8na02WDbjzJx33ZmR\",\"object\":\"chat.completion.chunk\",\"created\":1749538215,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_07871e2ad8\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"reference\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-Bgn6FMh5G71k8na02WDbjzJx33ZmR\",\"object\":\"chat.completion.chunk\",\"created\":1749538215,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_07871e2ad8\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"Id\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-Bgn6FMh5G71k8na02WDbjzJx33ZmR\",\"object\":\"chat.completion.chunk\",\"created\":1749538215,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_07871e2ad8\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"\\\":\\\"\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-Bgn6FMh5G71k8na02WDbjzJx33ZmR\",\"object\":\"chat.completion.chunk\",\"created\":1749538215,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_07871e2ad8\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"ref\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-Bgn6FMh5G71k8na02WDbjzJx33ZmR\",\"object\":\"chat.completion.chunk\",\"created\":1749538215,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_07871e2ad8\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"1\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-Bgn6FMh5G71k8na02WDbjzJx33ZmR\",\"object\":\"chat.completion.chunk\",\"created\":1749538215,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_07871e2ad8\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"$\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-Bgn6FMh5G71k8na02WDbjzJx33ZmR\",\"object\":\"chat.completion.chunk\",\"created\":1749538215,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_07871e2ad8\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"\\\",\\\"\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-Bgn6FMh5G71k8na02WDbjzJx33ZmR\",\"object\":\"chat.completion.chunk\",\"created\":1749538215,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_07871e2ad8\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"position\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-Bgn6FMh5G71k8na02WDbjzJx33ZmR\",\"object\":\"chat.completion.chunk\",\"created\":1749538215,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_07871e2ad8\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"\\\":\\\"\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-Bgn6FMh5G71k8na02WDbjzJx33ZmR\",\"object\":\"chat.completion.chunk\",\"created\":1749538215,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_07871e2ad8\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"after\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-Bgn6FMh5G71k8na02WDbjzJx33ZmR\",\"object\":\"chat.completion.chunk\",\"created\":1749538215,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_07871e2ad8\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"\\\",\\\"\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-Bgn6FMh5G71k8na02WDbjzJx33ZmR\",\"object\":\"chat.completion.chunk\",\"created\":1749538215,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_07871e2ad8\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"blocks\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-Bgn6FMh5G71k8na02WDbjzJx33ZmR\",\"object\":\"chat.completion.chunk\",\"created\":1749538215,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_07871e2ad8\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"\\\":[\\\"\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-Bgn6FMh5G71k8na02WDbjzJx33ZmR\",\"object\":\"chat.completion.chunk\",\"created\":1749538215,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_07871e2ad8\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"<\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-Bgn6FMh5G71k8na02WDbjzJx33ZmR\",\"object\":\"chat.completion.chunk\",\"created\":1749538215,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_07871e2ad8\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"p\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-Bgn6FMh5G71k8na02WDbjzJx33ZmR\",\"object\":\"chat.completion.chunk\",\"created\":1749538215,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_07871e2ad8\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\">You\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-Bgn6FMh5G71k8na02WDbjzJx33ZmR\",\"object\":\"chat.completion.chunk\",\"created\":1749538215,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_07871e2ad8\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\" look\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-Bgn6FMh5G71k8na02WDbjzJx33ZmR\",\"object\":\"chat.completion.chunk\",\"created\":1749538215,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_07871e2ad8\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\" great\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-Bgn6FMh5G71k8na02WDbjzJx33ZmR\",\"object\":\"chat.completion.chunk\",\"created\":1749538215,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_07871e2ad8\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\" today\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-Bgn6FMh5G71k8na02WDbjzJx33ZmR\",\"object\":\"chat.completion.chunk\",\"created\":1749538215,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_07871e2ad8\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"!\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-Bgn6FMh5G71k8na02WDbjzJx33ZmR\",\"object\":\"chat.completion.chunk\",\"created\":1749538215,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_07871e2ad8\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"\\\"]\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-Bgn6FMh5G71k8na02WDbjzJx33ZmR\",\"object\":\"chat.completion.chunk\",\"created\":1749538215,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_07871e2ad8\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"}\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-Bgn6FMh5G71k8na02WDbjzJx33ZmR\",\"object\":\"chat.completion.chunk\",\"created\":1749538215,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_07871e2ad8\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"]}\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-Bgn6FMh5G71k8na02WDbjzJx33ZmR\",\"object\":\"chat.completion.chunk\",\"created\":1749538215,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_07871e2ad8\",\"choices\":[{\"index\":0,\"delta\":{},\"logprobs\":null,\"finish_reason\":\"stop\"}]}\n\ndata: [DONE]\n\n", + "body": "data: {\"id\":\"chatcmpl-BhcHHR9HYiApLtZ0W01Zj46tEAN8y\",\"object\":\"chat.completion.chunk\",\"created\":1749734943,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_a288987b44\",\"choices\":[{\"index\":0,\"delta\":{\"role\":\"assistant\",\"content\":null,\"tool_calls\":[{\"index\":0,\"id\":\"call_O0SaEr1CJ3QLiOVAcZyiLRz3\",\"type\":\"function\",\"function\":{\"name\":\"json\",\"arguments\":\"\"}}],\"refusal\":null},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BhcHHR9HYiApLtZ0W01Zj46tEAN8y\",\"object\":\"chat.completion.chunk\",\"created\":1749734943,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_a288987b44\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"{\\\"\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BhcHHR9HYiApLtZ0W01Zj46tEAN8y\",\"object\":\"chat.completion.chunk\",\"created\":1749734943,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_a288987b44\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"operations\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BhcHHR9HYiApLtZ0W01Zj46tEAN8y\",\"object\":\"chat.completion.chunk\",\"created\":1749734943,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_a288987b44\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"\\\":[\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BhcHHR9HYiApLtZ0W01Zj46tEAN8y\",\"object\":\"chat.completion.chunk\",\"created\":1749734943,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_a288987b44\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"{\\\"\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BhcHHR9HYiApLtZ0W01Zj46tEAN8y\",\"object\":\"chat.completion.chunk\",\"created\":1749734943,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_a288987b44\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"type\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BhcHHR9HYiApLtZ0W01Zj46tEAN8y\",\"object\":\"chat.completion.chunk\",\"created\":1749734943,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_a288987b44\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"\\\":\\\"\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BhcHHR9HYiApLtZ0W01Zj46tEAN8y\",\"object\":\"chat.completion.chunk\",\"created\":1749734943,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_a288987b44\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"update\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BhcHHR9HYiApLtZ0W01Zj46tEAN8y\",\"object\":\"chat.completion.chunk\",\"created\":1749734943,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_a288987b44\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"\\\",\\\"\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BhcHHR9HYiApLtZ0W01Zj46tEAN8y\",\"object\":\"chat.completion.chunk\",\"created\":1749734943,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_a288987b44\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"id\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BhcHHR9HYiApLtZ0W01Zj46tEAN8y\",\"object\":\"chat.completion.chunk\",\"created\":1749734943,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_a288987b44\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"\\\":\\\"\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BhcHHR9HYiApLtZ0W01Zj46tEAN8y\",\"object\":\"chat.completion.chunk\",\"created\":1749734943,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_a288987b44\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"ref\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BhcHHR9HYiApLtZ0W01Zj46tEAN8y\",\"object\":\"chat.completion.chunk\",\"created\":1749734943,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_a288987b44\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"1\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BhcHHR9HYiApLtZ0W01Zj46tEAN8y\",\"object\":\"chat.completion.chunk\",\"created\":1749734943,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_a288987b44\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"$\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BhcHHR9HYiApLtZ0W01Zj46tEAN8y\",\"object\":\"chat.completion.chunk\",\"created\":1749734943,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_a288987b44\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"\\\",\\\"\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BhcHHR9HYiApLtZ0W01Zj46tEAN8y\",\"object\":\"chat.completion.chunk\",\"created\":1749734943,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_a288987b44\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"block\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BhcHHR9HYiApLtZ0W01Zj46tEAN8y\",\"object\":\"chat.completion.chunk\",\"created\":1749734943,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_a288987b44\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"\\\":\\\"\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BhcHHR9HYiApLtZ0W01Zj46tEAN8y\",\"object\":\"chat.completion.chunk\",\"created\":1749734943,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_a288987b44\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"<\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BhcHHR9HYiApLtZ0W01Zj46tEAN8y\",\"object\":\"chat.completion.chunk\",\"created\":1749734943,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_a288987b44\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"p\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BhcHHR9HYiApLtZ0W01Zj46tEAN8y\",\"object\":\"chat.completion.chunk\",\"created\":1749734943,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_a288987b44\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\">\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BhcHHR9HYiApLtZ0W01Zj46tEAN8y\",\"object\":\"chat.completion.chunk\",\"created\":1749734943,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_a288987b44\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"Hallo\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BhcHHR9HYiApLtZ0W01Zj46tEAN8y\",\"object\":\"chat.completion.chunk\",\"created\":1749734943,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_a288987b44\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\",\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BhcHHR9HYiApLtZ0W01Zj46tEAN8y\",\"object\":\"chat.completion.chunk\",\"created\":1749734943,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_a288987b44\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\" wereld\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BhcHHR9HYiApLtZ0W01Zj46tEAN8y\",\"object\":\"chat.completion.chunk\",\"created\":1749734943,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_a288987b44\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"!\\\"\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BhcHHR9HYiApLtZ0W01Zj46tEAN8y\",\"object\":\"chat.completion.chunk\",\"created\":1749734943,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_a288987b44\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"},{\\\"\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BhcHHR9HYiApLtZ0W01Zj46tEAN8y\",\"object\":\"chat.completion.chunk\",\"created\":1749734943,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_a288987b44\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"type\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BhcHHR9HYiApLtZ0W01Zj46tEAN8y\",\"object\":\"chat.completion.chunk\",\"created\":1749734943,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_a288987b44\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"\\\":\\\"\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BhcHHR9HYiApLtZ0W01Zj46tEAN8y\",\"object\":\"chat.completion.chunk\",\"created\":1749734943,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_a288987b44\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"add\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BhcHHR9HYiApLtZ0W01Zj46tEAN8y\",\"object\":\"chat.completion.chunk\",\"created\":1749734943,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_a288987b44\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"\\\",\\\"\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BhcHHR9HYiApLtZ0W01Zj46tEAN8y\",\"object\":\"chat.completion.chunk\",\"created\":1749734943,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_a288987b44\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"reference\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BhcHHR9HYiApLtZ0W01Zj46tEAN8y\",\"object\":\"chat.completion.chunk\",\"created\":1749734943,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_a288987b44\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"Id\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BhcHHR9HYiApLtZ0W01Zj46tEAN8y\",\"object\":\"chat.completion.chunk\",\"created\":1749734943,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_a288987b44\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"\\\":\\\"\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BhcHHR9HYiApLtZ0W01Zj46tEAN8y\",\"object\":\"chat.completion.chunk\",\"created\":1749734943,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_a288987b44\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"ref\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BhcHHR9HYiApLtZ0W01Zj46tEAN8y\",\"object\":\"chat.completion.chunk\",\"created\":1749734943,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_a288987b44\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"1\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BhcHHR9HYiApLtZ0W01Zj46tEAN8y\",\"object\":\"chat.completion.chunk\",\"created\":1749734943,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_a288987b44\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"$\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BhcHHR9HYiApLtZ0W01Zj46tEAN8y\",\"object\":\"chat.completion.chunk\",\"created\":1749734943,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_a288987b44\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"\\\",\\\"\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BhcHHR9HYiApLtZ0W01Zj46tEAN8y\",\"object\":\"chat.completion.chunk\",\"created\":1749734943,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_a288987b44\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"position\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BhcHHR9HYiApLtZ0W01Zj46tEAN8y\",\"object\":\"chat.completion.chunk\",\"created\":1749734943,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_a288987b44\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"\\\":\\\"\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BhcHHR9HYiApLtZ0W01Zj46tEAN8y\",\"object\":\"chat.completion.chunk\",\"created\":1749734943,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_a288987b44\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"after\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BhcHHR9HYiApLtZ0W01Zj46tEAN8y\",\"object\":\"chat.completion.chunk\",\"created\":1749734943,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_a288987b44\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"\\\",\\\"\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BhcHHR9HYiApLtZ0W01Zj46tEAN8y\",\"object\":\"chat.completion.chunk\",\"created\":1749734943,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_a288987b44\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"blocks\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BhcHHR9HYiApLtZ0W01Zj46tEAN8y\",\"object\":\"chat.completion.chunk\",\"created\":1749734943,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_a288987b44\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"\\\":[\\\"\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BhcHHR9HYiApLtZ0W01Zj46tEAN8y\",\"object\":\"chat.completion.chunk\",\"created\":1749734943,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_a288987b44\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"<\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BhcHHR9HYiApLtZ0W01Zj46tEAN8y\",\"object\":\"chat.completion.chunk\",\"created\":1749734943,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_a288987b44\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"p\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BhcHHR9HYiApLtZ0W01Zj46tEAN8y\",\"object\":\"chat.completion.chunk\",\"created\":1749734943,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_a288987b44\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\">You\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BhcHHR9HYiApLtZ0W01Zj46tEAN8y\",\"object\":\"chat.completion.chunk\",\"created\":1749734943,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_a288987b44\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\" look\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BhcHHR9HYiApLtZ0W01Zj46tEAN8y\",\"object\":\"chat.completion.chunk\",\"created\":1749734943,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_a288987b44\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\" great\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BhcHHR9HYiApLtZ0W01Zj46tEAN8y\",\"object\":\"chat.completion.chunk\",\"created\":1749734943,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_a288987b44\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\" today\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BhcHHR9HYiApLtZ0W01Zj46tEAN8y\",\"object\":\"chat.completion.chunk\",\"created\":1749734943,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_a288987b44\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"!\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BhcHHR9HYiApLtZ0W01Zj46tEAN8y\",\"object\":\"chat.completion.chunk\",\"created\":1749734943,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_a288987b44\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"\\\"]\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BhcHHR9HYiApLtZ0W01Zj46tEAN8y\",\"object\":\"chat.completion.chunk\",\"created\":1749734943,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_a288987b44\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"}\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BhcHHR9HYiApLtZ0W01Zj46tEAN8y\",\"object\":\"chat.completion.chunk\",\"created\":1749734943,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_a288987b44\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"]}\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BhcHHR9HYiApLtZ0W01Zj46tEAN8y\",\"object\":\"chat.completion.chunk\",\"created\":1749734943,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_a288987b44\",\"choices\":[{\"index\":0,\"delta\":{},\"logprobs\":null,\"finish_reason\":\"stop\"}]}\n\ndata: [DONE]\n\n", "headers": [] } } \ No newline at end of file diff --git a/packages/xl-ai/src/api/formats/html-blocks/__snapshots__/htmlBlocks.test.ts/Combined/__msw_snapshots__/openai.chat/gpt-4o-2024-08-06 (streaming)/add paragraph and update selection_1_fc5837fa3ab53d1a511a8092a926d87d.json b/packages/xl-ai/src/api/formats/html-blocks/__snapshots__/htmlBlocks.test.ts/Combined/__msw_snapshots__/openai.chat/gpt-4o-2024-08-06 (streaming)/add paragraph and update selection_1_fc5837fa3ab53d1a511a8092a926d87d.json index 30e34a9697..1cecce8e43 100644 --- a/packages/xl-ai/src/api/formats/html-blocks/__snapshots__/htmlBlocks.test.ts/Combined/__msw_snapshots__/openai.chat/gpt-4o-2024-08-06 (streaming)/add paragraph and update selection_1_fc5837fa3ab53d1a511a8092a926d87d.json +++ b/packages/xl-ai/src/api/formats/html-blocks/__snapshots__/htmlBlocks.test.ts/Combined/__msw_snapshots__/openai.chat/gpt-4o-2024-08-06 (streaming)/add paragraph and update selection_1_fc5837fa3ab53d1a511a8092a926d87d.json @@ -9,7 +9,7 @@ "response": { "status": 200, "statusText": "", - "body": "data: {\"id\":\"chatcmpl-Bgn6GjNsXpXASG9XAN6gskbBn9lQF\",\"object\":\"chat.completion.chunk\",\"created\":1749538216,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_a288987b44\",\"choices\":[{\"index\":0,\"delta\":{\"role\":\"assistant\",\"content\":null,\"tool_calls\":[{\"index\":0,\"id\":\"call_bCiE7ngc3duPohiy54beC42Z\",\"type\":\"function\",\"function\":{\"name\":\"json\",\"arguments\":\"\"}}],\"refusal\":null},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-Bgn6GjNsXpXASG9XAN6gskbBn9lQF\",\"object\":\"chat.completion.chunk\",\"created\":1749538216,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_a288987b44\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"{\\\"\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-Bgn6GjNsXpXASG9XAN6gskbBn9lQF\",\"object\":\"chat.completion.chunk\",\"created\":1749538216,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_a288987b44\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"operations\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-Bgn6GjNsXpXASG9XAN6gskbBn9lQF\",\"object\":\"chat.completion.chunk\",\"created\":1749538216,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_a288987b44\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"\\\":[\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-Bgn6GjNsXpXASG9XAN6gskbBn9lQF\",\"object\":\"chat.completion.chunk\",\"created\":1749538216,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_a288987b44\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"{\\\"\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-Bgn6GjNsXpXASG9XAN6gskbBn9lQF\",\"object\":\"chat.completion.chunk\",\"created\":1749538216,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_a288987b44\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"type\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-Bgn6GjNsXpXASG9XAN6gskbBn9lQF\",\"object\":\"chat.completion.chunk\",\"created\":1749538216,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_a288987b44\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"\\\":\\\"\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-Bgn6GjNsXpXASG9XAN6gskbBn9lQF\",\"object\":\"chat.completion.chunk\",\"created\":1749538216,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_a288987b44\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"add\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-Bgn6GjNsXpXASG9XAN6gskbBn9lQF\",\"object\":\"chat.completion.chunk\",\"created\":1749538216,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_a288987b44\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"\\\",\\\"\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-Bgn6GjNsXpXASG9XAN6gskbBn9lQF\",\"object\":\"chat.completion.chunk\",\"created\":1749538216,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_a288987b44\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"reference\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-Bgn6GjNsXpXASG9XAN6gskbBn9lQF\",\"object\":\"chat.completion.chunk\",\"created\":1749538216,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_a288987b44\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"Id\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-Bgn6GjNsXpXASG9XAN6gskbBn9lQF\",\"object\":\"chat.completion.chunk\",\"created\":1749538216,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_a288987b44\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"\\\":\\\"\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-Bgn6GjNsXpXASG9XAN6gskbBn9lQF\",\"object\":\"chat.completion.chunk\",\"created\":1749538216,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_a288987b44\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"ref\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-Bgn6GjNsXpXASG9XAN6gskbBn9lQF\",\"object\":\"chat.completion.chunk\",\"created\":1749538216,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_a288987b44\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"2\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-Bgn6GjNsXpXASG9XAN6gskbBn9lQF\",\"object\":\"chat.completion.chunk\",\"created\":1749538216,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_a288987b44\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"$\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-Bgn6GjNsXpXASG9XAN6gskbBn9lQF\",\"object\":\"chat.completion.chunk\",\"created\":1749538216,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_a288987b44\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"\\\",\\\"\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-Bgn6GjNsXpXASG9XAN6gskbBn9lQF\",\"object\":\"chat.completion.chunk\",\"created\":1749538216,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_a288987b44\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"position\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-Bgn6GjNsXpXASG9XAN6gskbBn9lQF\",\"object\":\"chat.completion.chunk\",\"created\":1749538216,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_a288987b44\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"\\\":\\\"\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-Bgn6GjNsXpXASG9XAN6gskbBn9lQF\",\"object\":\"chat.completion.chunk\",\"created\":1749538216,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_a288987b44\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"before\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-Bgn6GjNsXpXASG9XAN6gskbBn9lQF\",\"object\":\"chat.completion.chunk\",\"created\":1749538216,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_a288987b44\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"\\\",\\\"\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-Bgn6GjNsXpXASG9XAN6gskbBn9lQF\",\"object\":\"chat.completion.chunk\",\"created\":1749538216,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_a288987b44\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"blocks\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-Bgn6GjNsXpXASG9XAN6gskbBn9lQF\",\"object\":\"chat.completion.chunk\",\"created\":1749538216,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_a288987b44\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"\\\":[\\\"\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-Bgn6GjNsXpXASG9XAN6gskbBn9lQF\",\"object\":\"chat.completion.chunk\",\"created\":1749538216,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_a288987b44\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"<\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-Bgn6GjNsXpXASG9XAN6gskbBn9lQF\",\"object\":\"chat.completion.chunk\",\"created\":1749538216,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_a288987b44\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"p\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-Bgn6GjNsXpXASG9XAN6gskbBn9lQF\",\"object\":\"chat.completion.chunk\",\"created\":1749538216,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_a288987b44\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\">You\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-Bgn6GjNsXpXASG9XAN6gskbBn9lQF\",\"object\":\"chat.completion.chunk\",\"created\":1749538216,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_a288987b44\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\" look\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-Bgn6GjNsXpXASG9XAN6gskbBn9lQF\",\"object\":\"chat.completion.chunk\",\"created\":1749538216,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_a288987b44\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\" great\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-Bgn6GjNsXpXASG9XAN6gskbBn9lQF\",\"object\":\"chat.completion.chunk\",\"created\":1749538216,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_a288987b44\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\" today\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-Bgn6GjNsXpXASG9XAN6gskbBn9lQF\",\"object\":\"chat.completion.chunk\",\"created\":1749538216,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_a288987b44\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"!\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-Bgn6GjNsXpXASG9XAN6gskbBn9lQF\",\"object\":\"chat.completion.chunk\",\"created\":1749538216,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_a288987b44\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"\\\"]\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-Bgn6GjNsXpXASG9XAN6gskbBn9lQF\",\"object\":\"chat.completion.chunk\",\"created\":1749538216,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_a288987b44\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"},{\\\"\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-Bgn6GjNsXpXASG9XAN6gskbBn9lQF\",\"object\":\"chat.completion.chunk\",\"created\":1749538216,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_a288987b44\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"type\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-Bgn6GjNsXpXASG9XAN6gskbBn9lQF\",\"object\":\"chat.completion.chunk\",\"created\":1749538216,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_a288987b44\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"\\\":\\\"\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-Bgn6GjNsXpXASG9XAN6gskbBn9lQF\",\"object\":\"chat.completion.chunk\",\"created\":1749538216,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_a288987b44\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"update\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-Bgn6GjNsXpXASG9XAN6gskbBn9lQF\",\"object\":\"chat.completion.chunk\",\"created\":1749538216,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_a288987b44\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"\\\",\\\"\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-Bgn6GjNsXpXASG9XAN6gskbBn9lQF\",\"object\":\"chat.completion.chunk\",\"created\":1749538216,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_a288987b44\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"id\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-Bgn6GjNsXpXASG9XAN6gskbBn9lQF\",\"object\":\"chat.completion.chunk\",\"created\":1749538216,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_a288987b44\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"\\\":\\\"\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-Bgn6GjNsXpXASG9XAN6gskbBn9lQF\",\"object\":\"chat.completion.chunk\",\"created\":1749538216,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_a288987b44\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"ref\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-Bgn6GjNsXpXASG9XAN6gskbBn9lQF\",\"object\":\"chat.completion.chunk\",\"created\":1749538216,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_a288987b44\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"2\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-Bgn6GjNsXpXASG9XAN6gskbBn9lQF\",\"object\":\"chat.completion.chunk\",\"created\":1749538216,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_a288987b44\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"$\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-Bgn6GjNsXpXASG9XAN6gskbBn9lQF\",\"object\":\"chat.completion.chunk\",\"created\":1749538216,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_a288987b44\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"\\\",\\\"\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-Bgn6GjNsXpXASG9XAN6gskbBn9lQF\",\"object\":\"chat.completion.chunk\",\"created\":1749538216,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_a288987b44\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"block\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-Bgn6GjNsXpXASG9XAN6gskbBn9lQF\",\"object\":\"chat.completion.chunk\",\"created\":1749538216,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_a288987b44\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"\\\":\\\"\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-Bgn6GjNsXpXASG9XAN6gskbBn9lQF\",\"object\":\"chat.completion.chunk\",\"created\":1749538216,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_a288987b44\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"<\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-Bgn6GjNsXpXASG9XAN6gskbBn9lQF\",\"object\":\"chat.completion.chunk\",\"created\":1749538216,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_a288987b44\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"p\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-Bgn6GjNsXpXASG9XAN6gskbBn9lQF\",\"object\":\"chat.completion.chunk\",\"created\":1749538216,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_a288987b44\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\">\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-Bgn6GjNsXpXASG9XAN6gskbBn9lQF\",\"object\":\"chat.completion.chunk\",\"created\":1749538216,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_a288987b44\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"Hallo\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-Bgn6GjNsXpXASG9XAN6gskbBn9lQF\",\"object\":\"chat.completion.chunk\",\"created\":1749538216,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_a288987b44\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-Bgn6GjNsXpXASG9XAN6gskbBn9lQF\",\"object\":\"chat.completion.chunk\",\"created\":1749538216,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_a288987b44\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"\\\"}\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-Bgn6GjNsXpXASG9XAN6gskbBn9lQF\",\"object\":\"chat.completion.chunk\",\"created\":1749538216,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_a288987b44\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"]}\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-Bgn6GjNsXpXASG9XAN6gskbBn9lQF\",\"object\":\"chat.completion.chunk\",\"created\":1749538216,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_a288987b44\",\"choices\":[{\"index\":0,\"delta\":{},\"logprobs\":null,\"finish_reason\":\"stop\"}]}\n\ndata: [DONE]\n\n", + "body": "data: {\"id\":\"chatcmpl-BhcHIrg4KoEtwph34DcI8WJSGVCWh\",\"object\":\"chat.completion.chunk\",\"created\":1749734944,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_a288987b44\",\"choices\":[{\"index\":0,\"delta\":{\"role\":\"assistant\",\"content\":null,\"tool_calls\":[{\"index\":0,\"id\":\"call_Kobbu7ZlwKWFLOQYYFs095gf\",\"type\":\"function\",\"function\":{\"name\":\"json\",\"arguments\":\"\"}}],\"refusal\":null},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BhcHIrg4KoEtwph34DcI8WJSGVCWh\",\"object\":\"chat.completion.chunk\",\"created\":1749734944,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_a288987b44\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"{\\\"\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BhcHIrg4KoEtwph34DcI8WJSGVCWh\",\"object\":\"chat.completion.chunk\",\"created\":1749734944,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_a288987b44\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"operations\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BhcHIrg4KoEtwph34DcI8WJSGVCWh\",\"object\":\"chat.completion.chunk\",\"created\":1749734944,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_a288987b44\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"\\\":[\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BhcHIrg4KoEtwph34DcI8WJSGVCWh\",\"object\":\"chat.completion.chunk\",\"created\":1749734944,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_a288987b44\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"{\\\"\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BhcHIrg4KoEtwph34DcI8WJSGVCWh\",\"object\":\"chat.completion.chunk\",\"created\":1749734944,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_a288987b44\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"type\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BhcHIrg4KoEtwph34DcI8WJSGVCWh\",\"object\":\"chat.completion.chunk\",\"created\":1749734944,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_a288987b44\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"\\\":\\\"\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BhcHIrg4KoEtwph34DcI8WJSGVCWh\",\"object\":\"chat.completion.chunk\",\"created\":1749734944,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_a288987b44\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"add\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BhcHIrg4KoEtwph34DcI8WJSGVCWh\",\"object\":\"chat.completion.chunk\",\"created\":1749734944,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_a288987b44\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"\\\",\\\"\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BhcHIrg4KoEtwph34DcI8WJSGVCWh\",\"object\":\"chat.completion.chunk\",\"created\":1749734944,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_a288987b44\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"reference\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BhcHIrg4KoEtwph34DcI8WJSGVCWh\",\"object\":\"chat.completion.chunk\",\"created\":1749734944,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_a288987b44\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"Id\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BhcHIrg4KoEtwph34DcI8WJSGVCWh\",\"object\":\"chat.completion.chunk\",\"created\":1749734944,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_a288987b44\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"\\\":\\\"\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BhcHIrg4KoEtwph34DcI8WJSGVCWh\",\"object\":\"chat.completion.chunk\",\"created\":1749734944,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_a288987b44\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"ref\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BhcHIrg4KoEtwph34DcI8WJSGVCWh\",\"object\":\"chat.completion.chunk\",\"created\":1749734944,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_a288987b44\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"2\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BhcHIrg4KoEtwph34DcI8WJSGVCWh\",\"object\":\"chat.completion.chunk\",\"created\":1749734944,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_a288987b44\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"$\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BhcHIrg4KoEtwph34DcI8WJSGVCWh\",\"object\":\"chat.completion.chunk\",\"created\":1749734944,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_a288987b44\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"\\\",\\\"\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BhcHIrg4KoEtwph34DcI8WJSGVCWh\",\"object\":\"chat.completion.chunk\",\"created\":1749734944,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_a288987b44\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"position\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BhcHIrg4KoEtwph34DcI8WJSGVCWh\",\"object\":\"chat.completion.chunk\",\"created\":1749734944,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_a288987b44\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"\\\":\\\"\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BhcHIrg4KoEtwph34DcI8WJSGVCWh\",\"object\":\"chat.completion.chunk\",\"created\":1749734944,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_a288987b44\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"before\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BhcHIrg4KoEtwph34DcI8WJSGVCWh\",\"object\":\"chat.completion.chunk\",\"created\":1749734944,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_a288987b44\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"\\\",\\\"\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BhcHIrg4KoEtwph34DcI8WJSGVCWh\",\"object\":\"chat.completion.chunk\",\"created\":1749734944,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_a288987b44\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"blocks\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BhcHIrg4KoEtwph34DcI8WJSGVCWh\",\"object\":\"chat.completion.chunk\",\"created\":1749734944,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_a288987b44\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"\\\":[\\\"\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BhcHIrg4KoEtwph34DcI8WJSGVCWh\",\"object\":\"chat.completion.chunk\",\"created\":1749734944,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_a288987b44\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"<\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BhcHIrg4KoEtwph34DcI8WJSGVCWh\",\"object\":\"chat.completion.chunk\",\"created\":1749734944,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_a288987b44\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"p\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BhcHIrg4KoEtwph34DcI8WJSGVCWh\",\"object\":\"chat.completion.chunk\",\"created\":1749734944,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_a288987b44\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\">You\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BhcHIrg4KoEtwph34DcI8WJSGVCWh\",\"object\":\"chat.completion.chunk\",\"created\":1749734944,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_a288987b44\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\" look\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BhcHIrg4KoEtwph34DcI8WJSGVCWh\",\"object\":\"chat.completion.chunk\",\"created\":1749734944,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_a288987b44\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\" great\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BhcHIrg4KoEtwph34DcI8WJSGVCWh\",\"object\":\"chat.completion.chunk\",\"created\":1749734944,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_a288987b44\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\" today\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BhcHIrg4KoEtwph34DcI8WJSGVCWh\",\"object\":\"chat.completion.chunk\",\"created\":1749734944,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_a288987b44\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"!\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BhcHIrg4KoEtwph34DcI8WJSGVCWh\",\"object\":\"chat.completion.chunk\",\"created\":1749734944,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_a288987b44\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"\\\"]\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BhcHIrg4KoEtwph34DcI8WJSGVCWh\",\"object\":\"chat.completion.chunk\",\"created\":1749734944,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_a288987b44\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"},{\\\"\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BhcHIrg4KoEtwph34DcI8WJSGVCWh\",\"object\":\"chat.completion.chunk\",\"created\":1749734944,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_a288987b44\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"type\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BhcHIrg4KoEtwph34DcI8WJSGVCWh\",\"object\":\"chat.completion.chunk\",\"created\":1749734944,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_a288987b44\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"\\\":\\\"\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BhcHIrg4KoEtwph34DcI8WJSGVCWh\",\"object\":\"chat.completion.chunk\",\"created\":1749734944,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_a288987b44\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"update\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BhcHIrg4KoEtwph34DcI8WJSGVCWh\",\"object\":\"chat.completion.chunk\",\"created\":1749734944,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_a288987b44\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"\\\",\\\"\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BhcHIrg4KoEtwph34DcI8WJSGVCWh\",\"object\":\"chat.completion.chunk\",\"created\":1749734944,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_a288987b44\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"id\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BhcHIrg4KoEtwph34DcI8WJSGVCWh\",\"object\":\"chat.completion.chunk\",\"created\":1749734944,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_a288987b44\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"\\\":\\\"\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BhcHIrg4KoEtwph34DcI8WJSGVCWh\",\"object\":\"chat.completion.chunk\",\"created\":1749734944,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_a288987b44\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"ref\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BhcHIrg4KoEtwph34DcI8WJSGVCWh\",\"object\":\"chat.completion.chunk\",\"created\":1749734944,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_a288987b44\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"2\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BhcHIrg4KoEtwph34DcI8WJSGVCWh\",\"object\":\"chat.completion.chunk\",\"created\":1749734944,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_a288987b44\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"$\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BhcHIrg4KoEtwph34DcI8WJSGVCWh\",\"object\":\"chat.completion.chunk\",\"created\":1749734944,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_a288987b44\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"\\\",\\\"\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BhcHIrg4KoEtwph34DcI8WJSGVCWh\",\"object\":\"chat.completion.chunk\",\"created\":1749734944,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_a288987b44\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"block\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BhcHIrg4KoEtwph34DcI8WJSGVCWh\",\"object\":\"chat.completion.chunk\",\"created\":1749734944,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_a288987b44\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"\\\":\\\"\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BhcHIrg4KoEtwph34DcI8WJSGVCWh\",\"object\":\"chat.completion.chunk\",\"created\":1749734944,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_a288987b44\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"<\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BhcHIrg4KoEtwph34DcI8WJSGVCWh\",\"object\":\"chat.completion.chunk\",\"created\":1749734944,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_a288987b44\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"p\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BhcHIrg4KoEtwph34DcI8WJSGVCWh\",\"object\":\"chat.completion.chunk\",\"created\":1749734944,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_a288987b44\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\">\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BhcHIrg4KoEtwph34DcI8WJSGVCWh\",\"object\":\"chat.completion.chunk\",\"created\":1749734944,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_a288987b44\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"Hallo\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BhcHIrg4KoEtwph34DcI8WJSGVCWh\",\"object\":\"chat.completion.chunk\",\"created\":1749734944,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_a288987b44\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BhcHIrg4KoEtwph34DcI8WJSGVCWh\",\"object\":\"chat.completion.chunk\",\"created\":1749734944,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_a288987b44\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"\\\"}\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BhcHIrg4KoEtwph34DcI8WJSGVCWh\",\"object\":\"chat.completion.chunk\",\"created\":1749734944,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_a288987b44\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"]}\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BhcHIrg4KoEtwph34DcI8WJSGVCWh\",\"object\":\"chat.completion.chunk\",\"created\":1749734944,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_a288987b44\",\"choices\":[{\"index\":0,\"delta\":{},\"logprobs\":null,\"finish_reason\":\"stop\"}]}\n\ndata: [DONE]\n\n", "headers": [] } } \ No newline at end of file diff --git a/packages/xl-ai/src/api/formats/html-blocks/__snapshots__/htmlBlocks.test.ts/Delete/__msw_snapshots__/anthropic.messages/claude-3-7-sonnet-latest (non-streaming)/delete first block_1_a4ec61146ba0a517742770cb5843201f.json b/packages/xl-ai/src/api/formats/html-blocks/__snapshots__/htmlBlocks.test.ts/Delete/__msw_snapshots__/anthropic.messages/claude-3-7-sonnet-latest (non-streaming)/delete first block_1_a4ec61146ba0a517742770cb5843201f.json index 4b707c2519..26858312be 100644 --- a/packages/xl-ai/src/api/formats/html-blocks/__snapshots__/htmlBlocks.test.ts/Delete/__msw_snapshots__/anthropic.messages/claude-3-7-sonnet-latest (non-streaming)/delete first block_1_a4ec61146ba0a517742770cb5843201f.json +++ b/packages/xl-ai/src/api/formats/html-blocks/__snapshots__/htmlBlocks.test.ts/Delete/__msw_snapshots__/anthropic.messages/claude-3-7-sonnet-latest (non-streaming)/delete first block_1_a4ec61146ba0a517742770cb5843201f.json @@ -9,7 +9,7 @@ "response": { "status": 200, "statusText": "", - "body": "{\"id\":\"msg_014YfK4xdNTjHQ3TV3htgMSV\",\"type\":\"message\",\"role\":\"assistant\",\"model\":\"claude-3-7-sonnet-20250219\",\"content\":[{\"type\":\"tool_use\",\"id\":\"toolu_019hw5RwsEekKx8r2aN3UfJJ\",\"name\":\"json\",\"input\":{\"operations\":[{\"type\":\"delete\",\"id\":\"ref1$\"}]}}],\"stop_reason\":\"tool_use\",\"stop_sequence\":null,\"usage\":{\"input_tokens\":1231,\"cache_creation_input_tokens\":0,\"cache_read_input_tokens\":0,\"output_tokens\":59,\"service_tier\":\"standard\"}}", + "body": "{\"id\":\"msg_01SjFaJWfvZLCMvS9DRUfauD\",\"type\":\"message\",\"role\":\"assistant\",\"model\":\"claude-3-7-sonnet-20250219\",\"content\":[{\"type\":\"tool_use\",\"id\":\"toolu_01XrGGTcuKsJqcWuQAJLCrjF\",\"name\":\"json\",\"input\":{\"operations\":[{\"type\":\"delete\",\"id\":\"ref1$\"}]}}],\"stop_reason\":\"tool_use\",\"stop_sequence\":null,\"usage\":{\"input_tokens\":1231,\"cache_creation_input_tokens\":0,\"cache_read_input_tokens\":0,\"output_tokens\":59,\"service_tier\":\"standard\"}}", "headers": [] } } \ No newline at end of file diff --git a/packages/xl-ai/src/api/formats/html-blocks/__snapshots__/htmlBlocks.test.ts/Delete/__msw_snapshots__/groq.chat/llama-3.3-70b-versatile (non-streaming)/delete first block_1_ee24300ba2c8986f54c02b0d2aec9691.json b/packages/xl-ai/src/api/formats/html-blocks/__snapshots__/htmlBlocks.test.ts/Delete/__msw_snapshots__/groq.chat/llama-3.3-70b-versatile (non-streaming)/delete first block_1_ee24300ba2c8986f54c02b0d2aec9691.json index fa0d1a2366..8a1e6ea9f0 100644 --- a/packages/xl-ai/src/api/formats/html-blocks/__snapshots__/htmlBlocks.test.ts/Delete/__msw_snapshots__/groq.chat/llama-3.3-70b-versatile (non-streaming)/delete first block_1_ee24300ba2c8986f54c02b0d2aec9691.json +++ b/packages/xl-ai/src/api/formats/html-blocks/__snapshots__/htmlBlocks.test.ts/Delete/__msw_snapshots__/groq.chat/llama-3.3-70b-versatile (non-streaming)/delete first block_1_ee24300ba2c8986f54c02b0d2aec9691.json @@ -9,7 +9,7 @@ "response": { "status": 200, "statusText": "", - "body": "{\"id\":\"chatcmpl-39389d13-bad8-418a-826e-5c84c7af5a3e\",\"object\":\"chat.completion\",\"created\":1749541792,\"model\":\"llama-3.3-70b-versatile\",\"choices\":[{\"index\":0,\"message\":{\"role\":\"assistant\",\"tool_calls\":[{\"id\":\"call_v2z7\",\"type\":\"function\",\"function\":{\"name\":\"json\",\"arguments\":\"{\\\"operations\\\":[{\\\"id\\\":\\\"ref1$\\\",\\\"type\\\":\\\"delete\\\"}]}\"}}]},\"logprobs\":null,\"finish_reason\":\"tool_calls\"}],\"usage\":{\"queue_time\":0.09433240999999999,\"prompt_tokens\":930,\"prompt_time\":0.0680429,\"completion_tokens\":21,\"completion_time\":0.076363636,\"total_tokens\":951,\"total_time\":0.144406536},\"usage_breakdown\":{\"models\":null},\"system_fingerprint\":\"fp_2ddfbb0da0\",\"x_groq\":{\"id\":\"req_01jxcd2b19fs9t2es43y09cbkm\"}}\n", + "body": "{\"id\":\"chatcmpl-754c6712-6c24-476f-8527-66acac333674\",\"object\":\"chat.completion\",\"created\":1749735020,\"model\":\"llama-3.3-70b-versatile\",\"choices\":[{\"index\":0,\"message\":{\"role\":\"assistant\",\"tool_calls\":[{\"id\":\"n5b2r9r2n\",\"type\":\"function\",\"function\":{\"name\":\"json\",\"arguments\":\"{\\\"operations\\\":[{\\\"id\\\":\\\"ref1$\\\",\\\"type\\\":\\\"delete\\\"}]}\"}}]},\"logprobs\":null,\"finish_reason\":\"tool_calls\"}],\"usage\":{\"queue_time\":0.09174304000000001,\"prompt_tokens\":917,\"prompt_time\":0.066455909,\"completion_tokens\":17,\"completion_time\":0.062652816,\"total_tokens\":934,\"total_time\":0.129108725},\"usage_breakdown\":null,\"system_fingerprint\":\"fp_3f3b593e33\",\"x_groq\":{\"id\":\"req_01jxj5b5wme8kvg34zv9vty9t8\"}}\n", "headers": [] } } \ No newline at end of file diff --git a/packages/xl-ai/src/api/formats/html-blocks/__snapshots__/htmlBlocks.test.ts/Delete/__msw_snapshots__/groq.chat/llama-3.3-70b-versatile (streaming)/delete first block_1_21ad45e4791e6ce60e52c20228c507ff.json b/packages/xl-ai/src/api/formats/html-blocks/__snapshots__/htmlBlocks.test.ts/Delete/__msw_snapshots__/groq.chat/llama-3.3-70b-versatile (streaming)/delete first block_1_21ad45e4791e6ce60e52c20228c507ff.json index d4ee1c61e2..f65ea536f5 100644 --- a/packages/xl-ai/src/api/formats/html-blocks/__snapshots__/htmlBlocks.test.ts/Delete/__msw_snapshots__/groq.chat/llama-3.3-70b-versatile (streaming)/delete first block_1_21ad45e4791e6ce60e52c20228c507ff.json +++ b/packages/xl-ai/src/api/formats/html-blocks/__snapshots__/htmlBlocks.test.ts/Delete/__msw_snapshots__/groq.chat/llama-3.3-70b-versatile (streaming)/delete first block_1_21ad45e4791e6ce60e52c20228c507ff.json @@ -9,7 +9,7 @@ "response": { "status": 200, "statusText": "", - "body": "data: {\"id\":\"chatcmpl-4fbf35a6-a4df-42f3-b311-0a9f2d71d2d2\",\"object\":\"chat.completion.chunk\",\"created\":1749541783,\"model\":\"llama-3.3-70b-versatile\",\"system_fingerprint\":\"fp_2ddfbb0da0\",\"choices\":[{\"index\":0,\"delta\":{\"role\":\"assistant\",\"content\":null},\"logprobs\":null,\"finish_reason\":null}],\"x_groq\":{\"id\":\"req_01jxcd21vpfs5tbkhyk63x3pcb\"}}\n\ndata: {\"id\":\"chatcmpl-4fbf35a6-a4df-42f3-b311-0a9f2d71d2d2\",\"object\":\"chat.completion.chunk\",\"created\":1749541783,\"model\":\"llama-3.3-70b-versatile\",\"system_fingerprint\":\"fp_2ddfbb0da0\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"id\":\"call_nr5c\",\"type\":\"function\",\"function\":{\"name\":\"json\",\"arguments\":\"{\\\"operations\\\":[{\\\"id\\\":\\\"ref1$\\\",\\\"type\\\":\\\"delete\\\"}]}\"},\"index\":0}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-4fbf35a6-a4df-42f3-b311-0a9f2d71d2d2\",\"object\":\"chat.completion.chunk\",\"created\":1749541783,\"model\":\"llama-3.3-70b-versatile\",\"system_fingerprint\":\"fp_2ddfbb0da0\",\"choices\":[{\"index\":0,\"delta\":{},\"logprobs\":null,\"finish_reason\":\"tool_calls\"}],\"x_groq\":{\"id\":\"req_01jxcd21vpfs5tbkhyk63x3pcb\",\"usage\":{\"queue_time\":0.101268822,\"prompt_tokens\":930,\"prompt_time\":0.06096997,\"completion_tokens\":21,\"completion_time\":0.076363636,\"total_tokens\":951,\"total_time\":0.137333606}}}\n\ndata: [DONE]\n\n", + "body": "data: {\"id\":\"chatcmpl-a89b0207-c3a0-4bf7-9405-f766a88e1c0e\",\"object\":\"chat.completion.chunk\",\"created\":1749735010,\"model\":\"llama-3.3-70b-versatile\",\"system_fingerprint\":\"fp_2ddfbb0da0\",\"choices\":[{\"index\":0,\"delta\":{\"role\":\"assistant\",\"content\":null},\"logprobs\":null,\"finish_reason\":null}],\"x_groq\":{\"id\":\"req_01jxj5aw5ye88aphk95cevx8vk\"}}\n\ndata: {\"id\":\"chatcmpl-a89b0207-c3a0-4bf7-9405-f766a88e1c0e\",\"object\":\"chat.completion.chunk\",\"created\":1749735010,\"model\":\"llama-3.3-70b-versatile\",\"system_fingerprint\":\"fp_2ddfbb0da0\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"id\":\"habjvxvnm\",\"type\":\"function\",\"function\":{\"name\":\"json\",\"arguments\":\"{\\\"operations\\\":[{\\\"id\\\":\\\"ref1$\\\",\\\"type\\\":\\\"delete\\\"}]}\"},\"index\":0}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-a89b0207-c3a0-4bf7-9405-f766a88e1c0e\",\"object\":\"chat.completion.chunk\",\"created\":1749735010,\"model\":\"llama-3.3-70b-versatile\",\"system_fingerprint\":\"fp_2ddfbb0da0\",\"choices\":[{\"index\":0,\"delta\":{},\"logprobs\":null,\"finish_reason\":\"tool_calls\"}],\"x_groq\":{\"id\":\"req_01jxj5aw5ye88aphk95cevx8vk\",\"usage\":{\"queue_time\":0.091916833,\"prompt_tokens\":917,\"prompt_time\":0.097275114,\"completion_tokens\":17,\"completion_time\":0.071132729,\"total_tokens\":934,\"total_time\":0.168407843}}}\n\ndata: [DONE]\n\n", "headers": [] } } \ No newline at end of file diff --git a/packages/xl-ai/src/api/formats/html-blocks/__snapshots__/htmlBlocks.test.ts/Delete/__msw_snapshots__/openai.chat/gpt-4o-2024-08-06 (non-streaming)/delete first block_1_002ed2fb069e97008c626fe8c2d43637.json b/packages/xl-ai/src/api/formats/html-blocks/__snapshots__/htmlBlocks.test.ts/Delete/__msw_snapshots__/openai.chat/gpt-4o-2024-08-06 (non-streaming)/delete first block_1_002ed2fb069e97008c626fe8c2d43637.json index 969a2ec852..5bcb711e73 100644 --- a/packages/xl-ai/src/api/formats/html-blocks/__snapshots__/htmlBlocks.test.ts/Delete/__msw_snapshots__/openai.chat/gpt-4o-2024-08-06 (non-streaming)/delete first block_1_002ed2fb069e97008c626fe8c2d43637.json +++ b/packages/xl-ai/src/api/formats/html-blocks/__snapshots__/htmlBlocks.test.ts/Delete/__msw_snapshots__/openai.chat/gpt-4o-2024-08-06 (non-streaming)/delete first block_1_002ed2fb069e97008c626fe8c2d43637.json @@ -9,7 +9,7 @@ "response": { "status": 200, "statusText": "", - "body": "{\n \"id\": \"chatcmpl-Bgo1cxJuf78DBmDIuYy4j1zh8ygio\",\n \"object\": \"chat.completion\",\n \"created\": 1749541772,\n \"model\": \"gpt-4o-2024-08-06\",\n \"choices\": [\n {\n \"index\": 0,\n \"message\": {\n \"role\": \"assistant\",\n \"content\": null,\n \"tool_calls\": [\n {\n \"id\": \"call_lzIwIzZssspTMJx356SWwO9i\",\n \"type\": \"function\",\n \"function\": {\n \"name\": \"json\",\n \"arguments\": \"{\\\"operations\\\":[{\\\"type\\\":\\\"delete\\\",\\\"id\\\":\\\"ref1$\\\"}]}\"\n }\n }\n ],\n \"refusal\": null,\n \"annotations\": []\n },\n \"logprobs\": null,\n \"finish_reason\": \"stop\"\n }\n ],\n \"usage\": {\n \"prompt_tokens\": 639,\n \"completion_tokens\": 15,\n \"total_tokens\": 654,\n \"prompt_tokens_details\": {\n \"cached_tokens\": 0,\n \"audio_tokens\": 0\n },\n \"completion_tokens_details\": {\n \"reasoning_tokens\": 0,\n \"audio_tokens\": 0,\n \"accepted_prediction_tokens\": 0,\n \"rejected_prediction_tokens\": 0\n }\n },\n \"service_tier\": \"default\",\n \"system_fingerprint\": \"fp_07871e2ad8\"\n}\n", + "body": "{\n \"id\": \"chatcmpl-BhcI3sMnTkzPLx2YpZZwDCdbjMBrs\",\n \"object\": \"chat.completion\",\n \"created\": 1749734991,\n \"model\": \"gpt-4o-2024-08-06\",\n \"choices\": [\n {\n \"index\": 0,\n \"message\": {\n \"role\": \"assistant\",\n \"content\": null,\n \"tool_calls\": [\n {\n \"id\": \"call_Qoi0xLvOY9avWlA7uhSLCG3X\",\n \"type\": \"function\",\n \"function\": {\n \"name\": \"json\",\n \"arguments\": \"{\\\"operations\\\":[{\\\"type\\\":\\\"delete\\\",\\\"id\\\":\\\"ref1$\\\"}]}\"\n }\n }\n ],\n \"refusal\": null,\n \"annotations\": []\n },\n \"logprobs\": null,\n \"finish_reason\": \"stop\"\n }\n ],\n \"usage\": {\n \"prompt_tokens\": 639,\n \"completion_tokens\": 15,\n \"total_tokens\": 654,\n \"prompt_tokens_details\": {\n \"cached_tokens\": 0,\n \"audio_tokens\": 0\n },\n \"completion_tokens_details\": {\n \"reasoning_tokens\": 0,\n \"audio_tokens\": 0,\n \"accepted_prediction_tokens\": 0,\n \"rejected_prediction_tokens\": 0\n }\n },\n \"service_tier\": \"default\",\n \"system_fingerprint\": \"fp_07871e2ad8\"\n}\n", "headers": [] } } \ No newline at end of file diff --git a/packages/xl-ai/src/api/formats/html-blocks/__snapshots__/htmlBlocks.test.ts/Delete/__msw_snapshots__/openai.chat/gpt-4o-2024-08-06 (streaming)/delete first block_1_af53bf5e53a86669deaae43b9ab27c67.json b/packages/xl-ai/src/api/formats/html-blocks/__snapshots__/htmlBlocks.test.ts/Delete/__msw_snapshots__/openai.chat/gpt-4o-2024-08-06 (streaming)/delete first block_1_af53bf5e53a86669deaae43b9ab27c67.json index a309ce89f8..dbf813cba8 100644 --- a/packages/xl-ai/src/api/formats/html-blocks/__snapshots__/htmlBlocks.test.ts/Delete/__msw_snapshots__/openai.chat/gpt-4o-2024-08-06 (streaming)/delete first block_1_af53bf5e53a86669deaae43b9ab27c67.json +++ b/packages/xl-ai/src/api/formats/html-blocks/__snapshots__/htmlBlocks.test.ts/Delete/__msw_snapshots__/openai.chat/gpt-4o-2024-08-06 (streaming)/delete first block_1_af53bf5e53a86669deaae43b9ab27c67.json @@ -9,7 +9,7 @@ "response": { "status": 200, "statusText": "", - "body": "data: {\"id\":\"chatcmpl-Bgn6Da0wNHJWGXSSb8rCNBDfwvkBm\",\"object\":\"chat.completion.chunk\",\"created\":1749538213,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_07871e2ad8\",\"choices\":[{\"index\":0,\"delta\":{\"role\":\"assistant\",\"content\":null,\"tool_calls\":[{\"index\":0,\"id\":\"call_f1yGGxcUKWlzoS7Yscz5SjfB\",\"type\":\"function\",\"function\":{\"name\":\"json\",\"arguments\":\"\"}}],\"refusal\":null},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-Bgn6Da0wNHJWGXSSb8rCNBDfwvkBm\",\"object\":\"chat.completion.chunk\",\"created\":1749538213,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_07871e2ad8\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"{\\\"\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-Bgn6Da0wNHJWGXSSb8rCNBDfwvkBm\",\"object\":\"chat.completion.chunk\",\"created\":1749538213,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_07871e2ad8\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"operations\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-Bgn6Da0wNHJWGXSSb8rCNBDfwvkBm\",\"object\":\"chat.completion.chunk\",\"created\":1749538213,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_07871e2ad8\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"\\\":[\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-Bgn6Da0wNHJWGXSSb8rCNBDfwvkBm\",\"object\":\"chat.completion.chunk\",\"created\":1749538213,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_07871e2ad8\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"{\\\"\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-Bgn6Da0wNHJWGXSSb8rCNBDfwvkBm\",\"object\":\"chat.completion.chunk\",\"created\":1749538213,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_07871e2ad8\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"type\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-Bgn6Da0wNHJWGXSSb8rCNBDfwvkBm\",\"object\":\"chat.completion.chunk\",\"created\":1749538213,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_07871e2ad8\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"\\\":\\\"\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-Bgn6Da0wNHJWGXSSb8rCNBDfwvkBm\",\"object\":\"chat.completion.chunk\",\"created\":1749538213,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_07871e2ad8\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"delete\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-Bgn6Da0wNHJWGXSSb8rCNBDfwvkBm\",\"object\":\"chat.completion.chunk\",\"created\":1749538213,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_07871e2ad8\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"\\\",\\\"\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-Bgn6Da0wNHJWGXSSb8rCNBDfwvkBm\",\"object\":\"chat.completion.chunk\",\"created\":1749538213,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_07871e2ad8\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"id\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-Bgn6Da0wNHJWGXSSb8rCNBDfwvkBm\",\"object\":\"chat.completion.chunk\",\"created\":1749538213,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_07871e2ad8\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"\\\":\\\"\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-Bgn6Da0wNHJWGXSSb8rCNBDfwvkBm\",\"object\":\"chat.completion.chunk\",\"created\":1749538213,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_07871e2ad8\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"ref\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-Bgn6Da0wNHJWGXSSb8rCNBDfwvkBm\",\"object\":\"chat.completion.chunk\",\"created\":1749538213,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_07871e2ad8\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"1\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-Bgn6Da0wNHJWGXSSb8rCNBDfwvkBm\",\"object\":\"chat.completion.chunk\",\"created\":1749538213,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_07871e2ad8\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"$\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-Bgn6Da0wNHJWGXSSb8rCNBDfwvkBm\",\"object\":\"chat.completion.chunk\",\"created\":1749538213,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_07871e2ad8\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"\\\"}\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-Bgn6Da0wNHJWGXSSb8rCNBDfwvkBm\",\"object\":\"chat.completion.chunk\",\"created\":1749538213,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_07871e2ad8\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"]}\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-Bgn6Da0wNHJWGXSSb8rCNBDfwvkBm\",\"object\":\"chat.completion.chunk\",\"created\":1749538213,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_07871e2ad8\",\"choices\":[{\"index\":0,\"delta\":{},\"logprobs\":null,\"finish_reason\":\"stop\"}]}\n\ndata: [DONE]\n\n", + "body": "data: {\"id\":\"chatcmpl-BhcHGgVcZeJ250C4loyeBsxGFaLnY\",\"object\":\"chat.completion.chunk\",\"created\":1749734942,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_07871e2ad8\",\"choices\":[{\"index\":0,\"delta\":{\"role\":\"assistant\",\"content\":null,\"tool_calls\":[{\"index\":0,\"id\":\"call_0zSWbxFl0OJDmIl2BHOMN81Q\",\"type\":\"function\",\"function\":{\"name\":\"json\",\"arguments\":\"\"}}],\"refusal\":null},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BhcHGgVcZeJ250C4loyeBsxGFaLnY\",\"object\":\"chat.completion.chunk\",\"created\":1749734942,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_07871e2ad8\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"{\\\"\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BhcHGgVcZeJ250C4loyeBsxGFaLnY\",\"object\":\"chat.completion.chunk\",\"created\":1749734942,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_07871e2ad8\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"operations\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BhcHGgVcZeJ250C4loyeBsxGFaLnY\",\"object\":\"chat.completion.chunk\",\"created\":1749734942,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_07871e2ad8\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"\\\":[\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BhcHGgVcZeJ250C4loyeBsxGFaLnY\",\"object\":\"chat.completion.chunk\",\"created\":1749734942,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_07871e2ad8\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"{\\\"\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BhcHGgVcZeJ250C4loyeBsxGFaLnY\",\"object\":\"chat.completion.chunk\",\"created\":1749734942,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_07871e2ad8\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"type\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BhcHGgVcZeJ250C4loyeBsxGFaLnY\",\"object\":\"chat.completion.chunk\",\"created\":1749734942,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_07871e2ad8\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"\\\":\\\"\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BhcHGgVcZeJ250C4loyeBsxGFaLnY\",\"object\":\"chat.completion.chunk\",\"created\":1749734942,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_07871e2ad8\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"delete\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BhcHGgVcZeJ250C4loyeBsxGFaLnY\",\"object\":\"chat.completion.chunk\",\"created\":1749734942,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_07871e2ad8\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"\\\",\\\"\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BhcHGgVcZeJ250C4loyeBsxGFaLnY\",\"object\":\"chat.completion.chunk\",\"created\":1749734942,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_07871e2ad8\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"id\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BhcHGgVcZeJ250C4loyeBsxGFaLnY\",\"object\":\"chat.completion.chunk\",\"created\":1749734942,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_07871e2ad8\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"\\\":\\\"\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BhcHGgVcZeJ250C4loyeBsxGFaLnY\",\"object\":\"chat.completion.chunk\",\"created\":1749734942,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_07871e2ad8\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"ref\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BhcHGgVcZeJ250C4loyeBsxGFaLnY\",\"object\":\"chat.completion.chunk\",\"created\":1749734942,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_07871e2ad8\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"1\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BhcHGgVcZeJ250C4loyeBsxGFaLnY\",\"object\":\"chat.completion.chunk\",\"created\":1749734942,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_07871e2ad8\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"$\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BhcHGgVcZeJ250C4loyeBsxGFaLnY\",\"object\":\"chat.completion.chunk\",\"created\":1749734942,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_07871e2ad8\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"\\\"}\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BhcHGgVcZeJ250C4loyeBsxGFaLnY\",\"object\":\"chat.completion.chunk\",\"created\":1749734942,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_07871e2ad8\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"]}\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BhcHGgVcZeJ250C4loyeBsxGFaLnY\",\"object\":\"chat.completion.chunk\",\"created\":1749734942,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_07871e2ad8\",\"choices\":[{\"index\":0,\"delta\":{},\"logprobs\":null,\"finish_reason\":\"stop\"}]}\n\ndata: [DONE]\n\n", "headers": [] } } \ No newline at end of file diff --git a/packages/xl-ai/src/api/formats/html-blocks/__snapshots__/htmlBlocks.test.ts/Update/__msw_snapshots__/anthropic.messages/claude-3-7-sonnet-latest (non-streaming)/drop mark and link and change text within mark_1_a97a8a61e45a5cfa1f37771aefbf06ba.json b/packages/xl-ai/src/api/formats/html-blocks/__snapshots__/htmlBlocks.test.ts/Update/__msw_snapshots__/anthropic.messages/claude-3-7-sonnet-latest (non-streaming)/drop mark and link and change text within mark_1_a97a8a61e45a5cfa1f37771aefbf06ba.json index 1f95fc673d..e953dd7d73 100644 --- a/packages/xl-ai/src/api/formats/html-blocks/__snapshots__/htmlBlocks.test.ts/Update/__msw_snapshots__/anthropic.messages/claude-3-7-sonnet-latest (non-streaming)/drop mark and link and change text within mark_1_a97a8a61e45a5cfa1f37771aefbf06ba.json +++ b/packages/xl-ai/src/api/formats/html-blocks/__snapshots__/htmlBlocks.test.ts/Update/__msw_snapshots__/anthropic.messages/claude-3-7-sonnet-latest (non-streaming)/drop mark and link and change text within mark_1_a97a8a61e45a5cfa1f37771aefbf06ba.json @@ -9,7 +9,7 @@ "response": { "status": 200, "statusText": "", - "body": "{\"id\":\"msg_013VKuSEzWNc7UeLtGECUSXa\",\"type\":\"message\",\"role\":\"assistant\",\"model\":\"claude-3-7-sonnet-20250219\",\"content\":[{\"type\":\"tool_use\",\"id\":\"toolu_01AYXCdCEDybPdtqMXQySVSx\",\"name\":\"json\",\"input\":{\"operations\":[{\"type\":\"update\",\"id\":\"ref3$\",\"block\":\"

Hi, world! Bold the text. Link.

\"}]}}],\"stop_reason\":\"tool_use\",\"stop_sequence\":null,\"usage\":{\"input_tokens\":1251,\"cache_creation_input_tokens\":0,\"cache_read_input_tokens\":0,\"output_tokens\":79,\"service_tier\":\"standard\"}}", + "body": "{\"id\":\"msg_01N8ZPuPYB7uEm8M4AWSjcqe\",\"type\":\"message\",\"role\":\"assistant\",\"model\":\"claude-3-7-sonnet-20250219\",\"content\":[{\"type\":\"tool_use\",\"id\":\"toolu_01KtKWJMCdgNguaYxd28mxVE\",\"name\":\"json\",\"input\":{\"operations\":[{\"type\":\"update\",\"id\":\"ref3$\",\"block\":\"

Hi, world! Bold the text. Link.

\"}]}}],\"stop_reason\":\"tool_use\",\"stop_sequence\":null,\"usage\":{\"input_tokens\":1251,\"cache_creation_input_tokens\":0,\"cache_read_input_tokens\":0,\"output_tokens\":79,\"service_tier\":\"standard\"}}", "headers": [] } } \ No newline at end of file diff --git a/packages/xl-ai/src/api/formats/html-blocks/__snapshots__/htmlBlocks.test.ts/Update/__msw_snapshots__/anthropic.messages/claude-3-7-sonnet-latest (non-streaming)/drop mark and link_1_80d39d8c2f69d28a6aec0dee64eb7b4f.json b/packages/xl-ai/src/api/formats/html-blocks/__snapshots__/htmlBlocks.test.ts/Update/__msw_snapshots__/anthropic.messages/claude-3-7-sonnet-latest (non-streaming)/drop mark and link_1_80d39d8c2f69d28a6aec0dee64eb7b4f.json index 305ee84bbf..c09ad59899 100644 --- a/packages/xl-ai/src/api/formats/html-blocks/__snapshots__/htmlBlocks.test.ts/Update/__msw_snapshots__/anthropic.messages/claude-3-7-sonnet-latest (non-streaming)/drop mark and link_1_80d39d8c2f69d28a6aec0dee64eb7b4f.json +++ b/packages/xl-ai/src/api/formats/html-blocks/__snapshots__/htmlBlocks.test.ts/Update/__msw_snapshots__/anthropic.messages/claude-3-7-sonnet-latest (non-streaming)/drop mark and link_1_80d39d8c2f69d28a6aec0dee64eb7b4f.json @@ -9,7 +9,7 @@ "response": { "status": 200, "statusText": "", - "body": "{\"id\":\"msg_017UNy6fVvmycAAucQd7Vwt9\",\"type\":\"message\",\"role\":\"assistant\",\"model\":\"claude-3-7-sonnet-20250219\",\"content\":[{\"type\":\"tool_use\",\"id\":\"toolu_01WoCn2x6fVrwrvyYCCoQjFC\",\"name\":\"json\",\"input\":{\"operations\":[{\"type\":\"update\",\"id\":\"ref3$\",\"block\":\"

Hello, world! Bold text. Link.

\"}]}}],\"stop_reason\":\"tool_use\",\"stop_sequence\":null,\"usage\":{\"input_tokens\":1244,\"cache_creation_input_tokens\":0,\"cache_read_input_tokens\":0,\"output_tokens\":78,\"service_tier\":\"standard\"}}", + "body": "{\"id\":\"msg_01WshLJncwcNPtL78vcvQzce\",\"type\":\"message\",\"role\":\"assistant\",\"model\":\"claude-3-7-sonnet-20250219\",\"content\":[{\"type\":\"tool_use\",\"id\":\"toolu_01TrpG8BMCqKkK2LimWt85WE\",\"name\":\"json\",\"input\":{\"operations\":[{\"type\":\"update\",\"id\":\"ref3$\",\"block\":\"

Hello, world! Bold text. Link.

\"}]}}],\"stop_reason\":\"tool_use\",\"stop_sequence\":null,\"usage\":{\"input_tokens\":1244,\"cache_creation_input_tokens\":0,\"cache_read_input_tokens\":0,\"output_tokens\":78,\"service_tier\":\"standard\"}}", "headers": [] } } \ No newline at end of file diff --git a/packages/xl-ai/src/api/formats/html-blocks/__snapshots__/htmlBlocks.test.ts/Update/__msw_snapshots__/anthropic.messages/claude-3-7-sonnet-latest (non-streaming)/modify nested content_1_64d59c27de629179d00d268836aebcba.json b/packages/xl-ai/src/api/formats/html-blocks/__snapshots__/htmlBlocks.test.ts/Update/__msw_snapshots__/anthropic.messages/claude-3-7-sonnet-latest (non-streaming)/modify nested content_1_64d59c27de629179d00d268836aebcba.json index 7c281dc7ad..0e86957740 100644 --- a/packages/xl-ai/src/api/formats/html-blocks/__snapshots__/htmlBlocks.test.ts/Update/__msw_snapshots__/anthropic.messages/claude-3-7-sonnet-latest (non-streaming)/modify nested content_1_64d59c27de629179d00d268836aebcba.json +++ b/packages/xl-ai/src/api/formats/html-blocks/__snapshots__/htmlBlocks.test.ts/Update/__msw_snapshots__/anthropic.messages/claude-3-7-sonnet-latest (non-streaming)/modify nested content_1_64d59c27de629179d00d268836aebcba.json @@ -9,7 +9,7 @@ "response": { "status": 200, "statusText": "", - "body": "{\"id\":\"msg_01RytimvXEBjPq2SKi2yfjoT\",\"type\":\"message\",\"role\":\"assistant\",\"model\":\"claude-3-7-sonnet-20250219\",\"content\":[{\"type\":\"tool_use\",\"id\":\"toolu_01CdoPECHiULN1wqXg627X9x\",\"name\":\"json\",\"input\":{\"operations\":[{\"type\":\"update\",\"id\":\"ref2$\",\"block\":\"

APPLES

\"}]}}],\"stop_reason\":\"tool_use\",\"stop_sequence\":null,\"usage\":{\"input_tokens\":1115,\"cache_creation_input_tokens\":0,\"cache_read_input_tokens\":0,\"output_tokens\":73,\"service_tier\":\"standard\"}}", + "body": "{\"id\":\"msg_015zSCLEKvFZtY5fVGuSSDmt\",\"type\":\"message\",\"role\":\"assistant\",\"model\":\"claude-3-7-sonnet-20250219\",\"content\":[{\"type\":\"tool_use\",\"id\":\"toolu_015a8DZf63rupvgAefdHGeR7\",\"name\":\"json\",\"input\":{\"operations\":[{\"type\":\"update\",\"id\":\"ref2$\",\"block\":\"

APPLES

\"}]}}],\"stop_reason\":\"tool_use\",\"stop_sequence\":null,\"usage\":{\"input_tokens\":1115,\"cache_creation_input_tokens\":0,\"cache_read_input_tokens\":0,\"output_tokens\":73,\"service_tier\":\"standard\"}}", "headers": [] } } \ No newline at end of file diff --git a/packages/xl-ai/src/api/formats/html-blocks/__snapshots__/htmlBlocks.test.ts/Update/__msw_snapshots__/anthropic.messages/claude-3-7-sonnet-latest (non-streaming)/modify parent content_1_7cb863416d6d953446640251160e084e.json b/packages/xl-ai/src/api/formats/html-blocks/__snapshots__/htmlBlocks.test.ts/Update/__msw_snapshots__/anthropic.messages/claude-3-7-sonnet-latest (non-streaming)/modify parent content_1_7cb863416d6d953446640251160e084e.json index b7b713430c..4d93f5eafb 100644 --- a/packages/xl-ai/src/api/formats/html-blocks/__snapshots__/htmlBlocks.test.ts/Update/__msw_snapshots__/anthropic.messages/claude-3-7-sonnet-latest (non-streaming)/modify parent content_1_7cb863416d6d953446640251160e084e.json +++ b/packages/xl-ai/src/api/formats/html-blocks/__snapshots__/htmlBlocks.test.ts/Update/__msw_snapshots__/anthropic.messages/claude-3-7-sonnet-latest (non-streaming)/modify parent content_1_7cb863416d6d953446640251160e084e.json @@ -9,7 +9,7 @@ "response": { "status": 200, "statusText": "", - "body": "{\"id\":\"msg_01TDZkEJJLnLK4HwtxVbYRdu\",\"type\":\"message\",\"role\":\"assistant\",\"model\":\"claude-3-7-sonnet-20250219\",\"content\":[{\"type\":\"tool_use\",\"id\":\"toolu_01TUGTu4g7bA9AMUveiUzXKr\",\"name\":\"json\",\"input\":{\"operations\":[{\"type\":\"update\",\"id\":\"ref1$\",\"block\":\"

I NEED TO BUY:

\"}]}}],\"stop_reason\":\"tool_use\",\"stop_sequence\":null,\"usage\":{\"input_tokens\":1116,\"cache_creation_input_tokens\":0,\"cache_read_input_tokens\":0,\"output_tokens\":77,\"service_tier\":\"standard\"}}", + "body": "{\"id\":\"msg_01EREiVxkFNYhnHJQEz9V1h1\",\"type\":\"message\",\"role\":\"assistant\",\"model\":\"claude-3-7-sonnet-20250219\",\"content\":[{\"type\":\"tool_use\",\"id\":\"toolu_01L6pjMs7BD43cVyLrZthDjv\",\"name\":\"json\",\"input\":{\"operations\":[{\"type\":\"update\",\"id\":\"ref1$\",\"block\":\"

I NEED TO BUY:

\"}]}}],\"stop_reason\":\"tool_use\",\"stop_sequence\":null,\"usage\":{\"input_tokens\":1116,\"cache_creation_input_tokens\":0,\"cache_read_input_tokens\":0,\"output_tokens\":77,\"service_tier\":\"standard\"}}", "headers": [] } } \ No newline at end of file diff --git a/packages/xl-ai/src/api/formats/html-blocks/__snapshots__/htmlBlocks.test.ts/Update/__msw_snapshots__/anthropic.messages/claude-3-7-sonnet-latest (non-streaming)/plain source block, add mention_1_c6025cf7f6efc3b57f721752b1f49801.json b/packages/xl-ai/src/api/formats/html-blocks/__snapshots__/htmlBlocks.test.ts/Update/__msw_snapshots__/anthropic.messages/claude-3-7-sonnet-latest (non-streaming)/plain source block, add mention_1_c6025cf7f6efc3b57f721752b1f49801.json index 332deb00b4..2c30b3825a 100644 --- a/packages/xl-ai/src/api/formats/html-blocks/__snapshots__/htmlBlocks.test.ts/Update/__msw_snapshots__/anthropic.messages/claude-3-7-sonnet-latest (non-streaming)/plain source block, add mention_1_c6025cf7f6efc3b57f721752b1f49801.json +++ b/packages/xl-ai/src/api/formats/html-blocks/__snapshots__/htmlBlocks.test.ts/Update/__msw_snapshots__/anthropic.messages/claude-3-7-sonnet-latest (non-streaming)/plain source block, add mention_1_c6025cf7f6efc3b57f721752b1f49801.json @@ -9,7 +9,7 @@ "response": { "status": 200, "statusText": "", - "body": "{\"id\":\"msg_01GAMLMhYDn3Eagi9e1kZ5pG\",\"type\":\"message\",\"role\":\"assistant\",\"model\":\"claude-3-7-sonnet-20250219\",\"content\":[{\"type\":\"tool_use\",\"id\":\"toolu_01C5BJTLNoovYNJPf7oFivFW\",\"name\":\"json\",\"input\":{\"operations\":[{\"type\":\"update\",\"id\":\"ref1$\",\"block\":\"

Hello, @Jane Doe!

\"}]}}],\"stop_reason\":\"tool_use\",\"stop_sequence\":null,\"usage\":{\"input_tokens\":1243,\"cache_creation_input_tokens\":0,\"cache_read_input_tokens\":0,\"output_tokens\":100,\"service_tier\":\"standard\"}}", + "body": "{\"id\":\"msg_01KhdodTPyiRMTeuhSZ5ZjdR\",\"type\":\"message\",\"role\":\"assistant\",\"model\":\"claude-3-7-sonnet-20250219\",\"content\":[{\"type\":\"tool_use\",\"id\":\"toolu_012qWf9Pi57N7p3kVpefJ6i2\",\"name\":\"json\",\"input\":{\"operations\":[{\"type\":\"update\",\"id\":\"ref1$\",\"block\":\"

Hello, @Jane Doe!

\"}]}}],\"stop_reason\":\"tool_use\",\"stop_sequence\":null,\"usage\":{\"input_tokens\":1243,\"cache_creation_input_tokens\":0,\"cache_read_input_tokens\":0,\"output_tokens\":100,\"service_tier\":\"standard\"}}", "headers": [] } } \ No newline at end of file diff --git a/packages/xl-ai/src/api/formats/html-blocks/__snapshots__/htmlBlocks.test.ts/Update/__msw_snapshots__/anthropic.messages/claude-3-7-sonnet-latest (non-streaming)/standard update_1_b3b73d97f68d26aba18541b8c809ec4d.json b/packages/xl-ai/src/api/formats/html-blocks/__snapshots__/htmlBlocks.test.ts/Update/__msw_snapshots__/anthropic.messages/claude-3-7-sonnet-latest (non-streaming)/standard update_1_b3b73d97f68d26aba18541b8c809ec4d.json index ec8ac83f3a..67a0dadf29 100644 --- a/packages/xl-ai/src/api/formats/html-blocks/__snapshots__/htmlBlocks.test.ts/Update/__msw_snapshots__/anthropic.messages/claude-3-7-sonnet-latest (non-streaming)/standard update_1_b3b73d97f68d26aba18541b8c809ec4d.json +++ b/packages/xl-ai/src/api/formats/html-blocks/__snapshots__/htmlBlocks.test.ts/Update/__msw_snapshots__/anthropic.messages/claude-3-7-sonnet-latest (non-streaming)/standard update_1_b3b73d97f68d26aba18541b8c809ec4d.json @@ -9,7 +9,7 @@ "response": { "status": 200, "statusText": "", - "body": "{\"id\":\"msg_017Cus3hHenruhKutYjjsuCa\",\"type\":\"message\",\"role\":\"assistant\",\"model\":\"claude-3-7-sonnet-20250219\",\"content\":[{\"type\":\"tool_use\",\"id\":\"toolu_01J9U522LPV8z9eNaDzr698b\",\"name\":\"json\",\"input\":{\"operations\":[{\"type\":\"update\",\"id\":\"ref1$\",\"block\":\"

Hallo, Welt!

\"}]}}],\"stop_reason\":\"tool_use\",\"stop_sequence\":null,\"usage\":{\"input_tokens\":1233,\"cache_creation_input_tokens\":0,\"cache_read_input_tokens\":0,\"output_tokens\":77,\"service_tier\":\"standard\"}}", + "body": "{\"id\":\"msg_017iNpsB8Va5vPjdhyhqZCuT\",\"type\":\"message\",\"role\":\"assistant\",\"model\":\"claude-3-7-sonnet-20250219\",\"content\":[{\"type\":\"tool_use\",\"id\":\"toolu_01CeQ65A1Cs6j5dRjXBLZw5u\",\"name\":\"json\",\"input\":{\"operations\":[{\"type\":\"update\",\"id\":\"ref1$\",\"block\":\"

Hallo, Welt!

\"}]}}],\"stop_reason\":\"tool_use\",\"stop_sequence\":null,\"usage\":{\"input_tokens\":1233,\"cache_creation_input_tokens\":0,\"cache_read_input_tokens\":0,\"output_tokens\":77,\"service_tier\":\"standard\"}}", "headers": [] } } \ No newline at end of file diff --git a/packages/xl-ai/src/api/formats/html-blocks/__snapshots__/htmlBlocks.test.ts/Update/__msw_snapshots__/anthropic.messages/claude-3-7-sonnet-latest (non-streaming)/styles + ic in source block, remove mark_1_f6a509381d62c4242864af576bb7ba61.json b/packages/xl-ai/src/api/formats/html-blocks/__snapshots__/htmlBlocks.test.ts/Update/__msw_snapshots__/anthropic.messages/claude-3-7-sonnet-latest (non-streaming)/styles + ic in source block, remove mark_1_f6a509381d62c4242864af576bb7ba61.json index 779494a6cc..f816e54df4 100644 --- a/packages/xl-ai/src/api/formats/html-blocks/__snapshots__/htmlBlocks.test.ts/Update/__msw_snapshots__/anthropic.messages/claude-3-7-sonnet-latest (non-streaming)/styles + ic in source block, remove mark_1_f6a509381d62c4242864af576bb7ba61.json +++ b/packages/xl-ai/src/api/formats/html-blocks/__snapshots__/htmlBlocks.test.ts/Update/__msw_snapshots__/anthropic.messages/claude-3-7-sonnet-latest (non-streaming)/styles + ic in source block, remove mark_1_f6a509381d62c4242864af576bb7ba61.json @@ -9,7 +9,7 @@ "response": { "status": 200, "statusText": "", - "body": "{\"id\":\"msg_01Y2acx8iwLgfcEAeZ7E4L3R\",\"type\":\"message\",\"role\":\"assistant\",\"model\":\"claude-3-7-sonnet-20250219\",\"content\":[{\"type\":\"tool_use\",\"id\":\"toolu_015WR3JunATXMgVpuDPRmMJ1\",\"name\":\"json\",\"input\":{\"operations\":[{\"type\":\"update\",\"id\":\"ref2$\",\"block\":\"

Hello, @John Doe! How are you doing? This text is blue!

\"}]}}],\"stop_reason\":\"tool_use\",\"stop_sequence\":null,\"usage\":{\"input_tokens\":1235,\"cache_creation_input_tokens\":0,\"cache_read_input_tokens\":0,\"output_tokens\":123,\"service_tier\":\"standard\"}}", + "body": "{\"id\":\"msg_01T5eTMHU9eCnjDMRvAEBjMU\",\"type\":\"message\",\"role\":\"assistant\",\"model\":\"claude-3-7-sonnet-20250219\",\"content\":[{\"type\":\"tool_use\",\"id\":\"toolu_014m68VB7ydfSHyFBtzBSzYz\",\"name\":\"json\",\"input\":{\"operations\":[{\"type\":\"update\",\"id\":\"ref2$\",\"block\":\"

Hello, @John Doe! How are you doing? This text is blue!

\"}]}}],\"stop_reason\":\"tool_use\",\"stop_sequence\":null,\"usage\":{\"input_tokens\":1235,\"cache_creation_input_tokens\":0,\"cache_read_input_tokens\":0,\"output_tokens\":123,\"service_tier\":\"standard\"}}", "headers": [] } } \ No newline at end of file diff --git a/packages/xl-ai/src/api/formats/html-blocks/__snapshots__/htmlBlocks.test.ts/Update/__msw_snapshots__/anthropic.messages/claude-3-7-sonnet-latest (non-streaming)/styles + ic in source block, remove mention_1_61539d923364c797cda8519b7d6dbb77.json b/packages/xl-ai/src/api/formats/html-blocks/__snapshots__/htmlBlocks.test.ts/Update/__msw_snapshots__/anthropic.messages/claude-3-7-sonnet-latest (non-streaming)/styles + ic in source block, remove mention_1_61539d923364c797cda8519b7d6dbb77.json index 6f4f5ef775..b4270ffcc2 100644 --- a/packages/xl-ai/src/api/formats/html-blocks/__snapshots__/htmlBlocks.test.ts/Update/__msw_snapshots__/anthropic.messages/claude-3-7-sonnet-latest (non-streaming)/styles + ic in source block, remove mention_1_61539d923364c797cda8519b7d6dbb77.json +++ b/packages/xl-ai/src/api/formats/html-blocks/__snapshots__/htmlBlocks.test.ts/Update/__msw_snapshots__/anthropic.messages/claude-3-7-sonnet-latest (non-streaming)/styles + ic in source block, remove mention_1_61539d923364c797cda8519b7d6dbb77.json @@ -9,7 +9,7 @@ "response": { "status": 200, "statusText": "", - "body": "{\"id\":\"msg_01CpUm7RNW4894yC2B56BYbh\",\"type\":\"message\",\"role\":\"assistant\",\"model\":\"claude-3-7-sonnet-20250219\",\"content\":[{\"type\":\"tool_use\",\"id\":\"toolu_019sPuEYDUzefwC8jLevSbG2\",\"name\":\"json\",\"input\":{\"operations\":[{\"type\":\"update\",\"id\":\"ref2$\",\"block\":\"

Hello! How are you doing? This text is blue!

\"}]}}],\"stop_reason\":\"tool_use\",\"stop_sequence\":null,\"usage\":{\"input_tokens\":1252,\"cache_creation_input_tokens\":0,\"cache_read_input_tokens\":0,\"output_tokens\":100,\"service_tier\":\"standard\"}}", + "body": "{\"id\":\"msg_01RX6G9jptDHomxj76CmVd7S\",\"type\":\"message\",\"role\":\"assistant\",\"model\":\"claude-3-7-sonnet-20250219\",\"content\":[{\"type\":\"tool_use\",\"id\":\"toolu_012Yj69Ms3C81E4d6yG4KMvH\",\"name\":\"json\",\"input\":{\"operations\":[{\"type\":\"update\",\"id\":\"ref2$\",\"block\":\"

Hello! How are you doing? This text is blue!

\"}]}}],\"stop_reason\":\"tool_use\",\"stop_sequence\":null,\"usage\":{\"input_tokens\":1252,\"cache_creation_input_tokens\":0,\"cache_read_input_tokens\":0,\"output_tokens\":100,\"service_tier\":\"standard\"}}", "headers": [] } } \ No newline at end of file diff --git a/packages/xl-ai/src/api/formats/html-blocks/__snapshots__/htmlBlocks.test.ts/Update/__msw_snapshots__/anthropic.messages/claude-3-7-sonnet-latest (non-streaming)/styles + ic in source block, replace content_1_a73907775c98b6c395eac24591e7f1d4.json b/packages/xl-ai/src/api/formats/html-blocks/__snapshots__/htmlBlocks.test.ts/Update/__msw_snapshots__/anthropic.messages/claude-3-7-sonnet-latest (non-streaming)/styles + ic in source block, replace content_1_a73907775c98b6c395eac24591e7f1d4.json index 006d7e27eb..66a64e1798 100644 --- a/packages/xl-ai/src/api/formats/html-blocks/__snapshots__/htmlBlocks.test.ts/Update/__msw_snapshots__/anthropic.messages/claude-3-7-sonnet-latest (non-streaming)/styles + ic in source block, replace content_1_a73907775c98b6c395eac24591e7f1d4.json +++ b/packages/xl-ai/src/api/formats/html-blocks/__snapshots__/htmlBlocks.test.ts/Update/__msw_snapshots__/anthropic.messages/claude-3-7-sonnet-latest (non-streaming)/styles + ic in source block, replace content_1_a73907775c98b6c395eac24591e7f1d4.json @@ -9,7 +9,7 @@ "response": { "status": 200, "statusText": "", - "body": "{\"id\":\"msg_01LYfWS6gputJGi5qqXuxMBu\",\"type\":\"message\",\"role\":\"assistant\",\"model\":\"claude-3-7-sonnet-20250219\",\"content\":[{\"type\":\"tool_use\",\"id\":\"toolu_01AdViDq46jcgEhaoakp4bgq\",\"name\":\"json\",\"input\":{\"operations\":[{\"type\":\"update\",\"id\":\"ref2$\",\"block\":\"

Hello, updated content

\"}]}}],\"stop_reason\":\"tool_use\",\"stop_sequence\":null,\"usage\":{\"input_tokens\":1242,\"cache_creation_input_tokens\":0,\"cache_read_input_tokens\":0,\"output_tokens\":74,\"service_tier\":\"standard\"}}", + "body": "{\"id\":\"msg_0129Z5hRLciD4JxkrsBWXxUu\",\"type\":\"message\",\"role\":\"assistant\",\"model\":\"claude-3-7-sonnet-20250219\",\"content\":[{\"type\":\"tool_use\",\"id\":\"toolu_01DkPKMHFKRCRW8cDeAGbmBw\",\"name\":\"json\",\"input\":{\"operations\":[{\"type\":\"update\",\"id\":\"ref2$\",\"block\":\"

Hello, updated content

\"}]}}],\"stop_reason\":\"tool_use\",\"stop_sequence\":null,\"usage\":{\"input_tokens\":1242,\"cache_creation_input_tokens\":0,\"cache_read_input_tokens\":0,\"output_tokens\":74,\"service_tier\":\"standard\"}}", "headers": [] } } \ No newline at end of file diff --git a/packages/xl-ai/src/api/formats/html-blocks/__snapshots__/htmlBlocks.test.ts/Update/__msw_snapshots__/anthropic.messages/claude-3-7-sonnet-latest (non-streaming)/styles + ic in source block, update mention prop_1_1821b0f5da6b0bdb28f9444c6eaca222.json b/packages/xl-ai/src/api/formats/html-blocks/__snapshots__/htmlBlocks.test.ts/Update/__msw_snapshots__/anthropic.messages/claude-3-7-sonnet-latest (non-streaming)/styles + ic in source block, update mention prop_1_1821b0f5da6b0bdb28f9444c6eaca222.json index 9e7fc60d64..a241019180 100644 --- a/packages/xl-ai/src/api/formats/html-blocks/__snapshots__/htmlBlocks.test.ts/Update/__msw_snapshots__/anthropic.messages/claude-3-7-sonnet-latest (non-streaming)/styles + ic in source block, update mention prop_1_1821b0f5da6b0bdb28f9444c6eaca222.json +++ b/packages/xl-ai/src/api/formats/html-blocks/__snapshots__/htmlBlocks.test.ts/Update/__msw_snapshots__/anthropic.messages/claude-3-7-sonnet-latest (non-streaming)/styles + ic in source block, update mention prop_1_1821b0f5da6b0bdb28f9444c6eaca222.json @@ -9,7 +9,7 @@ "response": { "status": 200, "statusText": "", - "body": "{\"id\":\"msg_018Ryi2PJd2mxktMyumMwRss\",\"type\":\"message\",\"role\":\"assistant\",\"model\":\"claude-3-7-sonnet-20250219\",\"content\":[{\"type\":\"tool_use\",\"id\":\"toolu_016U3AT9jFHvaLJyAAGZrnLL\",\"name\":\"json\",\"input\":{\"operations\":[{\"type\":\"update\",\"id\":\"ref2$\",\"block\":\"

Hello, @Jane Doe! How are you doing? This text is blue!

\"}]}}],\"stop_reason\":\"tool_use\",\"stop_sequence\":null,\"usage\":{\"input_tokens\":1234,\"cache_creation_input_tokens\":0,\"cache_read_input_tokens\":0,\"output_tokens\":129,\"service_tier\":\"standard\"}}", + "body": "{\"id\":\"msg_01HQJNjBo6mEKgi3R8nsqFNm\",\"type\":\"message\",\"role\":\"assistant\",\"model\":\"claude-3-7-sonnet-20250219\",\"content\":[{\"type\":\"tool_use\",\"id\":\"toolu_0139SFj714NEo6pJSNSgBWwF\",\"name\":\"json\",\"input\":{\"operations\":[{\"type\":\"update\",\"id\":\"ref2$\",\"block\":\"

Hello, @Jane Doe! How are you doing? This text is blue!

\"}]}}],\"stop_reason\":\"tool_use\",\"stop_sequence\":null,\"usage\":{\"input_tokens\":1234,\"cache_creation_input_tokens\":0,\"cache_read_input_tokens\":0,\"output_tokens\":129,\"service_tier\":\"standard\"}}", "headers": [] } } \ No newline at end of file diff --git a/packages/xl-ai/src/api/formats/html-blocks/__snapshots__/htmlBlocks.test.ts/Update/__msw_snapshots__/anthropic.messages/claude-3-7-sonnet-latest (non-streaming)/styles + ic in source block, update text_1_82f2d8a07824544fad31d34c8a554af1.json b/packages/xl-ai/src/api/formats/html-blocks/__snapshots__/htmlBlocks.test.ts/Update/__msw_snapshots__/anthropic.messages/claude-3-7-sonnet-latest (non-streaming)/styles + ic in source block, update text_1_82f2d8a07824544fad31d34c8a554af1.json index e9c2b3af9c..595a27e378 100644 --- a/packages/xl-ai/src/api/formats/html-blocks/__snapshots__/htmlBlocks.test.ts/Update/__msw_snapshots__/anthropic.messages/claude-3-7-sonnet-latest (non-streaming)/styles + ic in source block, update text_1_82f2d8a07824544fad31d34c8a554af1.json +++ b/packages/xl-ai/src/api/formats/html-blocks/__snapshots__/htmlBlocks.test.ts/Update/__msw_snapshots__/anthropic.messages/claude-3-7-sonnet-latest (non-streaming)/styles + ic in source block, update text_1_82f2d8a07824544fad31d34c8a554af1.json @@ -9,7 +9,7 @@ "response": { "status": 200, "statusText": "", - "body": "{\"id\":\"msg_0176zizafJvmhHZbZQubQred\",\"type\":\"message\",\"role\":\"assistant\",\"model\":\"claude-3-7-sonnet-20250219\",\"content\":[{\"type\":\"tool_use\",\"id\":\"toolu_0143WddBLUy7TxVVF42vJdyH\",\"name\":\"json\",\"input\":{\"operations\":[{\"type\":\"update\",\"id\":\"ref2$\",\"block\":\"

Hallo, @John Doe! Wie geht es dir? Dieser Text ist blau!

\"}]}}],\"stop_reason\":\"tool_use\",\"stop_sequence\":null,\"usage\":{\"input_tokens\":1242,\"cache_creation_input_tokens\":0,\"cache_read_input_tokens\":0,\"output_tokens\":135,\"service_tier\":\"standard\"}}", + "body": "{\"id\":\"msg_015UBfyAHuAg9oWnHmdVvgx6\",\"type\":\"message\",\"role\":\"assistant\",\"model\":\"claude-3-7-sonnet-20250219\",\"content\":[{\"type\":\"tool_use\",\"id\":\"toolu_01QLFeGscd5ykaUUYYHnSQ12\",\"name\":\"json\",\"input\":{\"operations\":[{\"type\":\"update\",\"id\":\"ref2$\",\"block\":\"

Hallo, @John Doe! Wie geht es dir? Dieser Text ist blau!

\"}]}}],\"stop_reason\":\"tool_use\",\"stop_sequence\":null,\"usage\":{\"input_tokens\":1242,\"cache_creation_input_tokens\":0,\"cache_read_input_tokens\":0,\"output_tokens\":135,\"service_tier\":\"standard\"}}", "headers": [] } } \ No newline at end of file diff --git a/packages/xl-ai/src/api/formats/html-blocks/__snapshots__/htmlBlocks.test.ts/Update/__msw_snapshots__/anthropic.messages/claude-3-7-sonnet-latest (non-streaming)/styles + ic in target block, add mark (paragraph)_1_c8bc122a4cb48783ca677fc4aa6cd947.json b/packages/xl-ai/src/api/formats/html-blocks/__snapshots__/htmlBlocks.test.ts/Update/__msw_snapshots__/anthropic.messages/claude-3-7-sonnet-latest (non-streaming)/styles + ic in target block, add mark (paragraph)_1_c8bc122a4cb48783ca677fc4aa6cd947.json index 13a191b00c..7f5781e7f7 100644 --- a/packages/xl-ai/src/api/formats/html-blocks/__snapshots__/htmlBlocks.test.ts/Update/__msw_snapshots__/anthropic.messages/claude-3-7-sonnet-latest (non-streaming)/styles + ic in target block, add mark (paragraph)_1_c8bc122a4cb48783ca677fc4aa6cd947.json +++ b/packages/xl-ai/src/api/formats/html-blocks/__snapshots__/htmlBlocks.test.ts/Update/__msw_snapshots__/anthropic.messages/claude-3-7-sonnet-latest (non-streaming)/styles + ic in target block, add mark (paragraph)_1_c8bc122a4cb48783ca677fc4aa6cd947.json @@ -9,7 +9,7 @@ "response": { "status": 200, "statusText": "", - "body": "{\"id\":\"msg_01UAAeX26UXJhSG48djNWjMu\",\"type\":\"message\",\"role\":\"assistant\",\"model\":\"claude-3-7-sonnet-20250219\",\"content\":[{\"type\":\"tool_use\",\"id\":\"toolu_012yrc4YauH13ErzebHCzD3v\",\"name\":\"json\",\"input\":{\"operations\":[{\"type\":\"update\",\"id\":\"ref1$\",\"block\":\"

Hello, world!

\"}]}}],\"stop_reason\":\"tool_use\",\"stop_sequence\":null,\"usage\":{\"input_tokens\":1231,\"cache_creation_input_tokens\":0,\"cache_read_input_tokens\":0,\"output_tokens\":77,\"service_tier\":\"standard\"}}", + "body": "{\"id\":\"msg_01BT23qANxpUeDjKjfaeGZKY\",\"type\":\"message\",\"role\":\"assistant\",\"model\":\"claude-3-7-sonnet-20250219\",\"content\":[{\"type\":\"tool_use\",\"id\":\"toolu_011QvEJTGc5eAPszXgDnfen6\",\"name\":\"json\",\"input\":{\"operations\":[{\"type\":\"update\",\"id\":\"ref1$\",\"block\":\"

Hello, world!

\"}]}}],\"stop_reason\":\"tool_use\",\"stop_sequence\":null,\"usage\":{\"input_tokens\":1231,\"cache_creation_input_tokens\":0,\"cache_read_input_tokens\":0,\"output_tokens\":77,\"service_tier\":\"standard\"}}", "headers": [] } } \ No newline at end of file diff --git a/packages/xl-ai/src/api/formats/html-blocks/__snapshots__/htmlBlocks.test.ts/Update/__msw_snapshots__/anthropic.messages/claude-3-7-sonnet-latest (non-streaming)/styles + ic in target block, add mark (word)_1_686bfcd92e4eb65462c1811ad4a3976d.json b/packages/xl-ai/src/api/formats/html-blocks/__snapshots__/htmlBlocks.test.ts/Update/__msw_snapshots__/anthropic.messages/claude-3-7-sonnet-latest (non-streaming)/styles + ic in target block, add mark (word)_1_686bfcd92e4eb65462c1811ad4a3976d.json index 7beef5d980..ff75c40a7f 100644 --- a/packages/xl-ai/src/api/formats/html-blocks/__snapshots__/htmlBlocks.test.ts/Update/__msw_snapshots__/anthropic.messages/claude-3-7-sonnet-latest (non-streaming)/styles + ic in target block, add mark (word)_1_686bfcd92e4eb65462c1811ad4a3976d.json +++ b/packages/xl-ai/src/api/formats/html-blocks/__snapshots__/htmlBlocks.test.ts/Update/__msw_snapshots__/anthropic.messages/claude-3-7-sonnet-latest (non-streaming)/styles + ic in target block, add mark (word)_1_686bfcd92e4eb65462c1811ad4a3976d.json @@ -9,7 +9,7 @@ "response": { "status": 200, "statusText": "", - "body": "{\"id\":\"msg_014LQ1GfjW9XocvbgDumT4hi\",\"type\":\"message\",\"role\":\"assistant\",\"model\":\"claude-3-7-sonnet-20250219\",\"content\":[{\"type\":\"tool_use\",\"id\":\"toolu_0179p7cuc8JdLcDdtNBD8x5A\",\"name\":\"json\",\"input\":{\"operations\":[{\"type\":\"update\",\"id\":\"ref1$\",\"block\":\"

Hello, world!

\"}]}}],\"stop_reason\":\"tool_use\",\"stop_sequence\":null,\"usage\":{\"input_tokens\":1239,\"cache_creation_input_tokens\":0,\"cache_read_input_tokens\":0,\"output_tokens\":78,\"service_tier\":\"standard\"}}", + "body": "{\"id\":\"msg_01YNgifoee2ApHCvcbUv6F4s\",\"type\":\"message\",\"role\":\"assistant\",\"model\":\"claude-3-7-sonnet-20250219\",\"content\":[{\"type\":\"tool_use\",\"id\":\"toolu_01Qza516FNYowDgEe8bMWcR1\",\"name\":\"json\",\"input\":{\"operations\":[{\"type\":\"update\",\"id\":\"ref1$\",\"block\":\"

Hello, world!

\"}]}}],\"stop_reason\":\"tool_use\",\"stop_sequence\":null,\"usage\":{\"input_tokens\":1239,\"cache_creation_input_tokens\":0,\"cache_read_input_tokens\":0,\"output_tokens\":78,\"service_tier\":\"standard\"}}", "headers": [] } } \ No newline at end of file diff --git a/packages/xl-ai/src/api/formats/html-blocks/__snapshots__/htmlBlocks.test.ts/Update/__msw_snapshots__/anthropic.messages/claude-3-7-sonnet-latest (non-streaming)/translate selection_1_2968b738a7996331d8faf2692d652c3c.json b/packages/xl-ai/src/api/formats/html-blocks/__snapshots__/htmlBlocks.test.ts/Update/__msw_snapshots__/anthropic.messages/claude-3-7-sonnet-latest (non-streaming)/translate selection_1_2968b738a7996331d8faf2692d652c3c.json index ec1b7f08fc..b732387987 100644 --- a/packages/xl-ai/src/api/formats/html-blocks/__snapshots__/htmlBlocks.test.ts/Update/__msw_snapshots__/anthropic.messages/claude-3-7-sonnet-latest (non-streaming)/translate selection_1_2968b738a7996331d8faf2692d652c3c.json +++ b/packages/xl-ai/src/api/formats/html-blocks/__snapshots__/htmlBlocks.test.ts/Update/__msw_snapshots__/anthropic.messages/claude-3-7-sonnet-latest (non-streaming)/translate selection_1_2968b738a7996331d8faf2692d652c3c.json @@ -9,7 +9,7 @@ "response": { "status": 200, "statusText": "", - "body": "{\"id\":\"msg_013BRY6iQnUPFqt4xkaDsW22\",\"type\":\"message\",\"role\":\"assistant\",\"model\":\"claude-3-7-sonnet-20250219\",\"content\":[{\"type\":\"tool_use\",\"id\":\"toolu_01NK5VLMtGFRHBP1HQcPT1DJ\",\"name\":\"json\",\"input\":{\"operations\":[{\"type\":\"update\",\"id\":\"ref2$\",\"block\":\"

Hallo

\"}]}}],\"stop_reason\":\"tool_use\",\"stop_sequence\":null,\"usage\":{\"input_tokens\":1060,\"cache_creation_input_tokens\":0,\"cache_read_input_tokens\":0,\"output_tokens\":73,\"service_tier\":\"standard\"}}", + "body": "{\"id\":\"msg_01Er5UtfeFjRGN7Jsb49jfZq\",\"type\":\"message\",\"role\":\"assistant\",\"model\":\"claude-3-7-sonnet-20250219\",\"content\":[{\"type\":\"tool_use\",\"id\":\"toolu_012kdUcZWZteCnMmByXK921h\",\"name\":\"json\",\"input\":{\"operations\":[{\"type\":\"update\",\"id\":\"ref2$\",\"block\":\"

Hallo

\"}]}}],\"stop_reason\":\"tool_use\",\"stop_sequence\":null,\"usage\":{\"input_tokens\":1060,\"cache_creation_input_tokens\":0,\"cache_read_input_tokens\":0,\"output_tokens\":73,\"service_tier\":\"standard\"}}", "headers": [] } } \ No newline at end of file diff --git a/packages/xl-ai/src/api/formats/html-blocks/__snapshots__/htmlBlocks.test.ts/Update/__msw_snapshots__/anthropic.messages/claude-3-7-sonnet-latest (non-streaming)/turn paragraphs into list_1_dd8e963f842a261deec745e8d4608bfd.json b/packages/xl-ai/src/api/formats/html-blocks/__snapshots__/htmlBlocks.test.ts/Update/__msw_snapshots__/anthropic.messages/claude-3-7-sonnet-latest (non-streaming)/turn paragraphs into list_1_dd8e963f842a261deec745e8d4608bfd.json index ac2f33e4ca..8a649b862f 100644 --- a/packages/xl-ai/src/api/formats/html-blocks/__snapshots__/htmlBlocks.test.ts/Update/__msw_snapshots__/anthropic.messages/claude-3-7-sonnet-latest (non-streaming)/turn paragraphs into list_1_dd8e963f842a261deec745e8d4608bfd.json +++ b/packages/xl-ai/src/api/formats/html-blocks/__snapshots__/htmlBlocks.test.ts/Update/__msw_snapshots__/anthropic.messages/claude-3-7-sonnet-latest (non-streaming)/turn paragraphs into list_1_dd8e963f842a261deec745e8d4608bfd.json @@ -9,7 +9,7 @@ "response": { "status": 200, "statusText": "", - "body": "{\"id\":\"msg_01DDbGht7ceGi1EP4xxPTUBv\",\"type\":\"message\",\"role\":\"assistant\",\"model\":\"claude-3-7-sonnet-20250219\",\"content\":[{\"type\":\"tool_use\",\"id\":\"toolu_016oUHWrjgYyCLoR6YeDABNF\",\"name\":\"json\",\"input\":{\"operations\":[{\"type\":\"update\",\"id\":\"ref2$\",\"block\":\"
  • Apples
\"},{\"type\":\"update\",\"id\":\"ref3$\",\"block\":\"
  • Bananas
\"}]}}],\"stop_reason\":\"tool_use\",\"stop_sequence\":null,\"usage\":{\"input_tokens\":989,\"cache_creation_input_tokens\":0,\"cache_read_input_tokens\":0,\"output_tokens\":101,\"service_tier\":\"standard\"}}", + "body": "{\"id\":\"msg_01HkQcuxXSEY6xNSfGTDBLiK\",\"type\":\"message\",\"role\":\"assistant\",\"model\":\"claude-3-7-sonnet-20250219\",\"content\":[{\"type\":\"tool_use\",\"id\":\"toolu_01QAy8LuFt6EDgRTDDZtLrWw\",\"name\":\"json\",\"input\":{\"operations\":[{\"type\":\"update\",\"id\":\"ref2$\",\"block\":\"
  • Apples
\"},{\"type\":\"update\",\"id\":\"ref3$\",\"block\":\"
  • Bananas
\"}]}}],\"stop_reason\":\"tool_use\",\"stop_sequence\":null,\"usage\":{\"input_tokens\":989,\"cache_creation_input_tokens\":0,\"cache_read_input_tokens\":0,\"output_tokens\":101,\"service_tier\":\"standard\"}}", "headers": [] } } \ No newline at end of file diff --git a/packages/xl-ai/src/api/formats/html-blocks/__snapshots__/htmlBlocks.test.ts/Update/__msw_snapshots__/anthropic.messages/claude-3-7-sonnet-latest (non-streaming)/update block type and content_1_06943ba0bda62a61f058ba07379ab4b7.json b/packages/xl-ai/src/api/formats/html-blocks/__snapshots__/htmlBlocks.test.ts/Update/__msw_snapshots__/anthropic.messages/claude-3-7-sonnet-latest (non-streaming)/update block type and content_1_06943ba0bda62a61f058ba07379ab4b7.json index baa7442329..12370f1d2e 100644 --- a/packages/xl-ai/src/api/formats/html-blocks/__snapshots__/htmlBlocks.test.ts/Update/__msw_snapshots__/anthropic.messages/claude-3-7-sonnet-latest (non-streaming)/update block type and content_1_06943ba0bda62a61f058ba07379ab4b7.json +++ b/packages/xl-ai/src/api/formats/html-blocks/__snapshots__/htmlBlocks.test.ts/Update/__msw_snapshots__/anthropic.messages/claude-3-7-sonnet-latest (non-streaming)/update block type and content_1_06943ba0bda62a61f058ba07379ab4b7.json @@ -9,7 +9,7 @@ "response": { "status": 200, "statusText": "", - "body": "{\"id\":\"msg_019VpTG3BNYSjrr5WzP4Hx67\",\"type\":\"message\",\"role\":\"assistant\",\"model\":\"claude-3-7-sonnet-20250219\",\"content\":[{\"type\":\"tool_use\",\"id\":\"toolu_01RiUdUNyPzo2mRgHyVS5T1K\",\"name\":\"json\",\"input\":{\"operations\":[{\"type\":\"update\",\"id\":\"ref1$\",\"block\":\"

What's up, world!

\"}]}}],\"stop_reason\":\"tool_use\",\"stop_sequence\":null,\"usage\":{\"input_tokens\":1246,\"cache_creation_input_tokens\":0,\"cache_read_input_tokens\":0,\"output_tokens\":77,\"service_tier\":\"standard\"}}", + "body": "{\"id\":\"msg_01UCfMwbkNqA6JHPBtrnboJS\",\"type\":\"message\",\"role\":\"assistant\",\"model\":\"claude-3-7-sonnet-20250219\",\"content\":[{\"type\":\"tool_use\",\"id\":\"toolu_01L7zqwvLmExryqVrW9Hoo7i\",\"name\":\"json\",\"input\":{\"operations\":[{\"type\":\"update\",\"id\":\"ref1$\",\"block\":\"

What's up, world!

\"}]}}],\"stop_reason\":\"tool_use\",\"stop_sequence\":null,\"usage\":{\"input_tokens\":1246,\"cache_creation_input_tokens\":0,\"cache_read_input_tokens\":0,\"output_tokens\":77,\"service_tier\":\"standard\"}}", "headers": [] } } \ No newline at end of file diff --git a/packages/xl-ai/src/api/formats/html-blocks/__snapshots__/htmlBlocks.test.ts/Update/__msw_snapshots__/anthropic.messages/claude-3-7-sonnet-latest (non-streaming)/update block type_1_9e53c774c99f178f06b3c7b3608d1605.json b/packages/xl-ai/src/api/formats/html-blocks/__snapshots__/htmlBlocks.test.ts/Update/__msw_snapshots__/anthropic.messages/claude-3-7-sonnet-latest (non-streaming)/update block type_1_9e53c774c99f178f06b3c7b3608d1605.json index c46581b8ff..0eb873c98f 100644 --- a/packages/xl-ai/src/api/formats/html-blocks/__snapshots__/htmlBlocks.test.ts/Update/__msw_snapshots__/anthropic.messages/claude-3-7-sonnet-latest (non-streaming)/update block type_1_9e53c774c99f178f06b3c7b3608d1605.json +++ b/packages/xl-ai/src/api/formats/html-blocks/__snapshots__/htmlBlocks.test.ts/Update/__msw_snapshots__/anthropic.messages/claude-3-7-sonnet-latest (non-streaming)/update block type_1_9e53c774c99f178f06b3c7b3608d1605.json @@ -9,7 +9,7 @@ "response": { "status": 200, "statusText": "", - "body": "{\"id\":\"msg_01EwHsa6gtWs3hqBK8vP3jR7\",\"type\":\"message\",\"role\":\"assistant\",\"model\":\"claude-3-7-sonnet-20250219\",\"content\":[{\"type\":\"tool_use\",\"id\":\"toolu_01U6MfXi5f6ftanthk4Qddn9\",\"name\":\"json\",\"input\":{\"operations\":[{\"type\":\"update\",\"id\":\"ref1$\",\"block\":\"

Hello, world!

\"}]}}],\"stop_reason\":\"tool_use\",\"stop_sequence\":null,\"usage\":{\"input_tokens\":1233,\"cache_creation_input_tokens\":0,\"cache_read_input_tokens\":0,\"output_tokens\":75,\"service_tier\":\"standard\"}}", + "body": "{\"id\":\"msg_01LdqohecfEgaytnLTE2zCFc\",\"type\":\"message\",\"role\":\"assistant\",\"model\":\"claude-3-7-sonnet-20250219\",\"content\":[{\"type\":\"tool_use\",\"id\":\"toolu_01AnkcSsB3ZhnXjD35SSr7ME\",\"name\":\"json\",\"input\":{\"operations\":[{\"type\":\"update\",\"id\":\"ref1$\",\"block\":\"

Hello, world!

\"}]}}],\"stop_reason\":\"tool_use\",\"stop_sequence\":null,\"usage\":{\"input_tokens\":1233,\"cache_creation_input_tokens\":0,\"cache_read_input_tokens\":0,\"output_tokens\":75,\"service_tier\":\"standard\"}}", "headers": [] } } \ No newline at end of file diff --git a/packages/xl-ai/src/api/formats/html-blocks/__snapshots__/htmlBlocks.test.ts/Update/__msw_snapshots__/groq.chat/llama-3.3-70b-versatile (non-streaming)/drop mark and link and change text within mark_1_2b911dce06e556a512fa22d1a0042b5a.json b/packages/xl-ai/src/api/formats/html-blocks/__snapshots__/htmlBlocks.test.ts/Update/__msw_snapshots__/groq.chat/llama-3.3-70b-versatile (non-streaming)/drop mark and link and change text within mark_1_2b911dce06e556a512fa22d1a0042b5a.json index cb253dd7d5..fa39da0a2f 100644 --- a/packages/xl-ai/src/api/formats/html-blocks/__snapshots__/htmlBlocks.test.ts/Update/__msw_snapshots__/groq.chat/llama-3.3-70b-versatile (non-streaming)/drop mark and link and change text within mark_1_2b911dce06e556a512fa22d1a0042b5a.json +++ b/packages/xl-ai/src/api/formats/html-blocks/__snapshots__/htmlBlocks.test.ts/Update/__msw_snapshots__/groq.chat/llama-3.3-70b-versatile (non-streaming)/drop mark and link and change text within mark_1_2b911dce06e556a512fa22d1a0042b5a.json @@ -9,7 +9,7 @@ "response": { "status": 200, "statusText": "", - "body": "{\"id\":\"chatcmpl-0413e47e-306b-4e80-b651-a42f1490ecfd\",\"object\":\"chat.completion\",\"created\":1749541791,\"model\":\"llama-3.3-70b-versatile\",\"choices\":[{\"index\":0,\"message\":{\"role\":\"assistant\",\"tool_calls\":[{\"id\":\"call_fjsq\",\"type\":\"function\",\"function\":{\"name\":\"json\",\"arguments\":\"{\\\"operations\\\":[{\\\"block\\\":\\\"\\\\u003cp\\\\u003eHi, world! Bold the text. Link.\\\\u003c/p\\\\u003e\\\",\\\"id\\\":\\\"ref3$\\\",\\\"type\\\":\\\"update\\\"}]}\"}}]},\"logprobs\":null,\"finish_reason\":\"tool_calls\"}],\"usage\":{\"queue_time\":0.09359273599999998,\"prompt_tokens\":949,\"prompt_time\":0.075268202,\"completion_tokens\":39,\"completion_time\":0.141818182,\"total_tokens\":988,\"total_time\":0.217086384},\"usage_breakdown\":{\"models\":null},\"system_fingerprint\":\"fp_3f3b593e33\",\"x_groq\":{\"id\":\"req_01jxcd29nhfs9swagj6j9apxnj\"}}\n", + "body": "{\"id\":\"chatcmpl-0a0059b2-4fac-4fca-8ed7-caa702b329ab\",\"object\":\"chat.completion\",\"created\":1749735018,\"model\":\"llama-3.3-70b-versatile\",\"choices\":[{\"index\":0,\"message\":{\"role\":\"assistant\",\"tool_calls\":[{\"id\":\"jc7rtpehb\",\"type\":\"function\",\"function\":{\"name\":\"json\",\"arguments\":\"{\\\"operations\\\":[{\\\"block\\\":\\\"\\\\u003cp\\\\u003eHi, world! Bold the text. Link.\\\\u003c/p\\\\u003e\\\",\\\"id\\\":\\\"ref3$\\\",\\\"type\\\":\\\"update\\\"}]}\"}}]},\"logprobs\":null,\"finish_reason\":\"tool_calls\"}],\"usage\":{\"queue_time\":0.095378242,\"prompt_tokens\":936,\"prompt_time\":0.06796029,\"completion_tokens\":39,\"completion_time\":0.141818182,\"total_tokens\":975,\"total_time\":0.209778472},\"usage_breakdown\":null,\"system_fingerprint\":\"fp_2ddfbb0da0\",\"x_groq\":{\"id\":\"req_01jxj5b4a7fe3vvswz0xdqms8d\"}}\n", "headers": [] } } \ No newline at end of file diff --git a/packages/xl-ai/src/api/formats/html-blocks/__snapshots__/htmlBlocks.test.ts/Update/__msw_snapshots__/groq.chat/llama-3.3-70b-versatile (non-streaming)/drop mark and link_1_f7d042c6ddd42b02098b813fe6e2da2b.json b/packages/xl-ai/src/api/formats/html-blocks/__snapshots__/htmlBlocks.test.ts/Update/__msw_snapshots__/groq.chat/llama-3.3-70b-versatile (non-streaming)/drop mark and link_1_f7d042c6ddd42b02098b813fe6e2da2b.json index da227572bb..629f27fed4 100644 --- a/packages/xl-ai/src/api/formats/html-blocks/__snapshots__/htmlBlocks.test.ts/Update/__msw_snapshots__/groq.chat/llama-3.3-70b-versatile (non-streaming)/drop mark and link_1_f7d042c6ddd42b02098b813fe6e2da2b.json +++ b/packages/xl-ai/src/api/formats/html-blocks/__snapshots__/htmlBlocks.test.ts/Update/__msw_snapshots__/groq.chat/llama-3.3-70b-versatile (non-streaming)/drop mark and link_1_f7d042c6ddd42b02098b813fe6e2da2b.json @@ -9,7 +9,7 @@ "response": { "status": 200, "statusText": "", - "body": "{\"id\":\"chatcmpl-d4b5e60a-0394-4a2a-bcd5-01dc6831131a\",\"object\":\"chat.completion\",\"created\":1749541791,\"model\":\"llama-3.3-70b-versatile\",\"choices\":[{\"index\":0,\"message\":{\"role\":\"assistant\",\"tool_calls\":[{\"id\":\"call_jas9\",\"type\":\"function\",\"function\":{\"name\":\"json\",\"arguments\":\"{\\\"operations\\\":[{\\\"block\\\":\\\"\\\\u003cp\\\\u003eHello, world! Bold text. Link.\\\\u003c/p\\\\u003e\\\",\\\"id\\\":\\\"ref3$\\\",\\\"type\\\":\\\"update\\\"}]}\"}}]},\"logprobs\":null,\"finish_reason\":\"tool_calls\"}],\"usage\":{\"queue_time\":0.100260304,\"prompt_tokens\":943,\"prompt_time\":0.088859633,\"completion_tokens\":38,\"completion_time\":0.138445734,\"total_tokens\":981,\"total_time\":0.227305367},\"usage_breakdown\":{\"models\":null},\"system_fingerprint\":\"fp_3f3b593e33\",\"x_groq\":{\"id\":\"req_01jxcd299gfs9b5zw03aqf1phv\"}}\n", + "body": "{\"id\":\"chatcmpl-36283777-5677-47d2-8f58-38a9e5508c23\",\"object\":\"chat.completion\",\"created\":1749735018,\"model\":\"llama-3.3-70b-versatile\",\"choices\":[{\"index\":0,\"message\":{\"role\":\"assistant\",\"tool_calls\":[{\"id\":\"c7bp0vsax\",\"type\":\"function\",\"function\":{\"name\":\"json\",\"arguments\":\"{\\\"operations\\\":[{\\\"block\\\":\\\"\\\\u003cp\\\\u003eHello, world! Bold text. Link.\\\\u003c/p\\\\u003e\\\",\\\"id\\\":\\\"ref3$\\\",\\\"type\\\":\\\"update\\\"}]}\"}}]},\"logprobs\":null,\"finish_reason\":\"tool_calls\"}],\"usage\":{\"queue_time\":0.09498567599999999,\"prompt_tokens\":930,\"prompt_time\":0.067380771,\"completion_tokens\":37,\"completion_time\":0.140460143,\"total_tokens\":967,\"total_time\":0.207840914},\"usage_breakdown\":null,\"system_fingerprint\":\"fp_2ddfbb0da0\",\"x_groq\":{\"id\":\"req_01jxj5b3z6fyn925m3hqpr4dhq\"}}\n", "headers": [] } } \ No newline at end of file diff --git a/packages/xl-ai/src/api/formats/html-blocks/__snapshots__/htmlBlocks.test.ts/Update/__msw_snapshots__/groq.chat/llama-3.3-70b-versatile (non-streaming)/modify nested content_1_0cbaaf87b0c6b588f7d7e21f72ed7a7c.json b/packages/xl-ai/src/api/formats/html-blocks/__snapshots__/htmlBlocks.test.ts/Update/__msw_snapshots__/groq.chat/llama-3.3-70b-versatile (non-streaming)/modify nested content_1_0cbaaf87b0c6b588f7d7e21f72ed7a7c.json index b21508a1c6..657fc77b92 100644 --- a/packages/xl-ai/src/api/formats/html-blocks/__snapshots__/htmlBlocks.test.ts/Update/__msw_snapshots__/groq.chat/llama-3.3-70b-versatile (non-streaming)/modify nested content_1_0cbaaf87b0c6b588f7d7e21f72ed7a7c.json +++ b/packages/xl-ai/src/api/formats/html-blocks/__snapshots__/htmlBlocks.test.ts/Update/__msw_snapshots__/groq.chat/llama-3.3-70b-versatile (non-streaming)/modify nested content_1_0cbaaf87b0c6b588f7d7e21f72ed7a7c.json @@ -9,7 +9,7 @@ "response": { "status": 200, "statusText": "", - "body": "{\"id\":\"chatcmpl-0826b78a-dbd4-4570-9dd1-6dd7939b38b0\",\"object\":\"chat.completion\",\"created\":1749541792,\"model\":\"llama-3.3-70b-versatile\",\"choices\":[{\"index\":0,\"message\":{\"role\":\"assistant\",\"tool_calls\":[{\"id\":\"call_j64a\",\"type\":\"function\",\"function\":{\"name\":\"json\",\"arguments\":\"{\\\"operations\\\":[{\\\"block\\\":\\\"\\\\u003cp\\\\u003eAPPLES\\\\u003c/p\\\\u003e\\\",\\\"id\\\":\\\"ref2$\\\",\\\"type\\\":\\\"update\\\"}]}\"}}]},\"logprobs\":null,\"finish_reason\":\"tool_calls\"}],\"usage\":{\"queue_time\":0.10073978,\"prompt_tokens\":834,\"prompt_time\":0.057784145,\"completion_tokens\":32,\"completion_time\":0.116363636,\"total_tokens\":866,\"total_time\":0.174147781},\"usage_breakdown\":{\"models\":null},\"system_fingerprint\":\"fp_3f3b593e33\",\"x_groq\":{\"id\":\"req_01jxcd2ae1etca9cwwp1bstmgf\"}}\n", + "body": "{\"id\":\"chatcmpl-59e7cc8a-ffbc-45f8-9a4d-52a9f6061394\",\"object\":\"chat.completion\",\"created\":1749735019,\"model\":\"llama-3.3-70b-versatile\",\"choices\":[{\"index\":0,\"message\":{\"role\":\"assistant\",\"tool_calls\":[{\"id\":\"dzaz7ptc7\",\"type\":\"function\",\"function\":{\"name\":\"json\",\"arguments\":\"{\\\"operations\\\":[{\\\"block\\\":\\\"\\\\u003cp\\\\u003eAPPLES\\\\u003c/p\\\\u003e\\\",\\\"id\\\":\\\"ref2$\\\",\\\"type\\\":\\\"update\\\"}]}\"}}]},\"logprobs\":null,\"finish_reason\":\"tool_calls\"}],\"usage\":{\"queue_time\":0.091278667,\"prompt_tokens\":821,\"prompt_time\":0.060325432,\"completion_tokens\":28,\"completion_time\":0.101818182,\"total_tokens\":849,\"total_time\":0.162143614},\"usage_breakdown\":null,\"system_fingerprint\":\"fp_3f3b593e33\",\"x_groq\":{\"id\":\"req_01jxj5b56jfynt9dfq1r851ckm\"}}\n", "headers": [] } } \ No newline at end of file diff --git a/packages/xl-ai/src/api/formats/html-blocks/__snapshots__/htmlBlocks.test.ts/Update/__msw_snapshots__/groq.chat/llama-3.3-70b-versatile (non-streaming)/modify parent content_1_d190a41cfce34eb5362468031cb608fe.json b/packages/xl-ai/src/api/formats/html-blocks/__snapshots__/htmlBlocks.test.ts/Update/__msw_snapshots__/groq.chat/llama-3.3-70b-versatile (non-streaming)/modify parent content_1_d190a41cfce34eb5362468031cb608fe.json index 41bad0e26a..5d776eca98 100644 --- a/packages/xl-ai/src/api/formats/html-blocks/__snapshots__/htmlBlocks.test.ts/Update/__msw_snapshots__/groq.chat/llama-3.3-70b-versatile (non-streaming)/modify parent content_1_d190a41cfce34eb5362468031cb608fe.json +++ b/packages/xl-ai/src/api/formats/html-blocks/__snapshots__/htmlBlocks.test.ts/Update/__msw_snapshots__/groq.chat/llama-3.3-70b-versatile (non-streaming)/modify parent content_1_d190a41cfce34eb5362468031cb608fe.json @@ -9,7 +9,7 @@ "response": { "status": 200, "statusText": "", - "body": "{\"id\":\"chatcmpl-c4d5ebcf-0f59-47a6-8389-f82af98409f1\",\"object\":\"chat.completion\",\"created\":1749541792,\"model\":\"llama-3.3-70b-versatile\",\"choices\":[{\"index\":0,\"message\":{\"role\":\"assistant\",\"tool_calls\":[{\"id\":\"call_w91s\",\"type\":\"function\",\"function\":{\"name\":\"json\",\"arguments\":\"{\\\"operations\\\":[{\\\"block\\\":\\\"\\\\u003cp\\\\u003eI NEED TO BUY:\\\\u003c/p\\\\u003e\\\",\\\"id\\\":\\\"ref1$\\\",\\\"type\\\":\\\"update\\\"}]}\"}}]},\"logprobs\":null,\"finish_reason\":\"tool_calls\"}],\"usage\":{\"queue_time\":0.10280684500000001,\"prompt_tokens\":836,\"prompt_time\":0.053475097,\"completion_tokens\":33,\"completion_time\":0.12,\"total_tokens\":869,\"total_time\":0.173475097},\"usage_breakdown\":{\"models\":null},\"system_fingerprint\":\"fp_2ddfbb0da0\",\"x_groq\":{\"id\":\"req_01jxcd2aqkfyhvg2078e9stwve\"}}\n", + "body": "{\"id\":\"chatcmpl-15f69ac0-28bc-4531-b442-8a3c8925a72a\",\"object\":\"chat.completion\",\"created\":1749735020,\"model\":\"llama-3.3-70b-versatile\",\"choices\":[{\"index\":0,\"message\":{\"role\":\"assistant\",\"tool_calls\":[{\"id\":\"fnn6zcsvf\",\"type\":\"function\",\"function\":{\"name\":\"json\",\"arguments\":\"{\\\"operations\\\":[{\\\"block\\\":\\\"\\\\u003cp\\\\u003eI NEED TO BUY:\\\\u003c/p\\\\u003e\\\",\\\"id\\\":\\\"ref1$\\\",\\\"type\\\":\\\"update\\\"}]}\"}}]},\"logprobs\":null,\"finish_reason\":\"tool_calls\"}],\"usage\":{\"queue_time\":0.095225931,\"prompt_tokens\":823,\"prompt_time\":0.062571264,\"completion_tokens\":29,\"completion_time\":0.114504493,\"total_tokens\":852,\"total_time\":0.177075757},\"usage_breakdown\":null,\"system_fingerprint\":\"fp_2ddfbb0da0\",\"x_groq\":{\"id\":\"req_01jxj5b5j9e8k9rnzed899j9qm\"}}\n", "headers": [] } } \ No newline at end of file diff --git a/packages/xl-ai/src/api/formats/html-blocks/__snapshots__/htmlBlocks.test.ts/Update/__msw_snapshots__/groq.chat/llama-3.3-70b-versatile (non-streaming)/plain source block, add mention_1_963338caea5317fbaa588fed459f0895.json b/packages/xl-ai/src/api/formats/html-blocks/__snapshots__/htmlBlocks.test.ts/Update/__msw_snapshots__/groq.chat/llama-3.3-70b-versatile (non-streaming)/plain source block, add mention_1_963338caea5317fbaa588fed459f0895.json index eba0006b34..21e1aaeaf0 100644 --- a/packages/xl-ai/src/api/formats/html-blocks/__snapshots__/htmlBlocks.test.ts/Update/__msw_snapshots__/groq.chat/llama-3.3-70b-versatile (non-streaming)/plain source block, add mention_1_963338caea5317fbaa588fed459f0895.json +++ b/packages/xl-ai/src/api/formats/html-blocks/__snapshots__/htmlBlocks.test.ts/Update/__msw_snapshots__/groq.chat/llama-3.3-70b-versatile (non-streaming)/plain source block, add mention_1_963338caea5317fbaa588fed459f0895.json @@ -9,7 +9,7 @@ "response": { "status": 200, "statusText": "", - "body": "{\"id\":\"chatcmpl-e1f17041-b753-4b76-94a0-78c691bf3cbf\",\"object\":\"chat.completion\",\"created\":1749541790,\"model\":\"llama-3.3-70b-versatile\",\"choices\":[{\"index\":0,\"message\":{\"role\":\"assistant\",\"tool_calls\":[{\"id\":\"call_pbd0\",\"type\":\"function\",\"function\":{\"name\":\"json\",\"arguments\":\"{\\\"operations\\\":[{\\\"block\\\":\\\"\\\\u003cp\\\\u003eHello, \\\\u003cspan data-inline-content-type=\\\\\\\"mention\\\\\\\" data-user=\\\\\\\"Jane Doe\\\\\\\"\\\\u003e@Jane Doe\\\\u003c/span\\\\u003e!\\\\u003c/p\\\\u003e\\\",\\\"id\\\":\\\"ref1$\\\",\\\"type\\\":\\\"update\\\"}]}\"}}]},\"logprobs\":null,\"finish_reason\":\"tool_calls\"}],\"usage\":{\"queue_time\":0.10137649299999998,\"prompt_tokens\":941,\"prompt_time\":0.067234285,\"completion_tokens\":48,\"completion_time\":0.174545455,\"total_tokens\":989,\"total_time\":0.24177974},\"usage_breakdown\":{\"models\":null},\"system_fingerprint\":\"fp_3f3b593e33\",\"x_groq\":{\"id\":\"req_01jxcd28djfs8rm5zssjbyek4a\"}}\n", + "body": "{\"id\":\"chatcmpl-3c345197-2895-4bb6-9ad4-413e3e70fde2\",\"object\":\"chat.completion\",\"created\":1749735017,\"model\":\"llama-3.3-70b-versatile\",\"choices\":[{\"index\":0,\"message\":{\"role\":\"assistant\",\"tool_calls\":[{\"id\":\"e60an3q24\",\"type\":\"function\",\"function\":{\"name\":\"json\",\"arguments\":\"{\\\"operations\\\":[{\\\"block\\\":\\\"\\\\u003cp\\\\u003eHello, \\\\u003cspan data-inline-content-type=\\\\\\\"mention\\\\\\\" data-user=\\\\\\\"Jane Doe\\\\\\\"\\\\u003e@Jane Doe\\\\u003c/span\\\\u003e!\\\\u003c/p\\\\u003e\\\",\\\"id\\\":\\\"ref1$\\\",\\\"type\\\":\\\"update\\\"}]}\"}}]},\"logprobs\":null,\"finish_reason\":\"tool_calls\"}],\"usage\":{\"queue_time\":0.097209326,\"prompt_tokens\":928,\"prompt_time\":0.091335491,\"completion_tokens\":48,\"completion_time\":0.174545455,\"total_tokens\":976,\"total_time\":0.265880946},\"usage_breakdown\":null,\"system_fingerprint\":\"fp_6507bcfb6f\",\"x_groq\":{\"id\":\"req_01jxj5b32tfe38ajb4c77z001d\"}}\n", "headers": [] } } \ No newline at end of file diff --git a/packages/xl-ai/src/api/formats/html-blocks/__snapshots__/htmlBlocks.test.ts/Update/__msw_snapshots__/groq.chat/llama-3.3-70b-versatile (non-streaming)/standard update_1_da09ee8bda5dc347edc748b59bc3bb16.json b/packages/xl-ai/src/api/formats/html-blocks/__snapshots__/htmlBlocks.test.ts/Update/__msw_snapshots__/groq.chat/llama-3.3-70b-versatile (non-streaming)/standard update_1_da09ee8bda5dc347edc748b59bc3bb16.json index 131f6aea3d..244a002d07 100644 --- a/packages/xl-ai/src/api/formats/html-blocks/__snapshots__/htmlBlocks.test.ts/Update/__msw_snapshots__/groq.chat/llama-3.3-70b-versatile (non-streaming)/standard update_1_da09ee8bda5dc347edc748b59bc3bb16.json +++ b/packages/xl-ai/src/api/formats/html-blocks/__snapshots__/htmlBlocks.test.ts/Update/__msw_snapshots__/groq.chat/llama-3.3-70b-versatile (non-streaming)/standard update_1_da09ee8bda5dc347edc748b59bc3bb16.json @@ -9,7 +9,7 @@ "response": { "status": 200, "statusText": "", - "body": "{\"id\":\"chatcmpl-df169f17-8ff0-4535-92d2-69772b3d19e9\",\"object\":\"chat.completion\",\"created\":1749541786,\"model\":\"llama-3.3-70b-versatile\",\"choices\":[{\"index\":0,\"message\":{\"role\":\"assistant\",\"tool_calls\":[{\"id\":\"call_d9d2\",\"type\":\"function\",\"function\":{\"name\":\"json\",\"arguments\":\"{\\\"operations\\\":[{\\\"block\\\":\\\"\\\\u003cp\\\\u003eHallo, Welt!\\\\u003c/p\\\\u003e\\\",\\\"id\\\":\\\"ref1$\\\",\\\"type\\\":\\\"update\\\"}]}\"}}]},\"logprobs\":null,\"finish_reason\":\"tool_calls\"}],\"usage\":{\"queue_time\":0.101992846,\"prompt_tokens\":932,\"prompt_time\":0.059849904,\"completion_tokens\":33,\"completion_time\":0.120263122,\"total_tokens\":965,\"total_time\":0.180113026},\"usage_breakdown\":{\"models\":null},\"system_fingerprint\":\"fp_2ddfbb0da0\",\"x_groq\":{\"id\":\"req_01jxcd24r2fs7vb9hdyfh1pmxj\"}}\n", + "body": "{\"id\":\"chatcmpl-6af3ddde-3e39-4181-81a6-c383d580b74f\",\"object\":\"chat.completion\",\"created\":1749735013,\"model\":\"llama-3.3-70b-versatile\",\"choices\":[{\"index\":0,\"message\":{\"role\":\"assistant\",\"tool_calls\":[{\"id\":\"3fq3rx70z\",\"type\":\"function\",\"function\":{\"name\":\"json\",\"arguments\":\"{\\\"operations\\\":[{\\\"block\\\":\\\"\\\\u003cp\\\\u003eHallo, Welt!\\\\u003c/p\\\\u003e\\\",\\\"id\\\":\\\"ref1$\\\",\\\"type\\\":\\\"update\\\"}]}\"}}]},\"logprobs\":null,\"finish_reason\":\"tool_calls\"}],\"usage\":{\"queue_time\":0.097637048,\"prompt_tokens\":919,\"prompt_time\":0.066832789,\"completion_tokens\":33,\"completion_time\":0.12,\"total_tokens\":952,\"total_time\":0.186832789},\"usage_breakdown\":null,\"system_fingerprint\":\"fp_6507bcfb6f\",\"x_groq\":{\"id\":\"req_01jxj5az8be8btaxwhjr6w89e3\"}}\n", "headers": [] } } \ No newline at end of file diff --git a/packages/xl-ai/src/api/formats/html-blocks/__snapshots__/htmlBlocks.test.ts/Update/__msw_snapshots__/groq.chat/llama-3.3-70b-versatile (non-streaming)/styles + ic in source block, remove mark_1_90482aba878618976330fda1af8f6766.json b/packages/xl-ai/src/api/formats/html-blocks/__snapshots__/htmlBlocks.test.ts/Update/__msw_snapshots__/groq.chat/llama-3.3-70b-versatile (non-streaming)/styles + ic in source block, remove mark_1_90482aba878618976330fda1af8f6766.json index 2e28aaaf46..9480973cce 100644 --- a/packages/xl-ai/src/api/formats/html-blocks/__snapshots__/htmlBlocks.test.ts/Update/__msw_snapshots__/groq.chat/llama-3.3-70b-versatile (non-streaming)/styles + ic in source block, remove mark_1_90482aba878618976330fda1af8f6766.json +++ b/packages/xl-ai/src/api/formats/html-blocks/__snapshots__/htmlBlocks.test.ts/Update/__msw_snapshots__/groq.chat/llama-3.3-70b-versatile (non-streaming)/styles + ic in source block, remove mark_1_90482aba878618976330fda1af8f6766.json @@ -9,7 +9,7 @@ "response": { "status": 200, "statusText": "", - "body": "{\"id\":\"chatcmpl-af29a2f5-2cdd-458e-a3c8-081616c6141d\",\"object\":\"chat.completion\",\"created\":1749541788,\"model\":\"llama-3.3-70b-versatile\",\"choices\":[{\"index\":0,\"message\":{\"role\":\"assistant\",\"tool_calls\":[{\"id\":\"call_fm36\",\"type\":\"function\",\"function\":{\"name\":\"json\",\"arguments\":\"{\\\"operations\\\":[{\\\"block\\\":\\\"\\\\u003cp\\\\u003eHello, \\\\u003cspan data-inline-content-type=\\\\\\\"mention\\\\\\\" data-user=\\\\\\\"John Doe\\\\\\\"\\\\u003e@John Doe\\\\u003c/span\\\\u003e! \\\\u003cspan\\\\u003eHow are you doing?\\\\u003c/span\\\\u003e \\\\u003cspan data-text-color=\\\\\\\"blue\\\\\\\"\\\\u003eThis text is blue!\\\\u003c/span\\\\u003e\\\\u003c/p\\\\u003e\\\",\\\"id\\\":\\\"ref2$\\\",\\\"type\\\":\\\"update\\\"}]}\"}}]},\"logprobs\":null,\"finish_reason\":\"tool_calls\"}],\"usage\":{\"queue_time\":0.09227293299999999,\"prompt_tokens\":934,\"prompt_time\":0.067290369,\"completion_tokens\":73,\"completion_time\":0.265454545,\"total_tokens\":1007,\"total_time\":0.332744914},\"usage_breakdown\":{\"models\":null},\"system_fingerprint\":\"fp_2ddfbb0da0\",\"x_groq\":{\"id\":\"req_01jxcd26yxfs7vcepfkb9d9qv4\"}}\n", + "body": "{\"id\":\"chatcmpl-747b84da-9146-4615-9f0c-5ab6ce3787e7\",\"object\":\"chat.completion\",\"created\":1749735016,\"model\":\"llama-3.3-70b-versatile\",\"choices\":[{\"index\":0,\"message\":{\"role\":\"assistant\",\"tool_calls\":[{\"id\":\"9tmydrj6p\",\"type\":\"function\",\"function\":{\"name\":\"json\",\"arguments\":\"{\\\"operations\\\":[{\\\"block\\\":\\\"\\\\u003cp\\\\u003eHello, \\\\u003cspan data-inline-content-type=\\\\\\\"mention\\\\\\\" data-user=\\\\\\\"John Doe\\\\\\\"\\\\u003e@John Doe\\\\u003c/span\\\\u003e! How are you doing? \\\\u003cspan data-text-color=\\\\\\\"blue\\\\\\\"\\\\u003eThis text is blue!\\\\u003c/span\\\\u003e\\\\u003c/p\\\\u003e\\\",\\\"id\\\":\\\"ref2$\\\",\\\"type\\\":\\\"update\\\"}]}\"}}]},\"logprobs\":null,\"finish_reason\":\"tool_calls\"}],\"usage\":{\"queue_time\":0.0944564,\"prompt_tokens\":921,\"prompt_time\":0.067310533,\"completion_tokens\":68,\"completion_time\":0.247272727,\"total_tokens\":989,\"total_time\":0.31458326},\"usage_breakdown\":null,\"system_fingerprint\":\"fp_2ddfbb0da0\",\"x_groq\":{\"id\":\"req_01jxj5b1f4e8dr1421eceg24q3\"}}\n", "headers": [] } } \ No newline at end of file diff --git a/packages/xl-ai/src/api/formats/html-blocks/__snapshots__/htmlBlocks.test.ts/Update/__msw_snapshots__/groq.chat/llama-3.3-70b-versatile (non-streaming)/styles + ic in source block, remove mention_1_5c149679babf73b41810f291fcb4d558.json b/packages/xl-ai/src/api/formats/html-blocks/__snapshots__/htmlBlocks.test.ts/Update/__msw_snapshots__/groq.chat/llama-3.3-70b-versatile (non-streaming)/styles + ic in source block, remove mention_1_5c149679babf73b41810f291fcb4d558.json index 4129b65804..9f9a358287 100644 --- a/packages/xl-ai/src/api/formats/html-blocks/__snapshots__/htmlBlocks.test.ts/Update/__msw_snapshots__/groq.chat/llama-3.3-70b-versatile (non-streaming)/styles + ic in source block, remove mention_1_5c149679babf73b41810f291fcb4d558.json +++ b/packages/xl-ai/src/api/formats/html-blocks/__snapshots__/htmlBlocks.test.ts/Update/__msw_snapshots__/groq.chat/llama-3.3-70b-versatile (non-streaming)/styles + ic in source block, remove mention_1_5c149679babf73b41810f291fcb4d558.json @@ -9,7 +9,7 @@ "response": { "status": 200, "statusText": "", - "body": "{\"id\":\"chatcmpl-278e4d98-fd40-4efe-8bc5-4b588cda7c7c\",\"object\":\"chat.completion\",\"created\":1749541789,\"model\":\"llama-3.3-70b-versatile\",\"choices\":[{\"index\":0,\"message\":{\"role\":\"assistant\",\"tool_calls\":[{\"id\":\"call_1z7j\",\"type\":\"function\",\"function\":{\"name\":\"json\",\"arguments\":\"{\\\"operations\\\":[{\\\"block\\\":\\\"\\\\u003cp\\\\u003eHello! \\\\u003cstrong\\\\u003eHow are you doing?\\\\u003c/strong\\\\u003e \\\\u003cspan data-text-color=\\\\\\\"blue\\\\\\\"\\\\u003eThis text is blue!\\\\u003c/span\\\\u003e\\\\u003c/p\\\\u003e\\\",\\\"id\\\":\\\"ref2$\\\",\\\"type\\\":\\\"update\\\"}]}\"}}]},\"logprobs\":null,\"finish_reason\":\"tool_calls\"}],\"usage\":{\"queue_time\":0.10231685800000001,\"prompt_tokens\":950,\"prompt_time\":0.068139699,\"completion_tokens\":51,\"completion_time\":0.185454545,\"total_tokens\":1001,\"total_time\":0.253594244},\"usage_breakdown\":{\"models\":null},\"system_fingerprint\":\"fp_2ddfbb0da0\",\"x_groq\":{\"id\":\"req_01jxcd27ddetbs7zjnqksd4bbj\"}}\n", + "body": "{\"id\":\"chatcmpl-662f80c1-1e27-4cc4-becb-e23e7430bd5b\",\"object\":\"chat.completion\",\"created\":1749735016,\"model\":\"llama-3.3-70b-versatile\",\"choices\":[{\"index\":0,\"message\":{\"role\":\"assistant\",\"tool_calls\":[{\"id\":\"yk036akhj\",\"type\":\"function\",\"function\":{\"name\":\"json\",\"arguments\":\"{\\\"operations\\\":[{\\\"block\\\":\\\"\\\\u003cp\\\\u003eHello! \\\\u003cstrong\\\\u003eHow are you doing?\\\\u003c/strong\\\\u003e \\\\u003cspan data-text-color=\\\\\\\"blue\\\\\\\"\\\\u003eThis text is blue!\\\\u003c/span\\\\u003e\\\\u003c/p\\\\u003e\\\",\\\"id\\\":\\\"ref2$\\\",\\\"type\\\":\\\"update\\\"}]}\"}}]},\"logprobs\":null,\"finish_reason\":\"tool_calls\"}],\"usage\":{\"queue_time\":0.09265462099999999,\"prompt_tokens\":937,\"prompt_time\":0.075315932,\"completion_tokens\":51,\"completion_time\":0.185454545,\"total_tokens\":988,\"total_time\":0.260770477},\"usage_breakdown\":null,\"system_fingerprint\":\"fp_6507bcfb6f\",\"x_groq\":{\"id\":\"req_01jxj5b1xpfe186twtsqe1h98k\"}}\n", "headers": [] } } \ No newline at end of file diff --git a/packages/xl-ai/src/api/formats/html-blocks/__snapshots__/htmlBlocks.test.ts/Update/__msw_snapshots__/groq.chat/llama-3.3-70b-versatile (non-streaming)/styles + ic in source block, replace content_1_0c9d3ace7da95353a998edbaff79177d.json b/packages/xl-ai/src/api/formats/html-blocks/__snapshots__/htmlBlocks.test.ts/Update/__msw_snapshots__/groq.chat/llama-3.3-70b-versatile (non-streaming)/styles + ic in source block, replace content_1_0c9d3ace7da95353a998edbaff79177d.json index 420a55249a..4b5a10c092 100644 --- a/packages/xl-ai/src/api/formats/html-blocks/__snapshots__/htmlBlocks.test.ts/Update/__msw_snapshots__/groq.chat/llama-3.3-70b-versatile (non-streaming)/styles + ic in source block, replace content_1_0c9d3ace7da95353a998edbaff79177d.json +++ b/packages/xl-ai/src/api/formats/html-blocks/__snapshots__/htmlBlocks.test.ts/Update/__msw_snapshots__/groq.chat/llama-3.3-70b-versatile (non-streaming)/styles + ic in source block, replace content_1_0c9d3ace7da95353a998edbaff79177d.json @@ -9,7 +9,7 @@ "response": { "status": 200, "statusText": "", - "body": "{\"id\":\"chatcmpl-30e34322-6521-4412-95f4-674361f0f530\",\"object\":\"chat.completion\",\"created\":1749541787,\"model\":\"llama-3.3-70b-versatile\",\"choices\":[{\"index\":0,\"message\":{\"role\":\"assistant\",\"tool_calls\":[{\"id\":\"call_mteh\",\"type\":\"function\",\"function\":{\"name\":\"json\",\"arguments\":\"{\\\"operations\\\":[{\\\"block\\\":\\\"\\\\u003cp\\\\u003eHello, updated content\\\\u003c/p\\\\u003e\\\",\\\"id\\\":\\\"ref2$\\\",\\\"type\\\":\\\"update\\\"}]}\"}}]},\"logprobs\":null,\"finish_reason\":\"tool_calls\"}],\"usage\":{\"queue_time\":0.09396567,\"prompt_tokens\":940,\"prompt_time\":0.072393554,\"completion_tokens\":29,\"completion_time\":0.105454545,\"total_tokens\":969,\"total_time\":0.177848099},\"usage_breakdown\":{\"models\":null},\"system_fingerprint\":\"fp_3f3b593e33\",\"x_groq\":{\"id\":\"req_01jxcd265fetbtb464gv2ypkxf\"}}\n", + "body": "{\"id\":\"chatcmpl-0bd8b980-c796-42d8-902d-1ebb7ebf9b7c\",\"object\":\"chat.completion\",\"created\":1749735015,\"model\":\"llama-3.3-70b-versatile\",\"choices\":[{\"index\":0,\"message\":{\"role\":\"assistant\",\"tool_calls\":[{\"id\":\"sxzys1xdq\",\"type\":\"function\",\"function\":{\"name\":\"json\",\"arguments\":\"{\\\"operations\\\":[{\\\"block\\\":\\\"\\\\u003cp\\\\u003eHello, updated content\\\\u003c/p\\\\u003e\\\",\\\"id\\\":\\\"ref2$\\\",\\\"type\\\":\\\"update\\\"}]}\"}}]},\"logprobs\":null,\"finish_reason\":\"tool_calls\"}],\"usage\":{\"queue_time\":0.091268419,\"prompt_tokens\":927,\"prompt_time\":0.070687647,\"completion_tokens\":29,\"completion_time\":0.105454545,\"total_tokens\":956,\"total_time\":0.176142192},\"usage_breakdown\":null,\"system_fingerprint\":\"fp_6507bcfb6f\",\"x_groq\":{\"id\":\"req_01jxj5b0jcfyjrqr8rjwpj2wnw\"}}\n", "headers": [] } } \ No newline at end of file diff --git a/packages/xl-ai/src/api/formats/html-blocks/__snapshots__/htmlBlocks.test.ts/Update/__msw_snapshots__/groq.chat/llama-3.3-70b-versatile (non-streaming)/styles + ic in source block, update mention prop_1_57893638a0ceb0edac342346fa706076.json b/packages/xl-ai/src/api/formats/html-blocks/__snapshots__/htmlBlocks.test.ts/Update/__msw_snapshots__/groq.chat/llama-3.3-70b-versatile (non-streaming)/styles + ic in source block, update mention prop_1_57893638a0ceb0edac342346fa706076.json index df058511b8..ef0b687eed 100644 --- a/packages/xl-ai/src/api/formats/html-blocks/__snapshots__/htmlBlocks.test.ts/Update/__msw_snapshots__/groq.chat/llama-3.3-70b-versatile (non-streaming)/styles + ic in source block, update mention prop_1_57893638a0ceb0edac342346fa706076.json +++ b/packages/xl-ai/src/api/formats/html-blocks/__snapshots__/htmlBlocks.test.ts/Update/__msw_snapshots__/groq.chat/llama-3.3-70b-versatile (non-streaming)/styles + ic in source block, update mention prop_1_57893638a0ceb0edac342346fa706076.json @@ -9,7 +9,7 @@ "response": { "status": 200, "statusText": "", - "body": "{\"id\":\"chatcmpl-c1aa7310-3ea2-428f-9356-1d90c33eab15\",\"object\":\"chat.completion\",\"created\":1749541790,\"model\":\"llama-3.3-70b-versatile\",\"choices\":[{\"index\":0,\"message\":{\"role\":\"assistant\",\"tool_calls\":[{\"id\":\"call_ym4j\",\"type\":\"function\",\"function\":{\"name\":\"json\",\"arguments\":\"{\\\"operations\\\":[{\\\"block\\\":\\\"\\\\u003cp\\\\u003eHello, \\\\u003cspan data-inline-content-type=\\\\\\\"mention\\\\\\\" data-user=\\\\\\\"Jane Doe\\\\\\\"\\\\u003e@Jane Doe\\\\u003c/span\\\\u003e! \\\\u003cstrong\\\\u003eHow are you doing?\\\\u003c/strong\\\\u003e \\\\u003cspan data-text-color=\\\\\\\"blue\\\\\\\"\\\\u003eThis text is blue!\\\\u003c/span\\\\u003e\\\\u003c/p\\\\u003e\\\",\\\"id\\\":\\\"ref2$\\\",\\\"type\\\":\\\"update\\\"}]}\"}}]},\"logprobs\":null,\"finish_reason\":\"tool_calls\"}],\"usage\":{\"queue_time\":0.09235778500000001,\"prompt_tokens\":932,\"prompt_time\":0.10156069,\"completion_tokens\":77,\"completion_time\":0.28,\"total_tokens\":1009,\"total_time\":0.38156069},\"usage_breakdown\":{\"models\":null},\"system_fingerprint\":\"fp_3f3b593e33\",\"x_groq\":{\"id\":\"req_01jxcd28sbfs98ev5z379rs9b2\"}}\n", + "body": "{\"id\":\"chatcmpl-560695aa-740c-4124-a7bb-0b7d57337dc5\",\"object\":\"chat.completion\",\"created\":1749735018,\"model\":\"llama-3.3-70b-versatile\",\"choices\":[{\"index\":0,\"message\":{\"role\":\"assistant\",\"tool_calls\":[{\"id\":\"2kys5r12k\",\"type\":\"function\",\"function\":{\"name\":\"json\",\"arguments\":\"{\\\"operations\\\":[{\\\"block\\\":\\\"\\\\u003cp\\\\u003eHello, \\\\u003cspan data-inline-content-type=\\\\\\\"mention\\\\\\\" data-user=\\\\\\\"Jane Doe\\\\\\\"\\\\u003e@Jane Doe\\\\u003c/span\\\\u003e! \\\\u003cstrong\\\\u003eHow are you doing?\\\\u003c/strong\\\\u003e \\\\u003cspan data-text-color=\\\\\\\"blue\\\\\\\"\\\\u003eThis text is blue!\\\\u003c/span\\\\u003e\\\\u003c/p\\\\u003e\\\",\\\"id\\\":\\\"ref2$\\\",\\\"type\\\":\\\"update\\\"}]}\"}}]},\"logprobs\":null,\"finish_reason\":\"tool_calls\"}],\"usage\":{\"queue_time\":0.09206929600000001,\"prompt_tokens\":919,\"prompt_time\":0.066914509,\"completion_tokens\":73,\"completion_time\":0.265454545,\"total_tokens\":992,\"total_time\":0.332369054},\"usage_breakdown\":null,\"system_fingerprint\":\"fp_6507bcfb6f\",\"x_groq\":{\"id\":\"req_01jxj5b3fzfynb6ayc45e8may4\"}}\n", "headers": [] } } \ No newline at end of file diff --git a/packages/xl-ai/src/api/formats/html-blocks/__snapshots__/htmlBlocks.test.ts/Update/__msw_snapshots__/groq.chat/llama-3.3-70b-versatile (non-streaming)/styles + ic in source block, update text_1_ef01870ca5f4083b4ea345e00d3c52ff.json b/packages/xl-ai/src/api/formats/html-blocks/__snapshots__/htmlBlocks.test.ts/Update/__msw_snapshots__/groq.chat/llama-3.3-70b-versatile (non-streaming)/styles + ic in source block, update text_1_ef01870ca5f4083b4ea345e00d3c52ff.json index 1a2d03ca76..777ff6d3c9 100644 --- a/packages/xl-ai/src/api/formats/html-blocks/__snapshots__/htmlBlocks.test.ts/Update/__msw_snapshots__/groq.chat/llama-3.3-70b-versatile (non-streaming)/styles + ic in source block, update text_1_ef01870ca5f4083b4ea345e00d3c52ff.json +++ b/packages/xl-ai/src/api/formats/html-blocks/__snapshots__/htmlBlocks.test.ts/Update/__msw_snapshots__/groq.chat/llama-3.3-70b-versatile (non-streaming)/styles + ic in source block, update text_1_ef01870ca5f4083b4ea345e00d3c52ff.json @@ -9,7 +9,7 @@ "response": { "status": 200, "statusText": "", - "body": "{\"id\":\"chatcmpl-252ba458-aee9-4032-9578-aa5a82e8b665\",\"object\":\"chat.completion\",\"created\":1749541788,\"model\":\"llama-3.3-70b-versatile\",\"choices\":[{\"index\":0,\"message\":{\"role\":\"assistant\",\"tool_calls\":[{\"id\":\"call_bggk\",\"type\":\"function\",\"function\":{\"name\":\"json\",\"arguments\":\"{\\\"operations\\\":[{\\\"block\\\":\\\"\\\\u003cp\\\\u003eHallo, \\\\u003cspan data-inline-content-type=\\\\\\\"mention\\\\\\\" data-user=\\\\\\\"John Doe\\\\\\\"\\\\u003e@John Doe\\\\u003c/span\\\\u003e! \\\\u003cstrong\\\\u003eWie geht es dir?\\\\u003c/strong\\\\u003e \\\\u003cspan data-text-color=\\\\\\\"blue\\\\\\\"\\\\u003eDieser Text ist blau!\\\\u003c/span\\\\u003e\\\\u003c/p\\\\u003e\\\",\\\"id\\\":\\\"ref2$\\\",\\\"type\\\":\\\"update\\\"}]}\"}}]},\"logprobs\":null,\"finish_reason\":\"tool_calls\"}],\"usage\":{\"queue_time\":0.09536103699999998,\"prompt_tokens\":939,\"prompt_time\":0.069338643,\"completion_tokens\":80,\"completion_time\":0.290909091,\"total_tokens\":1019,\"total_time\":0.360247734},\"usage_breakdown\":{\"models\":null},\"system_fingerprint\":\"fp_2ddfbb0da0\",\"x_groq\":{\"id\":\"req_01jxcd26f9fs7scq4vp5enbpx5\"}}\n", + "body": "{\"id\":\"chatcmpl-1203f94c-5842-466e-a9a0-16a6ed99f299\",\"object\":\"chat.completion\",\"created\":1749735015,\"model\":\"llama-3.3-70b-versatile\",\"choices\":[{\"index\":0,\"message\":{\"role\":\"assistant\",\"tool_calls\":[{\"id\":\"rft12t7k3\",\"type\":\"function\",\"function\":{\"name\":\"json\",\"arguments\":\"{\\\"operations\\\":[{\\\"block\\\":\\\"\\\\u003cp\\\\u003eHallo, \\\\u003cspan data-inline-content-type=\\\\\\\"mention\\\\\\\" data-user=\\\\\\\"John Doe\\\\\\\"\\\\u003e@John Doe\\\\u003c/span\\\\u003e! \\\\u003cstrong\\\\u003eWie geht es dir?\\\\u003c/strong\\\\u003e \\\\u003cspan data-text-color=\\\\\\\"blue\\\\\\\"\\\\u003eDieser Text ist blau!\\\\u003c/span\\\\u003e\\\\u003c/p\\\\u003e\\\",\\\"id\\\":\\\"ref2$\\\",\\\"type\\\":\\\"update\\\"}]}\"}}]},\"logprobs\":null,\"finish_reason\":\"tool_calls\"}],\"usage\":{\"queue_time\":0.09413443099999999,\"prompt_tokens\":926,\"prompt_time\":0.067385051,\"completion_tokens\":80,\"completion_time\":0.290909091,\"total_tokens\":1006,\"total_time\":0.358294142},\"usage_breakdown\":null,\"system_fingerprint\":\"fp_2ddfbb0da0\",\"x_groq\":{\"id\":\"req_01jxj5b0w9fe0bfppftqpmf978\"}}\n", "headers": [] } } \ No newline at end of file diff --git a/packages/xl-ai/src/api/formats/html-blocks/__snapshots__/htmlBlocks.test.ts/Update/__msw_snapshots__/groq.chat/llama-3.3-70b-versatile (non-streaming)/styles + ic in target block, add mark (paragraph)_1_ee8107efdf5fd19552a7fff0b08f6657.json b/packages/xl-ai/src/api/formats/html-blocks/__snapshots__/htmlBlocks.test.ts/Update/__msw_snapshots__/groq.chat/llama-3.3-70b-versatile (non-streaming)/styles + ic in target block, add mark (paragraph)_1_ee8107efdf5fd19552a7fff0b08f6657.json index 88ab54ea1b..fc97d37be7 100644 --- a/packages/xl-ai/src/api/formats/html-blocks/__snapshots__/htmlBlocks.test.ts/Update/__msw_snapshots__/groq.chat/llama-3.3-70b-versatile (non-streaming)/styles + ic in target block, add mark (paragraph)_1_ee8107efdf5fd19552a7fff0b08f6657.json +++ b/packages/xl-ai/src/api/formats/html-blocks/__snapshots__/htmlBlocks.test.ts/Update/__msw_snapshots__/groq.chat/llama-3.3-70b-versatile (non-streaming)/styles + ic in target block, add mark (paragraph)_1_ee8107efdf5fd19552a7fff0b08f6657.json @@ -9,7 +9,7 @@ "response": { "status": 200, "statusText": "", - "body": "{\"id\":\"chatcmpl-0da8aa2e-5c12-48fc-beb1-1170836845ea\",\"object\":\"chat.completion\",\"created\":1749541789,\"model\":\"llama-3.3-70b-versatile\",\"choices\":[{\"index\":0,\"message\":{\"role\":\"assistant\",\"tool_calls\":[{\"id\":\"call_63f5\",\"type\":\"function\",\"function\":{\"name\":\"json\",\"arguments\":\"{\\\"operations\\\":[{\\\"block\\\":\\\"\\\\u003cp\\\\u003e\\\\u003cstrong\\\\u003eHello, world!\\\\u003c/strong\\\\u003e\\\\u003c/p\\\\u003e\\\",\\\"id\\\":\\\"ref1$\\\",\\\"type\\\":\\\"update\\\"}]}\"}}]},\"logprobs\":null,\"finish_reason\":\"tool_calls\"}],\"usage\":{\"queue_time\":0.093545223,\"prompt_tokens\":930,\"prompt_time\":0.067580654,\"completion_tokens\":32,\"completion_time\":0.116363636,\"total_tokens\":962,\"total_time\":0.18394429},\"usage_breakdown\":{\"models\":null},\"system_fingerprint\":\"fp_3f3b593e33\",\"x_groq\":{\"id\":\"req_01jxcd283rfs8t33r94p9q3j3r\"}}\n", + "body": "{\"id\":\"chatcmpl-13f5782f-d9ec-4f50-91f1-5fbe4ef0bad7\",\"object\":\"chat.completion\",\"created\":1749735017,\"model\":\"llama-3.3-70b-versatile\",\"choices\":[{\"index\":0,\"message\":{\"role\":\"assistant\",\"tool_calls\":[{\"id\":\"zy1v4qek7\",\"type\":\"function\",\"function\":{\"name\":\"json\",\"arguments\":\"{\\\"operations\\\":[{\\\"block\\\":\\\"\\\\u003cp\\\\u003e\\\\u003cstrong\\\\u003eHello, world!\\\\u003c/strong\\\\u003e\\\\u003c/p\\\\u003e\\\",\\\"id\\\":\\\"ref1$\\\",\\\"type\\\":\\\"update\\\"}]}\"}}]},\"logprobs\":null,\"finish_reason\":\"tool_calls\"}],\"usage\":{\"queue_time\":0.092341545,\"prompt_tokens\":917,\"prompt_time\":0.070101534,\"completion_tokens\":32,\"completion_time\":0.116363636,\"total_tokens\":949,\"total_time\":0.18646517},\"usage_breakdown\":null,\"system_fingerprint\":\"fp_3f3b593e33\",\"x_groq\":{\"id\":\"req_01jxj5b2refynbsjf914e77gyf\"}}\n", "headers": [] } } \ No newline at end of file diff --git a/packages/xl-ai/src/api/formats/html-blocks/__snapshots__/htmlBlocks.test.ts/Update/__msw_snapshots__/groq.chat/llama-3.3-70b-versatile (non-streaming)/styles + ic in target block, add mark (word)_1_ca95d8d83853d5deb4765c6768a2563f.json b/packages/xl-ai/src/api/formats/html-blocks/__snapshots__/htmlBlocks.test.ts/Update/__msw_snapshots__/groq.chat/llama-3.3-70b-versatile (non-streaming)/styles + ic in target block, add mark (word)_1_ca95d8d83853d5deb4765c6768a2563f.json index baa6f628bd..04ffd818da 100644 --- a/packages/xl-ai/src/api/formats/html-blocks/__snapshots__/htmlBlocks.test.ts/Update/__msw_snapshots__/groq.chat/llama-3.3-70b-versatile (non-streaming)/styles + ic in target block, add mark (word)_1_ca95d8d83853d5deb4765c6768a2563f.json +++ b/packages/xl-ai/src/api/formats/html-blocks/__snapshots__/htmlBlocks.test.ts/Update/__msw_snapshots__/groq.chat/llama-3.3-70b-versatile (non-streaming)/styles + ic in target block, add mark (word)_1_ca95d8d83853d5deb4765c6768a2563f.json @@ -9,7 +9,7 @@ "response": { "status": 200, "statusText": "", - "body": "{\"id\":\"chatcmpl-81bb9607-80e3-43f6-b35b-042db552b8cf\",\"object\":\"chat.completion\",\"created\":1749541789,\"model\":\"llama-3.3-70b-versatile\",\"choices\":[{\"index\":0,\"message\":{\"role\":\"assistant\",\"tool_calls\":[{\"id\":\"call_gn2t\",\"type\":\"function\",\"function\":{\"name\":\"json\",\"arguments\":\"{\\\"operations\\\":[{\\\"block\\\":\\\"\\\\u003cp\\\\u003eHello, \\\\u003cstrong\\\\u003eworld!\\\\u003c/strong\\\\u003e\\\\u003c/p\\\\u003e\\\",\\\"id\\\":\\\"ref1$\\\",\\\"type\\\":\\\"update\\\"}]}\"}}]},\"logprobs\":null,\"finish_reason\":\"tool_calls\"}],\"usage\":{\"queue_time\":0.10107719600000001,\"prompt_tokens\":937,\"prompt_time\":0.061890959,\"completion_tokens\":33,\"completion_time\":0.128007058,\"total_tokens\":970,\"total_time\":0.189898017},\"usage_breakdown\":{\"models\":null},\"system_fingerprint\":\"fp_3f3b593e33\",\"x_groq\":{\"id\":\"req_01jxcd27snetbtt4f0rgvwts0e\"}}\n", + "body": "{\"id\":\"chatcmpl-bd3b9341-1bda-404b-9e9f-153dcb85b8cb\",\"object\":\"chat.completion\",\"created\":1749735016,\"model\":\"llama-3.3-70b-versatile\",\"choices\":[{\"index\":0,\"message\":{\"role\":\"assistant\",\"tool_calls\":[{\"id\":\"84bsd4kgd\",\"type\":\"function\",\"function\":{\"name\":\"json\",\"arguments\":\"{\\\"operations\\\":[{\\\"block\\\":\\\"\\\\u003cp\\\\u003eHello, \\\\u003cstrong\\\\u003eworld!\\\\u003c/strong\\\\u003e\\\\u003c/p\\\\u003e\\\",\\\"id\\\":\\\"ref1$\\\",\\\"type\\\":\\\"update\\\"}]}\"}}]},\"logprobs\":null,\"finish_reason\":\"tool_calls\"}],\"usage\":{\"queue_time\":0.09764628199999999,\"prompt_tokens\":924,\"prompt_time\":0.070288056,\"completion_tokens\":33,\"completion_time\":0.120895169,\"total_tokens\":957,\"total_time\":0.191183225},\"usage_breakdown\":null,\"system_fingerprint\":\"fp_6507bcfb6f\",\"x_groq\":{\"id\":\"req_01jxj5b2bwe8e83ptw01bkgxpt\"}}\n", "headers": [] } } \ No newline at end of file diff --git a/packages/xl-ai/src/api/formats/html-blocks/__snapshots__/htmlBlocks.test.ts/Update/__msw_snapshots__/groq.chat/llama-3.3-70b-versatile (non-streaming)/translate selection_1_674d4ec4b8af2ac528ec90892731f67a.json b/packages/xl-ai/src/api/formats/html-blocks/__snapshots__/htmlBlocks.test.ts/Update/__msw_snapshots__/groq.chat/llama-3.3-70b-versatile (non-streaming)/translate selection_1_674d4ec4b8af2ac528ec90892731f67a.json index 80e3543949..c1018e06cf 100644 --- a/packages/xl-ai/src/api/formats/html-blocks/__snapshots__/htmlBlocks.test.ts/Update/__msw_snapshots__/groq.chat/llama-3.3-70b-versatile (non-streaming)/translate selection_1_674d4ec4b8af2ac528ec90892731f67a.json +++ b/packages/xl-ai/src/api/formats/html-blocks/__snapshots__/htmlBlocks.test.ts/Update/__msw_snapshots__/groq.chat/llama-3.3-70b-versatile (non-streaming)/translate selection_1_674d4ec4b8af2ac528ec90892731f67a.json @@ -9,7 +9,7 @@ "response": { "status": 200, "statusText": "", - "body": "{\"id\":\"chatcmpl-7306d8d9-4e49-467c-b5bf-4b79169b163a\",\"object\":\"chat.completion\",\"created\":1749541786,\"model\":\"llama-3.3-70b-versatile\",\"choices\":[{\"index\":0,\"message\":{\"role\":\"assistant\",\"tool_calls\":[{\"id\":\"call_sak1\",\"type\":\"function\",\"function\":{\"name\":\"json\",\"arguments\":\"{\\\"operations\\\":[{\\\"block\\\":\\\"\\\\u003cp\\\\u003eHallo\\\\u003c/p\\\\u003e\\\",\\\"id\\\":\\\"ref2$\\\",\\\"type\\\":\\\"update\\\"}]}\"}}]},\"logprobs\":null,\"finish_reason\":\"tool_calls\"}],\"usage\":{\"queue_time\":0.09197050899999999,\"prompt_tokens\":773,\"prompt_time\":0.06398341,\"completion_tokens\":31,\"completion_time\":0.112727273,\"total_tokens\":804,\"total_time\":0.176710683},\"usage_breakdown\":{\"models\":null},\"system_fingerprint\":\"fp_3f3b593e33\",\"x_groq\":{\"id\":\"req_01jxcd255cetbs1yg5wfzpafbt\"}}\n", + "body": "{\"id\":\"chatcmpl-3571c817-02fc-4749-9ac0-8a18dc61bc81\",\"object\":\"chat.completion\",\"created\":1749735014,\"model\":\"llama-3.3-70b-versatile\",\"choices\":[{\"index\":0,\"message\":{\"role\":\"assistant\",\"tool_calls\":[{\"id\":\"f5nhkrap9\",\"type\":\"function\",\"function\":{\"name\":\"json\",\"arguments\":\"{\\\"operations\\\":[{\\\"block\\\":\\\"\\\\u003cp\\\\u003eHallo\\\\u003c/p\\\\u003e\\\",\\\"id\\\":\\\"ref2$\\\",\\\"type\\\":\\\"update\\\"}]}\"}}]},\"logprobs\":null,\"finish_reason\":\"tool_calls\"}],\"usage\":{\"queue_time\":0.095579791,\"prompt_tokens\":760,\"prompt_time\":0.05653729,\"completion_tokens\":31,\"completion_time\":0.112727273,\"total_tokens\":791,\"total_time\":0.169264563},\"usage_breakdown\":null,\"system_fingerprint\":\"fp_2ddfbb0da0\",\"x_groq\":{\"id\":\"req_01jxj5azjre8bsb47khdp14b8q\"}}\n", "headers": [] } } \ No newline at end of file diff --git a/packages/xl-ai/src/api/formats/html-blocks/__snapshots__/htmlBlocks.test.ts/Update/__msw_snapshots__/groq.chat/llama-3.3-70b-versatile (non-streaming)/turn paragraphs into list_1_1ec910c96203d1d86b7dcce97e352e91.json b/packages/xl-ai/src/api/formats/html-blocks/__snapshots__/htmlBlocks.test.ts/Update/__msw_snapshots__/groq.chat/llama-3.3-70b-versatile (non-streaming)/turn paragraphs into list_1_1ec910c96203d1d86b7dcce97e352e91.json index bee68d5a66..f32cb59063 100644 --- a/packages/xl-ai/src/api/formats/html-blocks/__snapshots__/htmlBlocks.test.ts/Update/__msw_snapshots__/groq.chat/llama-3.3-70b-versatile (non-streaming)/turn paragraphs into list_1_1ec910c96203d1d86b7dcce97e352e91.json +++ b/packages/xl-ai/src/api/formats/html-blocks/__snapshots__/htmlBlocks.test.ts/Update/__msw_snapshots__/groq.chat/llama-3.3-70b-versatile (non-streaming)/turn paragraphs into list_1_1ec910c96203d1d86b7dcce97e352e91.json @@ -9,7 +9,7 @@ "response": { "status": 200, "statusText": "", - "body": "{\"id\":\"chatcmpl-1055ecd9-5b5d-4326-982b-7b4b78a34ad2\",\"object\":\"chat.completion\",\"created\":1749541791,\"model\":\"llama-3.3-70b-versatile\",\"choices\":[{\"index\":0,\"message\":{\"role\":\"assistant\",\"tool_calls\":[{\"id\":\"call_9r4m\",\"type\":\"function\",\"function\":{\"name\":\"json\",\"arguments\":\"{\\\"operations\\\":[{\\\"block\\\":\\\"\\\\u003cul\\\\u003e\\\\u003cli\\\\u003eApples\\\\u003c/li\\\\u003e\\\\u003c/ul\\\\u003e\\\",\\\"id\\\":\\\"ref2$\\\",\\\"type\\\":\\\"update\\\"},{\\\"block\\\":\\\"\\\\u003cul\\\\u003e\\\\u003cli\\\\u003eBananas\\\\u003c/li\\\\u003e\\\\u003c/ul\\\\u003e\\\",\\\"id\\\":\\\"ref3$\\\",\\\"type\\\":\\\"update\\\"}]}\"}}]},\"logprobs\":null,\"finish_reason\":\"tool_calls\"}],\"usage\":{\"queue_time\":0.093906252,\"prompt_tokens\":719,\"prompt_time\":0.059277769,\"completion_tokens\":65,\"completion_time\":0.236363636,\"total_tokens\":784,\"total_time\":0.295641405},\"usage_breakdown\":{\"models\":null},\"system_fingerprint\":\"fp_3f3b593e33\",\"x_groq\":{\"id\":\"req_01jxcd2a0jetca9x8kv97bnd9s\"}}\n", + "body": "{\"id\":\"chatcmpl-15dceb8e-571a-42ee-8457-01a8b73cdaf9\",\"object\":\"chat.completion\",\"created\":1749735019,\"model\":\"llama-3.3-70b-versatile\",\"choices\":[{\"index\":0,\"message\":{\"role\":\"assistant\",\"tool_calls\":[{\"id\":\"d7rqs6x9n\",\"type\":\"function\",\"function\":{\"name\":\"json\",\"arguments\":\"{\\\"operations\\\":[{\\\"block\\\":\\\"\\\\u003cul\\\\u003e\\\\u003cli\\\\u003eApples\\\\u003c/li\\\\u003e\\\\u003c/ul\\\\u003e\\\",\\\"id\\\":\\\"ref2$\\\",\\\"type\\\":\\\"update\\\"},{\\\"block\\\":\\\"\\\\u003cul\\\\u003e\\\\u003cli\\\\u003eBananas\\\\u003c/li\\\\u003e\\\\u003c/ul\\\\u003e\\\",\\\"id\\\":\\\"ref3$\\\",\\\"type\\\":\\\"update\\\"}]}\"}}]},\"logprobs\":null,\"finish_reason\":\"tool_calls\"}],\"usage\":{\"queue_time\":0.092574184,\"prompt_tokens\":706,\"prompt_time\":0.053633147,\"completion_tokens\":66,\"completion_time\":0.24,\"total_tokens\":772,\"total_time\":0.293633147},\"usage_breakdown\":null,\"system_fingerprint\":\"fp_6507bcfb6f\",\"x_groq\":{\"id\":\"req_01jxj5b4rtfynrswwzkftnkbb7\"}}\n", "headers": [] } } \ No newline at end of file diff --git a/packages/xl-ai/src/api/formats/html-blocks/__snapshots__/htmlBlocks.test.ts/Update/__msw_snapshots__/groq.chat/llama-3.3-70b-versatile (non-streaming)/update block type and content_1_e09825f3b2477a73e86972716897a19e.json b/packages/xl-ai/src/api/formats/html-blocks/__snapshots__/htmlBlocks.test.ts/Update/__msw_snapshots__/groq.chat/llama-3.3-70b-versatile (non-streaming)/update block type and content_1_e09825f3b2477a73e86972716897a19e.json index 395eaf4c0b..5ecaf3b116 100644 --- a/packages/xl-ai/src/api/formats/html-blocks/__snapshots__/htmlBlocks.test.ts/Update/__msw_snapshots__/groq.chat/llama-3.3-70b-versatile (non-streaming)/update block type and content_1_e09825f3b2477a73e86972716897a19e.json +++ b/packages/xl-ai/src/api/formats/html-blocks/__snapshots__/htmlBlocks.test.ts/Update/__msw_snapshots__/groq.chat/llama-3.3-70b-versatile (non-streaming)/update block type and content_1_e09825f3b2477a73e86972716897a19e.json @@ -9,7 +9,7 @@ "response": { "status": 200, "statusText": "", - "body": "{\"id\":\"chatcmpl-8de80666-25dc-4ba6-9718-6e9a82178771\",\"object\":\"chat.completion\",\"created\":1749541787,\"model\":\"llama-3.3-70b-versatile\",\"choices\":[{\"index\":0,\"message\":{\"role\":\"assistant\",\"tool_calls\":[{\"id\":\"call_swdv\",\"type\":\"function\",\"function\":{\"name\":\"json\",\"arguments\":\"{\\\"operations\\\":[{\\\"block\\\":\\\"\\\\u003ch1\\\\u003eWhat's up, world!\\\\u003c/h1\\\\u003e\\\",\\\"id\\\":\\\"ref1$\\\",\\\"type\\\":\\\"update\\\"}]}\"}}]},\"logprobs\":null,\"finish_reason\":\"tool_calls\"}],\"usage\":{\"queue_time\":0.09461111300000001,\"prompt_tokens\":944,\"prompt_time\":0.068163188,\"completion_tokens\":37,\"completion_time\":0.134545455,\"total_tokens\":981,\"total_time\":0.202708643},\"usage_breakdown\":{\"models\":null},\"system_fingerprint\":\"fp_2ddfbb0da0\",\"x_groq\":{\"id\":\"req_01jxcd25s4fs7sbg9w2ar8bzzf\"}}\n", + "body": "{\"id\":\"chatcmpl-0f1231e8-6b2e-4b7f-b00c-553e68281f78\",\"object\":\"chat.completion\",\"created\":1749735014,\"model\":\"llama-3.3-70b-versatile\",\"choices\":[{\"index\":0,\"message\":{\"role\":\"assistant\",\"tool_calls\":[{\"id\":\"h7ggbyjvf\",\"type\":\"function\",\"function\":{\"name\":\"json\",\"arguments\":\"{\\\"operations\\\":[{\\\"block\\\":\\\"\\\\u003ch1\\\\u003eWhat's up, world!\\\\u003c/h1\\\\u003e\\\",\\\"id\\\":\\\"ref1$\\\",\\\"type\\\":\\\"update\\\"}]}\"}}]},\"logprobs\":null,\"finish_reason\":\"tool_calls\"}],\"usage\":{\"queue_time\":0.09288939100000002,\"prompt_tokens\":931,\"prompt_time\":0.080010843,\"completion_tokens\":33,\"completion_time\":0.12,\"total_tokens\":964,\"total_time\":0.200010843},\"usage_breakdown\":null,\"system_fingerprint\":\"fp_6507bcfb6f\",\"x_groq\":{\"id\":\"req_01jxj5b07qfyhskj442k2z7q1w\"}}\n", "headers": [] } } \ No newline at end of file diff --git a/packages/xl-ai/src/api/formats/html-blocks/__snapshots__/htmlBlocks.test.ts/Update/__msw_snapshots__/groq.chat/llama-3.3-70b-versatile (non-streaming)/update block type_1_cf54cfb6c7dfc32b6429ca1a2302a2b6.json b/packages/xl-ai/src/api/formats/html-blocks/__snapshots__/htmlBlocks.test.ts/Update/__msw_snapshots__/groq.chat/llama-3.3-70b-versatile (non-streaming)/update block type_1_cf54cfb6c7dfc32b6429ca1a2302a2b6.json index 2ac157b343..0b365ed691 100644 --- a/packages/xl-ai/src/api/formats/html-blocks/__snapshots__/htmlBlocks.test.ts/Update/__msw_snapshots__/groq.chat/llama-3.3-70b-versatile (non-streaming)/update block type_1_cf54cfb6c7dfc32b6429ca1a2302a2b6.json +++ b/packages/xl-ai/src/api/formats/html-blocks/__snapshots__/htmlBlocks.test.ts/Update/__msw_snapshots__/groq.chat/llama-3.3-70b-versatile (non-streaming)/update block type_1_cf54cfb6c7dfc32b6429ca1a2302a2b6.json @@ -9,7 +9,7 @@ "response": { "status": 200, "statusText": "", - "body": "{\"id\":\"chatcmpl-27c62caf-6f67-4fc5-89d5-011dd919c9f6\",\"object\":\"chat.completion\",\"created\":1749541787,\"model\":\"llama-3.3-70b-versatile\",\"choices\":[{\"index\":0,\"message\":{\"role\":\"assistant\",\"tool_calls\":[{\"id\":\"call_3gbn\",\"type\":\"function\",\"function\":{\"name\":\"json\",\"arguments\":\"{\\\"operations\\\":[{\\\"block\\\":\\\"\\\\u003ch1\\\\u003eHello, world!\\\\u003c/h1\\\\u003e\\\",\\\"id\\\":\\\"ref1$\\\",\\\"type\\\":\\\"update\\\"}]}\"}}]},\"logprobs\":null,\"finish_reason\":\"tool_calls\"}],\"usage\":{\"queue_time\":0.104550807,\"prompt_tokens\":932,\"prompt_time\":0.059821726,\"completion_tokens\":30,\"completion_time\":0.126338024,\"total_tokens\":962,\"total_time\":0.18615975},\"usage_breakdown\":{\"models\":null},\"system_fingerprint\":\"fp_2ddfbb0da0\",\"x_groq\":{\"id\":\"req_01jxcd25ewetbvdaamtayhk8dg\"}}\n", + "body": "{\"id\":\"chatcmpl-b5b5fedf-19dd-425b-9c51-82f5315b4e12\",\"object\":\"chat.completion\",\"created\":1749735014,\"model\":\"llama-3.3-70b-versatile\",\"choices\":[{\"index\":0,\"message\":{\"role\":\"assistant\",\"tool_calls\":[{\"id\":\"pwn702svm\",\"type\":\"function\",\"function\":{\"name\":\"json\",\"arguments\":\"{\\\"operations\\\":[{\\\"block\\\":\\\"\\\\u003ch1\\\\u003eHello, world!\\\\u003c/h1\\\\u003e\\\",\\\"id\\\":\\\"ref1$\\\",\\\"type\\\":\\\"update\\\"}]}\"}}]},\"logprobs\":null,\"finish_reason\":\"tool_calls\"}],\"usage\":{\"queue_time\":0.09234229,\"prompt_tokens\":919,\"prompt_time\":0.092418991,\"completion_tokens\":30,\"completion_time\":0.112312109,\"total_tokens\":949,\"total_time\":0.2047311},\"usage_breakdown\":null,\"system_fingerprint\":\"fp_6507bcfb6f\",\"x_groq\":{\"id\":\"req_01jxj5azwve8bvxw56q80cqea4\"}}\n", "headers": [] } } \ No newline at end of file diff --git a/packages/xl-ai/src/api/formats/html-blocks/__snapshots__/htmlBlocks.test.ts/Update/__msw_snapshots__/groq.chat/llama-3.3-70b-versatile (streaming)/drop mark and link and change text within mark_1_efeeda50dc4be1869d555c44cc00a5f5.json b/packages/xl-ai/src/api/formats/html-blocks/__snapshots__/htmlBlocks.test.ts/Update/__msw_snapshots__/groq.chat/llama-3.3-70b-versatile (streaming)/drop mark and link and change text within mark_1_efeeda50dc4be1869d555c44cc00a5f5.json index 524677fac3..ef44649db6 100644 --- a/packages/xl-ai/src/api/formats/html-blocks/__snapshots__/htmlBlocks.test.ts/Update/__msw_snapshots__/groq.chat/llama-3.3-70b-versatile (streaming)/drop mark and link and change text within mark_1_efeeda50dc4be1869d555c44cc00a5f5.json +++ b/packages/xl-ai/src/api/formats/html-blocks/__snapshots__/htmlBlocks.test.ts/Update/__msw_snapshots__/groq.chat/llama-3.3-70b-versatile (streaming)/drop mark and link and change text within mark_1_efeeda50dc4be1869d555c44cc00a5f5.json @@ -9,7 +9,7 @@ "response": { "status": 200, "statusText": "", - "body": "data: {\"id\":\"chatcmpl-dd039dd1-a9c4-4114-a771-ea25a874befc\",\"object\":\"chat.completion.chunk\",\"created\":1749541782,\"model\":\"llama-3.3-70b-versatile\",\"system_fingerprint\":\"fp_2ddfbb0da0\",\"choices\":[{\"index\":0,\"delta\":{\"role\":\"assistant\",\"content\":null},\"logprobs\":null,\"finish_reason\":null}],\"x_groq\":{\"id\":\"req_01jxcd20ezet9bjvdqesw9akzn\"}}\n\ndata: {\"id\":\"chatcmpl-dd039dd1-a9c4-4114-a771-ea25a874befc\",\"object\":\"chat.completion.chunk\",\"created\":1749541782,\"model\":\"llama-3.3-70b-versatile\",\"system_fingerprint\":\"fp_2ddfbb0da0\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"id\":\"call_d25v\",\"type\":\"function\",\"function\":{\"name\":\"json\",\"arguments\":\"{\\\"operations\\\":[{\\\"block\\\":\\\"\\\\u003cp\\\\u003eHi, world! Bold the text. Link.\\\\u003c/p\\\\u003e\\\",\\\"id\\\":\\\"ref3$\\\",\\\"type\\\":\\\"update\\\"}]}\"},\"index\":0}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-dd039dd1-a9c4-4114-a771-ea25a874befc\",\"object\":\"chat.completion.chunk\",\"created\":1749541782,\"model\":\"llama-3.3-70b-versatile\",\"system_fingerprint\":\"fp_2ddfbb0da0\",\"choices\":[{\"index\":0,\"delta\":{},\"logprobs\":null,\"finish_reason\":\"tool_calls\"}],\"x_groq\":{\"id\":\"req_01jxcd20ezet9bjvdqesw9akzn\",\"usage\":{\"queue_time\":0.094865681,\"prompt_tokens\":949,\"prompt_time\":0.069089356,\"completion_tokens\":35,\"completion_time\":0.127272727,\"total_tokens\":984,\"total_time\":0.196362083}}}\n\ndata: [DONE]\n\n", + "body": "data: {\"id\":\"chatcmpl-ab20c779-9448-46be-b5ec-aa59014798e4\",\"object\":\"chat.completion.chunk\",\"created\":1749735008,\"model\":\"llama-3.3-70b-versatile\",\"system_fingerprint\":\"fp_6507bcfb6f\",\"choices\":[{\"index\":0,\"delta\":{\"role\":\"assistant\",\"content\":null},\"logprobs\":null,\"finish_reason\":null}],\"x_groq\":{\"id\":\"req_01jxj5atgvfdfv4ym3taazgrdx\"}}\n\ndata: {\"id\":\"chatcmpl-ab20c779-9448-46be-b5ec-aa59014798e4\",\"object\":\"chat.completion.chunk\",\"created\":1749735009,\"model\":\"llama-3.3-70b-versatile\",\"system_fingerprint\":\"fp_6507bcfb6f\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"id\":\"am9yf5frq\",\"type\":\"function\",\"function\":{\"name\":\"json\",\"arguments\":\"{\\\"operations\\\":[{\\\"block\\\":\\\"\\\\u003cp\\\\u003eHi, world! Bold the text. Link.\\\\u003c/p\\\\u003e\\\",\\\"id\\\":\\\"ref3$\\\",\\\"type\\\":\\\"update\\\"}]}\"},\"index\":0}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-ab20c779-9448-46be-b5ec-aa59014798e4\",\"object\":\"chat.completion.chunk\",\"created\":1749735009,\"model\":\"llama-3.3-70b-versatile\",\"system_fingerprint\":\"fp_6507bcfb6f\",\"choices\":[{\"index\":0,\"delta\":{},\"logprobs\":null,\"finish_reason\":\"tool_calls\"}],\"x_groq\":{\"id\":\"req_01jxj5atgvfdfv4ym3taazgrdx\",\"usage\":{\"queue_time\":0.091661228,\"prompt_tokens\":936,\"prompt_time\":0.070865053,\"completion_tokens\":35,\"completion_time\":0.127272727,\"total_tokens\":971,\"total_time\":0.19813778}}}\n\ndata: [DONE]\n\n", "headers": [] } } \ No newline at end of file diff --git a/packages/xl-ai/src/api/formats/html-blocks/__snapshots__/htmlBlocks.test.ts/Update/__msw_snapshots__/groq.chat/llama-3.3-70b-versatile (streaming)/drop mark and link_1_e3ff518cb46e814abe773f4184678323.json b/packages/xl-ai/src/api/formats/html-blocks/__snapshots__/htmlBlocks.test.ts/Update/__msw_snapshots__/groq.chat/llama-3.3-70b-versatile (streaming)/drop mark and link_1_e3ff518cb46e814abe773f4184678323.json index e03dc72766..104e6b5adf 100644 --- a/packages/xl-ai/src/api/formats/html-blocks/__snapshots__/htmlBlocks.test.ts/Update/__msw_snapshots__/groq.chat/llama-3.3-70b-versatile (streaming)/drop mark and link_1_e3ff518cb46e814abe773f4184678323.json +++ b/packages/xl-ai/src/api/formats/html-blocks/__snapshots__/htmlBlocks.test.ts/Update/__msw_snapshots__/groq.chat/llama-3.3-70b-versatile (streaming)/drop mark and link_1_e3ff518cb46e814abe773f4184678323.json @@ -9,7 +9,7 @@ "response": { "status": 200, "statusText": "", - "body": "data: {\"id\":\"chatcmpl-3404528a-a292-4516-8808-184d39ef5df5\",\"object\":\"chat.completion.chunk\",\"created\":1749541781,\"model\":\"llama-3.3-70b-versatile\",\"system_fingerprint\":\"fp_2ddfbb0da0\",\"choices\":[{\"index\":0,\"delta\":{\"role\":\"assistant\",\"content\":null},\"logprobs\":null,\"finish_reason\":null}],\"x_groq\":{\"id\":\"req_01jxcd203bet9b4dx1apkj4bgh\"}}\n\ndata: {\"id\":\"chatcmpl-3404528a-a292-4516-8808-184d39ef5df5\",\"object\":\"chat.completion.chunk\",\"created\":1749541781,\"model\":\"llama-3.3-70b-versatile\",\"system_fingerprint\":\"fp_2ddfbb0da0\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"id\":\"call_ghnt\",\"type\":\"function\",\"function\":{\"name\":\"json\",\"arguments\":\"{\\\"operations\\\":[{\\\"block\\\":\\\"\\\\u003cp\\\\u003eHello, world! Bold text. Link.\\\\u003c/p\\\\u003e\\\",\\\"id\\\":\\\"ref3$\\\",\\\"type\\\":\\\"update\\\"}]}\"},\"index\":0}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-3404528a-a292-4516-8808-184d39ef5df5\",\"object\":\"chat.completion.chunk\",\"created\":1749541781,\"model\":\"llama-3.3-70b-versatile\",\"system_fingerprint\":\"fp_2ddfbb0da0\",\"choices\":[{\"index\":0,\"delta\":{},\"logprobs\":null,\"finish_reason\":\"tool_calls\"}],\"x_groq\":{\"id\":\"req_01jxcd203bet9b4dx1apkj4bgh\",\"usage\":{\"queue_time\":0.095092318,\"prompt_tokens\":943,\"prompt_time\":0.068082079,\"completion_tokens\":38,\"completion_time\":0.138181818,\"total_tokens\":981,\"total_time\":0.206263897}}}\n\ndata: [DONE]\n\n", + "body": "data: {\"id\":\"chatcmpl-bda185f6-a5d1-4bca-a598-94cc4188d845\",\"object\":\"chat.completion.chunk\",\"created\":1749735008,\"model\":\"llama-3.3-70b-versatile\",\"system_fingerprint\":\"fp_3f3b593e33\",\"choices\":[{\"index\":0,\"delta\":{\"role\":\"assistant\",\"content\":null},\"logprobs\":null,\"finish_reason\":null}],\"x_groq\":{\"id\":\"req_01jxj5at55e7ka3av6c6zgghc6\"}}\n\ndata: {\"id\":\"chatcmpl-bda185f6-a5d1-4bca-a598-94cc4188d845\",\"object\":\"chat.completion.chunk\",\"created\":1749735008,\"model\":\"llama-3.3-70b-versatile\",\"system_fingerprint\":\"fp_3f3b593e33\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"id\":\"mjvkk8pj4\",\"type\":\"function\",\"function\":{\"name\":\"json\",\"arguments\":\"{\\\"operations\\\":[{\\\"block\\\":\\\"\\\\u003cp\\\\u003eHello, world! Bold text. Link.\\\\u003c/p\\\\u003e\\\",\\\"id\\\":\\\"ref3$\\\",\\\"type\\\":\\\"update\\\"}]}\"},\"index\":0}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-bda185f6-a5d1-4bca-a598-94cc4188d845\",\"object\":\"chat.completion.chunk\",\"created\":1749735008,\"model\":\"llama-3.3-70b-versatile\",\"system_fingerprint\":\"fp_3f3b593e33\",\"choices\":[{\"index\":0,\"delta\":{},\"logprobs\":null,\"finish_reason\":\"tool_calls\"}],\"x_groq\":{\"id\":\"req_01jxj5at55e7ka3av6c6zgghc6\",\"usage\":{\"queue_time\":0.120376244,\"prompt_tokens\":930,\"prompt_time\":0.071824831,\"completion_tokens\":37,\"completion_time\":0.148695309,\"total_tokens\":967,\"total_time\":0.22052014}}}\n\ndata: [DONE]\n\n", "headers": [] } } \ No newline at end of file diff --git a/packages/xl-ai/src/api/formats/html-blocks/__snapshots__/htmlBlocks.test.ts/Update/__msw_snapshots__/groq.chat/llama-3.3-70b-versatile (streaming)/modify nested content_1_c335661f5c1022666f7905497d4a3189.json b/packages/xl-ai/src/api/formats/html-blocks/__snapshots__/htmlBlocks.test.ts/Update/__msw_snapshots__/groq.chat/llama-3.3-70b-versatile (streaming)/modify nested content_1_c335661f5c1022666f7905497d4a3189.json index 1a2fd131f4..7cb71e4b8f 100644 --- a/packages/xl-ai/src/api/formats/html-blocks/__snapshots__/htmlBlocks.test.ts/Update/__msw_snapshots__/groq.chat/llama-3.3-70b-versatile (streaming)/modify nested content_1_c335661f5c1022666f7905497d4a3189.json +++ b/packages/xl-ai/src/api/formats/html-blocks/__snapshots__/htmlBlocks.test.ts/Update/__msw_snapshots__/groq.chat/llama-3.3-70b-versatile (streaming)/modify nested content_1_c335661f5c1022666f7905497d4a3189.json @@ -9,7 +9,7 @@ "response": { "status": 200, "statusText": "", - "body": "data: {\"id\":\"chatcmpl-d522f1c2-3725-4663-8893-cb8c3c71b710\",\"object\":\"chat.completion.chunk\",\"created\":1749541782,\"model\":\"llama-3.3-70b-versatile\",\"system_fingerprint\":\"fp_3f3b593e33\",\"choices\":[{\"index\":0,\"delta\":{\"role\":\"assistant\",\"content\":null},\"logprobs\":null,\"finish_reason\":null}],\"x_groq\":{\"id\":\"req_01jxcd215jfs4tdppb0xgd9632\"}}\n\ndata: {\"id\":\"chatcmpl-d522f1c2-3725-4663-8893-cb8c3c71b710\",\"object\":\"chat.completion.chunk\",\"created\":1749541782,\"model\":\"llama-3.3-70b-versatile\",\"system_fingerprint\":\"fp_3f3b593e33\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"id\":\"call_debc\",\"type\":\"function\",\"function\":{\"name\":\"json\",\"arguments\":\"{\\\"operations\\\":[{\\\"block\\\":\\\"\\\\u003cp\\\\u003eAPPLES\\\\u003c/p\\\\u003e\\\",\\\"id\\\":\\\"ref2$\\\",\\\"type\\\":\\\"update\\\"}]}\"},\"index\":0}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-d522f1c2-3725-4663-8893-cb8c3c71b710\",\"object\":\"chat.completion.chunk\",\"created\":1749541782,\"model\":\"llama-3.3-70b-versatile\",\"system_fingerprint\":\"fp_3f3b593e33\",\"choices\":[{\"index\":0,\"delta\":{},\"logprobs\":null,\"finish_reason\":\"tool_calls\"}],\"x_groq\":{\"id\":\"req_01jxcd215jfs4tdppb0xgd9632\",\"usage\":{\"queue_time\":0.09399297099999998,\"prompt_tokens\":834,\"prompt_time\":0.061335412,\"completion_tokens\":32,\"completion_time\":0.116363636,\"total_tokens\":866,\"total_time\":0.177699048}}}\n\ndata: [DONE]\n\n", + "body": "data: {\"id\":\"chatcmpl-df7ca105-fced-41ce-ad45-5beb04788d16\",\"object\":\"chat.completion.chunk\",\"created\":1749735009,\"model\":\"llama-3.3-70b-versatile\",\"system_fingerprint\":\"fp_2ddfbb0da0\",\"choices\":[{\"index\":0,\"delta\":{\"role\":\"assistant\",\"content\":null},\"logprobs\":null,\"finish_reason\":null}],\"x_groq\":{\"id\":\"req_01jxj5avftfy9ae7d67xk37vnx\"}}\n\ndata: {\"id\":\"chatcmpl-df7ca105-fced-41ce-ad45-5beb04788d16\",\"object\":\"chat.completion.chunk\",\"created\":1749735010,\"model\":\"llama-3.3-70b-versatile\",\"system_fingerprint\":\"fp_2ddfbb0da0\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"id\":\"q33e2wb1n\",\"type\":\"function\",\"function\":{\"name\":\"json\",\"arguments\":\"{\\\"operations\\\":[{\\\"block\\\":\\\"\\\\u003cp\\\\u003eAPPLES\\\\u003c/p\\\\u003e\\\",\\\"id\\\":\\\"ref2$\\\",\\\"type\\\":\\\"update\\\"}]}\"},\"index\":0}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-df7ca105-fced-41ce-ad45-5beb04788d16\",\"object\":\"chat.completion.chunk\",\"created\":1749735010,\"model\":\"llama-3.3-70b-versatile\",\"system_fingerprint\":\"fp_2ddfbb0da0\",\"choices\":[{\"index\":0,\"delta\":{},\"logprobs\":null,\"finish_reason\":\"tool_calls\"}],\"x_groq\":{\"id\":\"req_01jxj5avftfy9ae7d67xk37vnx\",\"usage\":{\"queue_time\":0.093065395,\"prompt_tokens\":821,\"prompt_time\":0.08815517,\"completion_tokens\":28,\"completion_time\":0.102757079,\"total_tokens\":849,\"total_time\":0.190912249}}}\n\ndata: [DONE]\n\n", "headers": [] } } \ No newline at end of file diff --git a/packages/xl-ai/src/api/formats/html-blocks/__snapshots__/htmlBlocks.test.ts/Update/__msw_snapshots__/groq.chat/llama-3.3-70b-versatile (streaming)/modify parent content_1_73db91187a949699f0fd921ebe60d841.json b/packages/xl-ai/src/api/formats/html-blocks/__snapshots__/htmlBlocks.test.ts/Update/__msw_snapshots__/groq.chat/llama-3.3-70b-versatile (streaming)/modify parent content_1_73db91187a949699f0fd921ebe60d841.json index 3237421965..3cd21bfd14 100644 --- a/packages/xl-ai/src/api/formats/html-blocks/__snapshots__/htmlBlocks.test.ts/Update/__msw_snapshots__/groq.chat/llama-3.3-70b-versatile (streaming)/modify parent content_1_73db91187a949699f0fd921ebe60d841.json +++ b/packages/xl-ai/src/api/formats/html-blocks/__snapshots__/htmlBlocks.test.ts/Update/__msw_snapshots__/groq.chat/llama-3.3-70b-versatile (streaming)/modify parent content_1_73db91187a949699f0fd921ebe60d841.json @@ -9,7 +9,7 @@ "response": { "status": 200, "statusText": "", - "body": "data: {\"id\":\"chatcmpl-80188ef5-477e-44ce-b96c-c6a88ea6b2f4\",\"object\":\"chat.completion.chunk\",\"created\":1749541783,\"model\":\"llama-3.3-70b-versatile\",\"system_fingerprint\":\"fp_3f3b593e33\",\"choices\":[{\"index\":0,\"delta\":{\"role\":\"assistant\",\"content\":null},\"logprobs\":null,\"finish_reason\":null}],\"x_groq\":{\"id\":\"req_01jxcd21f8fs5ss8y1q3atx2tb\"}}\n\ndata: {\"id\":\"chatcmpl-80188ef5-477e-44ce-b96c-c6a88ea6b2f4\",\"object\":\"chat.completion.chunk\",\"created\":1749541783,\"model\":\"llama-3.3-70b-versatile\",\"system_fingerprint\":\"fp_3f3b593e33\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"id\":\"call_ck2m\",\"type\":\"function\",\"function\":{\"name\":\"json\",\"arguments\":\"{\\\"operations\\\":[{\\\"block\\\":\\\"\\\\u003cp\\\\u003eI NEED TO BUY:\\\\u003c/p\\\\u003e\\\",\\\"id\\\":\\\"ref1$\\\",\\\"type\\\":\\\"update\\\"}]}\"},\"index\":0}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-80188ef5-477e-44ce-b96c-c6a88ea6b2f4\",\"object\":\"chat.completion.chunk\",\"created\":1749541783,\"model\":\"llama-3.3-70b-versatile\",\"system_fingerprint\":\"fp_3f3b593e33\",\"choices\":[{\"index\":0,\"delta\":{},\"logprobs\":null,\"finish_reason\":\"tool_calls\"}],\"x_groq\":{\"id\":\"req_01jxcd21f8fs5ss8y1q3atx2tb\",\"usage\":{\"queue_time\":0.092275107,\"prompt_tokens\":836,\"prompt_time\":0.060862364,\"completion_tokens\":33,\"completion_time\":0.12,\"total_tokens\":869,\"total_time\":0.180862364}}}\n\ndata: [DONE]\n\n", + "body": "data: {\"id\":\"chatcmpl-2ac4240c-bb17-4eb4-aa83-85bf0d350ddf\",\"object\":\"chat.completion.chunk\",\"created\":1749735010,\"model\":\"llama-3.3-70b-versatile\",\"system_fingerprint\":\"fp_2ddfbb0da0\",\"choices\":[{\"index\":0,\"delta\":{\"role\":\"assistant\",\"content\":null},\"logprobs\":null,\"finish_reason\":null}],\"x_groq\":{\"id\":\"req_01jxj5avvse86adjxw0pbnkvvs\"}}\n\ndata: {\"id\":\"chatcmpl-2ac4240c-bb17-4eb4-aa83-85bf0d350ddf\",\"object\":\"chat.completion.chunk\",\"created\":1749735010,\"model\":\"llama-3.3-70b-versatile\",\"system_fingerprint\":\"fp_2ddfbb0da0\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"id\":\"28n90hyyt\",\"type\":\"function\",\"function\":{\"name\":\"json\",\"arguments\":\"{\\\"operations\\\":[{\\\"block\\\":\\\"\\\\u003cp\\\\u003eI NEED TO BUY:\\\\u003c/p\\\\u003e\\\",\\\"id\\\":\\\"ref1$\\\",\\\"type\\\":\\\"update\\\"}]}\"},\"index\":0}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-2ac4240c-bb17-4eb4-aa83-85bf0d350ddf\",\"object\":\"chat.completion.chunk\",\"created\":1749735010,\"model\":\"llama-3.3-70b-versatile\",\"system_fingerprint\":\"fp_2ddfbb0da0\",\"choices\":[{\"index\":0,\"delta\":{},\"logprobs\":null,\"finish_reason\":\"tool_calls\"}],\"x_groq\":{\"id\":\"req_01jxj5avvse86adjxw0pbnkvvs\",\"usage\":{\"queue_time\":0.093088333,\"prompt_tokens\":823,\"prompt_time\":0.063999636,\"completion_tokens\":29,\"completion_time\":0.117431576,\"total_tokens\":852,\"total_time\":0.181431212}}}\n\ndata: [DONE]\n\n", "headers": [] } } \ No newline at end of file diff --git a/packages/xl-ai/src/api/formats/html-blocks/__snapshots__/htmlBlocks.test.ts/Update/__msw_snapshots__/groq.chat/llama-3.3-70b-versatile (streaming)/plain source block, add mention_1_57f7d170977b8d3400a3a1d7182790b0.json b/packages/xl-ai/src/api/formats/html-blocks/__snapshots__/htmlBlocks.test.ts/Update/__msw_snapshots__/groq.chat/llama-3.3-70b-versatile (streaming)/plain source block, add mention_1_57f7d170977b8d3400a3a1d7182790b0.json index 29c3415a61..76a0b3c0d3 100644 --- a/packages/xl-ai/src/api/formats/html-blocks/__snapshots__/htmlBlocks.test.ts/Update/__msw_snapshots__/groq.chat/llama-3.3-70b-versatile (streaming)/plain source block, add mention_1_57f7d170977b8d3400a3a1d7182790b0.json +++ b/packages/xl-ai/src/api/formats/html-blocks/__snapshots__/htmlBlocks.test.ts/Update/__msw_snapshots__/groq.chat/llama-3.3-70b-versatile (streaming)/plain source block, add mention_1_57f7d170977b8d3400a3a1d7182790b0.json @@ -9,7 +9,7 @@ "response": { "status": 200, "statusText": "", - "body": "data: {\"id\":\"chatcmpl-cdf9cd90-e751-473a-bb13-03630f9cb85c\",\"object\":\"chat.completion.chunk\",\"created\":1749541780,\"model\":\"llama-3.3-70b-versatile\",\"system_fingerprint\":\"fp_3f3b593e33\",\"choices\":[{\"index\":0,\"delta\":{\"role\":\"assistant\",\"content\":null},\"logprobs\":null,\"finish_reason\":null}],\"x_groq\":{\"id\":\"req_01jxcd1z8efs4tf6m7xx4kh2wp\"}}\n\ndata: {\"id\":\"chatcmpl-cdf9cd90-e751-473a-bb13-03630f9cb85c\",\"object\":\"chat.completion.chunk\",\"created\":1749541781,\"model\":\"llama-3.3-70b-versatile\",\"system_fingerprint\":\"fp_3f3b593e33\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"id\":\"call_m7cn\",\"type\":\"function\",\"function\":{\"name\":\"json\",\"arguments\":\"{\\\"operations\\\":[{\\\"block\\\":\\\"\\\\u003cp\\\\u003eHello, \\\\u003cspan data-inline-content-type=\\\\\\\"mention\\\\\\\" data-user=\\\\\\\"Jane Doe\\\\\\\"\\\\u003e@Jane Doe\\\\u003c/span\\\\u003e!\\\\u003c/p\\\\u003e\\\",\\\"id\\\":\\\"ref1$\\\",\\\"type\\\":\\\"update\\\"}]}\"},\"index\":0}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-cdf9cd90-e751-473a-bb13-03630f9cb85c\",\"object\":\"chat.completion.chunk\",\"created\":1749541781,\"model\":\"llama-3.3-70b-versatile\",\"system_fingerprint\":\"fp_3f3b593e33\",\"choices\":[{\"index\":0,\"delta\":{},\"logprobs\":null,\"finish_reason\":\"tool_calls\"}],\"x_groq\":{\"id\":\"req_01jxcd1z8efs4tf6m7xx4kh2wp\",\"usage\":{\"queue_time\":0.09458115299999999,\"prompt_tokens\":941,\"prompt_time\":0.068235793,\"completion_tokens\":48,\"completion_time\":0.174545455,\"total_tokens\":989,\"total_time\":0.242781248}}}\n\ndata: [DONE]\n\n", + "body": "data: {\"id\":\"chatcmpl-db9fe6ba-42d0-4a72-98f3-f1f03b3d19b2\",\"object\":\"chat.completion.chunk\",\"created\":1749735007,\"model\":\"llama-3.3-70b-versatile\",\"system_fingerprint\":\"fp_6507bcfb6f\",\"choices\":[{\"index\":0,\"delta\":{\"role\":\"assistant\",\"content\":null},\"logprobs\":null,\"finish_reason\":null}],\"x_groq\":{\"id\":\"req_01jxj5as5efxvt3crw5aqszns8\"}}\n\ndata: {\"id\":\"chatcmpl-db9fe6ba-42d0-4a72-98f3-f1f03b3d19b2\",\"object\":\"chat.completion.chunk\",\"created\":1749735007,\"model\":\"llama-3.3-70b-versatile\",\"system_fingerprint\":\"fp_6507bcfb6f\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"id\":\"3hv0g18xg\",\"type\":\"function\",\"function\":{\"name\":\"json\",\"arguments\":\"{\\\"operations\\\":[{\\\"block\\\":\\\"\\\\u003cp\\\\u003eHello, \\\\u003cspan data-inline-content-type=\\\\\\\"mention\\\\\\\" data-user=\\\\\\\"Jane Doe\\\\\\\"\\\\u003e@Jane Doe\\\\u003c/span\\\\u003e!\\\\u003c/p\\\\u003e\\\",\\\"id\\\":\\\"ref1$\\\",\\\"type\\\":\\\"update\\\"}]}\"},\"index\":0}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-db9fe6ba-42d0-4a72-98f3-f1f03b3d19b2\",\"object\":\"chat.completion.chunk\",\"created\":1749735007,\"model\":\"llama-3.3-70b-versatile\",\"system_fingerprint\":\"fp_6507bcfb6f\",\"choices\":[{\"index\":0,\"delta\":{},\"logprobs\":null,\"finish_reason\":\"tool_calls\"}],\"x_groq\":{\"id\":\"req_01jxj5as5efxvt3crw5aqszns8\",\"usage\":{\"queue_time\":0.091132312,\"prompt_tokens\":928,\"prompt_time\":0.070888062,\"completion_tokens\":52,\"completion_time\":0.189090909,\"total_tokens\":980,\"total_time\":0.259978971}}}\n\ndata: [DONE]\n\n", "headers": [] } } \ No newline at end of file diff --git a/packages/xl-ai/src/api/formats/html-blocks/__snapshots__/htmlBlocks.test.ts/Update/__msw_snapshots__/groq.chat/llama-3.3-70b-versatile (streaming)/standard update_1_67b27460b36b3013a36967448a8522c4.json b/packages/xl-ai/src/api/formats/html-blocks/__snapshots__/htmlBlocks.test.ts/Update/__msw_snapshots__/groq.chat/llama-3.3-70b-versatile (streaming)/standard update_1_67b27460b36b3013a36967448a8522c4.json index 32ec8632f5..3f3e5b657b 100644 --- a/packages/xl-ai/src/api/formats/html-blocks/__snapshots__/htmlBlocks.test.ts/Update/__msw_snapshots__/groq.chat/llama-3.3-70b-versatile (streaming)/standard update_1_67b27460b36b3013a36967448a8522c4.json +++ b/packages/xl-ai/src/api/formats/html-blocks/__snapshots__/htmlBlocks.test.ts/Update/__msw_snapshots__/groq.chat/llama-3.3-70b-versatile (streaming)/standard update_1_67b27460b36b3013a36967448a8522c4.json @@ -9,7 +9,7 @@ "response": { "status": 200, "statusText": "", - "body": "data: {\"id\":\"chatcmpl-0d5d4b40-5cc3-4306-b0ef-8b9000e6fef8\",\"object\":\"chat.completion.chunk\",\"created\":1749541776,\"model\":\"llama-3.3-70b-versatile\",\"system_fingerprint\":\"fp_3f3b593e33\",\"choices\":[{\"index\":0,\"delta\":{\"role\":\"assistant\",\"content\":null},\"logprobs\":null,\"finish_reason\":null}],\"x_groq\":{\"id\":\"req_01jxcd1vecet79x2v3e939yqkg\"}}\n\ndata: {\"id\":\"chatcmpl-0d5d4b40-5cc3-4306-b0ef-8b9000e6fef8\",\"object\":\"chat.completion.chunk\",\"created\":1749541777,\"model\":\"llama-3.3-70b-versatile\",\"system_fingerprint\":\"fp_3f3b593e33\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"id\":\"call_d6nh\",\"type\":\"function\",\"function\":{\"name\":\"json\",\"arguments\":\"{\\\"operations\\\":[{\\\"block\\\":\\\"\\\\u003cp\\\\u003eHallo, Welt!\\\\u003c/p\\\\u003e\\\",\\\"id\\\":\\\"ref1$\\\",\\\"type\\\":\\\"update\\\"}]}\"},\"index\":0}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-0d5d4b40-5cc3-4306-b0ef-8b9000e6fef8\",\"object\":\"chat.completion.chunk\",\"created\":1749541777,\"model\":\"llama-3.3-70b-versatile\",\"system_fingerprint\":\"fp_3f3b593e33\",\"choices\":[{\"index\":0,\"delta\":{},\"logprobs\":null,\"finish_reason\":\"tool_calls\"}],\"x_groq\":{\"id\":\"req_01jxcd1vecet79x2v3e939yqkg\",\"usage\":{\"queue_time\":0.09426749599999999,\"prompt_tokens\":932,\"prompt_time\":0.070719464,\"completion_tokens\":33,\"completion_time\":0.12,\"total_tokens\":965,\"total_time\":0.190719464}}}\n\ndata: [DONE]\n\n", + "body": "data: {\"id\":\"chatcmpl-f58097b7-8214-4508-9101-7b0cee56b05b\",\"object\":\"chat.completion.chunk\",\"created\":1749735003,\"model\":\"llama-3.3-70b-versatile\",\"system_fingerprint\":\"fp_3f3b593e33\",\"choices\":[{\"index\":0,\"delta\":{\"role\":\"assistant\",\"content\":null},\"logprobs\":null,\"finish_reason\":null}],\"x_groq\":{\"id\":\"req_01jxj5anabe6zv7sd3sp6y81kz\"}}\n\ndata: {\"id\":\"chatcmpl-f58097b7-8214-4508-9101-7b0cee56b05b\",\"object\":\"chat.completion.chunk\",\"created\":1749735003,\"model\":\"llama-3.3-70b-versatile\",\"system_fingerprint\":\"fp_3f3b593e33\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"id\":\"jqq92j178\",\"type\":\"function\",\"function\":{\"name\":\"json\",\"arguments\":\"{\\\"operations\\\":[{\\\"block\\\":\\\"\\\\u003cp\\\\u003eHallo, Welt!\\\\u003c/p\\\\u003e\\\",\\\"id\\\":\\\"ref1$\\\",\\\"type\\\":\\\"update\\\"}]}\"},\"index\":0}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-f58097b7-8214-4508-9101-7b0cee56b05b\",\"object\":\"chat.completion.chunk\",\"created\":1749735003,\"model\":\"llama-3.3-70b-versatile\",\"system_fingerprint\":\"fp_3f3b593e33\",\"choices\":[{\"index\":0,\"delta\":{},\"logprobs\":null,\"finish_reason\":\"tool_calls\"}],\"x_groq\":{\"id\":\"req_01jxj5anabe6zv7sd3sp6y81kz\",\"usage\":{\"queue_time\":0.09239618899999999,\"prompt_tokens\":919,\"prompt_time\":0.067363913,\"completion_tokens\":33,\"completion_time\":0.12,\"total_tokens\":952,\"total_time\":0.187363913}}}\n\ndata: [DONE]\n\n", "headers": [] } } \ No newline at end of file diff --git a/packages/xl-ai/src/api/formats/html-blocks/__snapshots__/htmlBlocks.test.ts/Update/__msw_snapshots__/groq.chat/llama-3.3-70b-versatile (streaming)/styles + ic in source block, remove mark_1_abd6ba31606c51fb682ca64b85af7008.json b/packages/xl-ai/src/api/formats/html-blocks/__snapshots__/htmlBlocks.test.ts/Update/__msw_snapshots__/groq.chat/llama-3.3-70b-versatile (streaming)/styles + ic in source block, remove mark_1_abd6ba31606c51fb682ca64b85af7008.json index cc977ab418..93fd907c89 100644 --- a/packages/xl-ai/src/api/formats/html-blocks/__snapshots__/htmlBlocks.test.ts/Update/__msw_snapshots__/groq.chat/llama-3.3-70b-versatile (streaming)/styles + ic in source block, remove mark_1_abd6ba31606c51fb682ca64b85af7008.json +++ b/packages/xl-ai/src/api/formats/html-blocks/__snapshots__/htmlBlocks.test.ts/Update/__msw_snapshots__/groq.chat/llama-3.3-70b-versatile (streaming)/styles + ic in source block, remove mark_1_abd6ba31606c51fb682ca64b85af7008.json @@ -9,7 +9,7 @@ "response": { "status": 200, "statusText": "", - "body": "data: {\"id\":\"chatcmpl-eec8bde8-4cfc-4a63-96b2-467d595ba24d\",\"object\":\"chat.completion.chunk\",\"created\":1749541779,\"model\":\"llama-3.3-70b-versatile\",\"system_fingerprint\":\"fp_3f3b593e33\",\"choices\":[{\"index\":0,\"delta\":{\"role\":\"assistant\",\"content\":null},\"logprobs\":null,\"finish_reason\":null}],\"x_groq\":{\"id\":\"req_01jxcd1xmkfygatmjahaabjesr\"}}\n\ndata: {\"id\":\"chatcmpl-eec8bde8-4cfc-4a63-96b2-467d595ba24d\",\"object\":\"chat.completion.chunk\",\"created\":1749541779,\"model\":\"llama-3.3-70b-versatile\",\"system_fingerprint\":\"fp_3f3b593e33\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"id\":\"call_g8a4\",\"type\":\"function\",\"function\":{\"name\":\"json\",\"arguments\":\"{\\\"operations\\\":[{\\\"block\\\":\\\"\\\\u003cp\\\\u003eHello, \\\\u003cspan data-inline-content-type=\\\\\\\"mention\\\\\\\" data-user=\\\\\\\"John Doe\\\\\\\"\\\\u003e@John Doe\\\\u003c/span\\\\u003e! \\\\u003cspan\\\\u003eHow are you doing?\\\\u003c/span\\\\u003e \\\\u003cspan data-text-color=\\\\\\\"blue\\\\\\\"\\\\u003eThis text is blue!\\\\u003c/span\\\\u003e\\\\u003c/p\\\\u003e\\\",\\\"id\\\":\\\"ref2$\\\",\\\"type\\\":\\\"update\\\"}]}\"},\"index\":0}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-eec8bde8-4cfc-4a63-96b2-467d595ba24d\",\"object\":\"chat.completion.chunk\",\"created\":1749541779,\"model\":\"llama-3.3-70b-versatile\",\"system_fingerprint\":\"fp_3f3b593e33\",\"choices\":[{\"index\":0,\"delta\":{},\"logprobs\":null,\"finish_reason\":\"tool_calls\"}],\"x_groq\":{\"id\":\"req_01jxcd1xmkfygatmjahaabjesr\",\"usage\":{\"queue_time\":0.09353313199999999,\"prompt_tokens\":934,\"prompt_time\":0.071977719,\"completion_tokens\":73,\"completion_time\":0.265454545,\"total_tokens\":1007,\"total_time\":0.337432264}}}\n\ndata: [DONE]\n\n", + "body": "data: {\"id\":\"chatcmpl-6adcf90a-2455-498f-8323-e2e338e80d80\",\"object\":\"chat.completion.chunk\",\"created\":1749735005,\"model\":\"llama-3.3-70b-versatile\",\"system_fingerprint\":\"fp_3f3b593e33\",\"choices\":[{\"index\":0,\"delta\":{\"role\":\"assistant\",\"content\":null},\"logprobs\":null,\"finish_reason\":null}],\"x_groq\":{\"id\":\"req_01jxj5aqhxfxrv3kvg9by2hher\"}}\n\ndata: {\"id\":\"chatcmpl-6adcf90a-2455-498f-8323-e2e338e80d80\",\"object\":\"chat.completion.chunk\",\"created\":1749735006,\"model\":\"llama-3.3-70b-versatile\",\"system_fingerprint\":\"fp_3f3b593e33\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"id\":\"jzs0tg1sv\",\"type\":\"function\",\"function\":{\"name\":\"json\",\"arguments\":\"{\\\"operations\\\":[{\\\"block\\\":\\\"\\\\u003cp\\\\u003eHello, \\\\u003cspan data-inline-content-type=\\\\\\\"mention\\\\\\\" data-user=\\\\\\\"John Doe\\\\\\\"\\\\u003e@John Doe\\\\u003c/span\\\\u003e! How are you doing? \\\\u003cspan data-text-color=\\\\\\\"blue\\\\\\\"\\\\u003eThis text is blue!\\\\u003c/span\\\\u003e\\\\u003c/p\\\\u003e\\\",\\\"id\\\":\\\"ref2$\\\",\\\"type\\\":\\\"update\\\"}]}\"},\"index\":0}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-6adcf90a-2455-498f-8323-e2e338e80d80\",\"object\":\"chat.completion.chunk\",\"created\":1749735006,\"model\":\"llama-3.3-70b-versatile\",\"system_fingerprint\":\"fp_3f3b593e33\",\"choices\":[{\"index\":0,\"delta\":{},\"logprobs\":null,\"finish_reason\":\"tool_calls\"}],\"x_groq\":{\"id\":\"req_01jxj5aqhxfxrv3kvg9by2hher\",\"usage\":{\"queue_time\":0.091109867,\"prompt_tokens\":921,\"prompt_time\":0.068135817,\"completion_tokens\":68,\"completion_time\":0.247272727,\"total_tokens\":989,\"total_time\":0.315408544}}}\n\ndata: [DONE]\n\n", "headers": [] } } \ No newline at end of file diff --git a/packages/xl-ai/src/api/formats/html-blocks/__snapshots__/htmlBlocks.test.ts/Update/__msw_snapshots__/groq.chat/llama-3.3-70b-versatile (streaming)/styles + ic in source block, remove mention_1_bcb2fc9b7ec7eb1ae370d9387dc7e505.json b/packages/xl-ai/src/api/formats/html-blocks/__snapshots__/htmlBlocks.test.ts/Update/__msw_snapshots__/groq.chat/llama-3.3-70b-versatile (streaming)/styles + ic in source block, remove mention_1_bcb2fc9b7ec7eb1ae370d9387dc7e505.json index 46aa36f937..8b96244767 100644 --- a/packages/xl-ai/src/api/formats/html-blocks/__snapshots__/htmlBlocks.test.ts/Update/__msw_snapshots__/groq.chat/llama-3.3-70b-versatile (streaming)/styles + ic in source block, remove mention_1_bcb2fc9b7ec7eb1ae370d9387dc7e505.json +++ b/packages/xl-ai/src/api/formats/html-blocks/__snapshots__/htmlBlocks.test.ts/Update/__msw_snapshots__/groq.chat/llama-3.3-70b-versatile (streaming)/styles + ic in source block, remove mention_1_bcb2fc9b7ec7eb1ae370d9387dc7e505.json @@ -9,7 +9,7 @@ "response": { "status": 200, "statusText": "", - "body": "data: {\"id\":\"chatcmpl-6a55d85d-cde1-492c-aaf5-a604372fbdfe\",\"object\":\"chat.completion.chunk\",\"created\":1749541779,\"model\":\"llama-3.3-70b-versatile\",\"system_fingerprint\":\"fp_3f3b593e33\",\"choices\":[{\"index\":0,\"delta\":{\"role\":\"assistant\",\"content\":null},\"logprobs\":null,\"finish_reason\":null}],\"x_groq\":{\"id\":\"req_01jxcd1y3hfs48c3cf49emv223\"}}\n\ndata: {\"id\":\"chatcmpl-6a55d85d-cde1-492c-aaf5-a604372fbdfe\",\"object\":\"chat.completion.chunk\",\"created\":1749541779,\"model\":\"llama-3.3-70b-versatile\",\"system_fingerprint\":\"fp_3f3b593e33\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"id\":\"call_p80x\",\"type\":\"function\",\"function\":{\"name\":\"json\",\"arguments\":\"{\\\"operations\\\":[{\\\"block\\\":\\\"\\\\u003cp\\\\u003eHello! \\\\u003cstrong\\\\u003eHow are you doing?\\\\u003c/strong\\\\u003e \\\\u003cspan data-text-color=\\\\\\\"blue\\\\\\\"\\\\u003eThis text is blue!\\\\u003c/span\\\\u003e\\\\u003c/p\\\\u003e\\\",\\\"id\\\":\\\"ref2$\\\",\\\"type\\\":\\\"update\\\"}]}\"},\"index\":0}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-6a55d85d-cde1-492c-aaf5-a604372fbdfe\",\"object\":\"chat.completion.chunk\",\"created\":1749541779,\"model\":\"llama-3.3-70b-versatile\",\"system_fingerprint\":\"fp_3f3b593e33\",\"choices\":[{\"index\":0,\"delta\":{},\"logprobs\":null,\"finish_reason\":\"tool_calls\"}],\"x_groq\":{\"id\":\"req_01jxcd1y3hfs48c3cf49emv223\",\"usage\":{\"queue_time\":0.09374959299999999,\"prompt_tokens\":950,\"prompt_time\":0.082107346,\"completion_tokens\":51,\"completion_time\":0.185454545,\"total_tokens\":1001,\"total_time\":0.267561891}}}\n\ndata: [DONE]\n\n", + "body": "data: {\"id\":\"chatcmpl-406505f7-519b-47de-80d3-dffcaf5df2ae\",\"object\":\"chat.completion.chunk\",\"created\":1749735006,\"model\":\"llama-3.3-70b-versatile\",\"system_fingerprint\":\"fp_3f3b593e33\",\"choices\":[{\"index\":0,\"delta\":{\"role\":\"assistant\",\"content\":null},\"logprobs\":null,\"finish_reason\":null}],\"x_groq\":{\"id\":\"req_01jxj5ar0fe75tkb4ehkv6rsmj\"}}\n\ndata: {\"id\":\"chatcmpl-406505f7-519b-47de-80d3-dffcaf5df2ae\",\"object\":\"chat.completion.chunk\",\"created\":1749735006,\"model\":\"llama-3.3-70b-versatile\",\"system_fingerprint\":\"fp_3f3b593e33\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"id\":\"f49z9f6np\",\"type\":\"function\",\"function\":{\"name\":\"json\",\"arguments\":\"{\\\"operations\\\":[{\\\"block\\\":\\\"\\\\u003cp\\\\u003eHello! \\\\u003cstrong\\\\u003eHow are you doing?\\\\u003c/strong\\\\u003e \\\\u003cspan data-text-color=\\\\\\\"blue\\\\\\\"\\\\u003eThis text is blue!\\\\u003c/span\\\\u003e\\\\u003c/p\\\\u003e\\\",\\\"id\\\":\\\"ref2$\\\",\\\"type\\\":\\\"update\\\"}]}\"},\"index\":0}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-406505f7-519b-47de-80d3-dffcaf5df2ae\",\"object\":\"chat.completion.chunk\",\"created\":1749735006,\"model\":\"llama-3.3-70b-versatile\",\"system_fingerprint\":\"fp_3f3b593e33\",\"choices\":[{\"index\":0,\"delta\":{},\"logprobs\":null,\"finish_reason\":\"tool_calls\"}],\"x_groq\":{\"id\":\"req_01jxj5ar0fe75tkb4ehkv6rsmj\",\"usage\":{\"queue_time\":0.09850561900000002,\"prompt_tokens\":937,\"prompt_time\":0.061384154,\"completion_tokens\":51,\"completion_time\":0.185454545,\"total_tokens\":988,\"total_time\":0.246838699}}}\n\ndata: [DONE]\n\n", "headers": [] } } \ No newline at end of file diff --git a/packages/xl-ai/src/api/formats/html-blocks/__snapshots__/htmlBlocks.test.ts/Update/__msw_snapshots__/groq.chat/llama-3.3-70b-versatile (streaming)/styles + ic in source block, replace content_1_9e6d5cd399d444173556b9dc0afc3334.json b/packages/xl-ai/src/api/formats/html-blocks/__snapshots__/htmlBlocks.test.ts/Update/__msw_snapshots__/groq.chat/llama-3.3-70b-versatile (streaming)/styles + ic in source block, replace content_1_9e6d5cd399d444173556b9dc0afc3334.json index 01a3a8e016..35ae662185 100644 --- a/packages/xl-ai/src/api/formats/html-blocks/__snapshots__/htmlBlocks.test.ts/Update/__msw_snapshots__/groq.chat/llama-3.3-70b-versatile (streaming)/styles + ic in source block, replace content_1_9e6d5cd399d444173556b9dc0afc3334.json +++ b/packages/xl-ai/src/api/formats/html-blocks/__snapshots__/htmlBlocks.test.ts/Update/__msw_snapshots__/groq.chat/llama-3.3-70b-versatile (streaming)/styles + ic in source block, replace content_1_9e6d5cd399d444173556b9dc0afc3334.json @@ -9,7 +9,7 @@ "response": { "status": 200, "statusText": "", - "body": "data: {\"id\":\"chatcmpl-93a8439d-7acc-48b6-a407-cffa8fe523fa\",\"object\":\"chat.completion.chunk\",\"created\":1749541778,\"model\":\"llama-3.3-70b-versatile\",\"system_fingerprint\":\"fp_2ddfbb0da0\",\"choices\":[{\"index\":0,\"delta\":{\"role\":\"assistant\",\"content\":null},\"logprobs\":null,\"finish_reason\":null}],\"x_groq\":{\"id\":\"req_01jxcd1wsbet89dtfp06sx9a2d\"}}\n\ndata: {\"id\":\"chatcmpl-93a8439d-7acc-48b6-a407-cffa8fe523fa\",\"object\":\"chat.completion.chunk\",\"created\":1749541778,\"model\":\"llama-3.3-70b-versatile\",\"system_fingerprint\":\"fp_2ddfbb0da0\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"id\":\"call_60xj\",\"type\":\"function\",\"function\":{\"name\":\"json\",\"arguments\":\"{\\\"operations\\\":[{\\\"block\\\":\\\"\\\\u003cp\\\\u003eHello, updated content\\\\u003c/p\\\\u003e\\\",\\\"id\\\":\\\"ref2$\\\",\\\"type\\\":\\\"update\\\"}]}\"},\"index\":0}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-93a8439d-7acc-48b6-a407-cffa8fe523fa\",\"object\":\"chat.completion.chunk\",\"created\":1749541778,\"model\":\"llama-3.3-70b-versatile\",\"system_fingerprint\":\"fp_2ddfbb0da0\",\"choices\":[{\"index\":0,\"delta\":{},\"logprobs\":null,\"finish_reason\":\"tool_calls\"}],\"x_groq\":{\"id\":\"req_01jxcd1wsbet89dtfp06sx9a2d\",\"usage\":{\"queue_time\":0.095219455,\"prompt_tokens\":940,\"prompt_time\":0.06791866,\"completion_tokens\":33,\"completion_time\":0.12,\"total_tokens\":973,\"total_time\":0.18791866}}}\n\ndata: [DONE]\n\n", + "body": "data: {\"id\":\"chatcmpl-e3a3d75a-6a9b-4434-ab07-ae8d5556b602\",\"object\":\"chat.completion.chunk\",\"created\":1749735004,\"model\":\"llama-3.3-70b-versatile\",\"system_fingerprint\":\"fp_3f3b593e33\",\"choices\":[{\"index\":0,\"delta\":{\"role\":\"assistant\",\"content\":null},\"logprobs\":null,\"finish_reason\":null}],\"x_groq\":{\"id\":\"req_01jxj5apndfd7rp0qkwmvgk1k9\"}}\n\ndata: {\"id\":\"chatcmpl-e3a3d75a-6a9b-4434-ab07-ae8d5556b602\",\"object\":\"chat.completion.chunk\",\"created\":1749735005,\"model\":\"llama-3.3-70b-versatile\",\"system_fingerprint\":\"fp_3f3b593e33\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"id\":\"j4wtzpwq7\",\"type\":\"function\",\"function\":{\"name\":\"json\",\"arguments\":\"{\\\"operations\\\":[{\\\"block\\\":\\\"\\\\u003cp\\\\u003eHello, updated content\\\\u003c/p\\\\u003e\\\",\\\"id\\\":\\\"ref2$\\\",\\\"type\\\":\\\"update\\\"}]}\"},\"index\":0}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-e3a3d75a-6a9b-4434-ab07-ae8d5556b602\",\"object\":\"chat.completion.chunk\",\"created\":1749735005,\"model\":\"llama-3.3-70b-versatile\",\"system_fingerprint\":\"fp_3f3b593e33\",\"choices\":[{\"index\":0,\"delta\":{},\"logprobs\":null,\"finish_reason\":\"tool_calls\"}],\"x_groq\":{\"id\":\"req_01jxj5apndfd7rp0qkwmvgk1k9\",\"usage\":{\"queue_time\":0.09943898600000001,\"prompt_tokens\":927,\"prompt_time\":0.087805571,\"completion_tokens\":29,\"completion_time\":0.123426203,\"total_tokens\":956,\"total_time\":0.211231774}}}\n\ndata: [DONE]\n\n", "headers": [] } } \ No newline at end of file diff --git a/packages/xl-ai/src/api/formats/html-blocks/__snapshots__/htmlBlocks.test.ts/Update/__msw_snapshots__/groq.chat/llama-3.3-70b-versatile (streaming)/styles + ic in source block, update mention prop_1_e1d72f9616d34022fba9ea219eb13748.json b/packages/xl-ai/src/api/formats/html-blocks/__snapshots__/htmlBlocks.test.ts/Update/__msw_snapshots__/groq.chat/llama-3.3-70b-versatile (streaming)/styles + ic in source block, update mention prop_1_e1d72f9616d34022fba9ea219eb13748.json index 3743a2f606..c83c679166 100644 --- a/packages/xl-ai/src/api/formats/html-blocks/__snapshots__/htmlBlocks.test.ts/Update/__msw_snapshots__/groq.chat/llama-3.3-70b-versatile (streaming)/styles + ic in source block, update mention prop_1_e1d72f9616d34022fba9ea219eb13748.json +++ b/packages/xl-ai/src/api/formats/html-blocks/__snapshots__/htmlBlocks.test.ts/Update/__msw_snapshots__/groq.chat/llama-3.3-70b-versatile (streaming)/styles + ic in source block, update mention prop_1_e1d72f9616d34022fba9ea219eb13748.json @@ -9,7 +9,7 @@ "response": { "status": 200, "statusText": "", - "body": "data: {\"id\":\"chatcmpl-d502356c-5a4f-418f-8dbc-d7ca7e5ce2c0\",\"object\":\"chat.completion.chunk\",\"created\":1749541781,\"model\":\"llama-3.3-70b-versatile\",\"system_fingerprint\":\"fp_2ddfbb0da0\",\"choices\":[{\"index\":0,\"delta\":{\"role\":\"assistant\",\"content\":null},\"logprobs\":null,\"finish_reason\":null}],\"x_groq\":{\"id\":\"req_01jxcd1zmaet88dh3a60fdnrty\"}}\n\ndata: {\"id\":\"chatcmpl-d502356c-5a4f-418f-8dbc-d7ca7e5ce2c0\",\"object\":\"chat.completion.chunk\",\"created\":1749541781,\"model\":\"llama-3.3-70b-versatile\",\"system_fingerprint\":\"fp_2ddfbb0da0\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"id\":\"call_dbz6\",\"type\":\"function\",\"function\":{\"name\":\"json\",\"arguments\":\"{\\\"operations\\\":[{\\\"block\\\":\\\"\\\\u003cp\\\\u003eHello, \\\\u003cspan data-inline-content-type=\\\\\\\"mention\\\\\\\" data-user=\\\\\\\"Jane Doe\\\\\\\"\\\\u003e@Jane Doe\\\\u003c/span\\\\u003e! \\\\u003cstrong\\\\u003eHow are you doing?\\\\u003c/strong\\\\u003e \\\\u003cspan data-text-color=\\\\\\\"blue\\\\\\\"\\\\u003eThis text is blue!\\\\u003c/span\\\\u003e\\\\u003c/p\\\\u003e\\\",\\\"id\\\":\\\"ref2$\\\",\\\"type\\\":\\\"update\\\"}]}\"},\"index\":0}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-d502356c-5a4f-418f-8dbc-d7ca7e5ce2c0\",\"object\":\"chat.completion.chunk\",\"created\":1749541781,\"model\":\"llama-3.3-70b-versatile\",\"system_fingerprint\":\"fp_2ddfbb0da0\",\"choices\":[{\"index\":0,\"delta\":{},\"logprobs\":null,\"finish_reason\":\"tool_calls\"}],\"x_groq\":{\"id\":\"req_01jxcd1zmaet88dh3a60fdnrty\",\"usage\":{\"queue_time\":0.092446193,\"prompt_tokens\":932,\"prompt_time\":0.067555236,\"completion_tokens\":77,\"completion_time\":0.28,\"total_tokens\":1009,\"total_time\":0.347555236}}}\n\ndata: [DONE]\n\n", + "body": "data: {\"id\":\"chatcmpl-682c14cc-96f8-4138-9bba-165b02d7ccd9\",\"object\":\"chat.completion.chunk\",\"created\":1749735007,\"model\":\"llama-3.3-70b-versatile\",\"system_fingerprint\":\"fp_6507bcfb6f\",\"choices\":[{\"index\":0,\"delta\":{\"role\":\"assistant\",\"content\":null},\"logprobs\":null,\"finish_reason\":null}],\"x_groq\":{\"id\":\"req_01jxj5asjbfdavajvbd5hhaj2g\"}}\n\ndata: {\"id\":\"chatcmpl-682c14cc-96f8-4138-9bba-165b02d7ccd9\",\"object\":\"chat.completion.chunk\",\"created\":1749735008,\"model\":\"llama-3.3-70b-versatile\",\"system_fingerprint\":\"fp_6507bcfb6f\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"id\":\"jjqknz2st\",\"type\":\"function\",\"function\":{\"name\":\"json\",\"arguments\":\"{\\\"operations\\\":[{\\\"block\\\":\\\"\\\\u003cp\\\\u003eHello, \\\\u003cspan data-inline-content-type=\\\\\\\"mention\\\\\\\" data-user=\\\\\\\"Jane Doe\\\\\\\"\\\\u003e@Jane Doe\\\\u003c/span\\\\u003e! \\\\u003cstrong\\\\u003eHow are you doing?\\\\u003c/strong\\\\u003e \\\\u003cspan data-text-color=\\\\\\\"blue\\\\\\\"\\\\u003eThis text is blue!\\\\u003c/span\\\\u003e\\\\u003c/p\\\\u003e\\\",\\\"id\\\":\\\"ref2$\\\",\\\"type\\\":\\\"update\\\"}]}\"},\"index\":0}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-682c14cc-96f8-4138-9bba-165b02d7ccd9\",\"object\":\"chat.completion.chunk\",\"created\":1749735008,\"model\":\"llama-3.3-70b-versatile\",\"system_fingerprint\":\"fp_6507bcfb6f\",\"choices\":[{\"index\":0,\"delta\":{},\"logprobs\":null,\"finish_reason\":\"tool_calls\"}],\"x_groq\":{\"id\":\"req_01jxj5asjbfdavajvbd5hhaj2g\",\"usage\":{\"queue_time\":0.091396084,\"prompt_tokens\":919,\"prompt_time\":0.06833225,\"completion_tokens\":77,\"completion_time\":0.28,\"total_tokens\":996,\"total_time\":0.34833225}}}\n\ndata: [DONE]\n\n", "headers": [] } } \ No newline at end of file diff --git a/packages/xl-ai/src/api/formats/html-blocks/__snapshots__/htmlBlocks.test.ts/Update/__msw_snapshots__/groq.chat/llama-3.3-70b-versatile (streaming)/styles + ic in source block, update text_1_bd11c0a3efe0e2b04a0133c6ca73a5cd.json b/packages/xl-ai/src/api/formats/html-blocks/__snapshots__/htmlBlocks.test.ts/Update/__msw_snapshots__/groq.chat/llama-3.3-70b-versatile (streaming)/styles + ic in source block, update text_1_bd11c0a3efe0e2b04a0133c6ca73a5cd.json index 01e8d0b7f6..c2f05be482 100644 --- a/packages/xl-ai/src/api/formats/html-blocks/__snapshots__/htmlBlocks.test.ts/Update/__msw_snapshots__/groq.chat/llama-3.3-70b-versatile (streaming)/styles + ic in source block, update text_1_bd11c0a3efe0e2b04a0133c6ca73a5cd.json +++ b/packages/xl-ai/src/api/formats/html-blocks/__snapshots__/htmlBlocks.test.ts/Update/__msw_snapshots__/groq.chat/llama-3.3-70b-versatile (streaming)/styles + ic in source block, update text_1_bd11c0a3efe0e2b04a0133c6ca73a5cd.json @@ -9,7 +9,7 @@ "response": { "status": 200, "statusText": "", - "body": "data: {\"id\":\"chatcmpl-fcda3dc4-fc8d-4742-a869-534cfe6e4914\",\"object\":\"chat.completion.chunk\",\"created\":1749541778,\"model\":\"llama-3.3-70b-versatile\",\"system_fingerprint\":\"fp_2ddfbb0da0\",\"choices\":[{\"index\":0,\"delta\":{\"role\":\"assistant\",\"content\":null},\"logprobs\":null,\"finish_reason\":null}],\"x_groq\":{\"id\":\"req_01jxcd1x55fs4av68p3pxn36mj\"}}\n\ndata: {\"id\":\"chatcmpl-fcda3dc4-fc8d-4742-a869-534cfe6e4914\",\"object\":\"chat.completion.chunk\",\"created\":1749541778,\"model\":\"llama-3.3-70b-versatile\",\"system_fingerprint\":\"fp_2ddfbb0da0\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"id\":\"call_57w8\",\"type\":\"function\",\"function\":{\"name\":\"json\",\"arguments\":\"{\\\"operations\\\":[{\\\"block\\\":\\\"\\\\u003cp\\\\u003eHallo, \\\\u003cspan data-inline-content-type=\\\\\\\"mention\\\\\\\" data-user=\\\\\\\"John Doe\\\\\\\"\\\\u003e@John Doe\\\\u003c/span\\\\u003e! \\\\u003cstrong\\\\u003eWie geht es dir?\\\\u003c/strong\\\\u003e \\\\u003cspan data-text-color=\\\\\\\"blue\\\\\\\"\\\\u003eDieser Text ist blau!\\\\u003c/span\\\\u003e\\\\u003c/p\\\\u003e\\\",\\\"id\\\":\\\"ref2$\\\",\\\"type\\\":\\\"update\\\"}]}\"},\"index\":0}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-fcda3dc4-fc8d-4742-a869-534cfe6e4914\",\"object\":\"chat.completion.chunk\",\"created\":1749541778,\"model\":\"llama-3.3-70b-versatile\",\"system_fingerprint\":\"fp_2ddfbb0da0\",\"choices\":[{\"index\":0,\"delta\":{},\"logprobs\":null,\"finish_reason\":\"tool_calls\"}],\"x_groq\":{\"id\":\"req_01jxcd1x55fs4av68p3pxn36mj\",\"usage\":{\"queue_time\":0.102920481,\"prompt_tokens\":939,\"prompt_time\":0.06721232,\"completion_tokens\":80,\"completion_time\":0.290909091,\"total_tokens\":1019,\"total_time\":0.358121411}}}\n\ndata: [DONE]\n\n", + "body": "data: {\"id\":\"chatcmpl-486ceb54-7aac-4ab4-b8ac-483624e0c0df\",\"object\":\"chat.completion.chunk\",\"created\":1749735005,\"model\":\"llama-3.3-70b-versatile\",\"system_fingerprint\":\"fp_6507bcfb6f\",\"choices\":[{\"index\":0,\"delta\":{\"role\":\"assistant\",\"content\":null},\"logprobs\":null,\"finish_reason\":null}],\"x_groq\":{\"id\":\"req_01jxj5aq28fxrtkxdwwp1e60h0\"}}\n\ndata: {\"id\":\"chatcmpl-486ceb54-7aac-4ab4-b8ac-483624e0c0df\",\"object\":\"chat.completion.chunk\",\"created\":1749735005,\"model\":\"llama-3.3-70b-versatile\",\"system_fingerprint\":\"fp_6507bcfb6f\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"id\":\"x1wmn3w6d\",\"type\":\"function\",\"function\":{\"name\":\"json\",\"arguments\":\"{\\\"operations\\\":[{\\\"block\\\":\\\"\\\\u003cp\\\\u003eHallo, \\\\u003cspan data-inline-content-type=\\\\\\\"mention\\\\\\\" data-user=\\\\\\\"John Doe\\\\\\\"\\\\u003e@John Doe\\\\u003c/span\\\\u003e! \\\\u003cstrong\\\\u003eWie geht es dir?\\\\u003c/strong\\\\u003e \\\\u003cspan data-text-color=\\\\\\\"blue\\\\\\\"\\\\u003eDieser Text ist blau!\\\\u003c/span\\\\u003e\\\\u003c/p\\\\u003e\\\",\\\"id\\\":\\\"ref2$\\\",\\\"type\\\":\\\"update\\\"}]}\"},\"index\":0}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-486ceb54-7aac-4ab4-b8ac-483624e0c0df\",\"object\":\"chat.completion.chunk\",\"created\":1749735005,\"model\":\"llama-3.3-70b-versatile\",\"system_fingerprint\":\"fp_6507bcfb6f\",\"choices\":[{\"index\":0,\"delta\":{},\"logprobs\":null,\"finish_reason\":\"tool_calls\"}],\"x_groq\":{\"id\":\"req_01jxj5aq28fxrtkxdwwp1e60h0\",\"usage\":{\"queue_time\":0.093027908,\"prompt_tokens\":926,\"prompt_time\":0.067121532,\"completion_tokens\":80,\"completion_time\":0.290909091,\"total_tokens\":1006,\"total_time\":0.358030623}}}\n\ndata: [DONE]\n\n", "headers": [] } } \ No newline at end of file diff --git a/packages/xl-ai/src/api/formats/html-blocks/__snapshots__/htmlBlocks.test.ts/Update/__msw_snapshots__/groq.chat/llama-3.3-70b-versatile (streaming)/styles + ic in target block, add mark (paragraph)_1_c865fea79947e8f5885f8c7ebc7dd91a.json b/packages/xl-ai/src/api/formats/html-blocks/__snapshots__/htmlBlocks.test.ts/Update/__msw_snapshots__/groq.chat/llama-3.3-70b-versatile (streaming)/styles + ic in target block, add mark (paragraph)_1_c865fea79947e8f5885f8c7ebc7dd91a.json index fa06c513d3..7c59a176f4 100644 --- a/packages/xl-ai/src/api/formats/html-blocks/__snapshots__/htmlBlocks.test.ts/Update/__msw_snapshots__/groq.chat/llama-3.3-70b-versatile (streaming)/styles + ic in target block, add mark (paragraph)_1_c865fea79947e8f5885f8c7ebc7dd91a.json +++ b/packages/xl-ai/src/api/formats/html-blocks/__snapshots__/htmlBlocks.test.ts/Update/__msw_snapshots__/groq.chat/llama-3.3-70b-versatile (streaming)/styles + ic in target block, add mark (paragraph)_1_c865fea79947e8f5885f8c7ebc7dd91a.json @@ -9,7 +9,7 @@ "response": { "status": 200, "statusText": "", - "body": "data: {\"id\":\"chatcmpl-bcd54d10-379c-40d2-8bf5-02c9178c1da9\",\"object\":\"chat.completion.chunk\",\"created\":1749541780,\"model\":\"llama-3.3-70b-versatile\",\"system_fingerprint\":\"fp_2ddfbb0da0\",\"choices\":[{\"index\":0,\"delta\":{\"role\":\"assistant\",\"content\":null},\"logprobs\":null,\"finish_reason\":null}],\"x_groq\":{\"id\":\"req_01jxcd1yw4fs4s4mkpcazrpyv1\"}}\n\ndata: {\"id\":\"chatcmpl-bcd54d10-379c-40d2-8bf5-02c9178c1da9\",\"object\":\"chat.completion.chunk\",\"created\":1749541780,\"model\":\"llama-3.3-70b-versatile\",\"system_fingerprint\":\"fp_2ddfbb0da0\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"id\":\"call_6wss\",\"type\":\"function\",\"function\":{\"name\":\"json\",\"arguments\":\"{\\\"operations\\\":[{\\\"block\\\":\\\"\\\\u003cp\\\\u003e\\\\u003cstrong\\\\u003eHello, world!\\\\u003c/strong\\\\u003e\\\\u003c/p\\\\u003e\\\",\\\"id\\\":\\\"ref1$\\\",\\\"type\\\":\\\"update\\\"}]}\"},\"index\":0}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-bcd54d10-379c-40d2-8bf5-02c9178c1da9\",\"object\":\"chat.completion.chunk\",\"created\":1749541780,\"model\":\"llama-3.3-70b-versatile\",\"system_fingerprint\":\"fp_2ddfbb0da0\",\"choices\":[{\"index\":0,\"delta\":{},\"logprobs\":null,\"finish_reason\":\"tool_calls\"}],\"x_groq\":{\"id\":\"req_01jxcd1yw4fs4s4mkpcazrpyv1\",\"usage\":{\"queue_time\":0.09199883499999999,\"prompt_tokens\":930,\"prompt_time\":0.068480884,\"completion_tokens\":32,\"completion_time\":0.116363636,\"total_tokens\":962,\"total_time\":0.18484452}}}\n\ndata: [DONE]\n\n", + "body": "data: {\"id\":\"chatcmpl-d18c230a-3e28-4c60-bee6-afa8a4288bbb\",\"object\":\"chat.completion.chunk\",\"created\":1749735007,\"model\":\"llama-3.3-70b-versatile\",\"system_fingerprint\":\"fp_6507bcfb6f\",\"choices\":[{\"index\":0,\"delta\":{\"role\":\"assistant\",\"content\":null},\"logprobs\":null,\"finish_reason\":null}],\"x_groq\":{\"id\":\"req_01jxj5artce76a9vcb8tk4957t\"}}\n\ndata: {\"id\":\"chatcmpl-d18c230a-3e28-4c60-bee6-afa8a4288bbb\",\"object\":\"chat.completion.chunk\",\"created\":1749735007,\"model\":\"llama-3.3-70b-versatile\",\"system_fingerprint\":\"fp_6507bcfb6f\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"id\":\"8vv814w4a\",\"type\":\"function\",\"function\":{\"name\":\"json\",\"arguments\":\"{\\\"operations\\\":[{\\\"block\\\":\\\"\\\\u003cp\\\\u003e\\\\u003cstrong\\\\u003eHello, world!\\\\u003c/strong\\\\u003e\\\\u003c/p\\\\u003e\\\",\\\"id\\\":\\\"ref1$\\\",\\\"type\\\":\\\"update\\\"}]}\"},\"index\":0}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-d18c230a-3e28-4c60-bee6-afa8a4288bbb\",\"object\":\"chat.completion.chunk\",\"created\":1749735007,\"model\":\"llama-3.3-70b-versatile\",\"system_fingerprint\":\"fp_6507bcfb6f\",\"choices\":[{\"index\":0,\"delta\":{},\"logprobs\":null,\"finish_reason\":\"tool_calls\"}],\"x_groq\":{\"id\":\"req_01jxj5artce76a9vcb8tk4957t\",\"usage\":{\"queue_time\":0.098458649,\"prompt_tokens\":917,\"prompt_time\":0.07098885,\"completion_tokens\":36,\"completion_time\":0.130909091,\"total_tokens\":953,\"total_time\":0.201897941}}}\n\ndata: [DONE]\n\n", "headers": [] } } \ No newline at end of file diff --git a/packages/xl-ai/src/api/formats/html-blocks/__snapshots__/htmlBlocks.test.ts/Update/__msw_snapshots__/groq.chat/llama-3.3-70b-versatile (streaming)/styles + ic in target block, add mark (word)_1_e155e7bf26070976e31928b82bb13fbc.json b/packages/xl-ai/src/api/formats/html-blocks/__snapshots__/htmlBlocks.test.ts/Update/__msw_snapshots__/groq.chat/llama-3.3-70b-versatile (streaming)/styles + ic in target block, add mark (word)_1_e155e7bf26070976e31928b82bb13fbc.json index 3cf174ffea..a43bba8ad9 100644 --- a/packages/xl-ai/src/api/formats/html-blocks/__snapshots__/htmlBlocks.test.ts/Update/__msw_snapshots__/groq.chat/llama-3.3-70b-versatile (streaming)/styles + ic in target block, add mark (word)_1_e155e7bf26070976e31928b82bb13fbc.json +++ b/packages/xl-ai/src/api/formats/html-blocks/__snapshots__/htmlBlocks.test.ts/Update/__msw_snapshots__/groq.chat/llama-3.3-70b-versatile (streaming)/styles + ic in target block, add mark (word)_1_e155e7bf26070976e31928b82bb13fbc.json @@ -9,7 +9,7 @@ "response": { "status": 200, "statusText": "", - "body": "data: {\"id\":\"chatcmpl-9e608600-44cd-4c24-a058-251d12c23ae2\",\"object\":\"chat.completion.chunk\",\"created\":1749541780,\"model\":\"llama-3.3-70b-versatile\",\"system_fingerprint\":\"fp_2ddfbb0da0\",\"choices\":[{\"index\":0,\"delta\":{\"role\":\"assistant\",\"content\":null},\"logprobs\":null,\"finish_reason\":null}],\"x_groq\":{\"id\":\"req_01jxcd1yg1et8ay2vmq3jm1ysj\"}}\n\ndata: {\"id\":\"chatcmpl-9e608600-44cd-4c24-a058-251d12c23ae2\",\"object\":\"chat.completion.chunk\",\"created\":1749541780,\"model\":\"llama-3.3-70b-versatile\",\"system_fingerprint\":\"fp_2ddfbb0da0\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"id\":\"call_a492\",\"type\":\"function\",\"function\":{\"name\":\"json\",\"arguments\":\"{\\\"operations\\\":[{\\\"block\\\":\\\"\\\\u003cp\\\\u003eHello, \\\\u003cstrong\\\\u003eworld!\\\\u003c/strong\\\\u003e\\\\u003c/p\\\\u003e\\\",\\\"id\\\":\\\"ref1$\\\",\\\"type\\\":\\\"update\\\"}]}\"},\"index\":0}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-9e608600-44cd-4c24-a058-251d12c23ae2\",\"object\":\"chat.completion.chunk\",\"created\":1749541780,\"model\":\"llama-3.3-70b-versatile\",\"system_fingerprint\":\"fp_2ddfbb0da0\",\"choices\":[{\"index\":0,\"delta\":{},\"logprobs\":null,\"finish_reason\":\"tool_calls\"}],\"x_groq\":{\"id\":\"req_01jxcd1yg1et8ay2vmq3jm1ysj\",\"usage\":{\"queue_time\":0.094700813,\"prompt_tokens\":937,\"prompt_time\":0.104125528,\"completion_tokens\":33,\"completion_time\":0.122097288,\"total_tokens\":970,\"total_time\":0.226222816}}}\n\ndata: [DONE]\n\n", + "body": "data: {\"id\":\"chatcmpl-5243d65c-bba7-4ecb-9321-4efb979b5d62\",\"object\":\"chat.completion.chunk\",\"created\":1749735006,\"model\":\"llama-3.3-70b-versatile\",\"system_fingerprint\":\"fp_3f3b593e33\",\"choices\":[{\"index\":0,\"delta\":{\"role\":\"assistant\",\"content\":null},\"logprobs\":null,\"finish_reason\":null}],\"x_groq\":{\"id\":\"req_01jxj5arcsfxttkzyakefcg90j\"}}\n\ndata: {\"id\":\"chatcmpl-5243d65c-bba7-4ecb-9321-4efb979b5d62\",\"object\":\"chat.completion.chunk\",\"created\":1749735006,\"model\":\"llama-3.3-70b-versatile\",\"system_fingerprint\":\"fp_3f3b593e33\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"id\":\"0cryb8stx\",\"type\":\"function\",\"function\":{\"name\":\"json\",\"arguments\":\"{\\\"operations\\\":[{\\\"block\\\":\\\"\\\\u003cp\\\\u003eHello, \\\\u003cstrong\\\\u003eworld!\\\\u003c/strong\\\\u003e\\\\u003c/p\\\\u003e\\\",\\\"id\\\":\\\"ref1$\\\",\\\"type\\\":\\\"update\\\"}]}\"},\"index\":0}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-5243d65c-bba7-4ecb-9321-4efb979b5d62\",\"object\":\"chat.completion.chunk\",\"created\":1749735006,\"model\":\"llama-3.3-70b-versatile\",\"system_fingerprint\":\"fp_3f3b593e33\",\"choices\":[{\"index\":0,\"delta\":{},\"logprobs\":null,\"finish_reason\":\"tool_calls\"}],\"x_groq\":{\"id\":\"req_01jxj5arcsfxttkzyakefcg90j\",\"usage\":{\"queue_time\":0.092388885,\"prompt_tokens\":924,\"prompt_time\":0.128782737,\"completion_tokens\":33,\"completion_time\":0.12,\"total_tokens\":957,\"total_time\":0.248782737}}}\n\ndata: [DONE]\n\n", "headers": [] } } \ No newline at end of file diff --git a/packages/xl-ai/src/api/formats/html-blocks/__snapshots__/htmlBlocks.test.ts/Update/__msw_snapshots__/groq.chat/llama-3.3-70b-versatile (streaming)/translate selection_1_54ec8515dd6ab214d8b92c5cf4f09529.json b/packages/xl-ai/src/api/formats/html-blocks/__snapshots__/htmlBlocks.test.ts/Update/__msw_snapshots__/groq.chat/llama-3.3-70b-versatile (streaming)/translate selection_1_54ec8515dd6ab214d8b92c5cf4f09529.json index 5d14802279..f7297b321e 100644 --- a/packages/xl-ai/src/api/formats/html-blocks/__snapshots__/htmlBlocks.test.ts/Update/__msw_snapshots__/groq.chat/llama-3.3-70b-versatile (streaming)/translate selection_1_54ec8515dd6ab214d8b92c5cf4f09529.json +++ b/packages/xl-ai/src/api/formats/html-blocks/__snapshots__/htmlBlocks.test.ts/Update/__msw_snapshots__/groq.chat/llama-3.3-70b-versatile (streaming)/translate selection_1_54ec8515dd6ab214d8b92c5cf4f09529.json @@ -9,7 +9,7 @@ "response": { "status": 200, "statusText": "", - "body": "data: {\"id\":\"chatcmpl-e7eb0fc5-abde-4e34-858a-d7ad17832f7a\",\"object\":\"chat.completion.chunk\",\"created\":1749541777,\"model\":\"llama-3.3-70b-versatile\",\"system_fingerprint\":\"fp_3f3b593e33\",\"choices\":[{\"index\":0,\"delta\":{\"role\":\"assistant\",\"content\":null},\"logprobs\":null,\"finish_reason\":null}],\"x_groq\":{\"id\":\"req_01jxcd1vs1fs48ysfekkrtytc4\"}}\n\ndata: {\"id\":\"chatcmpl-e7eb0fc5-abde-4e34-858a-d7ad17832f7a\",\"object\":\"chat.completion.chunk\",\"created\":1749541777,\"model\":\"llama-3.3-70b-versatile\",\"system_fingerprint\":\"fp_3f3b593e33\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"id\":\"call_a9fq\",\"type\":\"function\",\"function\":{\"name\":\"json\",\"arguments\":\"{\\\"operations\\\":[{\\\"block\\\":\\\"\\\\u003cp\\\\u003eHallo\\\\u003c/p\\\\u003e\\\",\\\"id\\\":\\\"ref2$\\\",\\\"type\\\":\\\"update\\\"}]}\"},\"index\":0}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-e7eb0fc5-abde-4e34-858a-d7ad17832f7a\",\"object\":\"chat.completion.chunk\",\"created\":1749541777,\"model\":\"llama-3.3-70b-versatile\",\"system_fingerprint\":\"fp_3f3b593e33\",\"choices\":[{\"index\":0,\"delta\":{},\"logprobs\":null,\"finish_reason\":\"tool_calls\"}],\"x_groq\":{\"id\":\"req_01jxcd1vs1fs48ysfekkrtytc4\",\"usage\":{\"queue_time\":0.09339171600000001,\"prompt_tokens\":773,\"prompt_time\":0.056591492,\"completion_tokens\":31,\"completion_time\":0.112727273,\"total_tokens\":804,\"total_time\":0.169318765}}}\n\ndata: [DONE]\n\n", + "body": "data: {\"id\":\"chatcmpl-f3df63a8-471f-440a-9998-58748e3627a8\",\"object\":\"chat.completion.chunk\",\"created\":1749735003,\"model\":\"llama-3.3-70b-versatile\",\"system_fingerprint\":\"fp_2ddfbb0da0\",\"choices\":[{\"index\":0,\"delta\":{\"role\":\"assistant\",\"content\":null},\"logprobs\":null,\"finish_reason\":null}],\"x_groq\":{\"id\":\"req_01jxj5anp6e709vt4jznn94x9k\"}}\n\ndata: {\"id\":\"chatcmpl-f3df63a8-471f-440a-9998-58748e3627a8\",\"object\":\"chat.completion.chunk\",\"created\":1749735004,\"model\":\"llama-3.3-70b-versatile\",\"system_fingerprint\":\"fp_2ddfbb0da0\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"id\":\"0vbb4xdh2\",\"type\":\"function\",\"function\":{\"name\":\"json\",\"arguments\":\"{\\\"operations\\\":[{\\\"block\\\":\\\"\\\\u003cp\\\\u003eHallo\\\\u003c/p\\\\u003e\\\",\\\"id\\\":\\\"ref2$\\\",\\\"type\\\":\\\"update\\\"}]}\"},\"index\":0}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-f3df63a8-471f-440a-9998-58748e3627a8\",\"object\":\"chat.completion.chunk\",\"created\":1749735004,\"model\":\"llama-3.3-70b-versatile\",\"system_fingerprint\":\"fp_2ddfbb0da0\",\"choices\":[{\"index\":0,\"delta\":{},\"logprobs\":null,\"finish_reason\":\"tool_calls\"}],\"x_groq\":{\"id\":\"req_01jxj5anp6e709vt4jznn94x9k\",\"usage\":{\"queue_time\":0.09688751899999999,\"prompt_tokens\":760,\"prompt_time\":0.05287177,\"completion_tokens\":31,\"completion_time\":0.115326856,\"total_tokens\":791,\"total_time\":0.168198626}}}\n\ndata: [DONE]\n\n", "headers": [] } } \ No newline at end of file diff --git a/packages/xl-ai/src/api/formats/html-blocks/__snapshots__/htmlBlocks.test.ts/Update/__msw_snapshots__/groq.chat/llama-3.3-70b-versatile (streaming)/turn paragraphs into list_1_ec7bd4074c354be223256a9d0ab17e64.json b/packages/xl-ai/src/api/formats/html-blocks/__snapshots__/htmlBlocks.test.ts/Update/__msw_snapshots__/groq.chat/llama-3.3-70b-versatile (streaming)/turn paragraphs into list_1_ec7bd4074c354be223256a9d0ab17e64.json index ba53568435..f52c4e10d1 100644 --- a/packages/xl-ai/src/api/formats/html-blocks/__snapshots__/htmlBlocks.test.ts/Update/__msw_snapshots__/groq.chat/llama-3.3-70b-versatile (streaming)/turn paragraphs into list_1_ec7bd4074c354be223256a9d0ab17e64.json +++ b/packages/xl-ai/src/api/formats/html-blocks/__snapshots__/htmlBlocks.test.ts/Update/__msw_snapshots__/groq.chat/llama-3.3-70b-versatile (streaming)/turn paragraphs into list_1_ec7bd4074c354be223256a9d0ab17e64.json @@ -9,7 +9,7 @@ "response": { "status": 200, "statusText": "", - "body": "data: {\"id\":\"chatcmpl-2d8e9163-5a4b-4730-ba4c-5fd2c7b7bc84\",\"object\":\"chat.completion.chunk\",\"created\":1749541782,\"model\":\"llama-3.3-70b-versatile\",\"system_fingerprint\":\"fp_3f3b593e33\",\"choices\":[{\"index\":0,\"delta\":{\"role\":\"assistant\",\"content\":null},\"logprobs\":null,\"finish_reason\":null}],\"x_groq\":{\"id\":\"req_01jxcd20s8et9aej7h9s4sstmn\"}}\n\ndata: {\"id\":\"chatcmpl-2d8e9163-5a4b-4730-ba4c-5fd2c7b7bc84\",\"object\":\"chat.completion.chunk\",\"created\":1749541782,\"model\":\"llama-3.3-70b-versatile\",\"system_fingerprint\":\"fp_3f3b593e33\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"id\":\"call_1y90\",\"type\":\"function\",\"function\":{\"name\":\"json\",\"arguments\":\"{\\\"operations\\\":[{\\\"block\\\":\\\"\\\\u003cul\\\\u003e\\\\u003cli\\\\u003eApples\\\\u003c/li\\\\u003e\\\\u003c/ul\\\\u003e\\\",\\\"id\\\":\\\"ref2$\\\",\\\"type\\\":\\\"update\\\"},{\\\"block\\\":\\\"\\\\u003cul\\\\u003e\\\\u003cli\\\\u003eBananas\\\\u003c/li\\\\u003e\\\\u003c/ul\\\\u003e\\\",\\\"id\\\":\\\"ref3$\\\",\\\"type\\\":\\\"update\\\"}]}\"},\"index\":0}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-2d8e9163-5a4b-4730-ba4c-5fd2c7b7bc84\",\"object\":\"chat.completion.chunk\",\"created\":1749541782,\"model\":\"llama-3.3-70b-versatile\",\"system_fingerprint\":\"fp_3f3b593e33\",\"choices\":[{\"index\":0,\"delta\":{},\"logprobs\":null,\"finish_reason\":\"tool_calls\"}],\"x_groq\":{\"id\":\"req_01jxcd20s8et9aej7h9s4sstmn\",\"usage\":{\"queue_time\":0.09433852300000001,\"prompt_tokens\":719,\"prompt_time\":0.057211289,\"completion_tokens\":57,\"completion_time\":0.207272727,\"total_tokens\":776,\"total_time\":0.264484016}}}\n\ndata: [DONE]\n\n", + "body": "data: {\"id\":\"chatcmpl-40eb468d-1d3c-4755-95dd-479fff6bb6f0\",\"object\":\"chat.completion.chunk\",\"created\":1749735009,\"model\":\"llama-3.3-70b-versatile\",\"system_fingerprint\":\"fp_2ddfbb0da0\",\"choices\":[{\"index\":0,\"delta\":{\"role\":\"assistant\",\"content\":null},\"logprobs\":null,\"finish_reason\":null}],\"x_groq\":{\"id\":\"req_01jxj5av18e7z9p98177y3fn59\"}}\n\ndata: {\"id\":\"chatcmpl-40eb468d-1d3c-4755-95dd-479fff6bb6f0\",\"object\":\"chat.completion.chunk\",\"created\":1749735009,\"model\":\"llama-3.3-70b-versatile\",\"system_fingerprint\":\"fp_2ddfbb0da0\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"id\":\"43a3x3h4y\",\"type\":\"function\",\"function\":{\"name\":\"json\",\"arguments\":\"{\\\"operations\\\":[{\\\"block\\\":\\\"\\\\u003cul\\\\u003e\\\\u003cli\\\\u003eApples\\\\u003c/li\\\\u003e\\\\u003c/ul\\\\u003e\\\",\\\"id\\\":\\\"ref2$\\\",\\\"type\\\":\\\"update\\\"},{\\\"block\\\":\\\"\\\\u003cul\\\\u003e\\\\u003cli\\\\u003eBananas\\\\u003c/li\\\\u003e\\\\u003c/ul\\\\u003e\\\",\\\"id\\\":\\\"ref3$\\\",\\\"type\\\":\\\"update\\\"}]}\"},\"index\":0}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-40eb468d-1d3c-4755-95dd-479fff6bb6f0\",\"object\":\"chat.completion.chunk\",\"created\":1749735009,\"model\":\"llama-3.3-70b-versatile\",\"system_fingerprint\":\"fp_2ddfbb0da0\",\"choices\":[{\"index\":0,\"delta\":{},\"logprobs\":null,\"finish_reason\":\"tool_calls\"}],\"x_groq\":{\"id\":\"req_01jxj5av18e7z9p98177y3fn59\",\"usage\":{\"queue_time\":0.136583484,\"prompt_tokens\":706,\"prompt_time\":0.053731224,\"completion_tokens\":66,\"completion_time\":0.24,\"total_tokens\":772,\"total_time\":0.293731224}}}\n\ndata: [DONE]\n\n", "headers": [] } } \ No newline at end of file diff --git a/packages/xl-ai/src/api/formats/html-blocks/__snapshots__/htmlBlocks.test.ts/Update/__msw_snapshots__/groq.chat/llama-3.3-70b-versatile (streaming)/update block type and content_1_a935b00dc3276d6713bffbfb1fdf211e.json b/packages/xl-ai/src/api/formats/html-blocks/__snapshots__/htmlBlocks.test.ts/Update/__msw_snapshots__/groq.chat/llama-3.3-70b-versatile (streaming)/update block type and content_1_a935b00dc3276d6713bffbfb1fdf211e.json index 54e4c68d2a..0c7d2dc86b 100644 --- a/packages/xl-ai/src/api/formats/html-blocks/__snapshots__/htmlBlocks.test.ts/Update/__msw_snapshots__/groq.chat/llama-3.3-70b-versatile (streaming)/update block type and content_1_a935b00dc3276d6713bffbfb1fdf211e.json +++ b/packages/xl-ai/src/api/formats/html-blocks/__snapshots__/htmlBlocks.test.ts/Update/__msw_snapshots__/groq.chat/llama-3.3-70b-versatile (streaming)/update block type and content_1_a935b00dc3276d6713bffbfb1fdf211e.json @@ -9,7 +9,7 @@ "response": { "status": 200, "statusText": "", - "body": "data: {\"id\":\"chatcmpl-cec0a27f-9b05-4dad-afcf-ab4ab2c7161f\",\"object\":\"chat.completion.chunk\",\"created\":1749541777,\"model\":\"llama-3.3-70b-versatile\",\"system_fingerprint\":\"fp_2ddfbb0da0\",\"choices\":[{\"index\":0,\"delta\":{\"role\":\"assistant\",\"content\":null},\"logprobs\":null,\"finish_reason\":null}],\"x_groq\":{\"id\":\"req_01jxcd1wf1et89tdvzxftjp02g\"}}\n\ndata: {\"id\":\"chatcmpl-cec0a27f-9b05-4dad-afcf-ab4ab2c7161f\",\"object\":\"chat.completion.chunk\",\"created\":1749541778,\"model\":\"llama-3.3-70b-versatile\",\"system_fingerprint\":\"fp_2ddfbb0da0\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"id\":\"call_nqjm\",\"type\":\"function\",\"function\":{\"name\":\"json\",\"arguments\":\"{\\\"operations\\\":[{\\\"block\\\":\\\"\\\\u003ch1\\\\u003eWhat's up, world!\\\\u003c/h1\\\\u003e\\\",\\\"id\\\":\\\"ref1$\\\",\\\"type\\\":\\\"update\\\"}]}\"},\"index\":0}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-cec0a27f-9b05-4dad-afcf-ab4ab2c7161f\",\"object\":\"chat.completion.chunk\",\"created\":1749541778,\"model\":\"llama-3.3-70b-versatile\",\"system_fingerprint\":\"fp_2ddfbb0da0\",\"choices\":[{\"index\":0,\"delta\":{},\"logprobs\":null,\"finish_reason\":\"tool_calls\"}],\"x_groq\":{\"id\":\"req_01jxcd1wf1et89tdvzxftjp02g\",\"usage\":{\"queue_time\":0.09238323000000001,\"prompt_tokens\":944,\"prompt_time\":0.069186415,\"completion_tokens\":37,\"completion_time\":0.134545455,\"total_tokens\":981,\"total_time\":0.20373187}}}\n\ndata: [DONE]\n\n", + "body": "data: {\"id\":\"chatcmpl-d8d2deea-91ae-4ea3-a32a-6bd8969ecd14\",\"object\":\"chat.completion.chunk\",\"created\":1749735004,\"model\":\"llama-3.3-70b-versatile\",\"system_fingerprint\":\"fp_3f3b593e33\",\"choices\":[{\"index\":0,\"delta\":{\"role\":\"assistant\",\"content\":null},\"logprobs\":null,\"finish_reason\":null}],\"x_groq\":{\"id\":\"req_01jxj5apaqe72s98ssh63fg0rn\"}}\n\ndata: {\"id\":\"chatcmpl-d8d2deea-91ae-4ea3-a32a-6bd8969ecd14\",\"object\":\"chat.completion.chunk\",\"created\":1749735004,\"model\":\"llama-3.3-70b-versatile\",\"system_fingerprint\":\"fp_3f3b593e33\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"id\":\"1cv889807\",\"type\":\"function\",\"function\":{\"name\":\"json\",\"arguments\":\"{\\\"operations\\\":[{\\\"block\\\":\\\"\\\\u003ch1\\\\u003eWhat's up, world!\\\\u003c/h1\\\\u003e\\\",\\\"id\\\":\\\"ref1$\\\",\\\"type\\\":\\\"update\\\"}]}\"},\"index\":0}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-d8d2deea-91ae-4ea3-a32a-6bd8969ecd14\",\"object\":\"chat.completion.chunk\",\"created\":1749735004,\"model\":\"llama-3.3-70b-versatile\",\"system_fingerprint\":\"fp_3f3b593e33\",\"choices\":[{\"index\":0,\"delta\":{},\"logprobs\":null,\"finish_reason\":\"tool_calls\"}],\"x_groq\":{\"id\":\"req_01jxj5apaqe72s98ssh63fg0rn\",\"usage\":{\"queue_time\":0.092581626,\"prompt_tokens\":931,\"prompt_time\":0.071538603,\"completion_tokens\":33,\"completion_time\":0.12,\"total_tokens\":964,\"total_time\":0.191538603}}}\n\ndata: [DONE]\n\n", "headers": [] } } \ No newline at end of file diff --git a/packages/xl-ai/src/api/formats/html-blocks/__snapshots__/htmlBlocks.test.ts/Update/__msw_snapshots__/groq.chat/llama-3.3-70b-versatile (streaming)/update block type_1_21d1130a166f73bca224130b84ed37c4.json b/packages/xl-ai/src/api/formats/html-blocks/__snapshots__/htmlBlocks.test.ts/Update/__msw_snapshots__/groq.chat/llama-3.3-70b-versatile (streaming)/update block type_1_21d1130a166f73bca224130b84ed37c4.json index 008f0d3cc8..cc57054dc0 100644 --- a/packages/xl-ai/src/api/formats/html-blocks/__snapshots__/htmlBlocks.test.ts/Update/__msw_snapshots__/groq.chat/llama-3.3-70b-versatile (streaming)/update block type_1_21d1130a166f73bca224130b84ed37c4.json +++ b/packages/xl-ai/src/api/formats/html-blocks/__snapshots__/htmlBlocks.test.ts/Update/__msw_snapshots__/groq.chat/llama-3.3-70b-versatile (streaming)/update block type_1_21d1130a166f73bca224130b84ed37c4.json @@ -9,7 +9,7 @@ "response": { "status": 200, "statusText": "", - "body": "data: {\"id\":\"chatcmpl-8a1f1d7b-3cc5-465b-980a-6502ae14e5c1\",\"object\":\"chat.completion.chunk\",\"created\":1749541777,\"model\":\"llama-3.3-70b-versatile\",\"system_fingerprint\":\"fp_2ddfbb0da0\",\"choices\":[{\"index\":0,\"delta\":{\"role\":\"assistant\",\"content\":null},\"logprobs\":null,\"finish_reason\":null}],\"x_groq\":{\"id\":\"req_01jxcd1w2mfs482mphjbvgjar0\"}}\n\ndata: {\"id\":\"chatcmpl-8a1f1d7b-3cc5-465b-980a-6502ae14e5c1\",\"object\":\"chat.completion.chunk\",\"created\":1749541777,\"model\":\"llama-3.3-70b-versatile\",\"system_fingerprint\":\"fp_2ddfbb0da0\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"id\":\"call_xard\",\"type\":\"function\",\"function\":{\"name\":\"json\",\"arguments\":\"{\\\"operations\\\":[{\\\"block\\\":\\\"\\\\u003ch1\\\\u003eHello, world!\\\\u003c/h1\\\\u003e\\\",\\\"id\\\":\\\"ref1$\\\",\\\"type\\\":\\\"update\\\"}]}\"},\"index\":0}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-8a1f1d7b-3cc5-465b-980a-6502ae14e5c1\",\"object\":\"chat.completion.chunk\",\"created\":1749541777,\"model\":\"llama-3.3-70b-versatile\",\"system_fingerprint\":\"fp_2ddfbb0da0\",\"choices\":[{\"index\":0,\"delta\":{},\"logprobs\":null,\"finish_reason\":\"tool_calls\"}],\"x_groq\":{\"id\":\"req_01jxcd1w2mfs482mphjbvgjar0\",\"usage\":{\"queue_time\":0.095005437,\"prompt_tokens\":932,\"prompt_time\":0.067416268,\"completion_tokens\":30,\"completion_time\":0.120479918,\"total_tokens\":962,\"total_time\":0.187896186}}}\n\ndata: [DONE]\n\n", + "body": "data: {\"id\":\"chatcmpl-c4f1821e-3705-4b5a-b70a-0c98e7b3d2d8\",\"object\":\"chat.completion.chunk\",\"created\":1749735004,\"model\":\"llama-3.3-70b-versatile\",\"system_fingerprint\":\"fp_3f3b593e33\",\"choices\":[{\"index\":0,\"delta\":{\"role\":\"assistant\",\"content\":null},\"logprobs\":null,\"finish_reason\":null}],\"x_groq\":{\"id\":\"req_01jxj5ap0ee70rgyqh0t1syb47\"}}\n\ndata: {\"id\":\"chatcmpl-c4f1821e-3705-4b5a-b70a-0c98e7b3d2d8\",\"object\":\"chat.completion.chunk\",\"created\":1749735004,\"model\":\"llama-3.3-70b-versatile\",\"system_fingerprint\":\"fp_3f3b593e33\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"id\":\"r44r9915a\",\"type\":\"function\",\"function\":{\"name\":\"json\",\"arguments\":\"{\\\"operations\\\":[{\\\"block\\\":\\\"\\\\u003ch1\\\\u003eHello, world!\\\\u003c/h1\\\\u003e\\\",\\\"id\\\":\\\"ref1$\\\",\\\"type\\\":\\\"update\\\"}]}\"},\"index\":0}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-c4f1821e-3705-4b5a-b70a-0c98e7b3d2d8\",\"object\":\"chat.completion.chunk\",\"created\":1749735004,\"model\":\"llama-3.3-70b-versatile\",\"system_fingerprint\":\"fp_3f3b593e33\",\"choices\":[{\"index\":0,\"delta\":{},\"logprobs\":null,\"finish_reason\":\"tool_calls\"}],\"x_groq\":{\"id\":\"req_01jxj5ap0ee70rgyqh0t1syb47\",\"usage\":{\"queue_time\":0.09159241199999998,\"prompt_tokens\":919,\"prompt_time\":0.067053834,\"completion_tokens\":30,\"completion_time\":0.112853757,\"total_tokens\":949,\"total_time\":0.179907591}}}\n\ndata: [DONE]\n\n", "headers": [] } } \ No newline at end of file diff --git a/packages/xl-ai/src/api/formats/html-blocks/__snapshots__/htmlBlocks.test.ts/Update/__msw_snapshots__/openai.chat/gpt-4o-2024-08-06 (non-streaming)/drop mark and link and change text within mark_1_8798a9655a7eb7a651bb81f5f811fc60.json b/packages/xl-ai/src/api/formats/html-blocks/__snapshots__/htmlBlocks.test.ts/Update/__msw_snapshots__/openai.chat/gpt-4o-2024-08-06 (non-streaming)/drop mark and link and change text within mark_1_8798a9655a7eb7a651bb81f5f811fc60.json index 6ec1c11d3c..c86a29ed6d 100644 --- a/packages/xl-ai/src/api/formats/html-blocks/__snapshots__/htmlBlocks.test.ts/Update/__msw_snapshots__/openai.chat/gpt-4o-2024-08-06 (non-streaming)/drop mark and link and change text within mark_1_8798a9655a7eb7a651bb81f5f811fc60.json +++ b/packages/xl-ai/src/api/formats/html-blocks/__snapshots__/htmlBlocks.test.ts/Update/__msw_snapshots__/openai.chat/gpt-4o-2024-08-06 (non-streaming)/drop mark and link and change text within mark_1_8798a9655a7eb7a651bb81f5f811fc60.json @@ -9,7 +9,7 @@ "response": { "status": 200, "statusText": "", - "body": "{\n \"id\": \"chatcmpl-Bgo1YifiiaNXA030AuWSrj8BsaaqP\",\n \"object\": \"chat.completion\",\n \"created\": 1749541768,\n \"model\": \"gpt-4o-2024-08-06\",\n \"choices\": [\n {\n \"index\": 0,\n \"message\": {\n \"role\": \"assistant\",\n \"content\": null,\n \"tool_calls\": [\n {\n \"id\": \"call_FJMPVgrlMhAkqcV0AQg0EjxM\",\n \"type\": \"function\",\n \"function\": {\n \"name\": \"json\",\n \"arguments\": \"{\\\"operations\\\":[{\\\"type\\\":\\\"update\\\",\\\"id\\\":\\\"ref3$\\\",\\\"block\\\":\\\"

Hi, world! Bold the text. Link.

\\\"}]}\"\n }\n }\n ],\n \"refusal\": null,\n \"annotations\": []\n },\n \"logprobs\": null,\n \"finish_reason\": \"stop\"\n }\n ],\n \"usage\": {\n \"prompt_tokens\": 658,\n \"completion_tokens\": 33,\n \"total_tokens\": 691,\n \"prompt_tokens_details\": {\n \"cached_tokens\": 0,\n \"audio_tokens\": 0\n },\n \"completion_tokens_details\": {\n \"reasoning_tokens\": 0,\n \"audio_tokens\": 0,\n \"accepted_prediction_tokens\": 0,\n \"rejected_prediction_tokens\": 0\n }\n },\n \"service_tier\": \"default\",\n \"system_fingerprint\": \"fp_07871e2ad8\"\n}\n", + "body": "{\n \"id\": \"chatcmpl-BhcHzsXure0zEeVpyGSdzbhilnpBB\",\n \"object\": \"chat.completion\",\n \"created\": 1749734987,\n \"model\": \"gpt-4o-2024-08-06\",\n \"choices\": [\n {\n \"index\": 0,\n \"message\": {\n \"role\": \"assistant\",\n \"content\": null,\n \"tool_calls\": [\n {\n \"id\": \"call_2qujJrLbm204WVX1ciAfUIot\",\n \"type\": \"function\",\n \"function\": {\n \"name\": \"json\",\n \"arguments\": \"{\\\"operations\\\":[{\\\"type\\\":\\\"update\\\",\\\"id\\\":\\\"ref3$\\\",\\\"block\\\":\\\"

Hi, world! Bold the text. Link.

\\\"}]}\"\n }\n }\n ],\n \"refusal\": null,\n \"annotations\": []\n },\n \"logprobs\": null,\n \"finish_reason\": \"stop\"\n }\n ],\n \"usage\": {\n \"prompt_tokens\": 658,\n \"completion_tokens\": 33,\n \"total_tokens\": 691,\n \"prompt_tokens_details\": {\n \"cached_tokens\": 0,\n \"audio_tokens\": 0\n },\n \"completion_tokens_details\": {\n \"reasoning_tokens\": 0,\n \"audio_tokens\": 0,\n \"accepted_prediction_tokens\": 0,\n \"rejected_prediction_tokens\": 0\n }\n },\n \"service_tier\": \"default\",\n \"system_fingerprint\": \"fp_07871e2ad8\"\n}\n", "headers": [] } } \ No newline at end of file diff --git a/packages/xl-ai/src/api/formats/html-blocks/__snapshots__/htmlBlocks.test.ts/Update/__msw_snapshots__/openai.chat/gpt-4o-2024-08-06 (non-streaming)/drop mark and link_1_001ea299cc5ab0754d17884094fa9d86.json b/packages/xl-ai/src/api/formats/html-blocks/__snapshots__/htmlBlocks.test.ts/Update/__msw_snapshots__/openai.chat/gpt-4o-2024-08-06 (non-streaming)/drop mark and link_1_001ea299cc5ab0754d17884094fa9d86.json index 974d81b141..b0ccf5cdfc 100644 --- a/packages/xl-ai/src/api/formats/html-blocks/__snapshots__/htmlBlocks.test.ts/Update/__msw_snapshots__/openai.chat/gpt-4o-2024-08-06 (non-streaming)/drop mark and link_1_001ea299cc5ab0754d17884094fa9d86.json +++ b/packages/xl-ai/src/api/formats/html-blocks/__snapshots__/htmlBlocks.test.ts/Update/__msw_snapshots__/openai.chat/gpt-4o-2024-08-06 (non-streaming)/drop mark and link_1_001ea299cc5ab0754d17884094fa9d86.json @@ -9,7 +9,7 @@ "response": { "status": 200, "statusText": "", - "body": "{\n \"id\": \"chatcmpl-Bgo1XPI49eD7jAoQiFZEiE33HeYja\",\n \"object\": \"chat.completion\",\n \"created\": 1749541767,\n \"model\": \"gpt-4o-2024-08-06\",\n \"choices\": [\n {\n \"index\": 0,\n \"message\": {\n \"role\": \"assistant\",\n \"content\": null,\n \"tool_calls\": [\n {\n \"id\": \"call_nbkEJtQ6tGZgPbCTBQdiJks8\",\n \"type\": \"function\",\n \"function\": {\n \"name\": \"json\",\n \"arguments\": \"{\\\"operations\\\":[{\\\"type\\\":\\\"update\\\",\\\"id\\\":\\\"ref3$\\\",\\\"block\\\":\\\"

Hello, world! Bold text. Link.

\\\"}]}\"\n }\n }\n ],\n \"refusal\": null,\n \"annotations\": []\n },\n \"logprobs\": null,\n \"finish_reason\": \"stop\"\n }\n ],\n \"usage\": {\n \"prompt_tokens\": 652,\n \"completion_tokens\": 31,\n \"total_tokens\": 683,\n \"prompt_tokens_details\": {\n \"cached_tokens\": 0,\n \"audio_tokens\": 0\n },\n \"completion_tokens_details\": {\n \"reasoning_tokens\": 0,\n \"audio_tokens\": 0,\n \"accepted_prediction_tokens\": 0,\n \"rejected_prediction_tokens\": 0\n }\n },\n \"service_tier\": \"default\",\n \"system_fingerprint\": \"fp_07871e2ad8\"\n}\n", + "body": "{\n \"id\": \"chatcmpl-BhcHy1SdvhxpHZvkkbWwv7bBebVxR\",\n \"object\": \"chat.completion\",\n \"created\": 1749734986,\n \"model\": \"gpt-4o-2024-08-06\",\n \"choices\": [\n {\n \"index\": 0,\n \"message\": {\n \"role\": \"assistant\",\n \"content\": null,\n \"tool_calls\": [\n {\n \"id\": \"call_uhieOlUMWfilcLitiZI0WzCU\",\n \"type\": \"function\",\n \"function\": {\n \"name\": \"json\",\n \"arguments\": \"{\\\"operations\\\":[{\\\"type\\\":\\\"update\\\",\\\"id\\\":\\\"ref3$\\\",\\\"block\\\":\\\"

Hello, world! Bold text. Link.

\\\"}]}\"\n }\n }\n ],\n \"refusal\": null,\n \"annotations\": []\n },\n \"logprobs\": null,\n \"finish_reason\": \"stop\"\n }\n ],\n \"usage\": {\n \"prompt_tokens\": 652,\n \"completion_tokens\": 31,\n \"total_tokens\": 683,\n \"prompt_tokens_details\": {\n \"cached_tokens\": 0,\n \"audio_tokens\": 0\n },\n \"completion_tokens_details\": {\n \"reasoning_tokens\": 0,\n \"audio_tokens\": 0,\n \"accepted_prediction_tokens\": 0,\n \"rejected_prediction_tokens\": 0\n }\n },\n \"service_tier\": \"default\",\n \"system_fingerprint\": \"fp_07871e2ad8\"\n}\n", "headers": [] } } \ No newline at end of file diff --git a/packages/xl-ai/src/api/formats/html-blocks/__snapshots__/htmlBlocks.test.ts/Update/__msw_snapshots__/openai.chat/gpt-4o-2024-08-06 (non-streaming)/modify nested content_1_3b7f9df9f7701d51e2ccf274e5280a7d.json b/packages/xl-ai/src/api/formats/html-blocks/__snapshots__/htmlBlocks.test.ts/Update/__msw_snapshots__/openai.chat/gpt-4o-2024-08-06 (non-streaming)/modify nested content_1_3b7f9df9f7701d51e2ccf274e5280a7d.json index 531d4c50cd..d1d81b8f06 100644 --- a/packages/xl-ai/src/api/formats/html-blocks/__snapshots__/htmlBlocks.test.ts/Update/__msw_snapshots__/openai.chat/gpt-4o-2024-08-06 (non-streaming)/modify nested content_1_3b7f9df9f7701d51e2ccf274e5280a7d.json +++ b/packages/xl-ai/src/api/formats/html-blocks/__snapshots__/htmlBlocks.test.ts/Update/__msw_snapshots__/openai.chat/gpt-4o-2024-08-06 (non-streaming)/modify nested content_1_3b7f9df9f7701d51e2ccf274e5280a7d.json @@ -9,7 +9,7 @@ "response": { "status": 200, "statusText": "", - "body": "{\n \"id\": \"chatcmpl-Bgo1aZnxAzT905LdbeTp6y3PFjCJh\",\n \"object\": \"chat.completion\",\n \"created\": 1749541770,\n \"model\": \"gpt-4o-2024-08-06\",\n \"choices\": [\n {\n \"index\": 0,\n \"message\": {\n \"role\": \"assistant\",\n \"content\": null,\n \"tool_calls\": [\n {\n \"id\": \"call_sv2432qC9grD8uVFjbPu1sbo\",\n \"type\": \"function\",\n \"function\": {\n \"name\": \"json\",\n \"arguments\": \"{\\\"operations\\\":[{\\\"type\\\":\\\"update\\\",\\\"id\\\":\\\"ref2$\\\",\\\"block\\\":\\\"

APPLES

\\\"}]}\"\n }\n }\n ],\n \"refusal\": null,\n \"annotations\": []\n },\n \"logprobs\": null,\n \"finish_reason\": \"stop\"\n }\n ],\n \"usage\": {\n \"prompt_tokens\": 543,\n \"completion_tokens\": 26,\n \"total_tokens\": 569,\n \"prompt_tokens_details\": {\n \"cached_tokens\": 0,\n \"audio_tokens\": 0\n },\n \"completion_tokens_details\": {\n \"reasoning_tokens\": 0,\n \"audio_tokens\": 0,\n \"accepted_prediction_tokens\": 0,\n \"rejected_prediction_tokens\": 0\n }\n },\n \"service_tier\": \"default\",\n \"system_fingerprint\": \"fp_07871e2ad8\"\n}\n", + "body": "{\n \"id\": \"chatcmpl-BhcI1gI8AV6TAqDFvtm77SzcqmF7x\",\n \"object\": \"chat.completion\",\n \"created\": 1749734989,\n \"model\": \"gpt-4o-2024-08-06\",\n \"choices\": [\n {\n \"index\": 0,\n \"message\": {\n \"role\": \"assistant\",\n \"content\": null,\n \"tool_calls\": [\n {\n \"id\": \"call_vMkQr8mcoFiFXlVNcEXG7hKW\",\n \"type\": \"function\",\n \"function\": {\n \"name\": \"json\",\n \"arguments\": \"{\\\"operations\\\":[{\\\"type\\\":\\\"update\\\",\\\"id\\\":\\\"ref2$\\\",\\\"block\\\":\\\"

APPLES

\\\"}]}\"\n }\n }\n ],\n \"refusal\": null,\n \"annotations\": []\n },\n \"logprobs\": null,\n \"finish_reason\": \"stop\"\n }\n ],\n \"usage\": {\n \"prompt_tokens\": 543,\n \"completion_tokens\": 26,\n \"total_tokens\": 569,\n \"prompt_tokens_details\": {\n \"cached_tokens\": 0,\n \"audio_tokens\": 0\n },\n \"completion_tokens_details\": {\n \"reasoning_tokens\": 0,\n \"audio_tokens\": 0,\n \"accepted_prediction_tokens\": 0,\n \"rejected_prediction_tokens\": 0\n }\n },\n \"service_tier\": \"default\",\n \"system_fingerprint\": \"fp_07871e2ad8\"\n}\n", "headers": [] } } \ No newline at end of file diff --git a/packages/xl-ai/src/api/formats/html-blocks/__snapshots__/htmlBlocks.test.ts/Update/__msw_snapshots__/openai.chat/gpt-4o-2024-08-06 (non-streaming)/modify parent content_1_3b9c9ee90eacd058e510ca1c82cbd554.json b/packages/xl-ai/src/api/formats/html-blocks/__snapshots__/htmlBlocks.test.ts/Update/__msw_snapshots__/openai.chat/gpt-4o-2024-08-06 (non-streaming)/modify parent content_1_3b9c9ee90eacd058e510ca1c82cbd554.json index df301311a9..6ab2f5ad75 100644 --- a/packages/xl-ai/src/api/formats/html-blocks/__snapshots__/htmlBlocks.test.ts/Update/__msw_snapshots__/openai.chat/gpt-4o-2024-08-06 (non-streaming)/modify parent content_1_3b9c9ee90eacd058e510ca1c82cbd554.json +++ b/packages/xl-ai/src/api/formats/html-blocks/__snapshots__/htmlBlocks.test.ts/Update/__msw_snapshots__/openai.chat/gpt-4o-2024-08-06 (non-streaming)/modify parent content_1_3b9c9ee90eacd058e510ca1c82cbd554.json @@ -9,7 +9,7 @@ "response": { "status": 200, "statusText": "", - "body": "{\n \"id\": \"chatcmpl-Bgo1bnYjiN8zMaTabQg3pnPXSWPOs\",\n \"object\": \"chat.completion\",\n \"created\": 1749541771,\n \"model\": \"gpt-4o-2024-08-06\",\n \"choices\": [\n {\n \"index\": 0,\n \"message\": {\n \"role\": \"assistant\",\n \"content\": null,\n \"tool_calls\": [\n {\n \"id\": \"call_V9LvvvQVkEm8BCv1O8lM5Qs9\",\n \"type\": \"function\",\n \"function\": {\n \"name\": \"json\",\n \"arguments\": \"{\\\"operations\\\":[{\\\"type\\\":\\\"update\\\",\\\"id\\\":\\\"ref1$\\\",\\\"block\\\":\\\"

I NEED TO BUY:

\\\"}]}\"\n }\n }\n ],\n \"refusal\": null,\n \"annotations\": []\n },\n \"logprobs\": null,\n \"finish_reason\": \"stop\"\n }\n ],\n \"usage\": {\n \"prompt_tokens\": 545,\n \"completion_tokens\": 27,\n \"total_tokens\": 572,\n \"prompt_tokens_details\": {\n \"cached_tokens\": 0,\n \"audio_tokens\": 0\n },\n \"completion_tokens_details\": {\n \"reasoning_tokens\": 0,\n \"audio_tokens\": 0,\n \"accepted_prediction_tokens\": 0,\n \"rejected_prediction_tokens\": 0\n }\n },\n \"service_tier\": \"default\",\n \"system_fingerprint\": \"fp_07871e2ad8\"\n}\n", + "body": "{\n \"id\": \"chatcmpl-BhcI2nsiP66ngWmFsYz9EVL2tlB6K\",\n \"object\": \"chat.completion\",\n \"created\": 1749734990,\n \"model\": \"gpt-4o-2024-08-06\",\n \"choices\": [\n {\n \"index\": 0,\n \"message\": {\n \"role\": \"assistant\",\n \"content\": null,\n \"tool_calls\": [\n {\n \"id\": \"call_NDPPktzJshsDecmFJ0YZcO6Y\",\n \"type\": \"function\",\n \"function\": {\n \"name\": \"json\",\n \"arguments\": \"{\\\"operations\\\":[{\\\"type\\\":\\\"update\\\",\\\"id\\\":\\\"ref1$\\\",\\\"block\\\":\\\"

I NEED TO BUY:

\\\"}]}\"\n }\n }\n ],\n \"refusal\": null,\n \"annotations\": []\n },\n \"logprobs\": null,\n \"finish_reason\": \"stop\"\n }\n ],\n \"usage\": {\n \"prompt_tokens\": 545,\n \"completion_tokens\": 27,\n \"total_tokens\": 572,\n \"prompt_tokens_details\": {\n \"cached_tokens\": 0,\n \"audio_tokens\": 0\n },\n \"completion_tokens_details\": {\n \"reasoning_tokens\": 0,\n \"audio_tokens\": 0,\n \"accepted_prediction_tokens\": 0,\n \"rejected_prediction_tokens\": 0\n }\n },\n \"service_tier\": \"default\",\n \"system_fingerprint\": \"fp_07871e2ad8\"\n}\n", "headers": [] } } \ No newline at end of file diff --git a/packages/xl-ai/src/api/formats/html-blocks/__snapshots__/htmlBlocks.test.ts/Update/__msw_snapshots__/openai.chat/gpt-4o-2024-08-06 (non-streaming)/plain source block, add mention_1_2e588074658964fdee8f372a25645e39.json b/packages/xl-ai/src/api/formats/html-blocks/__snapshots__/htmlBlocks.test.ts/Update/__msw_snapshots__/openai.chat/gpt-4o-2024-08-06 (non-streaming)/plain source block, add mention_1_2e588074658964fdee8f372a25645e39.json index 1cc4661333..036aa3a0ba 100644 --- a/packages/xl-ai/src/api/formats/html-blocks/__snapshots__/htmlBlocks.test.ts/Update/__msw_snapshots__/openai.chat/gpt-4o-2024-08-06 (non-streaming)/plain source block, add mention_1_2e588074658964fdee8f372a25645e39.json +++ b/packages/xl-ai/src/api/formats/html-blocks/__snapshots__/htmlBlocks.test.ts/Update/__msw_snapshots__/openai.chat/gpt-4o-2024-08-06 (non-streaming)/plain source block, add mention_1_2e588074658964fdee8f372a25645e39.json @@ -9,7 +9,7 @@ "response": { "status": 200, "statusText": "", - "body": "{\n \"id\": \"chatcmpl-Bgo1UYEcAM40KcFoFgfwfWmwJ5JRj\",\n \"object\": \"chat.completion\",\n \"created\": 1749541764,\n \"model\": \"gpt-4o-2024-08-06\",\n \"choices\": [\n {\n \"index\": 0,\n \"message\": {\n \"role\": \"assistant\",\n \"content\": null,\n \"tool_calls\": [\n {\n \"id\": \"call_MtnpAhpmAwJpL08AWywYWSwO\",\n \"type\": \"function\",\n \"function\": {\n \"name\": \"json\",\n \"arguments\": \"{\\\"operations\\\":[{\\\"type\\\":\\\"update\\\",\\\"id\\\":\\\"ref1$\\\",\\\"block\\\":\\\"

Hello, @Jane Doe!

\\\"}]}\"\n }\n }\n ],\n \"refusal\": null,\n \"annotations\": []\n },\n \"logprobs\": null,\n \"finish_reason\": \"stop\"\n }\n ],\n \"usage\": {\n \"prompt_tokens\": 650,\n \"completion_tokens\": 46,\n \"total_tokens\": 696,\n \"prompt_tokens_details\": {\n \"cached_tokens\": 0,\n \"audio_tokens\": 0\n },\n \"completion_tokens_details\": {\n \"reasoning_tokens\": 0,\n \"audio_tokens\": 0,\n \"accepted_prediction_tokens\": 0,\n \"rejected_prediction_tokens\": 0\n }\n },\n \"service_tier\": \"default\",\n \"system_fingerprint\": \"fp_07871e2ad8\"\n}\n", + "body": "{\n \"id\": \"chatcmpl-BhcHubb6jvHcQqJWwzoml9FZqJKqG\",\n \"object\": \"chat.completion\",\n \"created\": 1749734982,\n \"model\": \"gpt-4o-2024-08-06\",\n \"choices\": [\n {\n \"index\": 0,\n \"message\": {\n \"role\": \"assistant\",\n \"content\": null,\n \"tool_calls\": [\n {\n \"id\": \"call_DA5xtTAB5ZruQCgBYKgq5s2b\",\n \"type\": \"function\",\n \"function\": {\n \"name\": \"json\",\n \"arguments\": \"{\\\"operations\\\":[{\\\"type\\\":\\\"update\\\",\\\"id\\\":\\\"ref1$\\\",\\\"block\\\":\\\"

Hello, @Jane Doe!

\\\"}]}\"\n }\n }\n ],\n \"refusal\": null,\n \"annotations\": []\n },\n \"logprobs\": null,\n \"finish_reason\": \"stop\"\n }\n ],\n \"usage\": {\n \"prompt_tokens\": 650,\n \"completion_tokens\": 46,\n \"total_tokens\": 696,\n \"prompt_tokens_details\": {\n \"cached_tokens\": 0,\n \"audio_tokens\": 0\n },\n \"completion_tokens_details\": {\n \"reasoning_tokens\": 0,\n \"audio_tokens\": 0,\n \"accepted_prediction_tokens\": 0,\n \"rejected_prediction_tokens\": 0\n }\n },\n \"service_tier\": \"default\",\n \"system_fingerprint\": \"fp_07871e2ad8\"\n}\n", "headers": [] } } \ No newline at end of file diff --git a/packages/xl-ai/src/api/formats/html-blocks/__snapshots__/htmlBlocks.test.ts/Update/__msw_snapshots__/openai.chat/gpt-4o-2024-08-06 (non-streaming)/standard update_1_8aa8c7ee6f4c17a92493df542b131069.json b/packages/xl-ai/src/api/formats/html-blocks/__snapshots__/htmlBlocks.test.ts/Update/__msw_snapshots__/openai.chat/gpt-4o-2024-08-06 (non-streaming)/standard update_1_8aa8c7ee6f4c17a92493df542b131069.json index 11130b38ff..768ef729ff 100644 --- a/packages/xl-ai/src/api/formats/html-blocks/__snapshots__/htmlBlocks.test.ts/Update/__msw_snapshots__/openai.chat/gpt-4o-2024-08-06 (non-streaming)/standard update_1_8aa8c7ee6f4c17a92493df542b131069.json +++ b/packages/xl-ai/src/api/formats/html-blocks/__snapshots__/htmlBlocks.test.ts/Update/__msw_snapshots__/openai.chat/gpt-4o-2024-08-06 (non-streaming)/standard update_1_8aa8c7ee6f4c17a92493df542b131069.json @@ -9,7 +9,7 @@ "response": { "status": 200, "statusText": "", - "body": "{\n \"id\": \"chatcmpl-Bgo1I6NV5wn4UpP64a8Ravsc8dBTZ\",\n \"object\": \"chat.completion\",\n \"created\": 1749541752,\n \"model\": \"gpt-4o-2024-08-06\",\n \"choices\": [\n {\n \"index\": 0,\n \"message\": {\n \"role\": \"assistant\",\n \"content\": null,\n \"tool_calls\": [\n {\n \"id\": \"call_bYJCdPHuBGCuS19Y3zorM1VI\",\n \"type\": \"function\",\n \"function\": {\n \"name\": \"json\",\n \"arguments\": \"{\\\"operations\\\":[{\\\"type\\\":\\\"update\\\",\\\"id\\\":\\\"ref1$\\\",\\\"block\\\":\\\"

Hallo, Welt!

\\\"}]}\"\n }\n }\n ],\n \"refusal\": null,\n \"annotations\": []\n },\n \"logprobs\": null,\n \"finish_reason\": \"stop\"\n }\n ],\n \"usage\": {\n \"prompt_tokens\": 641,\n \"completion_tokens\": 27,\n \"total_tokens\": 668,\n \"prompt_tokens_details\": {\n \"cached_tokens\": 0,\n \"audio_tokens\": 0\n },\n \"completion_tokens_details\": {\n \"reasoning_tokens\": 0,\n \"audio_tokens\": 0,\n \"accepted_prediction_tokens\": 0,\n \"rejected_prediction_tokens\": 0\n }\n },\n \"service_tier\": \"default\",\n \"system_fingerprint\": \"fp_07871e2ad8\"\n}\n", + "body": "{\n \"id\": \"chatcmpl-BhcHeEohd7Bir7AZDcmc0u9C1WlyO\",\n \"object\": \"chat.completion\",\n \"created\": 1749734966,\n \"model\": \"gpt-4o-2024-08-06\",\n \"choices\": [\n {\n \"index\": 0,\n \"message\": {\n \"role\": \"assistant\",\n \"content\": null,\n \"tool_calls\": [\n {\n \"id\": \"call_9lite6j2utp4jUDY4p7nPwa9\",\n \"type\": \"function\",\n \"function\": {\n \"name\": \"json\",\n \"arguments\": \"{\\\"operations\\\":[{\\\"type\\\":\\\"update\\\",\\\"id\\\":\\\"ref1$\\\",\\\"block\\\":\\\"

Hallo, Welt!

\\\"}]}\"\n }\n }\n ],\n \"refusal\": null,\n \"annotations\": []\n },\n \"logprobs\": null,\n \"finish_reason\": \"stop\"\n }\n ],\n \"usage\": {\n \"prompt_tokens\": 641,\n \"completion_tokens\": 27,\n \"total_tokens\": 668,\n \"prompt_tokens_details\": {\n \"cached_tokens\": 0,\n \"audio_tokens\": 0\n },\n \"completion_tokens_details\": {\n \"reasoning_tokens\": 0,\n \"audio_tokens\": 0,\n \"accepted_prediction_tokens\": 0,\n \"rejected_prediction_tokens\": 0\n }\n },\n \"service_tier\": \"default\",\n \"system_fingerprint\": \"fp_07871e2ad8\"\n}\n", "headers": [] } } \ No newline at end of file diff --git a/packages/xl-ai/src/api/formats/html-blocks/__snapshots__/htmlBlocks.test.ts/Update/__msw_snapshots__/openai.chat/gpt-4o-2024-08-06 (non-streaming)/styles + ic in source block, remove mark_1_7c37aad8ce27e926dc486960a90f35eb.json b/packages/xl-ai/src/api/formats/html-blocks/__snapshots__/htmlBlocks.test.ts/Update/__msw_snapshots__/openai.chat/gpt-4o-2024-08-06 (non-streaming)/styles + ic in source block, remove mark_1_7c37aad8ce27e926dc486960a90f35eb.json index ebf95282ee..d0bf3ff3ba 100644 --- a/packages/xl-ai/src/api/formats/html-blocks/__snapshots__/htmlBlocks.test.ts/Update/__msw_snapshots__/openai.chat/gpt-4o-2024-08-06 (non-streaming)/styles + ic in source block, remove mark_1_7c37aad8ce27e926dc486960a90f35eb.json +++ b/packages/xl-ai/src/api/formats/html-blocks/__snapshots__/htmlBlocks.test.ts/Update/__msw_snapshots__/openai.chat/gpt-4o-2024-08-06 (non-streaming)/styles + ic in source block, remove mark_1_7c37aad8ce27e926dc486960a90f35eb.json @@ -9,7 +9,7 @@ "response": { "status": 200, "statusText": "", - "body": "{\n \"id\": \"chatcmpl-Bgo1PlddkaUkSwWW7emmDSTQv5M3J\",\n \"object\": \"chat.completion\",\n \"created\": 1749541759,\n \"model\": \"gpt-4o-2024-08-06\",\n \"choices\": [\n {\n \"index\": 0,\n \"message\": {\n \"role\": \"assistant\",\n \"content\": null,\n \"tool_calls\": [\n {\n \"id\": \"call_jebjdJKK22zBpuoThs5dvIiZ\",\n \"type\": \"function\",\n \"function\": {\n \"name\": \"json\",\n \"arguments\": \"{\\\"operations\\\":[{\\\"type\\\":\\\"update\\\",\\\"id\\\":\\\"ref2$\\\",\\\"block\\\":\\\"

Hello, @John Doe! How are you doing? This text is blue!

\\\"}]}\"\n }\n }\n ],\n \"refusal\": null,\n \"annotations\": []\n },\n \"logprobs\": null,\n \"finish_reason\": \"stop\"\n }\n ],\n \"usage\": {\n \"prompt_tokens\": 643,\n \"completion_tokens\": 66,\n \"total_tokens\": 709,\n \"prompt_tokens_details\": {\n \"cached_tokens\": 0,\n \"audio_tokens\": 0\n },\n \"completion_tokens_details\": {\n \"reasoning_tokens\": 0,\n \"audio_tokens\": 0,\n \"accepted_prediction_tokens\": 0,\n \"rejected_prediction_tokens\": 0\n }\n },\n \"service_tier\": \"default\",\n \"system_fingerprint\": \"fp_07871e2ad8\"\n}\n", + "body": "{\n \"id\": \"chatcmpl-BhcHoJJjYKNwD75M72vdTLMEvpgBq\",\n \"object\": \"chat.completion\",\n \"created\": 1749734976,\n \"model\": \"gpt-4o-2024-08-06\",\n \"choices\": [\n {\n \"index\": 0,\n \"message\": {\n \"role\": \"assistant\",\n \"content\": null,\n \"tool_calls\": [\n {\n \"id\": \"call_EmlgrXIW8WuSAoklTCZLyO1q\",\n \"type\": \"function\",\n \"function\": {\n \"name\": \"json\",\n \"arguments\": \"{\\\"operations\\\":[{\\\"type\\\":\\\"update\\\",\\\"id\\\":\\\"ref2$\\\",\\\"block\\\":\\\"

Hello, @John Doe! How are you doing? This text is blue!

\\\"}]}\"\n }\n }\n ],\n \"refusal\": null,\n \"annotations\": []\n },\n \"logprobs\": null,\n \"finish_reason\": \"stop\"\n }\n ],\n \"usage\": {\n \"prompt_tokens\": 643,\n \"completion_tokens\": 66,\n \"total_tokens\": 709,\n \"prompt_tokens_details\": {\n \"cached_tokens\": 0,\n \"audio_tokens\": 0\n },\n \"completion_tokens_details\": {\n \"reasoning_tokens\": 0,\n \"audio_tokens\": 0,\n \"accepted_prediction_tokens\": 0,\n \"rejected_prediction_tokens\": 0\n }\n },\n \"service_tier\": \"default\",\n \"system_fingerprint\": \"fp_a288987b44\"\n}\n", "headers": [] } } \ No newline at end of file diff --git a/packages/xl-ai/src/api/formats/html-blocks/__snapshots__/htmlBlocks.test.ts/Update/__msw_snapshots__/openai.chat/gpt-4o-2024-08-06 (non-streaming)/styles + ic in source block, remove mention_1_a9fa6b0be7fae1d70499aa6ecfea6704.json b/packages/xl-ai/src/api/formats/html-blocks/__snapshots__/htmlBlocks.test.ts/Update/__msw_snapshots__/openai.chat/gpt-4o-2024-08-06 (non-streaming)/styles + ic in source block, remove mention_1_a9fa6b0be7fae1d70499aa6ecfea6704.json index f3db5dc921..67e2751fad 100644 --- a/packages/xl-ai/src/api/formats/html-blocks/__snapshots__/htmlBlocks.test.ts/Update/__msw_snapshots__/openai.chat/gpt-4o-2024-08-06 (non-streaming)/styles + ic in source block, remove mention_1_a9fa6b0be7fae1d70499aa6ecfea6704.json +++ b/packages/xl-ai/src/api/formats/html-blocks/__snapshots__/htmlBlocks.test.ts/Update/__msw_snapshots__/openai.chat/gpt-4o-2024-08-06 (non-streaming)/styles + ic in source block, remove mention_1_a9fa6b0be7fae1d70499aa6ecfea6704.json @@ -9,7 +9,7 @@ "response": { "status": 200, "statusText": "", - "body": "{\n \"id\": \"chatcmpl-Bgo1RRsOgShbNJW1TwqvzWYovrCzM\",\n \"object\": \"chat.completion\",\n \"created\": 1749541761,\n \"model\": \"gpt-4o-2024-08-06\",\n \"choices\": [\n {\n \"index\": 0,\n \"message\": {\n \"role\": \"assistant\",\n \"content\": null,\n \"tool_calls\": [\n {\n \"id\": \"call_Z5isb3B9nPrsGTYHhK6aacFr\",\n \"type\": \"function\",\n \"function\": {\n \"name\": \"json\",\n \"arguments\": \"{\\\"operations\\\":[{\\\"type\\\":\\\"update\\\",\\\"id\\\":\\\"ref2$\\\",\\\"block\\\":\\\"

Hello! How are you doing? This text is blue!

\\\"}]}\"\n }\n }\n ],\n \"refusal\": null,\n \"annotations\": []\n },\n \"logprobs\": null,\n \"finish_reason\": \"stop\"\n }\n ],\n \"usage\": {\n \"prompt_tokens\": 659,\n \"completion_tokens\": 49,\n \"total_tokens\": 708,\n \"prompt_tokens_details\": {\n \"cached_tokens\": 0,\n \"audio_tokens\": 0\n },\n \"completion_tokens_details\": {\n \"reasoning_tokens\": 0,\n \"audio_tokens\": 0,\n \"accepted_prediction_tokens\": 0,\n \"rejected_prediction_tokens\": 0\n }\n },\n \"service_tier\": \"default\",\n \"system_fingerprint\": \"fp_07871e2ad8\"\n}\n", + "body": "{\n \"id\": \"chatcmpl-BhcHpaF7uKlTEF9GYexdxDxojvKwE\",\n \"object\": \"chat.completion\",\n \"created\": 1749734977,\n \"model\": \"gpt-4o-2024-08-06\",\n \"choices\": [\n {\n \"index\": 0,\n \"message\": {\n \"role\": \"assistant\",\n \"content\": null,\n \"tool_calls\": [\n {\n \"id\": \"call_OGZkJgIpnQKFAbFQlNcxV36j\",\n \"type\": \"function\",\n \"function\": {\n \"name\": \"json\",\n \"arguments\": \"{\\\"operations\\\":[{\\\"type\\\":\\\"update\\\",\\\"id\\\":\\\"ref2$\\\",\\\"block\\\":\\\"

Hello! How are you doing? This text is blue!

\\\"}]}\"\n }\n }\n ],\n \"refusal\": null,\n \"annotations\": []\n },\n \"logprobs\": null,\n \"finish_reason\": \"stop\"\n }\n ],\n \"usage\": {\n \"prompt_tokens\": 659,\n \"completion_tokens\": 49,\n \"total_tokens\": 708,\n \"prompt_tokens_details\": {\n \"cached_tokens\": 0,\n \"audio_tokens\": 0\n },\n \"completion_tokens_details\": {\n \"reasoning_tokens\": 0,\n \"audio_tokens\": 0,\n \"accepted_prediction_tokens\": 0,\n \"rejected_prediction_tokens\": 0\n }\n },\n \"service_tier\": \"default\",\n \"system_fingerprint\": \"fp_07871e2ad8\"\n}\n", "headers": [] } } \ No newline at end of file diff --git a/packages/xl-ai/src/api/formats/html-blocks/__snapshots__/htmlBlocks.test.ts/Update/__msw_snapshots__/openai.chat/gpt-4o-2024-08-06 (non-streaming)/styles + ic in source block, replace content_1_4d4299b8044479fe9e15a4a168707806.json b/packages/xl-ai/src/api/formats/html-blocks/__snapshots__/htmlBlocks.test.ts/Update/__msw_snapshots__/openai.chat/gpt-4o-2024-08-06 (non-streaming)/styles + ic in source block, replace content_1_4d4299b8044479fe9e15a4a168707806.json index 221caaf1b1..d8f8620f7d 100644 --- a/packages/xl-ai/src/api/formats/html-blocks/__snapshots__/htmlBlocks.test.ts/Update/__msw_snapshots__/openai.chat/gpt-4o-2024-08-06 (non-streaming)/styles + ic in source block, replace content_1_4d4299b8044479fe9e15a4a168707806.json +++ b/packages/xl-ai/src/api/formats/html-blocks/__snapshots__/htmlBlocks.test.ts/Update/__msw_snapshots__/openai.chat/gpt-4o-2024-08-06 (non-streaming)/styles + ic in source block, replace content_1_4d4299b8044479fe9e15a4a168707806.json @@ -9,7 +9,7 @@ "response": { "status": 200, "statusText": "", - "body": "{\n \"id\": \"chatcmpl-Bgo1Mn3O1hFpq2UtCXLcuRV703NZZ\",\n \"object\": \"chat.completion\",\n \"created\": 1749541756,\n \"model\": \"gpt-4o-2024-08-06\",\n \"choices\": [\n {\n \"index\": 0,\n \"message\": {\n \"role\": \"assistant\",\n \"content\": null,\n \"tool_calls\": [\n {\n \"id\": \"call_yJErdZOFufTcIbgMHp3AtHqi\",\n \"type\": \"function\",\n \"function\": {\n \"name\": \"json\",\n \"arguments\": \"{\\\"operations\\\":[{\\\"type\\\":\\\"update\\\",\\\"id\\\":\\\"ref2$\\\",\\\"block\\\":\\\"

Hello, updated content

\\\"}]}\"\n }\n }\n ],\n \"refusal\": null,\n \"annotations\": []\n },\n \"logprobs\": null,\n \"finish_reason\": \"stop\"\n }\n ],\n \"usage\": {\n \"prompt_tokens\": 649,\n \"completion_tokens\": 27,\n \"total_tokens\": 676,\n \"prompt_tokens_details\": {\n \"cached_tokens\": 0,\n \"audio_tokens\": 0\n },\n \"completion_tokens_details\": {\n \"reasoning_tokens\": 0,\n \"audio_tokens\": 0,\n \"accepted_prediction_tokens\": 0,\n \"rejected_prediction_tokens\": 0\n }\n },\n \"service_tier\": \"default\",\n \"system_fingerprint\": \"fp_07871e2ad8\"\n}\n", + "body": "{\n \"id\": \"chatcmpl-BhcHlJRL5zw8fn39N2IdfFrNfE83J\",\n \"object\": \"chat.completion\",\n \"created\": 1749734973,\n \"model\": \"gpt-4o-2024-08-06\",\n \"choices\": [\n {\n \"index\": 0,\n \"message\": {\n \"role\": \"assistant\",\n \"content\": null,\n \"tool_calls\": [\n {\n \"id\": \"call_DJW3hVRD6IKt0veNAtDOUf7e\",\n \"type\": \"function\",\n \"function\": {\n \"name\": \"json\",\n \"arguments\": \"{\\\"operations\\\":[{\\\"type\\\":\\\"update\\\",\\\"id\\\":\\\"ref2$\\\",\\\"block\\\":\\\"

Hello, updated content

\\\"}]}\"\n }\n }\n ],\n \"refusal\": null,\n \"annotations\": []\n },\n \"logprobs\": null,\n \"finish_reason\": \"stop\"\n }\n ],\n \"usage\": {\n \"prompt_tokens\": 649,\n \"completion_tokens\": 27,\n \"total_tokens\": 676,\n \"prompt_tokens_details\": {\n \"cached_tokens\": 0,\n \"audio_tokens\": 0\n },\n \"completion_tokens_details\": {\n \"reasoning_tokens\": 0,\n \"audio_tokens\": 0,\n \"accepted_prediction_tokens\": 0,\n \"rejected_prediction_tokens\": 0\n }\n },\n \"service_tier\": \"default\",\n \"system_fingerprint\": \"fp_07871e2ad8\"\n}\n", "headers": [] } } \ No newline at end of file diff --git a/packages/xl-ai/src/api/formats/html-blocks/__snapshots__/htmlBlocks.test.ts/Update/__msw_snapshots__/openai.chat/gpt-4o-2024-08-06 (non-streaming)/styles + ic in source block, update mention prop_1_c6fa894a14f6be81fb568283e4724af9.json b/packages/xl-ai/src/api/formats/html-blocks/__snapshots__/htmlBlocks.test.ts/Update/__msw_snapshots__/openai.chat/gpt-4o-2024-08-06 (non-streaming)/styles + ic in source block, update mention prop_1_c6fa894a14f6be81fb568283e4724af9.json index 684f93a2cc..495c11e0d2 100644 --- a/packages/xl-ai/src/api/formats/html-blocks/__snapshots__/htmlBlocks.test.ts/Update/__msw_snapshots__/openai.chat/gpt-4o-2024-08-06 (non-streaming)/styles + ic in source block, update mention prop_1_c6fa894a14f6be81fb568283e4724af9.json +++ b/packages/xl-ai/src/api/formats/html-blocks/__snapshots__/htmlBlocks.test.ts/Update/__msw_snapshots__/openai.chat/gpt-4o-2024-08-06 (non-streaming)/styles + ic in source block, update mention prop_1_c6fa894a14f6be81fb568283e4724af9.json @@ -9,7 +9,7 @@ "response": { "status": 200, "statusText": "", - "body": "{\n \"id\": \"chatcmpl-Bgo1Vl5X1yfvsUljIF2NVBauCLVDp\",\n \"object\": \"chat.completion\",\n \"created\": 1749541765,\n \"model\": \"gpt-4o-2024-08-06\",\n \"choices\": [\n {\n \"index\": 0,\n \"message\": {\n \"role\": \"assistant\",\n \"content\": null,\n \"tool_calls\": [\n {\n \"id\": \"call_jT5qCMab32Yfw2E6kmRsUSFv\",\n \"type\": \"function\",\n \"function\": {\n \"name\": \"json\",\n \"arguments\": \"{\\\"operations\\\":[{\\\"type\\\":\\\"update\\\",\\\"id\\\":\\\"ref2$\\\",\\\"block\\\":\\\"

Hello, @Jane Doe! How are you doing? This text is blue!

\\\"}]}\"\n }\n }\n ],\n \"refusal\": null,\n \"annotations\": []\n },\n \"logprobs\": null,\n \"finish_reason\": \"stop\"\n }\n ],\n \"usage\": {\n \"prompt_tokens\": 641,\n \"completion_tokens\": 71,\n \"total_tokens\": 712,\n \"prompt_tokens_details\": {\n \"cached_tokens\": 0,\n \"audio_tokens\": 0\n },\n \"completion_tokens_details\": {\n \"reasoning_tokens\": 0,\n \"audio_tokens\": 0,\n \"accepted_prediction_tokens\": 0,\n \"rejected_prediction_tokens\": 0\n }\n },\n \"service_tier\": \"default\",\n \"system_fingerprint\": \"fp_07871e2ad8\"\n}\n", + "body": "{\n \"id\": \"chatcmpl-BhcHwBaaZHFkfhg7lUaOcCO9J54FB\",\n \"object\": \"chat.completion\",\n \"created\": 1749734984,\n \"model\": \"gpt-4o-2024-08-06\",\n \"choices\": [\n {\n \"index\": 0,\n \"message\": {\n \"role\": \"assistant\",\n \"content\": null,\n \"tool_calls\": [\n {\n \"id\": \"call_nE9zyIWLfXJ1629897DstBeo\",\n \"type\": \"function\",\n \"function\": {\n \"name\": \"json\",\n \"arguments\": \"{\\\"operations\\\":[{\\\"type\\\":\\\"update\\\",\\\"id\\\":\\\"ref2$\\\",\\\"block\\\":\\\"

Hello, @Jane Doe! How are you doing? This text is blue!

\\\"}]}\"\n }\n }\n ],\n \"refusal\": null,\n \"annotations\": []\n },\n \"logprobs\": null,\n \"finish_reason\": \"stop\"\n }\n ],\n \"usage\": {\n \"prompt_tokens\": 641,\n \"completion_tokens\": 71,\n \"total_tokens\": 712,\n \"prompt_tokens_details\": {\n \"cached_tokens\": 0,\n \"audio_tokens\": 0\n },\n \"completion_tokens_details\": {\n \"reasoning_tokens\": 0,\n \"audio_tokens\": 0,\n \"accepted_prediction_tokens\": 0,\n \"rejected_prediction_tokens\": 0\n }\n },\n \"service_tier\": \"default\",\n \"system_fingerprint\": \"fp_07871e2ad8\"\n}\n", "headers": [] } } \ No newline at end of file diff --git a/packages/xl-ai/src/api/formats/html-blocks/__snapshots__/htmlBlocks.test.ts/Update/__msw_snapshots__/openai.chat/gpt-4o-2024-08-06 (non-streaming)/styles + ic in source block, update text_1_aa627d12493a30d6fa1bbf6d282b6ecd.json b/packages/xl-ai/src/api/formats/html-blocks/__snapshots__/htmlBlocks.test.ts/Update/__msw_snapshots__/openai.chat/gpt-4o-2024-08-06 (non-streaming)/styles + ic in source block, update text_1_aa627d12493a30d6fa1bbf6d282b6ecd.json index f862ea0253..40443bb0e2 100644 --- a/packages/xl-ai/src/api/formats/html-blocks/__snapshots__/htmlBlocks.test.ts/Update/__msw_snapshots__/openai.chat/gpt-4o-2024-08-06 (non-streaming)/styles + ic in source block, update text_1_aa627d12493a30d6fa1bbf6d282b6ecd.json +++ b/packages/xl-ai/src/api/formats/html-blocks/__snapshots__/htmlBlocks.test.ts/Update/__msw_snapshots__/openai.chat/gpt-4o-2024-08-06 (non-streaming)/styles + ic in source block, update text_1_aa627d12493a30d6fa1bbf6d282b6ecd.json @@ -9,7 +9,7 @@ "response": { "status": 200, "statusText": "", - "body": "{\n \"id\": \"chatcmpl-Bgo1NVHQeGDKfntaqsuDHJt0mN7JA\",\n \"object\": \"chat.completion\",\n \"created\": 1749541757,\n \"model\": \"gpt-4o-2024-08-06\",\n \"choices\": [\n {\n \"index\": 0,\n \"message\": {\n \"role\": \"assistant\",\n \"content\": null,\n \"tool_calls\": [\n {\n \"id\": \"call_vTuIR1UDdpxVsJ3JT7NOaZBl\",\n \"type\": \"function\",\n \"function\": {\n \"name\": \"json\",\n \"arguments\": \"{\\\"operations\\\":[{\\\"type\\\":\\\"update\\\",\\\"id\\\":\\\"ref2$\\\",\\\"block\\\":\\\"

Hallo, @John Doe! Wie geht es dir? Dieser Text ist blau!

\\\"}]}\"\n }\n }\n ],\n \"refusal\": null,\n \"annotations\": []\n },\n \"logprobs\": null,\n \"finish_reason\": \"stop\"\n }\n ],\n \"usage\": {\n \"prompt_tokens\": 648,\n \"completion_tokens\": 72,\n \"total_tokens\": 720,\n \"prompt_tokens_details\": {\n \"cached_tokens\": 0,\n \"audio_tokens\": 0\n },\n \"completion_tokens_details\": {\n \"reasoning_tokens\": 0,\n \"audio_tokens\": 0,\n \"accepted_prediction_tokens\": 0,\n \"rejected_prediction_tokens\": 0\n }\n },\n \"service_tier\": \"default\",\n \"system_fingerprint\": \"fp_07871e2ad8\"\n}\n", + "body": "{\n \"id\": \"chatcmpl-BhcHmqAHV9wM3PPeIuuMVK7alMhET\",\n \"object\": \"chat.completion\",\n \"created\": 1749734974,\n \"model\": \"gpt-4o-2024-08-06\",\n \"choices\": [\n {\n \"index\": 0,\n \"message\": {\n \"role\": \"assistant\",\n \"content\": null,\n \"tool_calls\": [\n {\n \"id\": \"call_gEWruFBB42OUsIW0xBDJd7mZ\",\n \"type\": \"function\",\n \"function\": {\n \"name\": \"json\",\n \"arguments\": \"{\\\"operations\\\":[{\\\"type\\\":\\\"update\\\",\\\"id\\\":\\\"ref2$\\\",\\\"block\\\":\\\"

Hallo, @John Doe! Wie geht es dir? Dieser Text ist blau!

\\\"}]}\"\n }\n }\n ],\n \"refusal\": null,\n \"annotations\": []\n },\n \"logprobs\": null,\n \"finish_reason\": \"stop\"\n }\n ],\n \"usage\": {\n \"prompt_tokens\": 648,\n \"completion_tokens\": 72,\n \"total_tokens\": 720,\n \"prompt_tokens_details\": {\n \"cached_tokens\": 0,\n \"audio_tokens\": 0\n },\n \"completion_tokens_details\": {\n \"reasoning_tokens\": 0,\n \"audio_tokens\": 0,\n \"accepted_prediction_tokens\": 0,\n \"rejected_prediction_tokens\": 0\n }\n },\n \"service_tier\": \"default\",\n \"system_fingerprint\": \"fp_07871e2ad8\"\n}\n", "headers": [] } } \ No newline at end of file diff --git a/packages/xl-ai/src/api/formats/html-blocks/__snapshots__/htmlBlocks.test.ts/Update/__msw_snapshots__/openai.chat/gpt-4o-2024-08-06 (non-streaming)/styles + ic in target block, add mark (paragraph)_1_711e7638278935cce832085d8cce0abc.json b/packages/xl-ai/src/api/formats/html-blocks/__snapshots__/htmlBlocks.test.ts/Update/__msw_snapshots__/openai.chat/gpt-4o-2024-08-06 (non-streaming)/styles + ic in target block, add mark (paragraph)_1_711e7638278935cce832085d8cce0abc.json index a871c4e39e..c0186e82af 100644 --- a/packages/xl-ai/src/api/formats/html-blocks/__snapshots__/htmlBlocks.test.ts/Update/__msw_snapshots__/openai.chat/gpt-4o-2024-08-06 (non-streaming)/styles + ic in target block, add mark (paragraph)_1_711e7638278935cce832085d8cce0abc.json +++ b/packages/xl-ai/src/api/formats/html-blocks/__snapshots__/htmlBlocks.test.ts/Update/__msw_snapshots__/openai.chat/gpt-4o-2024-08-06 (non-streaming)/styles + ic in target block, add mark (paragraph)_1_711e7638278935cce832085d8cce0abc.json @@ -9,7 +9,7 @@ "response": { "status": 200, "statusText": "", - "body": "{\n \"id\": \"chatcmpl-Bgo1TxGZSP1krLn97NpexJ1hCRNBU\",\n \"object\": \"chat.completion\",\n \"created\": 1749541763,\n \"model\": \"gpt-4o-2024-08-06\",\n \"choices\": [\n {\n \"index\": 0,\n \"message\": {\n \"role\": \"assistant\",\n \"content\": null,\n \"tool_calls\": [\n {\n \"id\": \"call_ctIrvWiZ0w6LrH8tZ4KOooON\",\n \"type\": \"function\",\n \"function\": {\n \"name\": \"json\",\n \"arguments\": \"{\\\"operations\\\":[{\\\"type\\\":\\\"update\\\",\\\"id\\\":\\\"ref1$\\\",\\\"block\\\":\\\"

Hello, world!

\\\"}]}\"\n }\n }\n ],\n \"refusal\": null,\n \"annotations\": []\n },\n \"logprobs\": null,\n \"finish_reason\": \"stop\"\n }\n ],\n \"usage\": {\n \"prompt_tokens\": 639,\n \"completion_tokens\": 30,\n \"total_tokens\": 669,\n \"prompt_tokens_details\": {\n \"cached_tokens\": 0,\n \"audio_tokens\": 0\n },\n \"completion_tokens_details\": {\n \"reasoning_tokens\": 0,\n \"audio_tokens\": 0,\n \"accepted_prediction_tokens\": 0,\n \"rejected_prediction_tokens\": 0\n }\n },\n \"service_tier\": \"default\",\n \"system_fingerprint\": \"fp_07871e2ad8\"\n}\n", + "body": "{\n \"id\": \"chatcmpl-BhcHtNuR0f7s62B2kPWwjhyzfb5wc\",\n \"object\": \"chat.completion\",\n \"created\": 1749734981,\n \"model\": \"gpt-4o-2024-08-06\",\n \"choices\": [\n {\n \"index\": 0,\n \"message\": {\n \"role\": \"assistant\",\n \"content\": null,\n \"tool_calls\": [\n {\n \"id\": \"call_hVYn1P27En0hFFi0Mrp6IrnS\",\n \"type\": \"function\",\n \"function\": {\n \"name\": \"json\",\n \"arguments\": \"{\\\"operations\\\":[{\\\"type\\\":\\\"update\\\",\\\"id\\\":\\\"ref1$\\\",\\\"block\\\":\\\"

Hello, world!

\\\"}]}\"\n }\n }\n ],\n \"refusal\": null,\n \"annotations\": []\n },\n \"logprobs\": null,\n \"finish_reason\": \"stop\"\n }\n ],\n \"usage\": {\n \"prompt_tokens\": 639,\n \"completion_tokens\": 30,\n \"total_tokens\": 669,\n \"prompt_tokens_details\": {\n \"cached_tokens\": 0,\n \"audio_tokens\": 0\n },\n \"completion_tokens_details\": {\n \"reasoning_tokens\": 0,\n \"audio_tokens\": 0,\n \"accepted_prediction_tokens\": 0,\n \"rejected_prediction_tokens\": 0\n }\n },\n \"service_tier\": \"default\",\n \"system_fingerprint\": \"fp_07871e2ad8\"\n}\n", "headers": [] } } \ No newline at end of file diff --git a/packages/xl-ai/src/api/formats/html-blocks/__snapshots__/htmlBlocks.test.ts/Update/__msw_snapshots__/openai.chat/gpt-4o-2024-08-06 (non-streaming)/styles + ic in target block, add mark (word)_1_739768c550cdc9eb5af10dbacc7c6d22.json b/packages/xl-ai/src/api/formats/html-blocks/__snapshots__/htmlBlocks.test.ts/Update/__msw_snapshots__/openai.chat/gpt-4o-2024-08-06 (non-streaming)/styles + ic in target block, add mark (word)_1_739768c550cdc9eb5af10dbacc7c6d22.json index 27b6f9241e..e66f9bff75 100644 --- a/packages/xl-ai/src/api/formats/html-blocks/__snapshots__/htmlBlocks.test.ts/Update/__msw_snapshots__/openai.chat/gpt-4o-2024-08-06 (non-streaming)/styles + ic in target block, add mark (word)_1_739768c550cdc9eb5af10dbacc7c6d22.json +++ b/packages/xl-ai/src/api/formats/html-blocks/__snapshots__/htmlBlocks.test.ts/Update/__msw_snapshots__/openai.chat/gpt-4o-2024-08-06 (non-streaming)/styles + ic in target block, add mark (word)_1_739768c550cdc9eb5af10dbacc7c6d22.json @@ -9,7 +9,7 @@ "response": { "status": 200, "statusText": "", - "body": "{\n \"id\": \"chatcmpl-Bgo1S1FLjOizaOO8Ss94CFrCUI92M\",\n \"object\": \"chat.completion\",\n \"created\": 1749541762,\n \"model\": \"gpt-4o-2024-08-06\",\n \"choices\": [\n {\n \"index\": 0,\n \"message\": {\n \"role\": \"assistant\",\n \"content\": null,\n \"tool_calls\": [\n {\n \"id\": \"call_0wPZ9skOAUi9d2EvyrWjMLpt\",\n \"type\": \"function\",\n \"function\": {\n \"name\": \"json\",\n \"arguments\": \"{\\\"operations\\\":[{\\\"type\\\":\\\"update\\\",\\\"id\\\":\\\"ref1$\\\",\\\"block\\\":\\\"

Hello, world!

\\\"}]}\"\n }\n }\n ],\n \"refusal\": null,\n \"annotations\": []\n },\n \"logprobs\": null,\n \"finish_reason\": \"stop\"\n }\n ],\n \"usage\": {\n \"prompt_tokens\": 646,\n \"completion_tokens\": 31,\n \"total_tokens\": 677,\n \"prompt_tokens_details\": {\n \"cached_tokens\": 0,\n \"audio_tokens\": 0\n },\n \"completion_tokens_details\": {\n \"reasoning_tokens\": 0,\n \"audio_tokens\": 0,\n \"accepted_prediction_tokens\": 0,\n \"rejected_prediction_tokens\": 0\n }\n },\n \"service_tier\": \"default\",\n \"system_fingerprint\": \"fp_07871e2ad8\"\n}\n", + "body": "{\n \"id\": \"chatcmpl-BhcHrrv6JtF26qY2zEnSTzMvhL6f9\",\n \"object\": \"chat.completion\",\n \"created\": 1749734979,\n \"model\": \"gpt-4o-2024-08-06\",\n \"choices\": [\n {\n \"index\": 0,\n \"message\": {\n \"role\": \"assistant\",\n \"content\": null,\n \"tool_calls\": [\n {\n \"id\": \"call_xv3xHeGsoRtI6MR7cflMbCCP\",\n \"type\": \"function\",\n \"function\": {\n \"name\": \"json\",\n \"arguments\": \"{\\\"operations\\\":[{\\\"type\\\":\\\"update\\\",\\\"id\\\":\\\"ref1$\\\",\\\"block\\\":\\\"

Hello, world!

\\\"}]}\"\n }\n }\n ],\n \"refusal\": null,\n \"annotations\": []\n },\n \"logprobs\": null,\n \"finish_reason\": \"stop\"\n }\n ],\n \"usage\": {\n \"prompt_tokens\": 646,\n \"completion_tokens\": 31,\n \"total_tokens\": 677,\n \"prompt_tokens_details\": {\n \"cached_tokens\": 0,\n \"audio_tokens\": 0\n },\n \"completion_tokens_details\": {\n \"reasoning_tokens\": 0,\n \"audio_tokens\": 0,\n \"accepted_prediction_tokens\": 0,\n \"rejected_prediction_tokens\": 0\n }\n },\n \"service_tier\": \"default\",\n \"system_fingerprint\": \"fp_a288987b44\"\n}\n", "headers": [] } } \ No newline at end of file diff --git a/packages/xl-ai/src/api/formats/html-blocks/__snapshots__/htmlBlocks.test.ts/Update/__msw_snapshots__/openai.chat/gpt-4o-2024-08-06 (non-streaming)/translate selection_1_83bf8aa261516bf197d1391294bbcb06.json b/packages/xl-ai/src/api/formats/html-blocks/__snapshots__/htmlBlocks.test.ts/Update/__msw_snapshots__/openai.chat/gpt-4o-2024-08-06 (non-streaming)/translate selection_1_83bf8aa261516bf197d1391294bbcb06.json index 64cbba3d8f..34729d7121 100644 --- a/packages/xl-ai/src/api/formats/html-blocks/__snapshots__/htmlBlocks.test.ts/Update/__msw_snapshots__/openai.chat/gpt-4o-2024-08-06 (non-streaming)/translate selection_1_83bf8aa261516bf197d1391294bbcb06.json +++ b/packages/xl-ai/src/api/formats/html-blocks/__snapshots__/htmlBlocks.test.ts/Update/__msw_snapshots__/openai.chat/gpt-4o-2024-08-06 (non-streaming)/translate selection_1_83bf8aa261516bf197d1391294bbcb06.json @@ -9,7 +9,7 @@ "response": { "status": 200, "statusText": "", - "body": "{\n \"id\": \"chatcmpl-Bgo1JW9uiumUjN9QXQwahfRm6flRQ\",\n \"object\": \"chat.completion\",\n \"created\": 1749541753,\n \"model\": \"gpt-4o-2024-08-06\",\n \"choices\": [\n {\n \"index\": 0,\n \"message\": {\n \"role\": \"assistant\",\n \"content\": null,\n \"tool_calls\": [\n {\n \"id\": \"call_bOz19MlAPkzX0Mom1EIV6Qq3\",\n \"type\": \"function\",\n \"function\": {\n \"name\": \"json\",\n \"arguments\": \"{\\\"operations\\\":[{\\\"type\\\":\\\"update\\\",\\\"id\\\":\\\"ref2$\\\",\\\"block\\\":\\\"

Hallo

\\\"}]}\"\n }\n }\n ],\n \"refusal\": null,\n \"annotations\": []\n },\n \"logprobs\": null,\n \"finish_reason\": \"stop\"\n }\n ],\n \"usage\": {\n \"prompt_tokens\": 486,\n \"completion_tokens\": 25,\n \"total_tokens\": 511,\n \"prompt_tokens_details\": {\n \"cached_tokens\": 0,\n \"audio_tokens\": 0\n },\n \"completion_tokens_details\": {\n \"reasoning_tokens\": 0,\n \"audio_tokens\": 0,\n \"accepted_prediction_tokens\": 0,\n \"rejected_prediction_tokens\": 0\n }\n },\n \"service_tier\": \"default\",\n \"system_fingerprint\": \"fp_07871e2ad8\"\n}\n", + "body": "{\n \"id\": \"chatcmpl-BhcHih0K4vRotKfQTx7uSwNm05RKp\",\n \"object\": \"chat.completion\",\n \"created\": 1749734970,\n \"model\": \"gpt-4o-2024-08-06\",\n \"choices\": [\n {\n \"index\": 0,\n \"message\": {\n \"role\": \"assistant\",\n \"content\": null,\n \"tool_calls\": [\n {\n \"id\": \"call_jlB5Dt981zT7rzgas2ObHtyq\",\n \"type\": \"function\",\n \"function\": {\n \"name\": \"json\",\n \"arguments\": \"{\\\"operations\\\":[{\\\"type\\\":\\\"update\\\",\\\"id\\\":\\\"ref2$\\\",\\\"block\\\":\\\"

Hallo

\\\"}]}\"\n }\n }\n ],\n \"refusal\": null,\n \"annotations\": []\n },\n \"logprobs\": null,\n \"finish_reason\": \"stop\"\n }\n ],\n \"usage\": {\n \"prompt_tokens\": 486,\n \"completion_tokens\": 25,\n \"total_tokens\": 511,\n \"prompt_tokens_details\": {\n \"cached_tokens\": 0,\n \"audio_tokens\": 0\n },\n \"completion_tokens_details\": {\n \"reasoning_tokens\": 0,\n \"audio_tokens\": 0,\n \"accepted_prediction_tokens\": 0,\n \"rejected_prediction_tokens\": 0\n }\n },\n \"service_tier\": \"default\",\n \"system_fingerprint\": \"fp_a288987b44\"\n}\n", "headers": [] } } \ No newline at end of file diff --git a/packages/xl-ai/src/api/formats/html-blocks/__snapshots__/htmlBlocks.test.ts/Update/__msw_snapshots__/openai.chat/gpt-4o-2024-08-06 (non-streaming)/turn paragraphs into list_1_5aa207db4b8600962363d2352bf0b1c4.json b/packages/xl-ai/src/api/formats/html-blocks/__snapshots__/htmlBlocks.test.ts/Update/__msw_snapshots__/openai.chat/gpt-4o-2024-08-06 (non-streaming)/turn paragraphs into list_1_5aa207db4b8600962363d2352bf0b1c4.json index 0cef18461e..c68a5497ef 100644 --- a/packages/xl-ai/src/api/formats/html-blocks/__snapshots__/htmlBlocks.test.ts/Update/__msw_snapshots__/openai.chat/gpt-4o-2024-08-06 (non-streaming)/turn paragraphs into list_1_5aa207db4b8600962363d2352bf0b1c4.json +++ b/packages/xl-ai/src/api/formats/html-blocks/__snapshots__/htmlBlocks.test.ts/Update/__msw_snapshots__/openai.chat/gpt-4o-2024-08-06 (non-streaming)/turn paragraphs into list_1_5aa207db4b8600962363d2352bf0b1c4.json @@ -9,7 +9,7 @@ "response": { "status": 200, "statusText": "", - "body": "{\n \"id\": \"chatcmpl-Bgo1ZQ3btW5p9ygzqrvRazCDoVijM\",\n \"object\": \"chat.completion\",\n \"created\": 1749541769,\n \"model\": \"gpt-4o-2024-08-06\",\n \"choices\": [\n {\n \"index\": 0,\n \"message\": {\n \"role\": \"assistant\",\n \"content\": null,\n \"tool_calls\": [\n {\n \"id\": \"call_d4qO1n94DTof5lPXF1TacVrv\",\n \"type\": \"function\",\n \"function\": {\n \"name\": \"json\",\n \"arguments\": \"{\\\"operations\\\":[{\\\"type\\\":\\\"update\\\",\\\"id\\\":\\\"ref2$\\\",\\\"block\\\":\\\"
  • Apples
\\\"},{\\\"type\\\":\\\"update\\\",\\\"id\\\":\\\"ref3$\\\",\\\"block\\\":\\\"
  • Bananas
\\\"}]}\"\n }\n }\n ],\n \"refusal\": null,\n \"annotations\": []\n },\n \"logprobs\": null,\n \"finish_reason\": \"stop\"\n }\n ],\n \"usage\": {\n \"prompt_tokens\": 432,\n \"completion_tokens\": 55,\n \"total_tokens\": 487,\n \"prompt_tokens_details\": {\n \"cached_tokens\": 0,\n \"audio_tokens\": 0\n },\n \"completion_tokens_details\": {\n \"reasoning_tokens\": 0,\n \"audio_tokens\": 0,\n \"accepted_prediction_tokens\": 0,\n \"rejected_prediction_tokens\": 0\n }\n },\n \"service_tier\": \"default\",\n \"system_fingerprint\": \"fp_07871e2ad8\"\n}\n", + "body": "{\n \"id\": \"chatcmpl-BhcI05MF7pmTrNFBvII7F9wDRFRc2\",\n \"object\": \"chat.completion\",\n \"created\": 1749734988,\n \"model\": \"gpt-4o-2024-08-06\",\n \"choices\": [\n {\n \"index\": 0,\n \"message\": {\n \"role\": \"assistant\",\n \"content\": null,\n \"tool_calls\": [\n {\n \"id\": \"call_OcEUN0Z7voNhGeEexZwQGuhx\",\n \"type\": \"function\",\n \"function\": {\n \"name\": \"json\",\n \"arguments\": \"{\\\"operations\\\":[{\\\"type\\\":\\\"update\\\",\\\"id\\\":\\\"ref2$\\\",\\\"block\\\":\\\"
  • Apples
\\\"},{\\\"type\\\":\\\"update\\\",\\\"id\\\":\\\"ref3$\\\",\\\"block\\\":\\\"
  • Bananas
\\\"}]}\"\n }\n }\n ],\n \"refusal\": null,\n \"annotations\": []\n },\n \"logprobs\": null,\n \"finish_reason\": \"stop\"\n }\n ],\n \"usage\": {\n \"prompt_tokens\": 432,\n \"completion_tokens\": 55,\n \"total_tokens\": 487,\n \"prompt_tokens_details\": {\n \"cached_tokens\": 0,\n \"audio_tokens\": 0\n },\n \"completion_tokens_details\": {\n \"reasoning_tokens\": 0,\n \"audio_tokens\": 0,\n \"accepted_prediction_tokens\": 0,\n \"rejected_prediction_tokens\": 0\n }\n },\n \"service_tier\": \"default\",\n \"system_fingerprint\": \"fp_a288987b44\"\n}\n", "headers": [] } } \ No newline at end of file diff --git a/packages/xl-ai/src/api/formats/html-blocks/__snapshots__/htmlBlocks.test.ts/Update/__msw_snapshots__/openai.chat/gpt-4o-2024-08-06 (non-streaming)/update block type and content_1_12e64702225f7eb521a176feffbdde9a.json b/packages/xl-ai/src/api/formats/html-blocks/__snapshots__/htmlBlocks.test.ts/Update/__msw_snapshots__/openai.chat/gpt-4o-2024-08-06 (non-streaming)/update block type and content_1_12e64702225f7eb521a176feffbdde9a.json index 9006c45dcb..733c1034a3 100644 --- a/packages/xl-ai/src/api/formats/html-blocks/__snapshots__/htmlBlocks.test.ts/Update/__msw_snapshots__/openai.chat/gpt-4o-2024-08-06 (non-streaming)/update block type and content_1_12e64702225f7eb521a176feffbdde9a.json +++ b/packages/xl-ai/src/api/formats/html-blocks/__snapshots__/htmlBlocks.test.ts/Update/__msw_snapshots__/openai.chat/gpt-4o-2024-08-06 (non-streaming)/update block type and content_1_12e64702225f7eb521a176feffbdde9a.json @@ -9,7 +9,7 @@ "response": { "status": 200, "statusText": "", - "body": "{\n \"id\": \"chatcmpl-Bgo1LQO6fOCPFRXYAf5gDyNfJ5onz\",\n \"object\": \"chat.completion\",\n \"created\": 1749541755,\n \"model\": \"gpt-4o-2024-08-06\",\n \"choices\": [\n {\n \"index\": 0,\n \"message\": {\n \"role\": \"assistant\",\n \"content\": null,\n \"tool_calls\": [\n {\n \"id\": \"call_aHli1NzWGx4BoOFZZUXwKFTn\",\n \"type\": \"function\",\n \"function\": {\n \"name\": \"json\",\n \"arguments\": \"{\\\"operations\\\":[{\\\"type\\\":\\\"update\\\",\\\"id\\\":\\\"ref1$\\\",\\\"block\\\":\\\"

What's up, world!

\\\"}]}\"\n }\n }\n ],\n \"refusal\": null,\n \"annotations\": []\n },\n \"logprobs\": null,\n \"finish_reason\": \"stop\"\n }\n ],\n \"usage\": {\n \"prompt_tokens\": 652,\n \"completion_tokens\": 30,\n \"total_tokens\": 682,\n \"prompt_tokens_details\": {\n \"cached_tokens\": 0,\n \"audio_tokens\": 0\n },\n \"completion_tokens_details\": {\n \"reasoning_tokens\": 0,\n \"audio_tokens\": 0,\n \"accepted_prediction_tokens\": 0,\n \"rejected_prediction_tokens\": 0\n }\n },\n \"service_tier\": \"default\",\n \"system_fingerprint\": \"fp_07871e2ad8\"\n}\n", + "body": "{\n \"id\": \"chatcmpl-BhcHkLr8GH0FVzui3iBpTjSma1zml\",\n \"object\": \"chat.completion\",\n \"created\": 1749734972,\n \"model\": \"gpt-4o-2024-08-06\",\n \"choices\": [\n {\n \"index\": 0,\n \"message\": {\n \"role\": \"assistant\",\n \"content\": null,\n \"tool_calls\": [\n {\n \"id\": \"call_KiGjEG4236L0WSOT5fLQO5Aq\",\n \"type\": \"function\",\n \"function\": {\n \"name\": \"json\",\n \"arguments\": \"{\\\"operations\\\":[{\\\"type\\\":\\\"update\\\",\\\"id\\\":\\\"ref1$\\\",\\\"block\\\":\\\"

What's up, world!

\\\"}]}\"\n }\n }\n ],\n \"refusal\": null,\n \"annotations\": []\n },\n \"logprobs\": null,\n \"finish_reason\": \"stop\"\n }\n ],\n \"usage\": {\n \"prompt_tokens\": 652,\n \"completion_tokens\": 30,\n \"total_tokens\": 682,\n \"prompt_tokens_details\": {\n \"cached_tokens\": 0,\n \"audio_tokens\": 0\n },\n \"completion_tokens_details\": {\n \"reasoning_tokens\": 0,\n \"audio_tokens\": 0,\n \"accepted_prediction_tokens\": 0,\n \"rejected_prediction_tokens\": 0\n }\n },\n \"service_tier\": \"default\",\n \"system_fingerprint\": \"fp_07871e2ad8\"\n}\n", "headers": [] } } \ No newline at end of file diff --git a/packages/xl-ai/src/api/formats/html-blocks/__snapshots__/htmlBlocks.test.ts/Update/__msw_snapshots__/openai.chat/gpt-4o-2024-08-06 (non-streaming)/update block type_1_b81e29ddb0de05a668236685bd2df42c.json b/packages/xl-ai/src/api/formats/html-blocks/__snapshots__/htmlBlocks.test.ts/Update/__msw_snapshots__/openai.chat/gpt-4o-2024-08-06 (non-streaming)/update block type_1_b81e29ddb0de05a668236685bd2df42c.json index 5a055ccd53..f04f627cc7 100644 --- a/packages/xl-ai/src/api/formats/html-blocks/__snapshots__/htmlBlocks.test.ts/Update/__msw_snapshots__/openai.chat/gpt-4o-2024-08-06 (non-streaming)/update block type_1_b81e29ddb0de05a668236685bd2df42c.json +++ b/packages/xl-ai/src/api/formats/html-blocks/__snapshots__/htmlBlocks.test.ts/Update/__msw_snapshots__/openai.chat/gpt-4o-2024-08-06 (non-streaming)/update block type_1_b81e29ddb0de05a668236685bd2df42c.json @@ -9,7 +9,7 @@ "response": { "status": 200, "statusText": "", - "body": "{\n \"id\": \"chatcmpl-Bgo1Ko5lgjgSaDwSd3wdHKHgtzRTE\",\n \"object\": \"chat.completion\",\n \"created\": 1749541754,\n \"model\": \"gpt-4o-2024-08-06\",\n \"choices\": [\n {\n \"index\": 0,\n \"message\": {\n \"role\": \"assistant\",\n \"content\": null,\n \"tool_calls\": [\n {\n \"id\": \"call_jd4OKW6jbswCZQMexQLuNvQm\",\n \"type\": \"function\",\n \"function\": {\n \"name\": \"json\",\n \"arguments\": \"{\\\"operations\\\":[{\\\"type\\\":\\\"update\\\",\\\"id\\\":\\\"ref1$\\\",\\\"block\\\":\\\"

Hello, world!

\\\"}]}\"\n }\n }\n ],\n \"refusal\": null,\n \"annotations\": []\n },\n \"logprobs\": null,\n \"finish_reason\": \"stop\"\n }\n ],\n \"usage\": {\n \"prompt_tokens\": 641,\n \"completion_tokens\": 28,\n \"total_tokens\": 669,\n \"prompt_tokens_details\": {\n \"cached_tokens\": 0,\n \"audio_tokens\": 0\n },\n \"completion_tokens_details\": {\n \"reasoning_tokens\": 0,\n \"audio_tokens\": 0,\n \"accepted_prediction_tokens\": 0,\n \"rejected_prediction_tokens\": 0\n }\n },\n \"service_tier\": \"default\",\n \"system_fingerprint\": \"fp_07871e2ad8\"\n}\n", + "body": "{\n \"id\": \"chatcmpl-BhcHj3vPo81uwMaxdfU7EwJqLb4oi\",\n \"object\": \"chat.completion\",\n \"created\": 1749734971,\n \"model\": \"gpt-4o-2024-08-06\",\n \"choices\": [\n {\n \"index\": 0,\n \"message\": {\n \"role\": \"assistant\",\n \"content\": null,\n \"tool_calls\": [\n {\n \"id\": \"call_yAeSWVZRS4YPgm4A2ZpBhApj\",\n \"type\": \"function\",\n \"function\": {\n \"name\": \"json\",\n \"arguments\": \"{\\\"operations\\\":[{\\\"type\\\":\\\"update\\\",\\\"id\\\":\\\"ref1$\\\",\\\"block\\\":\\\"

Hello, world!

\\\"}]}\"\n }\n }\n ],\n \"refusal\": null,\n \"annotations\": []\n },\n \"logprobs\": null,\n \"finish_reason\": \"stop\"\n }\n ],\n \"usage\": {\n \"prompt_tokens\": 641,\n \"completion_tokens\": 28,\n \"total_tokens\": 669,\n \"prompt_tokens_details\": {\n \"cached_tokens\": 0,\n \"audio_tokens\": 0\n },\n \"completion_tokens_details\": {\n \"reasoning_tokens\": 0,\n \"audio_tokens\": 0,\n \"accepted_prediction_tokens\": 0,\n \"rejected_prediction_tokens\": 0\n }\n },\n \"service_tier\": \"default\",\n \"system_fingerprint\": \"fp_07871e2ad8\"\n}\n", "headers": [] } } \ No newline at end of file diff --git a/packages/xl-ai/src/api/formats/html-blocks/__snapshots__/htmlBlocks.test.ts/Update/__msw_snapshots__/openai.chat/gpt-4o-2024-08-06 (streaming)/drop mark and link and change text within mark_1_f48c2d1d72f4c3514c346629fb7f4d0d.json b/packages/xl-ai/src/api/formats/html-blocks/__snapshots__/htmlBlocks.test.ts/Update/__msw_snapshots__/openai.chat/gpt-4o-2024-08-06 (streaming)/drop mark and link and change text within mark_1_f48c2d1d72f4c3514c346629fb7f4d0d.json index d2e66f25ae..a430515f1e 100644 --- a/packages/xl-ai/src/api/formats/html-blocks/__snapshots__/htmlBlocks.test.ts/Update/__msw_snapshots__/openai.chat/gpt-4o-2024-08-06 (streaming)/drop mark and link and change text within mark_1_f48c2d1d72f4c3514c346629fb7f4d0d.json +++ b/packages/xl-ai/src/api/formats/html-blocks/__snapshots__/htmlBlocks.test.ts/Update/__msw_snapshots__/openai.chat/gpt-4o-2024-08-06 (streaming)/drop mark and link and change text within mark_1_f48c2d1d72f4c3514c346629fb7f4d0d.json @@ -9,7 +9,7 @@ "response": { "status": 200, "statusText": "", - "body": "data: {\"id\":\"chatcmpl-Bgn68aXAAsDyLOhlrEr7FvINFseYp\",\"object\":\"chat.completion.chunk\",\"created\":1749538208,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_07871e2ad8\",\"choices\":[{\"index\":0,\"delta\":{\"role\":\"assistant\",\"content\":null,\"tool_calls\":[{\"index\":0,\"id\":\"call_xmeCkwX6pfsUdXS9AE8qkxnj\",\"type\":\"function\",\"function\":{\"name\":\"json\",\"arguments\":\"\"}}],\"refusal\":null},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-Bgn68aXAAsDyLOhlrEr7FvINFseYp\",\"object\":\"chat.completion.chunk\",\"created\":1749538208,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_07871e2ad8\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"{\\\"\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-Bgn68aXAAsDyLOhlrEr7FvINFseYp\",\"object\":\"chat.completion.chunk\",\"created\":1749538208,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_07871e2ad8\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"operations\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-Bgn68aXAAsDyLOhlrEr7FvINFseYp\",\"object\":\"chat.completion.chunk\",\"created\":1749538208,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_07871e2ad8\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"\\\":[\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-Bgn68aXAAsDyLOhlrEr7FvINFseYp\",\"object\":\"chat.completion.chunk\",\"created\":1749538208,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_07871e2ad8\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"{\\\"\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-Bgn68aXAAsDyLOhlrEr7FvINFseYp\",\"object\":\"chat.completion.chunk\",\"created\":1749538208,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_07871e2ad8\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"type\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-Bgn68aXAAsDyLOhlrEr7FvINFseYp\",\"object\":\"chat.completion.chunk\",\"created\":1749538208,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_07871e2ad8\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"\\\":\\\"\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-Bgn68aXAAsDyLOhlrEr7FvINFseYp\",\"object\":\"chat.completion.chunk\",\"created\":1749538208,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_07871e2ad8\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"update\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-Bgn68aXAAsDyLOhlrEr7FvINFseYp\",\"object\":\"chat.completion.chunk\",\"created\":1749538208,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_07871e2ad8\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"\\\",\\\"\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-Bgn68aXAAsDyLOhlrEr7FvINFseYp\",\"object\":\"chat.completion.chunk\",\"created\":1749538208,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_07871e2ad8\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"id\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-Bgn68aXAAsDyLOhlrEr7FvINFseYp\",\"object\":\"chat.completion.chunk\",\"created\":1749538208,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_07871e2ad8\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"\\\":\\\"\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-Bgn68aXAAsDyLOhlrEr7FvINFseYp\",\"object\":\"chat.completion.chunk\",\"created\":1749538208,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_07871e2ad8\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"ref\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-Bgn68aXAAsDyLOhlrEr7FvINFseYp\",\"object\":\"chat.completion.chunk\",\"created\":1749538208,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_07871e2ad8\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"3\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-Bgn68aXAAsDyLOhlrEr7FvINFseYp\",\"object\":\"chat.completion.chunk\",\"created\":1749538208,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_07871e2ad8\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"$\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-Bgn68aXAAsDyLOhlrEr7FvINFseYp\",\"object\":\"chat.completion.chunk\",\"created\":1749538208,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_07871e2ad8\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"\\\",\\\"\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-Bgn68aXAAsDyLOhlrEr7FvINFseYp\",\"object\":\"chat.completion.chunk\",\"created\":1749538208,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_07871e2ad8\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"block\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-Bgn68aXAAsDyLOhlrEr7FvINFseYp\",\"object\":\"chat.completion.chunk\",\"created\":1749538208,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_07871e2ad8\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"\\\":\\\"\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-Bgn68aXAAsDyLOhlrEr7FvINFseYp\",\"object\":\"chat.completion.chunk\",\"created\":1749538208,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_07871e2ad8\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"<\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-Bgn68aXAAsDyLOhlrEr7FvINFseYp\",\"object\":\"chat.completion.chunk\",\"created\":1749538208,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_07871e2ad8\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"p\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-Bgn68aXAAsDyLOhlrEr7FvINFseYp\",\"object\":\"chat.completion.chunk\",\"created\":1749538208,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_07871e2ad8\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\">\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-Bgn68aXAAsDyLOhlrEr7FvINFseYp\",\"object\":\"chat.completion.chunk\",\"created\":1749538208,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_07871e2ad8\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"Hi\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-Bgn68aXAAsDyLOhlrEr7FvINFseYp\",\"object\":\"chat.completion.chunk\",\"created\":1749538208,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_07871e2ad8\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\",\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-Bgn68aXAAsDyLOhlrEr7FvINFseYp\",\"object\":\"chat.completion.chunk\",\"created\":1749538208,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_07871e2ad8\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\" world\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-Bgn68aXAAsDyLOhlrEr7FvINFseYp\",\"object\":\"chat.completion.chunk\",\"created\":1749538208,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_07871e2ad8\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"!\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-Bgn68aXAAsDyLOhlrEr7FvINFseYp\",\"object\":\"chat.completion.chunk\",\"created\":1749538208,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_07871e2ad8\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\" Bold\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-Bgn68aXAAsDyLOhlrEr7FvINFseYp\",\"object\":\"chat.completion.chunk\",\"created\":1749538208,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_07871e2ad8\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\" the\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-Bgn68aXAAsDyLOhlrEr7FvINFseYp\",\"object\":\"chat.completion.chunk\",\"created\":1749538208,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_07871e2ad8\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\" text\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-Bgn68aXAAsDyLOhlrEr7FvINFseYp\",\"object\":\"chat.completion.chunk\",\"created\":1749538208,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_07871e2ad8\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\".\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-Bgn68aXAAsDyLOhlrEr7FvINFseYp\",\"object\":\"chat.completion.chunk\",\"created\":1749538208,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_07871e2ad8\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\" Link\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-Bgn68aXAAsDyLOhlrEr7FvINFseYp\",\"object\":\"chat.completion.chunk\",\"created\":1749538208,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_07871e2ad8\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\".\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-Bgn68aXAAsDyLOhlrEr7FvINFseYp\",\"object\":\"chat.completion.chunk\",\"created\":1749538208,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_07871e2ad8\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"\\\"}\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-Bgn68aXAAsDyLOhlrEr7FvINFseYp\",\"object\":\"chat.completion.chunk\",\"created\":1749538208,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_07871e2ad8\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"]}\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-Bgn68aXAAsDyLOhlrEr7FvINFseYp\",\"object\":\"chat.completion.chunk\",\"created\":1749538208,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_07871e2ad8\",\"choices\":[{\"index\":0,\"delta\":{},\"logprobs\":null,\"finish_reason\":\"stop\"}]}\n\ndata: [DONE]\n\n", + "body": "data: {\"id\":\"chatcmpl-BhcHBAn7MF7p1x1ZLkrTWj0klfNtZ\",\"object\":\"chat.completion.chunk\",\"created\":1749734937,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_07871e2ad8\",\"choices\":[{\"index\":0,\"delta\":{\"role\":\"assistant\",\"content\":null,\"tool_calls\":[{\"index\":0,\"id\":\"call_TUs6AO1BckMTFvz9gMGo2R4J\",\"type\":\"function\",\"function\":{\"name\":\"json\",\"arguments\":\"\"}}],\"refusal\":null},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BhcHBAn7MF7p1x1ZLkrTWj0klfNtZ\",\"object\":\"chat.completion.chunk\",\"created\":1749734937,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_07871e2ad8\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"{\\\"\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BhcHBAn7MF7p1x1ZLkrTWj0klfNtZ\",\"object\":\"chat.completion.chunk\",\"created\":1749734937,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_07871e2ad8\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"operations\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BhcHBAn7MF7p1x1ZLkrTWj0klfNtZ\",\"object\":\"chat.completion.chunk\",\"created\":1749734937,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_07871e2ad8\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"\\\":[\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BhcHBAn7MF7p1x1ZLkrTWj0klfNtZ\",\"object\":\"chat.completion.chunk\",\"created\":1749734937,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_07871e2ad8\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"{\\\"\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BhcHBAn7MF7p1x1ZLkrTWj0klfNtZ\",\"object\":\"chat.completion.chunk\",\"created\":1749734937,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_07871e2ad8\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"type\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BhcHBAn7MF7p1x1ZLkrTWj0klfNtZ\",\"object\":\"chat.completion.chunk\",\"created\":1749734937,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_07871e2ad8\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"\\\":\\\"\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BhcHBAn7MF7p1x1ZLkrTWj0klfNtZ\",\"object\":\"chat.completion.chunk\",\"created\":1749734937,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_07871e2ad8\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"update\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BhcHBAn7MF7p1x1ZLkrTWj0klfNtZ\",\"object\":\"chat.completion.chunk\",\"created\":1749734937,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_07871e2ad8\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"\\\",\\\"\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BhcHBAn7MF7p1x1ZLkrTWj0klfNtZ\",\"object\":\"chat.completion.chunk\",\"created\":1749734937,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_07871e2ad8\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"id\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BhcHBAn7MF7p1x1ZLkrTWj0klfNtZ\",\"object\":\"chat.completion.chunk\",\"created\":1749734937,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_07871e2ad8\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"\\\":\\\"\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BhcHBAn7MF7p1x1ZLkrTWj0klfNtZ\",\"object\":\"chat.completion.chunk\",\"created\":1749734937,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_07871e2ad8\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"ref\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BhcHBAn7MF7p1x1ZLkrTWj0klfNtZ\",\"object\":\"chat.completion.chunk\",\"created\":1749734937,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_07871e2ad8\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"3\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BhcHBAn7MF7p1x1ZLkrTWj0klfNtZ\",\"object\":\"chat.completion.chunk\",\"created\":1749734937,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_07871e2ad8\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"$\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BhcHBAn7MF7p1x1ZLkrTWj0klfNtZ\",\"object\":\"chat.completion.chunk\",\"created\":1749734937,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_07871e2ad8\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"\\\",\\\"\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BhcHBAn7MF7p1x1ZLkrTWj0klfNtZ\",\"object\":\"chat.completion.chunk\",\"created\":1749734937,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_07871e2ad8\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"block\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BhcHBAn7MF7p1x1ZLkrTWj0klfNtZ\",\"object\":\"chat.completion.chunk\",\"created\":1749734937,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_07871e2ad8\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"\\\":\\\"\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BhcHBAn7MF7p1x1ZLkrTWj0klfNtZ\",\"object\":\"chat.completion.chunk\",\"created\":1749734937,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_07871e2ad8\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"<\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BhcHBAn7MF7p1x1ZLkrTWj0klfNtZ\",\"object\":\"chat.completion.chunk\",\"created\":1749734937,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_07871e2ad8\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"p\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BhcHBAn7MF7p1x1ZLkrTWj0klfNtZ\",\"object\":\"chat.completion.chunk\",\"created\":1749734937,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_07871e2ad8\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\">\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BhcHBAn7MF7p1x1ZLkrTWj0klfNtZ\",\"object\":\"chat.completion.chunk\",\"created\":1749734937,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_07871e2ad8\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"Hi\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BhcHBAn7MF7p1x1ZLkrTWj0klfNtZ\",\"object\":\"chat.completion.chunk\",\"created\":1749734937,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_07871e2ad8\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\",\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BhcHBAn7MF7p1x1ZLkrTWj0klfNtZ\",\"object\":\"chat.completion.chunk\",\"created\":1749734937,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_07871e2ad8\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\" world\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BhcHBAn7MF7p1x1ZLkrTWj0klfNtZ\",\"object\":\"chat.completion.chunk\",\"created\":1749734937,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_07871e2ad8\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"!\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BhcHBAn7MF7p1x1ZLkrTWj0klfNtZ\",\"object\":\"chat.completion.chunk\",\"created\":1749734937,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_07871e2ad8\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\" Bold\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BhcHBAn7MF7p1x1ZLkrTWj0klfNtZ\",\"object\":\"chat.completion.chunk\",\"created\":1749734937,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_07871e2ad8\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\" the\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BhcHBAn7MF7p1x1ZLkrTWj0klfNtZ\",\"object\":\"chat.completion.chunk\",\"created\":1749734937,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_07871e2ad8\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\" text\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BhcHBAn7MF7p1x1ZLkrTWj0klfNtZ\",\"object\":\"chat.completion.chunk\",\"created\":1749734937,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_07871e2ad8\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\".\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BhcHBAn7MF7p1x1ZLkrTWj0klfNtZ\",\"object\":\"chat.completion.chunk\",\"created\":1749734937,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_07871e2ad8\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\" Link\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BhcHBAn7MF7p1x1ZLkrTWj0klfNtZ\",\"object\":\"chat.completion.chunk\",\"created\":1749734937,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_07871e2ad8\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\".\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BhcHBAn7MF7p1x1ZLkrTWj0klfNtZ\",\"object\":\"chat.completion.chunk\",\"created\":1749734937,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_07871e2ad8\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"\\\"}\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BhcHBAn7MF7p1x1ZLkrTWj0klfNtZ\",\"object\":\"chat.completion.chunk\",\"created\":1749734937,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_07871e2ad8\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"]}\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BhcHBAn7MF7p1x1ZLkrTWj0klfNtZ\",\"object\":\"chat.completion.chunk\",\"created\":1749734937,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_07871e2ad8\",\"choices\":[{\"index\":0,\"delta\":{},\"logprobs\":null,\"finish_reason\":\"stop\"}]}\n\ndata: [DONE]\n\n", "headers": [] } } \ No newline at end of file diff --git a/packages/xl-ai/src/api/formats/html-blocks/__snapshots__/htmlBlocks.test.ts/Update/__msw_snapshots__/openai.chat/gpt-4o-2024-08-06 (streaming)/drop mark and link_1_c357b571feb374378ba1b288c39b6c31.json b/packages/xl-ai/src/api/formats/html-blocks/__snapshots__/htmlBlocks.test.ts/Update/__msw_snapshots__/openai.chat/gpt-4o-2024-08-06 (streaming)/drop mark and link_1_c357b571feb374378ba1b288c39b6c31.json index f5c04de7bc..640b08cc0e 100644 --- a/packages/xl-ai/src/api/formats/html-blocks/__snapshots__/htmlBlocks.test.ts/Update/__msw_snapshots__/openai.chat/gpt-4o-2024-08-06 (streaming)/drop mark and link_1_c357b571feb374378ba1b288c39b6c31.json +++ b/packages/xl-ai/src/api/formats/html-blocks/__snapshots__/htmlBlocks.test.ts/Update/__msw_snapshots__/openai.chat/gpt-4o-2024-08-06 (streaming)/drop mark and link_1_c357b571feb374378ba1b288c39b6c31.json @@ -9,7 +9,7 @@ "response": { "status": 200, "statusText": "", - "body": "data: {\"id\":\"chatcmpl-Bgn67L2CnhyxEeTBy6Nt4AuyEc2nN\",\"object\":\"chat.completion.chunk\",\"created\":1749538207,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_07871e2ad8\",\"choices\":[{\"index\":0,\"delta\":{\"role\":\"assistant\",\"content\":null,\"tool_calls\":[{\"index\":0,\"id\":\"call_nFW6VKFE56ZMmU3LdAcOjoEs\",\"type\":\"function\",\"function\":{\"name\":\"json\",\"arguments\":\"\"}}],\"refusal\":null},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-Bgn67L2CnhyxEeTBy6Nt4AuyEc2nN\",\"object\":\"chat.completion.chunk\",\"created\":1749538207,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_07871e2ad8\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"{\\\"\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-Bgn67L2CnhyxEeTBy6Nt4AuyEc2nN\",\"object\":\"chat.completion.chunk\",\"created\":1749538207,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_07871e2ad8\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"operations\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-Bgn67L2CnhyxEeTBy6Nt4AuyEc2nN\",\"object\":\"chat.completion.chunk\",\"created\":1749538207,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_07871e2ad8\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"\\\":[\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-Bgn67L2CnhyxEeTBy6Nt4AuyEc2nN\",\"object\":\"chat.completion.chunk\",\"created\":1749538207,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_07871e2ad8\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"{\\\"\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-Bgn67L2CnhyxEeTBy6Nt4AuyEc2nN\",\"object\":\"chat.completion.chunk\",\"created\":1749538207,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_07871e2ad8\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"type\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-Bgn67L2CnhyxEeTBy6Nt4AuyEc2nN\",\"object\":\"chat.completion.chunk\",\"created\":1749538207,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_07871e2ad8\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"\\\":\\\"\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-Bgn67L2CnhyxEeTBy6Nt4AuyEc2nN\",\"object\":\"chat.completion.chunk\",\"created\":1749538207,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_07871e2ad8\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"update\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-Bgn67L2CnhyxEeTBy6Nt4AuyEc2nN\",\"object\":\"chat.completion.chunk\",\"created\":1749538207,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_07871e2ad8\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"\\\",\\\"\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-Bgn67L2CnhyxEeTBy6Nt4AuyEc2nN\",\"object\":\"chat.completion.chunk\",\"created\":1749538207,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_07871e2ad8\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"id\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-Bgn67L2CnhyxEeTBy6Nt4AuyEc2nN\",\"object\":\"chat.completion.chunk\",\"created\":1749538207,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_07871e2ad8\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"\\\":\\\"\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-Bgn67L2CnhyxEeTBy6Nt4AuyEc2nN\",\"object\":\"chat.completion.chunk\",\"created\":1749538207,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_07871e2ad8\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"ref\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-Bgn67L2CnhyxEeTBy6Nt4AuyEc2nN\",\"object\":\"chat.completion.chunk\",\"created\":1749538207,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_07871e2ad8\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"3\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-Bgn67L2CnhyxEeTBy6Nt4AuyEc2nN\",\"object\":\"chat.completion.chunk\",\"created\":1749538207,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_07871e2ad8\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"$\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-Bgn67L2CnhyxEeTBy6Nt4AuyEc2nN\",\"object\":\"chat.completion.chunk\",\"created\":1749538207,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_07871e2ad8\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"\\\",\\\"\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-Bgn67L2CnhyxEeTBy6Nt4AuyEc2nN\",\"object\":\"chat.completion.chunk\",\"created\":1749538207,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_07871e2ad8\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"block\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-Bgn67L2CnhyxEeTBy6Nt4AuyEc2nN\",\"object\":\"chat.completion.chunk\",\"created\":1749538207,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_07871e2ad8\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"\\\":\\\"\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-Bgn67L2CnhyxEeTBy6Nt4AuyEc2nN\",\"object\":\"chat.completion.chunk\",\"created\":1749538207,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_07871e2ad8\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"<\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-Bgn67L2CnhyxEeTBy6Nt4AuyEc2nN\",\"object\":\"chat.completion.chunk\",\"created\":1749538207,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_07871e2ad8\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"p\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-Bgn67L2CnhyxEeTBy6Nt4AuyEc2nN\",\"object\":\"chat.completion.chunk\",\"created\":1749538207,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_07871e2ad8\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\">Hello\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-Bgn67L2CnhyxEeTBy6Nt4AuyEc2nN\",\"object\":\"chat.completion.chunk\",\"created\":1749538207,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_07871e2ad8\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\",\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-Bgn67L2CnhyxEeTBy6Nt4AuyEc2nN\",\"object\":\"chat.completion.chunk\",\"created\":1749538207,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_07871e2ad8\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\" world\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-Bgn67L2CnhyxEeTBy6Nt4AuyEc2nN\",\"object\":\"chat.completion.chunk\",\"created\":1749538207,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_07871e2ad8\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"!\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-Bgn67L2CnhyxEeTBy6Nt4AuyEc2nN\",\"object\":\"chat.completion.chunk\",\"created\":1749538207,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_07871e2ad8\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\" Bold\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-Bgn67L2CnhyxEeTBy6Nt4AuyEc2nN\",\"object\":\"chat.completion.chunk\",\"created\":1749538207,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_07871e2ad8\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\" text\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-Bgn67L2CnhyxEeTBy6Nt4AuyEc2nN\",\"object\":\"chat.completion.chunk\",\"created\":1749538207,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_07871e2ad8\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\".\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-Bgn67L2CnhyxEeTBy6Nt4AuyEc2nN\",\"object\":\"chat.completion.chunk\",\"created\":1749538207,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_07871e2ad8\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\" Link\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-Bgn67L2CnhyxEeTBy6Nt4AuyEc2nN\",\"object\":\"chat.completion.chunk\",\"created\":1749538207,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_07871e2ad8\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\".\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-Bgn67L2CnhyxEeTBy6Nt4AuyEc2nN\",\"object\":\"chat.completion.chunk\",\"created\":1749538207,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_07871e2ad8\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"\\\"}\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-Bgn67L2CnhyxEeTBy6Nt4AuyEc2nN\",\"object\":\"chat.completion.chunk\",\"created\":1749538207,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_07871e2ad8\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"]}\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-Bgn67L2CnhyxEeTBy6Nt4AuyEc2nN\",\"object\":\"chat.completion.chunk\",\"created\":1749538207,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_07871e2ad8\",\"choices\":[{\"index\":0,\"delta\":{},\"logprobs\":null,\"finish_reason\":\"stop\"}]}\n\ndata: [DONE]\n\n", + "body": "data: {\"id\":\"chatcmpl-BhcH9uPvGLxrPfajdrPJ4Gjc1uHuR\",\"object\":\"chat.completion.chunk\",\"created\":1749734935,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_07871e2ad8\",\"choices\":[{\"index\":0,\"delta\":{\"role\":\"assistant\",\"content\":null,\"tool_calls\":[{\"index\":0,\"id\":\"call_yWQKc6HFEgUrWOQ1b0mt98i7\",\"type\":\"function\",\"function\":{\"name\":\"json\",\"arguments\":\"\"}}],\"refusal\":null},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BhcH9uPvGLxrPfajdrPJ4Gjc1uHuR\",\"object\":\"chat.completion.chunk\",\"created\":1749734935,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_07871e2ad8\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"{\\\"\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BhcH9uPvGLxrPfajdrPJ4Gjc1uHuR\",\"object\":\"chat.completion.chunk\",\"created\":1749734935,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_07871e2ad8\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"operations\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BhcH9uPvGLxrPfajdrPJ4Gjc1uHuR\",\"object\":\"chat.completion.chunk\",\"created\":1749734935,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_07871e2ad8\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"\\\":[\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BhcH9uPvGLxrPfajdrPJ4Gjc1uHuR\",\"object\":\"chat.completion.chunk\",\"created\":1749734935,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_07871e2ad8\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"{\\\"\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BhcH9uPvGLxrPfajdrPJ4Gjc1uHuR\",\"object\":\"chat.completion.chunk\",\"created\":1749734935,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_07871e2ad8\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"type\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BhcH9uPvGLxrPfajdrPJ4Gjc1uHuR\",\"object\":\"chat.completion.chunk\",\"created\":1749734935,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_07871e2ad8\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"\\\":\\\"\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BhcH9uPvGLxrPfajdrPJ4Gjc1uHuR\",\"object\":\"chat.completion.chunk\",\"created\":1749734935,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_07871e2ad8\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"update\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BhcH9uPvGLxrPfajdrPJ4Gjc1uHuR\",\"object\":\"chat.completion.chunk\",\"created\":1749734935,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_07871e2ad8\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"\\\",\\\"\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BhcH9uPvGLxrPfajdrPJ4Gjc1uHuR\",\"object\":\"chat.completion.chunk\",\"created\":1749734935,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_07871e2ad8\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"id\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BhcH9uPvGLxrPfajdrPJ4Gjc1uHuR\",\"object\":\"chat.completion.chunk\",\"created\":1749734935,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_07871e2ad8\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"\\\":\\\"\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BhcH9uPvGLxrPfajdrPJ4Gjc1uHuR\",\"object\":\"chat.completion.chunk\",\"created\":1749734935,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_07871e2ad8\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"ref\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BhcH9uPvGLxrPfajdrPJ4Gjc1uHuR\",\"object\":\"chat.completion.chunk\",\"created\":1749734935,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_07871e2ad8\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"3\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BhcH9uPvGLxrPfajdrPJ4Gjc1uHuR\",\"object\":\"chat.completion.chunk\",\"created\":1749734935,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_07871e2ad8\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"$\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BhcH9uPvGLxrPfajdrPJ4Gjc1uHuR\",\"object\":\"chat.completion.chunk\",\"created\":1749734935,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_07871e2ad8\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"\\\",\\\"\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BhcH9uPvGLxrPfajdrPJ4Gjc1uHuR\",\"object\":\"chat.completion.chunk\",\"created\":1749734935,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_07871e2ad8\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"block\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BhcH9uPvGLxrPfajdrPJ4Gjc1uHuR\",\"object\":\"chat.completion.chunk\",\"created\":1749734935,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_07871e2ad8\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"\\\":\\\"\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BhcH9uPvGLxrPfajdrPJ4Gjc1uHuR\",\"object\":\"chat.completion.chunk\",\"created\":1749734935,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_07871e2ad8\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"<\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BhcH9uPvGLxrPfajdrPJ4Gjc1uHuR\",\"object\":\"chat.completion.chunk\",\"created\":1749734935,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_07871e2ad8\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"p\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BhcH9uPvGLxrPfajdrPJ4Gjc1uHuR\",\"object\":\"chat.completion.chunk\",\"created\":1749734935,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_07871e2ad8\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\">Hello\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BhcH9uPvGLxrPfajdrPJ4Gjc1uHuR\",\"object\":\"chat.completion.chunk\",\"created\":1749734935,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_07871e2ad8\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\",\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BhcH9uPvGLxrPfajdrPJ4Gjc1uHuR\",\"object\":\"chat.completion.chunk\",\"created\":1749734935,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_07871e2ad8\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\" world\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BhcH9uPvGLxrPfajdrPJ4Gjc1uHuR\",\"object\":\"chat.completion.chunk\",\"created\":1749734935,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_07871e2ad8\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"!\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BhcH9uPvGLxrPfajdrPJ4Gjc1uHuR\",\"object\":\"chat.completion.chunk\",\"created\":1749734935,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_07871e2ad8\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\" Bold\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BhcH9uPvGLxrPfajdrPJ4Gjc1uHuR\",\"object\":\"chat.completion.chunk\",\"created\":1749734935,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_07871e2ad8\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\" text\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BhcH9uPvGLxrPfajdrPJ4Gjc1uHuR\",\"object\":\"chat.completion.chunk\",\"created\":1749734935,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_07871e2ad8\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\".\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BhcH9uPvGLxrPfajdrPJ4Gjc1uHuR\",\"object\":\"chat.completion.chunk\",\"created\":1749734935,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_07871e2ad8\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\" Link\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BhcH9uPvGLxrPfajdrPJ4Gjc1uHuR\",\"object\":\"chat.completion.chunk\",\"created\":1749734935,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_07871e2ad8\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\".\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BhcH9uPvGLxrPfajdrPJ4Gjc1uHuR\",\"object\":\"chat.completion.chunk\",\"created\":1749734935,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_07871e2ad8\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"\\\"}\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BhcH9uPvGLxrPfajdrPJ4Gjc1uHuR\",\"object\":\"chat.completion.chunk\",\"created\":1749734935,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_07871e2ad8\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"]}\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BhcH9uPvGLxrPfajdrPJ4Gjc1uHuR\",\"object\":\"chat.completion.chunk\",\"created\":1749734935,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_07871e2ad8\",\"choices\":[{\"index\":0,\"delta\":{},\"logprobs\":null,\"finish_reason\":\"stop\"}]}\n\ndata: [DONE]\n\n", "headers": [] } } \ No newline at end of file diff --git a/packages/xl-ai/src/api/formats/html-blocks/__snapshots__/htmlBlocks.test.ts/Update/__msw_snapshots__/openai.chat/gpt-4o-2024-08-06 (streaming)/modify nested content_1_782caee9bbb515bfdae481d31ea48e48.json b/packages/xl-ai/src/api/formats/html-blocks/__snapshots__/htmlBlocks.test.ts/Update/__msw_snapshots__/openai.chat/gpt-4o-2024-08-06 (streaming)/modify nested content_1_782caee9bbb515bfdae481d31ea48e48.json index 2f10cab10e..7c23951088 100644 --- a/packages/xl-ai/src/api/formats/html-blocks/__snapshots__/htmlBlocks.test.ts/Update/__msw_snapshots__/openai.chat/gpt-4o-2024-08-06 (streaming)/modify nested content_1_782caee9bbb515bfdae481d31ea48e48.json +++ b/packages/xl-ai/src/api/formats/html-blocks/__snapshots__/htmlBlocks.test.ts/Update/__msw_snapshots__/openai.chat/gpt-4o-2024-08-06 (streaming)/modify nested content_1_782caee9bbb515bfdae481d31ea48e48.json @@ -9,7 +9,7 @@ "response": { "status": 200, "statusText": "", - "body": "data: {\"id\":\"chatcmpl-Bgn6AlgMZABZrcEmPUOd356bTG4SN\",\"object\":\"chat.completion.chunk\",\"created\":1749538210,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_07871e2ad8\",\"choices\":[{\"index\":0,\"delta\":{\"role\":\"assistant\",\"content\":null,\"tool_calls\":[{\"index\":0,\"id\":\"call_vCJv7sW51JhN7yR8H7nfmgTk\",\"type\":\"function\",\"function\":{\"name\":\"json\",\"arguments\":\"\"}}],\"refusal\":null},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-Bgn6AlgMZABZrcEmPUOd356bTG4SN\",\"object\":\"chat.completion.chunk\",\"created\":1749538210,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_07871e2ad8\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"{\\\"\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-Bgn6AlgMZABZrcEmPUOd356bTG4SN\",\"object\":\"chat.completion.chunk\",\"created\":1749538210,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_07871e2ad8\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"operations\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-Bgn6AlgMZABZrcEmPUOd356bTG4SN\",\"object\":\"chat.completion.chunk\",\"created\":1749538210,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_07871e2ad8\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"\\\":[\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-Bgn6AlgMZABZrcEmPUOd356bTG4SN\",\"object\":\"chat.completion.chunk\",\"created\":1749538210,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_07871e2ad8\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"{\\\"\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-Bgn6AlgMZABZrcEmPUOd356bTG4SN\",\"object\":\"chat.completion.chunk\",\"created\":1749538210,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_07871e2ad8\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"type\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-Bgn6AlgMZABZrcEmPUOd356bTG4SN\",\"object\":\"chat.completion.chunk\",\"created\":1749538210,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_07871e2ad8\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"\\\":\\\"\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-Bgn6AlgMZABZrcEmPUOd356bTG4SN\",\"object\":\"chat.completion.chunk\",\"created\":1749538210,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_07871e2ad8\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"update\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-Bgn6AlgMZABZrcEmPUOd356bTG4SN\",\"object\":\"chat.completion.chunk\",\"created\":1749538210,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_07871e2ad8\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"\\\",\\\"\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-Bgn6AlgMZABZrcEmPUOd356bTG4SN\",\"object\":\"chat.completion.chunk\",\"created\":1749538210,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_07871e2ad8\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"id\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-Bgn6AlgMZABZrcEmPUOd356bTG4SN\",\"object\":\"chat.completion.chunk\",\"created\":1749538210,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_07871e2ad8\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"\\\":\\\"\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-Bgn6AlgMZABZrcEmPUOd356bTG4SN\",\"object\":\"chat.completion.chunk\",\"created\":1749538210,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_07871e2ad8\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"ref\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-Bgn6AlgMZABZrcEmPUOd356bTG4SN\",\"object\":\"chat.completion.chunk\",\"created\":1749538210,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_07871e2ad8\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"2\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-Bgn6AlgMZABZrcEmPUOd356bTG4SN\",\"object\":\"chat.completion.chunk\",\"created\":1749538210,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_07871e2ad8\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"$\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-Bgn6AlgMZABZrcEmPUOd356bTG4SN\",\"object\":\"chat.completion.chunk\",\"created\":1749538210,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_07871e2ad8\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"\\\",\\\"\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-Bgn6AlgMZABZrcEmPUOd356bTG4SN\",\"object\":\"chat.completion.chunk\",\"created\":1749538210,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_07871e2ad8\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"block\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-Bgn6AlgMZABZrcEmPUOd356bTG4SN\",\"object\":\"chat.completion.chunk\",\"created\":1749538210,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_07871e2ad8\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"\\\":\\\"\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-Bgn6AlgMZABZrcEmPUOd356bTG4SN\",\"object\":\"chat.completion.chunk\",\"created\":1749538210,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_07871e2ad8\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"<\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-Bgn6AlgMZABZrcEmPUOd356bTG4SN\",\"object\":\"chat.completion.chunk\",\"created\":1749538210,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_07871e2ad8\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"p\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-Bgn6AlgMZABZrcEmPUOd356bTG4SN\",\"object\":\"chat.completion.chunk\",\"created\":1749538210,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_07871e2ad8\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\">\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-Bgn6AlgMZABZrcEmPUOd356bTG4SN\",\"object\":\"chat.completion.chunk\",\"created\":1749538210,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_07871e2ad8\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"APP\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-Bgn6AlgMZABZrcEmPUOd356bTG4SN\",\"object\":\"chat.completion.chunk\",\"created\":1749538210,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_07871e2ad8\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"LES\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-Bgn6AlgMZABZrcEmPUOd356bTG4SN\",\"object\":\"chat.completion.chunk\",\"created\":1749538210,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_07871e2ad8\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-Bgn6AlgMZABZrcEmPUOd356bTG4SN\",\"object\":\"chat.completion.chunk\",\"created\":1749538210,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_07871e2ad8\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"\\\"}\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-Bgn6AlgMZABZrcEmPUOd356bTG4SN\",\"object\":\"chat.completion.chunk\",\"created\":1749538210,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_07871e2ad8\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"]}\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-Bgn6AlgMZABZrcEmPUOd356bTG4SN\",\"object\":\"chat.completion.chunk\",\"created\":1749538210,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_07871e2ad8\",\"choices\":[{\"index\":0,\"delta\":{},\"logprobs\":null,\"finish_reason\":\"stop\"}]}\n\ndata: [DONE]\n\n", + "body": "data: {\"id\":\"chatcmpl-BhcHDjwDWILG9LDooc9fWYuTwDms2\",\"object\":\"chat.completion.chunk\",\"created\":1749734939,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_07871e2ad8\",\"choices\":[{\"index\":0,\"delta\":{\"role\":\"assistant\",\"content\":null,\"tool_calls\":[{\"index\":0,\"id\":\"call_URBuBOSniH9MZqqp0ixzLoWS\",\"type\":\"function\",\"function\":{\"name\":\"json\",\"arguments\":\"\"}}],\"refusal\":null},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BhcHDjwDWILG9LDooc9fWYuTwDms2\",\"object\":\"chat.completion.chunk\",\"created\":1749734939,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_07871e2ad8\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"{\\\"\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BhcHDjwDWILG9LDooc9fWYuTwDms2\",\"object\":\"chat.completion.chunk\",\"created\":1749734939,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_07871e2ad8\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"operations\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BhcHDjwDWILG9LDooc9fWYuTwDms2\",\"object\":\"chat.completion.chunk\",\"created\":1749734939,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_07871e2ad8\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"\\\":[\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BhcHDjwDWILG9LDooc9fWYuTwDms2\",\"object\":\"chat.completion.chunk\",\"created\":1749734939,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_07871e2ad8\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"{\\\"\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BhcHDjwDWILG9LDooc9fWYuTwDms2\",\"object\":\"chat.completion.chunk\",\"created\":1749734939,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_07871e2ad8\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"type\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BhcHDjwDWILG9LDooc9fWYuTwDms2\",\"object\":\"chat.completion.chunk\",\"created\":1749734939,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_07871e2ad8\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"\\\":\\\"\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BhcHDjwDWILG9LDooc9fWYuTwDms2\",\"object\":\"chat.completion.chunk\",\"created\":1749734939,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_07871e2ad8\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"update\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BhcHDjwDWILG9LDooc9fWYuTwDms2\",\"object\":\"chat.completion.chunk\",\"created\":1749734939,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_07871e2ad8\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"\\\",\\\"\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BhcHDjwDWILG9LDooc9fWYuTwDms2\",\"object\":\"chat.completion.chunk\",\"created\":1749734939,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_07871e2ad8\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"id\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BhcHDjwDWILG9LDooc9fWYuTwDms2\",\"object\":\"chat.completion.chunk\",\"created\":1749734939,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_07871e2ad8\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"\\\":\\\"\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BhcHDjwDWILG9LDooc9fWYuTwDms2\",\"object\":\"chat.completion.chunk\",\"created\":1749734939,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_07871e2ad8\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"ref\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BhcHDjwDWILG9LDooc9fWYuTwDms2\",\"object\":\"chat.completion.chunk\",\"created\":1749734939,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_07871e2ad8\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"2\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BhcHDjwDWILG9LDooc9fWYuTwDms2\",\"object\":\"chat.completion.chunk\",\"created\":1749734939,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_07871e2ad8\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"$\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BhcHDjwDWILG9LDooc9fWYuTwDms2\",\"object\":\"chat.completion.chunk\",\"created\":1749734939,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_07871e2ad8\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"\\\",\\\"\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BhcHDjwDWILG9LDooc9fWYuTwDms2\",\"object\":\"chat.completion.chunk\",\"created\":1749734939,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_07871e2ad8\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"block\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BhcHDjwDWILG9LDooc9fWYuTwDms2\",\"object\":\"chat.completion.chunk\",\"created\":1749734939,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_07871e2ad8\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"\\\":\\\"\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BhcHDjwDWILG9LDooc9fWYuTwDms2\",\"object\":\"chat.completion.chunk\",\"created\":1749734939,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_07871e2ad8\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"<\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BhcHDjwDWILG9LDooc9fWYuTwDms2\",\"object\":\"chat.completion.chunk\",\"created\":1749734939,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_07871e2ad8\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"p\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BhcHDjwDWILG9LDooc9fWYuTwDms2\",\"object\":\"chat.completion.chunk\",\"created\":1749734939,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_07871e2ad8\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\">\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BhcHDjwDWILG9LDooc9fWYuTwDms2\",\"object\":\"chat.completion.chunk\",\"created\":1749734939,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_07871e2ad8\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"APP\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BhcHDjwDWILG9LDooc9fWYuTwDms2\",\"object\":\"chat.completion.chunk\",\"created\":1749734939,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_07871e2ad8\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"LES\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BhcHDjwDWILG9LDooc9fWYuTwDms2\",\"object\":\"chat.completion.chunk\",\"created\":1749734939,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_07871e2ad8\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BhcHDjwDWILG9LDooc9fWYuTwDms2\",\"object\":\"chat.completion.chunk\",\"created\":1749734939,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_07871e2ad8\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"\\\"}\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BhcHDjwDWILG9LDooc9fWYuTwDms2\",\"object\":\"chat.completion.chunk\",\"created\":1749734939,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_07871e2ad8\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"]}\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BhcHDjwDWILG9LDooc9fWYuTwDms2\",\"object\":\"chat.completion.chunk\",\"created\":1749734939,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_07871e2ad8\",\"choices\":[{\"index\":0,\"delta\":{},\"logprobs\":null,\"finish_reason\":\"stop\"}]}\n\ndata: [DONE]\n\n", "headers": [] } } \ No newline at end of file diff --git a/packages/xl-ai/src/api/formats/html-blocks/__snapshots__/htmlBlocks.test.ts/Update/__msw_snapshots__/openai.chat/gpt-4o-2024-08-06 (streaming)/modify parent content_1_92e8df7af02866607d407a52926d4f52.json b/packages/xl-ai/src/api/formats/html-blocks/__snapshots__/htmlBlocks.test.ts/Update/__msw_snapshots__/openai.chat/gpt-4o-2024-08-06 (streaming)/modify parent content_1_92e8df7af02866607d407a52926d4f52.json index ff493d669f..f35e7e1bdb 100644 --- a/packages/xl-ai/src/api/formats/html-blocks/__snapshots__/htmlBlocks.test.ts/Update/__msw_snapshots__/openai.chat/gpt-4o-2024-08-06 (streaming)/modify parent content_1_92e8df7af02866607d407a52926d4f52.json +++ b/packages/xl-ai/src/api/formats/html-blocks/__snapshots__/htmlBlocks.test.ts/Update/__msw_snapshots__/openai.chat/gpt-4o-2024-08-06 (streaming)/modify parent content_1_92e8df7af02866607d407a52926d4f52.json @@ -9,7 +9,7 @@ "response": { "status": 200, "statusText": "", - "body": "data: {\"id\":\"chatcmpl-Bgn6B7ESQg8ga7vAELPCrTDFsq5wl\",\"object\":\"chat.completion.chunk\",\"created\":1749538211,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_07871e2ad8\",\"choices\":[{\"index\":0,\"delta\":{\"role\":\"assistant\",\"content\":null,\"tool_calls\":[{\"index\":0,\"id\":\"call_NaEBvaOuRyvnXLypg59qLaqc\",\"type\":\"function\",\"function\":{\"name\":\"json\",\"arguments\":\"\"}}],\"refusal\":null},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-Bgn6B7ESQg8ga7vAELPCrTDFsq5wl\",\"object\":\"chat.completion.chunk\",\"created\":1749538211,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_07871e2ad8\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"{\\\"\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-Bgn6B7ESQg8ga7vAELPCrTDFsq5wl\",\"object\":\"chat.completion.chunk\",\"created\":1749538211,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_07871e2ad8\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"operations\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-Bgn6B7ESQg8ga7vAELPCrTDFsq5wl\",\"object\":\"chat.completion.chunk\",\"created\":1749538211,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_07871e2ad8\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"\\\":[\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-Bgn6B7ESQg8ga7vAELPCrTDFsq5wl\",\"object\":\"chat.completion.chunk\",\"created\":1749538211,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_07871e2ad8\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"{\\\"\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-Bgn6B7ESQg8ga7vAELPCrTDFsq5wl\",\"object\":\"chat.completion.chunk\",\"created\":1749538211,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_07871e2ad8\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"type\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-Bgn6B7ESQg8ga7vAELPCrTDFsq5wl\",\"object\":\"chat.completion.chunk\",\"created\":1749538211,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_07871e2ad8\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"\\\":\\\"\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-Bgn6B7ESQg8ga7vAELPCrTDFsq5wl\",\"object\":\"chat.completion.chunk\",\"created\":1749538211,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_07871e2ad8\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"update\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-Bgn6B7ESQg8ga7vAELPCrTDFsq5wl\",\"object\":\"chat.completion.chunk\",\"created\":1749538211,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_07871e2ad8\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"\\\",\\\"\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-Bgn6B7ESQg8ga7vAELPCrTDFsq5wl\",\"object\":\"chat.completion.chunk\",\"created\":1749538211,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_07871e2ad8\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"id\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-Bgn6B7ESQg8ga7vAELPCrTDFsq5wl\",\"object\":\"chat.completion.chunk\",\"created\":1749538211,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_07871e2ad8\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"\\\":\\\"\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-Bgn6B7ESQg8ga7vAELPCrTDFsq5wl\",\"object\":\"chat.completion.chunk\",\"created\":1749538211,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_07871e2ad8\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"ref\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-Bgn6B7ESQg8ga7vAELPCrTDFsq5wl\",\"object\":\"chat.completion.chunk\",\"created\":1749538211,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_07871e2ad8\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"1\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-Bgn6B7ESQg8ga7vAELPCrTDFsq5wl\",\"object\":\"chat.completion.chunk\",\"created\":1749538211,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_07871e2ad8\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"$\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-Bgn6B7ESQg8ga7vAELPCrTDFsq5wl\",\"object\":\"chat.completion.chunk\",\"created\":1749538211,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_07871e2ad8\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"\\\",\\\"\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-Bgn6B7ESQg8ga7vAELPCrTDFsq5wl\",\"object\":\"chat.completion.chunk\",\"created\":1749538211,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_07871e2ad8\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"block\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-Bgn6B7ESQg8ga7vAELPCrTDFsq5wl\",\"object\":\"chat.completion.chunk\",\"created\":1749538211,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_07871e2ad8\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"\\\":\\\"\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-Bgn6B7ESQg8ga7vAELPCrTDFsq5wl\",\"object\":\"chat.completion.chunk\",\"created\":1749538211,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_07871e2ad8\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"<\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-Bgn6B7ESQg8ga7vAELPCrTDFsq5wl\",\"object\":\"chat.completion.chunk\",\"created\":1749538211,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_07871e2ad8\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"p\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-Bgn6B7ESQg8ga7vAELPCrTDFsq5wl\",\"object\":\"chat.completion.chunk\",\"created\":1749538211,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_07871e2ad8\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\">I\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-Bgn6B7ESQg8ga7vAELPCrTDFsq5wl\",\"object\":\"chat.completion.chunk\",\"created\":1749538211,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_07871e2ad8\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\" NEED\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-Bgn6B7ESQg8ga7vAELPCrTDFsq5wl\",\"object\":\"chat.completion.chunk\",\"created\":1749538211,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_07871e2ad8\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\" TO\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-Bgn6B7ESQg8ga7vAELPCrTDFsq5wl\",\"object\":\"chat.completion.chunk\",\"created\":1749538211,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_07871e2ad8\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\" BUY\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-Bgn6B7ESQg8ga7vAELPCrTDFsq5wl\",\"object\":\"chat.completion.chunk\",\"created\":1749538211,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_07871e2ad8\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\":\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-Bgn6B7ESQg8ga7vAELPCrTDFsq5wl\",\"object\":\"chat.completion.chunk\",\"created\":1749538211,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_07871e2ad8\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"\\\"}\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-Bgn6B7ESQg8ga7vAELPCrTDFsq5wl\",\"object\":\"chat.completion.chunk\",\"created\":1749538211,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_07871e2ad8\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"]}\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-Bgn6B7ESQg8ga7vAELPCrTDFsq5wl\",\"object\":\"chat.completion.chunk\",\"created\":1749538211,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_07871e2ad8\",\"choices\":[{\"index\":0,\"delta\":{},\"logprobs\":null,\"finish_reason\":\"stop\"}]}\n\ndata: [DONE]\n\n", + "body": "data: {\"id\":\"chatcmpl-BhcHEVmMeaN0KkM3C1jsSjt8SrqHu\",\"object\":\"chat.completion.chunk\",\"created\":1749734940,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_07871e2ad8\",\"choices\":[{\"index\":0,\"delta\":{\"role\":\"assistant\",\"content\":null,\"tool_calls\":[{\"index\":0,\"id\":\"call_s4RcOhhatFUfUs3DTTskZ7VX\",\"type\":\"function\",\"function\":{\"name\":\"json\",\"arguments\":\"\"}}],\"refusal\":null},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BhcHEVmMeaN0KkM3C1jsSjt8SrqHu\",\"object\":\"chat.completion.chunk\",\"created\":1749734940,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_07871e2ad8\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"{\\\"\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BhcHEVmMeaN0KkM3C1jsSjt8SrqHu\",\"object\":\"chat.completion.chunk\",\"created\":1749734940,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_07871e2ad8\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"operations\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BhcHEVmMeaN0KkM3C1jsSjt8SrqHu\",\"object\":\"chat.completion.chunk\",\"created\":1749734940,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_07871e2ad8\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"\\\":[\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BhcHEVmMeaN0KkM3C1jsSjt8SrqHu\",\"object\":\"chat.completion.chunk\",\"created\":1749734940,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_07871e2ad8\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"{\\\"\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BhcHEVmMeaN0KkM3C1jsSjt8SrqHu\",\"object\":\"chat.completion.chunk\",\"created\":1749734940,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_07871e2ad8\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"type\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BhcHEVmMeaN0KkM3C1jsSjt8SrqHu\",\"object\":\"chat.completion.chunk\",\"created\":1749734940,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_07871e2ad8\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"\\\":\\\"\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BhcHEVmMeaN0KkM3C1jsSjt8SrqHu\",\"object\":\"chat.completion.chunk\",\"created\":1749734940,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_07871e2ad8\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"update\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BhcHEVmMeaN0KkM3C1jsSjt8SrqHu\",\"object\":\"chat.completion.chunk\",\"created\":1749734940,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_07871e2ad8\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"\\\",\\\"\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BhcHEVmMeaN0KkM3C1jsSjt8SrqHu\",\"object\":\"chat.completion.chunk\",\"created\":1749734940,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_07871e2ad8\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"id\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BhcHEVmMeaN0KkM3C1jsSjt8SrqHu\",\"object\":\"chat.completion.chunk\",\"created\":1749734940,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_07871e2ad8\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"\\\":\\\"\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BhcHEVmMeaN0KkM3C1jsSjt8SrqHu\",\"object\":\"chat.completion.chunk\",\"created\":1749734940,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_07871e2ad8\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"ref\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BhcHEVmMeaN0KkM3C1jsSjt8SrqHu\",\"object\":\"chat.completion.chunk\",\"created\":1749734940,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_07871e2ad8\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"1\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BhcHEVmMeaN0KkM3C1jsSjt8SrqHu\",\"object\":\"chat.completion.chunk\",\"created\":1749734940,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_07871e2ad8\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"$\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BhcHEVmMeaN0KkM3C1jsSjt8SrqHu\",\"object\":\"chat.completion.chunk\",\"created\":1749734940,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_07871e2ad8\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"\\\",\\\"\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BhcHEVmMeaN0KkM3C1jsSjt8SrqHu\",\"object\":\"chat.completion.chunk\",\"created\":1749734940,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_07871e2ad8\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"block\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BhcHEVmMeaN0KkM3C1jsSjt8SrqHu\",\"object\":\"chat.completion.chunk\",\"created\":1749734940,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_07871e2ad8\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"\\\":\\\"\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BhcHEVmMeaN0KkM3C1jsSjt8SrqHu\",\"object\":\"chat.completion.chunk\",\"created\":1749734940,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_07871e2ad8\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"<\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BhcHEVmMeaN0KkM3C1jsSjt8SrqHu\",\"object\":\"chat.completion.chunk\",\"created\":1749734940,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_07871e2ad8\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"p\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BhcHEVmMeaN0KkM3C1jsSjt8SrqHu\",\"object\":\"chat.completion.chunk\",\"created\":1749734940,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_07871e2ad8\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\">I\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BhcHEVmMeaN0KkM3C1jsSjt8SrqHu\",\"object\":\"chat.completion.chunk\",\"created\":1749734940,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_07871e2ad8\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\" NEED\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BhcHEVmMeaN0KkM3C1jsSjt8SrqHu\",\"object\":\"chat.completion.chunk\",\"created\":1749734940,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_07871e2ad8\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\" TO\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BhcHEVmMeaN0KkM3C1jsSjt8SrqHu\",\"object\":\"chat.completion.chunk\",\"created\":1749734940,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_07871e2ad8\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\" BUY\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BhcHEVmMeaN0KkM3C1jsSjt8SrqHu\",\"object\":\"chat.completion.chunk\",\"created\":1749734940,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_07871e2ad8\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\":\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BhcHEVmMeaN0KkM3C1jsSjt8SrqHu\",\"object\":\"chat.completion.chunk\",\"created\":1749734940,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_07871e2ad8\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"\\\"}\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BhcHEVmMeaN0KkM3C1jsSjt8SrqHu\",\"object\":\"chat.completion.chunk\",\"created\":1749734940,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_07871e2ad8\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"]}\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BhcHEVmMeaN0KkM3C1jsSjt8SrqHu\",\"object\":\"chat.completion.chunk\",\"created\":1749734940,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_07871e2ad8\",\"choices\":[{\"index\":0,\"delta\":{},\"logprobs\":null,\"finish_reason\":\"stop\"}]}\n\ndata: [DONE]\n\n", "headers": [] } } \ No newline at end of file diff --git a/packages/xl-ai/src/api/formats/html-blocks/__snapshots__/htmlBlocks.test.ts/Update/__msw_snapshots__/openai.chat/gpt-4o-2024-08-06 (streaming)/plain source block, add mention_1_69dfced69472e5cf7789a98b3ccbbdd8.json b/packages/xl-ai/src/api/formats/html-blocks/__snapshots__/htmlBlocks.test.ts/Update/__msw_snapshots__/openai.chat/gpt-4o-2024-08-06 (streaming)/plain source block, add mention_1_69dfced69472e5cf7789a98b3ccbbdd8.json index 5573f8ea8f..ea1d05bd81 100644 --- a/packages/xl-ai/src/api/formats/html-blocks/__snapshots__/htmlBlocks.test.ts/Update/__msw_snapshots__/openai.chat/gpt-4o-2024-08-06 (streaming)/plain source block, add mention_1_69dfced69472e5cf7789a98b3ccbbdd8.json +++ b/packages/xl-ai/src/api/formats/html-blocks/__snapshots__/htmlBlocks.test.ts/Update/__msw_snapshots__/openai.chat/gpt-4o-2024-08-06 (streaming)/plain source block, add mention_1_69dfced69472e5cf7789a98b3ccbbdd8.json @@ -9,7 +9,7 @@ "response": { "status": 200, "statusText": "", - "body": "data: {\"id\":\"chatcmpl-Bgn6485Q081ICLXBbVAgAWYoL9ibD\",\"object\":\"chat.completion.chunk\",\"created\":1749538204,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_07871e2ad8\",\"choices\":[{\"index\":0,\"delta\":{\"role\":\"assistant\",\"content\":null,\"tool_calls\":[{\"index\":0,\"id\":\"call_2JHlFaM6V0UuPIWruBqxPNBO\",\"type\":\"function\",\"function\":{\"name\":\"json\",\"arguments\":\"\"}}],\"refusal\":null},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-Bgn6485Q081ICLXBbVAgAWYoL9ibD\",\"object\":\"chat.completion.chunk\",\"created\":1749538204,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_07871e2ad8\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"{\\\"\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-Bgn6485Q081ICLXBbVAgAWYoL9ibD\",\"object\":\"chat.completion.chunk\",\"created\":1749538204,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_07871e2ad8\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"operations\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-Bgn6485Q081ICLXBbVAgAWYoL9ibD\",\"object\":\"chat.completion.chunk\",\"created\":1749538204,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_07871e2ad8\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"\\\":[\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-Bgn6485Q081ICLXBbVAgAWYoL9ibD\",\"object\":\"chat.completion.chunk\",\"created\":1749538204,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_07871e2ad8\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"{\\\"\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-Bgn6485Q081ICLXBbVAgAWYoL9ibD\",\"object\":\"chat.completion.chunk\",\"created\":1749538204,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_07871e2ad8\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"type\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-Bgn6485Q081ICLXBbVAgAWYoL9ibD\",\"object\":\"chat.completion.chunk\",\"created\":1749538204,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_07871e2ad8\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"\\\":\\\"\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-Bgn6485Q081ICLXBbVAgAWYoL9ibD\",\"object\":\"chat.completion.chunk\",\"created\":1749538204,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_07871e2ad8\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"update\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-Bgn6485Q081ICLXBbVAgAWYoL9ibD\",\"object\":\"chat.completion.chunk\",\"created\":1749538204,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_07871e2ad8\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"\\\",\\\"\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-Bgn6485Q081ICLXBbVAgAWYoL9ibD\",\"object\":\"chat.completion.chunk\",\"created\":1749538204,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_07871e2ad8\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"id\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-Bgn6485Q081ICLXBbVAgAWYoL9ibD\",\"object\":\"chat.completion.chunk\",\"created\":1749538204,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_07871e2ad8\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"\\\":\\\"\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-Bgn6485Q081ICLXBbVAgAWYoL9ibD\",\"object\":\"chat.completion.chunk\",\"created\":1749538204,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_07871e2ad8\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"ref\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-Bgn6485Q081ICLXBbVAgAWYoL9ibD\",\"object\":\"chat.completion.chunk\",\"created\":1749538204,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_07871e2ad8\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"1\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-Bgn6485Q081ICLXBbVAgAWYoL9ibD\",\"object\":\"chat.completion.chunk\",\"created\":1749538204,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_07871e2ad8\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"$\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-Bgn6485Q081ICLXBbVAgAWYoL9ibD\",\"object\":\"chat.completion.chunk\",\"created\":1749538204,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_07871e2ad8\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"\\\",\\\"\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-Bgn6485Q081ICLXBbVAgAWYoL9ibD\",\"object\":\"chat.completion.chunk\",\"created\":1749538204,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_07871e2ad8\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"block\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-Bgn6485Q081ICLXBbVAgAWYoL9ibD\",\"object\":\"chat.completion.chunk\",\"created\":1749538204,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_07871e2ad8\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"\\\":\\\"\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-Bgn6485Q081ICLXBbVAgAWYoL9ibD\",\"object\":\"chat.completion.chunk\",\"created\":1749538204,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_07871e2ad8\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"<\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-Bgn6485Q081ICLXBbVAgAWYoL9ibD\",\"object\":\"chat.completion.chunk\",\"created\":1749538204,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_07871e2ad8\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"p\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-Bgn6485Q081ICLXBbVAgAWYoL9ibD\",\"object\":\"chat.completion.chunk\",\"created\":1749538204,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_07871e2ad8\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\">Hello\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-Bgn6485Q081ICLXBbVAgAWYoL9ibD\",\"object\":\"chat.completion.chunk\",\"created\":1749538204,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_07871e2ad8\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\",\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-Bgn6485Q081ICLXBbVAgAWYoL9ibD\",\"object\":\"chat.completion.chunk\",\"created\":1749538204,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_07871e2ad8\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\" <\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-Bgn6485Q081ICLXBbVAgAWYoL9ibD\",\"object\":\"chat.completion.chunk\",\"created\":1749538204,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_07871e2ad8\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"span\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-Bgn6485Q081ICLXBbVAgAWYoL9ibD\",\"object\":\"chat.completion.chunk\",\"created\":1749538204,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_07871e2ad8\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\" data\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-Bgn6485Q081ICLXBbVAgAWYoL9ibD\",\"object\":\"chat.completion.chunk\",\"created\":1749538204,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_07871e2ad8\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"-inline\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-Bgn6485Q081ICLXBbVAgAWYoL9ibD\",\"object\":\"chat.completion.chunk\",\"created\":1749538204,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_07871e2ad8\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"-content\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-Bgn6485Q081ICLXBbVAgAWYoL9ibD\",\"object\":\"chat.completion.chunk\",\"created\":1749538204,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_07871e2ad8\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"-type\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-Bgn6485Q081ICLXBbVAgAWYoL9ibD\",\"object\":\"chat.completion.chunk\",\"created\":1749538204,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_07871e2ad8\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"=\\\\\\\"\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-Bgn6485Q081ICLXBbVAgAWYoL9ibD\",\"object\":\"chat.completion.chunk\",\"created\":1749538204,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_07871e2ad8\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"mention\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-Bgn6485Q081ICLXBbVAgAWYoL9ibD\",\"object\":\"chat.completion.chunk\",\"created\":1749538204,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_07871e2ad8\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"\\\\\\\"\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-Bgn6485Q081ICLXBbVAgAWYoL9ibD\",\"object\":\"chat.completion.chunk\",\"created\":1749538204,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_07871e2ad8\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\" data\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-Bgn6485Q081ICLXBbVAgAWYoL9ibD\",\"object\":\"chat.completion.chunk\",\"created\":1749538204,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_07871e2ad8\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"-user\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-Bgn6485Q081ICLXBbVAgAWYoL9ibD\",\"object\":\"chat.completion.chunk\",\"created\":1749538204,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_07871e2ad8\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"=\\\\\\\"\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-Bgn6485Q081ICLXBbVAgAWYoL9ibD\",\"object\":\"chat.completion.chunk\",\"created\":1749538204,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_07871e2ad8\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"Jane\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-Bgn6485Q081ICLXBbVAgAWYoL9ibD\",\"object\":\"chat.completion.chunk\",\"created\":1749538204,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_07871e2ad8\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\" Doe\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-Bgn6485Q081ICLXBbVAgAWYoL9ibD\",\"object\":\"chat.completion.chunk\",\"created\":1749538204,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_07871e2ad8\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"\\\\\\\">\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-Bgn6485Q081ICLXBbVAgAWYoL9ibD\",\"object\":\"chat.completion.chunk\",\"created\":1749538204,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_07871e2ad8\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"@\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-Bgn6485Q081ICLXBbVAgAWYoL9ibD\",\"object\":\"chat.completion.chunk\",\"created\":1749538204,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_07871e2ad8\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"Jane\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-Bgn6485Q081ICLXBbVAgAWYoL9ibD\",\"object\":\"chat.completion.chunk\",\"created\":1749538204,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_07871e2ad8\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\" Doe\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-Bgn6485Q081ICLXBbVAgAWYoL9ibD\",\"object\":\"chat.completion.chunk\",\"created\":1749538204,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_07871e2ad8\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-Bgn6485Q081ICLXBbVAgAWYoL9ibD\",\"object\":\"chat.completion.chunk\",\"created\":1749538204,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_07871e2ad8\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"!\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-Bgn6485Q081ICLXBbVAgAWYoL9ibD\",\"object\":\"chat.completion.chunk\",\"created\":1749538204,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_07871e2ad8\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"\\\"}\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-Bgn6485Q081ICLXBbVAgAWYoL9ibD\",\"object\":\"chat.completion.chunk\",\"created\":1749538204,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_07871e2ad8\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"]}\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-Bgn6485Q081ICLXBbVAgAWYoL9ibD\",\"object\":\"chat.completion.chunk\",\"created\":1749538204,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_07871e2ad8\",\"choices\":[{\"index\":0,\"delta\":{},\"logprobs\":null,\"finish_reason\":\"stop\"}]}\n\ndata: [DONE]\n\n", + "body": "data: {\"id\":\"chatcmpl-BhcH4B6ZoeXHq7dh7h7UGwywM7xTD\",\"object\":\"chat.completion.chunk\",\"created\":1749734930,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_07871e2ad8\",\"choices\":[{\"index\":0,\"delta\":{\"role\":\"assistant\",\"content\":null,\"tool_calls\":[{\"index\":0,\"id\":\"call_aUnPtC9f5jr92BZ4wt2EwynL\",\"type\":\"function\",\"function\":{\"name\":\"json\",\"arguments\":\"\"}}],\"refusal\":null},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BhcH4B6ZoeXHq7dh7h7UGwywM7xTD\",\"object\":\"chat.completion.chunk\",\"created\":1749734930,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_07871e2ad8\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"{\\\"\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BhcH4B6ZoeXHq7dh7h7UGwywM7xTD\",\"object\":\"chat.completion.chunk\",\"created\":1749734930,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_07871e2ad8\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"operations\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BhcH4B6ZoeXHq7dh7h7UGwywM7xTD\",\"object\":\"chat.completion.chunk\",\"created\":1749734930,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_07871e2ad8\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"\\\":[\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BhcH4B6ZoeXHq7dh7h7UGwywM7xTD\",\"object\":\"chat.completion.chunk\",\"created\":1749734930,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_07871e2ad8\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"{\\\"\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BhcH4B6ZoeXHq7dh7h7UGwywM7xTD\",\"object\":\"chat.completion.chunk\",\"created\":1749734930,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_07871e2ad8\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"type\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BhcH4B6ZoeXHq7dh7h7UGwywM7xTD\",\"object\":\"chat.completion.chunk\",\"created\":1749734930,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_07871e2ad8\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"\\\":\\\"\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BhcH4B6ZoeXHq7dh7h7UGwywM7xTD\",\"object\":\"chat.completion.chunk\",\"created\":1749734930,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_07871e2ad8\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"update\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BhcH4B6ZoeXHq7dh7h7UGwywM7xTD\",\"object\":\"chat.completion.chunk\",\"created\":1749734930,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_07871e2ad8\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"\\\",\\\"\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BhcH4B6ZoeXHq7dh7h7UGwywM7xTD\",\"object\":\"chat.completion.chunk\",\"created\":1749734930,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_07871e2ad8\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"id\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BhcH4B6ZoeXHq7dh7h7UGwywM7xTD\",\"object\":\"chat.completion.chunk\",\"created\":1749734930,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_07871e2ad8\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"\\\":\\\"\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BhcH4B6ZoeXHq7dh7h7UGwywM7xTD\",\"object\":\"chat.completion.chunk\",\"created\":1749734930,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_07871e2ad8\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"ref\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BhcH4B6ZoeXHq7dh7h7UGwywM7xTD\",\"object\":\"chat.completion.chunk\",\"created\":1749734930,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_07871e2ad8\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"1\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BhcH4B6ZoeXHq7dh7h7UGwywM7xTD\",\"object\":\"chat.completion.chunk\",\"created\":1749734930,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_07871e2ad8\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"$\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BhcH4B6ZoeXHq7dh7h7UGwywM7xTD\",\"object\":\"chat.completion.chunk\",\"created\":1749734930,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_07871e2ad8\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"\\\",\\\"\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BhcH4B6ZoeXHq7dh7h7UGwywM7xTD\",\"object\":\"chat.completion.chunk\",\"created\":1749734930,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_07871e2ad8\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"block\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BhcH4B6ZoeXHq7dh7h7UGwywM7xTD\",\"object\":\"chat.completion.chunk\",\"created\":1749734930,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_07871e2ad8\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"\\\":\\\"\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BhcH4B6ZoeXHq7dh7h7UGwywM7xTD\",\"object\":\"chat.completion.chunk\",\"created\":1749734930,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_07871e2ad8\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"<\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BhcH4B6ZoeXHq7dh7h7UGwywM7xTD\",\"object\":\"chat.completion.chunk\",\"created\":1749734930,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_07871e2ad8\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"p\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BhcH4B6ZoeXHq7dh7h7UGwywM7xTD\",\"object\":\"chat.completion.chunk\",\"created\":1749734930,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_07871e2ad8\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\">Hello\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BhcH4B6ZoeXHq7dh7h7UGwywM7xTD\",\"object\":\"chat.completion.chunk\",\"created\":1749734930,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_07871e2ad8\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\",\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BhcH4B6ZoeXHq7dh7h7UGwywM7xTD\",\"object\":\"chat.completion.chunk\",\"created\":1749734930,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_07871e2ad8\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\" <\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BhcH4B6ZoeXHq7dh7h7UGwywM7xTD\",\"object\":\"chat.completion.chunk\",\"created\":1749734930,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_07871e2ad8\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"span\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BhcH4B6ZoeXHq7dh7h7UGwywM7xTD\",\"object\":\"chat.completion.chunk\",\"created\":1749734930,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_07871e2ad8\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\" data\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BhcH4B6ZoeXHq7dh7h7UGwywM7xTD\",\"object\":\"chat.completion.chunk\",\"created\":1749734930,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_07871e2ad8\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"-inline\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BhcH4B6ZoeXHq7dh7h7UGwywM7xTD\",\"object\":\"chat.completion.chunk\",\"created\":1749734930,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_07871e2ad8\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"-content\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BhcH4B6ZoeXHq7dh7h7UGwywM7xTD\",\"object\":\"chat.completion.chunk\",\"created\":1749734930,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_07871e2ad8\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"-type\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BhcH4B6ZoeXHq7dh7h7UGwywM7xTD\",\"object\":\"chat.completion.chunk\",\"created\":1749734930,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_07871e2ad8\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"=\\\\\\\"\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BhcH4B6ZoeXHq7dh7h7UGwywM7xTD\",\"object\":\"chat.completion.chunk\",\"created\":1749734930,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_07871e2ad8\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"mention\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BhcH4B6ZoeXHq7dh7h7UGwywM7xTD\",\"object\":\"chat.completion.chunk\",\"created\":1749734930,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_07871e2ad8\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"\\\\\\\"\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BhcH4B6ZoeXHq7dh7h7UGwywM7xTD\",\"object\":\"chat.completion.chunk\",\"created\":1749734930,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_07871e2ad8\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\" data\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BhcH4B6ZoeXHq7dh7h7UGwywM7xTD\",\"object\":\"chat.completion.chunk\",\"created\":1749734930,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_07871e2ad8\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"-user\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BhcH4B6ZoeXHq7dh7h7UGwywM7xTD\",\"object\":\"chat.completion.chunk\",\"created\":1749734930,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_07871e2ad8\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"=\\\\\\\"\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BhcH4B6ZoeXHq7dh7h7UGwywM7xTD\",\"object\":\"chat.completion.chunk\",\"created\":1749734930,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_07871e2ad8\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"Jane\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BhcH4B6ZoeXHq7dh7h7UGwywM7xTD\",\"object\":\"chat.completion.chunk\",\"created\":1749734930,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_07871e2ad8\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\" Doe\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BhcH4B6ZoeXHq7dh7h7UGwywM7xTD\",\"object\":\"chat.completion.chunk\",\"created\":1749734930,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_07871e2ad8\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"\\\\\\\">\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BhcH4B6ZoeXHq7dh7h7UGwywM7xTD\",\"object\":\"chat.completion.chunk\",\"created\":1749734930,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_07871e2ad8\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"@\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BhcH4B6ZoeXHq7dh7h7UGwywM7xTD\",\"object\":\"chat.completion.chunk\",\"created\":1749734930,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_07871e2ad8\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"Jane\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BhcH4B6ZoeXHq7dh7h7UGwywM7xTD\",\"object\":\"chat.completion.chunk\",\"created\":1749734930,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_07871e2ad8\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\" Doe\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BhcH4B6ZoeXHq7dh7h7UGwywM7xTD\",\"object\":\"chat.completion.chunk\",\"created\":1749734930,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_07871e2ad8\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BhcH4B6ZoeXHq7dh7h7UGwywM7xTD\",\"object\":\"chat.completion.chunk\",\"created\":1749734930,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_07871e2ad8\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"!\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BhcH4B6ZoeXHq7dh7h7UGwywM7xTD\",\"object\":\"chat.completion.chunk\",\"created\":1749734930,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_07871e2ad8\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"\\\"}\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BhcH4B6ZoeXHq7dh7h7UGwywM7xTD\",\"object\":\"chat.completion.chunk\",\"created\":1749734930,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_07871e2ad8\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"]}\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BhcH4B6ZoeXHq7dh7h7UGwywM7xTD\",\"object\":\"chat.completion.chunk\",\"created\":1749734930,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_07871e2ad8\",\"choices\":[{\"index\":0,\"delta\":{},\"logprobs\":null,\"finish_reason\":\"stop\"}]}\n\ndata: [DONE]\n\n", "headers": [] } } \ No newline at end of file diff --git a/packages/xl-ai/src/api/formats/html-blocks/__snapshots__/htmlBlocks.test.ts/Update/__msw_snapshots__/openai.chat/gpt-4o-2024-08-06 (streaming)/standard update_1_f5d03fb0433b5e5b912f40dbffd9f462.json b/packages/xl-ai/src/api/formats/html-blocks/__snapshots__/htmlBlocks.test.ts/Update/__msw_snapshots__/openai.chat/gpt-4o-2024-08-06 (streaming)/standard update_1_f5d03fb0433b5e5b912f40dbffd9f462.json index 93f7e4c50f..c36029a14a 100644 --- a/packages/xl-ai/src/api/formats/html-blocks/__snapshots__/htmlBlocks.test.ts/Update/__msw_snapshots__/openai.chat/gpt-4o-2024-08-06 (streaming)/standard update_1_f5d03fb0433b5e5b912f40dbffd9f462.json +++ b/packages/xl-ai/src/api/formats/html-blocks/__snapshots__/htmlBlocks.test.ts/Update/__msw_snapshots__/openai.chat/gpt-4o-2024-08-06 (streaming)/standard update_1_f5d03fb0433b5e5b912f40dbffd9f462.json @@ -9,7 +9,7 @@ "response": { "status": 200, "statusText": "", - "body": "data: {\"id\":\"chatcmpl-Bgn5qy4Jf6re8NmYO5ILfsuipiAHa\",\"object\":\"chat.completion.chunk\",\"created\":1749538190,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_07871e2ad8\",\"choices\":[{\"index\":0,\"delta\":{\"role\":\"assistant\",\"content\":null,\"tool_calls\":[{\"index\":0,\"id\":\"call_dkZhCmnOplyOWZcKW16JlFhw\",\"type\":\"function\",\"function\":{\"name\":\"json\",\"arguments\":\"\"}}],\"refusal\":null},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-Bgn5qy4Jf6re8NmYO5ILfsuipiAHa\",\"object\":\"chat.completion.chunk\",\"created\":1749538190,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_07871e2ad8\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"{\\\"\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-Bgn5qy4Jf6re8NmYO5ILfsuipiAHa\",\"object\":\"chat.completion.chunk\",\"created\":1749538190,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_07871e2ad8\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"operations\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-Bgn5qy4Jf6re8NmYO5ILfsuipiAHa\",\"object\":\"chat.completion.chunk\",\"created\":1749538190,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_07871e2ad8\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"\\\":[\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-Bgn5qy4Jf6re8NmYO5ILfsuipiAHa\",\"object\":\"chat.completion.chunk\",\"created\":1749538190,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_07871e2ad8\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"{\\\"\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-Bgn5qy4Jf6re8NmYO5ILfsuipiAHa\",\"object\":\"chat.completion.chunk\",\"created\":1749538190,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_07871e2ad8\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"type\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-Bgn5qy4Jf6re8NmYO5ILfsuipiAHa\",\"object\":\"chat.completion.chunk\",\"created\":1749538190,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_07871e2ad8\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"\\\":\\\"\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-Bgn5qy4Jf6re8NmYO5ILfsuipiAHa\",\"object\":\"chat.completion.chunk\",\"created\":1749538190,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_07871e2ad8\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"update\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-Bgn5qy4Jf6re8NmYO5ILfsuipiAHa\",\"object\":\"chat.completion.chunk\",\"created\":1749538190,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_07871e2ad8\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"\\\",\\\"\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-Bgn5qy4Jf6re8NmYO5ILfsuipiAHa\",\"object\":\"chat.completion.chunk\",\"created\":1749538190,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_07871e2ad8\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"id\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-Bgn5qy4Jf6re8NmYO5ILfsuipiAHa\",\"object\":\"chat.completion.chunk\",\"created\":1749538190,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_07871e2ad8\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"\\\":\\\"\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-Bgn5qy4Jf6re8NmYO5ILfsuipiAHa\",\"object\":\"chat.completion.chunk\",\"created\":1749538190,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_07871e2ad8\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"ref\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-Bgn5qy4Jf6re8NmYO5ILfsuipiAHa\",\"object\":\"chat.completion.chunk\",\"created\":1749538190,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_07871e2ad8\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"1\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-Bgn5qy4Jf6re8NmYO5ILfsuipiAHa\",\"object\":\"chat.completion.chunk\",\"created\":1749538190,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_07871e2ad8\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"$\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-Bgn5qy4Jf6re8NmYO5ILfsuipiAHa\",\"object\":\"chat.completion.chunk\",\"created\":1749538190,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_07871e2ad8\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"\\\",\\\"\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-Bgn5qy4Jf6re8NmYO5ILfsuipiAHa\",\"object\":\"chat.completion.chunk\",\"created\":1749538190,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_07871e2ad8\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"block\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-Bgn5qy4Jf6re8NmYO5ILfsuipiAHa\",\"object\":\"chat.completion.chunk\",\"created\":1749538190,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_07871e2ad8\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"\\\":\\\"\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-Bgn5qy4Jf6re8NmYO5ILfsuipiAHa\",\"object\":\"chat.completion.chunk\",\"created\":1749538190,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_07871e2ad8\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"<\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-Bgn5qy4Jf6re8NmYO5ILfsuipiAHa\",\"object\":\"chat.completion.chunk\",\"created\":1749538190,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_07871e2ad8\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"p\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-Bgn5qy4Jf6re8NmYO5ILfsuipiAHa\",\"object\":\"chat.completion.chunk\",\"created\":1749538190,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_07871e2ad8\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\">\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-Bgn5qy4Jf6re8NmYO5ILfsuipiAHa\",\"object\":\"chat.completion.chunk\",\"created\":1749538190,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_07871e2ad8\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"Hallo\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-Bgn5qy4Jf6re8NmYO5ILfsuipiAHa\",\"object\":\"chat.completion.chunk\",\"created\":1749538190,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_07871e2ad8\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\",\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-Bgn5qy4Jf6re8NmYO5ILfsuipiAHa\",\"object\":\"chat.completion.chunk\",\"created\":1749538190,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_07871e2ad8\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\" Welt\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-Bgn5qy4Jf6re8NmYO5ILfsuipiAHa\",\"object\":\"chat.completion.chunk\",\"created\":1749538190,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_07871e2ad8\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"!\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-Bgn5qy4Jf6re8NmYO5ILfsuipiAHa\",\"object\":\"chat.completion.chunk\",\"created\":1749538190,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_07871e2ad8\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"\\\"}\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-Bgn5qy4Jf6re8NmYO5ILfsuipiAHa\",\"object\":\"chat.completion.chunk\",\"created\":1749538190,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_07871e2ad8\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"]}\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-Bgn5qy4Jf6re8NmYO5ILfsuipiAHa\",\"object\":\"chat.completion.chunk\",\"created\":1749538190,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_07871e2ad8\",\"choices\":[{\"index\":0,\"delta\":{},\"logprobs\":null,\"finish_reason\":\"stop\"}]}\n\ndata: [DONE]\n\n", + "body": "data: {\"id\":\"chatcmpl-BhcGnLghCmp7qJAa5wDYPAR4tlK2s\",\"object\":\"chat.completion.chunk\",\"created\":1749734913,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_07871e2ad8\",\"choices\":[{\"index\":0,\"delta\":{\"role\":\"assistant\",\"content\":null,\"tool_calls\":[{\"index\":0,\"id\":\"call_2DaOJPriLB8Kmc13f0zn6Bsl\",\"type\":\"function\",\"function\":{\"name\":\"json\",\"arguments\":\"\"}}],\"refusal\":null},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BhcGnLghCmp7qJAa5wDYPAR4tlK2s\",\"object\":\"chat.completion.chunk\",\"created\":1749734913,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_07871e2ad8\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"{\\\"\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BhcGnLghCmp7qJAa5wDYPAR4tlK2s\",\"object\":\"chat.completion.chunk\",\"created\":1749734913,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_07871e2ad8\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"operations\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BhcGnLghCmp7qJAa5wDYPAR4tlK2s\",\"object\":\"chat.completion.chunk\",\"created\":1749734913,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_07871e2ad8\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"\\\":[\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BhcGnLghCmp7qJAa5wDYPAR4tlK2s\",\"object\":\"chat.completion.chunk\",\"created\":1749734913,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_07871e2ad8\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"{\\\"\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BhcGnLghCmp7qJAa5wDYPAR4tlK2s\",\"object\":\"chat.completion.chunk\",\"created\":1749734913,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_07871e2ad8\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"type\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BhcGnLghCmp7qJAa5wDYPAR4tlK2s\",\"object\":\"chat.completion.chunk\",\"created\":1749734913,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_07871e2ad8\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"\\\":\\\"\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BhcGnLghCmp7qJAa5wDYPAR4tlK2s\",\"object\":\"chat.completion.chunk\",\"created\":1749734913,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_07871e2ad8\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"update\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BhcGnLghCmp7qJAa5wDYPAR4tlK2s\",\"object\":\"chat.completion.chunk\",\"created\":1749734913,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_07871e2ad8\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"\\\",\\\"\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BhcGnLghCmp7qJAa5wDYPAR4tlK2s\",\"object\":\"chat.completion.chunk\",\"created\":1749734913,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_07871e2ad8\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"id\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BhcGnLghCmp7qJAa5wDYPAR4tlK2s\",\"object\":\"chat.completion.chunk\",\"created\":1749734913,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_07871e2ad8\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"\\\":\\\"\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BhcGnLghCmp7qJAa5wDYPAR4tlK2s\",\"object\":\"chat.completion.chunk\",\"created\":1749734913,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_07871e2ad8\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"ref\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BhcGnLghCmp7qJAa5wDYPAR4tlK2s\",\"object\":\"chat.completion.chunk\",\"created\":1749734913,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_07871e2ad8\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"1\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BhcGnLghCmp7qJAa5wDYPAR4tlK2s\",\"object\":\"chat.completion.chunk\",\"created\":1749734913,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_07871e2ad8\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"$\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BhcGnLghCmp7qJAa5wDYPAR4tlK2s\",\"object\":\"chat.completion.chunk\",\"created\":1749734913,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_07871e2ad8\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"\\\",\\\"\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BhcGnLghCmp7qJAa5wDYPAR4tlK2s\",\"object\":\"chat.completion.chunk\",\"created\":1749734913,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_07871e2ad8\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"block\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BhcGnLghCmp7qJAa5wDYPAR4tlK2s\",\"object\":\"chat.completion.chunk\",\"created\":1749734913,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_07871e2ad8\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"\\\":\\\"\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BhcGnLghCmp7qJAa5wDYPAR4tlK2s\",\"object\":\"chat.completion.chunk\",\"created\":1749734913,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_07871e2ad8\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"<\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BhcGnLghCmp7qJAa5wDYPAR4tlK2s\",\"object\":\"chat.completion.chunk\",\"created\":1749734913,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_07871e2ad8\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"p\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BhcGnLghCmp7qJAa5wDYPAR4tlK2s\",\"object\":\"chat.completion.chunk\",\"created\":1749734913,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_07871e2ad8\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\">\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BhcGnLghCmp7qJAa5wDYPAR4tlK2s\",\"object\":\"chat.completion.chunk\",\"created\":1749734913,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_07871e2ad8\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"Hallo\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BhcGnLghCmp7qJAa5wDYPAR4tlK2s\",\"object\":\"chat.completion.chunk\",\"created\":1749734913,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_07871e2ad8\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\",\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BhcGnLghCmp7qJAa5wDYPAR4tlK2s\",\"object\":\"chat.completion.chunk\",\"created\":1749734913,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_07871e2ad8\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\" Welt\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BhcGnLghCmp7qJAa5wDYPAR4tlK2s\",\"object\":\"chat.completion.chunk\",\"created\":1749734913,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_07871e2ad8\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"!\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BhcGnLghCmp7qJAa5wDYPAR4tlK2s\",\"object\":\"chat.completion.chunk\",\"created\":1749734913,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_07871e2ad8\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"\\\"}\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BhcGnLghCmp7qJAa5wDYPAR4tlK2s\",\"object\":\"chat.completion.chunk\",\"created\":1749734913,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_07871e2ad8\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"]}\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BhcGnLghCmp7qJAa5wDYPAR4tlK2s\",\"object\":\"chat.completion.chunk\",\"created\":1749734913,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_07871e2ad8\",\"choices\":[{\"index\":0,\"delta\":{},\"logprobs\":null,\"finish_reason\":\"stop\"}]}\n\ndata: [DONE]\n\n", "headers": [] } } \ No newline at end of file diff --git a/packages/xl-ai/src/api/formats/html-blocks/__snapshots__/htmlBlocks.test.ts/Update/__msw_snapshots__/openai.chat/gpt-4o-2024-08-06 (streaming)/styles + ic in source block, remove mark_1_d0386ebc8dc8350f33c44c2251cd1d3c.json b/packages/xl-ai/src/api/formats/html-blocks/__snapshots__/htmlBlocks.test.ts/Update/__msw_snapshots__/openai.chat/gpt-4o-2024-08-06 (streaming)/styles + ic in source block, remove mark_1_d0386ebc8dc8350f33c44c2251cd1d3c.json index 60f7375683..470a194567 100644 --- a/packages/xl-ai/src/api/formats/html-blocks/__snapshots__/htmlBlocks.test.ts/Update/__msw_snapshots__/openai.chat/gpt-4o-2024-08-06 (streaming)/styles + ic in source block, remove mark_1_d0386ebc8dc8350f33c44c2251cd1d3c.json +++ b/packages/xl-ai/src/api/formats/html-blocks/__snapshots__/htmlBlocks.test.ts/Update/__msw_snapshots__/openai.chat/gpt-4o-2024-08-06 (streaming)/styles + ic in source block, remove mark_1_d0386ebc8dc8350f33c44c2251cd1d3c.json @@ -9,7 +9,7 @@ "response": { "status": 200, "statusText": "", - "body": "data: {\"id\":\"chatcmpl-Bgn5xogBqUPPGBW1yn01DlqSVd95o\",\"object\":\"chat.completion.chunk\",\"created\":1749538197,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_07871e2ad8\",\"choices\":[{\"index\":0,\"delta\":{\"role\":\"assistant\",\"content\":null,\"tool_calls\":[{\"index\":0,\"id\":\"call_Lk7nVRMpp3zfZEgWHn4s83Zc\",\"type\":\"function\",\"function\":{\"name\":\"json\",\"arguments\":\"\"}}],\"refusal\":null},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-Bgn5xogBqUPPGBW1yn01DlqSVd95o\",\"object\":\"chat.completion.chunk\",\"created\":1749538197,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_07871e2ad8\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"{\\\"\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-Bgn5xogBqUPPGBW1yn01DlqSVd95o\",\"object\":\"chat.completion.chunk\",\"created\":1749538197,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_07871e2ad8\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"operations\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-Bgn5xogBqUPPGBW1yn01DlqSVd95o\",\"object\":\"chat.completion.chunk\",\"created\":1749538197,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_07871e2ad8\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"\\\":[\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-Bgn5xogBqUPPGBW1yn01DlqSVd95o\",\"object\":\"chat.completion.chunk\",\"created\":1749538197,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_07871e2ad8\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"{\\\"\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-Bgn5xogBqUPPGBW1yn01DlqSVd95o\",\"object\":\"chat.completion.chunk\",\"created\":1749538197,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_07871e2ad8\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"type\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-Bgn5xogBqUPPGBW1yn01DlqSVd95o\",\"object\":\"chat.completion.chunk\",\"created\":1749538197,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_07871e2ad8\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"\\\":\\\"\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-Bgn5xogBqUPPGBW1yn01DlqSVd95o\",\"object\":\"chat.completion.chunk\",\"created\":1749538197,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_07871e2ad8\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"update\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-Bgn5xogBqUPPGBW1yn01DlqSVd95o\",\"object\":\"chat.completion.chunk\",\"created\":1749538197,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_07871e2ad8\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"\\\",\\\"\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-Bgn5xogBqUPPGBW1yn01DlqSVd95o\",\"object\":\"chat.completion.chunk\",\"created\":1749538197,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_07871e2ad8\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"id\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-Bgn5xogBqUPPGBW1yn01DlqSVd95o\",\"object\":\"chat.completion.chunk\",\"created\":1749538197,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_07871e2ad8\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"\\\":\\\"\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-Bgn5xogBqUPPGBW1yn01DlqSVd95o\",\"object\":\"chat.completion.chunk\",\"created\":1749538197,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_07871e2ad8\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"ref\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-Bgn5xogBqUPPGBW1yn01DlqSVd95o\",\"object\":\"chat.completion.chunk\",\"created\":1749538197,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_07871e2ad8\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"2\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-Bgn5xogBqUPPGBW1yn01DlqSVd95o\",\"object\":\"chat.completion.chunk\",\"created\":1749538197,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_07871e2ad8\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"$\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-Bgn5xogBqUPPGBW1yn01DlqSVd95o\",\"object\":\"chat.completion.chunk\",\"created\":1749538197,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_07871e2ad8\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"\\\",\\\"\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-Bgn5xogBqUPPGBW1yn01DlqSVd95o\",\"object\":\"chat.completion.chunk\",\"created\":1749538197,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_07871e2ad8\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"block\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-Bgn5xogBqUPPGBW1yn01DlqSVd95o\",\"object\":\"chat.completion.chunk\",\"created\":1749538197,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_07871e2ad8\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"\\\":\\\"\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-Bgn5xogBqUPPGBW1yn01DlqSVd95o\",\"object\":\"chat.completion.chunk\",\"created\":1749538197,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_07871e2ad8\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"<\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-Bgn5xogBqUPPGBW1yn01DlqSVd95o\",\"object\":\"chat.completion.chunk\",\"created\":1749538197,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_07871e2ad8\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"p\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-Bgn5xogBqUPPGBW1yn01DlqSVd95o\",\"object\":\"chat.completion.chunk\",\"created\":1749538197,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_07871e2ad8\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\">Hello\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-Bgn5xogBqUPPGBW1yn01DlqSVd95o\",\"object\":\"chat.completion.chunk\",\"created\":1749538197,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_07871e2ad8\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\",\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-Bgn5xogBqUPPGBW1yn01DlqSVd95o\",\"object\":\"chat.completion.chunk\",\"created\":1749538197,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_07871e2ad8\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\" <\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-Bgn5xogBqUPPGBW1yn01DlqSVd95o\",\"object\":\"chat.completion.chunk\",\"created\":1749538197,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_07871e2ad8\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"span\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-Bgn5xogBqUPPGBW1yn01DlqSVd95o\",\"object\":\"chat.completion.chunk\",\"created\":1749538197,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_07871e2ad8\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\" data\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-Bgn5xogBqUPPGBW1yn01DlqSVd95o\",\"object\":\"chat.completion.chunk\",\"created\":1749538197,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_07871e2ad8\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"-inline\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-Bgn5xogBqUPPGBW1yn01DlqSVd95o\",\"object\":\"chat.completion.chunk\",\"created\":1749538197,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_07871e2ad8\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"-content\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-Bgn5xogBqUPPGBW1yn01DlqSVd95o\",\"object\":\"chat.completion.chunk\",\"created\":1749538197,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_07871e2ad8\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"-type\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-Bgn5xogBqUPPGBW1yn01DlqSVd95o\",\"object\":\"chat.completion.chunk\",\"created\":1749538197,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_07871e2ad8\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"=\\\\\\\"\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-Bgn5xogBqUPPGBW1yn01DlqSVd95o\",\"object\":\"chat.completion.chunk\",\"created\":1749538197,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_07871e2ad8\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"mention\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-Bgn5xogBqUPPGBW1yn01DlqSVd95o\",\"object\":\"chat.completion.chunk\",\"created\":1749538197,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_07871e2ad8\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"\\\\\\\"\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-Bgn5xogBqUPPGBW1yn01DlqSVd95o\",\"object\":\"chat.completion.chunk\",\"created\":1749538197,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_07871e2ad8\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\" data\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-Bgn5xogBqUPPGBW1yn01DlqSVd95o\",\"object\":\"chat.completion.chunk\",\"created\":1749538197,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_07871e2ad8\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"-user\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-Bgn5xogBqUPPGBW1yn01DlqSVd95o\",\"object\":\"chat.completion.chunk\",\"created\":1749538197,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_07871e2ad8\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"=\\\\\\\"\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-Bgn5xogBqUPPGBW1yn01DlqSVd95o\",\"object\":\"chat.completion.chunk\",\"created\":1749538197,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_07871e2ad8\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"John\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-Bgn5xogBqUPPGBW1yn01DlqSVd95o\",\"object\":\"chat.completion.chunk\",\"created\":1749538197,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_07871e2ad8\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\" Doe\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-Bgn5xogBqUPPGBW1yn01DlqSVd95o\",\"object\":\"chat.completion.chunk\",\"created\":1749538197,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_07871e2ad8\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"\\\\\\\">\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-Bgn5xogBqUPPGBW1yn01DlqSVd95o\",\"object\":\"chat.completion.chunk\",\"created\":1749538197,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_07871e2ad8\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"@\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-Bgn5xogBqUPPGBW1yn01DlqSVd95o\",\"object\":\"chat.completion.chunk\",\"created\":1749538197,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_07871e2ad8\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"John\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-Bgn5xogBqUPPGBW1yn01DlqSVd95o\",\"object\":\"chat.completion.chunk\",\"created\":1749538197,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_07871e2ad8\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\" Doe\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-Bgn5xogBqUPPGBW1yn01DlqSVd95o\",\"object\":\"chat.completion.chunk\",\"created\":1749538197,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_07871e2ad8\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-Bgn5xogBqUPPGBW1yn01DlqSVd95o\",\"object\":\"chat.completion.chunk\",\"created\":1749538197,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_07871e2ad8\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"!\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-Bgn5xogBqUPPGBW1yn01DlqSVd95o\",\"object\":\"chat.completion.chunk\",\"created\":1749538197,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_07871e2ad8\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\" How\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-Bgn5xogBqUPPGBW1yn01DlqSVd95o\",\"object\":\"chat.completion.chunk\",\"created\":1749538197,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_07871e2ad8\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\" are\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-Bgn5xogBqUPPGBW1yn01DlqSVd95o\",\"object\":\"chat.completion.chunk\",\"created\":1749538197,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_07871e2ad8\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\" you\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-Bgn5xogBqUPPGBW1yn01DlqSVd95o\",\"object\":\"chat.completion.chunk\",\"created\":1749538197,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_07871e2ad8\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\" doing\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-Bgn5xogBqUPPGBW1yn01DlqSVd95o\",\"object\":\"chat.completion.chunk\",\"created\":1749538197,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_07871e2ad8\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"?\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-Bgn5xogBqUPPGBW1yn01DlqSVd95o\",\"object\":\"chat.completion.chunk\",\"created\":1749538197,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_07871e2ad8\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\" <\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-Bgn5xogBqUPPGBW1yn01DlqSVd95o\",\"object\":\"chat.completion.chunk\",\"created\":1749538197,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_07871e2ad8\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"span\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-Bgn5xogBqUPPGBW1yn01DlqSVd95o\",\"object\":\"chat.completion.chunk\",\"created\":1749538197,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_07871e2ad8\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\" data\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-Bgn5xogBqUPPGBW1yn01DlqSVd95o\",\"object\":\"chat.completion.chunk\",\"created\":1749538197,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_07871e2ad8\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"-text\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-Bgn5xogBqUPPGBW1yn01DlqSVd95o\",\"object\":\"chat.completion.chunk\",\"created\":1749538197,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_07871e2ad8\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"-color\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-Bgn5xogBqUPPGBW1yn01DlqSVd95o\",\"object\":\"chat.completion.chunk\",\"created\":1749538197,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_07871e2ad8\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"=\\\\\\\"\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-Bgn5xogBqUPPGBW1yn01DlqSVd95o\",\"object\":\"chat.completion.chunk\",\"created\":1749538197,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_07871e2ad8\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"blue\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-Bgn5xogBqUPPGBW1yn01DlqSVd95o\",\"object\":\"chat.completion.chunk\",\"created\":1749538197,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_07871e2ad8\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"\\\\\\\">\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-Bgn5xogBqUPPGBW1yn01DlqSVd95o\",\"object\":\"chat.completion.chunk\",\"created\":1749538197,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_07871e2ad8\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"This\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-Bgn5xogBqUPPGBW1yn01DlqSVd95o\",\"object\":\"chat.completion.chunk\",\"created\":1749538197,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_07871e2ad8\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\" text\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-Bgn5xogBqUPPGBW1yn01DlqSVd95o\",\"object\":\"chat.completion.chunk\",\"created\":1749538197,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_07871e2ad8\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\" is\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-Bgn5xogBqUPPGBW1yn01DlqSVd95o\",\"object\":\"chat.completion.chunk\",\"created\":1749538197,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_07871e2ad8\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\" blue\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-Bgn5xogBqUPPGBW1yn01DlqSVd95o\",\"object\":\"chat.completion.chunk\",\"created\":1749538197,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_07871e2ad8\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"!\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-Bgn5xogBqUPPGBW1yn01DlqSVd95o\",\"object\":\"chat.completion.chunk\",\"created\":1749538197,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_07871e2ad8\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"\\\"}\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-Bgn5xogBqUPPGBW1yn01DlqSVd95o\",\"object\":\"chat.completion.chunk\",\"created\":1749538197,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_07871e2ad8\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"]}\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-Bgn5xogBqUPPGBW1yn01DlqSVd95o\",\"object\":\"chat.completion.chunk\",\"created\":1749538197,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_07871e2ad8\",\"choices\":[{\"index\":0,\"delta\":{},\"logprobs\":null,\"finish_reason\":\"stop\"}]}\n\ndata: [DONE]\n\n", + "body": "data: {\"id\":\"chatcmpl-BhcGy4z7QkVU8KPbCBaLdbcKJ2skU\",\"object\":\"chat.completion.chunk\",\"created\":1749734924,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_07871e2ad8\",\"choices\":[{\"index\":0,\"delta\":{\"role\":\"assistant\",\"content\":null,\"tool_calls\":[{\"index\":0,\"id\":\"call_z1cGrTBqJgBc0GseaS3WXBNh\",\"type\":\"function\",\"function\":{\"name\":\"json\",\"arguments\":\"\"}}],\"refusal\":null},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BhcGy4z7QkVU8KPbCBaLdbcKJ2skU\",\"object\":\"chat.completion.chunk\",\"created\":1749734924,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_07871e2ad8\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"{\\\"\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BhcGy4z7QkVU8KPbCBaLdbcKJ2skU\",\"object\":\"chat.completion.chunk\",\"created\":1749734924,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_07871e2ad8\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"operations\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BhcGy4z7QkVU8KPbCBaLdbcKJ2skU\",\"object\":\"chat.completion.chunk\",\"created\":1749734924,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_07871e2ad8\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"\\\":[\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BhcGy4z7QkVU8KPbCBaLdbcKJ2skU\",\"object\":\"chat.completion.chunk\",\"created\":1749734924,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_07871e2ad8\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"{\\\"\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BhcGy4z7QkVU8KPbCBaLdbcKJ2skU\",\"object\":\"chat.completion.chunk\",\"created\":1749734924,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_07871e2ad8\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"type\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BhcGy4z7QkVU8KPbCBaLdbcKJ2skU\",\"object\":\"chat.completion.chunk\",\"created\":1749734924,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_07871e2ad8\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"\\\":\\\"\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BhcGy4z7QkVU8KPbCBaLdbcKJ2skU\",\"object\":\"chat.completion.chunk\",\"created\":1749734924,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_07871e2ad8\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"update\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BhcGy4z7QkVU8KPbCBaLdbcKJ2skU\",\"object\":\"chat.completion.chunk\",\"created\":1749734924,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_07871e2ad8\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"\\\",\\\"\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BhcGy4z7QkVU8KPbCBaLdbcKJ2skU\",\"object\":\"chat.completion.chunk\",\"created\":1749734924,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_07871e2ad8\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"id\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BhcGy4z7QkVU8KPbCBaLdbcKJ2skU\",\"object\":\"chat.completion.chunk\",\"created\":1749734924,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_07871e2ad8\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"\\\":\\\"\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BhcGy4z7QkVU8KPbCBaLdbcKJ2skU\",\"object\":\"chat.completion.chunk\",\"created\":1749734924,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_07871e2ad8\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"ref\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BhcGy4z7QkVU8KPbCBaLdbcKJ2skU\",\"object\":\"chat.completion.chunk\",\"created\":1749734924,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_07871e2ad8\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"2\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BhcGy4z7QkVU8KPbCBaLdbcKJ2skU\",\"object\":\"chat.completion.chunk\",\"created\":1749734924,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_07871e2ad8\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"$\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BhcGy4z7QkVU8KPbCBaLdbcKJ2skU\",\"object\":\"chat.completion.chunk\",\"created\":1749734924,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_07871e2ad8\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"\\\",\\\"\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BhcGy4z7QkVU8KPbCBaLdbcKJ2skU\",\"object\":\"chat.completion.chunk\",\"created\":1749734924,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_07871e2ad8\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"block\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BhcGy4z7QkVU8KPbCBaLdbcKJ2skU\",\"object\":\"chat.completion.chunk\",\"created\":1749734924,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_07871e2ad8\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"\\\":\\\"\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BhcGy4z7QkVU8KPbCBaLdbcKJ2skU\",\"object\":\"chat.completion.chunk\",\"created\":1749734924,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_07871e2ad8\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"<\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BhcGy4z7QkVU8KPbCBaLdbcKJ2skU\",\"object\":\"chat.completion.chunk\",\"created\":1749734924,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_07871e2ad8\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"p\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BhcGy4z7QkVU8KPbCBaLdbcKJ2skU\",\"object\":\"chat.completion.chunk\",\"created\":1749734924,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_07871e2ad8\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\">Hello\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BhcGy4z7QkVU8KPbCBaLdbcKJ2skU\",\"object\":\"chat.completion.chunk\",\"created\":1749734924,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_07871e2ad8\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\",\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BhcGy4z7QkVU8KPbCBaLdbcKJ2skU\",\"object\":\"chat.completion.chunk\",\"created\":1749734924,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_07871e2ad8\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\" <\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BhcGy4z7QkVU8KPbCBaLdbcKJ2skU\",\"object\":\"chat.completion.chunk\",\"created\":1749734924,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_07871e2ad8\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"span\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BhcGy4z7QkVU8KPbCBaLdbcKJ2skU\",\"object\":\"chat.completion.chunk\",\"created\":1749734924,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_07871e2ad8\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\" data\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BhcGy4z7QkVU8KPbCBaLdbcKJ2skU\",\"object\":\"chat.completion.chunk\",\"created\":1749734924,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_07871e2ad8\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"-inline\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BhcGy4z7QkVU8KPbCBaLdbcKJ2skU\",\"object\":\"chat.completion.chunk\",\"created\":1749734924,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_07871e2ad8\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"-content\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BhcGy4z7QkVU8KPbCBaLdbcKJ2skU\",\"object\":\"chat.completion.chunk\",\"created\":1749734924,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_07871e2ad8\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"-type\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BhcGy4z7QkVU8KPbCBaLdbcKJ2skU\",\"object\":\"chat.completion.chunk\",\"created\":1749734924,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_07871e2ad8\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"=\\\\\\\"\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BhcGy4z7QkVU8KPbCBaLdbcKJ2skU\",\"object\":\"chat.completion.chunk\",\"created\":1749734924,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_07871e2ad8\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"mention\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BhcGy4z7QkVU8KPbCBaLdbcKJ2skU\",\"object\":\"chat.completion.chunk\",\"created\":1749734924,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_07871e2ad8\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"\\\\\\\"\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BhcGy4z7QkVU8KPbCBaLdbcKJ2skU\",\"object\":\"chat.completion.chunk\",\"created\":1749734924,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_07871e2ad8\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\" data\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BhcGy4z7QkVU8KPbCBaLdbcKJ2skU\",\"object\":\"chat.completion.chunk\",\"created\":1749734924,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_07871e2ad8\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"-user\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BhcGy4z7QkVU8KPbCBaLdbcKJ2skU\",\"object\":\"chat.completion.chunk\",\"created\":1749734924,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_07871e2ad8\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"=\\\\\\\"\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BhcGy4z7QkVU8KPbCBaLdbcKJ2skU\",\"object\":\"chat.completion.chunk\",\"created\":1749734924,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_07871e2ad8\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"John\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BhcGy4z7QkVU8KPbCBaLdbcKJ2skU\",\"object\":\"chat.completion.chunk\",\"created\":1749734924,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_07871e2ad8\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\" Doe\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BhcGy4z7QkVU8KPbCBaLdbcKJ2skU\",\"object\":\"chat.completion.chunk\",\"created\":1749734924,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_07871e2ad8\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"\\\\\\\">\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BhcGy4z7QkVU8KPbCBaLdbcKJ2skU\",\"object\":\"chat.completion.chunk\",\"created\":1749734924,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_07871e2ad8\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"@\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BhcGy4z7QkVU8KPbCBaLdbcKJ2skU\",\"object\":\"chat.completion.chunk\",\"created\":1749734924,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_07871e2ad8\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"John\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BhcGy4z7QkVU8KPbCBaLdbcKJ2skU\",\"object\":\"chat.completion.chunk\",\"created\":1749734924,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_07871e2ad8\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\" Doe\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BhcGy4z7QkVU8KPbCBaLdbcKJ2skU\",\"object\":\"chat.completion.chunk\",\"created\":1749734924,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_07871e2ad8\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BhcGy4z7QkVU8KPbCBaLdbcKJ2skU\",\"object\":\"chat.completion.chunk\",\"created\":1749734924,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_07871e2ad8\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"!\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BhcGy4z7QkVU8KPbCBaLdbcKJ2skU\",\"object\":\"chat.completion.chunk\",\"created\":1749734924,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_07871e2ad8\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\" How\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BhcGy4z7QkVU8KPbCBaLdbcKJ2skU\",\"object\":\"chat.completion.chunk\",\"created\":1749734924,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_07871e2ad8\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\" are\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BhcGy4z7QkVU8KPbCBaLdbcKJ2skU\",\"object\":\"chat.completion.chunk\",\"created\":1749734924,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_07871e2ad8\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\" you\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BhcGy4z7QkVU8KPbCBaLdbcKJ2skU\",\"object\":\"chat.completion.chunk\",\"created\":1749734924,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_07871e2ad8\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\" doing\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BhcGy4z7QkVU8KPbCBaLdbcKJ2skU\",\"object\":\"chat.completion.chunk\",\"created\":1749734924,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_07871e2ad8\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"?\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BhcGy4z7QkVU8KPbCBaLdbcKJ2skU\",\"object\":\"chat.completion.chunk\",\"created\":1749734924,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_07871e2ad8\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\" <\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BhcGy4z7QkVU8KPbCBaLdbcKJ2skU\",\"object\":\"chat.completion.chunk\",\"created\":1749734924,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_07871e2ad8\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"span\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BhcGy4z7QkVU8KPbCBaLdbcKJ2skU\",\"object\":\"chat.completion.chunk\",\"created\":1749734924,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_07871e2ad8\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\" data\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BhcGy4z7QkVU8KPbCBaLdbcKJ2skU\",\"object\":\"chat.completion.chunk\",\"created\":1749734924,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_07871e2ad8\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"-text\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BhcGy4z7QkVU8KPbCBaLdbcKJ2skU\",\"object\":\"chat.completion.chunk\",\"created\":1749734924,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_07871e2ad8\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"-color\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BhcGy4z7QkVU8KPbCBaLdbcKJ2skU\",\"object\":\"chat.completion.chunk\",\"created\":1749734924,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_07871e2ad8\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"=\\\\\\\"\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BhcGy4z7QkVU8KPbCBaLdbcKJ2skU\",\"object\":\"chat.completion.chunk\",\"created\":1749734924,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_07871e2ad8\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"blue\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BhcGy4z7QkVU8KPbCBaLdbcKJ2skU\",\"object\":\"chat.completion.chunk\",\"created\":1749734924,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_07871e2ad8\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"\\\\\\\">\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BhcGy4z7QkVU8KPbCBaLdbcKJ2skU\",\"object\":\"chat.completion.chunk\",\"created\":1749734924,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_07871e2ad8\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"This\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BhcGy4z7QkVU8KPbCBaLdbcKJ2skU\",\"object\":\"chat.completion.chunk\",\"created\":1749734924,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_07871e2ad8\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\" text\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BhcGy4z7QkVU8KPbCBaLdbcKJ2skU\",\"object\":\"chat.completion.chunk\",\"created\":1749734924,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_07871e2ad8\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\" is\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BhcGy4z7QkVU8KPbCBaLdbcKJ2skU\",\"object\":\"chat.completion.chunk\",\"created\":1749734924,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_07871e2ad8\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\" blue\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BhcGy4z7QkVU8KPbCBaLdbcKJ2skU\",\"object\":\"chat.completion.chunk\",\"created\":1749734924,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_07871e2ad8\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"!\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BhcGy4z7QkVU8KPbCBaLdbcKJ2skU\",\"object\":\"chat.completion.chunk\",\"created\":1749734924,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_07871e2ad8\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"\\\"}\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BhcGy4z7QkVU8KPbCBaLdbcKJ2skU\",\"object\":\"chat.completion.chunk\",\"created\":1749734924,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_07871e2ad8\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"]}\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BhcGy4z7QkVU8KPbCBaLdbcKJ2skU\",\"object\":\"chat.completion.chunk\",\"created\":1749734924,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_07871e2ad8\",\"choices\":[{\"index\":0,\"delta\":{},\"logprobs\":null,\"finish_reason\":\"stop\"}]}\n\ndata: [DONE]\n\n", "headers": [] } } \ No newline at end of file diff --git a/packages/xl-ai/src/api/formats/html-blocks/__snapshots__/htmlBlocks.test.ts/Update/__msw_snapshots__/openai.chat/gpt-4o-2024-08-06 (streaming)/styles + ic in source block, remove mention_1_83b1ed76da3ba0a764fdc6fb4d25e47a.json b/packages/xl-ai/src/api/formats/html-blocks/__snapshots__/htmlBlocks.test.ts/Update/__msw_snapshots__/openai.chat/gpt-4o-2024-08-06 (streaming)/styles + ic in source block, remove mention_1_83b1ed76da3ba0a764fdc6fb4d25e47a.json index dfea722479..4466dad13d 100644 --- a/packages/xl-ai/src/api/formats/html-blocks/__snapshots__/htmlBlocks.test.ts/Update/__msw_snapshots__/openai.chat/gpt-4o-2024-08-06 (streaming)/styles + ic in source block, remove mention_1_83b1ed76da3ba0a764fdc6fb4d25e47a.json +++ b/packages/xl-ai/src/api/formats/html-blocks/__snapshots__/htmlBlocks.test.ts/Update/__msw_snapshots__/openai.chat/gpt-4o-2024-08-06 (streaming)/styles + ic in source block, remove mention_1_83b1ed76da3ba0a764fdc6fb4d25e47a.json @@ -9,7 +9,7 @@ "response": { "status": 200, "statusText": "", - "body": "data: {\"id\":\"chatcmpl-Bgn606fu9BGb3jDKwdfhRpzSdKML9\",\"object\":\"chat.completion.chunk\",\"created\":1749538200,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_07871e2ad8\",\"choices\":[{\"index\":0,\"delta\":{\"role\":\"assistant\",\"content\":null,\"tool_calls\":[{\"index\":0,\"id\":\"call_9gYEFDN952dbbemaOfR7oF0j\",\"type\":\"function\",\"function\":{\"name\":\"json\",\"arguments\":\"\"}}],\"refusal\":null},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-Bgn606fu9BGb3jDKwdfhRpzSdKML9\",\"object\":\"chat.completion.chunk\",\"created\":1749538200,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_07871e2ad8\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"{\\\"\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-Bgn606fu9BGb3jDKwdfhRpzSdKML9\",\"object\":\"chat.completion.chunk\",\"created\":1749538200,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_07871e2ad8\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"operations\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-Bgn606fu9BGb3jDKwdfhRpzSdKML9\",\"object\":\"chat.completion.chunk\",\"created\":1749538200,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_07871e2ad8\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"\\\":[\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-Bgn606fu9BGb3jDKwdfhRpzSdKML9\",\"object\":\"chat.completion.chunk\",\"created\":1749538200,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_07871e2ad8\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"{\\\"\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-Bgn606fu9BGb3jDKwdfhRpzSdKML9\",\"object\":\"chat.completion.chunk\",\"created\":1749538200,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_07871e2ad8\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"type\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-Bgn606fu9BGb3jDKwdfhRpzSdKML9\",\"object\":\"chat.completion.chunk\",\"created\":1749538200,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_07871e2ad8\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"\\\":\\\"\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-Bgn606fu9BGb3jDKwdfhRpzSdKML9\",\"object\":\"chat.completion.chunk\",\"created\":1749538200,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_07871e2ad8\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"update\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-Bgn606fu9BGb3jDKwdfhRpzSdKML9\",\"object\":\"chat.completion.chunk\",\"created\":1749538200,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_07871e2ad8\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"\\\",\\\"\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-Bgn606fu9BGb3jDKwdfhRpzSdKML9\",\"object\":\"chat.completion.chunk\",\"created\":1749538200,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_07871e2ad8\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"id\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-Bgn606fu9BGb3jDKwdfhRpzSdKML9\",\"object\":\"chat.completion.chunk\",\"created\":1749538200,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_07871e2ad8\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"\\\":\\\"\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-Bgn606fu9BGb3jDKwdfhRpzSdKML9\",\"object\":\"chat.completion.chunk\",\"created\":1749538200,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_07871e2ad8\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"ref\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-Bgn606fu9BGb3jDKwdfhRpzSdKML9\",\"object\":\"chat.completion.chunk\",\"created\":1749538200,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_07871e2ad8\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"2\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-Bgn606fu9BGb3jDKwdfhRpzSdKML9\",\"object\":\"chat.completion.chunk\",\"created\":1749538200,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_07871e2ad8\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"$\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-Bgn606fu9BGb3jDKwdfhRpzSdKML9\",\"object\":\"chat.completion.chunk\",\"created\":1749538200,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_07871e2ad8\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"\\\",\\\"\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-Bgn606fu9BGb3jDKwdfhRpzSdKML9\",\"object\":\"chat.completion.chunk\",\"created\":1749538200,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_07871e2ad8\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"block\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-Bgn606fu9BGb3jDKwdfhRpzSdKML9\",\"object\":\"chat.completion.chunk\",\"created\":1749538200,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_07871e2ad8\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"\\\":\\\"\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-Bgn606fu9BGb3jDKwdfhRpzSdKML9\",\"object\":\"chat.completion.chunk\",\"created\":1749538200,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_07871e2ad8\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"<\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-Bgn606fu9BGb3jDKwdfhRpzSdKML9\",\"object\":\"chat.completion.chunk\",\"created\":1749538200,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_07871e2ad8\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"p\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-Bgn606fu9BGb3jDKwdfhRpzSdKML9\",\"object\":\"chat.completion.chunk\",\"created\":1749538200,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_07871e2ad8\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\">Hello\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-Bgn606fu9BGb3jDKwdfhRpzSdKML9\",\"object\":\"chat.completion.chunk\",\"created\":1749538200,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_07871e2ad8\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"!\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-Bgn606fu9BGb3jDKwdfhRpzSdKML9\",\"object\":\"chat.completion.chunk\",\"created\":1749538200,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_07871e2ad8\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\" <\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-Bgn606fu9BGb3jDKwdfhRpzSdKML9\",\"object\":\"chat.completion.chunk\",\"created\":1749538200,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_07871e2ad8\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"strong\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-Bgn606fu9BGb3jDKwdfhRpzSdKML9\",\"object\":\"chat.completion.chunk\",\"created\":1749538200,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_07871e2ad8\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\">\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-Bgn606fu9BGb3jDKwdfhRpzSdKML9\",\"object\":\"chat.completion.chunk\",\"created\":1749538200,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_07871e2ad8\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"How\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-Bgn606fu9BGb3jDKwdfhRpzSdKML9\",\"object\":\"chat.completion.chunk\",\"created\":1749538200,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_07871e2ad8\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\" are\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-Bgn606fu9BGb3jDKwdfhRpzSdKML9\",\"object\":\"chat.completion.chunk\",\"created\":1749538200,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_07871e2ad8\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\" you\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-Bgn606fu9BGb3jDKwdfhRpzSdKML9\",\"object\":\"chat.completion.chunk\",\"created\":1749538200,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_07871e2ad8\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\" doing\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-Bgn606fu9BGb3jDKwdfhRpzSdKML9\",\"object\":\"chat.completion.chunk\",\"created\":1749538200,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_07871e2ad8\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"?\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-Bgn606fu9BGb3jDKwdfhRpzSdKML9\",\"object\":\"chat.completion.chunk\",\"created\":1749538200,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_07871e2ad8\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\" <\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-Bgn606fu9BGb3jDKwdfhRpzSdKML9\",\"object\":\"chat.completion.chunk\",\"created\":1749538200,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_07871e2ad8\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"span\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-Bgn606fu9BGb3jDKwdfhRpzSdKML9\",\"object\":\"chat.completion.chunk\",\"created\":1749538200,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_07871e2ad8\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\" data\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-Bgn606fu9BGb3jDKwdfhRpzSdKML9\",\"object\":\"chat.completion.chunk\",\"created\":1749538200,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_07871e2ad8\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"-text\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-Bgn606fu9BGb3jDKwdfhRpzSdKML9\",\"object\":\"chat.completion.chunk\",\"created\":1749538200,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_07871e2ad8\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"-color\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-Bgn606fu9BGb3jDKwdfhRpzSdKML9\",\"object\":\"chat.completion.chunk\",\"created\":1749538200,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_07871e2ad8\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"=\\\\\\\"\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-Bgn606fu9BGb3jDKwdfhRpzSdKML9\",\"object\":\"chat.completion.chunk\",\"created\":1749538200,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_07871e2ad8\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"blue\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-Bgn606fu9BGb3jDKwdfhRpzSdKML9\",\"object\":\"chat.completion.chunk\",\"created\":1749538200,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_07871e2ad8\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"\\\\\\\">\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-Bgn606fu9BGb3jDKwdfhRpzSdKML9\",\"object\":\"chat.completion.chunk\",\"created\":1749538200,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_07871e2ad8\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"This\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-Bgn606fu9BGb3jDKwdfhRpzSdKML9\",\"object\":\"chat.completion.chunk\",\"created\":1749538200,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_07871e2ad8\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\" text\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-Bgn606fu9BGb3jDKwdfhRpzSdKML9\",\"object\":\"chat.completion.chunk\",\"created\":1749538200,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_07871e2ad8\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\" is\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-Bgn606fu9BGb3jDKwdfhRpzSdKML9\",\"object\":\"chat.completion.chunk\",\"created\":1749538200,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_07871e2ad8\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\" blue\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-Bgn606fu9BGb3jDKwdfhRpzSdKML9\",\"object\":\"chat.completion.chunk\",\"created\":1749538200,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_07871e2ad8\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"!\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-Bgn606fu9BGb3jDKwdfhRpzSdKML9\",\"object\":\"chat.completion.chunk\",\"created\":1749538200,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_07871e2ad8\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"\\\"}\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-Bgn606fu9BGb3jDKwdfhRpzSdKML9\",\"object\":\"chat.completion.chunk\",\"created\":1749538200,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_07871e2ad8\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"]}\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-Bgn606fu9BGb3jDKwdfhRpzSdKML9\",\"object\":\"chat.completion.chunk\",\"created\":1749538200,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_07871e2ad8\",\"choices\":[{\"index\":0,\"delta\":{},\"logprobs\":null,\"finish_reason\":\"stop\"}]}\n\ndata: [DONE]\n\n", + "body": "data: {\"id\":\"chatcmpl-BhcGzUYnBw1HKxejlfrPweJy8tELs\",\"object\":\"chat.completion.chunk\",\"created\":1749734925,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_07871e2ad8\",\"choices\":[{\"index\":0,\"delta\":{\"role\":\"assistant\",\"content\":null,\"tool_calls\":[{\"index\":0,\"id\":\"call_zVeMnTRvIWM9I9G9vY4MIhTu\",\"type\":\"function\",\"function\":{\"name\":\"json\",\"arguments\":\"\"}}],\"refusal\":null},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BhcGzUYnBw1HKxejlfrPweJy8tELs\",\"object\":\"chat.completion.chunk\",\"created\":1749734925,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_07871e2ad8\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"{\\\"\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BhcGzUYnBw1HKxejlfrPweJy8tELs\",\"object\":\"chat.completion.chunk\",\"created\":1749734925,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_07871e2ad8\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"operations\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BhcGzUYnBw1HKxejlfrPweJy8tELs\",\"object\":\"chat.completion.chunk\",\"created\":1749734925,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_07871e2ad8\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"\\\":[\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BhcGzUYnBw1HKxejlfrPweJy8tELs\",\"object\":\"chat.completion.chunk\",\"created\":1749734925,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_07871e2ad8\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"{\\\"\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BhcGzUYnBw1HKxejlfrPweJy8tELs\",\"object\":\"chat.completion.chunk\",\"created\":1749734925,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_07871e2ad8\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"type\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BhcGzUYnBw1HKxejlfrPweJy8tELs\",\"object\":\"chat.completion.chunk\",\"created\":1749734925,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_07871e2ad8\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"\\\":\\\"\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BhcGzUYnBw1HKxejlfrPweJy8tELs\",\"object\":\"chat.completion.chunk\",\"created\":1749734925,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_07871e2ad8\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"update\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BhcGzUYnBw1HKxejlfrPweJy8tELs\",\"object\":\"chat.completion.chunk\",\"created\":1749734925,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_07871e2ad8\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"\\\",\\\"\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BhcGzUYnBw1HKxejlfrPweJy8tELs\",\"object\":\"chat.completion.chunk\",\"created\":1749734925,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_07871e2ad8\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"id\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BhcGzUYnBw1HKxejlfrPweJy8tELs\",\"object\":\"chat.completion.chunk\",\"created\":1749734925,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_07871e2ad8\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"\\\":\\\"\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BhcGzUYnBw1HKxejlfrPweJy8tELs\",\"object\":\"chat.completion.chunk\",\"created\":1749734925,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_07871e2ad8\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"ref\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BhcGzUYnBw1HKxejlfrPweJy8tELs\",\"object\":\"chat.completion.chunk\",\"created\":1749734925,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_07871e2ad8\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"2\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BhcGzUYnBw1HKxejlfrPweJy8tELs\",\"object\":\"chat.completion.chunk\",\"created\":1749734925,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_07871e2ad8\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"$\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BhcGzUYnBw1HKxejlfrPweJy8tELs\",\"object\":\"chat.completion.chunk\",\"created\":1749734925,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_07871e2ad8\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"\\\",\\\"\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BhcGzUYnBw1HKxejlfrPweJy8tELs\",\"object\":\"chat.completion.chunk\",\"created\":1749734925,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_07871e2ad8\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"block\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BhcGzUYnBw1HKxejlfrPweJy8tELs\",\"object\":\"chat.completion.chunk\",\"created\":1749734925,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_07871e2ad8\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"\\\":\\\"\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BhcGzUYnBw1HKxejlfrPweJy8tELs\",\"object\":\"chat.completion.chunk\",\"created\":1749734925,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_07871e2ad8\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"<\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BhcGzUYnBw1HKxejlfrPweJy8tELs\",\"object\":\"chat.completion.chunk\",\"created\":1749734925,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_07871e2ad8\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"p\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BhcGzUYnBw1HKxejlfrPweJy8tELs\",\"object\":\"chat.completion.chunk\",\"created\":1749734925,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_07871e2ad8\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\">Hello\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BhcGzUYnBw1HKxejlfrPweJy8tELs\",\"object\":\"chat.completion.chunk\",\"created\":1749734925,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_07871e2ad8\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"!\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BhcGzUYnBw1HKxejlfrPweJy8tELs\",\"object\":\"chat.completion.chunk\",\"created\":1749734925,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_07871e2ad8\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\" <\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BhcGzUYnBw1HKxejlfrPweJy8tELs\",\"object\":\"chat.completion.chunk\",\"created\":1749734925,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_07871e2ad8\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"strong\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BhcGzUYnBw1HKxejlfrPweJy8tELs\",\"object\":\"chat.completion.chunk\",\"created\":1749734925,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_07871e2ad8\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\">\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BhcGzUYnBw1HKxejlfrPweJy8tELs\",\"object\":\"chat.completion.chunk\",\"created\":1749734925,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_07871e2ad8\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"How\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BhcGzUYnBw1HKxejlfrPweJy8tELs\",\"object\":\"chat.completion.chunk\",\"created\":1749734925,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_07871e2ad8\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\" are\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BhcGzUYnBw1HKxejlfrPweJy8tELs\",\"object\":\"chat.completion.chunk\",\"created\":1749734925,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_07871e2ad8\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\" you\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BhcGzUYnBw1HKxejlfrPweJy8tELs\",\"object\":\"chat.completion.chunk\",\"created\":1749734925,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_07871e2ad8\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\" doing\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BhcGzUYnBw1HKxejlfrPweJy8tELs\",\"object\":\"chat.completion.chunk\",\"created\":1749734925,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_07871e2ad8\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"?\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BhcGzUYnBw1HKxejlfrPweJy8tELs\",\"object\":\"chat.completion.chunk\",\"created\":1749734925,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_07871e2ad8\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\" <\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BhcGzUYnBw1HKxejlfrPweJy8tELs\",\"object\":\"chat.completion.chunk\",\"created\":1749734925,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_07871e2ad8\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"span\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BhcGzUYnBw1HKxejlfrPweJy8tELs\",\"object\":\"chat.completion.chunk\",\"created\":1749734925,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_07871e2ad8\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\" data\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BhcGzUYnBw1HKxejlfrPweJy8tELs\",\"object\":\"chat.completion.chunk\",\"created\":1749734925,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_07871e2ad8\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"-text\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BhcGzUYnBw1HKxejlfrPweJy8tELs\",\"object\":\"chat.completion.chunk\",\"created\":1749734925,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_07871e2ad8\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"-color\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BhcGzUYnBw1HKxejlfrPweJy8tELs\",\"object\":\"chat.completion.chunk\",\"created\":1749734925,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_07871e2ad8\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"=\\\\\\\"\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BhcGzUYnBw1HKxejlfrPweJy8tELs\",\"object\":\"chat.completion.chunk\",\"created\":1749734925,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_07871e2ad8\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"blue\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BhcGzUYnBw1HKxejlfrPweJy8tELs\",\"object\":\"chat.completion.chunk\",\"created\":1749734925,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_07871e2ad8\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"\\\\\\\">\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BhcGzUYnBw1HKxejlfrPweJy8tELs\",\"object\":\"chat.completion.chunk\",\"created\":1749734925,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_07871e2ad8\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"This\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BhcGzUYnBw1HKxejlfrPweJy8tELs\",\"object\":\"chat.completion.chunk\",\"created\":1749734925,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_07871e2ad8\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\" text\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BhcGzUYnBw1HKxejlfrPweJy8tELs\",\"object\":\"chat.completion.chunk\",\"created\":1749734925,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_07871e2ad8\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\" is\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BhcGzUYnBw1HKxejlfrPweJy8tELs\",\"object\":\"chat.completion.chunk\",\"created\":1749734925,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_07871e2ad8\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\" blue\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BhcGzUYnBw1HKxejlfrPweJy8tELs\",\"object\":\"chat.completion.chunk\",\"created\":1749734925,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_07871e2ad8\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"!\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BhcGzUYnBw1HKxejlfrPweJy8tELs\",\"object\":\"chat.completion.chunk\",\"created\":1749734925,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_07871e2ad8\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"\\\"}\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BhcGzUYnBw1HKxejlfrPweJy8tELs\",\"object\":\"chat.completion.chunk\",\"created\":1749734925,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_07871e2ad8\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"]}\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BhcGzUYnBw1HKxejlfrPweJy8tELs\",\"object\":\"chat.completion.chunk\",\"created\":1749734925,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_07871e2ad8\",\"choices\":[{\"index\":0,\"delta\":{},\"logprobs\":null,\"finish_reason\":\"stop\"}]}\n\ndata: [DONE]\n\n", "headers": [] } } \ No newline at end of file diff --git a/packages/xl-ai/src/api/formats/html-blocks/__snapshots__/htmlBlocks.test.ts/Update/__msw_snapshots__/openai.chat/gpt-4o-2024-08-06 (streaming)/styles + ic in source block, replace content_1_dd48a67d4d41880db75515d0a95a53dc.json b/packages/xl-ai/src/api/formats/html-blocks/__snapshots__/htmlBlocks.test.ts/Update/__msw_snapshots__/openai.chat/gpt-4o-2024-08-06 (streaming)/styles + ic in source block, replace content_1_dd48a67d4d41880db75515d0a95a53dc.json index 4dab8c9b4b..ae2211db89 100644 --- a/packages/xl-ai/src/api/formats/html-blocks/__snapshots__/htmlBlocks.test.ts/Update/__msw_snapshots__/openai.chat/gpt-4o-2024-08-06 (streaming)/styles + ic in source block, replace content_1_dd48a67d4d41880db75515d0a95a53dc.json +++ b/packages/xl-ai/src/api/formats/html-blocks/__snapshots__/htmlBlocks.test.ts/Update/__msw_snapshots__/openai.chat/gpt-4o-2024-08-06 (streaming)/styles + ic in source block, replace content_1_dd48a67d4d41880db75515d0a95a53dc.json @@ -9,7 +9,7 @@ "response": { "status": 200, "statusText": "", - "body": "data: {\"id\":\"chatcmpl-Bgn5vWpaBD1UdtxvxeB02mkc2y5nq\",\"object\":\"chat.completion.chunk\",\"created\":1749538195,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_07871e2ad8\",\"choices\":[{\"index\":0,\"delta\":{\"role\":\"assistant\",\"content\":null,\"tool_calls\":[{\"index\":0,\"id\":\"call_CLY4xnQaakOj2yDBf8NrmCAZ\",\"type\":\"function\",\"function\":{\"name\":\"json\",\"arguments\":\"\"}}],\"refusal\":null},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-Bgn5vWpaBD1UdtxvxeB02mkc2y5nq\",\"object\":\"chat.completion.chunk\",\"created\":1749538195,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_07871e2ad8\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"{\\\"\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-Bgn5vWpaBD1UdtxvxeB02mkc2y5nq\",\"object\":\"chat.completion.chunk\",\"created\":1749538195,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_07871e2ad8\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"operations\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-Bgn5vWpaBD1UdtxvxeB02mkc2y5nq\",\"object\":\"chat.completion.chunk\",\"created\":1749538195,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_07871e2ad8\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"\\\":[\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-Bgn5vWpaBD1UdtxvxeB02mkc2y5nq\",\"object\":\"chat.completion.chunk\",\"created\":1749538195,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_07871e2ad8\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"{\\\"\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-Bgn5vWpaBD1UdtxvxeB02mkc2y5nq\",\"object\":\"chat.completion.chunk\",\"created\":1749538195,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_07871e2ad8\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"type\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-Bgn5vWpaBD1UdtxvxeB02mkc2y5nq\",\"object\":\"chat.completion.chunk\",\"created\":1749538195,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_07871e2ad8\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"\\\":\\\"\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-Bgn5vWpaBD1UdtxvxeB02mkc2y5nq\",\"object\":\"chat.completion.chunk\",\"created\":1749538195,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_07871e2ad8\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"update\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-Bgn5vWpaBD1UdtxvxeB02mkc2y5nq\",\"object\":\"chat.completion.chunk\",\"created\":1749538195,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_07871e2ad8\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"\\\",\\\"\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-Bgn5vWpaBD1UdtxvxeB02mkc2y5nq\",\"object\":\"chat.completion.chunk\",\"created\":1749538195,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_07871e2ad8\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"id\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-Bgn5vWpaBD1UdtxvxeB02mkc2y5nq\",\"object\":\"chat.completion.chunk\",\"created\":1749538195,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_07871e2ad8\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"\\\":\\\"\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-Bgn5vWpaBD1UdtxvxeB02mkc2y5nq\",\"object\":\"chat.completion.chunk\",\"created\":1749538195,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_07871e2ad8\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"ref\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-Bgn5vWpaBD1UdtxvxeB02mkc2y5nq\",\"object\":\"chat.completion.chunk\",\"created\":1749538195,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_07871e2ad8\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"2\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-Bgn5vWpaBD1UdtxvxeB02mkc2y5nq\",\"object\":\"chat.completion.chunk\",\"created\":1749538195,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_07871e2ad8\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"$\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-Bgn5vWpaBD1UdtxvxeB02mkc2y5nq\",\"object\":\"chat.completion.chunk\",\"created\":1749538195,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_07871e2ad8\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"\\\",\\\"\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-Bgn5vWpaBD1UdtxvxeB02mkc2y5nq\",\"object\":\"chat.completion.chunk\",\"created\":1749538195,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_07871e2ad8\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"block\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-Bgn5vWpaBD1UdtxvxeB02mkc2y5nq\",\"object\":\"chat.completion.chunk\",\"created\":1749538195,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_07871e2ad8\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"\\\":\\\"\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-Bgn5vWpaBD1UdtxvxeB02mkc2y5nq\",\"object\":\"chat.completion.chunk\",\"created\":1749538195,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_07871e2ad8\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"<\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-Bgn5vWpaBD1UdtxvxeB02mkc2y5nq\",\"object\":\"chat.completion.chunk\",\"created\":1749538195,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_07871e2ad8\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"p\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-Bgn5vWpaBD1UdtxvxeB02mkc2y5nq\",\"object\":\"chat.completion.chunk\",\"created\":1749538195,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_07871e2ad8\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\">Hello\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-Bgn5vWpaBD1UdtxvxeB02mkc2y5nq\",\"object\":\"chat.completion.chunk\",\"created\":1749538195,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_07871e2ad8\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\",\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-Bgn5vWpaBD1UdtxvxeB02mkc2y5nq\",\"object\":\"chat.completion.chunk\",\"created\":1749538195,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_07871e2ad8\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\" updated\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-Bgn5vWpaBD1UdtxvxeB02mkc2y5nq\",\"object\":\"chat.completion.chunk\",\"created\":1749538195,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_07871e2ad8\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\" content\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-Bgn5vWpaBD1UdtxvxeB02mkc2y5nq\",\"object\":\"chat.completion.chunk\",\"created\":1749538195,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_07871e2ad8\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-Bgn5vWpaBD1UdtxvxeB02mkc2y5nq\",\"object\":\"chat.completion.chunk\",\"created\":1749538195,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_07871e2ad8\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"\\\"}\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-Bgn5vWpaBD1UdtxvxeB02mkc2y5nq\",\"object\":\"chat.completion.chunk\",\"created\":1749538195,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_07871e2ad8\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"]}\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-Bgn5vWpaBD1UdtxvxeB02mkc2y5nq\",\"object\":\"chat.completion.chunk\",\"created\":1749538195,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_07871e2ad8\",\"choices\":[{\"index\":0,\"delta\":{},\"logprobs\":null,\"finish_reason\":\"stop\"}]}\n\ndata: [DONE]\n\n", + "body": "data: {\"id\":\"chatcmpl-BhcGv50lycgEphMAJwCiO1os3ItPH\",\"object\":\"chat.completion.chunk\",\"created\":1749734921,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_07871e2ad8\",\"choices\":[{\"index\":0,\"delta\":{\"role\":\"assistant\",\"content\":null,\"tool_calls\":[{\"index\":0,\"id\":\"call_KPdxgL4ikpGOGkMChNA69CKB\",\"type\":\"function\",\"function\":{\"name\":\"json\",\"arguments\":\"\"}}],\"refusal\":null},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BhcGv50lycgEphMAJwCiO1os3ItPH\",\"object\":\"chat.completion.chunk\",\"created\":1749734921,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_07871e2ad8\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"{\\\"\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BhcGv50lycgEphMAJwCiO1os3ItPH\",\"object\":\"chat.completion.chunk\",\"created\":1749734921,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_07871e2ad8\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"operations\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BhcGv50lycgEphMAJwCiO1os3ItPH\",\"object\":\"chat.completion.chunk\",\"created\":1749734921,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_07871e2ad8\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"\\\":[\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BhcGv50lycgEphMAJwCiO1os3ItPH\",\"object\":\"chat.completion.chunk\",\"created\":1749734921,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_07871e2ad8\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"{\\\"\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BhcGv50lycgEphMAJwCiO1os3ItPH\",\"object\":\"chat.completion.chunk\",\"created\":1749734921,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_07871e2ad8\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"type\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BhcGv50lycgEphMAJwCiO1os3ItPH\",\"object\":\"chat.completion.chunk\",\"created\":1749734921,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_07871e2ad8\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"\\\":\\\"\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BhcGv50lycgEphMAJwCiO1os3ItPH\",\"object\":\"chat.completion.chunk\",\"created\":1749734921,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_07871e2ad8\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"update\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BhcGv50lycgEphMAJwCiO1os3ItPH\",\"object\":\"chat.completion.chunk\",\"created\":1749734921,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_07871e2ad8\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"\\\",\\\"\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BhcGv50lycgEphMAJwCiO1os3ItPH\",\"object\":\"chat.completion.chunk\",\"created\":1749734921,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_07871e2ad8\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"id\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BhcGv50lycgEphMAJwCiO1os3ItPH\",\"object\":\"chat.completion.chunk\",\"created\":1749734921,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_07871e2ad8\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"\\\":\\\"\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BhcGv50lycgEphMAJwCiO1os3ItPH\",\"object\":\"chat.completion.chunk\",\"created\":1749734921,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_07871e2ad8\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"ref\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BhcGv50lycgEphMAJwCiO1os3ItPH\",\"object\":\"chat.completion.chunk\",\"created\":1749734921,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_07871e2ad8\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"2\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BhcGv50lycgEphMAJwCiO1os3ItPH\",\"object\":\"chat.completion.chunk\",\"created\":1749734921,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_07871e2ad8\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"$\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BhcGv50lycgEphMAJwCiO1os3ItPH\",\"object\":\"chat.completion.chunk\",\"created\":1749734921,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_07871e2ad8\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"\\\",\\\"\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BhcGv50lycgEphMAJwCiO1os3ItPH\",\"object\":\"chat.completion.chunk\",\"created\":1749734921,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_07871e2ad8\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"block\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BhcGv50lycgEphMAJwCiO1os3ItPH\",\"object\":\"chat.completion.chunk\",\"created\":1749734921,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_07871e2ad8\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"\\\":\\\"\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BhcGv50lycgEphMAJwCiO1os3ItPH\",\"object\":\"chat.completion.chunk\",\"created\":1749734921,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_07871e2ad8\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"<\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BhcGv50lycgEphMAJwCiO1os3ItPH\",\"object\":\"chat.completion.chunk\",\"created\":1749734921,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_07871e2ad8\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"p\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BhcGv50lycgEphMAJwCiO1os3ItPH\",\"object\":\"chat.completion.chunk\",\"created\":1749734921,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_07871e2ad8\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\">Hello\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BhcGv50lycgEphMAJwCiO1os3ItPH\",\"object\":\"chat.completion.chunk\",\"created\":1749734921,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_07871e2ad8\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\",\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BhcGv50lycgEphMAJwCiO1os3ItPH\",\"object\":\"chat.completion.chunk\",\"created\":1749734921,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_07871e2ad8\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\" updated\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BhcGv50lycgEphMAJwCiO1os3ItPH\",\"object\":\"chat.completion.chunk\",\"created\":1749734921,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_07871e2ad8\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\" content\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BhcGv50lycgEphMAJwCiO1os3ItPH\",\"object\":\"chat.completion.chunk\",\"created\":1749734921,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_07871e2ad8\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BhcGv50lycgEphMAJwCiO1os3ItPH\",\"object\":\"chat.completion.chunk\",\"created\":1749734921,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_07871e2ad8\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"\\\"}\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BhcGv50lycgEphMAJwCiO1os3ItPH\",\"object\":\"chat.completion.chunk\",\"created\":1749734921,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_07871e2ad8\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"]}\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BhcGv50lycgEphMAJwCiO1os3ItPH\",\"object\":\"chat.completion.chunk\",\"created\":1749734921,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_07871e2ad8\",\"choices\":[{\"index\":0,\"delta\":{},\"logprobs\":null,\"finish_reason\":\"stop\"}]}\n\ndata: [DONE]\n\n", "headers": [] } } \ No newline at end of file diff --git a/packages/xl-ai/src/api/formats/html-blocks/__snapshots__/htmlBlocks.test.ts/Update/__msw_snapshots__/openai.chat/gpt-4o-2024-08-06 (streaming)/styles + ic in source block, update mention prop_1_e21784bb9948aac3dd70492535dff192.json b/packages/xl-ai/src/api/formats/html-blocks/__snapshots__/htmlBlocks.test.ts/Update/__msw_snapshots__/openai.chat/gpt-4o-2024-08-06 (streaming)/styles + ic in source block, update mention prop_1_e21784bb9948aac3dd70492535dff192.json index 70bbeb8c94..a098eb8b2c 100644 --- a/packages/xl-ai/src/api/formats/html-blocks/__snapshots__/htmlBlocks.test.ts/Update/__msw_snapshots__/openai.chat/gpt-4o-2024-08-06 (streaming)/styles + ic in source block, update mention prop_1_e21784bb9948aac3dd70492535dff192.json +++ b/packages/xl-ai/src/api/formats/html-blocks/__snapshots__/htmlBlocks.test.ts/Update/__msw_snapshots__/openai.chat/gpt-4o-2024-08-06 (streaming)/styles + ic in source block, update mention prop_1_e21784bb9948aac3dd70492535dff192.json @@ -9,7 +9,7 @@ "response": { "status": 200, "statusText": "", - "body": "data: {\"id\":\"chatcmpl-Bgn65PHuQQmmCo9MLRCPXgpWJhHcl\",\"object\":\"chat.completion.chunk\",\"created\":1749538205,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_07871e2ad8\",\"choices\":[{\"index\":0,\"delta\":{\"role\":\"assistant\",\"content\":null,\"tool_calls\":[{\"index\":0,\"id\":\"call_E7BMaZYC1QW3KMdIQSZfFFoJ\",\"type\":\"function\",\"function\":{\"name\":\"json\",\"arguments\":\"\"}}],\"refusal\":null},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-Bgn65PHuQQmmCo9MLRCPXgpWJhHcl\",\"object\":\"chat.completion.chunk\",\"created\":1749538205,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_07871e2ad8\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"{\\\"\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-Bgn65PHuQQmmCo9MLRCPXgpWJhHcl\",\"object\":\"chat.completion.chunk\",\"created\":1749538205,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_07871e2ad8\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"operations\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-Bgn65PHuQQmmCo9MLRCPXgpWJhHcl\",\"object\":\"chat.completion.chunk\",\"created\":1749538205,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_07871e2ad8\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"\\\":[\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-Bgn65PHuQQmmCo9MLRCPXgpWJhHcl\",\"object\":\"chat.completion.chunk\",\"created\":1749538205,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_07871e2ad8\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"{\\\"\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-Bgn65PHuQQmmCo9MLRCPXgpWJhHcl\",\"object\":\"chat.completion.chunk\",\"created\":1749538205,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_07871e2ad8\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"type\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-Bgn65PHuQQmmCo9MLRCPXgpWJhHcl\",\"object\":\"chat.completion.chunk\",\"created\":1749538205,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_07871e2ad8\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"\\\":\\\"\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-Bgn65PHuQQmmCo9MLRCPXgpWJhHcl\",\"object\":\"chat.completion.chunk\",\"created\":1749538205,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_07871e2ad8\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"update\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-Bgn65PHuQQmmCo9MLRCPXgpWJhHcl\",\"object\":\"chat.completion.chunk\",\"created\":1749538205,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_07871e2ad8\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"\\\",\\\"\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-Bgn65PHuQQmmCo9MLRCPXgpWJhHcl\",\"object\":\"chat.completion.chunk\",\"created\":1749538205,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_07871e2ad8\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"id\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-Bgn65PHuQQmmCo9MLRCPXgpWJhHcl\",\"object\":\"chat.completion.chunk\",\"created\":1749538205,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_07871e2ad8\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"\\\":\\\"\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-Bgn65PHuQQmmCo9MLRCPXgpWJhHcl\",\"object\":\"chat.completion.chunk\",\"created\":1749538205,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_07871e2ad8\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"ref\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-Bgn65PHuQQmmCo9MLRCPXgpWJhHcl\",\"object\":\"chat.completion.chunk\",\"created\":1749538205,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_07871e2ad8\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"2\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-Bgn65PHuQQmmCo9MLRCPXgpWJhHcl\",\"object\":\"chat.completion.chunk\",\"created\":1749538205,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_07871e2ad8\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"$\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-Bgn65PHuQQmmCo9MLRCPXgpWJhHcl\",\"object\":\"chat.completion.chunk\",\"created\":1749538205,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_07871e2ad8\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"\\\",\\\"\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-Bgn65PHuQQmmCo9MLRCPXgpWJhHcl\",\"object\":\"chat.completion.chunk\",\"created\":1749538205,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_07871e2ad8\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"block\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-Bgn65PHuQQmmCo9MLRCPXgpWJhHcl\",\"object\":\"chat.completion.chunk\",\"created\":1749538205,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_07871e2ad8\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"\\\":\\\"\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-Bgn65PHuQQmmCo9MLRCPXgpWJhHcl\",\"object\":\"chat.completion.chunk\",\"created\":1749538205,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_07871e2ad8\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"<\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-Bgn65PHuQQmmCo9MLRCPXgpWJhHcl\",\"object\":\"chat.completion.chunk\",\"created\":1749538205,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_07871e2ad8\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"p\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-Bgn65PHuQQmmCo9MLRCPXgpWJhHcl\",\"object\":\"chat.completion.chunk\",\"created\":1749538205,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_07871e2ad8\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\">Hello\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-Bgn65PHuQQmmCo9MLRCPXgpWJhHcl\",\"object\":\"chat.completion.chunk\",\"created\":1749538205,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_07871e2ad8\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\",\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-Bgn65PHuQQmmCo9MLRCPXgpWJhHcl\",\"object\":\"chat.completion.chunk\",\"created\":1749538205,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_07871e2ad8\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\" <\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-Bgn65PHuQQmmCo9MLRCPXgpWJhHcl\",\"object\":\"chat.completion.chunk\",\"created\":1749538205,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_07871e2ad8\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"span\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-Bgn65PHuQQmmCo9MLRCPXgpWJhHcl\",\"object\":\"chat.completion.chunk\",\"created\":1749538205,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_07871e2ad8\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\" data\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-Bgn65PHuQQmmCo9MLRCPXgpWJhHcl\",\"object\":\"chat.completion.chunk\",\"created\":1749538205,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_07871e2ad8\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"-inline\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-Bgn65PHuQQmmCo9MLRCPXgpWJhHcl\",\"object\":\"chat.completion.chunk\",\"created\":1749538205,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_07871e2ad8\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"-content\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-Bgn65PHuQQmmCo9MLRCPXgpWJhHcl\",\"object\":\"chat.completion.chunk\",\"created\":1749538205,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_07871e2ad8\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"-type\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-Bgn65PHuQQmmCo9MLRCPXgpWJhHcl\",\"object\":\"chat.completion.chunk\",\"created\":1749538205,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_07871e2ad8\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"=\\\\\\\"\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-Bgn65PHuQQmmCo9MLRCPXgpWJhHcl\",\"object\":\"chat.completion.chunk\",\"created\":1749538205,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_07871e2ad8\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"mention\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-Bgn65PHuQQmmCo9MLRCPXgpWJhHcl\",\"object\":\"chat.completion.chunk\",\"created\":1749538205,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_07871e2ad8\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"\\\\\\\"\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-Bgn65PHuQQmmCo9MLRCPXgpWJhHcl\",\"object\":\"chat.completion.chunk\",\"created\":1749538205,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_07871e2ad8\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\" data\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-Bgn65PHuQQmmCo9MLRCPXgpWJhHcl\",\"object\":\"chat.completion.chunk\",\"created\":1749538205,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_07871e2ad8\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"-user\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-Bgn65PHuQQmmCo9MLRCPXgpWJhHcl\",\"object\":\"chat.completion.chunk\",\"created\":1749538205,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_07871e2ad8\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"=\\\\\\\"\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-Bgn65PHuQQmmCo9MLRCPXgpWJhHcl\",\"object\":\"chat.completion.chunk\",\"created\":1749538205,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_07871e2ad8\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"Jane\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-Bgn65PHuQQmmCo9MLRCPXgpWJhHcl\",\"object\":\"chat.completion.chunk\",\"created\":1749538205,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_07871e2ad8\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\" Doe\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-Bgn65PHuQQmmCo9MLRCPXgpWJhHcl\",\"object\":\"chat.completion.chunk\",\"created\":1749538205,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_07871e2ad8\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"\\\\\\\">\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-Bgn65PHuQQmmCo9MLRCPXgpWJhHcl\",\"object\":\"chat.completion.chunk\",\"created\":1749538205,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_07871e2ad8\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"@\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-Bgn65PHuQQmmCo9MLRCPXgpWJhHcl\",\"object\":\"chat.completion.chunk\",\"created\":1749538205,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_07871e2ad8\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"Jane\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-Bgn65PHuQQmmCo9MLRCPXgpWJhHcl\",\"object\":\"chat.completion.chunk\",\"created\":1749538205,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_07871e2ad8\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\" Doe\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-Bgn65PHuQQmmCo9MLRCPXgpWJhHcl\",\"object\":\"chat.completion.chunk\",\"created\":1749538205,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_07871e2ad8\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-Bgn65PHuQQmmCo9MLRCPXgpWJhHcl\",\"object\":\"chat.completion.chunk\",\"created\":1749538205,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_07871e2ad8\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"!\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-Bgn65PHuQQmmCo9MLRCPXgpWJhHcl\",\"object\":\"chat.completion.chunk\",\"created\":1749538205,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_07871e2ad8\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\" <\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-Bgn65PHuQQmmCo9MLRCPXgpWJhHcl\",\"object\":\"chat.completion.chunk\",\"created\":1749538205,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_07871e2ad8\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"strong\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-Bgn65PHuQQmmCo9MLRCPXgpWJhHcl\",\"object\":\"chat.completion.chunk\",\"created\":1749538205,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_07871e2ad8\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\">\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-Bgn65PHuQQmmCo9MLRCPXgpWJhHcl\",\"object\":\"chat.completion.chunk\",\"created\":1749538205,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_07871e2ad8\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"How\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-Bgn65PHuQQmmCo9MLRCPXgpWJhHcl\",\"object\":\"chat.completion.chunk\",\"created\":1749538205,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_07871e2ad8\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\" are\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-Bgn65PHuQQmmCo9MLRCPXgpWJhHcl\",\"object\":\"chat.completion.chunk\",\"created\":1749538205,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_07871e2ad8\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\" you\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-Bgn65PHuQQmmCo9MLRCPXgpWJhHcl\",\"object\":\"chat.completion.chunk\",\"created\":1749538205,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_07871e2ad8\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\" doing\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-Bgn65PHuQQmmCo9MLRCPXgpWJhHcl\",\"object\":\"chat.completion.chunk\",\"created\":1749538205,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_07871e2ad8\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"?\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-Bgn65PHuQQmmCo9MLRCPXgpWJhHcl\",\"object\":\"chat.completion.chunk\",\"created\":1749538205,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_07871e2ad8\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\" <\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-Bgn65PHuQQmmCo9MLRCPXgpWJhHcl\",\"object\":\"chat.completion.chunk\",\"created\":1749538205,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_07871e2ad8\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"span\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-Bgn65PHuQQmmCo9MLRCPXgpWJhHcl\",\"object\":\"chat.completion.chunk\",\"created\":1749538205,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_07871e2ad8\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\" data\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-Bgn65PHuQQmmCo9MLRCPXgpWJhHcl\",\"object\":\"chat.completion.chunk\",\"created\":1749538205,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_07871e2ad8\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"-text\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-Bgn65PHuQQmmCo9MLRCPXgpWJhHcl\",\"object\":\"chat.completion.chunk\",\"created\":1749538205,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_07871e2ad8\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"-color\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-Bgn65PHuQQmmCo9MLRCPXgpWJhHcl\",\"object\":\"chat.completion.chunk\",\"created\":1749538205,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_07871e2ad8\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"=\\\\\\\"\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-Bgn65PHuQQmmCo9MLRCPXgpWJhHcl\",\"object\":\"chat.completion.chunk\",\"created\":1749538205,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_07871e2ad8\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"blue\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-Bgn65PHuQQmmCo9MLRCPXgpWJhHcl\",\"object\":\"chat.completion.chunk\",\"created\":1749538205,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_07871e2ad8\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"\\\\\\\">\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-Bgn65PHuQQmmCo9MLRCPXgpWJhHcl\",\"object\":\"chat.completion.chunk\",\"created\":1749538205,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_07871e2ad8\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"This\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-Bgn65PHuQQmmCo9MLRCPXgpWJhHcl\",\"object\":\"chat.completion.chunk\",\"created\":1749538205,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_07871e2ad8\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\" text\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-Bgn65PHuQQmmCo9MLRCPXgpWJhHcl\",\"object\":\"chat.completion.chunk\",\"created\":1749538205,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_07871e2ad8\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\" is\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-Bgn65PHuQQmmCo9MLRCPXgpWJhHcl\",\"object\":\"chat.completion.chunk\",\"created\":1749538205,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_07871e2ad8\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\" blue\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-Bgn65PHuQQmmCo9MLRCPXgpWJhHcl\",\"object\":\"chat.completion.chunk\",\"created\":1749538205,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_07871e2ad8\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"!\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-Bgn65PHuQQmmCo9MLRCPXgpWJhHcl\",\"object\":\"chat.completion.chunk\",\"created\":1749538205,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_07871e2ad8\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"\\\"}\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-Bgn65PHuQQmmCo9MLRCPXgpWJhHcl\",\"object\":\"chat.completion.chunk\",\"created\":1749538205,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_07871e2ad8\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"]}\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-Bgn65PHuQQmmCo9MLRCPXgpWJhHcl\",\"object\":\"chat.completion.chunk\",\"created\":1749538205,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_07871e2ad8\",\"choices\":[{\"index\":0,\"delta\":{},\"logprobs\":null,\"finish_reason\":\"stop\"}]}\n\ndata: [DONE]\n\n", + "body": "data: {\"id\":\"chatcmpl-BhcH7mqKBkUy0ipIBGvLGvHomye32\",\"object\":\"chat.completion.chunk\",\"created\":1749734933,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_07871e2ad8\",\"choices\":[{\"index\":0,\"delta\":{\"role\":\"assistant\",\"content\":null,\"tool_calls\":[{\"index\":0,\"id\":\"call_rDAhasAUD1PF13ESS3pAYeCr\",\"type\":\"function\",\"function\":{\"name\":\"json\",\"arguments\":\"\"}}],\"refusal\":null},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BhcH7mqKBkUy0ipIBGvLGvHomye32\",\"object\":\"chat.completion.chunk\",\"created\":1749734933,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_07871e2ad8\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"{\\\"\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BhcH7mqKBkUy0ipIBGvLGvHomye32\",\"object\":\"chat.completion.chunk\",\"created\":1749734933,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_07871e2ad8\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"operations\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BhcH7mqKBkUy0ipIBGvLGvHomye32\",\"object\":\"chat.completion.chunk\",\"created\":1749734933,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_07871e2ad8\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"\\\":[\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BhcH7mqKBkUy0ipIBGvLGvHomye32\",\"object\":\"chat.completion.chunk\",\"created\":1749734933,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_07871e2ad8\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"{\\\"\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BhcH7mqKBkUy0ipIBGvLGvHomye32\",\"object\":\"chat.completion.chunk\",\"created\":1749734933,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_07871e2ad8\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"type\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BhcH7mqKBkUy0ipIBGvLGvHomye32\",\"object\":\"chat.completion.chunk\",\"created\":1749734933,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_07871e2ad8\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"\\\":\\\"\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BhcH7mqKBkUy0ipIBGvLGvHomye32\",\"object\":\"chat.completion.chunk\",\"created\":1749734933,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_07871e2ad8\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"update\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BhcH7mqKBkUy0ipIBGvLGvHomye32\",\"object\":\"chat.completion.chunk\",\"created\":1749734933,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_07871e2ad8\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"\\\",\\\"\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BhcH7mqKBkUy0ipIBGvLGvHomye32\",\"object\":\"chat.completion.chunk\",\"created\":1749734933,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_07871e2ad8\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"id\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BhcH7mqKBkUy0ipIBGvLGvHomye32\",\"object\":\"chat.completion.chunk\",\"created\":1749734933,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_07871e2ad8\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"\\\":\\\"\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BhcH7mqKBkUy0ipIBGvLGvHomye32\",\"object\":\"chat.completion.chunk\",\"created\":1749734933,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_07871e2ad8\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"ref\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BhcH7mqKBkUy0ipIBGvLGvHomye32\",\"object\":\"chat.completion.chunk\",\"created\":1749734933,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_07871e2ad8\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"2\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BhcH7mqKBkUy0ipIBGvLGvHomye32\",\"object\":\"chat.completion.chunk\",\"created\":1749734933,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_07871e2ad8\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"$\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BhcH7mqKBkUy0ipIBGvLGvHomye32\",\"object\":\"chat.completion.chunk\",\"created\":1749734933,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_07871e2ad8\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"\\\",\\\"\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BhcH7mqKBkUy0ipIBGvLGvHomye32\",\"object\":\"chat.completion.chunk\",\"created\":1749734933,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_07871e2ad8\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"block\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BhcH7mqKBkUy0ipIBGvLGvHomye32\",\"object\":\"chat.completion.chunk\",\"created\":1749734933,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_07871e2ad8\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"\\\":\\\"\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BhcH7mqKBkUy0ipIBGvLGvHomye32\",\"object\":\"chat.completion.chunk\",\"created\":1749734933,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_07871e2ad8\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"<\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BhcH7mqKBkUy0ipIBGvLGvHomye32\",\"object\":\"chat.completion.chunk\",\"created\":1749734933,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_07871e2ad8\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"p\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BhcH7mqKBkUy0ipIBGvLGvHomye32\",\"object\":\"chat.completion.chunk\",\"created\":1749734933,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_07871e2ad8\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\">Hello\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BhcH7mqKBkUy0ipIBGvLGvHomye32\",\"object\":\"chat.completion.chunk\",\"created\":1749734933,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_07871e2ad8\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\",\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BhcH7mqKBkUy0ipIBGvLGvHomye32\",\"object\":\"chat.completion.chunk\",\"created\":1749734933,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_07871e2ad8\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\" <\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BhcH7mqKBkUy0ipIBGvLGvHomye32\",\"object\":\"chat.completion.chunk\",\"created\":1749734933,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_07871e2ad8\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"span\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BhcH7mqKBkUy0ipIBGvLGvHomye32\",\"object\":\"chat.completion.chunk\",\"created\":1749734933,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_07871e2ad8\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\" data\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BhcH7mqKBkUy0ipIBGvLGvHomye32\",\"object\":\"chat.completion.chunk\",\"created\":1749734933,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_07871e2ad8\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"-inline\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BhcH7mqKBkUy0ipIBGvLGvHomye32\",\"object\":\"chat.completion.chunk\",\"created\":1749734933,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_07871e2ad8\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"-content\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BhcH7mqKBkUy0ipIBGvLGvHomye32\",\"object\":\"chat.completion.chunk\",\"created\":1749734933,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_07871e2ad8\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"-type\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BhcH7mqKBkUy0ipIBGvLGvHomye32\",\"object\":\"chat.completion.chunk\",\"created\":1749734933,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_07871e2ad8\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"=\\\\\\\"\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BhcH7mqKBkUy0ipIBGvLGvHomye32\",\"object\":\"chat.completion.chunk\",\"created\":1749734933,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_07871e2ad8\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"mention\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BhcH7mqKBkUy0ipIBGvLGvHomye32\",\"object\":\"chat.completion.chunk\",\"created\":1749734933,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_07871e2ad8\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"\\\\\\\"\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BhcH7mqKBkUy0ipIBGvLGvHomye32\",\"object\":\"chat.completion.chunk\",\"created\":1749734933,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_07871e2ad8\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\" data\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BhcH7mqKBkUy0ipIBGvLGvHomye32\",\"object\":\"chat.completion.chunk\",\"created\":1749734933,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_07871e2ad8\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"-user\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BhcH7mqKBkUy0ipIBGvLGvHomye32\",\"object\":\"chat.completion.chunk\",\"created\":1749734933,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_07871e2ad8\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"=\\\\\\\"\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BhcH7mqKBkUy0ipIBGvLGvHomye32\",\"object\":\"chat.completion.chunk\",\"created\":1749734933,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_07871e2ad8\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"Jane\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BhcH7mqKBkUy0ipIBGvLGvHomye32\",\"object\":\"chat.completion.chunk\",\"created\":1749734933,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_07871e2ad8\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\" Doe\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BhcH7mqKBkUy0ipIBGvLGvHomye32\",\"object\":\"chat.completion.chunk\",\"created\":1749734933,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_07871e2ad8\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"\\\\\\\">\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BhcH7mqKBkUy0ipIBGvLGvHomye32\",\"object\":\"chat.completion.chunk\",\"created\":1749734933,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_07871e2ad8\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"@\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BhcH7mqKBkUy0ipIBGvLGvHomye32\",\"object\":\"chat.completion.chunk\",\"created\":1749734933,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_07871e2ad8\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"Jane\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BhcH7mqKBkUy0ipIBGvLGvHomye32\",\"object\":\"chat.completion.chunk\",\"created\":1749734933,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_07871e2ad8\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\" Doe\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BhcH7mqKBkUy0ipIBGvLGvHomye32\",\"object\":\"chat.completion.chunk\",\"created\":1749734933,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_07871e2ad8\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BhcH7mqKBkUy0ipIBGvLGvHomye32\",\"object\":\"chat.completion.chunk\",\"created\":1749734933,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_07871e2ad8\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"!\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BhcH7mqKBkUy0ipIBGvLGvHomye32\",\"object\":\"chat.completion.chunk\",\"created\":1749734933,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_07871e2ad8\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\" <\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BhcH7mqKBkUy0ipIBGvLGvHomye32\",\"object\":\"chat.completion.chunk\",\"created\":1749734933,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_07871e2ad8\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"strong\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BhcH7mqKBkUy0ipIBGvLGvHomye32\",\"object\":\"chat.completion.chunk\",\"created\":1749734933,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_07871e2ad8\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\">\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BhcH7mqKBkUy0ipIBGvLGvHomye32\",\"object\":\"chat.completion.chunk\",\"created\":1749734933,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_07871e2ad8\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"How\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BhcH7mqKBkUy0ipIBGvLGvHomye32\",\"object\":\"chat.completion.chunk\",\"created\":1749734933,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_07871e2ad8\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\" are\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BhcH7mqKBkUy0ipIBGvLGvHomye32\",\"object\":\"chat.completion.chunk\",\"created\":1749734933,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_07871e2ad8\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\" you\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BhcH7mqKBkUy0ipIBGvLGvHomye32\",\"object\":\"chat.completion.chunk\",\"created\":1749734933,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_07871e2ad8\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\" doing\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BhcH7mqKBkUy0ipIBGvLGvHomye32\",\"object\":\"chat.completion.chunk\",\"created\":1749734933,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_07871e2ad8\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"?\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BhcH7mqKBkUy0ipIBGvLGvHomye32\",\"object\":\"chat.completion.chunk\",\"created\":1749734933,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_07871e2ad8\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\" <\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BhcH7mqKBkUy0ipIBGvLGvHomye32\",\"object\":\"chat.completion.chunk\",\"created\":1749734933,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_07871e2ad8\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"span\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BhcH7mqKBkUy0ipIBGvLGvHomye32\",\"object\":\"chat.completion.chunk\",\"created\":1749734933,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_07871e2ad8\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\" data\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BhcH7mqKBkUy0ipIBGvLGvHomye32\",\"object\":\"chat.completion.chunk\",\"created\":1749734933,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_07871e2ad8\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"-text\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BhcH7mqKBkUy0ipIBGvLGvHomye32\",\"object\":\"chat.completion.chunk\",\"created\":1749734933,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_07871e2ad8\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"-color\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BhcH7mqKBkUy0ipIBGvLGvHomye32\",\"object\":\"chat.completion.chunk\",\"created\":1749734933,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_07871e2ad8\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"=\\\\\\\"\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BhcH7mqKBkUy0ipIBGvLGvHomye32\",\"object\":\"chat.completion.chunk\",\"created\":1749734933,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_07871e2ad8\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"blue\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BhcH7mqKBkUy0ipIBGvLGvHomye32\",\"object\":\"chat.completion.chunk\",\"created\":1749734933,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_07871e2ad8\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"\\\\\\\">\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BhcH7mqKBkUy0ipIBGvLGvHomye32\",\"object\":\"chat.completion.chunk\",\"created\":1749734933,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_07871e2ad8\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"This\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BhcH7mqKBkUy0ipIBGvLGvHomye32\",\"object\":\"chat.completion.chunk\",\"created\":1749734933,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_07871e2ad8\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\" text\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BhcH7mqKBkUy0ipIBGvLGvHomye32\",\"object\":\"chat.completion.chunk\",\"created\":1749734933,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_07871e2ad8\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\" is\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BhcH7mqKBkUy0ipIBGvLGvHomye32\",\"object\":\"chat.completion.chunk\",\"created\":1749734933,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_07871e2ad8\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\" blue\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BhcH7mqKBkUy0ipIBGvLGvHomye32\",\"object\":\"chat.completion.chunk\",\"created\":1749734933,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_07871e2ad8\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"!\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BhcH7mqKBkUy0ipIBGvLGvHomye32\",\"object\":\"chat.completion.chunk\",\"created\":1749734933,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_07871e2ad8\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"\\\"}\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BhcH7mqKBkUy0ipIBGvLGvHomye32\",\"object\":\"chat.completion.chunk\",\"created\":1749734933,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_07871e2ad8\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"]}\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BhcH7mqKBkUy0ipIBGvLGvHomye32\",\"object\":\"chat.completion.chunk\",\"created\":1749734933,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_07871e2ad8\",\"choices\":[{\"index\":0,\"delta\":{},\"logprobs\":null,\"finish_reason\":\"stop\"}]}\n\ndata: [DONE]\n\n", "headers": [] } } \ No newline at end of file diff --git a/packages/xl-ai/src/api/formats/html-blocks/__snapshots__/htmlBlocks.test.ts/Update/__msw_snapshots__/openai.chat/gpt-4o-2024-08-06 (streaming)/styles + ic in source block, update text_1_72b362e3a2e48e9e1d5dad68fc3da63c.json b/packages/xl-ai/src/api/formats/html-blocks/__snapshots__/htmlBlocks.test.ts/Update/__msw_snapshots__/openai.chat/gpt-4o-2024-08-06 (streaming)/styles + ic in source block, update text_1_72b362e3a2e48e9e1d5dad68fc3da63c.json index 3254df1b70..484b1ed2f2 100644 --- a/packages/xl-ai/src/api/formats/html-blocks/__snapshots__/htmlBlocks.test.ts/Update/__msw_snapshots__/openai.chat/gpt-4o-2024-08-06 (streaming)/styles + ic in source block, update text_1_72b362e3a2e48e9e1d5dad68fc3da63c.json +++ b/packages/xl-ai/src/api/formats/html-blocks/__snapshots__/htmlBlocks.test.ts/Update/__msw_snapshots__/openai.chat/gpt-4o-2024-08-06 (streaming)/styles + ic in source block, update text_1_72b362e3a2e48e9e1d5dad68fc3da63c.json @@ -9,7 +9,7 @@ "response": { "status": 200, "statusText": "", - "body": "data: {\"id\":\"chatcmpl-Bgn5wqbmC5pSALmDf6I6tg9hqNecm\",\"object\":\"chat.completion.chunk\",\"created\":1749538196,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_07871e2ad8\",\"choices\":[{\"index\":0,\"delta\":{\"role\":\"assistant\",\"content\":null,\"tool_calls\":[{\"index\":0,\"id\":\"call_tYJFl8W7iYXz1Rlft0GQP29p\",\"type\":\"function\",\"function\":{\"name\":\"json\",\"arguments\":\"\"}}],\"refusal\":null},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-Bgn5wqbmC5pSALmDf6I6tg9hqNecm\",\"object\":\"chat.completion.chunk\",\"created\":1749538196,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_07871e2ad8\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"{\\\"\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-Bgn5wqbmC5pSALmDf6I6tg9hqNecm\",\"object\":\"chat.completion.chunk\",\"created\":1749538196,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_07871e2ad8\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"operations\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-Bgn5wqbmC5pSALmDf6I6tg9hqNecm\",\"object\":\"chat.completion.chunk\",\"created\":1749538196,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_07871e2ad8\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"\\\":[\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-Bgn5wqbmC5pSALmDf6I6tg9hqNecm\",\"object\":\"chat.completion.chunk\",\"created\":1749538196,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_07871e2ad8\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"{\\\"\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-Bgn5wqbmC5pSALmDf6I6tg9hqNecm\",\"object\":\"chat.completion.chunk\",\"created\":1749538196,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_07871e2ad8\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"type\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-Bgn5wqbmC5pSALmDf6I6tg9hqNecm\",\"object\":\"chat.completion.chunk\",\"created\":1749538196,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_07871e2ad8\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"\\\":\\\"\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-Bgn5wqbmC5pSALmDf6I6tg9hqNecm\",\"object\":\"chat.completion.chunk\",\"created\":1749538196,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_07871e2ad8\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"update\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-Bgn5wqbmC5pSALmDf6I6tg9hqNecm\",\"object\":\"chat.completion.chunk\",\"created\":1749538196,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_07871e2ad8\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"\\\",\\\"\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-Bgn5wqbmC5pSALmDf6I6tg9hqNecm\",\"object\":\"chat.completion.chunk\",\"created\":1749538196,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_07871e2ad8\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"id\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-Bgn5wqbmC5pSALmDf6I6tg9hqNecm\",\"object\":\"chat.completion.chunk\",\"created\":1749538196,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_07871e2ad8\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"\\\":\\\"\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-Bgn5wqbmC5pSALmDf6I6tg9hqNecm\",\"object\":\"chat.completion.chunk\",\"created\":1749538196,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_07871e2ad8\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"ref\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-Bgn5wqbmC5pSALmDf6I6tg9hqNecm\",\"object\":\"chat.completion.chunk\",\"created\":1749538196,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_07871e2ad8\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"2\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-Bgn5wqbmC5pSALmDf6I6tg9hqNecm\",\"object\":\"chat.completion.chunk\",\"created\":1749538196,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_07871e2ad8\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"$\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-Bgn5wqbmC5pSALmDf6I6tg9hqNecm\",\"object\":\"chat.completion.chunk\",\"created\":1749538196,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_07871e2ad8\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"\\\",\\\"\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-Bgn5wqbmC5pSALmDf6I6tg9hqNecm\",\"object\":\"chat.completion.chunk\",\"created\":1749538196,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_07871e2ad8\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"block\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-Bgn5wqbmC5pSALmDf6I6tg9hqNecm\",\"object\":\"chat.completion.chunk\",\"created\":1749538196,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_07871e2ad8\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"\\\":\\\"\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-Bgn5wqbmC5pSALmDf6I6tg9hqNecm\",\"object\":\"chat.completion.chunk\",\"created\":1749538196,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_07871e2ad8\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"<\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-Bgn5wqbmC5pSALmDf6I6tg9hqNecm\",\"object\":\"chat.completion.chunk\",\"created\":1749538196,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_07871e2ad8\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"p\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-Bgn5wqbmC5pSALmDf6I6tg9hqNecm\",\"object\":\"chat.completion.chunk\",\"created\":1749538196,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_07871e2ad8\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\">\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-Bgn5wqbmC5pSALmDf6I6tg9hqNecm\",\"object\":\"chat.completion.chunk\",\"created\":1749538196,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_07871e2ad8\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"Hallo\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-Bgn5wqbmC5pSALmDf6I6tg9hqNecm\",\"object\":\"chat.completion.chunk\",\"created\":1749538196,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_07871e2ad8\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\",\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-Bgn5wqbmC5pSALmDf6I6tg9hqNecm\",\"object\":\"chat.completion.chunk\",\"created\":1749538196,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_07871e2ad8\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\" <\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-Bgn5wqbmC5pSALmDf6I6tg9hqNecm\",\"object\":\"chat.completion.chunk\",\"created\":1749538196,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_07871e2ad8\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"span\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-Bgn5wqbmC5pSALmDf6I6tg9hqNecm\",\"object\":\"chat.completion.chunk\",\"created\":1749538196,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_07871e2ad8\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\" data\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-Bgn5wqbmC5pSALmDf6I6tg9hqNecm\",\"object\":\"chat.completion.chunk\",\"created\":1749538196,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_07871e2ad8\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"-inline\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-Bgn5wqbmC5pSALmDf6I6tg9hqNecm\",\"object\":\"chat.completion.chunk\",\"created\":1749538196,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_07871e2ad8\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"-content\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-Bgn5wqbmC5pSALmDf6I6tg9hqNecm\",\"object\":\"chat.completion.chunk\",\"created\":1749538196,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_07871e2ad8\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"-type\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-Bgn5wqbmC5pSALmDf6I6tg9hqNecm\",\"object\":\"chat.completion.chunk\",\"created\":1749538196,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_07871e2ad8\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"=\\\\\\\"\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-Bgn5wqbmC5pSALmDf6I6tg9hqNecm\",\"object\":\"chat.completion.chunk\",\"created\":1749538196,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_07871e2ad8\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"mention\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-Bgn5wqbmC5pSALmDf6I6tg9hqNecm\",\"object\":\"chat.completion.chunk\",\"created\":1749538196,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_07871e2ad8\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"\\\\\\\"\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-Bgn5wqbmC5pSALmDf6I6tg9hqNecm\",\"object\":\"chat.completion.chunk\",\"created\":1749538196,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_07871e2ad8\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\" data\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-Bgn5wqbmC5pSALmDf6I6tg9hqNecm\",\"object\":\"chat.completion.chunk\",\"created\":1749538196,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_07871e2ad8\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"-user\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-Bgn5wqbmC5pSALmDf6I6tg9hqNecm\",\"object\":\"chat.completion.chunk\",\"created\":1749538196,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_07871e2ad8\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"=\\\\\\\"\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-Bgn5wqbmC5pSALmDf6I6tg9hqNecm\",\"object\":\"chat.completion.chunk\",\"created\":1749538196,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_07871e2ad8\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"John\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-Bgn5wqbmC5pSALmDf6I6tg9hqNecm\",\"object\":\"chat.completion.chunk\",\"created\":1749538196,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_07871e2ad8\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\" Doe\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-Bgn5wqbmC5pSALmDf6I6tg9hqNecm\",\"object\":\"chat.completion.chunk\",\"created\":1749538196,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_07871e2ad8\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"\\\\\\\">\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-Bgn5wqbmC5pSALmDf6I6tg9hqNecm\",\"object\":\"chat.completion.chunk\",\"created\":1749538196,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_07871e2ad8\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"@\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-Bgn5wqbmC5pSALmDf6I6tg9hqNecm\",\"object\":\"chat.completion.chunk\",\"created\":1749538196,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_07871e2ad8\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"John\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-Bgn5wqbmC5pSALmDf6I6tg9hqNecm\",\"object\":\"chat.completion.chunk\",\"created\":1749538196,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_07871e2ad8\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\" Doe\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-Bgn5wqbmC5pSALmDf6I6tg9hqNecm\",\"object\":\"chat.completion.chunk\",\"created\":1749538196,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_07871e2ad8\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-Bgn5wqbmC5pSALmDf6I6tg9hqNecm\",\"object\":\"chat.completion.chunk\",\"created\":1749538196,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_07871e2ad8\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"!\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-Bgn5wqbmC5pSALmDf6I6tg9hqNecm\",\"object\":\"chat.completion.chunk\",\"created\":1749538196,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_07871e2ad8\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\" <\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-Bgn5wqbmC5pSALmDf6I6tg9hqNecm\",\"object\":\"chat.completion.chunk\",\"created\":1749538196,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_07871e2ad8\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"strong\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-Bgn5wqbmC5pSALmDf6I6tg9hqNecm\",\"object\":\"chat.completion.chunk\",\"created\":1749538196,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_07871e2ad8\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\">\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-Bgn5wqbmC5pSALmDf6I6tg9hqNecm\",\"object\":\"chat.completion.chunk\",\"created\":1749538196,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_07871e2ad8\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"Wie\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-Bgn5wqbmC5pSALmDf6I6tg9hqNecm\",\"object\":\"chat.completion.chunk\",\"created\":1749538196,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_07871e2ad8\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\" geht\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-Bgn5wqbmC5pSALmDf6I6tg9hqNecm\",\"object\":\"chat.completion.chunk\",\"created\":1749538196,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_07871e2ad8\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\" es\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-Bgn5wqbmC5pSALmDf6I6tg9hqNecm\",\"object\":\"chat.completion.chunk\",\"created\":1749538196,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_07871e2ad8\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\" dir\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-Bgn5wqbmC5pSALmDf6I6tg9hqNecm\",\"object\":\"chat.completion.chunk\",\"created\":1749538196,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_07871e2ad8\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"?\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-Bgn5wqbmC5pSALmDf6I6tg9hqNecm\",\"object\":\"chat.completion.chunk\",\"created\":1749538196,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_07871e2ad8\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\" <\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-Bgn5wqbmC5pSALmDf6I6tg9hqNecm\",\"object\":\"chat.completion.chunk\",\"created\":1749538196,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_07871e2ad8\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"span\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-Bgn5wqbmC5pSALmDf6I6tg9hqNecm\",\"object\":\"chat.completion.chunk\",\"created\":1749538196,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_07871e2ad8\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\" data\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-Bgn5wqbmC5pSALmDf6I6tg9hqNecm\",\"object\":\"chat.completion.chunk\",\"created\":1749538196,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_07871e2ad8\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"-text\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-Bgn5wqbmC5pSALmDf6I6tg9hqNecm\",\"object\":\"chat.completion.chunk\",\"created\":1749538196,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_07871e2ad8\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"-color\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-Bgn5wqbmC5pSALmDf6I6tg9hqNecm\",\"object\":\"chat.completion.chunk\",\"created\":1749538196,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_07871e2ad8\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"=\\\\\\\"\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-Bgn5wqbmC5pSALmDf6I6tg9hqNecm\",\"object\":\"chat.completion.chunk\",\"created\":1749538196,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_07871e2ad8\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"blue\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-Bgn5wqbmC5pSALmDf6I6tg9hqNecm\",\"object\":\"chat.completion.chunk\",\"created\":1749538196,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_07871e2ad8\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"\\\\\\\">\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-Bgn5wqbmC5pSALmDf6I6tg9hqNecm\",\"object\":\"chat.completion.chunk\",\"created\":1749538196,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_07871e2ad8\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"Dieser\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-Bgn5wqbmC5pSALmDf6I6tg9hqNecm\",\"object\":\"chat.completion.chunk\",\"created\":1749538196,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_07871e2ad8\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\" Text\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-Bgn5wqbmC5pSALmDf6I6tg9hqNecm\",\"object\":\"chat.completion.chunk\",\"created\":1749538196,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_07871e2ad8\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\" ist\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-Bgn5wqbmC5pSALmDf6I6tg9hqNecm\",\"object\":\"chat.completion.chunk\",\"created\":1749538196,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_07871e2ad8\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\" blau\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-Bgn5wqbmC5pSALmDf6I6tg9hqNecm\",\"object\":\"chat.completion.chunk\",\"created\":1749538196,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_07871e2ad8\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"!\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-Bgn5wqbmC5pSALmDf6I6tg9hqNecm\",\"object\":\"chat.completion.chunk\",\"created\":1749538196,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_07871e2ad8\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"\\\"}\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-Bgn5wqbmC5pSALmDf6I6tg9hqNecm\",\"object\":\"chat.completion.chunk\",\"created\":1749538196,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_07871e2ad8\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"]}\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-Bgn5wqbmC5pSALmDf6I6tg9hqNecm\",\"object\":\"chat.completion.chunk\",\"created\":1749538196,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_07871e2ad8\",\"choices\":[{\"index\":0,\"delta\":{},\"logprobs\":null,\"finish_reason\":\"stop\"}]}\n\ndata: [DONE]\n\n", + "body": "data: {\"id\":\"chatcmpl-BhcGwT6E3ojQpdgzyCJmVzqSnzNfY\",\"object\":\"chat.completion.chunk\",\"created\":1749734922,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_07871e2ad8\",\"choices\":[{\"index\":0,\"delta\":{\"role\":\"assistant\",\"content\":null,\"tool_calls\":[{\"index\":0,\"id\":\"call_IH4CpTADtxGlCEB7J2EVtm7E\",\"type\":\"function\",\"function\":{\"name\":\"json\",\"arguments\":\"\"}}],\"refusal\":null},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BhcGwT6E3ojQpdgzyCJmVzqSnzNfY\",\"object\":\"chat.completion.chunk\",\"created\":1749734922,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_07871e2ad8\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"{\\\"\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BhcGwT6E3ojQpdgzyCJmVzqSnzNfY\",\"object\":\"chat.completion.chunk\",\"created\":1749734922,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_07871e2ad8\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"operations\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BhcGwT6E3ojQpdgzyCJmVzqSnzNfY\",\"object\":\"chat.completion.chunk\",\"created\":1749734922,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_07871e2ad8\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"\\\":[\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BhcGwT6E3ojQpdgzyCJmVzqSnzNfY\",\"object\":\"chat.completion.chunk\",\"created\":1749734922,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_07871e2ad8\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"{\\\"\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BhcGwT6E3ojQpdgzyCJmVzqSnzNfY\",\"object\":\"chat.completion.chunk\",\"created\":1749734922,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_07871e2ad8\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"type\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BhcGwT6E3ojQpdgzyCJmVzqSnzNfY\",\"object\":\"chat.completion.chunk\",\"created\":1749734922,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_07871e2ad8\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"\\\":\\\"\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BhcGwT6E3ojQpdgzyCJmVzqSnzNfY\",\"object\":\"chat.completion.chunk\",\"created\":1749734922,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_07871e2ad8\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"update\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BhcGwT6E3ojQpdgzyCJmVzqSnzNfY\",\"object\":\"chat.completion.chunk\",\"created\":1749734922,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_07871e2ad8\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"\\\",\\\"\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BhcGwT6E3ojQpdgzyCJmVzqSnzNfY\",\"object\":\"chat.completion.chunk\",\"created\":1749734922,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_07871e2ad8\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"id\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BhcGwT6E3ojQpdgzyCJmVzqSnzNfY\",\"object\":\"chat.completion.chunk\",\"created\":1749734922,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_07871e2ad8\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"\\\":\\\"\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BhcGwT6E3ojQpdgzyCJmVzqSnzNfY\",\"object\":\"chat.completion.chunk\",\"created\":1749734922,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_07871e2ad8\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"ref\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BhcGwT6E3ojQpdgzyCJmVzqSnzNfY\",\"object\":\"chat.completion.chunk\",\"created\":1749734922,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_07871e2ad8\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"2\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BhcGwT6E3ojQpdgzyCJmVzqSnzNfY\",\"object\":\"chat.completion.chunk\",\"created\":1749734922,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_07871e2ad8\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"$\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BhcGwT6E3ojQpdgzyCJmVzqSnzNfY\",\"object\":\"chat.completion.chunk\",\"created\":1749734922,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_07871e2ad8\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"\\\",\\\"\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BhcGwT6E3ojQpdgzyCJmVzqSnzNfY\",\"object\":\"chat.completion.chunk\",\"created\":1749734922,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_07871e2ad8\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"block\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BhcGwT6E3ojQpdgzyCJmVzqSnzNfY\",\"object\":\"chat.completion.chunk\",\"created\":1749734922,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_07871e2ad8\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"\\\":\\\"\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BhcGwT6E3ojQpdgzyCJmVzqSnzNfY\",\"object\":\"chat.completion.chunk\",\"created\":1749734922,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_07871e2ad8\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"<\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BhcGwT6E3ojQpdgzyCJmVzqSnzNfY\",\"object\":\"chat.completion.chunk\",\"created\":1749734922,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_07871e2ad8\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"p\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BhcGwT6E3ojQpdgzyCJmVzqSnzNfY\",\"object\":\"chat.completion.chunk\",\"created\":1749734922,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_07871e2ad8\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\">\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BhcGwT6E3ojQpdgzyCJmVzqSnzNfY\",\"object\":\"chat.completion.chunk\",\"created\":1749734922,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_07871e2ad8\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"Hallo\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BhcGwT6E3ojQpdgzyCJmVzqSnzNfY\",\"object\":\"chat.completion.chunk\",\"created\":1749734922,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_07871e2ad8\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\",\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BhcGwT6E3ojQpdgzyCJmVzqSnzNfY\",\"object\":\"chat.completion.chunk\",\"created\":1749734922,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_07871e2ad8\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\" <\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BhcGwT6E3ojQpdgzyCJmVzqSnzNfY\",\"object\":\"chat.completion.chunk\",\"created\":1749734922,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_07871e2ad8\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"span\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BhcGwT6E3ojQpdgzyCJmVzqSnzNfY\",\"object\":\"chat.completion.chunk\",\"created\":1749734922,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_07871e2ad8\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\" data\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BhcGwT6E3ojQpdgzyCJmVzqSnzNfY\",\"object\":\"chat.completion.chunk\",\"created\":1749734922,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_07871e2ad8\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"-inline\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BhcGwT6E3ojQpdgzyCJmVzqSnzNfY\",\"object\":\"chat.completion.chunk\",\"created\":1749734922,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_07871e2ad8\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"-content\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BhcGwT6E3ojQpdgzyCJmVzqSnzNfY\",\"object\":\"chat.completion.chunk\",\"created\":1749734922,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_07871e2ad8\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"-type\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BhcGwT6E3ojQpdgzyCJmVzqSnzNfY\",\"object\":\"chat.completion.chunk\",\"created\":1749734922,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_07871e2ad8\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"=\\\\\\\"\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BhcGwT6E3ojQpdgzyCJmVzqSnzNfY\",\"object\":\"chat.completion.chunk\",\"created\":1749734922,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_07871e2ad8\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"mention\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BhcGwT6E3ojQpdgzyCJmVzqSnzNfY\",\"object\":\"chat.completion.chunk\",\"created\":1749734922,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_07871e2ad8\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"\\\\\\\"\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BhcGwT6E3ojQpdgzyCJmVzqSnzNfY\",\"object\":\"chat.completion.chunk\",\"created\":1749734922,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_07871e2ad8\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\" data\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BhcGwT6E3ojQpdgzyCJmVzqSnzNfY\",\"object\":\"chat.completion.chunk\",\"created\":1749734922,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_07871e2ad8\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"-user\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BhcGwT6E3ojQpdgzyCJmVzqSnzNfY\",\"object\":\"chat.completion.chunk\",\"created\":1749734922,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_07871e2ad8\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"=\\\\\\\"\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BhcGwT6E3ojQpdgzyCJmVzqSnzNfY\",\"object\":\"chat.completion.chunk\",\"created\":1749734922,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_07871e2ad8\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"John\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BhcGwT6E3ojQpdgzyCJmVzqSnzNfY\",\"object\":\"chat.completion.chunk\",\"created\":1749734922,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_07871e2ad8\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\" Doe\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BhcGwT6E3ojQpdgzyCJmVzqSnzNfY\",\"object\":\"chat.completion.chunk\",\"created\":1749734922,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_07871e2ad8\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"\\\\\\\">\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BhcGwT6E3ojQpdgzyCJmVzqSnzNfY\",\"object\":\"chat.completion.chunk\",\"created\":1749734922,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_07871e2ad8\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"@\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BhcGwT6E3ojQpdgzyCJmVzqSnzNfY\",\"object\":\"chat.completion.chunk\",\"created\":1749734922,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_07871e2ad8\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"John\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BhcGwT6E3ojQpdgzyCJmVzqSnzNfY\",\"object\":\"chat.completion.chunk\",\"created\":1749734922,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_07871e2ad8\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\" Doe\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BhcGwT6E3ojQpdgzyCJmVzqSnzNfY\",\"object\":\"chat.completion.chunk\",\"created\":1749734922,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_07871e2ad8\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BhcGwT6E3ojQpdgzyCJmVzqSnzNfY\",\"object\":\"chat.completion.chunk\",\"created\":1749734922,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_07871e2ad8\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"!\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BhcGwT6E3ojQpdgzyCJmVzqSnzNfY\",\"object\":\"chat.completion.chunk\",\"created\":1749734922,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_07871e2ad8\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\" <\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BhcGwT6E3ojQpdgzyCJmVzqSnzNfY\",\"object\":\"chat.completion.chunk\",\"created\":1749734922,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_07871e2ad8\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"strong\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BhcGwT6E3ojQpdgzyCJmVzqSnzNfY\",\"object\":\"chat.completion.chunk\",\"created\":1749734922,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_07871e2ad8\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\">\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BhcGwT6E3ojQpdgzyCJmVzqSnzNfY\",\"object\":\"chat.completion.chunk\",\"created\":1749734922,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_07871e2ad8\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"Wie\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BhcGwT6E3ojQpdgzyCJmVzqSnzNfY\",\"object\":\"chat.completion.chunk\",\"created\":1749734922,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_07871e2ad8\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\" geht\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BhcGwT6E3ojQpdgzyCJmVzqSnzNfY\",\"object\":\"chat.completion.chunk\",\"created\":1749734922,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_07871e2ad8\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\" es\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BhcGwT6E3ojQpdgzyCJmVzqSnzNfY\",\"object\":\"chat.completion.chunk\",\"created\":1749734922,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_07871e2ad8\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\" dir\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BhcGwT6E3ojQpdgzyCJmVzqSnzNfY\",\"object\":\"chat.completion.chunk\",\"created\":1749734922,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_07871e2ad8\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"?\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BhcGwT6E3ojQpdgzyCJmVzqSnzNfY\",\"object\":\"chat.completion.chunk\",\"created\":1749734922,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_07871e2ad8\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\" <\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BhcGwT6E3ojQpdgzyCJmVzqSnzNfY\",\"object\":\"chat.completion.chunk\",\"created\":1749734922,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_07871e2ad8\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"span\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BhcGwT6E3ojQpdgzyCJmVzqSnzNfY\",\"object\":\"chat.completion.chunk\",\"created\":1749734922,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_07871e2ad8\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\" data\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BhcGwT6E3ojQpdgzyCJmVzqSnzNfY\",\"object\":\"chat.completion.chunk\",\"created\":1749734922,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_07871e2ad8\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"-text\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BhcGwT6E3ojQpdgzyCJmVzqSnzNfY\",\"object\":\"chat.completion.chunk\",\"created\":1749734922,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_07871e2ad8\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"-color\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BhcGwT6E3ojQpdgzyCJmVzqSnzNfY\",\"object\":\"chat.completion.chunk\",\"created\":1749734922,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_07871e2ad8\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"=\\\\\\\"\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BhcGwT6E3ojQpdgzyCJmVzqSnzNfY\",\"object\":\"chat.completion.chunk\",\"created\":1749734922,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_07871e2ad8\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"blue\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BhcGwT6E3ojQpdgzyCJmVzqSnzNfY\",\"object\":\"chat.completion.chunk\",\"created\":1749734922,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_07871e2ad8\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"\\\\\\\">\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BhcGwT6E3ojQpdgzyCJmVzqSnzNfY\",\"object\":\"chat.completion.chunk\",\"created\":1749734922,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_07871e2ad8\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"Dieser\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BhcGwT6E3ojQpdgzyCJmVzqSnzNfY\",\"object\":\"chat.completion.chunk\",\"created\":1749734922,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_07871e2ad8\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\" Text\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BhcGwT6E3ojQpdgzyCJmVzqSnzNfY\",\"object\":\"chat.completion.chunk\",\"created\":1749734922,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_07871e2ad8\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\" ist\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BhcGwT6E3ojQpdgzyCJmVzqSnzNfY\",\"object\":\"chat.completion.chunk\",\"created\":1749734922,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_07871e2ad8\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\" blau\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BhcGwT6E3ojQpdgzyCJmVzqSnzNfY\",\"object\":\"chat.completion.chunk\",\"created\":1749734922,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_07871e2ad8\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"!\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BhcGwT6E3ojQpdgzyCJmVzqSnzNfY\",\"object\":\"chat.completion.chunk\",\"created\":1749734922,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_07871e2ad8\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"\\\"}\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BhcGwT6E3ojQpdgzyCJmVzqSnzNfY\",\"object\":\"chat.completion.chunk\",\"created\":1749734922,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_07871e2ad8\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"]}\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BhcGwT6E3ojQpdgzyCJmVzqSnzNfY\",\"object\":\"chat.completion.chunk\",\"created\":1749734922,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_07871e2ad8\",\"choices\":[{\"index\":0,\"delta\":{},\"logprobs\":null,\"finish_reason\":\"stop\"}]}\n\ndata: [DONE]\n\n", "headers": [] } } \ No newline at end of file diff --git a/packages/xl-ai/src/api/formats/html-blocks/__snapshots__/htmlBlocks.test.ts/Update/__msw_snapshots__/openai.chat/gpt-4o-2024-08-06 (streaming)/styles + ic in target block, add mark (paragraph)_1_968bf60fd7c9520b848955d47ea8a568.json b/packages/xl-ai/src/api/formats/html-blocks/__snapshots__/htmlBlocks.test.ts/Update/__msw_snapshots__/openai.chat/gpt-4o-2024-08-06 (streaming)/styles + ic in target block, add mark (paragraph)_1_968bf60fd7c9520b848955d47ea8a568.json index 2b8b46a870..fa3cb80b01 100644 --- a/packages/xl-ai/src/api/formats/html-blocks/__snapshots__/htmlBlocks.test.ts/Update/__msw_snapshots__/openai.chat/gpt-4o-2024-08-06 (streaming)/styles + ic in target block, add mark (paragraph)_1_968bf60fd7c9520b848955d47ea8a568.json +++ b/packages/xl-ai/src/api/formats/html-blocks/__snapshots__/htmlBlocks.test.ts/Update/__msw_snapshots__/openai.chat/gpt-4o-2024-08-06 (streaming)/styles + ic in target block, add mark (paragraph)_1_968bf60fd7c9520b848955d47ea8a568.json @@ -9,7 +9,7 @@ "response": { "status": 200, "statusText": "", - "body": "data: {\"id\":\"chatcmpl-Bgn63bdx4PDdibfVqWtUggC6BRxVl\",\"object\":\"chat.completion.chunk\",\"created\":1749538203,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_07871e2ad8\",\"choices\":[{\"index\":0,\"delta\":{\"role\":\"assistant\",\"content\":null,\"tool_calls\":[{\"index\":0,\"id\":\"call_Av2u00vWDweIT0OUmGwjGDCS\",\"type\":\"function\",\"function\":{\"name\":\"json\",\"arguments\":\"\"}}],\"refusal\":null},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-Bgn63bdx4PDdibfVqWtUggC6BRxVl\",\"object\":\"chat.completion.chunk\",\"created\":1749538203,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_07871e2ad8\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"{\\\"\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-Bgn63bdx4PDdibfVqWtUggC6BRxVl\",\"object\":\"chat.completion.chunk\",\"created\":1749538203,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_07871e2ad8\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"operations\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-Bgn63bdx4PDdibfVqWtUggC6BRxVl\",\"object\":\"chat.completion.chunk\",\"created\":1749538203,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_07871e2ad8\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"\\\":[\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-Bgn63bdx4PDdibfVqWtUggC6BRxVl\",\"object\":\"chat.completion.chunk\",\"created\":1749538203,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_07871e2ad8\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"{\\\"\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-Bgn63bdx4PDdibfVqWtUggC6BRxVl\",\"object\":\"chat.completion.chunk\",\"created\":1749538203,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_07871e2ad8\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"type\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-Bgn63bdx4PDdibfVqWtUggC6BRxVl\",\"object\":\"chat.completion.chunk\",\"created\":1749538203,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_07871e2ad8\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"\\\":\\\"\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-Bgn63bdx4PDdibfVqWtUggC6BRxVl\",\"object\":\"chat.completion.chunk\",\"created\":1749538203,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_07871e2ad8\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"update\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-Bgn63bdx4PDdibfVqWtUggC6BRxVl\",\"object\":\"chat.completion.chunk\",\"created\":1749538203,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_07871e2ad8\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"\\\",\\\"\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-Bgn63bdx4PDdibfVqWtUggC6BRxVl\",\"object\":\"chat.completion.chunk\",\"created\":1749538203,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_07871e2ad8\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"id\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-Bgn63bdx4PDdibfVqWtUggC6BRxVl\",\"object\":\"chat.completion.chunk\",\"created\":1749538203,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_07871e2ad8\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"\\\":\\\"\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-Bgn63bdx4PDdibfVqWtUggC6BRxVl\",\"object\":\"chat.completion.chunk\",\"created\":1749538203,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_07871e2ad8\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"ref\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-Bgn63bdx4PDdibfVqWtUggC6BRxVl\",\"object\":\"chat.completion.chunk\",\"created\":1749538203,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_07871e2ad8\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"1\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-Bgn63bdx4PDdibfVqWtUggC6BRxVl\",\"object\":\"chat.completion.chunk\",\"created\":1749538203,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_07871e2ad8\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"$\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-Bgn63bdx4PDdibfVqWtUggC6BRxVl\",\"object\":\"chat.completion.chunk\",\"created\":1749538203,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_07871e2ad8\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"\\\",\\\"\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-Bgn63bdx4PDdibfVqWtUggC6BRxVl\",\"object\":\"chat.completion.chunk\",\"created\":1749538203,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_07871e2ad8\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"block\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-Bgn63bdx4PDdibfVqWtUggC6BRxVl\",\"object\":\"chat.completion.chunk\",\"created\":1749538203,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_07871e2ad8\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"\\\":\\\"\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-Bgn63bdx4PDdibfVqWtUggC6BRxVl\",\"object\":\"chat.completion.chunk\",\"created\":1749538203,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_07871e2ad8\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"<\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-Bgn63bdx4PDdibfVqWtUggC6BRxVl\",\"object\":\"chat.completion.chunk\",\"created\":1749538203,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_07871e2ad8\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"p\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-Bgn63bdx4PDdibfVqWtUggC6BRxVl\",\"object\":\"chat.completion.chunk\",\"created\":1749538203,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_07871e2ad8\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"><\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-Bgn63bdx4PDdibfVqWtUggC6BRxVl\",\"object\":\"chat.completion.chunk\",\"created\":1749538203,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_07871e2ad8\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"strong\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-Bgn63bdx4PDdibfVqWtUggC6BRxVl\",\"object\":\"chat.completion.chunk\",\"created\":1749538203,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_07871e2ad8\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\">Hello\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-Bgn63bdx4PDdibfVqWtUggC6BRxVl\",\"object\":\"chat.completion.chunk\",\"created\":1749538203,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_07871e2ad8\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\",\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-Bgn63bdx4PDdibfVqWtUggC6BRxVl\",\"object\":\"chat.completion.chunk\",\"created\":1749538203,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_07871e2ad8\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\" world\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-Bgn63bdx4PDdibfVqWtUggC6BRxVl\",\"object\":\"chat.completion.chunk\",\"created\":1749538203,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_07871e2ad8\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"!\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-Bgn63bdx4PDdibfVqWtUggC6BRxVl\",\"object\":\"chat.completion.chunk\",\"created\":1749538203,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_07871e2ad8\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"\\\"}\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-Bgn63bdx4PDdibfVqWtUggC6BRxVl\",\"object\":\"chat.completion.chunk\",\"created\":1749538203,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_07871e2ad8\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"]}\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-Bgn63bdx4PDdibfVqWtUggC6BRxVl\",\"object\":\"chat.completion.chunk\",\"created\":1749538203,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_07871e2ad8\",\"choices\":[{\"index\":0,\"delta\":{},\"logprobs\":null,\"finish_reason\":\"stop\"}]}\n\ndata: [DONE]\n\n", + "body": "data: {\"id\":\"chatcmpl-BhcH3SEf51WH7kZxVqdj2daENt8dW\",\"object\":\"chat.completion.chunk\",\"created\":1749734929,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_07871e2ad8\",\"choices\":[{\"index\":0,\"delta\":{\"role\":\"assistant\",\"content\":null,\"tool_calls\":[{\"index\":0,\"id\":\"call_AC3IgyBnnR639x9H0IR6JbgD\",\"type\":\"function\",\"function\":{\"name\":\"json\",\"arguments\":\"\"}}],\"refusal\":null},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BhcH3SEf51WH7kZxVqdj2daENt8dW\",\"object\":\"chat.completion.chunk\",\"created\":1749734929,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_07871e2ad8\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"{\\\"\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BhcH3SEf51WH7kZxVqdj2daENt8dW\",\"object\":\"chat.completion.chunk\",\"created\":1749734929,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_07871e2ad8\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"operations\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BhcH3SEf51WH7kZxVqdj2daENt8dW\",\"object\":\"chat.completion.chunk\",\"created\":1749734929,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_07871e2ad8\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"\\\":[\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BhcH3SEf51WH7kZxVqdj2daENt8dW\",\"object\":\"chat.completion.chunk\",\"created\":1749734929,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_07871e2ad8\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"{\\\"\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BhcH3SEf51WH7kZxVqdj2daENt8dW\",\"object\":\"chat.completion.chunk\",\"created\":1749734929,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_07871e2ad8\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"type\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BhcH3SEf51WH7kZxVqdj2daENt8dW\",\"object\":\"chat.completion.chunk\",\"created\":1749734929,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_07871e2ad8\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"\\\":\\\"\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BhcH3SEf51WH7kZxVqdj2daENt8dW\",\"object\":\"chat.completion.chunk\",\"created\":1749734929,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_07871e2ad8\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"update\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BhcH3SEf51WH7kZxVqdj2daENt8dW\",\"object\":\"chat.completion.chunk\",\"created\":1749734929,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_07871e2ad8\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"\\\",\\\"\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BhcH3SEf51WH7kZxVqdj2daENt8dW\",\"object\":\"chat.completion.chunk\",\"created\":1749734929,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_07871e2ad8\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"id\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BhcH3SEf51WH7kZxVqdj2daENt8dW\",\"object\":\"chat.completion.chunk\",\"created\":1749734929,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_07871e2ad8\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"\\\":\\\"\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BhcH3SEf51WH7kZxVqdj2daENt8dW\",\"object\":\"chat.completion.chunk\",\"created\":1749734929,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_07871e2ad8\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"ref\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BhcH3SEf51WH7kZxVqdj2daENt8dW\",\"object\":\"chat.completion.chunk\",\"created\":1749734929,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_07871e2ad8\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"1\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BhcH3SEf51WH7kZxVqdj2daENt8dW\",\"object\":\"chat.completion.chunk\",\"created\":1749734929,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_07871e2ad8\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"$\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BhcH3SEf51WH7kZxVqdj2daENt8dW\",\"object\":\"chat.completion.chunk\",\"created\":1749734929,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_07871e2ad8\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"\\\",\\\"\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BhcH3SEf51WH7kZxVqdj2daENt8dW\",\"object\":\"chat.completion.chunk\",\"created\":1749734929,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_07871e2ad8\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"block\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BhcH3SEf51WH7kZxVqdj2daENt8dW\",\"object\":\"chat.completion.chunk\",\"created\":1749734929,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_07871e2ad8\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"\\\":\\\"\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BhcH3SEf51WH7kZxVqdj2daENt8dW\",\"object\":\"chat.completion.chunk\",\"created\":1749734929,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_07871e2ad8\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"<\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BhcH3SEf51WH7kZxVqdj2daENt8dW\",\"object\":\"chat.completion.chunk\",\"created\":1749734929,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_07871e2ad8\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"p\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BhcH3SEf51WH7kZxVqdj2daENt8dW\",\"object\":\"chat.completion.chunk\",\"created\":1749734929,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_07871e2ad8\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"><\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BhcH3SEf51WH7kZxVqdj2daENt8dW\",\"object\":\"chat.completion.chunk\",\"created\":1749734929,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_07871e2ad8\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"strong\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BhcH3SEf51WH7kZxVqdj2daENt8dW\",\"object\":\"chat.completion.chunk\",\"created\":1749734929,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_07871e2ad8\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\">Hello\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BhcH3SEf51WH7kZxVqdj2daENt8dW\",\"object\":\"chat.completion.chunk\",\"created\":1749734929,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_07871e2ad8\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\",\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BhcH3SEf51WH7kZxVqdj2daENt8dW\",\"object\":\"chat.completion.chunk\",\"created\":1749734929,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_07871e2ad8\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\" world\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BhcH3SEf51WH7kZxVqdj2daENt8dW\",\"object\":\"chat.completion.chunk\",\"created\":1749734929,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_07871e2ad8\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"!\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BhcH3SEf51WH7kZxVqdj2daENt8dW\",\"object\":\"chat.completion.chunk\",\"created\":1749734929,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_07871e2ad8\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"\\\"}\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BhcH3SEf51WH7kZxVqdj2daENt8dW\",\"object\":\"chat.completion.chunk\",\"created\":1749734929,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_07871e2ad8\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"]}\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BhcH3SEf51WH7kZxVqdj2daENt8dW\",\"object\":\"chat.completion.chunk\",\"created\":1749734929,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_07871e2ad8\",\"choices\":[{\"index\":0,\"delta\":{},\"logprobs\":null,\"finish_reason\":\"stop\"}]}\n\ndata: [DONE]\n\n", "headers": [] } } \ No newline at end of file diff --git a/packages/xl-ai/src/api/formats/html-blocks/__snapshots__/htmlBlocks.test.ts/Update/__msw_snapshots__/openai.chat/gpt-4o-2024-08-06 (streaming)/styles + ic in target block, add mark (word)_1_45c3fcc7757ac314a77786102326e125.json b/packages/xl-ai/src/api/formats/html-blocks/__snapshots__/htmlBlocks.test.ts/Update/__msw_snapshots__/openai.chat/gpt-4o-2024-08-06 (streaming)/styles + ic in target block, add mark (word)_1_45c3fcc7757ac314a77786102326e125.json index 85830f34e0..bc55f65984 100644 --- a/packages/xl-ai/src/api/formats/html-blocks/__snapshots__/htmlBlocks.test.ts/Update/__msw_snapshots__/openai.chat/gpt-4o-2024-08-06 (streaming)/styles + ic in target block, add mark (word)_1_45c3fcc7757ac314a77786102326e125.json +++ b/packages/xl-ai/src/api/formats/html-blocks/__snapshots__/htmlBlocks.test.ts/Update/__msw_snapshots__/openai.chat/gpt-4o-2024-08-06 (streaming)/styles + ic in target block, add mark (word)_1_45c3fcc7757ac314a77786102326e125.json @@ -9,7 +9,7 @@ "response": { "status": 200, "statusText": "", - "body": "data: {\"id\":\"chatcmpl-Bgn62Yx40OFS2Xb1dhgd1QIMsHzTE\",\"object\":\"chat.completion.chunk\",\"created\":1749538202,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_07871e2ad8\",\"choices\":[{\"index\":0,\"delta\":{\"role\":\"assistant\",\"content\":null,\"tool_calls\":[{\"index\":0,\"id\":\"call_s8ezlKTwPX6jKL8Ob9iXd9N6\",\"type\":\"function\",\"function\":{\"name\":\"json\",\"arguments\":\"\"}}],\"refusal\":null},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-Bgn62Yx40OFS2Xb1dhgd1QIMsHzTE\",\"object\":\"chat.completion.chunk\",\"created\":1749538202,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_07871e2ad8\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"{\\\"\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-Bgn62Yx40OFS2Xb1dhgd1QIMsHzTE\",\"object\":\"chat.completion.chunk\",\"created\":1749538202,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_07871e2ad8\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"operations\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-Bgn62Yx40OFS2Xb1dhgd1QIMsHzTE\",\"object\":\"chat.completion.chunk\",\"created\":1749538202,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_07871e2ad8\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"\\\":[\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-Bgn62Yx40OFS2Xb1dhgd1QIMsHzTE\",\"object\":\"chat.completion.chunk\",\"created\":1749538202,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_07871e2ad8\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"{\\\"\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-Bgn62Yx40OFS2Xb1dhgd1QIMsHzTE\",\"object\":\"chat.completion.chunk\",\"created\":1749538202,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_07871e2ad8\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"type\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-Bgn62Yx40OFS2Xb1dhgd1QIMsHzTE\",\"object\":\"chat.completion.chunk\",\"created\":1749538202,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_07871e2ad8\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"\\\":\\\"\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-Bgn62Yx40OFS2Xb1dhgd1QIMsHzTE\",\"object\":\"chat.completion.chunk\",\"created\":1749538202,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_07871e2ad8\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"update\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-Bgn62Yx40OFS2Xb1dhgd1QIMsHzTE\",\"object\":\"chat.completion.chunk\",\"created\":1749538202,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_07871e2ad8\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"\\\",\\\"\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-Bgn62Yx40OFS2Xb1dhgd1QIMsHzTE\",\"object\":\"chat.completion.chunk\",\"created\":1749538202,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_07871e2ad8\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"id\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-Bgn62Yx40OFS2Xb1dhgd1QIMsHzTE\",\"object\":\"chat.completion.chunk\",\"created\":1749538202,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_07871e2ad8\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"\\\":\\\"\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-Bgn62Yx40OFS2Xb1dhgd1QIMsHzTE\",\"object\":\"chat.completion.chunk\",\"created\":1749538202,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_07871e2ad8\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"ref\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-Bgn62Yx40OFS2Xb1dhgd1QIMsHzTE\",\"object\":\"chat.completion.chunk\",\"created\":1749538202,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_07871e2ad8\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"1\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-Bgn62Yx40OFS2Xb1dhgd1QIMsHzTE\",\"object\":\"chat.completion.chunk\",\"created\":1749538202,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_07871e2ad8\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"$\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-Bgn62Yx40OFS2Xb1dhgd1QIMsHzTE\",\"object\":\"chat.completion.chunk\",\"created\":1749538202,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_07871e2ad8\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"\\\",\\\"\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-Bgn62Yx40OFS2Xb1dhgd1QIMsHzTE\",\"object\":\"chat.completion.chunk\",\"created\":1749538202,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_07871e2ad8\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"block\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-Bgn62Yx40OFS2Xb1dhgd1QIMsHzTE\",\"object\":\"chat.completion.chunk\",\"created\":1749538202,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_07871e2ad8\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"\\\":\\\"\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-Bgn62Yx40OFS2Xb1dhgd1QIMsHzTE\",\"object\":\"chat.completion.chunk\",\"created\":1749538202,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_07871e2ad8\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"<\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-Bgn62Yx40OFS2Xb1dhgd1QIMsHzTE\",\"object\":\"chat.completion.chunk\",\"created\":1749538202,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_07871e2ad8\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"p\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-Bgn62Yx40OFS2Xb1dhgd1QIMsHzTE\",\"object\":\"chat.completion.chunk\",\"created\":1749538202,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_07871e2ad8\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\">Hello\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-Bgn62Yx40OFS2Xb1dhgd1QIMsHzTE\",\"object\":\"chat.completion.chunk\",\"created\":1749538202,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_07871e2ad8\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\",\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-Bgn62Yx40OFS2Xb1dhgd1QIMsHzTE\",\"object\":\"chat.completion.chunk\",\"created\":1749538202,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_07871e2ad8\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\" <\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-Bgn62Yx40OFS2Xb1dhgd1QIMsHzTE\",\"object\":\"chat.completion.chunk\",\"created\":1749538202,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_07871e2ad8\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"strong\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-Bgn62Yx40OFS2Xb1dhgd1QIMsHzTE\",\"object\":\"chat.completion.chunk\",\"created\":1749538202,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_07871e2ad8\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\">\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-Bgn62Yx40OFS2Xb1dhgd1QIMsHzTE\",\"object\":\"chat.completion.chunk\",\"created\":1749538202,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_07871e2ad8\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"world\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-Bgn62Yx40OFS2Xb1dhgd1QIMsHzTE\",\"object\":\"chat.completion.chunk\",\"created\":1749538202,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_07871e2ad8\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"!\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-Bgn62Yx40OFS2Xb1dhgd1QIMsHzTE\",\"object\":\"chat.completion.chunk\",\"created\":1749538202,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_07871e2ad8\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"\\\"}\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-Bgn62Yx40OFS2Xb1dhgd1QIMsHzTE\",\"object\":\"chat.completion.chunk\",\"created\":1749538202,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_07871e2ad8\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"]}\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-Bgn62Yx40OFS2Xb1dhgd1QIMsHzTE\",\"object\":\"chat.completion.chunk\",\"created\":1749538202,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_07871e2ad8\",\"choices\":[{\"index\":0,\"delta\":{},\"logprobs\":null,\"finish_reason\":\"stop\"}]}\n\ndata: [DONE]\n\n", + "body": "data: {\"id\":\"chatcmpl-BhcH13MHy5TLwV8HlxlXkpKbEo3hA\",\"object\":\"chat.completion.chunk\",\"created\":1749734927,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_07871e2ad8\",\"choices\":[{\"index\":0,\"delta\":{\"role\":\"assistant\",\"content\":null,\"tool_calls\":[{\"index\":0,\"id\":\"call_f2wg7Oi4bEBZiFJq87D3pwwU\",\"type\":\"function\",\"function\":{\"name\":\"json\",\"arguments\":\"\"}}],\"refusal\":null},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BhcH13MHy5TLwV8HlxlXkpKbEo3hA\",\"object\":\"chat.completion.chunk\",\"created\":1749734927,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_07871e2ad8\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"{\\\"\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BhcH13MHy5TLwV8HlxlXkpKbEo3hA\",\"object\":\"chat.completion.chunk\",\"created\":1749734927,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_07871e2ad8\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"operations\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BhcH13MHy5TLwV8HlxlXkpKbEo3hA\",\"object\":\"chat.completion.chunk\",\"created\":1749734927,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_07871e2ad8\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"\\\":[\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BhcH13MHy5TLwV8HlxlXkpKbEo3hA\",\"object\":\"chat.completion.chunk\",\"created\":1749734927,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_07871e2ad8\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"{\\\"\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BhcH13MHy5TLwV8HlxlXkpKbEo3hA\",\"object\":\"chat.completion.chunk\",\"created\":1749734927,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_07871e2ad8\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"type\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BhcH13MHy5TLwV8HlxlXkpKbEo3hA\",\"object\":\"chat.completion.chunk\",\"created\":1749734927,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_07871e2ad8\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"\\\":\\\"\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BhcH13MHy5TLwV8HlxlXkpKbEo3hA\",\"object\":\"chat.completion.chunk\",\"created\":1749734927,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_07871e2ad8\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"update\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BhcH13MHy5TLwV8HlxlXkpKbEo3hA\",\"object\":\"chat.completion.chunk\",\"created\":1749734927,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_07871e2ad8\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"\\\",\\\"\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BhcH13MHy5TLwV8HlxlXkpKbEo3hA\",\"object\":\"chat.completion.chunk\",\"created\":1749734927,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_07871e2ad8\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"id\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BhcH13MHy5TLwV8HlxlXkpKbEo3hA\",\"object\":\"chat.completion.chunk\",\"created\":1749734927,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_07871e2ad8\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"\\\":\\\"\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BhcH13MHy5TLwV8HlxlXkpKbEo3hA\",\"object\":\"chat.completion.chunk\",\"created\":1749734927,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_07871e2ad8\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"ref\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BhcH13MHy5TLwV8HlxlXkpKbEo3hA\",\"object\":\"chat.completion.chunk\",\"created\":1749734927,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_07871e2ad8\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"1\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BhcH13MHy5TLwV8HlxlXkpKbEo3hA\",\"object\":\"chat.completion.chunk\",\"created\":1749734927,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_07871e2ad8\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"$\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BhcH13MHy5TLwV8HlxlXkpKbEo3hA\",\"object\":\"chat.completion.chunk\",\"created\":1749734927,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_07871e2ad8\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"\\\",\\\"\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BhcH13MHy5TLwV8HlxlXkpKbEo3hA\",\"object\":\"chat.completion.chunk\",\"created\":1749734927,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_07871e2ad8\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"block\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BhcH13MHy5TLwV8HlxlXkpKbEo3hA\",\"object\":\"chat.completion.chunk\",\"created\":1749734927,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_07871e2ad8\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"\\\":\\\"\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BhcH13MHy5TLwV8HlxlXkpKbEo3hA\",\"object\":\"chat.completion.chunk\",\"created\":1749734927,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_07871e2ad8\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"<\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BhcH13MHy5TLwV8HlxlXkpKbEo3hA\",\"object\":\"chat.completion.chunk\",\"created\":1749734927,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_07871e2ad8\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"p\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BhcH13MHy5TLwV8HlxlXkpKbEo3hA\",\"object\":\"chat.completion.chunk\",\"created\":1749734927,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_07871e2ad8\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\">Hello\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BhcH13MHy5TLwV8HlxlXkpKbEo3hA\",\"object\":\"chat.completion.chunk\",\"created\":1749734927,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_07871e2ad8\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\",\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BhcH13MHy5TLwV8HlxlXkpKbEo3hA\",\"object\":\"chat.completion.chunk\",\"created\":1749734927,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_07871e2ad8\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\" <\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BhcH13MHy5TLwV8HlxlXkpKbEo3hA\",\"object\":\"chat.completion.chunk\",\"created\":1749734927,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_07871e2ad8\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"strong\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BhcH13MHy5TLwV8HlxlXkpKbEo3hA\",\"object\":\"chat.completion.chunk\",\"created\":1749734927,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_07871e2ad8\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\">\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BhcH13MHy5TLwV8HlxlXkpKbEo3hA\",\"object\":\"chat.completion.chunk\",\"created\":1749734927,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_07871e2ad8\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"world\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BhcH13MHy5TLwV8HlxlXkpKbEo3hA\",\"object\":\"chat.completion.chunk\",\"created\":1749734927,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_07871e2ad8\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"!\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BhcH13MHy5TLwV8HlxlXkpKbEo3hA\",\"object\":\"chat.completion.chunk\",\"created\":1749734927,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_07871e2ad8\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"\\\"}\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BhcH13MHy5TLwV8HlxlXkpKbEo3hA\",\"object\":\"chat.completion.chunk\",\"created\":1749734927,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_07871e2ad8\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"]}\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BhcH13MHy5TLwV8HlxlXkpKbEo3hA\",\"object\":\"chat.completion.chunk\",\"created\":1749734927,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_07871e2ad8\",\"choices\":[{\"index\":0,\"delta\":{},\"logprobs\":null,\"finish_reason\":\"stop\"}]}\n\ndata: [DONE]\n\n", "headers": [] } } \ No newline at end of file diff --git a/packages/xl-ai/src/api/formats/html-blocks/__snapshots__/htmlBlocks.test.ts/Update/__msw_snapshots__/openai.chat/gpt-4o-2024-08-06 (streaming)/translate selection_1_8cfca4c1847085a8a31be1818346738e.json b/packages/xl-ai/src/api/formats/html-blocks/__snapshots__/htmlBlocks.test.ts/Update/__msw_snapshots__/openai.chat/gpt-4o-2024-08-06 (streaming)/translate selection_1_8cfca4c1847085a8a31be1818346738e.json index 0a8f21eb8c..7c7ceb2650 100644 --- a/packages/xl-ai/src/api/formats/html-blocks/__snapshots__/htmlBlocks.test.ts/Update/__msw_snapshots__/openai.chat/gpt-4o-2024-08-06 (streaming)/translate selection_1_8cfca4c1847085a8a31be1818346738e.json +++ b/packages/xl-ai/src/api/formats/html-blocks/__snapshots__/htmlBlocks.test.ts/Update/__msw_snapshots__/openai.chat/gpt-4o-2024-08-06 (streaming)/translate selection_1_8cfca4c1847085a8a31be1818346738e.json @@ -9,7 +9,7 @@ "response": { "status": 200, "statusText": "", - "body": "data: {\"id\":\"chatcmpl-Bgn5r280SAS3IoP8NxFc897DzSxgH\",\"object\":\"chat.completion.chunk\",\"created\":1749538191,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_a288987b44\",\"choices\":[{\"index\":0,\"delta\":{\"role\":\"assistant\",\"content\":null,\"tool_calls\":[{\"index\":0,\"id\":\"call_vaovqzgmDrDBxoTjCnglONtb\",\"type\":\"function\",\"function\":{\"name\":\"json\",\"arguments\":\"\"}}],\"refusal\":null},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-Bgn5r280SAS3IoP8NxFc897DzSxgH\",\"object\":\"chat.completion.chunk\",\"created\":1749538191,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_a288987b44\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"{\\\"\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-Bgn5r280SAS3IoP8NxFc897DzSxgH\",\"object\":\"chat.completion.chunk\",\"created\":1749538191,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_a288987b44\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"operations\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-Bgn5r280SAS3IoP8NxFc897DzSxgH\",\"object\":\"chat.completion.chunk\",\"created\":1749538191,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_a288987b44\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"\\\":[\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-Bgn5r280SAS3IoP8NxFc897DzSxgH\",\"object\":\"chat.completion.chunk\",\"created\":1749538191,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_a288987b44\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"{\\\"\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-Bgn5r280SAS3IoP8NxFc897DzSxgH\",\"object\":\"chat.completion.chunk\",\"created\":1749538191,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_a288987b44\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"type\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-Bgn5r280SAS3IoP8NxFc897DzSxgH\",\"object\":\"chat.completion.chunk\",\"created\":1749538191,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_a288987b44\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"\\\":\\\"\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-Bgn5r280SAS3IoP8NxFc897DzSxgH\",\"object\":\"chat.completion.chunk\",\"created\":1749538191,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_a288987b44\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"update\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-Bgn5r280SAS3IoP8NxFc897DzSxgH\",\"object\":\"chat.completion.chunk\",\"created\":1749538191,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_a288987b44\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"\\\",\\\"\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-Bgn5r280SAS3IoP8NxFc897DzSxgH\",\"object\":\"chat.completion.chunk\",\"created\":1749538191,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_a288987b44\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"id\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-Bgn5r280SAS3IoP8NxFc897DzSxgH\",\"object\":\"chat.completion.chunk\",\"created\":1749538191,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_a288987b44\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"\\\":\\\"\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-Bgn5r280SAS3IoP8NxFc897DzSxgH\",\"object\":\"chat.completion.chunk\",\"created\":1749538191,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_a288987b44\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"ref\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-Bgn5r280SAS3IoP8NxFc897DzSxgH\",\"object\":\"chat.completion.chunk\",\"created\":1749538191,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_a288987b44\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"2\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-Bgn5r280SAS3IoP8NxFc897DzSxgH\",\"object\":\"chat.completion.chunk\",\"created\":1749538191,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_a288987b44\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"$\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-Bgn5r280SAS3IoP8NxFc897DzSxgH\",\"object\":\"chat.completion.chunk\",\"created\":1749538191,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_a288987b44\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"\\\",\\\"\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-Bgn5r280SAS3IoP8NxFc897DzSxgH\",\"object\":\"chat.completion.chunk\",\"created\":1749538191,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_a288987b44\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"block\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-Bgn5r280SAS3IoP8NxFc897DzSxgH\",\"object\":\"chat.completion.chunk\",\"created\":1749538191,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_a288987b44\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"\\\":\\\"\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-Bgn5r280SAS3IoP8NxFc897DzSxgH\",\"object\":\"chat.completion.chunk\",\"created\":1749538191,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_a288987b44\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"<\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-Bgn5r280SAS3IoP8NxFc897DzSxgH\",\"object\":\"chat.completion.chunk\",\"created\":1749538191,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_a288987b44\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"p\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-Bgn5r280SAS3IoP8NxFc897DzSxgH\",\"object\":\"chat.completion.chunk\",\"created\":1749538191,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_a288987b44\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\">\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-Bgn5r280SAS3IoP8NxFc897DzSxgH\",\"object\":\"chat.completion.chunk\",\"created\":1749538191,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_a288987b44\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"Hallo\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-Bgn5r280SAS3IoP8NxFc897DzSxgH\",\"object\":\"chat.completion.chunk\",\"created\":1749538191,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_a288987b44\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-Bgn5r280SAS3IoP8NxFc897DzSxgH\",\"object\":\"chat.completion.chunk\",\"created\":1749538191,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_a288987b44\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"\\\"}\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-Bgn5r280SAS3IoP8NxFc897DzSxgH\",\"object\":\"chat.completion.chunk\",\"created\":1749538191,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_a288987b44\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"]}\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-Bgn5r280SAS3IoP8NxFc897DzSxgH\",\"object\":\"chat.completion.chunk\",\"created\":1749538191,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_a288987b44\",\"choices\":[{\"index\":0,\"delta\":{},\"logprobs\":null,\"finish_reason\":\"stop\"}]}\n\ndata: [DONE]\n\n", + "body": "data: {\"id\":\"chatcmpl-BhcGoMKyPqaZH2YcspAsS5U4bBQnn\",\"object\":\"chat.completion.chunk\",\"created\":1749734914,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_a288987b44\",\"choices\":[{\"index\":0,\"delta\":{\"role\":\"assistant\",\"content\":null,\"tool_calls\":[{\"index\":0,\"id\":\"call_f9QmgxwjWFS0vF41FJxMSZwG\",\"type\":\"function\",\"function\":{\"name\":\"json\",\"arguments\":\"\"}}],\"refusal\":null},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BhcGoMKyPqaZH2YcspAsS5U4bBQnn\",\"object\":\"chat.completion.chunk\",\"created\":1749734914,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_a288987b44\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"{\\\"\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BhcGoMKyPqaZH2YcspAsS5U4bBQnn\",\"object\":\"chat.completion.chunk\",\"created\":1749734914,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_a288987b44\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"operations\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BhcGoMKyPqaZH2YcspAsS5U4bBQnn\",\"object\":\"chat.completion.chunk\",\"created\":1749734914,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_a288987b44\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"\\\":[\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BhcGoMKyPqaZH2YcspAsS5U4bBQnn\",\"object\":\"chat.completion.chunk\",\"created\":1749734914,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_a288987b44\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"{\\\"\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BhcGoMKyPqaZH2YcspAsS5U4bBQnn\",\"object\":\"chat.completion.chunk\",\"created\":1749734914,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_a288987b44\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"type\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BhcGoMKyPqaZH2YcspAsS5U4bBQnn\",\"object\":\"chat.completion.chunk\",\"created\":1749734914,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_a288987b44\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"\\\":\\\"\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BhcGoMKyPqaZH2YcspAsS5U4bBQnn\",\"object\":\"chat.completion.chunk\",\"created\":1749734914,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_a288987b44\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"update\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BhcGoMKyPqaZH2YcspAsS5U4bBQnn\",\"object\":\"chat.completion.chunk\",\"created\":1749734914,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_a288987b44\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"\\\",\\\"\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BhcGoMKyPqaZH2YcspAsS5U4bBQnn\",\"object\":\"chat.completion.chunk\",\"created\":1749734914,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_a288987b44\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"id\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BhcGoMKyPqaZH2YcspAsS5U4bBQnn\",\"object\":\"chat.completion.chunk\",\"created\":1749734914,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_a288987b44\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"\\\":\\\"\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BhcGoMKyPqaZH2YcspAsS5U4bBQnn\",\"object\":\"chat.completion.chunk\",\"created\":1749734914,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_a288987b44\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"ref\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BhcGoMKyPqaZH2YcspAsS5U4bBQnn\",\"object\":\"chat.completion.chunk\",\"created\":1749734914,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_a288987b44\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"2\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BhcGoMKyPqaZH2YcspAsS5U4bBQnn\",\"object\":\"chat.completion.chunk\",\"created\":1749734914,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_a288987b44\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"$\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BhcGoMKyPqaZH2YcspAsS5U4bBQnn\",\"object\":\"chat.completion.chunk\",\"created\":1749734914,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_a288987b44\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"\\\",\\\"\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BhcGoMKyPqaZH2YcspAsS5U4bBQnn\",\"object\":\"chat.completion.chunk\",\"created\":1749734914,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_a288987b44\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"block\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BhcGoMKyPqaZH2YcspAsS5U4bBQnn\",\"object\":\"chat.completion.chunk\",\"created\":1749734914,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_a288987b44\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"\\\":\\\"\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BhcGoMKyPqaZH2YcspAsS5U4bBQnn\",\"object\":\"chat.completion.chunk\",\"created\":1749734914,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_a288987b44\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"<\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BhcGoMKyPqaZH2YcspAsS5U4bBQnn\",\"object\":\"chat.completion.chunk\",\"created\":1749734914,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_a288987b44\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"p\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BhcGoMKyPqaZH2YcspAsS5U4bBQnn\",\"object\":\"chat.completion.chunk\",\"created\":1749734914,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_a288987b44\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\">\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BhcGoMKyPqaZH2YcspAsS5U4bBQnn\",\"object\":\"chat.completion.chunk\",\"created\":1749734914,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_a288987b44\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"Hallo\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BhcGoMKyPqaZH2YcspAsS5U4bBQnn\",\"object\":\"chat.completion.chunk\",\"created\":1749734914,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_a288987b44\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BhcGoMKyPqaZH2YcspAsS5U4bBQnn\",\"object\":\"chat.completion.chunk\",\"created\":1749734914,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_a288987b44\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"\\\"}\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BhcGoMKyPqaZH2YcspAsS5U4bBQnn\",\"object\":\"chat.completion.chunk\",\"created\":1749734914,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_a288987b44\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"]}\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BhcGoMKyPqaZH2YcspAsS5U4bBQnn\",\"object\":\"chat.completion.chunk\",\"created\":1749734914,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_a288987b44\",\"choices\":[{\"index\":0,\"delta\":{},\"logprobs\":null,\"finish_reason\":\"stop\"}]}\n\ndata: [DONE]\n\n", "headers": [] } } \ No newline at end of file diff --git a/packages/xl-ai/src/api/formats/html-blocks/__snapshots__/htmlBlocks.test.ts/Update/__msw_snapshots__/openai.chat/gpt-4o-2024-08-06 (streaming)/turn paragraphs into list_1_2f31610c836b996af773c3856634d5c3.json b/packages/xl-ai/src/api/formats/html-blocks/__snapshots__/htmlBlocks.test.ts/Update/__msw_snapshots__/openai.chat/gpt-4o-2024-08-06 (streaming)/turn paragraphs into list_1_2f31610c836b996af773c3856634d5c3.json index 1315cecb23..10b1bf99aa 100644 --- a/packages/xl-ai/src/api/formats/html-blocks/__snapshots__/htmlBlocks.test.ts/Update/__msw_snapshots__/openai.chat/gpt-4o-2024-08-06 (streaming)/turn paragraphs into list_1_2f31610c836b996af773c3856634d5c3.json +++ b/packages/xl-ai/src/api/formats/html-blocks/__snapshots__/htmlBlocks.test.ts/Update/__msw_snapshots__/openai.chat/gpt-4o-2024-08-06 (streaming)/turn paragraphs into list_1_2f31610c836b996af773c3856634d5c3.json @@ -9,7 +9,7 @@ "response": { "status": 200, "statusText": "", - "body": "data: {\"id\":\"chatcmpl-Bgn69BmFeWWhz1q3U7e2A5xrVcPe9\",\"object\":\"chat.completion.chunk\",\"created\":1749538209,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_a288987b44\",\"choices\":[{\"index\":0,\"delta\":{\"role\":\"assistant\",\"content\":null,\"tool_calls\":[{\"index\":0,\"id\":\"call_yWSN18ZhkjrcoKpubamqPfl2\",\"type\":\"function\",\"function\":{\"name\":\"json\",\"arguments\":\"\"}}],\"refusal\":null},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-Bgn69BmFeWWhz1q3U7e2A5xrVcPe9\",\"object\":\"chat.completion.chunk\",\"created\":1749538209,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_a288987b44\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"{\\\"\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-Bgn69BmFeWWhz1q3U7e2A5xrVcPe9\",\"object\":\"chat.completion.chunk\",\"created\":1749538209,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_a288987b44\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"operations\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-Bgn69BmFeWWhz1q3U7e2A5xrVcPe9\",\"object\":\"chat.completion.chunk\",\"created\":1749538209,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_a288987b44\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"\\\":[\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-Bgn69BmFeWWhz1q3U7e2A5xrVcPe9\",\"object\":\"chat.completion.chunk\",\"created\":1749538209,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_a288987b44\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"{\\\"\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-Bgn69BmFeWWhz1q3U7e2A5xrVcPe9\",\"object\":\"chat.completion.chunk\",\"created\":1749538209,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_a288987b44\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"type\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-Bgn69BmFeWWhz1q3U7e2A5xrVcPe9\",\"object\":\"chat.completion.chunk\",\"created\":1749538209,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_a288987b44\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"\\\":\\\"\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-Bgn69BmFeWWhz1q3U7e2A5xrVcPe9\",\"object\":\"chat.completion.chunk\",\"created\":1749538209,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_a288987b44\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"update\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-Bgn69BmFeWWhz1q3U7e2A5xrVcPe9\",\"object\":\"chat.completion.chunk\",\"created\":1749538209,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_a288987b44\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"\\\",\\\"\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-Bgn69BmFeWWhz1q3U7e2A5xrVcPe9\",\"object\":\"chat.completion.chunk\",\"created\":1749538209,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_a288987b44\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"id\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-Bgn69BmFeWWhz1q3U7e2A5xrVcPe9\",\"object\":\"chat.completion.chunk\",\"created\":1749538209,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_a288987b44\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"\\\":\\\"\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-Bgn69BmFeWWhz1q3U7e2A5xrVcPe9\",\"object\":\"chat.completion.chunk\",\"created\":1749538209,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_a288987b44\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"ref\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-Bgn69BmFeWWhz1q3U7e2A5xrVcPe9\",\"object\":\"chat.completion.chunk\",\"created\":1749538209,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_a288987b44\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"2\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-Bgn69BmFeWWhz1q3U7e2A5xrVcPe9\",\"object\":\"chat.completion.chunk\",\"created\":1749538209,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_a288987b44\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"$\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-Bgn69BmFeWWhz1q3U7e2A5xrVcPe9\",\"object\":\"chat.completion.chunk\",\"created\":1749538209,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_a288987b44\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"\\\",\\\"\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-Bgn69BmFeWWhz1q3U7e2A5xrVcPe9\",\"object\":\"chat.completion.chunk\",\"created\":1749538209,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_a288987b44\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"block\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-Bgn69BmFeWWhz1q3U7e2A5xrVcPe9\",\"object\":\"chat.completion.chunk\",\"created\":1749538209,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_a288987b44\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"\\\":\\\"\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-Bgn69BmFeWWhz1q3U7e2A5xrVcPe9\",\"object\":\"chat.completion.chunk\",\"created\":1749538209,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_a288987b44\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"<\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-Bgn69BmFeWWhz1q3U7e2A5xrVcPe9\",\"object\":\"chat.completion.chunk\",\"created\":1749538209,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_a288987b44\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"ul\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-Bgn69BmFeWWhz1q3U7e2A5xrVcPe9\",\"object\":\"chat.completion.chunk\",\"created\":1749538209,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_a288987b44\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"><\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-Bgn69BmFeWWhz1q3U7e2A5xrVcPe9\",\"object\":\"chat.completion.chunk\",\"created\":1749538209,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_a288987b44\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"li\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-Bgn69BmFeWWhz1q3U7e2A5xrVcPe9\",\"object\":\"chat.completion.chunk\",\"created\":1749538209,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_a288987b44\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\">\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-Bgn69BmFeWWhz1q3U7e2A5xrVcPe9\",\"object\":\"chat.completion.chunk\",\"created\":1749538209,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_a288987b44\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"Ap\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-Bgn69BmFeWWhz1q3U7e2A5xrVcPe9\",\"object\":\"chat.completion.chunk\",\"created\":1749538209,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_a288987b44\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"ples\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-Bgn69BmFeWWhz1q3U7e2A5xrVcPe9\",\"object\":\"chat.completion.chunk\",\"created\":1749538209,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_a288987b44\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"\\\"\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-Bgn69BmFeWWhz1q3U7e2A5xrVcPe9\",\"object\":\"chat.completion.chunk\",\"created\":1749538209,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_a288987b44\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"},{\\\"\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-Bgn69BmFeWWhz1q3U7e2A5xrVcPe9\",\"object\":\"chat.completion.chunk\",\"created\":1749538209,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_a288987b44\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"type\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-Bgn69BmFeWWhz1q3U7e2A5xrVcPe9\",\"object\":\"chat.completion.chunk\",\"created\":1749538209,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_a288987b44\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"\\\":\\\"\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-Bgn69BmFeWWhz1q3U7e2A5xrVcPe9\",\"object\":\"chat.completion.chunk\",\"created\":1749538209,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_a288987b44\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"update\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-Bgn69BmFeWWhz1q3U7e2A5xrVcPe9\",\"object\":\"chat.completion.chunk\",\"created\":1749538209,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_a288987b44\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"\\\",\\\"\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-Bgn69BmFeWWhz1q3U7e2A5xrVcPe9\",\"object\":\"chat.completion.chunk\",\"created\":1749538209,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_a288987b44\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"id\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-Bgn69BmFeWWhz1q3U7e2A5xrVcPe9\",\"object\":\"chat.completion.chunk\",\"created\":1749538209,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_a288987b44\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"\\\":\\\"\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-Bgn69BmFeWWhz1q3U7e2A5xrVcPe9\",\"object\":\"chat.completion.chunk\",\"created\":1749538209,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_a288987b44\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"ref\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-Bgn69BmFeWWhz1q3U7e2A5xrVcPe9\",\"object\":\"chat.completion.chunk\",\"created\":1749538209,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_a288987b44\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"3\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-Bgn69BmFeWWhz1q3U7e2A5xrVcPe9\",\"object\":\"chat.completion.chunk\",\"created\":1749538209,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_a288987b44\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"$\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-Bgn69BmFeWWhz1q3U7e2A5xrVcPe9\",\"object\":\"chat.completion.chunk\",\"created\":1749538209,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_a288987b44\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"\\\",\\\"\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-Bgn69BmFeWWhz1q3U7e2A5xrVcPe9\",\"object\":\"chat.completion.chunk\",\"created\":1749538209,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_a288987b44\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"block\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-Bgn69BmFeWWhz1q3U7e2A5xrVcPe9\",\"object\":\"chat.completion.chunk\",\"created\":1749538209,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_a288987b44\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"\\\":\\\"\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-Bgn69BmFeWWhz1q3U7e2A5xrVcPe9\",\"object\":\"chat.completion.chunk\",\"created\":1749538209,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_a288987b44\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"<\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-Bgn69BmFeWWhz1q3U7e2A5xrVcPe9\",\"object\":\"chat.completion.chunk\",\"created\":1749538209,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_a288987b44\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"ul\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-Bgn69BmFeWWhz1q3U7e2A5xrVcPe9\",\"object\":\"chat.completion.chunk\",\"created\":1749538209,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_a288987b44\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"><\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-Bgn69BmFeWWhz1q3U7e2A5xrVcPe9\",\"object\":\"chat.completion.chunk\",\"created\":1749538209,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_a288987b44\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"li\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-Bgn69BmFeWWhz1q3U7e2A5xrVcPe9\",\"object\":\"chat.completion.chunk\",\"created\":1749538209,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_a288987b44\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\">\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-Bgn69BmFeWWhz1q3U7e2A5xrVcPe9\",\"object\":\"chat.completion.chunk\",\"created\":1749538209,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_a288987b44\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"Ban\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-Bgn69BmFeWWhz1q3U7e2A5xrVcPe9\",\"object\":\"chat.completion.chunk\",\"created\":1749538209,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_a288987b44\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"anas\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-Bgn69BmFeWWhz1q3U7e2A5xrVcPe9\",\"object\":\"chat.completion.chunk\",\"created\":1749538209,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_a288987b44\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-Bgn69BmFeWWhz1q3U7e2A5xrVcPe9\",\"object\":\"chat.completion.chunk\",\"created\":1749538209,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_a288987b44\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"\\\"}\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-Bgn69BmFeWWhz1q3U7e2A5xrVcPe9\",\"object\":\"chat.completion.chunk\",\"created\":1749538209,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_a288987b44\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"]}\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-Bgn69BmFeWWhz1q3U7e2A5xrVcPe9\",\"object\":\"chat.completion.chunk\",\"created\":1749538209,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_a288987b44\",\"choices\":[{\"index\":0,\"delta\":{},\"logprobs\":null,\"finish_reason\":\"stop\"}]}\n\ndata: [DONE]\n\n", + "body": "data: {\"id\":\"chatcmpl-BhcHCBAsz9ja3JRhmW0bqxp1I9hBb\",\"object\":\"chat.completion.chunk\",\"created\":1749734938,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_a288987b44\",\"choices\":[{\"index\":0,\"delta\":{\"role\":\"assistant\",\"content\":null,\"tool_calls\":[{\"index\":0,\"id\":\"call_7vFbI3cFknmwfTyk26ffG0IP\",\"type\":\"function\",\"function\":{\"name\":\"json\",\"arguments\":\"\"}}],\"refusal\":null},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BhcHCBAsz9ja3JRhmW0bqxp1I9hBb\",\"object\":\"chat.completion.chunk\",\"created\":1749734938,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_a288987b44\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"{\\\"\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BhcHCBAsz9ja3JRhmW0bqxp1I9hBb\",\"object\":\"chat.completion.chunk\",\"created\":1749734938,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_a288987b44\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"operations\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BhcHCBAsz9ja3JRhmW0bqxp1I9hBb\",\"object\":\"chat.completion.chunk\",\"created\":1749734938,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_a288987b44\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"\\\":[\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BhcHCBAsz9ja3JRhmW0bqxp1I9hBb\",\"object\":\"chat.completion.chunk\",\"created\":1749734938,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_a288987b44\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"{\\\"\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BhcHCBAsz9ja3JRhmW0bqxp1I9hBb\",\"object\":\"chat.completion.chunk\",\"created\":1749734938,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_a288987b44\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"type\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BhcHCBAsz9ja3JRhmW0bqxp1I9hBb\",\"object\":\"chat.completion.chunk\",\"created\":1749734938,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_a288987b44\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"\\\":\\\"\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BhcHCBAsz9ja3JRhmW0bqxp1I9hBb\",\"object\":\"chat.completion.chunk\",\"created\":1749734938,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_a288987b44\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"update\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BhcHCBAsz9ja3JRhmW0bqxp1I9hBb\",\"object\":\"chat.completion.chunk\",\"created\":1749734938,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_a288987b44\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"\\\",\\\"\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BhcHCBAsz9ja3JRhmW0bqxp1I9hBb\",\"object\":\"chat.completion.chunk\",\"created\":1749734938,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_a288987b44\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"id\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BhcHCBAsz9ja3JRhmW0bqxp1I9hBb\",\"object\":\"chat.completion.chunk\",\"created\":1749734938,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_a288987b44\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"\\\":\\\"\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BhcHCBAsz9ja3JRhmW0bqxp1I9hBb\",\"object\":\"chat.completion.chunk\",\"created\":1749734938,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_a288987b44\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"ref\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BhcHCBAsz9ja3JRhmW0bqxp1I9hBb\",\"object\":\"chat.completion.chunk\",\"created\":1749734938,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_a288987b44\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"2\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BhcHCBAsz9ja3JRhmW0bqxp1I9hBb\",\"object\":\"chat.completion.chunk\",\"created\":1749734938,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_a288987b44\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"$\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BhcHCBAsz9ja3JRhmW0bqxp1I9hBb\",\"object\":\"chat.completion.chunk\",\"created\":1749734938,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_a288987b44\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"\\\",\\\"\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BhcHCBAsz9ja3JRhmW0bqxp1I9hBb\",\"object\":\"chat.completion.chunk\",\"created\":1749734938,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_a288987b44\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"block\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BhcHCBAsz9ja3JRhmW0bqxp1I9hBb\",\"object\":\"chat.completion.chunk\",\"created\":1749734938,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_a288987b44\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"\\\":\\\"\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BhcHCBAsz9ja3JRhmW0bqxp1I9hBb\",\"object\":\"chat.completion.chunk\",\"created\":1749734938,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_a288987b44\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"<\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BhcHCBAsz9ja3JRhmW0bqxp1I9hBb\",\"object\":\"chat.completion.chunk\",\"created\":1749734938,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_a288987b44\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"ul\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BhcHCBAsz9ja3JRhmW0bqxp1I9hBb\",\"object\":\"chat.completion.chunk\",\"created\":1749734938,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_a288987b44\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"><\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BhcHCBAsz9ja3JRhmW0bqxp1I9hBb\",\"object\":\"chat.completion.chunk\",\"created\":1749734938,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_a288987b44\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"li\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BhcHCBAsz9ja3JRhmW0bqxp1I9hBb\",\"object\":\"chat.completion.chunk\",\"created\":1749734938,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_a288987b44\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\">\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BhcHCBAsz9ja3JRhmW0bqxp1I9hBb\",\"object\":\"chat.completion.chunk\",\"created\":1749734938,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_a288987b44\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"Ap\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BhcHCBAsz9ja3JRhmW0bqxp1I9hBb\",\"object\":\"chat.completion.chunk\",\"created\":1749734938,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_a288987b44\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"ples\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BhcHCBAsz9ja3JRhmW0bqxp1I9hBb\",\"object\":\"chat.completion.chunk\",\"created\":1749734938,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_a288987b44\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"\\\"\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BhcHCBAsz9ja3JRhmW0bqxp1I9hBb\",\"object\":\"chat.completion.chunk\",\"created\":1749734938,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_a288987b44\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"},{\\\"\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BhcHCBAsz9ja3JRhmW0bqxp1I9hBb\",\"object\":\"chat.completion.chunk\",\"created\":1749734938,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_a288987b44\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"type\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BhcHCBAsz9ja3JRhmW0bqxp1I9hBb\",\"object\":\"chat.completion.chunk\",\"created\":1749734938,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_a288987b44\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"\\\":\\\"\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BhcHCBAsz9ja3JRhmW0bqxp1I9hBb\",\"object\":\"chat.completion.chunk\",\"created\":1749734938,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_a288987b44\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"update\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BhcHCBAsz9ja3JRhmW0bqxp1I9hBb\",\"object\":\"chat.completion.chunk\",\"created\":1749734938,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_a288987b44\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"\\\",\\\"\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BhcHCBAsz9ja3JRhmW0bqxp1I9hBb\",\"object\":\"chat.completion.chunk\",\"created\":1749734938,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_a288987b44\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"id\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BhcHCBAsz9ja3JRhmW0bqxp1I9hBb\",\"object\":\"chat.completion.chunk\",\"created\":1749734938,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_a288987b44\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"\\\":\\\"\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BhcHCBAsz9ja3JRhmW0bqxp1I9hBb\",\"object\":\"chat.completion.chunk\",\"created\":1749734938,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_a288987b44\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"ref\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BhcHCBAsz9ja3JRhmW0bqxp1I9hBb\",\"object\":\"chat.completion.chunk\",\"created\":1749734938,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_a288987b44\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"3\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BhcHCBAsz9ja3JRhmW0bqxp1I9hBb\",\"object\":\"chat.completion.chunk\",\"created\":1749734938,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_a288987b44\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"$\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BhcHCBAsz9ja3JRhmW0bqxp1I9hBb\",\"object\":\"chat.completion.chunk\",\"created\":1749734938,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_a288987b44\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"\\\",\\\"\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BhcHCBAsz9ja3JRhmW0bqxp1I9hBb\",\"object\":\"chat.completion.chunk\",\"created\":1749734938,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_a288987b44\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"block\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BhcHCBAsz9ja3JRhmW0bqxp1I9hBb\",\"object\":\"chat.completion.chunk\",\"created\":1749734938,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_a288987b44\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"\\\":\\\"\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BhcHCBAsz9ja3JRhmW0bqxp1I9hBb\",\"object\":\"chat.completion.chunk\",\"created\":1749734938,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_a288987b44\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"<\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BhcHCBAsz9ja3JRhmW0bqxp1I9hBb\",\"object\":\"chat.completion.chunk\",\"created\":1749734938,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_a288987b44\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"ul\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BhcHCBAsz9ja3JRhmW0bqxp1I9hBb\",\"object\":\"chat.completion.chunk\",\"created\":1749734938,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_a288987b44\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"><\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BhcHCBAsz9ja3JRhmW0bqxp1I9hBb\",\"object\":\"chat.completion.chunk\",\"created\":1749734938,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_a288987b44\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"li\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BhcHCBAsz9ja3JRhmW0bqxp1I9hBb\",\"object\":\"chat.completion.chunk\",\"created\":1749734938,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_a288987b44\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\">\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BhcHCBAsz9ja3JRhmW0bqxp1I9hBb\",\"object\":\"chat.completion.chunk\",\"created\":1749734938,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_a288987b44\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"Ban\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BhcHCBAsz9ja3JRhmW0bqxp1I9hBb\",\"object\":\"chat.completion.chunk\",\"created\":1749734938,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_a288987b44\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"anas\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BhcHCBAsz9ja3JRhmW0bqxp1I9hBb\",\"object\":\"chat.completion.chunk\",\"created\":1749734938,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_a288987b44\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BhcHCBAsz9ja3JRhmW0bqxp1I9hBb\",\"object\":\"chat.completion.chunk\",\"created\":1749734938,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_a288987b44\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"\\\"}\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BhcHCBAsz9ja3JRhmW0bqxp1I9hBb\",\"object\":\"chat.completion.chunk\",\"created\":1749734938,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_a288987b44\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"]}\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BhcHCBAsz9ja3JRhmW0bqxp1I9hBb\",\"object\":\"chat.completion.chunk\",\"created\":1749734938,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_a288987b44\",\"choices\":[{\"index\":0,\"delta\":{},\"logprobs\":null,\"finish_reason\":\"stop\"}]}\n\ndata: [DONE]\n\n", "headers": [] } } \ No newline at end of file diff --git a/packages/xl-ai/src/api/formats/html-blocks/__snapshots__/htmlBlocks.test.ts/Update/__msw_snapshots__/openai.chat/gpt-4o-2024-08-06 (streaming)/update block type and content_1_94cf62e3727b3443984720bc54218659.json b/packages/xl-ai/src/api/formats/html-blocks/__snapshots__/htmlBlocks.test.ts/Update/__msw_snapshots__/openai.chat/gpt-4o-2024-08-06 (streaming)/update block type and content_1_94cf62e3727b3443984720bc54218659.json index e7bc3aac54..b14dee8772 100644 --- a/packages/xl-ai/src/api/formats/html-blocks/__snapshots__/htmlBlocks.test.ts/Update/__msw_snapshots__/openai.chat/gpt-4o-2024-08-06 (streaming)/update block type and content_1_94cf62e3727b3443984720bc54218659.json +++ b/packages/xl-ai/src/api/formats/html-blocks/__snapshots__/htmlBlocks.test.ts/Update/__msw_snapshots__/openai.chat/gpt-4o-2024-08-06 (streaming)/update block type and content_1_94cf62e3727b3443984720bc54218659.json @@ -9,7 +9,7 @@ "response": { "status": 200, "statusText": "", - "body": "data: {\"id\":\"chatcmpl-Bgn5thxM3abqX9qGmzQodBSLgoav6\",\"object\":\"chat.completion.chunk\",\"created\":1749538193,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_07871e2ad8\",\"choices\":[{\"index\":0,\"delta\":{\"role\":\"assistant\",\"content\":null,\"tool_calls\":[{\"index\":0,\"id\":\"call_O0PzV47Yied6nuhYlo2M38bX\",\"type\":\"function\",\"function\":{\"name\":\"json\",\"arguments\":\"\"}}],\"refusal\":null},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-Bgn5thxM3abqX9qGmzQodBSLgoav6\",\"object\":\"chat.completion.chunk\",\"created\":1749538193,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_07871e2ad8\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"{\\\"\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-Bgn5thxM3abqX9qGmzQodBSLgoav6\",\"object\":\"chat.completion.chunk\",\"created\":1749538193,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_07871e2ad8\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"operations\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-Bgn5thxM3abqX9qGmzQodBSLgoav6\",\"object\":\"chat.completion.chunk\",\"created\":1749538193,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_07871e2ad8\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"\\\":[\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-Bgn5thxM3abqX9qGmzQodBSLgoav6\",\"object\":\"chat.completion.chunk\",\"created\":1749538193,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_07871e2ad8\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"{\\\"\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-Bgn5thxM3abqX9qGmzQodBSLgoav6\",\"object\":\"chat.completion.chunk\",\"created\":1749538193,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_07871e2ad8\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"type\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-Bgn5thxM3abqX9qGmzQodBSLgoav6\",\"object\":\"chat.completion.chunk\",\"created\":1749538193,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_07871e2ad8\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"\\\":\\\"\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-Bgn5thxM3abqX9qGmzQodBSLgoav6\",\"object\":\"chat.completion.chunk\",\"created\":1749538193,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_07871e2ad8\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"update\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-Bgn5thxM3abqX9qGmzQodBSLgoav6\",\"object\":\"chat.completion.chunk\",\"created\":1749538193,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_07871e2ad8\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"\\\",\\\"\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-Bgn5thxM3abqX9qGmzQodBSLgoav6\",\"object\":\"chat.completion.chunk\",\"created\":1749538193,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_07871e2ad8\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"id\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-Bgn5thxM3abqX9qGmzQodBSLgoav6\",\"object\":\"chat.completion.chunk\",\"created\":1749538193,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_07871e2ad8\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"\\\":\\\"\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-Bgn5thxM3abqX9qGmzQodBSLgoav6\",\"object\":\"chat.completion.chunk\",\"created\":1749538193,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_07871e2ad8\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"ref\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-Bgn5thxM3abqX9qGmzQodBSLgoav6\",\"object\":\"chat.completion.chunk\",\"created\":1749538193,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_07871e2ad8\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"1\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-Bgn5thxM3abqX9qGmzQodBSLgoav6\",\"object\":\"chat.completion.chunk\",\"created\":1749538193,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_07871e2ad8\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"$\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-Bgn5thxM3abqX9qGmzQodBSLgoav6\",\"object\":\"chat.completion.chunk\",\"created\":1749538193,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_07871e2ad8\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"\\\",\\\"\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-Bgn5thxM3abqX9qGmzQodBSLgoav6\",\"object\":\"chat.completion.chunk\",\"created\":1749538193,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_07871e2ad8\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"block\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-Bgn5thxM3abqX9qGmzQodBSLgoav6\",\"object\":\"chat.completion.chunk\",\"created\":1749538193,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_07871e2ad8\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"\\\":\\\"\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-Bgn5thxM3abqX9qGmzQodBSLgoav6\",\"object\":\"chat.completion.chunk\",\"created\":1749538193,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_07871e2ad8\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"<\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-Bgn5thxM3abqX9qGmzQodBSLgoav6\",\"object\":\"chat.completion.chunk\",\"created\":1749538193,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_07871e2ad8\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"h\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-Bgn5thxM3abqX9qGmzQodBSLgoav6\",\"object\":\"chat.completion.chunk\",\"created\":1749538193,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_07871e2ad8\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"1\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-Bgn5thxM3abqX9qGmzQodBSLgoav6\",\"object\":\"chat.completion.chunk\",\"created\":1749538193,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_07871e2ad8\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\">\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-Bgn5thxM3abqX9qGmzQodBSLgoav6\",\"object\":\"chat.completion.chunk\",\"created\":1749538193,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_07871e2ad8\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"What's\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-Bgn5thxM3abqX9qGmzQodBSLgoav6\",\"object\":\"chat.completion.chunk\",\"created\":1749538193,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_07871e2ad8\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\" up\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-Bgn5thxM3abqX9qGmzQodBSLgoav6\",\"object\":\"chat.completion.chunk\",\"created\":1749538193,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_07871e2ad8\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\",\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-Bgn5thxM3abqX9qGmzQodBSLgoav6\",\"object\":\"chat.completion.chunk\",\"created\":1749538193,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_07871e2ad8\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\" world\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-Bgn5thxM3abqX9qGmzQodBSLgoav6\",\"object\":\"chat.completion.chunk\",\"created\":1749538193,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_07871e2ad8\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"!\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-Bgn5thxM3abqX9qGmzQodBSLgoav6\",\"object\":\"chat.completion.chunk\",\"created\":1749538193,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_07871e2ad8\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"\\\"}\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-Bgn5thxM3abqX9qGmzQodBSLgoav6\",\"object\":\"chat.completion.chunk\",\"created\":1749538193,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_07871e2ad8\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"]}\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-Bgn5thxM3abqX9qGmzQodBSLgoav6\",\"object\":\"chat.completion.chunk\",\"created\":1749538193,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_07871e2ad8\",\"choices\":[{\"index\":0,\"delta\":{},\"logprobs\":null,\"finish_reason\":\"stop\"}]}\n\ndata: [DONE]\n\n", + "body": "data: {\"id\":\"chatcmpl-BhcGq1yJByaiUM9QhhlRWOpPVLAyF\",\"object\":\"chat.completion.chunk\",\"created\":1749734916,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_07871e2ad8\",\"choices\":[{\"index\":0,\"delta\":{\"role\":\"assistant\",\"content\":null,\"tool_calls\":[{\"index\":0,\"id\":\"call_gWAplvQH0Eo9eYQzir3tkBuY\",\"type\":\"function\",\"function\":{\"name\":\"json\",\"arguments\":\"\"}}],\"refusal\":null},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BhcGq1yJByaiUM9QhhlRWOpPVLAyF\",\"object\":\"chat.completion.chunk\",\"created\":1749734916,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_07871e2ad8\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"{\\\"\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BhcGq1yJByaiUM9QhhlRWOpPVLAyF\",\"object\":\"chat.completion.chunk\",\"created\":1749734916,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_07871e2ad8\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"operations\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BhcGq1yJByaiUM9QhhlRWOpPVLAyF\",\"object\":\"chat.completion.chunk\",\"created\":1749734916,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_07871e2ad8\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"\\\":[\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BhcGq1yJByaiUM9QhhlRWOpPVLAyF\",\"object\":\"chat.completion.chunk\",\"created\":1749734916,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_07871e2ad8\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"{\\\"\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BhcGq1yJByaiUM9QhhlRWOpPVLAyF\",\"object\":\"chat.completion.chunk\",\"created\":1749734916,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_07871e2ad8\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"type\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BhcGq1yJByaiUM9QhhlRWOpPVLAyF\",\"object\":\"chat.completion.chunk\",\"created\":1749734916,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_07871e2ad8\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"\\\":\\\"\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BhcGq1yJByaiUM9QhhlRWOpPVLAyF\",\"object\":\"chat.completion.chunk\",\"created\":1749734916,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_07871e2ad8\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"update\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BhcGq1yJByaiUM9QhhlRWOpPVLAyF\",\"object\":\"chat.completion.chunk\",\"created\":1749734916,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_07871e2ad8\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"\\\",\\\"\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BhcGq1yJByaiUM9QhhlRWOpPVLAyF\",\"object\":\"chat.completion.chunk\",\"created\":1749734916,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_07871e2ad8\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"id\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BhcGq1yJByaiUM9QhhlRWOpPVLAyF\",\"object\":\"chat.completion.chunk\",\"created\":1749734916,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_07871e2ad8\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"\\\":\\\"\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BhcGq1yJByaiUM9QhhlRWOpPVLAyF\",\"object\":\"chat.completion.chunk\",\"created\":1749734916,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_07871e2ad8\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"ref\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BhcGq1yJByaiUM9QhhlRWOpPVLAyF\",\"object\":\"chat.completion.chunk\",\"created\":1749734916,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_07871e2ad8\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"1\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BhcGq1yJByaiUM9QhhlRWOpPVLAyF\",\"object\":\"chat.completion.chunk\",\"created\":1749734916,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_07871e2ad8\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"$\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BhcGq1yJByaiUM9QhhlRWOpPVLAyF\",\"object\":\"chat.completion.chunk\",\"created\":1749734916,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_07871e2ad8\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"\\\",\\\"\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BhcGq1yJByaiUM9QhhlRWOpPVLAyF\",\"object\":\"chat.completion.chunk\",\"created\":1749734916,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_07871e2ad8\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"block\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BhcGq1yJByaiUM9QhhlRWOpPVLAyF\",\"object\":\"chat.completion.chunk\",\"created\":1749734916,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_07871e2ad8\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"\\\":\\\"\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BhcGq1yJByaiUM9QhhlRWOpPVLAyF\",\"object\":\"chat.completion.chunk\",\"created\":1749734916,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_07871e2ad8\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"<\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BhcGq1yJByaiUM9QhhlRWOpPVLAyF\",\"object\":\"chat.completion.chunk\",\"created\":1749734916,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_07871e2ad8\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"h\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BhcGq1yJByaiUM9QhhlRWOpPVLAyF\",\"object\":\"chat.completion.chunk\",\"created\":1749734916,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_07871e2ad8\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"1\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BhcGq1yJByaiUM9QhhlRWOpPVLAyF\",\"object\":\"chat.completion.chunk\",\"created\":1749734916,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_07871e2ad8\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\">\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BhcGq1yJByaiUM9QhhlRWOpPVLAyF\",\"object\":\"chat.completion.chunk\",\"created\":1749734916,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_07871e2ad8\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"What's\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BhcGq1yJByaiUM9QhhlRWOpPVLAyF\",\"object\":\"chat.completion.chunk\",\"created\":1749734916,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_07871e2ad8\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\" up\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BhcGq1yJByaiUM9QhhlRWOpPVLAyF\",\"object\":\"chat.completion.chunk\",\"created\":1749734916,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_07871e2ad8\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\",\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BhcGq1yJByaiUM9QhhlRWOpPVLAyF\",\"object\":\"chat.completion.chunk\",\"created\":1749734916,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_07871e2ad8\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\" world\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BhcGq1yJByaiUM9QhhlRWOpPVLAyF\",\"object\":\"chat.completion.chunk\",\"created\":1749734916,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_07871e2ad8\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"!\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BhcGq1yJByaiUM9QhhlRWOpPVLAyF\",\"object\":\"chat.completion.chunk\",\"created\":1749734916,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_07871e2ad8\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"\\\"}\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BhcGq1yJByaiUM9QhhlRWOpPVLAyF\",\"object\":\"chat.completion.chunk\",\"created\":1749734916,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_07871e2ad8\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"]}\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BhcGq1yJByaiUM9QhhlRWOpPVLAyF\",\"object\":\"chat.completion.chunk\",\"created\":1749734916,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_07871e2ad8\",\"choices\":[{\"index\":0,\"delta\":{},\"logprobs\":null,\"finish_reason\":\"stop\"}]}\n\ndata: [DONE]\n\n", "headers": [] } } \ No newline at end of file diff --git a/packages/xl-ai/src/api/formats/html-blocks/__snapshots__/htmlBlocks.test.ts/Update/__msw_snapshots__/openai.chat/gpt-4o-2024-08-06 (streaming)/update block type_1_19432d3e11d58717813be52d54eb6edd.json b/packages/xl-ai/src/api/formats/html-blocks/__snapshots__/htmlBlocks.test.ts/Update/__msw_snapshots__/openai.chat/gpt-4o-2024-08-06 (streaming)/update block type_1_19432d3e11d58717813be52d54eb6edd.json index 25669e15bc..8434f20cb7 100644 --- a/packages/xl-ai/src/api/formats/html-blocks/__snapshots__/htmlBlocks.test.ts/Update/__msw_snapshots__/openai.chat/gpt-4o-2024-08-06 (streaming)/update block type_1_19432d3e11d58717813be52d54eb6edd.json +++ b/packages/xl-ai/src/api/formats/html-blocks/__snapshots__/htmlBlocks.test.ts/Update/__msw_snapshots__/openai.chat/gpt-4o-2024-08-06 (streaming)/update block type_1_19432d3e11d58717813be52d54eb6edd.json @@ -9,7 +9,7 @@ "response": { "status": 200, "statusText": "", - "body": "data: {\"id\":\"chatcmpl-Bgn5s0SNvPCWMLEKUT6n9NfPikBhM\",\"object\":\"chat.completion.chunk\",\"created\":1749538192,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_07871e2ad8\",\"choices\":[{\"index\":0,\"delta\":{\"role\":\"assistant\",\"content\":null,\"tool_calls\":[{\"index\":0,\"id\":\"call_D5uYL9IlDIrJKkgTabW8wwzN\",\"type\":\"function\",\"function\":{\"name\":\"json\",\"arguments\":\"\"}}],\"refusal\":null},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-Bgn5s0SNvPCWMLEKUT6n9NfPikBhM\",\"object\":\"chat.completion.chunk\",\"created\":1749538192,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_07871e2ad8\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"{\\\"\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-Bgn5s0SNvPCWMLEKUT6n9NfPikBhM\",\"object\":\"chat.completion.chunk\",\"created\":1749538192,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_07871e2ad8\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"operations\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-Bgn5s0SNvPCWMLEKUT6n9NfPikBhM\",\"object\":\"chat.completion.chunk\",\"created\":1749538192,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_07871e2ad8\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"\\\":[\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-Bgn5s0SNvPCWMLEKUT6n9NfPikBhM\",\"object\":\"chat.completion.chunk\",\"created\":1749538192,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_07871e2ad8\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"{\\\"\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-Bgn5s0SNvPCWMLEKUT6n9NfPikBhM\",\"object\":\"chat.completion.chunk\",\"created\":1749538192,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_07871e2ad8\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"type\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-Bgn5s0SNvPCWMLEKUT6n9NfPikBhM\",\"object\":\"chat.completion.chunk\",\"created\":1749538192,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_07871e2ad8\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"\\\":\\\"\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-Bgn5s0SNvPCWMLEKUT6n9NfPikBhM\",\"object\":\"chat.completion.chunk\",\"created\":1749538192,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_07871e2ad8\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"update\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-Bgn5s0SNvPCWMLEKUT6n9NfPikBhM\",\"object\":\"chat.completion.chunk\",\"created\":1749538192,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_07871e2ad8\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"\\\",\\\"\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-Bgn5s0SNvPCWMLEKUT6n9NfPikBhM\",\"object\":\"chat.completion.chunk\",\"created\":1749538192,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_07871e2ad8\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"id\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-Bgn5s0SNvPCWMLEKUT6n9NfPikBhM\",\"object\":\"chat.completion.chunk\",\"created\":1749538192,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_07871e2ad8\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"\\\":\\\"\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-Bgn5s0SNvPCWMLEKUT6n9NfPikBhM\",\"object\":\"chat.completion.chunk\",\"created\":1749538192,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_07871e2ad8\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"ref\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-Bgn5s0SNvPCWMLEKUT6n9NfPikBhM\",\"object\":\"chat.completion.chunk\",\"created\":1749538192,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_07871e2ad8\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"1\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-Bgn5s0SNvPCWMLEKUT6n9NfPikBhM\",\"object\":\"chat.completion.chunk\",\"created\":1749538192,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_07871e2ad8\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"$\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-Bgn5s0SNvPCWMLEKUT6n9NfPikBhM\",\"object\":\"chat.completion.chunk\",\"created\":1749538192,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_07871e2ad8\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"\\\",\\\"\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-Bgn5s0SNvPCWMLEKUT6n9NfPikBhM\",\"object\":\"chat.completion.chunk\",\"created\":1749538192,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_07871e2ad8\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"block\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-Bgn5s0SNvPCWMLEKUT6n9NfPikBhM\",\"object\":\"chat.completion.chunk\",\"created\":1749538192,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_07871e2ad8\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"\\\":\\\"\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-Bgn5s0SNvPCWMLEKUT6n9NfPikBhM\",\"object\":\"chat.completion.chunk\",\"created\":1749538192,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_07871e2ad8\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"<\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-Bgn5s0SNvPCWMLEKUT6n9NfPikBhM\",\"object\":\"chat.completion.chunk\",\"created\":1749538192,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_07871e2ad8\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"h\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-Bgn5s0SNvPCWMLEKUT6n9NfPikBhM\",\"object\":\"chat.completion.chunk\",\"created\":1749538192,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_07871e2ad8\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"1\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-Bgn5s0SNvPCWMLEKUT6n9NfPikBhM\",\"object\":\"chat.completion.chunk\",\"created\":1749538192,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_07871e2ad8\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\">Hello\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-Bgn5s0SNvPCWMLEKUT6n9NfPikBhM\",\"object\":\"chat.completion.chunk\",\"created\":1749538192,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_07871e2ad8\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\",\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-Bgn5s0SNvPCWMLEKUT6n9NfPikBhM\",\"object\":\"chat.completion.chunk\",\"created\":1749538192,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_07871e2ad8\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\" world\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-Bgn5s0SNvPCWMLEKUT6n9NfPikBhM\",\"object\":\"chat.completion.chunk\",\"created\":1749538192,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_07871e2ad8\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"!\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-Bgn5s0SNvPCWMLEKUT6n9NfPikBhM\",\"object\":\"chat.completion.chunk\",\"created\":1749538192,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_07871e2ad8\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"\\\"}\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-Bgn5s0SNvPCWMLEKUT6n9NfPikBhM\",\"object\":\"chat.completion.chunk\",\"created\":1749538192,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_07871e2ad8\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"]}\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-Bgn5s0SNvPCWMLEKUT6n9NfPikBhM\",\"object\":\"chat.completion.chunk\",\"created\":1749538192,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_07871e2ad8\",\"choices\":[{\"index\":0,\"delta\":{},\"logprobs\":null,\"finish_reason\":\"stop\"}]}\n\ndata: [DONE]\n\n", + "body": "data: {\"id\":\"chatcmpl-BhcGpjI5gmTgw0bEe8fDyj8cVfM9Z\",\"object\":\"chat.completion.chunk\",\"created\":1749734915,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_07871e2ad8\",\"choices\":[{\"index\":0,\"delta\":{\"role\":\"assistant\",\"content\":null,\"tool_calls\":[{\"index\":0,\"id\":\"call_RFH4GgQ3AspFWg6vDhLrddUd\",\"type\":\"function\",\"function\":{\"name\":\"json\",\"arguments\":\"\"}}],\"refusal\":null},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BhcGpjI5gmTgw0bEe8fDyj8cVfM9Z\",\"object\":\"chat.completion.chunk\",\"created\":1749734915,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_07871e2ad8\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"{\\\"\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BhcGpjI5gmTgw0bEe8fDyj8cVfM9Z\",\"object\":\"chat.completion.chunk\",\"created\":1749734915,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_07871e2ad8\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"operations\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BhcGpjI5gmTgw0bEe8fDyj8cVfM9Z\",\"object\":\"chat.completion.chunk\",\"created\":1749734915,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_07871e2ad8\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"\\\":[\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BhcGpjI5gmTgw0bEe8fDyj8cVfM9Z\",\"object\":\"chat.completion.chunk\",\"created\":1749734915,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_07871e2ad8\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"{\\\"\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BhcGpjI5gmTgw0bEe8fDyj8cVfM9Z\",\"object\":\"chat.completion.chunk\",\"created\":1749734915,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_07871e2ad8\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"type\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BhcGpjI5gmTgw0bEe8fDyj8cVfM9Z\",\"object\":\"chat.completion.chunk\",\"created\":1749734915,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_07871e2ad8\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"\\\":\\\"\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BhcGpjI5gmTgw0bEe8fDyj8cVfM9Z\",\"object\":\"chat.completion.chunk\",\"created\":1749734915,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_07871e2ad8\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"update\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BhcGpjI5gmTgw0bEe8fDyj8cVfM9Z\",\"object\":\"chat.completion.chunk\",\"created\":1749734915,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_07871e2ad8\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"\\\",\\\"\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BhcGpjI5gmTgw0bEe8fDyj8cVfM9Z\",\"object\":\"chat.completion.chunk\",\"created\":1749734915,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_07871e2ad8\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"id\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BhcGpjI5gmTgw0bEe8fDyj8cVfM9Z\",\"object\":\"chat.completion.chunk\",\"created\":1749734915,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_07871e2ad8\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"\\\":\\\"\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BhcGpjI5gmTgw0bEe8fDyj8cVfM9Z\",\"object\":\"chat.completion.chunk\",\"created\":1749734915,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_07871e2ad8\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"ref\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BhcGpjI5gmTgw0bEe8fDyj8cVfM9Z\",\"object\":\"chat.completion.chunk\",\"created\":1749734915,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_07871e2ad8\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"1\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BhcGpjI5gmTgw0bEe8fDyj8cVfM9Z\",\"object\":\"chat.completion.chunk\",\"created\":1749734915,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_07871e2ad8\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"$\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BhcGpjI5gmTgw0bEe8fDyj8cVfM9Z\",\"object\":\"chat.completion.chunk\",\"created\":1749734915,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_07871e2ad8\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"\\\",\\\"\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BhcGpjI5gmTgw0bEe8fDyj8cVfM9Z\",\"object\":\"chat.completion.chunk\",\"created\":1749734915,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_07871e2ad8\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"block\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BhcGpjI5gmTgw0bEe8fDyj8cVfM9Z\",\"object\":\"chat.completion.chunk\",\"created\":1749734915,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_07871e2ad8\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"\\\":\\\"\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BhcGpjI5gmTgw0bEe8fDyj8cVfM9Z\",\"object\":\"chat.completion.chunk\",\"created\":1749734915,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_07871e2ad8\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"<\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BhcGpjI5gmTgw0bEe8fDyj8cVfM9Z\",\"object\":\"chat.completion.chunk\",\"created\":1749734915,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_07871e2ad8\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"h\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BhcGpjI5gmTgw0bEe8fDyj8cVfM9Z\",\"object\":\"chat.completion.chunk\",\"created\":1749734915,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_07871e2ad8\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"1\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BhcGpjI5gmTgw0bEe8fDyj8cVfM9Z\",\"object\":\"chat.completion.chunk\",\"created\":1749734915,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_07871e2ad8\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\">Hello\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BhcGpjI5gmTgw0bEe8fDyj8cVfM9Z\",\"object\":\"chat.completion.chunk\",\"created\":1749734915,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_07871e2ad8\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\",\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BhcGpjI5gmTgw0bEe8fDyj8cVfM9Z\",\"object\":\"chat.completion.chunk\",\"created\":1749734915,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_07871e2ad8\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\" world\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BhcGpjI5gmTgw0bEe8fDyj8cVfM9Z\",\"object\":\"chat.completion.chunk\",\"created\":1749734915,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_07871e2ad8\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"!\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BhcGpjI5gmTgw0bEe8fDyj8cVfM9Z\",\"object\":\"chat.completion.chunk\",\"created\":1749734915,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_07871e2ad8\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"\\\"}\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BhcGpjI5gmTgw0bEe8fDyj8cVfM9Z\",\"object\":\"chat.completion.chunk\",\"created\":1749734915,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_07871e2ad8\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"]}\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BhcGpjI5gmTgw0bEe8fDyj8cVfM9Z\",\"object\":\"chat.completion.chunk\",\"created\":1749734915,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_07871e2ad8\",\"choices\":[{\"index\":0,\"delta\":{},\"logprobs\":null,\"finish_reason\":\"stop\"}]}\n\ndata: [DONE]\n\n", "headers": [] } } \ No newline at end of file diff --git a/packages/xl-ai/src/api/formats/json/__snapshots__/json.test.ts/Add/__msw_snapshots__/openai.chat/gpt-4o-2024-08-06 (non-streaming)/Add heading (h1) and code block_1_da23f47c1267f17138027b6bd115b251.json b/packages/xl-ai/src/api/formats/json/__snapshots__/json.test.ts/Add/__msw_snapshots__/openai.chat/gpt-4o-2024-08-06 (non-streaming)/Add heading (h1) and code block_1_da23f47c1267f17138027b6bd115b251.json index ca06a04e8c..726f882a6f 100644 --- a/packages/xl-ai/src/api/formats/json/__snapshots__/json.test.ts/Add/__msw_snapshots__/openai.chat/gpt-4o-2024-08-06 (non-streaming)/Add heading (h1) and code block_1_da23f47c1267f17138027b6bd115b251.json +++ b/packages/xl-ai/src/api/formats/json/__snapshots__/json.test.ts/Add/__msw_snapshots__/openai.chat/gpt-4o-2024-08-06 (non-streaming)/Add heading (h1) and code block_1_da23f47c1267f17138027b6bd115b251.json @@ -7,9 +7,9 @@ "cookies": [] }, "response": { - "status": 429, + "status": 200, "statusText": "", - "body": "{\n \"error\": {\n \"message\": \"You exceeded your current quota, please check your plan and billing details. For more information on this error, read the docs: https://platform.openai.com/docs/guides/error-codes/api-errors.\",\n \"type\": \"insufficient_quota\",\n \"param\": null,\n \"code\": \"insufficient_quota\"\n }\n}\n", + "body": "{\n \"id\": \"chatcmpl-BhcFfi0vPH4752JZ0fvDEPiNEoKQx\",\n \"object\": \"chat.completion\",\n \"created\": 1749734843,\n \"model\": \"gpt-4o-2024-08-06\",\n \"choices\": [\n {\n \"index\": 0,\n \"message\": {\n \"role\": \"assistant\",\n \"content\": null,\n \"tool_calls\": [\n {\n \"id\": \"call_4XDpNwU0yCWXuPnH578SALvO\",\n \"type\": \"function\",\n \"function\": {\n \"name\": \"json\",\n \"arguments\": \"{\\\"operations\\\":[{\\\"type\\\":\\\"add\\\",\\\"referenceId\\\":\\\"ref2$\\\",\\\"position\\\":\\\"after\\\",\\\"blocks\\\":[{\\\"type\\\":\\\"heading\\\",\\\"content\\\":[{\\\"type\\\":\\\"text\\\",\\\"text\\\":\\\"Code\\\"}],\\\"props\\\":{\\\"level\\\":1}},{\\\"type\\\":\\\"codeBlock\\\",\\\"content\\\":[{\\\"type\\\":\\\"text\\\",\\\"text\\\":\\\"console.log('hello world');\\\"}],\\\"props\\\":{\\\"language\\\":\\\"javascript\\\"}}]}]}\"\n }\n }\n ],\n \"refusal\": null,\n \"annotations\": []\n },\n \"logprobs\": null,\n \"finish_reason\": \"stop\"\n }\n ],\n \"usage\": {\n \"prompt_tokens\": 1039,\n \"completion_tokens\": 75,\n \"total_tokens\": 1114,\n \"prompt_tokens_details\": {\n \"cached_tokens\": 1024,\n \"audio_tokens\": 0\n },\n \"completion_tokens_details\": {\n \"reasoning_tokens\": 0,\n \"audio_tokens\": 0,\n \"accepted_prediction_tokens\": 0,\n \"rejected_prediction_tokens\": 0\n }\n },\n \"service_tier\": \"default\",\n \"system_fingerprint\": \"fp_a288987b44\"\n}\n", "headers": [] } } \ No newline at end of file diff --git a/packages/xl-ai/src/api/formats/json/__snapshots__/json.test.ts/Add/__msw_snapshots__/openai.chat/gpt-4o-2024-08-06 (non-streaming)/add a list (end)_1_215b02f86ce29cdb7f8834b39d073041.json b/packages/xl-ai/src/api/formats/json/__snapshots__/json.test.ts/Add/__msw_snapshots__/openai.chat/gpt-4o-2024-08-06 (non-streaming)/add a list (end)_1_215b02f86ce29cdb7f8834b39d073041.json index 56c8763352..7dfbc392d2 100644 --- a/packages/xl-ai/src/api/formats/json/__snapshots__/json.test.ts/Add/__msw_snapshots__/openai.chat/gpt-4o-2024-08-06 (non-streaming)/add a list (end)_1_215b02f86ce29cdb7f8834b39d073041.json +++ b/packages/xl-ai/src/api/formats/json/__snapshots__/json.test.ts/Add/__msw_snapshots__/openai.chat/gpt-4o-2024-08-06 (non-streaming)/add a list (end)_1_215b02f86ce29cdb7f8834b39d073041.json @@ -7,9 +7,9 @@ "cookies": [] }, "response": { - "status": 429, + "status": 200, "statusText": "", - "body": "{\n \"error\": {\n \"message\": \"You exceeded your current quota, please check your plan and billing details. For more information on this error, read the docs: https://platform.openai.com/docs/guides/error-codes/api-errors.\",\n \"type\": \"insufficient_quota\",\n \"param\": null,\n \"code\": \"insufficient_quota\"\n }\n}\n", + "body": "{\n \"id\": \"chatcmpl-BhcFeR2KQIy9681WQsxcggOVAjkWU\",\n \"object\": \"chat.completion\",\n \"created\": 1749734842,\n \"model\": \"gpt-4o-2024-08-06\",\n \"choices\": [\n {\n \"index\": 0,\n \"message\": {\n \"role\": \"assistant\",\n \"content\": null,\n \"tool_calls\": [\n {\n \"id\": \"call_IylhoAm4tu3sslDdps3IJWhJ\",\n \"type\": \"function\",\n \"function\": {\n \"name\": \"json\",\n \"arguments\": \"{\\\"operations\\\":[{\\\"type\\\":\\\"add\\\",\\\"referenceId\\\":\\\"ref2$\\\",\\\"position\\\":\\\"after\\\",\\\"blocks\\\":[{\\\"type\\\":\\\"bulletListItem\\\",\\\"content\\\":[{\\\"type\\\":\\\"text\\\",\\\"text\\\":\\\"Apples\\\"}]},{\\\"type\\\":\\\"bulletListItem\\\",\\\"content\\\":[{\\\"type\\\":\\\"text\\\",\\\"text\\\":\\\"Bananas\\\"}]}]}]}\"\n }\n }\n ],\n \"refusal\": null,\n \"annotations\": []\n },\n \"logprobs\": null,\n \"finish_reason\": \"stop\"\n }\n ],\n \"usage\": {\n \"prompt_tokens\": 1030,\n \"completion_tokens\": 63,\n \"total_tokens\": 1093,\n \"prompt_tokens_details\": {\n \"cached_tokens\": 1024,\n \"audio_tokens\": 0\n },\n \"completion_tokens_details\": {\n \"reasoning_tokens\": 0,\n \"audio_tokens\": 0,\n \"accepted_prediction_tokens\": 0,\n \"rejected_prediction_tokens\": 0\n }\n },\n \"service_tier\": \"default\",\n \"system_fingerprint\": \"fp_a288987b44\"\n}\n", "headers": [] } } \ No newline at end of file diff --git a/packages/xl-ai/src/api/formats/json/__snapshots__/json.test.ts/Add/__msw_snapshots__/openai.chat/gpt-4o-2024-08-06 (non-streaming)/add a new paragraph (empty doc)_1_56cad0142b200cfff68d9ff03f02e930.json b/packages/xl-ai/src/api/formats/json/__snapshots__/json.test.ts/Add/__msw_snapshots__/openai.chat/gpt-4o-2024-08-06 (non-streaming)/add a new paragraph (empty doc)_1_56cad0142b200cfff68d9ff03f02e930.json index b74a5f365d..3c8e8cc099 100644 --- a/packages/xl-ai/src/api/formats/json/__snapshots__/json.test.ts/Add/__msw_snapshots__/openai.chat/gpt-4o-2024-08-06 (non-streaming)/add a new paragraph (empty doc)_1_56cad0142b200cfff68d9ff03f02e930.json +++ b/packages/xl-ai/src/api/formats/json/__snapshots__/json.test.ts/Add/__msw_snapshots__/openai.chat/gpt-4o-2024-08-06 (non-streaming)/add a new paragraph (empty doc)_1_56cad0142b200cfff68d9ff03f02e930.json @@ -7,9 +7,9 @@ "cookies": [] }, "response": { - "status": 429, + "status": 200, "statusText": "", - "body": "{\n \"error\": {\n \"message\": \"You exceeded your current quota, please check your plan and billing details. For more information on this error, read the docs: https://platform.openai.com/docs/guides/error-codes/api-errors.\",\n \"type\": \"insufficient_quota\",\n \"param\": null,\n \"code\": \"insufficient_quota\"\n }\n}\n", + "body": "{\n \"id\": \"chatcmpl-BhcFgbBIG48iXl9LdF2B1ijkUjwbr\",\n \"object\": \"chat.completion\",\n \"created\": 1749734844,\n \"model\": \"gpt-4o-2024-08-06\",\n \"choices\": [\n {\n \"index\": 0,\n \"message\": {\n \"role\": \"assistant\",\n \"content\": null,\n \"tool_calls\": [\n {\n \"id\": \"call_u51m1Y1IRXHKsqJTgBFAmBiw\",\n \"type\": \"function\",\n \"function\": {\n \"name\": \"json\",\n \"arguments\": \"{\\\"operations\\\":[{\\\"type\\\":\\\"update\\\",\\\"id\\\":\\\"ref1$\\\",\\\"block\\\":{\\\"type\\\":\\\"paragraph\\\",\\\"content\\\":[{\\\"type\\\":\\\"text\\\",\\\"text\\\":\\\"You look great today!\\\"}]}}]}\"\n }\n }\n ],\n \"refusal\": null,\n \"annotations\": []\n },\n \"logprobs\": null,\n \"finish_reason\": \"stop\"\n }\n ],\n \"usage\": {\n \"prompt_tokens\": 919,\n \"completion_tokens\": 37,\n \"total_tokens\": 956,\n \"prompt_tokens_details\": {\n \"cached_tokens\": 0,\n \"audio_tokens\": 0\n },\n \"completion_tokens_details\": {\n \"reasoning_tokens\": 0,\n \"audio_tokens\": 0,\n \"accepted_prediction_tokens\": 0,\n \"rejected_prediction_tokens\": 0\n }\n },\n \"service_tier\": \"default\",\n \"system_fingerprint\": \"fp_a288987b44\"\n}\n", "headers": [] } } \ No newline at end of file diff --git a/packages/xl-ai/src/api/formats/json/__snapshots__/json.test.ts/Add/__msw_snapshots__/openai.chat/gpt-4o-2024-08-06 (non-streaming)/add a new paragraph (end)_1_87a85aa54d0e545e325753089c3843b2.json b/packages/xl-ai/src/api/formats/json/__snapshots__/json.test.ts/Add/__msw_snapshots__/openai.chat/gpt-4o-2024-08-06 (non-streaming)/add a new paragraph (end)_1_87a85aa54d0e545e325753089c3843b2.json index 42644494bb..76cab99128 100644 --- a/packages/xl-ai/src/api/formats/json/__snapshots__/json.test.ts/Add/__msw_snapshots__/openai.chat/gpt-4o-2024-08-06 (non-streaming)/add a new paragraph (end)_1_87a85aa54d0e545e325753089c3843b2.json +++ b/packages/xl-ai/src/api/formats/json/__snapshots__/json.test.ts/Add/__msw_snapshots__/openai.chat/gpt-4o-2024-08-06 (non-streaming)/add a new paragraph (end)_1_87a85aa54d0e545e325753089c3843b2.json @@ -7,9 +7,9 @@ "cookies": [] }, "response": { - "status": 429, + "status": 200, "statusText": "", - "body": "{\n \"error\": {\n \"message\": \"You exceeded your current quota, please check your plan and billing details. For more information on this error, read the docs: https://platform.openai.com/docs/guides/error-codes/api-errors.\",\n \"type\": \"insufficient_quota\",\n \"param\": null,\n \"code\": \"insufficient_quota\"\n }\n}\n", + "body": "{\n \"id\": \"chatcmpl-BhcFdOnm0hYrlC067D0FIHzvcHYo0\",\n \"object\": \"chat.completion\",\n \"created\": 1749734841,\n \"model\": \"gpt-4o-2024-08-06\",\n \"choices\": [\n {\n \"index\": 0,\n \"message\": {\n \"role\": \"assistant\",\n \"content\": null,\n \"tool_calls\": [\n {\n \"id\": \"call_P08Hzdrmb5l3eIViyB5c5jtA\",\n \"type\": \"function\",\n \"function\": {\n \"name\": \"json\",\n \"arguments\": \"{\\\"operations\\\":[{\\\"type\\\":\\\"add\\\",\\\"referenceId\\\":\\\"ref2$\\\",\\\"position\\\":\\\"after\\\",\\\"blocks\\\":[{\\\"type\\\":\\\"paragraph\\\",\\\"content\\\":[{\\\"type\\\":\\\"text\\\",\\\"text\\\":\\\"You look great today!\\\"}]}]}]}\"\n }\n }\n ],\n \"refusal\": null,\n \"annotations\": []\n },\n \"logprobs\": null,\n \"finish_reason\": \"stop\"\n }\n ],\n \"usage\": {\n \"prompt_tokens\": 1028,\n \"completion_tokens\": 44,\n \"total_tokens\": 1072,\n \"prompt_tokens_details\": {\n \"cached_tokens\": 1024,\n \"audio_tokens\": 0\n },\n \"completion_tokens_details\": {\n \"reasoning_tokens\": 0,\n \"audio_tokens\": 0,\n \"accepted_prediction_tokens\": 0,\n \"rejected_prediction_tokens\": 0\n }\n },\n \"service_tier\": \"default\",\n \"system_fingerprint\": \"fp_a288987b44\"\n}\n", "headers": [] } } \ No newline at end of file diff --git a/packages/xl-ai/src/api/formats/json/__snapshots__/json.test.ts/Add/__msw_snapshots__/openai.chat/gpt-4o-2024-08-06 (non-streaming)/add a new paragraph (start)_1_572761dc235c6278ed438821af019645.json b/packages/xl-ai/src/api/formats/json/__snapshots__/json.test.ts/Add/__msw_snapshots__/openai.chat/gpt-4o-2024-08-06 (non-streaming)/add a new paragraph (start)_1_572761dc235c6278ed438821af019645.json index 954e8fb199..c13ce7ff74 100644 --- a/packages/xl-ai/src/api/formats/json/__snapshots__/json.test.ts/Add/__msw_snapshots__/openai.chat/gpt-4o-2024-08-06 (non-streaming)/add a new paragraph (start)_1_572761dc235c6278ed438821af019645.json +++ b/packages/xl-ai/src/api/formats/json/__snapshots__/json.test.ts/Add/__msw_snapshots__/openai.chat/gpt-4o-2024-08-06 (non-streaming)/add a new paragraph (start)_1_572761dc235c6278ed438821af019645.json @@ -7,9 +7,9 @@ "cookies": [] }, "response": { - "status": 429, + "status": 200, "statusText": "", - "body": "{\n \"error\": {\n \"message\": \"You exceeded your current quota, please check your plan and billing details. For more information on this error, read the docs: https://platform.openai.com/docs/guides/error-codes/api-errors.\",\n \"type\": \"insufficient_quota\",\n \"param\": null,\n \"code\": \"insufficient_quota\"\n }\n}\n", + "body": "{\n \"id\": \"chatcmpl-BhcFcY5JvdT8kws3XOurSvXylQfmq\",\n \"object\": \"chat.completion\",\n \"created\": 1749734840,\n \"model\": \"gpt-4o-2024-08-06\",\n \"choices\": [\n {\n \"index\": 0,\n \"message\": {\n \"role\": \"assistant\",\n \"content\": null,\n \"tool_calls\": [\n {\n \"id\": \"call_I8ZuhFAy78w4pUQOesKxixj1\",\n \"type\": \"function\",\n \"function\": {\n \"name\": \"json\",\n \"arguments\": \"{\\\"operations\\\":[{\\\"type\\\":\\\"add\\\",\\\"referenceId\\\":\\\"ref1$\\\",\\\"position\\\":\\\"before\\\",\\\"blocks\\\":[{\\\"type\\\":\\\"paragraph\\\",\\\"content\\\":[{\\\"type\\\":\\\"text\\\",\\\"text\\\":\\\"You look great today!\\\"}]}]}]}\"\n }\n }\n ],\n \"refusal\": null,\n \"annotations\": []\n },\n \"logprobs\": null,\n \"finish_reason\": \"stop\"\n }\n ],\n \"usage\": {\n \"prompt_tokens\": 1028,\n \"completion_tokens\": 44,\n \"total_tokens\": 1072,\n \"prompt_tokens_details\": {\n \"cached_tokens\": 1024,\n \"audio_tokens\": 0\n },\n \"completion_tokens_details\": {\n \"reasoning_tokens\": 0,\n \"audio_tokens\": 0,\n \"accepted_prediction_tokens\": 0,\n \"rejected_prediction_tokens\": 0\n }\n },\n \"service_tier\": \"default\",\n \"system_fingerprint\": \"fp_a288987b44\"\n}\n", "headers": [] } } \ No newline at end of file diff --git a/packages/xl-ai/src/api/formats/json/__snapshots__/json.test.ts/Add/__msw_snapshots__/openai.chat/gpt-4o-2024-08-06 (streaming)/Add heading (h1) and code block_1_a5e8aef512955120d014d7b2fc72d306.json b/packages/xl-ai/src/api/formats/json/__snapshots__/json.test.ts/Add/__msw_snapshots__/openai.chat/gpt-4o-2024-08-06 (streaming)/Add heading (h1) and code block_1_a5e8aef512955120d014d7b2fc72d306.json index 012f3ece4b..741cb91d61 100644 --- a/packages/xl-ai/src/api/formats/json/__snapshots__/json.test.ts/Add/__msw_snapshots__/openai.chat/gpt-4o-2024-08-06 (streaming)/Add heading (h1) and code block_1_a5e8aef512955120d014d7b2fc72d306.json +++ b/packages/xl-ai/src/api/formats/json/__snapshots__/json.test.ts/Add/__msw_snapshots__/openai.chat/gpt-4o-2024-08-06 (streaming)/Add heading (h1) and code block_1_a5e8aef512955120d014d7b2fc72d306.json @@ -9,7 +9,7 @@ "response": { "status": 200, "statusText": "", - "body": "data: {\"id\":\"chatcmpl-BhZtKcYmTxl3IziQiBMVO0uXaQo1S\",\"object\":\"chat.completion.chunk\",\"created\":1749725770,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_a288987b44\",\"choices\":[{\"index\":0,\"delta\":{\"role\":\"assistant\",\"content\":null,\"tool_calls\":[{\"index\":0,\"id\":\"call_SHEQA16zYcwtgtjMCB90T6os\",\"type\":\"function\",\"function\":{\"name\":\"json\",\"arguments\":\"\"}}],\"refusal\":null},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BhZtKcYmTxl3IziQiBMVO0uXaQo1S\",\"object\":\"chat.completion.chunk\",\"created\":1749725770,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_a288987b44\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"{\\\"\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BhZtKcYmTxl3IziQiBMVO0uXaQo1S\",\"object\":\"chat.completion.chunk\",\"created\":1749725770,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_a288987b44\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"operations\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BhZtKcYmTxl3IziQiBMVO0uXaQo1S\",\"object\":\"chat.completion.chunk\",\"created\":1749725770,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_a288987b44\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"\\\":[\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BhZtKcYmTxl3IziQiBMVO0uXaQo1S\",\"object\":\"chat.completion.chunk\",\"created\":1749725770,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_a288987b44\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"{\\\"\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BhZtKcYmTxl3IziQiBMVO0uXaQo1S\",\"object\":\"chat.completion.chunk\",\"created\":1749725770,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_a288987b44\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"type\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BhZtKcYmTxl3IziQiBMVO0uXaQo1S\",\"object\":\"chat.completion.chunk\",\"created\":1749725770,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_a288987b44\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"\\\":\\\"\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BhZtKcYmTxl3IziQiBMVO0uXaQo1S\",\"object\":\"chat.completion.chunk\",\"created\":1749725770,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_a288987b44\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"add\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BhZtKcYmTxl3IziQiBMVO0uXaQo1S\",\"object\":\"chat.completion.chunk\",\"created\":1749725770,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_a288987b44\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"\\\",\\\"\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BhZtKcYmTxl3IziQiBMVO0uXaQo1S\",\"object\":\"chat.completion.chunk\",\"created\":1749725770,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_a288987b44\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"reference\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BhZtKcYmTxl3IziQiBMVO0uXaQo1S\",\"object\":\"chat.completion.chunk\",\"created\":1749725770,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_a288987b44\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"Id\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BhZtKcYmTxl3IziQiBMVO0uXaQo1S\",\"object\":\"chat.completion.chunk\",\"created\":1749725770,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_a288987b44\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"\\\":\\\"\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BhZtKcYmTxl3IziQiBMVO0uXaQo1S\",\"object\":\"chat.completion.chunk\",\"created\":1749725770,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_a288987b44\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"ref\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BhZtKcYmTxl3IziQiBMVO0uXaQo1S\",\"object\":\"chat.completion.chunk\",\"created\":1749725770,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_a288987b44\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"2\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BhZtKcYmTxl3IziQiBMVO0uXaQo1S\",\"object\":\"chat.completion.chunk\",\"created\":1749725770,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_a288987b44\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"$\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BhZtKcYmTxl3IziQiBMVO0uXaQo1S\",\"object\":\"chat.completion.chunk\",\"created\":1749725770,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_a288987b44\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"\\\",\\\"\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BhZtKcYmTxl3IziQiBMVO0uXaQo1S\",\"object\":\"chat.completion.chunk\",\"created\":1749725770,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_a288987b44\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"position\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BhZtKcYmTxl3IziQiBMVO0uXaQo1S\",\"object\":\"chat.completion.chunk\",\"created\":1749725770,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_a288987b44\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"\\\":\\\"\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BhZtKcYmTxl3IziQiBMVO0uXaQo1S\",\"object\":\"chat.completion.chunk\",\"created\":1749725770,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_a288987b44\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"after\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BhZtKcYmTxl3IziQiBMVO0uXaQo1S\",\"object\":\"chat.completion.chunk\",\"created\":1749725770,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_a288987b44\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"\\\",\\\"\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BhZtKcYmTxl3IziQiBMVO0uXaQo1S\",\"object\":\"chat.completion.chunk\",\"created\":1749725770,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_a288987b44\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"blocks\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BhZtKcYmTxl3IziQiBMVO0uXaQo1S\",\"object\":\"chat.completion.chunk\",\"created\":1749725770,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_a288987b44\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"\\\":[\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BhZtKcYmTxl3IziQiBMVO0uXaQo1S\",\"object\":\"chat.completion.chunk\",\"created\":1749725770,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_a288987b44\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"{\\\"\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BhZtKcYmTxl3IziQiBMVO0uXaQo1S\",\"object\":\"chat.completion.chunk\",\"created\":1749725770,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_a288987b44\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"type\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BhZtKcYmTxl3IziQiBMVO0uXaQo1S\",\"object\":\"chat.completion.chunk\",\"created\":1749725770,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_a288987b44\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"\\\":\\\"\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BhZtKcYmTxl3IziQiBMVO0uXaQo1S\",\"object\":\"chat.completion.chunk\",\"created\":1749725770,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_a288987b44\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"heading\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BhZtKcYmTxl3IziQiBMVO0uXaQo1S\",\"object\":\"chat.completion.chunk\",\"created\":1749725770,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_a288987b44\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"\\\",\\\"\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BhZtKcYmTxl3IziQiBMVO0uXaQo1S\",\"object\":\"chat.completion.chunk\",\"created\":1749725770,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_a288987b44\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"content\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BhZtKcYmTxl3IziQiBMVO0uXaQo1S\",\"object\":\"chat.completion.chunk\",\"created\":1749725770,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_a288987b44\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"\\\":[\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BhZtKcYmTxl3IziQiBMVO0uXaQo1S\",\"object\":\"chat.completion.chunk\",\"created\":1749725770,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_a288987b44\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"{\\\"\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BhZtKcYmTxl3IziQiBMVO0uXaQo1S\",\"object\":\"chat.completion.chunk\",\"created\":1749725770,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_a288987b44\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"type\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BhZtKcYmTxl3IziQiBMVO0uXaQo1S\",\"object\":\"chat.completion.chunk\",\"created\":1749725770,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_a288987b44\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"\\\":\\\"\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BhZtKcYmTxl3IziQiBMVO0uXaQo1S\",\"object\":\"chat.completion.chunk\",\"created\":1749725770,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_a288987b44\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"text\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BhZtKcYmTxl3IziQiBMVO0uXaQo1S\",\"object\":\"chat.completion.chunk\",\"created\":1749725770,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_a288987b44\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"\\\",\\\"\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BhZtKcYmTxl3IziQiBMVO0uXaQo1S\",\"object\":\"chat.completion.chunk\",\"created\":1749725770,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_a288987b44\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"text\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BhZtKcYmTxl3IziQiBMVO0uXaQo1S\",\"object\":\"chat.completion.chunk\",\"created\":1749725770,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_a288987b44\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"\\\":\\\"\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BhZtKcYmTxl3IziQiBMVO0uXaQo1S\",\"object\":\"chat.completion.chunk\",\"created\":1749725770,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_a288987b44\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"Code\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BhZtKcYmTxl3IziQiBMVO0uXaQo1S\",\"object\":\"chat.completion.chunk\",\"created\":1749725770,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_a288987b44\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"\\\"}\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BhZtKcYmTxl3IziQiBMVO0uXaQo1S\",\"object\":\"chat.completion.chunk\",\"created\":1749725770,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_a288987b44\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"],\\\"\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BhZtKcYmTxl3IziQiBMVO0uXaQo1S\",\"object\":\"chat.completion.chunk\",\"created\":1749725770,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_a288987b44\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"props\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BhZtKcYmTxl3IziQiBMVO0uXaQo1S\",\"object\":\"chat.completion.chunk\",\"created\":1749725770,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_a288987b44\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"\\\":{\\\"\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BhZtKcYmTxl3IziQiBMVO0uXaQo1S\",\"object\":\"chat.completion.chunk\",\"created\":1749725770,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_a288987b44\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"level\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BhZtKcYmTxl3IziQiBMVO0uXaQo1S\",\"object\":\"chat.completion.chunk\",\"created\":1749725770,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_a288987b44\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"\\\":\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BhZtKcYmTxl3IziQiBMVO0uXaQo1S\",\"object\":\"chat.completion.chunk\",\"created\":1749725770,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_a288987b44\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"1\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BhZtKcYmTxl3IziQiBMVO0uXaQo1S\",\"object\":\"chat.completion.chunk\",\"created\":1749725770,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_a288987b44\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"}},\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BhZtKcYmTxl3IziQiBMVO0uXaQo1S\",\"object\":\"chat.completion.chunk\",\"created\":1749725770,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_a288987b44\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"{\\\"\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BhZtKcYmTxl3IziQiBMVO0uXaQo1S\",\"object\":\"chat.completion.chunk\",\"created\":1749725770,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_a288987b44\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"type\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BhZtKcYmTxl3IziQiBMVO0uXaQo1S\",\"object\":\"chat.completion.chunk\",\"created\":1749725770,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_a288987b44\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"\\\":\\\"\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BhZtKcYmTxl3IziQiBMVO0uXaQo1S\",\"object\":\"chat.completion.chunk\",\"created\":1749725770,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_a288987b44\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"code\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BhZtKcYmTxl3IziQiBMVO0uXaQo1S\",\"object\":\"chat.completion.chunk\",\"created\":1749725770,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_a288987b44\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"Block\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BhZtKcYmTxl3IziQiBMVO0uXaQo1S\",\"object\":\"chat.completion.chunk\",\"created\":1749725770,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_a288987b44\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"\\\",\\\"\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BhZtKcYmTxl3IziQiBMVO0uXaQo1S\",\"object\":\"chat.completion.chunk\",\"created\":1749725770,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_a288987b44\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"content\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BhZtKcYmTxl3IziQiBMVO0uXaQo1S\",\"object\":\"chat.completion.chunk\",\"created\":1749725770,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_a288987b44\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"\\\":[\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BhZtKcYmTxl3IziQiBMVO0uXaQo1S\",\"object\":\"chat.completion.chunk\",\"created\":1749725770,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_a288987b44\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"{\\\"\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BhZtKcYmTxl3IziQiBMVO0uXaQo1S\",\"object\":\"chat.completion.chunk\",\"created\":1749725770,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_a288987b44\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"type\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BhZtKcYmTxl3IziQiBMVO0uXaQo1S\",\"object\":\"chat.completion.chunk\",\"created\":1749725770,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_a288987b44\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"\\\":\\\"\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BhZtKcYmTxl3IziQiBMVO0uXaQo1S\",\"object\":\"chat.completion.chunk\",\"created\":1749725770,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_a288987b44\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"text\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BhZtKcYmTxl3IziQiBMVO0uXaQo1S\",\"object\":\"chat.completion.chunk\",\"created\":1749725770,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_a288987b44\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"\\\",\\\"\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BhZtKcYmTxl3IziQiBMVO0uXaQo1S\",\"object\":\"chat.completion.chunk\",\"created\":1749725770,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_a288987b44\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"text\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BhZtKcYmTxl3IziQiBMVO0uXaQo1S\",\"object\":\"chat.completion.chunk\",\"created\":1749725770,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_a288987b44\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"\\\":\\\"\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BhZtKcYmTxl3IziQiBMVO0uXaQo1S\",\"object\":\"chat.completion.chunk\",\"created\":1749725770,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_a288987b44\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"console\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BhZtKcYmTxl3IziQiBMVO0uXaQo1S\",\"object\":\"chat.completion.chunk\",\"created\":1749725770,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_a288987b44\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\".log\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BhZtKcYmTxl3IziQiBMVO0uXaQo1S\",\"object\":\"chat.completion.chunk\",\"created\":1749725770,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_a288987b44\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"('\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BhZtKcYmTxl3IziQiBMVO0uXaQo1S\",\"object\":\"chat.completion.chunk\",\"created\":1749725770,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_a288987b44\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"hello\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BhZtKcYmTxl3IziQiBMVO0uXaQo1S\",\"object\":\"chat.completion.chunk\",\"created\":1749725770,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_a288987b44\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\" world\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BhZtKcYmTxl3IziQiBMVO0uXaQo1S\",\"object\":\"chat.completion.chunk\",\"created\":1749725770,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_a288987b44\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"');\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BhZtKcYmTxl3IziQiBMVO0uXaQo1S\",\"object\":\"chat.completion.chunk\",\"created\":1749725770,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_a288987b44\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"\\\"}\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BhZtKcYmTxl3IziQiBMVO0uXaQo1S\",\"object\":\"chat.completion.chunk\",\"created\":1749725770,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_a288987b44\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"],\\\"\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BhZtKcYmTxl3IziQiBMVO0uXaQo1S\",\"object\":\"chat.completion.chunk\",\"created\":1749725770,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_a288987b44\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"props\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BhZtKcYmTxl3IziQiBMVO0uXaQo1S\",\"object\":\"chat.completion.chunk\",\"created\":1749725770,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_a288987b44\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"\\\":{\\\"\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BhZtKcYmTxl3IziQiBMVO0uXaQo1S\",\"object\":\"chat.completion.chunk\",\"created\":1749725770,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_a288987b44\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"language\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BhZtKcYmTxl3IziQiBMVO0uXaQo1S\",\"object\":\"chat.completion.chunk\",\"created\":1749725770,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_a288987b44\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"\\\":\\\"\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BhZtKcYmTxl3IziQiBMVO0uXaQo1S\",\"object\":\"chat.completion.chunk\",\"created\":1749725770,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_a288987b44\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"javascript\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BhZtKcYmTxl3IziQiBMVO0uXaQo1S\",\"object\":\"chat.completion.chunk\",\"created\":1749725770,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_a288987b44\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"\\\"}}\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BhZtKcYmTxl3IziQiBMVO0uXaQo1S\",\"object\":\"chat.completion.chunk\",\"created\":1749725770,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_a288987b44\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"]}\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BhZtKcYmTxl3IziQiBMVO0uXaQo1S\",\"object\":\"chat.completion.chunk\",\"created\":1749725770,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_a288987b44\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"]}\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BhZtKcYmTxl3IziQiBMVO0uXaQo1S\",\"object\":\"chat.completion.chunk\",\"created\":1749725770,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_a288987b44\",\"choices\":[{\"index\":0,\"delta\":{},\"logprobs\":null,\"finish_reason\":\"stop\"}]}\n\ndata: [DONE]\n\n", + "body": "data: {\"id\":\"chatcmpl-BhcEwZBZOkb9fffTUnWgSJyYpAYXg\",\"object\":\"chat.completion.chunk\",\"created\":1749734798,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_a288987b44\",\"choices\":[{\"index\":0,\"delta\":{\"role\":\"assistant\",\"content\":null,\"tool_calls\":[{\"index\":0,\"id\":\"call_a789pjoiedIQmA6kWtEsyy4u\",\"type\":\"function\",\"function\":{\"name\":\"json\",\"arguments\":\"\"}}],\"refusal\":null},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BhcEwZBZOkb9fffTUnWgSJyYpAYXg\",\"object\":\"chat.completion.chunk\",\"created\":1749734798,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_a288987b44\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"{\\\"\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BhcEwZBZOkb9fffTUnWgSJyYpAYXg\",\"object\":\"chat.completion.chunk\",\"created\":1749734798,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_a288987b44\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"operations\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BhcEwZBZOkb9fffTUnWgSJyYpAYXg\",\"object\":\"chat.completion.chunk\",\"created\":1749734798,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_a288987b44\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"\\\":[\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BhcEwZBZOkb9fffTUnWgSJyYpAYXg\",\"object\":\"chat.completion.chunk\",\"created\":1749734798,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_a288987b44\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"{\\\"\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BhcEwZBZOkb9fffTUnWgSJyYpAYXg\",\"object\":\"chat.completion.chunk\",\"created\":1749734798,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_a288987b44\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"type\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BhcEwZBZOkb9fffTUnWgSJyYpAYXg\",\"object\":\"chat.completion.chunk\",\"created\":1749734798,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_a288987b44\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"\\\":\\\"\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BhcEwZBZOkb9fffTUnWgSJyYpAYXg\",\"object\":\"chat.completion.chunk\",\"created\":1749734798,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_a288987b44\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"add\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BhcEwZBZOkb9fffTUnWgSJyYpAYXg\",\"object\":\"chat.completion.chunk\",\"created\":1749734798,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_a288987b44\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"\\\",\\\"\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BhcEwZBZOkb9fffTUnWgSJyYpAYXg\",\"object\":\"chat.completion.chunk\",\"created\":1749734798,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_a288987b44\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"reference\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BhcEwZBZOkb9fffTUnWgSJyYpAYXg\",\"object\":\"chat.completion.chunk\",\"created\":1749734798,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_a288987b44\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"Id\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BhcEwZBZOkb9fffTUnWgSJyYpAYXg\",\"object\":\"chat.completion.chunk\",\"created\":1749734798,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_a288987b44\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"\\\":\\\"\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BhcEwZBZOkb9fffTUnWgSJyYpAYXg\",\"object\":\"chat.completion.chunk\",\"created\":1749734798,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_a288987b44\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"ref\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BhcEwZBZOkb9fffTUnWgSJyYpAYXg\",\"object\":\"chat.completion.chunk\",\"created\":1749734798,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_a288987b44\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"2\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BhcEwZBZOkb9fffTUnWgSJyYpAYXg\",\"object\":\"chat.completion.chunk\",\"created\":1749734798,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_a288987b44\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"$\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BhcEwZBZOkb9fffTUnWgSJyYpAYXg\",\"object\":\"chat.completion.chunk\",\"created\":1749734798,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_a288987b44\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"\\\",\\\"\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BhcEwZBZOkb9fffTUnWgSJyYpAYXg\",\"object\":\"chat.completion.chunk\",\"created\":1749734798,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_a288987b44\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"position\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BhcEwZBZOkb9fffTUnWgSJyYpAYXg\",\"object\":\"chat.completion.chunk\",\"created\":1749734798,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_a288987b44\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"\\\":\\\"\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BhcEwZBZOkb9fffTUnWgSJyYpAYXg\",\"object\":\"chat.completion.chunk\",\"created\":1749734798,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_a288987b44\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"after\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BhcEwZBZOkb9fffTUnWgSJyYpAYXg\",\"object\":\"chat.completion.chunk\",\"created\":1749734798,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_a288987b44\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"\\\",\\\"\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BhcEwZBZOkb9fffTUnWgSJyYpAYXg\",\"object\":\"chat.completion.chunk\",\"created\":1749734798,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_a288987b44\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"blocks\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BhcEwZBZOkb9fffTUnWgSJyYpAYXg\",\"object\":\"chat.completion.chunk\",\"created\":1749734798,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_a288987b44\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"\\\":[\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BhcEwZBZOkb9fffTUnWgSJyYpAYXg\",\"object\":\"chat.completion.chunk\",\"created\":1749734798,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_a288987b44\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"{\\\"\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BhcEwZBZOkb9fffTUnWgSJyYpAYXg\",\"object\":\"chat.completion.chunk\",\"created\":1749734798,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_a288987b44\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"type\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BhcEwZBZOkb9fffTUnWgSJyYpAYXg\",\"object\":\"chat.completion.chunk\",\"created\":1749734798,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_a288987b44\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"\\\":\\\"\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BhcEwZBZOkb9fffTUnWgSJyYpAYXg\",\"object\":\"chat.completion.chunk\",\"created\":1749734798,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_a288987b44\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"heading\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BhcEwZBZOkb9fffTUnWgSJyYpAYXg\",\"object\":\"chat.completion.chunk\",\"created\":1749734798,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_a288987b44\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"\\\",\\\"\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BhcEwZBZOkb9fffTUnWgSJyYpAYXg\",\"object\":\"chat.completion.chunk\",\"created\":1749734798,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_a288987b44\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"content\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BhcEwZBZOkb9fffTUnWgSJyYpAYXg\",\"object\":\"chat.completion.chunk\",\"created\":1749734798,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_a288987b44\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"\\\":[\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BhcEwZBZOkb9fffTUnWgSJyYpAYXg\",\"object\":\"chat.completion.chunk\",\"created\":1749734798,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_a288987b44\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"{\\\"\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BhcEwZBZOkb9fffTUnWgSJyYpAYXg\",\"object\":\"chat.completion.chunk\",\"created\":1749734798,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_a288987b44\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"type\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BhcEwZBZOkb9fffTUnWgSJyYpAYXg\",\"object\":\"chat.completion.chunk\",\"created\":1749734798,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_a288987b44\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"\\\":\\\"\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BhcEwZBZOkb9fffTUnWgSJyYpAYXg\",\"object\":\"chat.completion.chunk\",\"created\":1749734798,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_a288987b44\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"text\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BhcEwZBZOkb9fffTUnWgSJyYpAYXg\",\"object\":\"chat.completion.chunk\",\"created\":1749734798,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_a288987b44\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"\\\",\\\"\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BhcEwZBZOkb9fffTUnWgSJyYpAYXg\",\"object\":\"chat.completion.chunk\",\"created\":1749734798,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_a288987b44\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"text\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BhcEwZBZOkb9fffTUnWgSJyYpAYXg\",\"object\":\"chat.completion.chunk\",\"created\":1749734798,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_a288987b44\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"\\\":\\\"\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BhcEwZBZOkb9fffTUnWgSJyYpAYXg\",\"object\":\"chat.completion.chunk\",\"created\":1749734798,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_a288987b44\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"Code\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BhcEwZBZOkb9fffTUnWgSJyYpAYXg\",\"object\":\"chat.completion.chunk\",\"created\":1749734798,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_a288987b44\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"\\\"}\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BhcEwZBZOkb9fffTUnWgSJyYpAYXg\",\"object\":\"chat.completion.chunk\",\"created\":1749734798,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_a288987b44\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"],\\\"\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BhcEwZBZOkb9fffTUnWgSJyYpAYXg\",\"object\":\"chat.completion.chunk\",\"created\":1749734798,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_a288987b44\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"props\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BhcEwZBZOkb9fffTUnWgSJyYpAYXg\",\"object\":\"chat.completion.chunk\",\"created\":1749734798,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_a288987b44\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"\\\":{\\\"\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BhcEwZBZOkb9fffTUnWgSJyYpAYXg\",\"object\":\"chat.completion.chunk\",\"created\":1749734798,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_a288987b44\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"level\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BhcEwZBZOkb9fffTUnWgSJyYpAYXg\",\"object\":\"chat.completion.chunk\",\"created\":1749734798,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_a288987b44\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"\\\":\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BhcEwZBZOkb9fffTUnWgSJyYpAYXg\",\"object\":\"chat.completion.chunk\",\"created\":1749734798,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_a288987b44\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"1\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BhcEwZBZOkb9fffTUnWgSJyYpAYXg\",\"object\":\"chat.completion.chunk\",\"created\":1749734798,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_a288987b44\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"}},\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BhcEwZBZOkb9fffTUnWgSJyYpAYXg\",\"object\":\"chat.completion.chunk\",\"created\":1749734798,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_a288987b44\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"{\\\"\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BhcEwZBZOkb9fffTUnWgSJyYpAYXg\",\"object\":\"chat.completion.chunk\",\"created\":1749734798,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_a288987b44\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"type\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BhcEwZBZOkb9fffTUnWgSJyYpAYXg\",\"object\":\"chat.completion.chunk\",\"created\":1749734798,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_a288987b44\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"\\\":\\\"\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BhcEwZBZOkb9fffTUnWgSJyYpAYXg\",\"object\":\"chat.completion.chunk\",\"created\":1749734798,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_a288987b44\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"code\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BhcEwZBZOkb9fffTUnWgSJyYpAYXg\",\"object\":\"chat.completion.chunk\",\"created\":1749734798,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_a288987b44\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"Block\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BhcEwZBZOkb9fffTUnWgSJyYpAYXg\",\"object\":\"chat.completion.chunk\",\"created\":1749734798,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_a288987b44\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"\\\",\\\"\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BhcEwZBZOkb9fffTUnWgSJyYpAYXg\",\"object\":\"chat.completion.chunk\",\"created\":1749734798,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_a288987b44\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"content\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BhcEwZBZOkb9fffTUnWgSJyYpAYXg\",\"object\":\"chat.completion.chunk\",\"created\":1749734798,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_a288987b44\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"\\\":[\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BhcEwZBZOkb9fffTUnWgSJyYpAYXg\",\"object\":\"chat.completion.chunk\",\"created\":1749734798,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_a288987b44\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"{\\\"\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BhcEwZBZOkb9fffTUnWgSJyYpAYXg\",\"object\":\"chat.completion.chunk\",\"created\":1749734798,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_a288987b44\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"type\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BhcEwZBZOkb9fffTUnWgSJyYpAYXg\",\"object\":\"chat.completion.chunk\",\"created\":1749734798,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_a288987b44\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"\\\":\\\"\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BhcEwZBZOkb9fffTUnWgSJyYpAYXg\",\"object\":\"chat.completion.chunk\",\"created\":1749734798,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_a288987b44\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"text\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BhcEwZBZOkb9fffTUnWgSJyYpAYXg\",\"object\":\"chat.completion.chunk\",\"created\":1749734798,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_a288987b44\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"\\\",\\\"\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BhcEwZBZOkb9fffTUnWgSJyYpAYXg\",\"object\":\"chat.completion.chunk\",\"created\":1749734798,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_a288987b44\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"text\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BhcEwZBZOkb9fffTUnWgSJyYpAYXg\",\"object\":\"chat.completion.chunk\",\"created\":1749734798,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_a288987b44\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"\\\":\\\"\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BhcEwZBZOkb9fffTUnWgSJyYpAYXg\",\"object\":\"chat.completion.chunk\",\"created\":1749734798,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_a288987b44\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"console\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BhcEwZBZOkb9fffTUnWgSJyYpAYXg\",\"object\":\"chat.completion.chunk\",\"created\":1749734798,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_a288987b44\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\".log\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BhcEwZBZOkb9fffTUnWgSJyYpAYXg\",\"object\":\"chat.completion.chunk\",\"created\":1749734798,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_a288987b44\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"('\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BhcEwZBZOkb9fffTUnWgSJyYpAYXg\",\"object\":\"chat.completion.chunk\",\"created\":1749734798,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_a288987b44\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"hello\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BhcEwZBZOkb9fffTUnWgSJyYpAYXg\",\"object\":\"chat.completion.chunk\",\"created\":1749734798,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_a288987b44\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\" world\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BhcEwZBZOkb9fffTUnWgSJyYpAYXg\",\"object\":\"chat.completion.chunk\",\"created\":1749734798,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_a288987b44\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"');\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BhcEwZBZOkb9fffTUnWgSJyYpAYXg\",\"object\":\"chat.completion.chunk\",\"created\":1749734798,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_a288987b44\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"\\\"}\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BhcEwZBZOkb9fffTUnWgSJyYpAYXg\",\"object\":\"chat.completion.chunk\",\"created\":1749734798,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_a288987b44\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"],\\\"\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BhcEwZBZOkb9fffTUnWgSJyYpAYXg\",\"object\":\"chat.completion.chunk\",\"created\":1749734798,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_a288987b44\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"props\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BhcEwZBZOkb9fffTUnWgSJyYpAYXg\",\"object\":\"chat.completion.chunk\",\"created\":1749734798,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_a288987b44\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"\\\":{\\\"\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BhcEwZBZOkb9fffTUnWgSJyYpAYXg\",\"object\":\"chat.completion.chunk\",\"created\":1749734798,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_a288987b44\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"language\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BhcEwZBZOkb9fffTUnWgSJyYpAYXg\",\"object\":\"chat.completion.chunk\",\"created\":1749734798,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_a288987b44\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"\\\":\\\"\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BhcEwZBZOkb9fffTUnWgSJyYpAYXg\",\"object\":\"chat.completion.chunk\",\"created\":1749734798,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_a288987b44\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"javascript\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BhcEwZBZOkb9fffTUnWgSJyYpAYXg\",\"object\":\"chat.completion.chunk\",\"created\":1749734798,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_a288987b44\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"\\\"}}\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BhcEwZBZOkb9fffTUnWgSJyYpAYXg\",\"object\":\"chat.completion.chunk\",\"created\":1749734798,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_a288987b44\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"]}\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BhcEwZBZOkb9fffTUnWgSJyYpAYXg\",\"object\":\"chat.completion.chunk\",\"created\":1749734798,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_a288987b44\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"]}\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BhcEwZBZOkb9fffTUnWgSJyYpAYXg\",\"object\":\"chat.completion.chunk\",\"created\":1749734798,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_a288987b44\",\"choices\":[{\"index\":0,\"delta\":{},\"logprobs\":null,\"finish_reason\":\"stop\"}]}\n\ndata: [DONE]\n\n", "headers": [] } } \ No newline at end of file diff --git a/packages/xl-ai/src/api/formats/json/__snapshots__/json.test.ts/Add/__msw_snapshots__/openai.chat/gpt-4o-2024-08-06 (streaming)/add a list (end)_1_97ac96ad778b2e833c0e43c1a2221a4f.json b/packages/xl-ai/src/api/formats/json/__snapshots__/json.test.ts/Add/__msw_snapshots__/openai.chat/gpt-4o-2024-08-06 (streaming)/add a list (end)_1_97ac96ad778b2e833c0e43c1a2221a4f.json index d2e82eea5a..0ec60cde50 100644 --- a/packages/xl-ai/src/api/formats/json/__snapshots__/json.test.ts/Add/__msw_snapshots__/openai.chat/gpt-4o-2024-08-06 (streaming)/add a list (end)_1_97ac96ad778b2e833c0e43c1a2221a4f.json +++ b/packages/xl-ai/src/api/formats/json/__snapshots__/json.test.ts/Add/__msw_snapshots__/openai.chat/gpt-4o-2024-08-06 (streaming)/add a list (end)_1_97ac96ad778b2e833c0e43c1a2221a4f.json @@ -9,7 +9,7 @@ "response": { "status": 200, "statusText": "", - "body": "data: {\"id\":\"chatcmpl-BhZtJBv8HDBX0oul92eqJuHgHWvQE\",\"object\":\"chat.completion.chunk\",\"created\":1749725769,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_a288987b44\",\"choices\":[{\"index\":0,\"delta\":{\"role\":\"assistant\",\"content\":null,\"tool_calls\":[{\"index\":0,\"id\":\"call_wV7TIoQ8Yl7Zx6zqOSwG4oFG\",\"type\":\"function\",\"function\":{\"name\":\"json\",\"arguments\":\"\"}}],\"refusal\":null},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BhZtJBv8HDBX0oul92eqJuHgHWvQE\",\"object\":\"chat.completion.chunk\",\"created\":1749725769,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_a288987b44\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"{\\\"\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BhZtJBv8HDBX0oul92eqJuHgHWvQE\",\"object\":\"chat.completion.chunk\",\"created\":1749725769,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_a288987b44\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"operations\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BhZtJBv8HDBX0oul92eqJuHgHWvQE\",\"object\":\"chat.completion.chunk\",\"created\":1749725769,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_a288987b44\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"\\\":[\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BhZtJBv8HDBX0oul92eqJuHgHWvQE\",\"object\":\"chat.completion.chunk\",\"created\":1749725769,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_a288987b44\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"{\\\"\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BhZtJBv8HDBX0oul92eqJuHgHWvQE\",\"object\":\"chat.completion.chunk\",\"created\":1749725769,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_a288987b44\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"type\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BhZtJBv8HDBX0oul92eqJuHgHWvQE\",\"object\":\"chat.completion.chunk\",\"created\":1749725769,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_a288987b44\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"\\\":\\\"\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BhZtJBv8HDBX0oul92eqJuHgHWvQE\",\"object\":\"chat.completion.chunk\",\"created\":1749725769,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_a288987b44\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"add\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BhZtJBv8HDBX0oul92eqJuHgHWvQE\",\"object\":\"chat.completion.chunk\",\"created\":1749725769,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_a288987b44\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"\\\",\\\"\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BhZtJBv8HDBX0oul92eqJuHgHWvQE\",\"object\":\"chat.completion.chunk\",\"created\":1749725769,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_a288987b44\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"reference\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BhZtJBv8HDBX0oul92eqJuHgHWvQE\",\"object\":\"chat.completion.chunk\",\"created\":1749725769,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_a288987b44\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"Id\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BhZtJBv8HDBX0oul92eqJuHgHWvQE\",\"object\":\"chat.completion.chunk\",\"created\":1749725769,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_a288987b44\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"\\\":\\\"\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BhZtJBv8HDBX0oul92eqJuHgHWvQE\",\"object\":\"chat.completion.chunk\",\"created\":1749725769,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_a288987b44\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"ref\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BhZtJBv8HDBX0oul92eqJuHgHWvQE\",\"object\":\"chat.completion.chunk\",\"created\":1749725769,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_a288987b44\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"2\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BhZtJBv8HDBX0oul92eqJuHgHWvQE\",\"object\":\"chat.completion.chunk\",\"created\":1749725769,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_a288987b44\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"$\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BhZtJBv8HDBX0oul92eqJuHgHWvQE\",\"object\":\"chat.completion.chunk\",\"created\":1749725769,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_a288987b44\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"\\\",\\\"\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BhZtJBv8HDBX0oul92eqJuHgHWvQE\",\"object\":\"chat.completion.chunk\",\"created\":1749725769,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_a288987b44\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"position\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BhZtJBv8HDBX0oul92eqJuHgHWvQE\",\"object\":\"chat.completion.chunk\",\"created\":1749725769,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_a288987b44\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"\\\":\\\"\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BhZtJBv8HDBX0oul92eqJuHgHWvQE\",\"object\":\"chat.completion.chunk\",\"created\":1749725769,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_a288987b44\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"after\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BhZtJBv8HDBX0oul92eqJuHgHWvQE\",\"object\":\"chat.completion.chunk\",\"created\":1749725769,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_a288987b44\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"\\\",\\\"\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BhZtJBv8HDBX0oul92eqJuHgHWvQE\",\"object\":\"chat.completion.chunk\",\"created\":1749725769,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_a288987b44\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"blocks\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BhZtJBv8HDBX0oul92eqJuHgHWvQE\",\"object\":\"chat.completion.chunk\",\"created\":1749725769,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_a288987b44\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"\\\":[\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BhZtJBv8HDBX0oul92eqJuHgHWvQE\",\"object\":\"chat.completion.chunk\",\"created\":1749725769,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_a288987b44\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"{\\\"\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BhZtJBv8HDBX0oul92eqJuHgHWvQE\",\"object\":\"chat.completion.chunk\",\"created\":1749725769,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_a288987b44\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"type\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BhZtJBv8HDBX0oul92eqJuHgHWvQE\",\"object\":\"chat.completion.chunk\",\"created\":1749725769,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_a288987b44\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"\\\":\\\"\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BhZtJBv8HDBX0oul92eqJuHgHWvQE\",\"object\":\"chat.completion.chunk\",\"created\":1749725769,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_a288987b44\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"bullet\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BhZtJBv8HDBX0oul92eqJuHgHWvQE\",\"object\":\"chat.completion.chunk\",\"created\":1749725769,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_a288987b44\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"List\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BhZtJBv8HDBX0oul92eqJuHgHWvQE\",\"object\":\"chat.completion.chunk\",\"created\":1749725769,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_a288987b44\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"Item\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BhZtJBv8HDBX0oul92eqJuHgHWvQE\",\"object\":\"chat.completion.chunk\",\"created\":1749725769,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_a288987b44\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"\\\",\\\"\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BhZtJBv8HDBX0oul92eqJuHgHWvQE\",\"object\":\"chat.completion.chunk\",\"created\":1749725769,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_a288987b44\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"content\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BhZtJBv8HDBX0oul92eqJuHgHWvQE\",\"object\":\"chat.completion.chunk\",\"created\":1749725769,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_a288987b44\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"\\\":[\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BhZtJBv8HDBX0oul92eqJuHgHWvQE\",\"object\":\"chat.completion.chunk\",\"created\":1749725769,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_a288987b44\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"{\\\"\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BhZtJBv8HDBX0oul92eqJuHgHWvQE\",\"object\":\"chat.completion.chunk\",\"created\":1749725769,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_a288987b44\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"type\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BhZtJBv8HDBX0oul92eqJuHgHWvQE\",\"object\":\"chat.completion.chunk\",\"created\":1749725769,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_a288987b44\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"\\\":\\\"\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BhZtJBv8HDBX0oul92eqJuHgHWvQE\",\"object\":\"chat.completion.chunk\",\"created\":1749725769,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_a288987b44\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"text\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BhZtJBv8HDBX0oul92eqJuHgHWvQE\",\"object\":\"chat.completion.chunk\",\"created\":1749725769,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_a288987b44\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"\\\",\\\"\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BhZtJBv8HDBX0oul92eqJuHgHWvQE\",\"object\":\"chat.completion.chunk\",\"created\":1749725769,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_a288987b44\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"text\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BhZtJBv8HDBX0oul92eqJuHgHWvQE\",\"object\":\"chat.completion.chunk\",\"created\":1749725769,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_a288987b44\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"\\\":\\\"\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BhZtJBv8HDBX0oul92eqJuHgHWvQE\",\"object\":\"chat.completion.chunk\",\"created\":1749725769,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_a288987b44\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"Ap\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BhZtJBv8HDBX0oul92eqJuHgHWvQE\",\"object\":\"chat.completion.chunk\",\"created\":1749725769,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_a288987b44\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"ples\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BhZtJBv8HDBX0oul92eqJuHgHWvQE\",\"object\":\"chat.completion.chunk\",\"created\":1749725769,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_a288987b44\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"\\\",\\\"\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BhZtJBv8HDBX0oul92eqJuHgHWvQE\",\"object\":\"chat.completion.chunk\",\"created\":1749725769,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_a288987b44\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"styles\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BhZtJBv8HDBX0oul92eqJuHgHWvQE\",\"object\":\"chat.completion.chunk\",\"created\":1749725769,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_a288987b44\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"\\\":\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BhZtJBv8HDBX0oul92eqJuHgHWvQE\",\"object\":\"chat.completion.chunk\",\"created\":1749725769,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_a288987b44\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"{\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BhZtJBv8HDBX0oul92eqJuHgHWvQE\",\"object\":\"chat.completion.chunk\",\"created\":1749725769,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_a288987b44\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"}}\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BhZtJBv8HDBX0oul92eqJuHgHWvQE\",\"object\":\"chat.completion.chunk\",\"created\":1749725769,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_a288987b44\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"]\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BhZtJBv8HDBX0oul92eqJuHgHWvQE\",\"object\":\"chat.completion.chunk\",\"created\":1749725769,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_a288987b44\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"},{\\\"\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BhZtJBv8HDBX0oul92eqJuHgHWvQE\",\"object\":\"chat.completion.chunk\",\"created\":1749725769,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_a288987b44\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"type\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BhZtJBv8HDBX0oul92eqJuHgHWvQE\",\"object\":\"chat.completion.chunk\",\"created\":1749725769,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_a288987b44\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"\\\":\\\"\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BhZtJBv8HDBX0oul92eqJuHgHWvQE\",\"object\":\"chat.completion.chunk\",\"created\":1749725769,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_a288987b44\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"bullet\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BhZtJBv8HDBX0oul92eqJuHgHWvQE\",\"object\":\"chat.completion.chunk\",\"created\":1749725769,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_a288987b44\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"List\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BhZtJBv8HDBX0oul92eqJuHgHWvQE\",\"object\":\"chat.completion.chunk\",\"created\":1749725769,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_a288987b44\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"Item\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BhZtJBv8HDBX0oul92eqJuHgHWvQE\",\"object\":\"chat.completion.chunk\",\"created\":1749725769,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_a288987b44\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"\\\",\\\"\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BhZtJBv8HDBX0oul92eqJuHgHWvQE\",\"object\":\"chat.completion.chunk\",\"created\":1749725769,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_a288987b44\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"content\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BhZtJBv8HDBX0oul92eqJuHgHWvQE\",\"object\":\"chat.completion.chunk\",\"created\":1749725769,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_a288987b44\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"\\\":[\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BhZtJBv8HDBX0oul92eqJuHgHWvQE\",\"object\":\"chat.completion.chunk\",\"created\":1749725769,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_a288987b44\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"{\\\"\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BhZtJBv8HDBX0oul92eqJuHgHWvQE\",\"object\":\"chat.completion.chunk\",\"created\":1749725769,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_a288987b44\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"type\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BhZtJBv8HDBX0oul92eqJuHgHWvQE\",\"object\":\"chat.completion.chunk\",\"created\":1749725769,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_a288987b44\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"\\\":\\\"\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BhZtJBv8HDBX0oul92eqJuHgHWvQE\",\"object\":\"chat.completion.chunk\",\"created\":1749725769,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_a288987b44\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"text\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BhZtJBv8HDBX0oul92eqJuHgHWvQE\",\"object\":\"chat.completion.chunk\",\"created\":1749725769,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_a288987b44\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"\\\",\\\"\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BhZtJBv8HDBX0oul92eqJuHgHWvQE\",\"object\":\"chat.completion.chunk\",\"created\":1749725769,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_a288987b44\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"text\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BhZtJBv8HDBX0oul92eqJuHgHWvQE\",\"object\":\"chat.completion.chunk\",\"created\":1749725769,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_a288987b44\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"\\\":\\\"\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BhZtJBv8HDBX0oul92eqJuHgHWvQE\",\"object\":\"chat.completion.chunk\",\"created\":1749725769,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_a288987b44\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"Ban\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BhZtJBv8HDBX0oul92eqJuHgHWvQE\",\"object\":\"chat.completion.chunk\",\"created\":1749725769,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_a288987b44\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"anas\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BhZtJBv8HDBX0oul92eqJuHgHWvQE\",\"object\":\"chat.completion.chunk\",\"created\":1749725769,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_a288987b44\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"\\\",\\\"\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BhZtJBv8HDBX0oul92eqJuHgHWvQE\",\"object\":\"chat.completion.chunk\",\"created\":1749725769,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_a288987b44\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"styles\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BhZtJBv8HDBX0oul92eqJuHgHWvQE\",\"object\":\"chat.completion.chunk\",\"created\":1749725769,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_a288987b44\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"\\\":\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BhZtJBv8HDBX0oul92eqJuHgHWvQE\",\"object\":\"chat.completion.chunk\",\"created\":1749725769,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_a288987b44\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"{\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BhZtJBv8HDBX0oul92eqJuHgHWvQE\",\"object\":\"chat.completion.chunk\",\"created\":1749725769,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_a288987b44\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"}}\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BhZtJBv8HDBX0oul92eqJuHgHWvQE\",\"object\":\"chat.completion.chunk\",\"created\":1749725769,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_a288987b44\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"]}\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BhZtJBv8HDBX0oul92eqJuHgHWvQE\",\"object\":\"chat.completion.chunk\",\"created\":1749725769,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_a288987b44\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"]}\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BhZtJBv8HDBX0oul92eqJuHgHWvQE\",\"object\":\"chat.completion.chunk\",\"created\":1749725769,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_a288987b44\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"]}\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BhZtJBv8HDBX0oul92eqJuHgHWvQE\",\"object\":\"chat.completion.chunk\",\"created\":1749725769,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_a288987b44\",\"choices\":[{\"index\":0,\"delta\":{},\"logprobs\":null,\"finish_reason\":\"stop\"}]}\n\ndata: [DONE]\n\n", + "body": "data: {\"id\":\"chatcmpl-BhcEvvYIidDGvBxDl3SffFbA16QuQ\",\"object\":\"chat.completion.chunk\",\"created\":1749734797,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_a288987b44\",\"choices\":[{\"index\":0,\"delta\":{\"role\":\"assistant\",\"content\":null,\"tool_calls\":[{\"index\":0,\"id\":\"call_4pwtHs5DOWQRlT6ti040lr3K\",\"type\":\"function\",\"function\":{\"name\":\"json\",\"arguments\":\"\"}}],\"refusal\":null},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BhcEvvYIidDGvBxDl3SffFbA16QuQ\",\"object\":\"chat.completion.chunk\",\"created\":1749734797,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_a288987b44\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"{\\\"\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BhcEvvYIidDGvBxDl3SffFbA16QuQ\",\"object\":\"chat.completion.chunk\",\"created\":1749734797,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_a288987b44\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"operations\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BhcEvvYIidDGvBxDl3SffFbA16QuQ\",\"object\":\"chat.completion.chunk\",\"created\":1749734797,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_a288987b44\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"\\\":[\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BhcEvvYIidDGvBxDl3SffFbA16QuQ\",\"object\":\"chat.completion.chunk\",\"created\":1749734797,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_a288987b44\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"{\\\"\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BhcEvvYIidDGvBxDl3SffFbA16QuQ\",\"object\":\"chat.completion.chunk\",\"created\":1749734797,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_a288987b44\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"type\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BhcEvvYIidDGvBxDl3SffFbA16QuQ\",\"object\":\"chat.completion.chunk\",\"created\":1749734797,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_a288987b44\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"\\\":\\\"\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BhcEvvYIidDGvBxDl3SffFbA16QuQ\",\"object\":\"chat.completion.chunk\",\"created\":1749734797,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_a288987b44\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"add\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BhcEvvYIidDGvBxDl3SffFbA16QuQ\",\"object\":\"chat.completion.chunk\",\"created\":1749734797,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_a288987b44\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"\\\",\\\"\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BhcEvvYIidDGvBxDl3SffFbA16QuQ\",\"object\":\"chat.completion.chunk\",\"created\":1749734797,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_a288987b44\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"reference\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BhcEvvYIidDGvBxDl3SffFbA16QuQ\",\"object\":\"chat.completion.chunk\",\"created\":1749734797,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_a288987b44\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"Id\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BhcEvvYIidDGvBxDl3SffFbA16QuQ\",\"object\":\"chat.completion.chunk\",\"created\":1749734797,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_a288987b44\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"\\\":\\\"\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BhcEvvYIidDGvBxDl3SffFbA16QuQ\",\"object\":\"chat.completion.chunk\",\"created\":1749734797,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_a288987b44\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"ref\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BhcEvvYIidDGvBxDl3SffFbA16QuQ\",\"object\":\"chat.completion.chunk\",\"created\":1749734797,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_a288987b44\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"2\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BhcEvvYIidDGvBxDl3SffFbA16QuQ\",\"object\":\"chat.completion.chunk\",\"created\":1749734797,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_a288987b44\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"$\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BhcEvvYIidDGvBxDl3SffFbA16QuQ\",\"object\":\"chat.completion.chunk\",\"created\":1749734797,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_a288987b44\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"\\\",\\\"\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BhcEvvYIidDGvBxDl3SffFbA16QuQ\",\"object\":\"chat.completion.chunk\",\"created\":1749734797,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_a288987b44\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"position\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BhcEvvYIidDGvBxDl3SffFbA16QuQ\",\"object\":\"chat.completion.chunk\",\"created\":1749734797,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_a288987b44\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"\\\":\\\"\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BhcEvvYIidDGvBxDl3SffFbA16QuQ\",\"object\":\"chat.completion.chunk\",\"created\":1749734797,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_a288987b44\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"after\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BhcEvvYIidDGvBxDl3SffFbA16QuQ\",\"object\":\"chat.completion.chunk\",\"created\":1749734797,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_a288987b44\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"\\\",\\\"\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BhcEvvYIidDGvBxDl3SffFbA16QuQ\",\"object\":\"chat.completion.chunk\",\"created\":1749734797,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_a288987b44\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"blocks\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BhcEvvYIidDGvBxDl3SffFbA16QuQ\",\"object\":\"chat.completion.chunk\",\"created\":1749734797,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_a288987b44\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"\\\":[\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BhcEvvYIidDGvBxDl3SffFbA16QuQ\",\"object\":\"chat.completion.chunk\",\"created\":1749734797,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_a288987b44\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"{\\\"\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BhcEvvYIidDGvBxDl3SffFbA16QuQ\",\"object\":\"chat.completion.chunk\",\"created\":1749734797,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_a288987b44\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"type\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BhcEvvYIidDGvBxDl3SffFbA16QuQ\",\"object\":\"chat.completion.chunk\",\"created\":1749734797,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_a288987b44\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"\\\":\\\"\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BhcEvvYIidDGvBxDl3SffFbA16QuQ\",\"object\":\"chat.completion.chunk\",\"created\":1749734797,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_a288987b44\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"bullet\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BhcEvvYIidDGvBxDl3SffFbA16QuQ\",\"object\":\"chat.completion.chunk\",\"created\":1749734797,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_a288987b44\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"List\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BhcEvvYIidDGvBxDl3SffFbA16QuQ\",\"object\":\"chat.completion.chunk\",\"created\":1749734797,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_a288987b44\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"Item\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BhcEvvYIidDGvBxDl3SffFbA16QuQ\",\"object\":\"chat.completion.chunk\",\"created\":1749734797,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_a288987b44\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"\\\",\\\"\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BhcEvvYIidDGvBxDl3SffFbA16QuQ\",\"object\":\"chat.completion.chunk\",\"created\":1749734797,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_a288987b44\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"content\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BhcEvvYIidDGvBxDl3SffFbA16QuQ\",\"object\":\"chat.completion.chunk\",\"created\":1749734797,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_a288987b44\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"\\\":[\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BhcEvvYIidDGvBxDl3SffFbA16QuQ\",\"object\":\"chat.completion.chunk\",\"created\":1749734797,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_a288987b44\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"{\\\"\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BhcEvvYIidDGvBxDl3SffFbA16QuQ\",\"object\":\"chat.completion.chunk\",\"created\":1749734797,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_a288987b44\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"type\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BhcEvvYIidDGvBxDl3SffFbA16QuQ\",\"object\":\"chat.completion.chunk\",\"created\":1749734797,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_a288987b44\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"\\\":\\\"\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BhcEvvYIidDGvBxDl3SffFbA16QuQ\",\"object\":\"chat.completion.chunk\",\"created\":1749734797,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_a288987b44\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"text\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BhcEvvYIidDGvBxDl3SffFbA16QuQ\",\"object\":\"chat.completion.chunk\",\"created\":1749734797,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_a288987b44\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"\\\",\\\"\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BhcEvvYIidDGvBxDl3SffFbA16QuQ\",\"object\":\"chat.completion.chunk\",\"created\":1749734797,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_a288987b44\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"text\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BhcEvvYIidDGvBxDl3SffFbA16QuQ\",\"object\":\"chat.completion.chunk\",\"created\":1749734797,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_a288987b44\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"\\\":\\\"\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BhcEvvYIidDGvBxDl3SffFbA16QuQ\",\"object\":\"chat.completion.chunk\",\"created\":1749734797,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_a288987b44\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"Ap\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BhcEvvYIidDGvBxDl3SffFbA16QuQ\",\"object\":\"chat.completion.chunk\",\"created\":1749734797,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_a288987b44\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"ples\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BhcEvvYIidDGvBxDl3SffFbA16QuQ\",\"object\":\"chat.completion.chunk\",\"created\":1749734797,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_a288987b44\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"\\\"}\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BhcEvvYIidDGvBxDl3SffFbA16QuQ\",\"object\":\"chat.completion.chunk\",\"created\":1749734797,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_a288987b44\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"]\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BhcEvvYIidDGvBxDl3SffFbA16QuQ\",\"object\":\"chat.completion.chunk\",\"created\":1749734797,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_a288987b44\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"},{\\\"\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BhcEvvYIidDGvBxDl3SffFbA16QuQ\",\"object\":\"chat.completion.chunk\",\"created\":1749734797,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_a288987b44\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"type\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BhcEvvYIidDGvBxDl3SffFbA16QuQ\",\"object\":\"chat.completion.chunk\",\"created\":1749734797,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_a288987b44\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"\\\":\\\"\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BhcEvvYIidDGvBxDl3SffFbA16QuQ\",\"object\":\"chat.completion.chunk\",\"created\":1749734797,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_a288987b44\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"bullet\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BhcEvvYIidDGvBxDl3SffFbA16QuQ\",\"object\":\"chat.completion.chunk\",\"created\":1749734797,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_a288987b44\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"List\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BhcEvvYIidDGvBxDl3SffFbA16QuQ\",\"object\":\"chat.completion.chunk\",\"created\":1749734797,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_a288987b44\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"Item\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BhcEvvYIidDGvBxDl3SffFbA16QuQ\",\"object\":\"chat.completion.chunk\",\"created\":1749734797,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_a288987b44\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"\\\",\\\"\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BhcEvvYIidDGvBxDl3SffFbA16QuQ\",\"object\":\"chat.completion.chunk\",\"created\":1749734797,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_a288987b44\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"content\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BhcEvvYIidDGvBxDl3SffFbA16QuQ\",\"object\":\"chat.completion.chunk\",\"created\":1749734797,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_a288987b44\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"\\\":[\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BhcEvvYIidDGvBxDl3SffFbA16QuQ\",\"object\":\"chat.completion.chunk\",\"created\":1749734797,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_a288987b44\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"{\\\"\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BhcEvvYIidDGvBxDl3SffFbA16QuQ\",\"object\":\"chat.completion.chunk\",\"created\":1749734797,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_a288987b44\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"type\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BhcEvvYIidDGvBxDl3SffFbA16QuQ\",\"object\":\"chat.completion.chunk\",\"created\":1749734797,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_a288987b44\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"\\\":\\\"\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BhcEvvYIidDGvBxDl3SffFbA16QuQ\",\"object\":\"chat.completion.chunk\",\"created\":1749734797,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_a288987b44\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"text\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BhcEvvYIidDGvBxDl3SffFbA16QuQ\",\"object\":\"chat.completion.chunk\",\"created\":1749734797,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_a288987b44\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"\\\",\\\"\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BhcEvvYIidDGvBxDl3SffFbA16QuQ\",\"object\":\"chat.completion.chunk\",\"created\":1749734797,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_a288987b44\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"text\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BhcEvvYIidDGvBxDl3SffFbA16QuQ\",\"object\":\"chat.completion.chunk\",\"created\":1749734797,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_a288987b44\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"\\\":\\\"\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BhcEvvYIidDGvBxDl3SffFbA16QuQ\",\"object\":\"chat.completion.chunk\",\"created\":1749734797,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_a288987b44\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"Ban\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BhcEvvYIidDGvBxDl3SffFbA16QuQ\",\"object\":\"chat.completion.chunk\",\"created\":1749734797,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_a288987b44\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"anas\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BhcEvvYIidDGvBxDl3SffFbA16QuQ\",\"object\":\"chat.completion.chunk\",\"created\":1749734797,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_a288987b44\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"\\\"}\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BhcEvvYIidDGvBxDl3SffFbA16QuQ\",\"object\":\"chat.completion.chunk\",\"created\":1749734797,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_a288987b44\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"]}\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BhcEvvYIidDGvBxDl3SffFbA16QuQ\",\"object\":\"chat.completion.chunk\",\"created\":1749734797,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_a288987b44\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"]}\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BhcEvvYIidDGvBxDl3SffFbA16QuQ\",\"object\":\"chat.completion.chunk\",\"created\":1749734797,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_a288987b44\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"]}\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BhcEvvYIidDGvBxDl3SffFbA16QuQ\",\"object\":\"chat.completion.chunk\",\"created\":1749734797,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_a288987b44\",\"choices\":[{\"index\":0,\"delta\":{},\"logprobs\":null,\"finish_reason\":\"stop\"}]}\n\ndata: [DONE]\n\n", "headers": [] } } \ No newline at end of file diff --git a/packages/xl-ai/src/api/formats/json/__snapshots__/json.test.ts/Add/__msw_snapshots__/openai.chat/gpt-4o-2024-08-06 (streaming)/add a new paragraph (empty doc)_1_25dfbd403ed079997ccc162bd02defa7.json b/packages/xl-ai/src/api/formats/json/__snapshots__/json.test.ts/Add/__msw_snapshots__/openai.chat/gpt-4o-2024-08-06 (streaming)/add a new paragraph (empty doc)_1_25dfbd403ed079997ccc162bd02defa7.json index dc4ba2057b..b0accda2d4 100644 --- a/packages/xl-ai/src/api/formats/json/__snapshots__/json.test.ts/Add/__msw_snapshots__/openai.chat/gpt-4o-2024-08-06 (streaming)/add a new paragraph (empty doc)_1_25dfbd403ed079997ccc162bd02defa7.json +++ b/packages/xl-ai/src/api/formats/json/__snapshots__/json.test.ts/Add/__msw_snapshots__/openai.chat/gpt-4o-2024-08-06 (streaming)/add a new paragraph (empty doc)_1_25dfbd403ed079997ccc162bd02defa7.json @@ -9,7 +9,7 @@ "response": { "status": 200, "statusText": "", - "body": "data: {\"id\":\"chatcmpl-BhZtL0DWdXqFtmqgzLZRNeczfqEKO\",\"object\":\"chat.completion.chunk\",\"created\":1749725771,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_a288987b44\",\"choices\":[{\"index\":0,\"delta\":{\"role\":\"assistant\",\"content\":null,\"tool_calls\":[{\"index\":0,\"id\":\"call_hwTr1pSnCdqrlSJDuVej9qxD\",\"type\":\"function\",\"function\":{\"name\":\"json\",\"arguments\":\"\"}}],\"refusal\":null},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BhZtL0DWdXqFtmqgzLZRNeczfqEKO\",\"object\":\"chat.completion.chunk\",\"created\":1749725771,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_a288987b44\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"{\\\"\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BhZtL0DWdXqFtmqgzLZRNeczfqEKO\",\"object\":\"chat.completion.chunk\",\"created\":1749725771,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_a288987b44\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"operations\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BhZtL0DWdXqFtmqgzLZRNeczfqEKO\",\"object\":\"chat.completion.chunk\",\"created\":1749725771,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_a288987b44\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"\\\":[\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BhZtL0DWdXqFtmqgzLZRNeczfqEKO\",\"object\":\"chat.completion.chunk\",\"created\":1749725771,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_a288987b44\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"{\\\"\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BhZtL0DWdXqFtmqgzLZRNeczfqEKO\",\"object\":\"chat.completion.chunk\",\"created\":1749725771,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_a288987b44\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"type\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BhZtL0DWdXqFtmqgzLZRNeczfqEKO\",\"object\":\"chat.completion.chunk\",\"created\":1749725771,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_a288987b44\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"\\\":\\\"\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BhZtL0DWdXqFtmqgzLZRNeczfqEKO\",\"object\":\"chat.completion.chunk\",\"created\":1749725771,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_a288987b44\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"update\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BhZtL0DWdXqFtmqgzLZRNeczfqEKO\",\"object\":\"chat.completion.chunk\",\"created\":1749725771,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_a288987b44\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"\\\",\\\"\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BhZtL0DWdXqFtmqgzLZRNeczfqEKO\",\"object\":\"chat.completion.chunk\",\"created\":1749725771,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_a288987b44\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"id\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BhZtL0DWdXqFtmqgzLZRNeczfqEKO\",\"object\":\"chat.completion.chunk\",\"created\":1749725771,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_a288987b44\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"\\\":\\\"\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BhZtL0DWdXqFtmqgzLZRNeczfqEKO\",\"object\":\"chat.completion.chunk\",\"created\":1749725771,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_a288987b44\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"ref\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BhZtL0DWdXqFtmqgzLZRNeczfqEKO\",\"object\":\"chat.completion.chunk\",\"created\":1749725771,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_a288987b44\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"1\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BhZtL0DWdXqFtmqgzLZRNeczfqEKO\",\"object\":\"chat.completion.chunk\",\"created\":1749725771,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_a288987b44\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"$\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BhZtL0DWdXqFtmqgzLZRNeczfqEKO\",\"object\":\"chat.completion.chunk\",\"created\":1749725771,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_a288987b44\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"\\\",\\\"\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BhZtL0DWdXqFtmqgzLZRNeczfqEKO\",\"object\":\"chat.completion.chunk\",\"created\":1749725771,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_a288987b44\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"block\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BhZtL0DWdXqFtmqgzLZRNeczfqEKO\",\"object\":\"chat.completion.chunk\",\"created\":1749725771,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_a288987b44\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"\\\":{\\\"\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BhZtL0DWdXqFtmqgzLZRNeczfqEKO\",\"object\":\"chat.completion.chunk\",\"created\":1749725771,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_a288987b44\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"type\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BhZtL0DWdXqFtmqgzLZRNeczfqEKO\",\"object\":\"chat.completion.chunk\",\"created\":1749725771,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_a288987b44\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"\\\":\\\"\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BhZtL0DWdXqFtmqgzLZRNeczfqEKO\",\"object\":\"chat.completion.chunk\",\"created\":1749725771,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_a288987b44\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"paragraph\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BhZtL0DWdXqFtmqgzLZRNeczfqEKO\",\"object\":\"chat.completion.chunk\",\"created\":1749725771,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_a288987b44\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"\\\",\\\"\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BhZtL0DWdXqFtmqgzLZRNeczfqEKO\",\"object\":\"chat.completion.chunk\",\"created\":1749725771,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_a288987b44\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"content\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BhZtL0DWdXqFtmqgzLZRNeczfqEKO\",\"object\":\"chat.completion.chunk\",\"created\":1749725771,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_a288987b44\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"\\\":[\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BhZtL0DWdXqFtmqgzLZRNeczfqEKO\",\"object\":\"chat.completion.chunk\",\"created\":1749725771,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_a288987b44\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"{\\\"\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BhZtL0DWdXqFtmqgzLZRNeczfqEKO\",\"object\":\"chat.completion.chunk\",\"created\":1749725771,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_a288987b44\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"type\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BhZtL0DWdXqFtmqgzLZRNeczfqEKO\",\"object\":\"chat.completion.chunk\",\"created\":1749725771,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_a288987b44\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"\\\":\\\"\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BhZtL0DWdXqFtmqgzLZRNeczfqEKO\",\"object\":\"chat.completion.chunk\",\"created\":1749725771,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_a288987b44\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"text\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BhZtL0DWdXqFtmqgzLZRNeczfqEKO\",\"object\":\"chat.completion.chunk\",\"created\":1749725771,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_a288987b44\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"\\\",\\\"\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BhZtL0DWdXqFtmqgzLZRNeczfqEKO\",\"object\":\"chat.completion.chunk\",\"created\":1749725771,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_a288987b44\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"text\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BhZtL0DWdXqFtmqgzLZRNeczfqEKO\",\"object\":\"chat.completion.chunk\",\"created\":1749725771,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_a288987b44\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"\\\":\\\"\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BhZtL0DWdXqFtmqgzLZRNeczfqEKO\",\"object\":\"chat.completion.chunk\",\"created\":1749725771,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_a288987b44\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"You\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BhZtL0DWdXqFtmqgzLZRNeczfqEKO\",\"object\":\"chat.completion.chunk\",\"created\":1749725771,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_a288987b44\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\" look\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BhZtL0DWdXqFtmqgzLZRNeczfqEKO\",\"object\":\"chat.completion.chunk\",\"created\":1749725771,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_a288987b44\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\" great\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BhZtL0DWdXqFtmqgzLZRNeczfqEKO\",\"object\":\"chat.completion.chunk\",\"created\":1749725771,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_a288987b44\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\" today\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BhZtL0DWdXqFtmqgzLZRNeczfqEKO\",\"object\":\"chat.completion.chunk\",\"created\":1749725771,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_a288987b44\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"!\\\"\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BhZtL0DWdXqFtmqgzLZRNeczfqEKO\",\"object\":\"chat.completion.chunk\",\"created\":1749725771,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_a288987b44\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"}]\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BhZtL0DWdXqFtmqgzLZRNeczfqEKO\",\"object\":\"chat.completion.chunk\",\"created\":1749725771,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_a288987b44\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"}}\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BhZtL0DWdXqFtmqgzLZRNeczfqEKO\",\"object\":\"chat.completion.chunk\",\"created\":1749725771,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_a288987b44\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"]}\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BhZtL0DWdXqFtmqgzLZRNeczfqEKO\",\"object\":\"chat.completion.chunk\",\"created\":1749725771,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_a288987b44\",\"choices\":[{\"index\":0,\"delta\":{},\"logprobs\":null,\"finish_reason\":\"stop\"}]}\n\ndata: [DONE]\n\n", + "body": "data: {\"id\":\"chatcmpl-BhcEy8aIoFx183ZZzlidxrS3RWpOT\",\"object\":\"chat.completion.chunk\",\"created\":1749734800,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_a288987b44\",\"choices\":[{\"index\":0,\"delta\":{\"role\":\"assistant\",\"content\":null,\"tool_calls\":[{\"index\":0,\"id\":\"call_ayFSzPJ7mImIVw52cLEKvAGI\",\"type\":\"function\",\"function\":{\"name\":\"json\",\"arguments\":\"\"}}],\"refusal\":null},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BhcEy8aIoFx183ZZzlidxrS3RWpOT\",\"object\":\"chat.completion.chunk\",\"created\":1749734800,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_a288987b44\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"{\\\"\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BhcEy8aIoFx183ZZzlidxrS3RWpOT\",\"object\":\"chat.completion.chunk\",\"created\":1749734800,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_a288987b44\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"operations\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BhcEy8aIoFx183ZZzlidxrS3RWpOT\",\"object\":\"chat.completion.chunk\",\"created\":1749734800,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_a288987b44\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"\\\":[\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BhcEy8aIoFx183ZZzlidxrS3RWpOT\",\"object\":\"chat.completion.chunk\",\"created\":1749734800,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_a288987b44\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"{\\\"\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BhcEy8aIoFx183ZZzlidxrS3RWpOT\",\"object\":\"chat.completion.chunk\",\"created\":1749734800,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_a288987b44\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"type\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BhcEy8aIoFx183ZZzlidxrS3RWpOT\",\"object\":\"chat.completion.chunk\",\"created\":1749734800,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_a288987b44\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"\\\":\\\"\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BhcEy8aIoFx183ZZzlidxrS3RWpOT\",\"object\":\"chat.completion.chunk\",\"created\":1749734800,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_a288987b44\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"update\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BhcEy8aIoFx183ZZzlidxrS3RWpOT\",\"object\":\"chat.completion.chunk\",\"created\":1749734800,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_a288987b44\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"\\\",\\\"\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BhcEy8aIoFx183ZZzlidxrS3RWpOT\",\"object\":\"chat.completion.chunk\",\"created\":1749734800,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_a288987b44\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"id\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BhcEy8aIoFx183ZZzlidxrS3RWpOT\",\"object\":\"chat.completion.chunk\",\"created\":1749734800,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_a288987b44\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"\\\":\\\"\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BhcEy8aIoFx183ZZzlidxrS3RWpOT\",\"object\":\"chat.completion.chunk\",\"created\":1749734800,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_a288987b44\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"ref\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BhcEy8aIoFx183ZZzlidxrS3RWpOT\",\"object\":\"chat.completion.chunk\",\"created\":1749734800,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_a288987b44\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"1\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BhcEy8aIoFx183ZZzlidxrS3RWpOT\",\"object\":\"chat.completion.chunk\",\"created\":1749734800,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_a288987b44\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"$\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BhcEy8aIoFx183ZZzlidxrS3RWpOT\",\"object\":\"chat.completion.chunk\",\"created\":1749734800,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_a288987b44\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"\\\",\\\"\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BhcEy8aIoFx183ZZzlidxrS3RWpOT\",\"object\":\"chat.completion.chunk\",\"created\":1749734800,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_a288987b44\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"block\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BhcEy8aIoFx183ZZzlidxrS3RWpOT\",\"object\":\"chat.completion.chunk\",\"created\":1749734800,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_a288987b44\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"\\\":{\\\"\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BhcEy8aIoFx183ZZzlidxrS3RWpOT\",\"object\":\"chat.completion.chunk\",\"created\":1749734800,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_a288987b44\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"type\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BhcEy8aIoFx183ZZzlidxrS3RWpOT\",\"object\":\"chat.completion.chunk\",\"created\":1749734800,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_a288987b44\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"\\\":\\\"\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BhcEy8aIoFx183ZZzlidxrS3RWpOT\",\"object\":\"chat.completion.chunk\",\"created\":1749734800,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_a288987b44\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"paragraph\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BhcEy8aIoFx183ZZzlidxrS3RWpOT\",\"object\":\"chat.completion.chunk\",\"created\":1749734800,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_a288987b44\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"\\\",\\\"\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BhcEy8aIoFx183ZZzlidxrS3RWpOT\",\"object\":\"chat.completion.chunk\",\"created\":1749734800,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_a288987b44\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"content\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BhcEy8aIoFx183ZZzlidxrS3RWpOT\",\"object\":\"chat.completion.chunk\",\"created\":1749734800,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_a288987b44\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"\\\":[\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BhcEy8aIoFx183ZZzlidxrS3RWpOT\",\"object\":\"chat.completion.chunk\",\"created\":1749734800,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_a288987b44\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"{\\\"\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BhcEy8aIoFx183ZZzlidxrS3RWpOT\",\"object\":\"chat.completion.chunk\",\"created\":1749734800,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_a288987b44\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"type\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BhcEy8aIoFx183ZZzlidxrS3RWpOT\",\"object\":\"chat.completion.chunk\",\"created\":1749734800,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_a288987b44\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"\\\":\\\"\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BhcEy8aIoFx183ZZzlidxrS3RWpOT\",\"object\":\"chat.completion.chunk\",\"created\":1749734800,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_a288987b44\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"text\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BhcEy8aIoFx183ZZzlidxrS3RWpOT\",\"object\":\"chat.completion.chunk\",\"created\":1749734800,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_a288987b44\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"\\\",\\\"\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BhcEy8aIoFx183ZZzlidxrS3RWpOT\",\"object\":\"chat.completion.chunk\",\"created\":1749734800,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_a288987b44\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"text\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BhcEy8aIoFx183ZZzlidxrS3RWpOT\",\"object\":\"chat.completion.chunk\",\"created\":1749734800,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_a288987b44\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"\\\":\\\"\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BhcEy8aIoFx183ZZzlidxrS3RWpOT\",\"object\":\"chat.completion.chunk\",\"created\":1749734800,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_a288987b44\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"You\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BhcEy8aIoFx183ZZzlidxrS3RWpOT\",\"object\":\"chat.completion.chunk\",\"created\":1749734800,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_a288987b44\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\" look\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BhcEy8aIoFx183ZZzlidxrS3RWpOT\",\"object\":\"chat.completion.chunk\",\"created\":1749734800,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_a288987b44\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\" great\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BhcEy8aIoFx183ZZzlidxrS3RWpOT\",\"object\":\"chat.completion.chunk\",\"created\":1749734800,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_a288987b44\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\" today\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BhcEy8aIoFx183ZZzlidxrS3RWpOT\",\"object\":\"chat.completion.chunk\",\"created\":1749734800,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_a288987b44\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"!\\\"\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BhcEy8aIoFx183ZZzlidxrS3RWpOT\",\"object\":\"chat.completion.chunk\",\"created\":1749734800,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_a288987b44\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"}]\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BhcEy8aIoFx183ZZzlidxrS3RWpOT\",\"object\":\"chat.completion.chunk\",\"created\":1749734800,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_a288987b44\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"}}\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BhcEy8aIoFx183ZZzlidxrS3RWpOT\",\"object\":\"chat.completion.chunk\",\"created\":1749734800,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_a288987b44\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"]}\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BhcEy8aIoFx183ZZzlidxrS3RWpOT\",\"object\":\"chat.completion.chunk\",\"created\":1749734800,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_a288987b44\",\"choices\":[{\"index\":0,\"delta\":{},\"logprobs\":null,\"finish_reason\":\"stop\"}]}\n\ndata: [DONE]\n\n", "headers": [] } } \ No newline at end of file diff --git a/packages/xl-ai/src/api/formats/json/__snapshots__/json.test.ts/Add/__msw_snapshots__/openai.chat/gpt-4o-2024-08-06 (streaming)/add a new paragraph (end)_1_240d8ee34ce9447499e1ea1058a6d6e3.json b/packages/xl-ai/src/api/formats/json/__snapshots__/json.test.ts/Add/__msw_snapshots__/openai.chat/gpt-4o-2024-08-06 (streaming)/add a new paragraph (end)_1_240d8ee34ce9447499e1ea1058a6d6e3.json index da714bfb84..b16535a769 100644 --- a/packages/xl-ai/src/api/formats/json/__snapshots__/json.test.ts/Add/__msw_snapshots__/openai.chat/gpt-4o-2024-08-06 (streaming)/add a new paragraph (end)_1_240d8ee34ce9447499e1ea1058a6d6e3.json +++ b/packages/xl-ai/src/api/formats/json/__snapshots__/json.test.ts/Add/__msw_snapshots__/openai.chat/gpt-4o-2024-08-06 (streaming)/add a new paragraph (end)_1_240d8ee34ce9447499e1ea1058a6d6e3.json @@ -9,7 +9,7 @@ "response": { "status": 200, "statusText": "", - "body": "data: {\"id\":\"chatcmpl-BhZtIFnVIdS6FJQfiHu8uZWoAaI7m\",\"object\":\"chat.completion.chunk\",\"created\":1749725768,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_a288987b44\",\"choices\":[{\"index\":0,\"delta\":{\"role\":\"assistant\",\"content\":null,\"tool_calls\":[{\"index\":0,\"id\":\"call_tvEAXyI1MsvHdG0BTyiBoxIn\",\"type\":\"function\",\"function\":{\"name\":\"json\",\"arguments\":\"\"}}],\"refusal\":null},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BhZtIFnVIdS6FJQfiHu8uZWoAaI7m\",\"object\":\"chat.completion.chunk\",\"created\":1749725768,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_a288987b44\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"{\\\"\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BhZtIFnVIdS6FJQfiHu8uZWoAaI7m\",\"object\":\"chat.completion.chunk\",\"created\":1749725768,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_a288987b44\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"operations\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BhZtIFnVIdS6FJQfiHu8uZWoAaI7m\",\"object\":\"chat.completion.chunk\",\"created\":1749725768,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_a288987b44\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"\\\":[\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BhZtIFnVIdS6FJQfiHu8uZWoAaI7m\",\"object\":\"chat.completion.chunk\",\"created\":1749725768,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_a288987b44\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"{\\\"\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BhZtIFnVIdS6FJQfiHu8uZWoAaI7m\",\"object\":\"chat.completion.chunk\",\"created\":1749725768,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_a288987b44\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"type\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BhZtIFnVIdS6FJQfiHu8uZWoAaI7m\",\"object\":\"chat.completion.chunk\",\"created\":1749725768,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_a288987b44\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"\\\":\\\"\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BhZtIFnVIdS6FJQfiHu8uZWoAaI7m\",\"object\":\"chat.completion.chunk\",\"created\":1749725768,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_a288987b44\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"add\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BhZtIFnVIdS6FJQfiHu8uZWoAaI7m\",\"object\":\"chat.completion.chunk\",\"created\":1749725768,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_a288987b44\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"\\\",\\\"\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BhZtIFnVIdS6FJQfiHu8uZWoAaI7m\",\"object\":\"chat.completion.chunk\",\"created\":1749725768,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_a288987b44\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"reference\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BhZtIFnVIdS6FJQfiHu8uZWoAaI7m\",\"object\":\"chat.completion.chunk\",\"created\":1749725768,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_a288987b44\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"Id\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BhZtIFnVIdS6FJQfiHu8uZWoAaI7m\",\"object\":\"chat.completion.chunk\",\"created\":1749725768,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_a288987b44\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"\\\":\\\"\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BhZtIFnVIdS6FJQfiHu8uZWoAaI7m\",\"object\":\"chat.completion.chunk\",\"created\":1749725768,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_a288987b44\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"ref\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BhZtIFnVIdS6FJQfiHu8uZWoAaI7m\",\"object\":\"chat.completion.chunk\",\"created\":1749725768,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_a288987b44\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"2\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BhZtIFnVIdS6FJQfiHu8uZWoAaI7m\",\"object\":\"chat.completion.chunk\",\"created\":1749725768,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_a288987b44\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"$\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BhZtIFnVIdS6FJQfiHu8uZWoAaI7m\",\"object\":\"chat.completion.chunk\",\"created\":1749725768,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_a288987b44\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"\\\",\\\"\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BhZtIFnVIdS6FJQfiHu8uZWoAaI7m\",\"object\":\"chat.completion.chunk\",\"created\":1749725768,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_a288987b44\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"position\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BhZtIFnVIdS6FJQfiHu8uZWoAaI7m\",\"object\":\"chat.completion.chunk\",\"created\":1749725768,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_a288987b44\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"\\\":\\\"\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BhZtIFnVIdS6FJQfiHu8uZWoAaI7m\",\"object\":\"chat.completion.chunk\",\"created\":1749725768,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_a288987b44\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"after\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BhZtIFnVIdS6FJQfiHu8uZWoAaI7m\",\"object\":\"chat.completion.chunk\",\"created\":1749725768,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_a288987b44\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"\\\",\\\"\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BhZtIFnVIdS6FJQfiHu8uZWoAaI7m\",\"object\":\"chat.completion.chunk\",\"created\":1749725768,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_a288987b44\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"blocks\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BhZtIFnVIdS6FJQfiHu8uZWoAaI7m\",\"object\":\"chat.completion.chunk\",\"created\":1749725768,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_a288987b44\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"\\\":[\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BhZtIFnVIdS6FJQfiHu8uZWoAaI7m\",\"object\":\"chat.completion.chunk\",\"created\":1749725768,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_a288987b44\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"{\\\"\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BhZtIFnVIdS6FJQfiHu8uZWoAaI7m\",\"object\":\"chat.completion.chunk\",\"created\":1749725768,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_a288987b44\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"type\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BhZtIFnVIdS6FJQfiHu8uZWoAaI7m\",\"object\":\"chat.completion.chunk\",\"created\":1749725768,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_a288987b44\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"\\\":\\\"\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BhZtIFnVIdS6FJQfiHu8uZWoAaI7m\",\"object\":\"chat.completion.chunk\",\"created\":1749725768,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_a288987b44\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"paragraph\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BhZtIFnVIdS6FJQfiHu8uZWoAaI7m\",\"object\":\"chat.completion.chunk\",\"created\":1749725768,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_a288987b44\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"\\\",\\\"\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BhZtIFnVIdS6FJQfiHu8uZWoAaI7m\",\"object\":\"chat.completion.chunk\",\"created\":1749725768,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_a288987b44\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"content\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BhZtIFnVIdS6FJQfiHu8uZWoAaI7m\",\"object\":\"chat.completion.chunk\",\"created\":1749725768,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_a288987b44\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"\\\":[\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BhZtIFnVIdS6FJQfiHu8uZWoAaI7m\",\"object\":\"chat.completion.chunk\",\"created\":1749725768,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_a288987b44\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"{\\\"\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BhZtIFnVIdS6FJQfiHu8uZWoAaI7m\",\"object\":\"chat.completion.chunk\",\"created\":1749725768,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_a288987b44\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"type\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BhZtIFnVIdS6FJQfiHu8uZWoAaI7m\",\"object\":\"chat.completion.chunk\",\"created\":1749725768,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_a288987b44\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"\\\":\\\"\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BhZtIFnVIdS6FJQfiHu8uZWoAaI7m\",\"object\":\"chat.completion.chunk\",\"created\":1749725768,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_a288987b44\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"text\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BhZtIFnVIdS6FJQfiHu8uZWoAaI7m\",\"object\":\"chat.completion.chunk\",\"created\":1749725768,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_a288987b44\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"\\\",\\\"\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BhZtIFnVIdS6FJQfiHu8uZWoAaI7m\",\"object\":\"chat.completion.chunk\",\"created\":1749725768,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_a288987b44\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"text\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BhZtIFnVIdS6FJQfiHu8uZWoAaI7m\",\"object\":\"chat.completion.chunk\",\"created\":1749725768,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_a288987b44\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"\\\":\\\"\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BhZtIFnVIdS6FJQfiHu8uZWoAaI7m\",\"object\":\"chat.completion.chunk\",\"created\":1749725768,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_a288987b44\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"You\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BhZtIFnVIdS6FJQfiHu8uZWoAaI7m\",\"object\":\"chat.completion.chunk\",\"created\":1749725768,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_a288987b44\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\" look\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BhZtIFnVIdS6FJQfiHu8uZWoAaI7m\",\"object\":\"chat.completion.chunk\",\"created\":1749725768,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_a288987b44\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\" great\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BhZtIFnVIdS6FJQfiHu8uZWoAaI7m\",\"object\":\"chat.completion.chunk\",\"created\":1749725768,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_a288987b44\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\" today\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BhZtIFnVIdS6FJQfiHu8uZWoAaI7m\",\"object\":\"chat.completion.chunk\",\"created\":1749725768,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_a288987b44\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"!\\\"\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BhZtIFnVIdS6FJQfiHu8uZWoAaI7m\",\"object\":\"chat.completion.chunk\",\"created\":1749725768,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_a288987b44\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"}\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BhZtIFnVIdS6FJQfiHu8uZWoAaI7m\",\"object\":\"chat.completion.chunk\",\"created\":1749725768,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_a288987b44\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"]}\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BhZtIFnVIdS6FJQfiHu8uZWoAaI7m\",\"object\":\"chat.completion.chunk\",\"created\":1749725768,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_a288987b44\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"]}\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BhZtIFnVIdS6FJQfiHu8uZWoAaI7m\",\"object\":\"chat.completion.chunk\",\"created\":1749725768,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_a288987b44\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"]}\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BhZtIFnVIdS6FJQfiHu8uZWoAaI7m\",\"object\":\"chat.completion.chunk\",\"created\":1749725768,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_a288987b44\",\"choices\":[{\"index\":0,\"delta\":{},\"logprobs\":null,\"finish_reason\":\"stop\"}]}\n\ndata: [DONE]\n\n", + "body": "data: {\"id\":\"chatcmpl-BhcEuTZitiQJN8K3sLXmhkCrt50Zi\",\"object\":\"chat.completion.chunk\",\"created\":1749734796,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_a288987b44\",\"choices\":[{\"index\":0,\"delta\":{\"role\":\"assistant\",\"content\":null,\"tool_calls\":[{\"index\":0,\"id\":\"call_DRhu5CZg57ag01xF1v8Ylmhb\",\"type\":\"function\",\"function\":{\"name\":\"json\",\"arguments\":\"\"}}],\"refusal\":null},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BhcEuTZitiQJN8K3sLXmhkCrt50Zi\",\"object\":\"chat.completion.chunk\",\"created\":1749734796,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_a288987b44\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"{\\\"\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BhcEuTZitiQJN8K3sLXmhkCrt50Zi\",\"object\":\"chat.completion.chunk\",\"created\":1749734796,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_a288987b44\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"operations\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BhcEuTZitiQJN8K3sLXmhkCrt50Zi\",\"object\":\"chat.completion.chunk\",\"created\":1749734796,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_a288987b44\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"\\\":[\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BhcEuTZitiQJN8K3sLXmhkCrt50Zi\",\"object\":\"chat.completion.chunk\",\"created\":1749734796,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_a288987b44\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"{\\\"\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BhcEuTZitiQJN8K3sLXmhkCrt50Zi\",\"object\":\"chat.completion.chunk\",\"created\":1749734796,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_a288987b44\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"type\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BhcEuTZitiQJN8K3sLXmhkCrt50Zi\",\"object\":\"chat.completion.chunk\",\"created\":1749734796,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_a288987b44\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"\\\":\\\"\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BhcEuTZitiQJN8K3sLXmhkCrt50Zi\",\"object\":\"chat.completion.chunk\",\"created\":1749734796,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_a288987b44\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"add\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BhcEuTZitiQJN8K3sLXmhkCrt50Zi\",\"object\":\"chat.completion.chunk\",\"created\":1749734796,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_a288987b44\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"\\\",\\\"\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BhcEuTZitiQJN8K3sLXmhkCrt50Zi\",\"object\":\"chat.completion.chunk\",\"created\":1749734796,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_a288987b44\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"reference\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BhcEuTZitiQJN8K3sLXmhkCrt50Zi\",\"object\":\"chat.completion.chunk\",\"created\":1749734796,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_a288987b44\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"Id\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BhcEuTZitiQJN8K3sLXmhkCrt50Zi\",\"object\":\"chat.completion.chunk\",\"created\":1749734796,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_a288987b44\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"\\\":\\\"\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BhcEuTZitiQJN8K3sLXmhkCrt50Zi\",\"object\":\"chat.completion.chunk\",\"created\":1749734796,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_a288987b44\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"ref\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BhcEuTZitiQJN8K3sLXmhkCrt50Zi\",\"object\":\"chat.completion.chunk\",\"created\":1749734796,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_a288987b44\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"2\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BhcEuTZitiQJN8K3sLXmhkCrt50Zi\",\"object\":\"chat.completion.chunk\",\"created\":1749734796,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_a288987b44\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"$\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BhcEuTZitiQJN8K3sLXmhkCrt50Zi\",\"object\":\"chat.completion.chunk\",\"created\":1749734796,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_a288987b44\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"\\\",\\\"\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BhcEuTZitiQJN8K3sLXmhkCrt50Zi\",\"object\":\"chat.completion.chunk\",\"created\":1749734796,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_a288987b44\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"position\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BhcEuTZitiQJN8K3sLXmhkCrt50Zi\",\"object\":\"chat.completion.chunk\",\"created\":1749734796,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_a288987b44\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"\\\":\\\"\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BhcEuTZitiQJN8K3sLXmhkCrt50Zi\",\"object\":\"chat.completion.chunk\",\"created\":1749734796,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_a288987b44\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"after\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BhcEuTZitiQJN8K3sLXmhkCrt50Zi\",\"object\":\"chat.completion.chunk\",\"created\":1749734796,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_a288987b44\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"\\\",\\\"\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BhcEuTZitiQJN8K3sLXmhkCrt50Zi\",\"object\":\"chat.completion.chunk\",\"created\":1749734796,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_a288987b44\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"blocks\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BhcEuTZitiQJN8K3sLXmhkCrt50Zi\",\"object\":\"chat.completion.chunk\",\"created\":1749734796,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_a288987b44\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"\\\":[\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BhcEuTZitiQJN8K3sLXmhkCrt50Zi\",\"object\":\"chat.completion.chunk\",\"created\":1749734796,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_a288987b44\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"{\\\"\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BhcEuTZitiQJN8K3sLXmhkCrt50Zi\",\"object\":\"chat.completion.chunk\",\"created\":1749734796,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_a288987b44\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"type\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BhcEuTZitiQJN8K3sLXmhkCrt50Zi\",\"object\":\"chat.completion.chunk\",\"created\":1749734796,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_a288987b44\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"\\\":\\\"\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BhcEuTZitiQJN8K3sLXmhkCrt50Zi\",\"object\":\"chat.completion.chunk\",\"created\":1749734796,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_a288987b44\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"paragraph\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BhcEuTZitiQJN8K3sLXmhkCrt50Zi\",\"object\":\"chat.completion.chunk\",\"created\":1749734796,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_a288987b44\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"\\\",\\\"\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BhcEuTZitiQJN8K3sLXmhkCrt50Zi\",\"object\":\"chat.completion.chunk\",\"created\":1749734796,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_a288987b44\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"content\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BhcEuTZitiQJN8K3sLXmhkCrt50Zi\",\"object\":\"chat.completion.chunk\",\"created\":1749734796,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_a288987b44\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"\\\":[\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BhcEuTZitiQJN8K3sLXmhkCrt50Zi\",\"object\":\"chat.completion.chunk\",\"created\":1749734796,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_a288987b44\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"{\\\"\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BhcEuTZitiQJN8K3sLXmhkCrt50Zi\",\"object\":\"chat.completion.chunk\",\"created\":1749734796,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_a288987b44\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"type\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BhcEuTZitiQJN8K3sLXmhkCrt50Zi\",\"object\":\"chat.completion.chunk\",\"created\":1749734796,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_a288987b44\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"\\\":\\\"\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BhcEuTZitiQJN8K3sLXmhkCrt50Zi\",\"object\":\"chat.completion.chunk\",\"created\":1749734796,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_a288987b44\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"text\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BhcEuTZitiQJN8K3sLXmhkCrt50Zi\",\"object\":\"chat.completion.chunk\",\"created\":1749734796,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_a288987b44\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"\\\",\\\"\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BhcEuTZitiQJN8K3sLXmhkCrt50Zi\",\"object\":\"chat.completion.chunk\",\"created\":1749734796,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_a288987b44\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"text\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BhcEuTZitiQJN8K3sLXmhkCrt50Zi\",\"object\":\"chat.completion.chunk\",\"created\":1749734796,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_a288987b44\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"\\\":\\\"\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BhcEuTZitiQJN8K3sLXmhkCrt50Zi\",\"object\":\"chat.completion.chunk\",\"created\":1749734796,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_a288987b44\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"You\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BhcEuTZitiQJN8K3sLXmhkCrt50Zi\",\"object\":\"chat.completion.chunk\",\"created\":1749734796,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_a288987b44\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\" look\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BhcEuTZitiQJN8K3sLXmhkCrt50Zi\",\"object\":\"chat.completion.chunk\",\"created\":1749734796,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_a288987b44\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\" great\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BhcEuTZitiQJN8K3sLXmhkCrt50Zi\",\"object\":\"chat.completion.chunk\",\"created\":1749734796,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_a288987b44\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\" today\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BhcEuTZitiQJN8K3sLXmhkCrt50Zi\",\"object\":\"chat.completion.chunk\",\"created\":1749734796,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_a288987b44\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"!\\\"\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BhcEuTZitiQJN8K3sLXmhkCrt50Zi\",\"object\":\"chat.completion.chunk\",\"created\":1749734796,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_a288987b44\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"}\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BhcEuTZitiQJN8K3sLXmhkCrt50Zi\",\"object\":\"chat.completion.chunk\",\"created\":1749734796,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_a288987b44\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"]}\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BhcEuTZitiQJN8K3sLXmhkCrt50Zi\",\"object\":\"chat.completion.chunk\",\"created\":1749734796,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_a288987b44\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"]}\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BhcEuTZitiQJN8K3sLXmhkCrt50Zi\",\"object\":\"chat.completion.chunk\",\"created\":1749734796,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_a288987b44\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"]}\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BhcEuTZitiQJN8K3sLXmhkCrt50Zi\",\"object\":\"chat.completion.chunk\",\"created\":1749734796,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_a288987b44\",\"choices\":[{\"index\":0,\"delta\":{},\"logprobs\":null,\"finish_reason\":\"stop\"}]}\n\ndata: [DONE]\n\n", "headers": [] } } \ No newline at end of file diff --git a/packages/xl-ai/src/api/formats/json/__snapshots__/json.test.ts/Add/__msw_snapshots__/openai.chat/gpt-4o-2024-08-06 (streaming)/add a new paragraph (start)_1_ccaaaa4df61f9ed8a174034e7eb066af.json b/packages/xl-ai/src/api/formats/json/__snapshots__/json.test.ts/Add/__msw_snapshots__/openai.chat/gpt-4o-2024-08-06 (streaming)/add a new paragraph (start)_1_ccaaaa4df61f9ed8a174034e7eb066af.json index 690b628b26..89c8db13d8 100644 --- a/packages/xl-ai/src/api/formats/json/__snapshots__/json.test.ts/Add/__msw_snapshots__/openai.chat/gpt-4o-2024-08-06 (streaming)/add a new paragraph (start)_1_ccaaaa4df61f9ed8a174034e7eb066af.json +++ b/packages/xl-ai/src/api/formats/json/__snapshots__/json.test.ts/Add/__msw_snapshots__/openai.chat/gpt-4o-2024-08-06 (streaming)/add a new paragraph (start)_1_ccaaaa4df61f9ed8a174034e7eb066af.json @@ -9,7 +9,7 @@ "response": { "status": 200, "statusText": "", - "body": "data: {\"id\":\"chatcmpl-BhZtEMEelJ53Ceca2v8UsWFogg59F\",\"object\":\"chat.completion.chunk\",\"created\":1749725764,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_a288987b44\",\"choices\":[{\"index\":0,\"delta\":{\"role\":\"assistant\",\"content\":null,\"tool_calls\":[{\"index\":0,\"id\":\"call_MKu1hv5UKHlOvq6uA6FZZ0pE\",\"type\":\"function\",\"function\":{\"name\":\"json\",\"arguments\":\"\"}}],\"refusal\":null},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BhZtEMEelJ53Ceca2v8UsWFogg59F\",\"object\":\"chat.completion.chunk\",\"created\":1749725764,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_a288987b44\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"{\\\"\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BhZtEMEelJ53Ceca2v8UsWFogg59F\",\"object\":\"chat.completion.chunk\",\"created\":1749725764,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_a288987b44\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"operations\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BhZtEMEelJ53Ceca2v8UsWFogg59F\",\"object\":\"chat.completion.chunk\",\"created\":1749725764,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_a288987b44\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"\\\":[\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BhZtEMEelJ53Ceca2v8UsWFogg59F\",\"object\":\"chat.completion.chunk\",\"created\":1749725764,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_a288987b44\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"{\\\"\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BhZtEMEelJ53Ceca2v8UsWFogg59F\",\"object\":\"chat.completion.chunk\",\"created\":1749725764,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_a288987b44\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"type\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BhZtEMEelJ53Ceca2v8UsWFogg59F\",\"object\":\"chat.completion.chunk\",\"created\":1749725764,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_a288987b44\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"\\\":\\\"\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BhZtEMEelJ53Ceca2v8UsWFogg59F\",\"object\":\"chat.completion.chunk\",\"created\":1749725764,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_a288987b44\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"add\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BhZtEMEelJ53Ceca2v8UsWFogg59F\",\"object\":\"chat.completion.chunk\",\"created\":1749725764,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_a288987b44\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"\\\",\\\"\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BhZtEMEelJ53Ceca2v8UsWFogg59F\",\"object\":\"chat.completion.chunk\",\"created\":1749725764,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_a288987b44\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"reference\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BhZtEMEelJ53Ceca2v8UsWFogg59F\",\"object\":\"chat.completion.chunk\",\"created\":1749725764,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_a288987b44\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"Id\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BhZtEMEelJ53Ceca2v8UsWFogg59F\",\"object\":\"chat.completion.chunk\",\"created\":1749725764,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_a288987b44\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"\\\":\\\"\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BhZtEMEelJ53Ceca2v8UsWFogg59F\",\"object\":\"chat.completion.chunk\",\"created\":1749725764,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_a288987b44\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"ref\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BhZtEMEelJ53Ceca2v8UsWFogg59F\",\"object\":\"chat.completion.chunk\",\"created\":1749725764,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_a288987b44\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"1\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BhZtEMEelJ53Ceca2v8UsWFogg59F\",\"object\":\"chat.completion.chunk\",\"created\":1749725764,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_a288987b44\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"$\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BhZtEMEelJ53Ceca2v8UsWFogg59F\",\"object\":\"chat.completion.chunk\",\"created\":1749725764,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_a288987b44\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"\\\",\\\"\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BhZtEMEelJ53Ceca2v8UsWFogg59F\",\"object\":\"chat.completion.chunk\",\"created\":1749725764,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_a288987b44\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"position\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BhZtEMEelJ53Ceca2v8UsWFogg59F\",\"object\":\"chat.completion.chunk\",\"created\":1749725764,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_a288987b44\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"\\\":\\\"\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BhZtEMEelJ53Ceca2v8UsWFogg59F\",\"object\":\"chat.completion.chunk\",\"created\":1749725764,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_a288987b44\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"before\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BhZtEMEelJ53Ceca2v8UsWFogg59F\",\"object\":\"chat.completion.chunk\",\"created\":1749725764,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_a288987b44\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"\\\",\\\"\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BhZtEMEelJ53Ceca2v8UsWFogg59F\",\"object\":\"chat.completion.chunk\",\"created\":1749725764,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_a288987b44\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"blocks\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BhZtEMEelJ53Ceca2v8UsWFogg59F\",\"object\":\"chat.completion.chunk\",\"created\":1749725764,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_a288987b44\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"\\\":[\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BhZtEMEelJ53Ceca2v8UsWFogg59F\",\"object\":\"chat.completion.chunk\",\"created\":1749725764,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_a288987b44\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"{\\\"\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BhZtEMEelJ53Ceca2v8UsWFogg59F\",\"object\":\"chat.completion.chunk\",\"created\":1749725764,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_a288987b44\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"type\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BhZtEMEelJ53Ceca2v8UsWFogg59F\",\"object\":\"chat.completion.chunk\",\"created\":1749725764,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_a288987b44\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"\\\":\\\"\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BhZtEMEelJ53Ceca2v8UsWFogg59F\",\"object\":\"chat.completion.chunk\",\"created\":1749725764,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_a288987b44\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"paragraph\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BhZtEMEelJ53Ceca2v8UsWFogg59F\",\"object\":\"chat.completion.chunk\",\"created\":1749725764,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_a288987b44\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"\\\",\\\"\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BhZtEMEelJ53Ceca2v8UsWFogg59F\",\"object\":\"chat.completion.chunk\",\"created\":1749725764,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_a288987b44\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"content\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BhZtEMEelJ53Ceca2v8UsWFogg59F\",\"object\":\"chat.completion.chunk\",\"created\":1749725764,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_a288987b44\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"\\\":[\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BhZtEMEelJ53Ceca2v8UsWFogg59F\",\"object\":\"chat.completion.chunk\",\"created\":1749725764,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_a288987b44\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"{\\\"\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BhZtEMEelJ53Ceca2v8UsWFogg59F\",\"object\":\"chat.completion.chunk\",\"created\":1749725764,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_a288987b44\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"type\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BhZtEMEelJ53Ceca2v8UsWFogg59F\",\"object\":\"chat.completion.chunk\",\"created\":1749725764,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_a288987b44\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"\\\":\\\"\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BhZtEMEelJ53Ceca2v8UsWFogg59F\",\"object\":\"chat.completion.chunk\",\"created\":1749725764,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_a288987b44\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"text\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BhZtEMEelJ53Ceca2v8UsWFogg59F\",\"object\":\"chat.completion.chunk\",\"created\":1749725764,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_a288987b44\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"\\\",\\\"\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BhZtEMEelJ53Ceca2v8UsWFogg59F\",\"object\":\"chat.completion.chunk\",\"created\":1749725764,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_a288987b44\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"text\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BhZtEMEelJ53Ceca2v8UsWFogg59F\",\"object\":\"chat.completion.chunk\",\"created\":1749725764,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_a288987b44\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"\\\":\\\"\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BhZtEMEelJ53Ceca2v8UsWFogg59F\",\"object\":\"chat.completion.chunk\",\"created\":1749725764,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_a288987b44\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"You\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BhZtEMEelJ53Ceca2v8UsWFogg59F\",\"object\":\"chat.completion.chunk\",\"created\":1749725764,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_a288987b44\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\" look\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BhZtEMEelJ53Ceca2v8UsWFogg59F\",\"object\":\"chat.completion.chunk\",\"created\":1749725764,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_a288987b44\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\" great\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BhZtEMEelJ53Ceca2v8UsWFogg59F\",\"object\":\"chat.completion.chunk\",\"created\":1749725764,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_a288987b44\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\" today\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BhZtEMEelJ53Ceca2v8UsWFogg59F\",\"object\":\"chat.completion.chunk\",\"created\":1749725764,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_a288987b44\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"!\\\"\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BhZtEMEelJ53Ceca2v8UsWFogg59F\",\"object\":\"chat.completion.chunk\",\"created\":1749725764,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_a288987b44\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"}\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BhZtEMEelJ53Ceca2v8UsWFogg59F\",\"object\":\"chat.completion.chunk\",\"created\":1749725764,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_a288987b44\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"]}\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BhZtEMEelJ53Ceca2v8UsWFogg59F\",\"object\":\"chat.completion.chunk\",\"created\":1749725764,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_a288987b44\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"]}\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BhZtEMEelJ53Ceca2v8UsWFogg59F\",\"object\":\"chat.completion.chunk\",\"created\":1749725764,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_a288987b44\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"]}\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BhZtEMEelJ53Ceca2v8UsWFogg59F\",\"object\":\"chat.completion.chunk\",\"created\":1749725764,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_a288987b44\",\"choices\":[{\"index\":0,\"delta\":{},\"logprobs\":null,\"finish_reason\":\"stop\"}]}\n\ndata: [DONE]\n\n", + "body": "data: {\"id\":\"chatcmpl-BhcEs8BcD9KD0ldLlcykj5bdG3lys\",\"object\":\"chat.completion.chunk\",\"created\":1749734794,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_a288987b44\",\"choices\":[{\"index\":0,\"delta\":{\"role\":\"assistant\",\"content\":null,\"tool_calls\":[{\"index\":0,\"id\":\"call_kLD25tofGktns7T33mE578Em\",\"type\":\"function\",\"function\":{\"name\":\"json\",\"arguments\":\"\"}}],\"refusal\":null},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BhcEs8BcD9KD0ldLlcykj5bdG3lys\",\"object\":\"chat.completion.chunk\",\"created\":1749734794,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_a288987b44\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"{\\\"\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BhcEs8BcD9KD0ldLlcykj5bdG3lys\",\"object\":\"chat.completion.chunk\",\"created\":1749734794,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_a288987b44\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"operations\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BhcEs8BcD9KD0ldLlcykj5bdG3lys\",\"object\":\"chat.completion.chunk\",\"created\":1749734794,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_a288987b44\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"\\\":[\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BhcEs8BcD9KD0ldLlcykj5bdG3lys\",\"object\":\"chat.completion.chunk\",\"created\":1749734794,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_a288987b44\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"{\\\"\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BhcEs8BcD9KD0ldLlcykj5bdG3lys\",\"object\":\"chat.completion.chunk\",\"created\":1749734794,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_a288987b44\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"type\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BhcEs8BcD9KD0ldLlcykj5bdG3lys\",\"object\":\"chat.completion.chunk\",\"created\":1749734794,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_a288987b44\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"\\\":\\\"\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BhcEs8BcD9KD0ldLlcykj5bdG3lys\",\"object\":\"chat.completion.chunk\",\"created\":1749734794,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_a288987b44\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"add\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BhcEs8BcD9KD0ldLlcykj5bdG3lys\",\"object\":\"chat.completion.chunk\",\"created\":1749734794,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_a288987b44\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"\\\",\\\"\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BhcEs8BcD9KD0ldLlcykj5bdG3lys\",\"object\":\"chat.completion.chunk\",\"created\":1749734794,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_a288987b44\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"reference\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BhcEs8BcD9KD0ldLlcykj5bdG3lys\",\"object\":\"chat.completion.chunk\",\"created\":1749734794,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_a288987b44\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"Id\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BhcEs8BcD9KD0ldLlcykj5bdG3lys\",\"object\":\"chat.completion.chunk\",\"created\":1749734794,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_a288987b44\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"\\\":\\\"\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BhcEs8BcD9KD0ldLlcykj5bdG3lys\",\"object\":\"chat.completion.chunk\",\"created\":1749734794,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_a288987b44\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"ref\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BhcEs8BcD9KD0ldLlcykj5bdG3lys\",\"object\":\"chat.completion.chunk\",\"created\":1749734794,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_a288987b44\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"1\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BhcEs8BcD9KD0ldLlcykj5bdG3lys\",\"object\":\"chat.completion.chunk\",\"created\":1749734794,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_a288987b44\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"$\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BhcEs8BcD9KD0ldLlcykj5bdG3lys\",\"object\":\"chat.completion.chunk\",\"created\":1749734794,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_a288987b44\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"\\\",\\\"\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BhcEs8BcD9KD0ldLlcykj5bdG3lys\",\"object\":\"chat.completion.chunk\",\"created\":1749734794,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_a288987b44\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"position\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BhcEs8BcD9KD0ldLlcykj5bdG3lys\",\"object\":\"chat.completion.chunk\",\"created\":1749734794,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_a288987b44\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"\\\":\\\"\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BhcEs8BcD9KD0ldLlcykj5bdG3lys\",\"object\":\"chat.completion.chunk\",\"created\":1749734794,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_a288987b44\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"before\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BhcEs8BcD9KD0ldLlcykj5bdG3lys\",\"object\":\"chat.completion.chunk\",\"created\":1749734794,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_a288987b44\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"\\\",\\\"\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BhcEs8BcD9KD0ldLlcykj5bdG3lys\",\"object\":\"chat.completion.chunk\",\"created\":1749734794,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_a288987b44\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"blocks\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BhcEs8BcD9KD0ldLlcykj5bdG3lys\",\"object\":\"chat.completion.chunk\",\"created\":1749734794,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_a288987b44\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"\\\":[\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BhcEs8BcD9KD0ldLlcykj5bdG3lys\",\"object\":\"chat.completion.chunk\",\"created\":1749734794,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_a288987b44\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"{\\\"\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BhcEs8BcD9KD0ldLlcykj5bdG3lys\",\"object\":\"chat.completion.chunk\",\"created\":1749734794,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_a288987b44\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"type\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BhcEs8BcD9KD0ldLlcykj5bdG3lys\",\"object\":\"chat.completion.chunk\",\"created\":1749734794,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_a288987b44\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"\\\":\\\"\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BhcEs8BcD9KD0ldLlcykj5bdG3lys\",\"object\":\"chat.completion.chunk\",\"created\":1749734794,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_a288987b44\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"paragraph\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BhcEs8BcD9KD0ldLlcykj5bdG3lys\",\"object\":\"chat.completion.chunk\",\"created\":1749734794,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_a288987b44\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"\\\",\\\"\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BhcEs8BcD9KD0ldLlcykj5bdG3lys\",\"object\":\"chat.completion.chunk\",\"created\":1749734794,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_a288987b44\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"content\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BhcEs8BcD9KD0ldLlcykj5bdG3lys\",\"object\":\"chat.completion.chunk\",\"created\":1749734794,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_a288987b44\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"\\\":[\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BhcEs8BcD9KD0ldLlcykj5bdG3lys\",\"object\":\"chat.completion.chunk\",\"created\":1749734794,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_a288987b44\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"{\\\"\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BhcEs8BcD9KD0ldLlcykj5bdG3lys\",\"object\":\"chat.completion.chunk\",\"created\":1749734794,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_a288987b44\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"type\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BhcEs8BcD9KD0ldLlcykj5bdG3lys\",\"object\":\"chat.completion.chunk\",\"created\":1749734794,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_a288987b44\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"\\\":\\\"\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BhcEs8BcD9KD0ldLlcykj5bdG3lys\",\"object\":\"chat.completion.chunk\",\"created\":1749734794,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_a288987b44\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"text\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BhcEs8BcD9KD0ldLlcykj5bdG3lys\",\"object\":\"chat.completion.chunk\",\"created\":1749734794,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_a288987b44\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"\\\",\\\"\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BhcEs8BcD9KD0ldLlcykj5bdG3lys\",\"object\":\"chat.completion.chunk\",\"created\":1749734794,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_a288987b44\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"text\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BhcEs8BcD9KD0ldLlcykj5bdG3lys\",\"object\":\"chat.completion.chunk\",\"created\":1749734794,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_a288987b44\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"\\\":\\\"\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BhcEs8BcD9KD0ldLlcykj5bdG3lys\",\"object\":\"chat.completion.chunk\",\"created\":1749734794,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_a288987b44\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"You\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BhcEs8BcD9KD0ldLlcykj5bdG3lys\",\"object\":\"chat.completion.chunk\",\"created\":1749734794,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_a288987b44\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\" look\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BhcEs8BcD9KD0ldLlcykj5bdG3lys\",\"object\":\"chat.completion.chunk\",\"created\":1749734794,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_a288987b44\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\" great\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BhcEs8BcD9KD0ldLlcykj5bdG3lys\",\"object\":\"chat.completion.chunk\",\"created\":1749734794,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_a288987b44\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\" today\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BhcEs8BcD9KD0ldLlcykj5bdG3lys\",\"object\":\"chat.completion.chunk\",\"created\":1749734794,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_a288987b44\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"!\\\"\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BhcEs8BcD9KD0ldLlcykj5bdG3lys\",\"object\":\"chat.completion.chunk\",\"created\":1749734794,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_a288987b44\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"}\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BhcEs8BcD9KD0ldLlcykj5bdG3lys\",\"object\":\"chat.completion.chunk\",\"created\":1749734794,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_a288987b44\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"]}\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BhcEs8BcD9KD0ldLlcykj5bdG3lys\",\"object\":\"chat.completion.chunk\",\"created\":1749734794,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_a288987b44\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"]}\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BhcEs8BcD9KD0ldLlcykj5bdG3lys\",\"object\":\"chat.completion.chunk\",\"created\":1749734794,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_a288987b44\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"]}\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BhcEs8BcD9KD0ldLlcykj5bdG3lys\",\"object\":\"chat.completion.chunk\",\"created\":1749734794,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_a288987b44\",\"choices\":[{\"index\":0,\"delta\":{},\"logprobs\":null,\"finish_reason\":\"stop\"}]}\n\ndata: [DONE]\n\n", "headers": [] } } \ No newline at end of file diff --git a/packages/xl-ai/src/api/formats/json/__snapshots__/json.test.ts/Combined/__msw_snapshots__/openai.chat/gpt-4o-2024-08-06 (non-streaming)/add and update paragraph_1_923d9eef4b0b2e7367fd68983678a41a.json b/packages/xl-ai/src/api/formats/json/__snapshots__/json.test.ts/Combined/__msw_snapshots__/openai.chat/gpt-4o-2024-08-06 (non-streaming)/add and update paragraph_1_923d9eef4b0b2e7367fd68983678a41a.json index 68374c1873..e8ef1a6dac 100644 --- a/packages/xl-ai/src/api/formats/json/__snapshots__/json.test.ts/Combined/__msw_snapshots__/openai.chat/gpt-4o-2024-08-06 (non-streaming)/add and update paragraph_1_923d9eef4b0b2e7367fd68983678a41a.json +++ b/packages/xl-ai/src/api/formats/json/__snapshots__/json.test.ts/Combined/__msw_snapshots__/openai.chat/gpt-4o-2024-08-06 (non-streaming)/add and update paragraph_1_923d9eef4b0b2e7367fd68983678a41a.json @@ -7,9 +7,9 @@ "cookies": [] }, "response": { - "status": 429, + "status": 200, "statusText": "", - "body": "{\n \"error\": {\n \"message\": \"You exceeded your current quota, please check your plan and billing details. For more information on this error, read the docs: https://platform.openai.com/docs/guides/error-codes/api-errors.\",\n \"type\": \"insufficient_quota\",\n \"param\": null,\n \"code\": \"insufficient_quota\"\n }\n}\n", + "body": "{\n \"id\": \"chatcmpl-BhcGEpJWyQeNFsRyLMqJlXGIiVuyT\",\n \"object\": \"chat.completion\",\n \"created\": 1749734878,\n \"model\": \"gpt-4o-2024-08-06\",\n \"choices\": [\n {\n \"index\": 0,\n \"message\": {\n \"role\": \"assistant\",\n \"content\": null,\n \"tool_calls\": [\n {\n \"id\": \"call_ZuutgACe8lAwcsc0IxH3HEBt\",\n \"type\": \"function\",\n \"function\": {\n \"name\": \"json\",\n \"arguments\": \"{\\\"operations\\\":[{\\\"type\\\":\\\"add\\\",\\\"referenceId\\\":\\\"ref1$\\\",\\\"position\\\":\\\"after\\\",\\\"blocks\\\":[{\\\"type\\\":\\\"paragraph\\\",\\\"content\\\":[{\\\"type\\\":\\\"text\\\",\\\"text\\\":\\\"You look great today!\\\"}]}]},{\\\"type\\\":\\\"update\\\",\\\"id\\\":\\\"ref1$\\\",\\\"block\\\":{\\\"type\\\":\\\"paragraph\\\",\\\"content\\\":[{\\\"type\\\":\\\"text\\\",\\\"text\\\":\\\"Hallo, wereld!\\\",\\\"styles\\\":{}}]}}]}\"\n }\n }\n ],\n \"refusal\": null,\n \"annotations\": []\n },\n \"logprobs\": null,\n \"finish_reason\": \"stop\"\n }\n ],\n \"usage\": {\n \"prompt_tokens\": 1209,\n \"completion_tokens\": 81,\n \"total_tokens\": 1290,\n \"prompt_tokens_details\": {\n \"cached_tokens\": 1152,\n \"audio_tokens\": 0\n },\n \"completion_tokens_details\": {\n \"reasoning_tokens\": 0,\n \"audio_tokens\": 0,\n \"accepted_prediction_tokens\": 0,\n \"rejected_prediction_tokens\": 0\n }\n },\n \"service_tier\": \"default\",\n \"system_fingerprint\": \"fp_a288987b44\"\n}\n", "headers": [] } } \ No newline at end of file diff --git a/packages/xl-ai/src/api/formats/json/__snapshots__/json.test.ts/Combined/__msw_snapshots__/openai.chat/gpt-4o-2024-08-06 (non-streaming)/add paragraph and update selection_1_ca185676c21707be2b3524b104786716.json b/packages/xl-ai/src/api/formats/json/__snapshots__/json.test.ts/Combined/__msw_snapshots__/openai.chat/gpt-4o-2024-08-06 (non-streaming)/add paragraph and update selection_1_ca185676c21707be2b3524b104786716.json index 95ea3729f3..38291cbd1a 100644 --- a/packages/xl-ai/src/api/formats/json/__snapshots__/json.test.ts/Combined/__msw_snapshots__/openai.chat/gpt-4o-2024-08-06 (non-streaming)/add paragraph and update selection_1_ca185676c21707be2b3524b104786716.json +++ b/packages/xl-ai/src/api/formats/json/__snapshots__/json.test.ts/Combined/__msw_snapshots__/openai.chat/gpt-4o-2024-08-06 (non-streaming)/add paragraph and update selection_1_ca185676c21707be2b3524b104786716.json @@ -7,9 +7,9 @@ "cookies": [] }, "response": { - "status": 429, + "status": 200, "statusText": "", - "body": "{\n \"error\": {\n \"message\": \"You exceeded your current quota, please check your plan and billing details. For more information on this error, read the docs: https://platform.openai.com/docs/guides/error-codes/api-errors.\",\n \"type\": \"insufficient_quota\",\n \"param\": null,\n \"code\": \"insufficient_quota\"\n }\n}\n", + "body": "{\n \"id\": \"chatcmpl-BhcGFrzowjpYLxfYG7LfW2sM6u92k\",\n \"object\": \"chat.completion\",\n \"created\": 1749734879,\n \"model\": \"gpt-4o-2024-08-06\",\n \"choices\": [\n {\n \"index\": 0,\n \"message\": {\n \"role\": \"assistant\",\n \"content\": null,\n \"tool_calls\": [\n {\n \"id\": \"call_dn2lkwRbahx0SenkNkClHq7G\",\n \"type\": \"function\",\n \"function\": {\n \"name\": \"json\",\n \"arguments\": \"{\\\"operations\\\":[{\\\"type\\\":\\\"add\\\",\\\"referenceId\\\":\\\"ref2$\\\",\\\"position\\\":\\\"before\\\",\\\"blocks\\\":[{\\\"type\\\":\\\"paragraph\\\",\\\"content\\\":[{\\\"type\\\":\\\"text\\\",\\\"text\\\":\\\"You look great today!\\\"}]}]},{\\\"type\\\":\\\"update\\\",\\\"id\\\":\\\"ref2$\\\",\\\"block\\\":{\\\"type\\\":\\\"paragraph\\\",\\\"content\\\":[{\\\"type\\\":\\\"text\\\",\\\"text\\\":\\\"Hallo\\\"}]}}]}\"\n }\n }\n ],\n \"refusal\": null,\n \"annotations\": []\n },\n \"logprobs\": null,\n \"finish_reason\": \"stop\"\n }\n ],\n \"usage\": {\n \"prompt_tokens\": 1099,\n \"completion_tokens\": 74,\n \"total_tokens\": 1173,\n \"prompt_tokens_details\": {\n \"cached_tokens\": 1024,\n \"audio_tokens\": 0\n },\n \"completion_tokens_details\": {\n \"reasoning_tokens\": 0,\n \"audio_tokens\": 0,\n \"accepted_prediction_tokens\": 0,\n \"rejected_prediction_tokens\": 0\n }\n },\n \"service_tier\": \"default\",\n \"system_fingerprint\": \"fp_07871e2ad8\"\n}\n", "headers": [] } } \ No newline at end of file diff --git a/packages/xl-ai/src/api/formats/json/__snapshots__/json.test.ts/Combined/__msw_snapshots__/openai.chat/gpt-4o-2024-08-06 (streaming)/add and update paragraph_1_6a4c9cc869ec961e3662b788540af827.json b/packages/xl-ai/src/api/formats/json/__snapshots__/json.test.ts/Combined/__msw_snapshots__/openai.chat/gpt-4o-2024-08-06 (streaming)/add and update paragraph_1_6a4c9cc869ec961e3662b788540af827.json index 5359d54d1c..27cf84e9a9 100644 --- a/packages/xl-ai/src/api/formats/json/__snapshots__/json.test.ts/Combined/__msw_snapshots__/openai.chat/gpt-4o-2024-08-06 (streaming)/add and update paragraph_1_6a4c9cc869ec961e3662b788540af827.json +++ b/packages/xl-ai/src/api/formats/json/__snapshots__/json.test.ts/Combined/__msw_snapshots__/openai.chat/gpt-4o-2024-08-06 (streaming)/add and update paragraph_1_6a4c9cc869ec961e3662b788540af827.json @@ -7,9 +7,9 @@ "cookies": [] }, "response": { - "status": 429, + "status": 200, "statusText": "", - "body": "{\n \"error\": {\n \"message\": \"You exceeded your current quota, please check your plan and billing details. For more information on this error, read the docs: https://platform.openai.com/docs/guides/error-codes/api-errors.\",\n \"type\": \"insufficient_quota\",\n \"param\": null,\n \"code\": \"insufficient_quota\"\n }\n}\n", + "body": "data: {\"id\":\"chatcmpl-BhcFVyMHuR93mQP3NLcHWqjfdOPID\",\"object\":\"chat.completion.chunk\",\"created\":1749734833,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_a288987b44\",\"choices\":[{\"index\":0,\"delta\":{\"role\":\"assistant\",\"content\":null,\"tool_calls\":[{\"index\":0,\"id\":\"call_FkeXmRpptF11oQGJ5IW5NjeL\",\"type\":\"function\",\"function\":{\"name\":\"json\",\"arguments\":\"\"}}],\"refusal\":null},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BhcFVyMHuR93mQP3NLcHWqjfdOPID\",\"object\":\"chat.completion.chunk\",\"created\":1749734833,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_a288987b44\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"{\\\"\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BhcFVyMHuR93mQP3NLcHWqjfdOPID\",\"object\":\"chat.completion.chunk\",\"created\":1749734833,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_a288987b44\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"operations\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BhcFVyMHuR93mQP3NLcHWqjfdOPID\",\"object\":\"chat.completion.chunk\",\"created\":1749734833,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_a288987b44\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"\\\":[\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BhcFVyMHuR93mQP3NLcHWqjfdOPID\",\"object\":\"chat.completion.chunk\",\"created\":1749734833,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_a288987b44\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"{\\\"\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BhcFVyMHuR93mQP3NLcHWqjfdOPID\",\"object\":\"chat.completion.chunk\",\"created\":1749734833,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_a288987b44\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"type\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BhcFVyMHuR93mQP3NLcHWqjfdOPID\",\"object\":\"chat.completion.chunk\",\"created\":1749734833,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_a288987b44\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"\\\":\\\"\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BhcFVyMHuR93mQP3NLcHWqjfdOPID\",\"object\":\"chat.completion.chunk\",\"created\":1749734833,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_a288987b44\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"add\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BhcFVyMHuR93mQP3NLcHWqjfdOPID\",\"object\":\"chat.completion.chunk\",\"created\":1749734833,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_a288987b44\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"\\\",\\\"\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BhcFVyMHuR93mQP3NLcHWqjfdOPID\",\"object\":\"chat.completion.chunk\",\"created\":1749734833,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_a288987b44\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"reference\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BhcFVyMHuR93mQP3NLcHWqjfdOPID\",\"object\":\"chat.completion.chunk\",\"created\":1749734833,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_a288987b44\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"Id\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BhcFVyMHuR93mQP3NLcHWqjfdOPID\",\"object\":\"chat.completion.chunk\",\"created\":1749734833,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_a288987b44\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"\\\":\\\"\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BhcFVyMHuR93mQP3NLcHWqjfdOPID\",\"object\":\"chat.completion.chunk\",\"created\":1749734833,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_a288987b44\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"ref\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BhcFVyMHuR93mQP3NLcHWqjfdOPID\",\"object\":\"chat.completion.chunk\",\"created\":1749734833,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_a288987b44\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"1\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BhcFVyMHuR93mQP3NLcHWqjfdOPID\",\"object\":\"chat.completion.chunk\",\"created\":1749734833,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_a288987b44\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"$\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BhcFVyMHuR93mQP3NLcHWqjfdOPID\",\"object\":\"chat.completion.chunk\",\"created\":1749734833,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_a288987b44\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"\\\",\\\"\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BhcFVyMHuR93mQP3NLcHWqjfdOPID\",\"object\":\"chat.completion.chunk\",\"created\":1749734833,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_a288987b44\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"position\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BhcFVyMHuR93mQP3NLcHWqjfdOPID\",\"object\":\"chat.completion.chunk\",\"created\":1749734833,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_a288987b44\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"\\\":\\\"\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BhcFVyMHuR93mQP3NLcHWqjfdOPID\",\"object\":\"chat.completion.chunk\",\"created\":1749734833,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_a288987b44\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"after\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BhcFVyMHuR93mQP3NLcHWqjfdOPID\",\"object\":\"chat.completion.chunk\",\"created\":1749734833,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_a288987b44\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"\\\",\\\"\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BhcFVyMHuR93mQP3NLcHWqjfdOPID\",\"object\":\"chat.completion.chunk\",\"created\":1749734833,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_a288987b44\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"blocks\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BhcFVyMHuR93mQP3NLcHWqjfdOPID\",\"object\":\"chat.completion.chunk\",\"created\":1749734833,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_a288987b44\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"\\\":[\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BhcFVyMHuR93mQP3NLcHWqjfdOPID\",\"object\":\"chat.completion.chunk\",\"created\":1749734833,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_a288987b44\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"{\\\"\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BhcFVyMHuR93mQP3NLcHWqjfdOPID\",\"object\":\"chat.completion.chunk\",\"created\":1749734833,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_a288987b44\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"type\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BhcFVyMHuR93mQP3NLcHWqjfdOPID\",\"object\":\"chat.completion.chunk\",\"created\":1749734833,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_a288987b44\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"\\\":\\\"\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BhcFVyMHuR93mQP3NLcHWqjfdOPID\",\"object\":\"chat.completion.chunk\",\"created\":1749734833,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_a288987b44\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"paragraph\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BhcFVyMHuR93mQP3NLcHWqjfdOPID\",\"object\":\"chat.completion.chunk\",\"created\":1749734833,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_a288987b44\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"\\\",\\\"\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BhcFVyMHuR93mQP3NLcHWqjfdOPID\",\"object\":\"chat.completion.chunk\",\"created\":1749734833,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_a288987b44\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"content\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BhcFVyMHuR93mQP3NLcHWqjfdOPID\",\"object\":\"chat.completion.chunk\",\"created\":1749734833,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_a288987b44\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"\\\":[\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BhcFVyMHuR93mQP3NLcHWqjfdOPID\",\"object\":\"chat.completion.chunk\",\"created\":1749734833,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_a288987b44\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"{\\\"\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BhcFVyMHuR93mQP3NLcHWqjfdOPID\",\"object\":\"chat.completion.chunk\",\"created\":1749734833,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_a288987b44\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"type\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BhcFVyMHuR93mQP3NLcHWqjfdOPID\",\"object\":\"chat.completion.chunk\",\"created\":1749734833,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_a288987b44\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"\\\":\\\"\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BhcFVyMHuR93mQP3NLcHWqjfdOPID\",\"object\":\"chat.completion.chunk\",\"created\":1749734833,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_a288987b44\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"text\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BhcFVyMHuR93mQP3NLcHWqjfdOPID\",\"object\":\"chat.completion.chunk\",\"created\":1749734833,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_a288987b44\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"\\\",\\\"\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BhcFVyMHuR93mQP3NLcHWqjfdOPID\",\"object\":\"chat.completion.chunk\",\"created\":1749734833,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_a288987b44\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"text\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BhcFVyMHuR93mQP3NLcHWqjfdOPID\",\"object\":\"chat.completion.chunk\",\"created\":1749734833,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_a288987b44\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"\\\":\\\"\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BhcFVyMHuR93mQP3NLcHWqjfdOPID\",\"object\":\"chat.completion.chunk\",\"created\":1749734833,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_a288987b44\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"You\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BhcFVyMHuR93mQP3NLcHWqjfdOPID\",\"object\":\"chat.completion.chunk\",\"created\":1749734833,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_a288987b44\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\" look\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BhcFVyMHuR93mQP3NLcHWqjfdOPID\",\"object\":\"chat.completion.chunk\",\"created\":1749734833,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_a288987b44\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\" great\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BhcFVyMHuR93mQP3NLcHWqjfdOPID\",\"object\":\"chat.completion.chunk\",\"created\":1749734833,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_a288987b44\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\" today\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BhcFVyMHuR93mQP3NLcHWqjfdOPID\",\"object\":\"chat.completion.chunk\",\"created\":1749734833,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_a288987b44\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"!\\\"\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BhcFVyMHuR93mQP3NLcHWqjfdOPID\",\"object\":\"chat.completion.chunk\",\"created\":1749734833,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_a288987b44\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"}\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BhcFVyMHuR93mQP3NLcHWqjfdOPID\",\"object\":\"chat.completion.chunk\",\"created\":1749734833,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_a288987b44\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"]}\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BhcFVyMHuR93mQP3NLcHWqjfdOPID\",\"object\":\"chat.completion.chunk\",\"created\":1749734833,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_a288987b44\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"]\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BhcFVyMHuR93mQP3NLcHWqjfdOPID\",\"object\":\"chat.completion.chunk\",\"created\":1749734833,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_a288987b44\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"},{\\\"\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BhcFVyMHuR93mQP3NLcHWqjfdOPID\",\"object\":\"chat.completion.chunk\",\"created\":1749734833,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_a288987b44\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"type\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BhcFVyMHuR93mQP3NLcHWqjfdOPID\",\"object\":\"chat.completion.chunk\",\"created\":1749734833,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_a288987b44\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"\\\":\\\"\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BhcFVyMHuR93mQP3NLcHWqjfdOPID\",\"object\":\"chat.completion.chunk\",\"created\":1749734833,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_a288987b44\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"update\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BhcFVyMHuR93mQP3NLcHWqjfdOPID\",\"object\":\"chat.completion.chunk\",\"created\":1749734833,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_a288987b44\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"\\\",\\\"\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BhcFVyMHuR93mQP3NLcHWqjfdOPID\",\"object\":\"chat.completion.chunk\",\"created\":1749734833,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_a288987b44\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"id\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BhcFVyMHuR93mQP3NLcHWqjfdOPID\",\"object\":\"chat.completion.chunk\",\"created\":1749734833,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_a288987b44\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"\\\":\\\"\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BhcFVyMHuR93mQP3NLcHWqjfdOPID\",\"object\":\"chat.completion.chunk\",\"created\":1749734833,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_a288987b44\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"ref\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BhcFVyMHuR93mQP3NLcHWqjfdOPID\",\"object\":\"chat.completion.chunk\",\"created\":1749734833,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_a288987b44\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"1\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BhcFVyMHuR93mQP3NLcHWqjfdOPID\",\"object\":\"chat.completion.chunk\",\"created\":1749734833,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_a288987b44\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"$\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BhcFVyMHuR93mQP3NLcHWqjfdOPID\",\"object\":\"chat.completion.chunk\",\"created\":1749734833,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_a288987b44\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"\\\",\\\"\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BhcFVyMHuR93mQP3NLcHWqjfdOPID\",\"object\":\"chat.completion.chunk\",\"created\":1749734833,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_a288987b44\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"block\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BhcFVyMHuR93mQP3NLcHWqjfdOPID\",\"object\":\"chat.completion.chunk\",\"created\":1749734833,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_a288987b44\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"\\\":{\\\"\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BhcFVyMHuR93mQP3NLcHWqjfdOPID\",\"object\":\"chat.completion.chunk\",\"created\":1749734833,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_a288987b44\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"type\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BhcFVyMHuR93mQP3NLcHWqjfdOPID\",\"object\":\"chat.completion.chunk\",\"created\":1749734833,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_a288987b44\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"\\\":\\\"\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BhcFVyMHuR93mQP3NLcHWqjfdOPID\",\"object\":\"chat.completion.chunk\",\"created\":1749734833,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_a288987b44\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"paragraph\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BhcFVyMHuR93mQP3NLcHWqjfdOPID\",\"object\":\"chat.completion.chunk\",\"created\":1749734833,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_a288987b44\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"\\\",\\\"\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BhcFVyMHuR93mQP3NLcHWqjfdOPID\",\"object\":\"chat.completion.chunk\",\"created\":1749734833,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_a288987b44\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"content\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BhcFVyMHuR93mQP3NLcHWqjfdOPID\",\"object\":\"chat.completion.chunk\",\"created\":1749734833,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_a288987b44\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"\\\":[\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BhcFVyMHuR93mQP3NLcHWqjfdOPID\",\"object\":\"chat.completion.chunk\",\"created\":1749734833,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_a288987b44\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"{\\\"\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BhcFVyMHuR93mQP3NLcHWqjfdOPID\",\"object\":\"chat.completion.chunk\",\"created\":1749734833,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_a288987b44\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"type\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BhcFVyMHuR93mQP3NLcHWqjfdOPID\",\"object\":\"chat.completion.chunk\",\"created\":1749734833,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_a288987b44\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"\\\":\\\"\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BhcFVyMHuR93mQP3NLcHWqjfdOPID\",\"object\":\"chat.completion.chunk\",\"created\":1749734833,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_a288987b44\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"text\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BhcFVyMHuR93mQP3NLcHWqjfdOPID\",\"object\":\"chat.completion.chunk\",\"created\":1749734833,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_a288987b44\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"\\\",\\\"\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BhcFVyMHuR93mQP3NLcHWqjfdOPID\",\"object\":\"chat.completion.chunk\",\"created\":1749734833,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_a288987b44\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"text\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BhcFVyMHuR93mQP3NLcHWqjfdOPID\",\"object\":\"chat.completion.chunk\",\"created\":1749734833,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_a288987b44\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"\\\":\\\"\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BhcFVyMHuR93mQP3NLcHWqjfdOPID\",\"object\":\"chat.completion.chunk\",\"created\":1749734833,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_a288987b44\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"Hallo\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BhcFVyMHuR93mQP3NLcHWqjfdOPID\",\"object\":\"chat.completion.chunk\",\"created\":1749734833,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_a288987b44\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\",\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BhcFVyMHuR93mQP3NLcHWqjfdOPID\",\"object\":\"chat.completion.chunk\",\"created\":1749734833,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_a288987b44\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\" wereld\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BhcFVyMHuR93mQP3NLcHWqjfdOPID\",\"object\":\"chat.completion.chunk\",\"created\":1749734833,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_a288987b44\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"!\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BhcFVyMHuR93mQP3NLcHWqjfdOPID\",\"object\":\"chat.completion.chunk\",\"created\":1749734833,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_a288987b44\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"\\\",\\\"\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BhcFVyMHuR93mQP3NLcHWqjfdOPID\",\"object\":\"chat.completion.chunk\",\"created\":1749734833,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_a288987b44\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"styles\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BhcFVyMHuR93mQP3NLcHWqjfdOPID\",\"object\":\"chat.completion.chunk\",\"created\":1749734833,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_a288987b44\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"\\\":\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BhcFVyMHuR93mQP3NLcHWqjfdOPID\",\"object\":\"chat.completion.chunk\",\"created\":1749734833,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_a288987b44\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"{\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BhcFVyMHuR93mQP3NLcHWqjfdOPID\",\"object\":\"chat.completion.chunk\",\"created\":1749734833,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_a288987b44\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"}}\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BhcFVyMHuR93mQP3NLcHWqjfdOPID\",\"object\":\"chat.completion.chunk\",\"created\":1749734833,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_a288987b44\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"]\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BhcFVyMHuR93mQP3NLcHWqjfdOPID\",\"object\":\"chat.completion.chunk\",\"created\":1749734833,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_a288987b44\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"}}\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BhcFVyMHuR93mQP3NLcHWqjfdOPID\",\"object\":\"chat.completion.chunk\",\"created\":1749734833,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_a288987b44\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"]}\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BhcFVyMHuR93mQP3NLcHWqjfdOPID\",\"object\":\"chat.completion.chunk\",\"created\":1749734833,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_a288987b44\",\"choices\":[{\"index\":0,\"delta\":{},\"logprobs\":null,\"finish_reason\":\"stop\"}]}\n\ndata: [DONE]\n\n", "headers": [] } } \ No newline at end of file diff --git a/packages/xl-ai/src/api/formats/json/__snapshots__/json.test.ts/Combined/__msw_snapshots__/openai.chat/gpt-4o-2024-08-06 (streaming)/add paragraph and update selection_1_8092e1583e60700c3cff810383dbf5ad.json b/packages/xl-ai/src/api/formats/json/__snapshots__/json.test.ts/Combined/__msw_snapshots__/openai.chat/gpt-4o-2024-08-06 (streaming)/add paragraph and update selection_1_8092e1583e60700c3cff810383dbf5ad.json index 5a128fdcd3..3aeca6055a 100644 --- a/packages/xl-ai/src/api/formats/json/__snapshots__/json.test.ts/Combined/__msw_snapshots__/openai.chat/gpt-4o-2024-08-06 (streaming)/add paragraph and update selection_1_8092e1583e60700c3cff810383dbf5ad.json +++ b/packages/xl-ai/src/api/formats/json/__snapshots__/json.test.ts/Combined/__msw_snapshots__/openai.chat/gpt-4o-2024-08-06 (streaming)/add paragraph and update selection_1_8092e1583e60700c3cff810383dbf5ad.json @@ -7,9 +7,9 @@ "cookies": [] }, "response": { - "status": 429, + "status": 200, "statusText": "", - "body": "{\n \"error\": {\n \"message\": \"You exceeded your current quota, please check your plan and billing details. For more information on this error, read the docs: https://platform.openai.com/docs/guides/error-codes/api-errors.\",\n \"type\": \"insufficient_quota\",\n \"param\": null,\n \"code\": \"insufficient_quota\"\n }\n}\n", + "body": "data: {\"id\":\"chatcmpl-BhcFXRqg9GWLsZRtBX3aWKGuTq1rB\",\"object\":\"chat.completion.chunk\",\"created\":1749734835,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_07871e2ad8\",\"choices\":[{\"index\":0,\"delta\":{\"role\":\"assistant\",\"content\":null,\"tool_calls\":[{\"index\":0,\"id\":\"call_9ZOygXd6Ceb9onYFeosseNCc\",\"type\":\"function\",\"function\":{\"name\":\"json\",\"arguments\":\"\"}}],\"refusal\":null},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BhcFXRqg9GWLsZRtBX3aWKGuTq1rB\",\"object\":\"chat.completion.chunk\",\"created\":1749734835,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_07871e2ad8\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"{\\\"\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BhcFXRqg9GWLsZRtBX3aWKGuTq1rB\",\"object\":\"chat.completion.chunk\",\"created\":1749734835,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_07871e2ad8\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"operations\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BhcFXRqg9GWLsZRtBX3aWKGuTq1rB\",\"object\":\"chat.completion.chunk\",\"created\":1749734835,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_07871e2ad8\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"\\\":[\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BhcFXRqg9GWLsZRtBX3aWKGuTq1rB\",\"object\":\"chat.completion.chunk\",\"created\":1749734835,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_07871e2ad8\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"{\\\"\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BhcFXRqg9GWLsZRtBX3aWKGuTq1rB\",\"object\":\"chat.completion.chunk\",\"created\":1749734835,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_07871e2ad8\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"type\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BhcFXRqg9GWLsZRtBX3aWKGuTq1rB\",\"object\":\"chat.completion.chunk\",\"created\":1749734835,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_07871e2ad8\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"\\\":\\\"\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BhcFXRqg9GWLsZRtBX3aWKGuTq1rB\",\"object\":\"chat.completion.chunk\",\"created\":1749734835,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_07871e2ad8\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"add\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BhcFXRqg9GWLsZRtBX3aWKGuTq1rB\",\"object\":\"chat.completion.chunk\",\"created\":1749734835,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_07871e2ad8\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"\\\",\\\"\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BhcFXRqg9GWLsZRtBX3aWKGuTq1rB\",\"object\":\"chat.completion.chunk\",\"created\":1749734835,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_07871e2ad8\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"reference\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BhcFXRqg9GWLsZRtBX3aWKGuTq1rB\",\"object\":\"chat.completion.chunk\",\"created\":1749734835,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_07871e2ad8\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"Id\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BhcFXRqg9GWLsZRtBX3aWKGuTq1rB\",\"object\":\"chat.completion.chunk\",\"created\":1749734835,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_07871e2ad8\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"\\\":\\\"\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BhcFXRqg9GWLsZRtBX3aWKGuTq1rB\",\"object\":\"chat.completion.chunk\",\"created\":1749734835,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_07871e2ad8\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"ref\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BhcFXRqg9GWLsZRtBX3aWKGuTq1rB\",\"object\":\"chat.completion.chunk\",\"created\":1749734835,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_07871e2ad8\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"2\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BhcFXRqg9GWLsZRtBX3aWKGuTq1rB\",\"object\":\"chat.completion.chunk\",\"created\":1749734835,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_07871e2ad8\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"$\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BhcFXRqg9GWLsZRtBX3aWKGuTq1rB\",\"object\":\"chat.completion.chunk\",\"created\":1749734835,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_07871e2ad8\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"\\\",\\\"\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BhcFXRqg9GWLsZRtBX3aWKGuTq1rB\",\"object\":\"chat.completion.chunk\",\"created\":1749734835,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_07871e2ad8\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"position\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BhcFXRqg9GWLsZRtBX3aWKGuTq1rB\",\"object\":\"chat.completion.chunk\",\"created\":1749734835,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_07871e2ad8\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"\\\":\\\"\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BhcFXRqg9GWLsZRtBX3aWKGuTq1rB\",\"object\":\"chat.completion.chunk\",\"created\":1749734835,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_07871e2ad8\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"before\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BhcFXRqg9GWLsZRtBX3aWKGuTq1rB\",\"object\":\"chat.completion.chunk\",\"created\":1749734835,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_07871e2ad8\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"\\\",\\\"\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BhcFXRqg9GWLsZRtBX3aWKGuTq1rB\",\"object\":\"chat.completion.chunk\",\"created\":1749734835,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_07871e2ad8\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"blocks\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BhcFXRqg9GWLsZRtBX3aWKGuTq1rB\",\"object\":\"chat.completion.chunk\",\"created\":1749734835,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_07871e2ad8\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"\\\":[\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BhcFXRqg9GWLsZRtBX3aWKGuTq1rB\",\"object\":\"chat.completion.chunk\",\"created\":1749734835,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_07871e2ad8\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"{\\\"\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BhcFXRqg9GWLsZRtBX3aWKGuTq1rB\",\"object\":\"chat.completion.chunk\",\"created\":1749734835,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_07871e2ad8\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"type\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BhcFXRqg9GWLsZRtBX3aWKGuTq1rB\",\"object\":\"chat.completion.chunk\",\"created\":1749734835,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_07871e2ad8\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"\\\":\\\"\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BhcFXRqg9GWLsZRtBX3aWKGuTq1rB\",\"object\":\"chat.completion.chunk\",\"created\":1749734835,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_07871e2ad8\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"paragraph\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BhcFXRqg9GWLsZRtBX3aWKGuTq1rB\",\"object\":\"chat.completion.chunk\",\"created\":1749734835,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_07871e2ad8\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"\\\",\\\"\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BhcFXRqg9GWLsZRtBX3aWKGuTq1rB\",\"object\":\"chat.completion.chunk\",\"created\":1749734835,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_07871e2ad8\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"content\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BhcFXRqg9GWLsZRtBX3aWKGuTq1rB\",\"object\":\"chat.completion.chunk\",\"created\":1749734835,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_07871e2ad8\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"\\\":[\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BhcFXRqg9GWLsZRtBX3aWKGuTq1rB\",\"object\":\"chat.completion.chunk\",\"created\":1749734835,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_07871e2ad8\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"{\\\"\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BhcFXRqg9GWLsZRtBX3aWKGuTq1rB\",\"object\":\"chat.completion.chunk\",\"created\":1749734835,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_07871e2ad8\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"type\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BhcFXRqg9GWLsZRtBX3aWKGuTq1rB\",\"object\":\"chat.completion.chunk\",\"created\":1749734835,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_07871e2ad8\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"\\\":\\\"\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BhcFXRqg9GWLsZRtBX3aWKGuTq1rB\",\"object\":\"chat.completion.chunk\",\"created\":1749734835,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_07871e2ad8\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"text\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BhcFXRqg9GWLsZRtBX3aWKGuTq1rB\",\"object\":\"chat.completion.chunk\",\"created\":1749734835,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_07871e2ad8\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"\\\",\\\"\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BhcFXRqg9GWLsZRtBX3aWKGuTq1rB\",\"object\":\"chat.completion.chunk\",\"created\":1749734835,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_07871e2ad8\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"text\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BhcFXRqg9GWLsZRtBX3aWKGuTq1rB\",\"object\":\"chat.completion.chunk\",\"created\":1749734835,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_07871e2ad8\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"\\\":\\\"\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BhcFXRqg9GWLsZRtBX3aWKGuTq1rB\",\"object\":\"chat.completion.chunk\",\"created\":1749734835,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_07871e2ad8\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"You\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BhcFXRqg9GWLsZRtBX3aWKGuTq1rB\",\"object\":\"chat.completion.chunk\",\"created\":1749734835,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_07871e2ad8\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\" look\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BhcFXRqg9GWLsZRtBX3aWKGuTq1rB\",\"object\":\"chat.completion.chunk\",\"created\":1749734835,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_07871e2ad8\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\" great\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BhcFXRqg9GWLsZRtBX3aWKGuTq1rB\",\"object\":\"chat.completion.chunk\",\"created\":1749734835,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_07871e2ad8\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\" today\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BhcFXRqg9GWLsZRtBX3aWKGuTq1rB\",\"object\":\"chat.completion.chunk\",\"created\":1749734835,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_07871e2ad8\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"!\\\"\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BhcFXRqg9GWLsZRtBX3aWKGuTq1rB\",\"object\":\"chat.completion.chunk\",\"created\":1749734835,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_07871e2ad8\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"}\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BhcFXRqg9GWLsZRtBX3aWKGuTq1rB\",\"object\":\"chat.completion.chunk\",\"created\":1749734835,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_07871e2ad8\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"]}\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BhcFXRqg9GWLsZRtBX3aWKGuTq1rB\",\"object\":\"chat.completion.chunk\",\"created\":1749734835,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_07871e2ad8\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"]\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BhcFXRqg9GWLsZRtBX3aWKGuTq1rB\",\"object\":\"chat.completion.chunk\",\"created\":1749734835,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_07871e2ad8\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"},{\\\"\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BhcFXRqg9GWLsZRtBX3aWKGuTq1rB\",\"object\":\"chat.completion.chunk\",\"created\":1749734835,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_07871e2ad8\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"type\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BhcFXRqg9GWLsZRtBX3aWKGuTq1rB\",\"object\":\"chat.completion.chunk\",\"created\":1749734835,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_07871e2ad8\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"\\\":\\\"\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BhcFXRqg9GWLsZRtBX3aWKGuTq1rB\",\"object\":\"chat.completion.chunk\",\"created\":1749734835,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_07871e2ad8\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"update\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BhcFXRqg9GWLsZRtBX3aWKGuTq1rB\",\"object\":\"chat.completion.chunk\",\"created\":1749734835,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_07871e2ad8\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"\\\",\\\"\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BhcFXRqg9GWLsZRtBX3aWKGuTq1rB\",\"object\":\"chat.completion.chunk\",\"created\":1749734835,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_07871e2ad8\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"id\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BhcFXRqg9GWLsZRtBX3aWKGuTq1rB\",\"object\":\"chat.completion.chunk\",\"created\":1749734835,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_07871e2ad8\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"\\\":\\\"\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BhcFXRqg9GWLsZRtBX3aWKGuTq1rB\",\"object\":\"chat.completion.chunk\",\"created\":1749734835,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_07871e2ad8\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"ref\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BhcFXRqg9GWLsZRtBX3aWKGuTq1rB\",\"object\":\"chat.completion.chunk\",\"created\":1749734835,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_07871e2ad8\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"2\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BhcFXRqg9GWLsZRtBX3aWKGuTq1rB\",\"object\":\"chat.completion.chunk\",\"created\":1749734835,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_07871e2ad8\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"$\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BhcFXRqg9GWLsZRtBX3aWKGuTq1rB\",\"object\":\"chat.completion.chunk\",\"created\":1749734835,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_07871e2ad8\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"\\\",\\\"\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BhcFXRqg9GWLsZRtBX3aWKGuTq1rB\",\"object\":\"chat.completion.chunk\",\"created\":1749734835,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_07871e2ad8\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"block\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BhcFXRqg9GWLsZRtBX3aWKGuTq1rB\",\"object\":\"chat.completion.chunk\",\"created\":1749734835,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_07871e2ad8\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"\\\":{\\\"\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BhcFXRqg9GWLsZRtBX3aWKGuTq1rB\",\"object\":\"chat.completion.chunk\",\"created\":1749734835,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_07871e2ad8\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"type\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BhcFXRqg9GWLsZRtBX3aWKGuTq1rB\",\"object\":\"chat.completion.chunk\",\"created\":1749734835,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_07871e2ad8\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"\\\":\\\"\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BhcFXRqg9GWLsZRtBX3aWKGuTq1rB\",\"object\":\"chat.completion.chunk\",\"created\":1749734835,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_07871e2ad8\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"paragraph\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BhcFXRqg9GWLsZRtBX3aWKGuTq1rB\",\"object\":\"chat.completion.chunk\",\"created\":1749734835,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_07871e2ad8\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"\\\",\\\"\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BhcFXRqg9GWLsZRtBX3aWKGuTq1rB\",\"object\":\"chat.completion.chunk\",\"created\":1749734835,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_07871e2ad8\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"content\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BhcFXRqg9GWLsZRtBX3aWKGuTq1rB\",\"object\":\"chat.completion.chunk\",\"created\":1749734835,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_07871e2ad8\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"\\\":[\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BhcFXRqg9GWLsZRtBX3aWKGuTq1rB\",\"object\":\"chat.completion.chunk\",\"created\":1749734835,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_07871e2ad8\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"{\\\"\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BhcFXRqg9GWLsZRtBX3aWKGuTq1rB\",\"object\":\"chat.completion.chunk\",\"created\":1749734835,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_07871e2ad8\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"type\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BhcFXRqg9GWLsZRtBX3aWKGuTq1rB\",\"object\":\"chat.completion.chunk\",\"created\":1749734835,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_07871e2ad8\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"\\\":\\\"\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BhcFXRqg9GWLsZRtBX3aWKGuTq1rB\",\"object\":\"chat.completion.chunk\",\"created\":1749734835,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_07871e2ad8\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"text\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BhcFXRqg9GWLsZRtBX3aWKGuTq1rB\",\"object\":\"chat.completion.chunk\",\"created\":1749734835,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_07871e2ad8\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"\\\",\\\"\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BhcFXRqg9GWLsZRtBX3aWKGuTq1rB\",\"object\":\"chat.completion.chunk\",\"created\":1749734835,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_07871e2ad8\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"text\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BhcFXRqg9GWLsZRtBX3aWKGuTq1rB\",\"object\":\"chat.completion.chunk\",\"created\":1749734835,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_07871e2ad8\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"\\\":\\\"\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BhcFXRqg9GWLsZRtBX3aWKGuTq1rB\",\"object\":\"chat.completion.chunk\",\"created\":1749734835,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_07871e2ad8\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"Hallo\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BhcFXRqg9GWLsZRtBX3aWKGuTq1rB\",\"object\":\"chat.completion.chunk\",\"created\":1749734835,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_07871e2ad8\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"\\\"}\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BhcFXRqg9GWLsZRtBX3aWKGuTq1rB\",\"object\":\"chat.completion.chunk\",\"created\":1749734835,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_07871e2ad8\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"]\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BhcFXRqg9GWLsZRtBX3aWKGuTq1rB\",\"object\":\"chat.completion.chunk\",\"created\":1749734835,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_07871e2ad8\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"}}\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BhcFXRqg9GWLsZRtBX3aWKGuTq1rB\",\"object\":\"chat.completion.chunk\",\"created\":1749734835,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_07871e2ad8\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"]}\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BhcFXRqg9GWLsZRtBX3aWKGuTq1rB\",\"object\":\"chat.completion.chunk\",\"created\":1749734835,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_07871e2ad8\",\"choices\":[{\"index\":0,\"delta\":{},\"logprobs\":null,\"finish_reason\":\"stop\"}]}\n\ndata: [DONE]\n\n", "headers": [] } } \ No newline at end of file diff --git a/packages/xl-ai/src/api/formats/json/__snapshots__/json.test.ts/Delete/__msw_snapshots__/openai.chat/gpt-4o-2024-08-06 (non-streaming)/delete first block_1_f36354147821c0e68c7e4d2ff18e8a95.json b/packages/xl-ai/src/api/formats/json/__snapshots__/json.test.ts/Delete/__msw_snapshots__/openai.chat/gpt-4o-2024-08-06 (non-streaming)/delete first block_1_f36354147821c0e68c7e4d2ff18e8a95.json index dabeffb4cb..f33e043d7f 100644 --- a/packages/xl-ai/src/api/formats/json/__snapshots__/json.test.ts/Delete/__msw_snapshots__/openai.chat/gpt-4o-2024-08-06 (non-streaming)/delete first block_1_f36354147821c0e68c7e4d2ff18e8a95.json +++ b/packages/xl-ai/src/api/formats/json/__snapshots__/json.test.ts/Delete/__msw_snapshots__/openai.chat/gpt-4o-2024-08-06 (non-streaming)/delete first block_1_f36354147821c0e68c7e4d2ff18e8a95.json @@ -7,9 +7,9 @@ "cookies": [] }, "response": { - "status": 429, + "status": 200, "statusText": "", - "body": "{\n \"error\": {\n \"message\": \"You exceeded your current quota, please check your plan and billing details. For more information on this error, read the docs: https://platform.openai.com/docs/guides/error-codes/api-errors.\",\n \"type\": \"insufficient_quota\",\n \"param\": null,\n \"code\": \"insufficient_quota\"\n }\n}\n", + "body": "{\n \"id\": \"chatcmpl-BhcGDawGLxjVzJ8DjzQh1O73wboIT\",\n \"object\": \"chat.completion\",\n \"created\": 1749734877,\n \"model\": \"gpt-4o-2024-08-06\",\n \"choices\": [\n {\n \"index\": 0,\n \"message\": {\n \"role\": \"assistant\",\n \"content\": null,\n \"tool_calls\": [\n {\n \"id\": \"call_Ej4JUYHDIxckllYcCgboawiI\",\n \"type\": \"function\",\n \"function\": {\n \"name\": \"json\",\n \"arguments\": \"{\\\"operations\\\":[{\\\"type\\\":\\\"delete\\\",\\\"id\\\":\\\"ref1$\\\"}]}\"\n }\n }\n ],\n \"refusal\": null,\n \"annotations\": []\n },\n \"logprobs\": null,\n \"finish_reason\": \"stop\"\n }\n ],\n \"usage\": {\n \"prompt_tokens\": 1186,\n \"completion_tokens\": 15,\n \"total_tokens\": 1201,\n \"prompt_tokens_details\": {\n \"cached_tokens\": 1152,\n \"audio_tokens\": 0\n },\n \"completion_tokens_details\": {\n \"reasoning_tokens\": 0,\n \"audio_tokens\": 0,\n \"accepted_prediction_tokens\": 0,\n \"rejected_prediction_tokens\": 0\n }\n },\n \"service_tier\": \"default\",\n \"system_fingerprint\": \"fp_a288987b44\"\n}\n", "headers": [] } } \ No newline at end of file diff --git a/packages/xl-ai/src/api/formats/json/__snapshots__/json.test.ts/Delete/__msw_snapshots__/openai.chat/gpt-4o-2024-08-06 (streaming)/delete first block_1_4ac561ca5a33ecb3cbb77482471e2477.json b/packages/xl-ai/src/api/formats/json/__snapshots__/json.test.ts/Delete/__msw_snapshots__/openai.chat/gpt-4o-2024-08-06 (streaming)/delete first block_1_4ac561ca5a33ecb3cbb77482471e2477.json index 3316fd0f57..c79e2a7d5b 100644 --- a/packages/xl-ai/src/api/formats/json/__snapshots__/json.test.ts/Delete/__msw_snapshots__/openai.chat/gpt-4o-2024-08-06 (streaming)/delete first block_1_4ac561ca5a33ecb3cbb77482471e2477.json +++ b/packages/xl-ai/src/api/formats/json/__snapshots__/json.test.ts/Delete/__msw_snapshots__/openai.chat/gpt-4o-2024-08-06 (streaming)/delete first block_1_4ac561ca5a33ecb3cbb77482471e2477.json @@ -7,9 +7,9 @@ "cookies": [] }, "response": { - "status": 429, + "status": 200, "statusText": "", - "body": "{\n \"error\": {\n \"message\": \"You exceeded your current quota, please check your plan and billing details. For more information on this error, read the docs: https://platform.openai.com/docs/guides/error-codes/api-errors.\",\n \"type\": \"insufficient_quota\",\n \"param\": null,\n \"code\": \"insufficient_quota\"\n }\n}\n", + "body": "data: {\"id\":\"chatcmpl-BhcFUr9IaMbW2gs1boi0lXKOWcUOA\",\"object\":\"chat.completion.chunk\",\"created\":1749734832,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_a288987b44\",\"choices\":[{\"index\":0,\"delta\":{\"role\":\"assistant\",\"content\":null,\"tool_calls\":[{\"index\":0,\"id\":\"call_S0i1M8sX9aBZuAoOu6z80lOx\",\"type\":\"function\",\"function\":{\"name\":\"json\",\"arguments\":\"\"}}],\"refusal\":null},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BhcFUr9IaMbW2gs1boi0lXKOWcUOA\",\"object\":\"chat.completion.chunk\",\"created\":1749734832,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_a288987b44\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"{\\\"\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BhcFUr9IaMbW2gs1boi0lXKOWcUOA\",\"object\":\"chat.completion.chunk\",\"created\":1749734832,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_a288987b44\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"operations\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BhcFUr9IaMbW2gs1boi0lXKOWcUOA\",\"object\":\"chat.completion.chunk\",\"created\":1749734832,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_a288987b44\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"\\\":[\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BhcFUr9IaMbW2gs1boi0lXKOWcUOA\",\"object\":\"chat.completion.chunk\",\"created\":1749734832,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_a288987b44\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"{\\\"\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BhcFUr9IaMbW2gs1boi0lXKOWcUOA\",\"object\":\"chat.completion.chunk\",\"created\":1749734832,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_a288987b44\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"type\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BhcFUr9IaMbW2gs1boi0lXKOWcUOA\",\"object\":\"chat.completion.chunk\",\"created\":1749734832,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_a288987b44\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"\\\":\\\"\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BhcFUr9IaMbW2gs1boi0lXKOWcUOA\",\"object\":\"chat.completion.chunk\",\"created\":1749734832,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_a288987b44\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"delete\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BhcFUr9IaMbW2gs1boi0lXKOWcUOA\",\"object\":\"chat.completion.chunk\",\"created\":1749734832,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_a288987b44\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"\\\",\\\"\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BhcFUr9IaMbW2gs1boi0lXKOWcUOA\",\"object\":\"chat.completion.chunk\",\"created\":1749734832,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_a288987b44\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"id\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BhcFUr9IaMbW2gs1boi0lXKOWcUOA\",\"object\":\"chat.completion.chunk\",\"created\":1749734832,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_a288987b44\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"\\\":\\\"\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BhcFUr9IaMbW2gs1boi0lXKOWcUOA\",\"object\":\"chat.completion.chunk\",\"created\":1749734832,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_a288987b44\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"ref\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BhcFUr9IaMbW2gs1boi0lXKOWcUOA\",\"object\":\"chat.completion.chunk\",\"created\":1749734832,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_a288987b44\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"1\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BhcFUr9IaMbW2gs1boi0lXKOWcUOA\",\"object\":\"chat.completion.chunk\",\"created\":1749734832,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_a288987b44\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"$\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BhcFUr9IaMbW2gs1boi0lXKOWcUOA\",\"object\":\"chat.completion.chunk\",\"created\":1749734832,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_a288987b44\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"\\\"}\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BhcFUr9IaMbW2gs1boi0lXKOWcUOA\",\"object\":\"chat.completion.chunk\",\"created\":1749734832,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_a288987b44\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"]}\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BhcFUr9IaMbW2gs1boi0lXKOWcUOA\",\"object\":\"chat.completion.chunk\",\"created\":1749734832,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_a288987b44\",\"choices\":[{\"index\":0,\"delta\":{},\"logprobs\":null,\"finish_reason\":\"stop\"}]}\n\ndata: [DONE]\n\n", "headers": [] } } \ No newline at end of file diff --git a/packages/xl-ai/src/api/formats/json/__snapshots__/json.test.ts/Update/__msw_snapshots__/openai.chat/gpt-4o-2024-08-06 (non-streaming)/clear block formatting_1_4479e5ad2d77e8d9f6b49330a706a3af.json b/packages/xl-ai/src/api/formats/json/__snapshots__/json.test.ts/Update/__msw_snapshots__/openai.chat/gpt-4o-2024-08-06 (non-streaming)/clear block formatting_1_4479e5ad2d77e8d9f6b49330a706a3af.json index 6ce5a372e4..dc9054a4e6 100644 --- a/packages/xl-ai/src/api/formats/json/__snapshots__/json.test.ts/Update/__msw_snapshots__/openai.chat/gpt-4o-2024-08-06 (non-streaming)/clear block formatting_1_4479e5ad2d77e8d9f6b49330a706a3af.json +++ b/packages/xl-ai/src/api/formats/json/__snapshots__/json.test.ts/Update/__msw_snapshots__/openai.chat/gpt-4o-2024-08-06 (non-streaming)/clear block formatting_1_4479e5ad2d77e8d9f6b49330a706a3af.json @@ -7,9 +7,9 @@ "cookies": [] }, "response": { - "status": 429, + "status": 200, "statusText": "", - "body": "{\n \"error\": {\n \"message\": \"You exceeded your current quota, please check your plan and billing details. For more information on this error, read the docs: https://platform.openai.com/docs/guides/error-codes/api-errors.\",\n \"type\": \"insufficient_quota\",\n \"param\": null,\n \"code\": \"insufficient_quota\"\n }\n}\n", + "body": "{\n \"id\": \"chatcmpl-BhcGBPpheMSoV0U8WP6ft62k7aJ2a\",\n \"object\": \"chat.completion\",\n \"created\": 1749734875,\n \"model\": \"gpt-4o-2024-08-06\",\n \"choices\": [\n {\n \"index\": 0,\n \"message\": {\n \"role\": \"assistant\",\n \"content\": null,\n \"tool_calls\": [\n {\n \"id\": \"call_fWlVpiqVqcVFAwqaQi2BhO7R\",\n \"type\": \"function\",\n \"function\": {\n \"name\": \"json\",\n \"arguments\": \"{\\\"operations\\\":[{\\\"type\\\":\\\"update\\\",\\\"id\\\":\\\"ref1$\\\",\\\"block\\\":{\\\"type\\\":\\\"paragraph\\\",\\\"props\\\":{\\\"textColor\\\":\\\"default\\\",\\\"backgroundColor\\\":\\\"default\\\",\\\"textAlignment\\\":\\\"left\\\"},\\\"content\\\":[{\\\"type\\\":\\\"text\\\",\\\"text\\\":\\\"Colored text\\\",\\\"styles\\\":{}}]}},{\\\"type\\\":\\\"update\\\",\\\"id\\\":\\\"ref2$\\\",\\\"block\\\":{\\\"type\\\":\\\"paragraph\\\",\\\"props\\\":{\\\"textColor\\\":\\\"default\\\",\\\"backgroundColor\\\":\\\"default\\\",\\\"textAlignment\\\":\\\"left\\\"},\\\"content\\\":[{\\\"type\\\":\\\"text\\\",\\\"text\\\":\\\"Aligned text\\\",\\\"styles\\\":{}}]}}]}\"\n }\n }\n ],\n \"refusal\": null,\n \"annotations\": []\n },\n \"logprobs\": null,\n \"finish_reason\": \"stop\"\n }\n ],\n \"usage\": {\n \"prompt_tokens\": 1015,\n \"completion_tokens\": 109,\n \"total_tokens\": 1124,\n \"prompt_tokens_details\": {\n \"cached_tokens\": 0,\n \"audio_tokens\": 0\n },\n \"completion_tokens_details\": {\n \"reasoning_tokens\": 0,\n \"audio_tokens\": 0,\n \"accepted_prediction_tokens\": 0,\n \"rejected_prediction_tokens\": 0\n }\n },\n \"service_tier\": \"default\",\n \"system_fingerprint\": \"fp_a288987b44\"\n}\n", "headers": [] } } \ No newline at end of file diff --git a/packages/xl-ai/src/api/formats/json/__snapshots__/json.test.ts/Update/__msw_snapshots__/openai.chat/gpt-4o-2024-08-06 (non-streaming)/drop mark and link and change text within mark_1_d8be2007761d56dcf271fa44d6e8a232.json b/packages/xl-ai/src/api/formats/json/__snapshots__/json.test.ts/Update/__msw_snapshots__/openai.chat/gpt-4o-2024-08-06 (non-streaming)/drop mark and link and change text within mark_1_d8be2007761d56dcf271fa44d6e8a232.json index ee45e552b6..c75e96becc 100644 --- a/packages/xl-ai/src/api/formats/json/__snapshots__/json.test.ts/Update/__msw_snapshots__/openai.chat/gpt-4o-2024-08-06 (non-streaming)/drop mark and link and change text within mark_1_d8be2007761d56dcf271fa44d6e8a232.json +++ b/packages/xl-ai/src/api/formats/json/__snapshots__/json.test.ts/Update/__msw_snapshots__/openai.chat/gpt-4o-2024-08-06 (non-streaming)/drop mark and link and change text within mark_1_d8be2007761d56dcf271fa44d6e8a232.json @@ -7,9 +7,9 @@ "cookies": [] }, "response": { - "status": 429, + "status": 200, "statusText": "", - "body": "{\n \"error\": {\n \"message\": \"You exceeded your current quota, please check your plan and billing details. For more information on this error, read the docs: https://platform.openai.com/docs/guides/error-codes/api-errors.\",\n \"type\": \"insufficient_quota\",\n \"param\": null,\n \"code\": \"insufficient_quota\"\n }\n}\n", + "body": "{\n \"id\": \"chatcmpl-BhcG6pNkAvWDFMk1QLtIJdo9uuRBT\",\n \"object\": \"chat.completion\",\n \"created\": 1749734870,\n \"model\": \"gpt-4o-2024-08-06\",\n \"choices\": [\n {\n \"index\": 0,\n \"message\": {\n \"role\": \"assistant\",\n \"content\": null,\n \"tool_calls\": [\n {\n \"id\": \"call_PRneCqlfxtZAC49BlHXDgRMW\",\n \"type\": \"function\",\n \"function\": {\n \"name\": \"json\",\n \"arguments\": \"{\\\"operations\\\":[{\\\"type\\\":\\\"update\\\",\\\"id\\\":\\\"ref3$\\\",\\\"block\\\":{\\\"type\\\":\\\"paragraph\\\",\\\"content\\\":[{\\\"type\\\":\\\"text\\\",\\\"text\\\":\\\"Hi, world! Bold the text. Link.\\\",\\\"styles\\\":{}}]}}]}\"\n }\n }\n ],\n \"refusal\": null,\n \"annotations\": []\n },\n \"logprobs\": null,\n \"finish_reason\": \"stop\"\n }\n ],\n \"usage\": {\n \"prompt_tokens\": 1205,\n \"completion_tokens\": 46,\n \"total_tokens\": 1251,\n \"prompt_tokens_details\": {\n \"cached_tokens\": 1152,\n \"audio_tokens\": 0\n },\n \"completion_tokens_details\": {\n \"reasoning_tokens\": 0,\n \"audio_tokens\": 0,\n \"accepted_prediction_tokens\": 0,\n \"rejected_prediction_tokens\": 0\n }\n },\n \"service_tier\": \"default\",\n \"system_fingerprint\": \"fp_a288987b44\"\n}\n", "headers": [] } } \ No newline at end of file diff --git a/packages/xl-ai/src/api/formats/json/__snapshots__/json.test.ts/Update/__msw_snapshots__/openai.chat/gpt-4o-2024-08-06 (non-streaming)/drop mark and link_1_ce3a8d756277935c395939e94ffbdfb1.json b/packages/xl-ai/src/api/formats/json/__snapshots__/json.test.ts/Update/__msw_snapshots__/openai.chat/gpt-4o-2024-08-06 (non-streaming)/drop mark and link_1_ce3a8d756277935c395939e94ffbdfb1.json index 4e42011dee..795aa86ff9 100644 --- a/packages/xl-ai/src/api/formats/json/__snapshots__/json.test.ts/Update/__msw_snapshots__/openai.chat/gpt-4o-2024-08-06 (non-streaming)/drop mark and link_1_ce3a8d756277935c395939e94ffbdfb1.json +++ b/packages/xl-ai/src/api/formats/json/__snapshots__/json.test.ts/Update/__msw_snapshots__/openai.chat/gpt-4o-2024-08-06 (non-streaming)/drop mark and link_1_ce3a8d756277935c395939e94ffbdfb1.json @@ -7,9 +7,9 @@ "cookies": [] }, "response": { - "status": 429, + "status": 200, "statusText": "", - "body": "{\n \"error\": {\n \"message\": \"You exceeded your current quota, please check your plan and billing details. For more information on this error, read the docs: https://platform.openai.com/docs/guides/error-codes/api-errors.\",\n \"type\": \"insufficient_quota\",\n \"param\": null,\n \"code\": \"insufficient_quota\"\n }\n}\n", + "body": "{\n \"id\": \"chatcmpl-BhcG5RhOLSQSJeEyFv1INVa5fsu4D\",\n \"object\": \"chat.completion\",\n \"created\": 1749734869,\n \"model\": \"gpt-4o-2024-08-06\",\n \"choices\": [\n {\n \"index\": 0,\n \"message\": {\n \"role\": \"assistant\",\n \"content\": null,\n \"tool_calls\": [\n {\n \"id\": \"call_UrX97y6hhoNN8Y2YFydzJbye\",\n \"type\": \"function\",\n \"function\": {\n \"name\": \"json\",\n \"arguments\": \"{\\\"operations\\\":[{\\\"type\\\":\\\"update\\\",\\\"id\\\":\\\"ref3$\\\",\\\"block\\\":{\\\"type\\\":\\\"paragraph\\\",\\\"content\\\":[{\\\"type\\\":\\\"text\\\",\\\"text\\\":\\\"Hello, world! Bold text. Link.\\\"}]}}]}\"\n }\n }\n ],\n \"refusal\": null,\n \"annotations\": []\n },\n \"logprobs\": null,\n \"finish_reason\": \"stop\"\n }\n ],\n \"usage\": {\n \"prompt_tokens\": 1199,\n \"completion_tokens\": 41,\n \"total_tokens\": 1240,\n \"prompt_tokens_details\": {\n \"cached_tokens\": 1152,\n \"audio_tokens\": 0\n },\n \"completion_tokens_details\": {\n \"reasoning_tokens\": 0,\n \"audio_tokens\": 0,\n \"accepted_prediction_tokens\": 0,\n \"rejected_prediction_tokens\": 0\n }\n },\n \"service_tier\": \"default\",\n \"system_fingerprint\": \"fp_a288987b44\"\n}\n", "headers": [] } } \ No newline at end of file diff --git a/packages/xl-ai/src/api/formats/json/__snapshots__/json.test.ts/Update/__msw_snapshots__/openai.chat/gpt-4o-2024-08-06 (non-streaming)/modify nested content_1_65bac275d973af0c7b46b2b8d5d324fe.json b/packages/xl-ai/src/api/formats/json/__snapshots__/json.test.ts/Update/__msw_snapshots__/openai.chat/gpt-4o-2024-08-06 (non-streaming)/modify nested content_1_65bac275d973af0c7b46b2b8d5d324fe.json index 08ac3217e5..d2fed3adba 100644 --- a/packages/xl-ai/src/api/formats/json/__snapshots__/json.test.ts/Update/__msw_snapshots__/openai.chat/gpt-4o-2024-08-06 (non-streaming)/modify nested content_1_65bac275d973af0c7b46b2b8d5d324fe.json +++ b/packages/xl-ai/src/api/formats/json/__snapshots__/json.test.ts/Update/__msw_snapshots__/openai.chat/gpt-4o-2024-08-06 (non-streaming)/modify nested content_1_65bac275d973af0c7b46b2b8d5d324fe.json @@ -7,9 +7,9 @@ "cookies": [] }, "response": { - "status": 429, + "status": 200, "statusText": "", - "body": "{\n \"error\": {\n \"message\": \"You exceeded your current quota, please check your plan and billing details. For more information on this error, read the docs: https://platform.openai.com/docs/guides/error-codes/api-errors.\",\n \"type\": \"insufficient_quota\",\n \"param\": null,\n \"code\": \"insufficient_quota\"\n }\n}\n", + "body": "{\n \"id\": \"chatcmpl-BhcG9e3sP7My46DvsPtu9MRxuxnO5\",\n \"object\": \"chat.completion\",\n \"created\": 1749734873,\n \"model\": \"gpt-4o-2024-08-06\",\n \"choices\": [\n {\n \"index\": 0,\n \"message\": {\n \"role\": \"assistant\",\n \"content\": null,\n \"tool_calls\": [\n {\n \"id\": \"call_wS23sGdK6nYMb4i5GGvjCYaw\",\n \"type\": \"function\",\n \"function\": {\n \"name\": \"json\",\n \"arguments\": \"{\\\"operations\\\":[{\\\"type\\\":\\\"update\\\",\\\"id\\\":\\\"ref2$\\\",\\\"block\\\":{\\\"type\\\":\\\"paragraph\\\",\\\"content\\\":[{\\\"type\\\":\\\"text\\\",\\\"text\\\":\\\"APPLES\\\",\\\"styles\\\":{}}]}}]}\"\n }\n }\n ],\n \"refusal\": null,\n \"annotations\": []\n },\n \"logprobs\": null,\n \"finish_reason\": \"stop\"\n }\n ],\n \"usage\": {\n \"prompt_tokens\": 1013,\n \"completion_tokens\": 39,\n \"total_tokens\": 1052,\n \"prompt_tokens_details\": {\n \"cached_tokens\": 0,\n \"audio_tokens\": 0\n },\n \"completion_tokens_details\": {\n \"reasoning_tokens\": 0,\n \"audio_tokens\": 0,\n \"accepted_prediction_tokens\": 0,\n \"rejected_prediction_tokens\": 0\n }\n },\n \"service_tier\": \"default\",\n \"system_fingerprint\": \"fp_a288987b44\"\n}\n", "headers": [] } } \ No newline at end of file diff --git a/packages/xl-ai/src/api/formats/json/__snapshots__/json.test.ts/Update/__msw_snapshots__/openai.chat/gpt-4o-2024-08-06 (non-streaming)/modify parent content_1_e23642dde85b3d958c556c5e4f86ac38.json b/packages/xl-ai/src/api/formats/json/__snapshots__/json.test.ts/Update/__msw_snapshots__/openai.chat/gpt-4o-2024-08-06 (non-streaming)/modify parent content_1_e23642dde85b3d958c556c5e4f86ac38.json index 99e213a78b..9c96e81bb3 100644 --- a/packages/xl-ai/src/api/formats/json/__snapshots__/json.test.ts/Update/__msw_snapshots__/openai.chat/gpt-4o-2024-08-06 (non-streaming)/modify parent content_1_e23642dde85b3d958c556c5e4f86ac38.json +++ b/packages/xl-ai/src/api/formats/json/__snapshots__/json.test.ts/Update/__msw_snapshots__/openai.chat/gpt-4o-2024-08-06 (non-streaming)/modify parent content_1_e23642dde85b3d958c556c5e4f86ac38.json @@ -7,9 +7,9 @@ "cookies": [] }, "response": { - "status": 429, + "status": 200, "statusText": "", - "body": "{\n \"error\": {\n \"message\": \"You exceeded your current quota, please check your plan and billing details. For more information on this error, read the docs: https://platform.openai.com/docs/guides/error-codes/api-errors.\",\n \"type\": \"insufficient_quota\",\n \"param\": null,\n \"code\": \"insufficient_quota\"\n }\n}\n", + "body": "{\n \"id\": \"chatcmpl-BhcGAnu23o0ZuyiMTGsqWUla6hlwL\",\n \"object\": \"chat.completion\",\n \"created\": 1749734874,\n \"model\": \"gpt-4o-2024-08-06\",\n \"choices\": [\n {\n \"index\": 0,\n \"message\": {\n \"role\": \"assistant\",\n \"content\": null,\n \"tool_calls\": [\n {\n \"id\": \"call_y1he1AuTd45cDGIMvwr45QD1\",\n \"type\": \"function\",\n \"function\": {\n \"name\": \"json\",\n \"arguments\": \"{\\\"operations\\\":[{\\\"type\\\":\\\"update\\\",\\\"id\\\":\\\"ref1$\\\",\\\"block\\\":{\\\"type\\\":\\\"paragraph\\\",\\\"content\\\":[{\\\"type\\\":\\\"text\\\",\\\"text\\\":\\\"I NEED TO BUY:\\\",\\\"styles\\\":{}}],\\\"props\\\":{\\\"textColor\\\":\\\"default\\\",\\\"backgroundColor\\\":\\\"default\\\",\\\"textAlignment\\\":\\\"left\\\"}}}]}\"\n }\n }\n ],\n \"refusal\": null,\n \"annotations\": []\n },\n \"logprobs\": null,\n \"finish_reason\": \"stop\"\n }\n ],\n \"usage\": {\n \"prompt_tokens\": 1015,\n \"completion_tokens\": 59,\n \"total_tokens\": 1074,\n \"prompt_tokens_details\": {\n \"cached_tokens\": 0,\n \"audio_tokens\": 0\n },\n \"completion_tokens_details\": {\n \"reasoning_tokens\": 0,\n \"audio_tokens\": 0,\n \"accepted_prediction_tokens\": 0,\n \"rejected_prediction_tokens\": 0\n }\n },\n \"service_tier\": \"default\",\n \"system_fingerprint\": \"fp_a288987b44\"\n}\n", "headers": [] } } \ No newline at end of file diff --git a/packages/xl-ai/src/api/formats/json/__snapshots__/json.test.ts/Update/__msw_snapshots__/openai.chat/gpt-4o-2024-08-06 (non-streaming)/plain source block, add mention_1_b2b46f2ea1174691cf498ebb089d464a.json b/packages/xl-ai/src/api/formats/json/__snapshots__/json.test.ts/Update/__msw_snapshots__/openai.chat/gpt-4o-2024-08-06 (non-streaming)/plain source block, add mention_1_b2b46f2ea1174691cf498ebb089d464a.json index b54e8f1873..3bfaade855 100644 --- a/packages/xl-ai/src/api/formats/json/__snapshots__/json.test.ts/Update/__msw_snapshots__/openai.chat/gpt-4o-2024-08-06 (non-streaming)/plain source block, add mention_1_b2b46f2ea1174691cf498ebb089d464a.json +++ b/packages/xl-ai/src/api/formats/json/__snapshots__/json.test.ts/Update/__msw_snapshots__/openai.chat/gpt-4o-2024-08-06 (non-streaming)/plain source block, add mention_1_b2b46f2ea1174691cf498ebb089d464a.json @@ -7,9 +7,9 @@ "cookies": [] }, "response": { - "status": 429, + "status": 200, "statusText": "", - "body": "{\n \"error\": {\n \"message\": \"You exceeded your current quota, please check your plan and billing details. For more information on this error, read the docs: https://platform.openai.com/docs/guides/error-codes/api-errors.\",\n \"type\": \"insufficient_quota\",\n \"param\": null,\n \"code\": \"insufficient_quota\"\n }\n}\n", + "body": "{\n \"id\": \"chatcmpl-BhcG3GG75xvs9AOZ8ciCUPp1x6wSV\",\n \"object\": \"chat.completion\",\n \"created\": 1749734867,\n \"model\": \"gpt-4o-2024-08-06\",\n \"choices\": [\n {\n \"index\": 0,\n \"message\": {\n \"role\": \"assistant\",\n \"content\": null,\n \"tool_calls\": [\n {\n \"id\": \"call_B4v7T3LYRXoX3mtSrv9tleB2\",\n \"type\": \"function\",\n \"function\": {\n \"name\": \"json\",\n \"arguments\": \"{\\\"operations\\\":[{\\\"type\\\":\\\"update\\\",\\\"id\\\":\\\"ref1$\\\",\\\"block\\\":{\\\"type\\\":\\\"paragraph\\\",\\\"content\\\":[{\\\"type\\\":\\\"text\\\",\\\"text\\\":\\\"Hello, \\\",\\\"styles\\\":{}},{\\\"type\\\":\\\"mention\\\",\\\"props\\\":{\\\"user\\\":\\\"Jane Doe\\\"}},{\\\"type\\\":\\\"text\\\",\\\"text\\\":\\\"!\\\",\\\"styles\\\":{}}]}}]}\"\n }\n }\n ],\n \"refusal\": null,\n \"annotations\": []\n },\n \"logprobs\": null,\n \"finish_reason\": \"stop\"\n }\n ],\n \"usage\": {\n \"prompt_tokens\": 1197,\n \"completion_tokens\": 63,\n \"total_tokens\": 1260,\n \"prompt_tokens_details\": {\n \"cached_tokens\": 1152,\n \"audio_tokens\": 0\n },\n \"completion_tokens_details\": {\n \"reasoning_tokens\": 0,\n \"audio_tokens\": 0,\n \"accepted_prediction_tokens\": 0,\n \"rejected_prediction_tokens\": 0\n }\n },\n \"service_tier\": \"default\",\n \"system_fingerprint\": \"fp_a288987b44\"\n}\n", "headers": [] } } \ No newline at end of file diff --git a/packages/xl-ai/src/api/formats/json/__snapshots__/json.test.ts/Update/__msw_snapshots__/openai.chat/gpt-4o-2024-08-06 (non-streaming)/standard update_1_94dcefb2b5844b8a3f64f32f87115a14.json b/packages/xl-ai/src/api/formats/json/__snapshots__/json.test.ts/Update/__msw_snapshots__/openai.chat/gpt-4o-2024-08-06 (non-streaming)/standard update_1_94dcefb2b5844b8a3f64f32f87115a14.json index 1eafe53567..47f78e3f1f 100644 --- a/packages/xl-ai/src/api/formats/json/__snapshots__/json.test.ts/Update/__msw_snapshots__/openai.chat/gpt-4o-2024-08-06 (non-streaming)/standard update_1_94dcefb2b5844b8a3f64f32f87115a14.json +++ b/packages/xl-ai/src/api/formats/json/__snapshots__/json.test.ts/Update/__msw_snapshots__/openai.chat/gpt-4o-2024-08-06 (non-streaming)/standard update_1_94dcefb2b5844b8a3f64f32f87115a14.json @@ -7,9 +7,9 @@ "cookies": [] }, "response": { - "status": 429, + "status": 200, "statusText": "", - "body": "{\n \"error\": {\n \"message\": \"You exceeded your current quota, please check your plan and billing details. For more information on this error, read the docs: https://platform.openai.com/docs/guides/error-codes/api-errors.\",\n \"type\": \"insufficient_quota\",\n \"param\": null,\n \"code\": \"insufficient_quota\"\n }\n}\n", + "body": "{\n \"id\": \"chatcmpl-BhcFiG15kcnjncckZvjE5wFvHml5R\",\n \"object\": \"chat.completion\",\n \"created\": 1749734846,\n \"model\": \"gpt-4o-2024-08-06\",\n \"choices\": [\n {\n \"index\": 0,\n \"message\": {\n \"role\": \"assistant\",\n \"content\": null,\n \"tool_calls\": [\n {\n \"id\": \"call_y6OWoc1D5iuPIcgBzmaa82vM\",\n \"type\": \"function\",\n \"function\": {\n \"name\": \"json\",\n \"arguments\": \"{\\\"operations\\\":[{\\\"type\\\":\\\"update\\\",\\\"id\\\":\\\"ref1$\\\",\\\"block\\\":{\\\"type\\\":\\\"paragraph\\\",\\\"content\\\":[{\\\"type\\\":\\\"text\\\",\\\"text\\\":\\\"Hallo, Welt!\\\",\\\"styles\\\":{}}]}}]}\"\n }\n }\n ],\n \"refusal\": null,\n \"annotations\": []\n },\n \"logprobs\": null,\n \"finish_reason\": \"stop\"\n }\n ],\n \"usage\": {\n \"prompt_tokens\": 1188,\n \"completion_tokens\": 41,\n \"total_tokens\": 1229,\n \"prompt_tokens_details\": {\n \"cached_tokens\": 1152,\n \"audio_tokens\": 0\n },\n \"completion_tokens_details\": {\n \"reasoning_tokens\": 0,\n \"audio_tokens\": 0,\n \"accepted_prediction_tokens\": 0,\n \"rejected_prediction_tokens\": 0\n }\n },\n \"service_tier\": \"default\",\n \"system_fingerprint\": \"fp_a288987b44\"\n}\n", "headers": [] } } \ No newline at end of file diff --git a/packages/xl-ai/src/api/formats/json/__snapshots__/json.test.ts/Update/__msw_snapshots__/openai.chat/gpt-4o-2024-08-06 (non-streaming)/styles + ic in source block, remove mark_1_276903909ec4f878e8adc9c6bd53d0cf.json b/packages/xl-ai/src/api/formats/json/__snapshots__/json.test.ts/Update/__msw_snapshots__/openai.chat/gpt-4o-2024-08-06 (non-streaming)/styles + ic in source block, remove mark_1_276903909ec4f878e8adc9c6bd53d0cf.json index d4b4ae88cc..9abd5d2e9a 100644 --- a/packages/xl-ai/src/api/formats/json/__snapshots__/json.test.ts/Update/__msw_snapshots__/openai.chat/gpt-4o-2024-08-06 (non-streaming)/styles + ic in source block, remove mark_1_276903909ec4f878e8adc9c6bd53d0cf.json +++ b/packages/xl-ai/src/api/formats/json/__snapshots__/json.test.ts/Update/__msw_snapshots__/openai.chat/gpt-4o-2024-08-06 (non-streaming)/styles + ic in source block, remove mark_1_276903909ec4f878e8adc9c6bd53d0cf.json @@ -7,9 +7,9 @@ "cookies": [] }, "response": { - "status": 429, + "status": 200, "statusText": "", - "body": "{\n \"error\": {\n \"message\": \"You exceeded your current quota, please check your plan and billing details. For more information on this error, read the docs: https://platform.openai.com/docs/guides/error-codes/api-errors.\",\n \"type\": \"insufficient_quota\",\n \"param\": null,\n \"code\": \"insufficient_quota\"\n }\n}\n", + "body": "{\n \"id\": \"chatcmpl-BhcFtvcl4oD5krdZ4Fq201aTWYhjk\",\n \"object\": \"chat.completion\",\n \"created\": 1749734857,\n \"model\": \"gpt-4o-2024-08-06\",\n \"choices\": [\n {\n \"index\": 0,\n \"message\": {\n \"role\": \"assistant\",\n \"content\": null,\n \"tool_calls\": [\n {\n \"id\": \"call_kg5cagApAEyOYN5ffWe3Rrwe\",\n \"type\": \"function\",\n \"function\": {\n \"name\": \"json\",\n \"arguments\": \"{\\\"operations\\\":[{\\\"type\\\":\\\"update\\\",\\\"id\\\":\\\"ref2$\\\",\\\"block\\\":{\\\"type\\\":\\\"paragraph\\\",\\\"props\\\":{\\\"textColor\\\":\\\"default\\\",\\\"backgroundColor\\\":\\\"default\\\",\\\"textAlignment\\\":\\\"left\\\"},\\\"content\\\":[{\\\"type\\\":\\\"text\\\",\\\"text\\\":\\\"Hello, \\\",\\\"styles\\\":{}},{\\\"type\\\":\\\"mention\\\",\\\"props\\\":{\\\"user\\\":\\\"John Doe\\\"}},{\\\"type\\\":\\\"text\\\",\\\"text\\\":\\\"! \\\",\\\"styles\\\":{}},{\\\"type\\\":\\\"text\\\",\\\"text\\\":\\\"How are you doing?\\\",\\\"styles\\\":{}},{\\\"type\\\":\\\"text\\\",\\\"text\\\":\\\" \\\",\\\"styles\\\":{}},{\\\"type\\\":\\\"text\\\",\\\"text\\\":\\\"This text is blue!\\\",\\\"styles\\\":{\\\"textColor\\\":\\\"blue\\\"}}]}}]}\"\n }\n }\n ],\n \"refusal\": null,\n \"annotations\": []\n },\n \"logprobs\": null,\n \"finish_reason\": \"stop\"\n }\n ],\n \"usage\": {\n \"prompt_tokens\": 1190,\n \"completion_tokens\": 127,\n \"total_tokens\": 1317,\n \"prompt_tokens_details\": {\n \"cached_tokens\": 1152,\n \"audio_tokens\": 0\n },\n \"completion_tokens_details\": {\n \"reasoning_tokens\": 0,\n \"audio_tokens\": 0,\n \"accepted_prediction_tokens\": 0,\n \"rejected_prediction_tokens\": 0\n }\n },\n \"service_tier\": \"default\",\n \"system_fingerprint\": \"fp_a288987b44\"\n}\n", "headers": [] } } \ No newline at end of file diff --git a/packages/xl-ai/src/api/formats/json/__snapshots__/json.test.ts/Update/__msw_snapshots__/openai.chat/gpt-4o-2024-08-06 (non-streaming)/styles + ic in source block, remove mention_1_e494072895d2e9d6bd0465582b9034f6.json b/packages/xl-ai/src/api/formats/json/__snapshots__/json.test.ts/Update/__msw_snapshots__/openai.chat/gpt-4o-2024-08-06 (non-streaming)/styles + ic in source block, remove mention_1_e494072895d2e9d6bd0465582b9034f6.json index 6fed2aff0f..0037a9d55d 100644 --- a/packages/xl-ai/src/api/formats/json/__snapshots__/json.test.ts/Update/__msw_snapshots__/openai.chat/gpt-4o-2024-08-06 (non-streaming)/styles + ic in source block, remove mention_1_e494072895d2e9d6bd0465582b9034f6.json +++ b/packages/xl-ai/src/api/formats/json/__snapshots__/json.test.ts/Update/__msw_snapshots__/openai.chat/gpt-4o-2024-08-06 (non-streaming)/styles + ic in source block, remove mention_1_e494072895d2e9d6bd0465582b9034f6.json @@ -7,9 +7,9 @@ "cookies": [] }, "response": { - "status": 429, + "status": 200, "statusText": "", - "body": "{\n \"error\": {\n \"message\": \"You exceeded your current quota, please check your plan and billing details. For more information on this error, read the docs: https://platform.openai.com/docs/guides/error-codes/api-errors.\",\n \"type\": \"insufficient_quota\",\n \"param\": null,\n \"code\": \"insufficient_quota\"\n }\n}\n", + "body": "{\n \"id\": \"chatcmpl-BhcFwgBby7WjAQgEwr8FctkGU71FN\",\n \"object\": \"chat.completion\",\n \"created\": 1749734860,\n \"model\": \"gpt-4o-2024-08-06\",\n \"choices\": [\n {\n \"index\": 0,\n \"message\": {\n \"role\": \"assistant\",\n \"content\": null,\n \"tool_calls\": [\n {\n \"id\": \"call_pONJEJtvadhhmxtnUU3LmVRX\",\n \"type\": \"function\",\n \"function\": {\n \"name\": \"json\",\n \"arguments\": \"{\\\"operations\\\":[{\\\"type\\\":\\\"update\\\",\\\"id\\\":\\\"ref2$\\\",\\\"block\\\":{\\\"type\\\":\\\"paragraph\\\",\\\"content\\\":[{\\\"type\\\":\\\"text\\\",\\\"text\\\":\\\"Hello! \\\",\\\"styles\\\":{}},{\\\"type\\\":\\\"text\\\",\\\"text\\\":\\\"How are you doing?\\\",\\\"styles\\\":{\\\"bold\\\":true}},{\\\"type\\\":\\\"text\\\",\\\"text\\\":\\\" \\\",\\\"styles\\\":{}},{\\\"type\\\":\\\"text\\\",\\\"text\\\":\\\"This text is blue!\\\",\\\"styles\\\":{\\\"textColor\\\":\\\"blue\\\"}}]}}]}\"\n }\n }\n ],\n \"refusal\": null,\n \"annotations\": []\n },\n \"logprobs\": null,\n \"finish_reason\": \"stop\"\n }\n ],\n \"usage\": {\n \"prompt_tokens\": 1206,\n \"completion_tokens\": 88,\n \"total_tokens\": 1294,\n \"prompt_tokens_details\": {\n \"cached_tokens\": 1152,\n \"audio_tokens\": 0\n },\n \"completion_tokens_details\": {\n \"reasoning_tokens\": 0,\n \"audio_tokens\": 0,\n \"accepted_prediction_tokens\": 0,\n \"rejected_prediction_tokens\": 0\n }\n },\n \"service_tier\": \"default\",\n \"system_fingerprint\": \"fp_a288987b44\"\n}\n", "headers": [] } } \ No newline at end of file diff --git a/packages/xl-ai/src/api/formats/json/__snapshots__/json.test.ts/Update/__msw_snapshots__/openai.chat/gpt-4o-2024-08-06 (non-streaming)/styles + ic in source block, replace content_1_0781fecd32901229a780bd5675e62163.json b/packages/xl-ai/src/api/formats/json/__snapshots__/json.test.ts/Update/__msw_snapshots__/openai.chat/gpt-4o-2024-08-06 (non-streaming)/styles + ic in source block, replace content_1_0781fecd32901229a780bd5675e62163.json index bddbbbdddb..b239aa023c 100644 --- a/packages/xl-ai/src/api/formats/json/__snapshots__/json.test.ts/Update/__msw_snapshots__/openai.chat/gpt-4o-2024-08-06 (non-streaming)/styles + ic in source block, replace content_1_0781fecd32901229a780bd5675e62163.json +++ b/packages/xl-ai/src/api/formats/json/__snapshots__/json.test.ts/Update/__msw_snapshots__/openai.chat/gpt-4o-2024-08-06 (non-streaming)/styles + ic in source block, replace content_1_0781fecd32901229a780bd5675e62163.json @@ -7,9 +7,9 @@ "cookies": [] }, "response": { - "status": 429, + "status": 200, "statusText": "", - "body": "{\n \"error\": {\n \"message\": \"You exceeded your current quota, please check your plan and billing details. For more information on this error, read the docs: https://platform.openai.com/docs/guides/error-codes/api-errors.\",\n \"type\": \"insufficient_quota\",\n \"param\": null,\n \"code\": \"insufficient_quota\"\n }\n}\n", + "body": "{\n \"id\": \"chatcmpl-BhcFpkhkO6uheNlkN7etsb1ZVYrFh\",\n \"object\": \"chat.completion\",\n \"created\": 1749734853,\n \"model\": \"gpt-4o-2024-08-06\",\n \"choices\": [\n {\n \"index\": 0,\n \"message\": {\n \"role\": \"assistant\",\n \"content\": null,\n \"tool_calls\": [\n {\n \"id\": \"call_Kv4pglO8GLNaVJbgWjJUFX0h\",\n \"type\": \"function\",\n \"function\": {\n \"name\": \"json\",\n \"arguments\": \"{\\\"operations\\\":[{\\\"type\\\":\\\"update\\\",\\\"id\\\":\\\"ref2$\\\",\\\"block\\\":{\\\"type\\\":\\\"paragraph\\\",\\\"content\\\":[{\\\"type\\\":\\\"text\\\",\\\"text\\\":\\\"Hello, updated content\\\",\\\"styles\\\":{}}]}}]}\"\n }\n }\n ],\n \"refusal\": null,\n \"annotations\": []\n },\n \"logprobs\": null,\n \"finish_reason\": \"stop\"\n }\n ],\n \"usage\": {\n \"prompt_tokens\": 1196,\n \"completion_tokens\": 41,\n \"total_tokens\": 1237,\n \"prompt_tokens_details\": {\n \"cached_tokens\": 1152,\n \"audio_tokens\": 0\n },\n \"completion_tokens_details\": {\n \"reasoning_tokens\": 0,\n \"audio_tokens\": 0,\n \"accepted_prediction_tokens\": 0,\n \"rejected_prediction_tokens\": 0\n }\n },\n \"service_tier\": \"default\",\n \"system_fingerprint\": \"fp_a288987b44\"\n}\n", "headers": [] } } \ No newline at end of file diff --git a/packages/xl-ai/src/api/formats/json/__snapshots__/json.test.ts/Update/__msw_snapshots__/openai.chat/gpt-4o-2024-08-06 (non-streaming)/styles + ic in source block, update mention prop_1_2d779ce68436ee4e33b6781e66c95d4d.json b/packages/xl-ai/src/api/formats/json/__snapshots__/json.test.ts/Update/__msw_snapshots__/openai.chat/gpt-4o-2024-08-06 (non-streaming)/styles + ic in source block, update mention prop_1_2d779ce68436ee4e33b6781e66c95d4d.json index ff0c287c92..a251c023e9 100644 --- a/packages/xl-ai/src/api/formats/json/__snapshots__/json.test.ts/Update/__msw_snapshots__/openai.chat/gpt-4o-2024-08-06 (non-streaming)/styles + ic in source block, update mention prop_1_2d779ce68436ee4e33b6781e66c95d4d.json +++ b/packages/xl-ai/src/api/formats/json/__snapshots__/json.test.ts/Update/__msw_snapshots__/openai.chat/gpt-4o-2024-08-06 (non-streaming)/styles + ic in source block, update mention prop_1_2d779ce68436ee4e33b6781e66c95d4d.json @@ -7,9 +7,9 @@ "cookies": [] }, "response": { - "status": 429, + "status": 200, "statusText": "", - "body": "{\n \"error\": {\n \"message\": \"You exceeded your current quota, please check your plan and billing details. For more information on this error, read the docs: https://platform.openai.com/docs/guides/error-codes/api-errors.\",\n \"type\": \"insufficient_quota\",\n \"param\": null,\n \"code\": \"insufficient_quota\"\n }\n}\n", + "body": "{\n \"id\": \"chatcmpl-BhcG45vqSchgdT7uxNPnfcVI8jTFi\",\n \"object\": \"chat.completion\",\n \"created\": 1749734868,\n \"model\": \"gpt-4o-2024-08-06\",\n \"choices\": [\n {\n \"index\": 0,\n \"message\": {\n \"role\": \"assistant\",\n \"content\": null,\n \"tool_calls\": [\n {\n \"id\": \"call_DkTaasSwpVAsfZPNzF1NoHwP\",\n \"type\": \"function\",\n \"function\": {\n \"name\": \"json\",\n \"arguments\": \"{\\\"operations\\\":[{\\\"type\\\":\\\"update\\\",\\\"id\\\":\\\"ref2$\\\",\\\"block\\\":{\\\"type\\\":\\\"paragraph\\\",\\\"props\\\":{\\\"textColor\\\":\\\"default\\\",\\\"backgroundColor\\\":\\\"default\\\",\\\"textAlignment\\\":\\\"left\\\"},\\\"content\\\":[{\\\"type\\\":\\\"text\\\",\\\"text\\\":\\\"Hello, \\\",\\\"styles\\\":{}},{\\\"type\\\":\\\"mention\\\",\\\"props\\\":{\\\"user\\\":\\\"Jane Doe\\\"}},{\\\"type\\\":\\\"text\\\",\\\"text\\\":\\\"! \\\",\\\"styles\\\":{}},{\\\"type\\\":\\\"text\\\",\\\"text\\\":\\\"How are you doing?\\\",\\\"styles\\\":{\\\"bold\\\":true}},{\\\"type\\\":\\\"text\\\",\\\"text\\\":\\\" \\\",\\\"styles\\\":{}},{\\\"type\\\":\\\"text\\\",\\\"text\\\":\\\"This text is blue!\\\",\\\"styles\\\":{\\\"textColor\\\":\\\"blue\\\"}}]}}]}\"\n }\n }\n ],\n \"refusal\": null,\n \"annotations\": []\n },\n \"logprobs\": null,\n \"finish_reason\": \"stop\"\n }\n ],\n \"usage\": {\n \"prompt_tokens\": 1188,\n \"completion_tokens\": 130,\n \"total_tokens\": 1318,\n \"prompt_tokens_details\": {\n \"cached_tokens\": 1152,\n \"audio_tokens\": 0\n },\n \"completion_tokens_details\": {\n \"reasoning_tokens\": 0,\n \"audio_tokens\": 0,\n \"accepted_prediction_tokens\": 0,\n \"rejected_prediction_tokens\": 0\n }\n },\n \"service_tier\": \"default\",\n \"system_fingerprint\": \"fp_a288987b44\"\n}\n", "headers": [] } } \ No newline at end of file diff --git a/packages/xl-ai/src/api/formats/json/__snapshots__/json.test.ts/Update/__msw_snapshots__/openai.chat/gpt-4o-2024-08-06 (non-streaming)/styles + ic in source block, update text_1_03a2f68b3d126b81618ffeebec9f2c7f.json b/packages/xl-ai/src/api/formats/json/__snapshots__/json.test.ts/Update/__msw_snapshots__/openai.chat/gpt-4o-2024-08-06 (non-streaming)/styles + ic in source block, update text_1_03a2f68b3d126b81618ffeebec9f2c7f.json index 9f1b0c0559..50b5d0574a 100644 --- a/packages/xl-ai/src/api/formats/json/__snapshots__/json.test.ts/Update/__msw_snapshots__/openai.chat/gpt-4o-2024-08-06 (non-streaming)/styles + ic in source block, update text_1_03a2f68b3d126b81618ffeebec9f2c7f.json +++ b/packages/xl-ai/src/api/formats/json/__snapshots__/json.test.ts/Update/__msw_snapshots__/openai.chat/gpt-4o-2024-08-06 (non-streaming)/styles + ic in source block, update text_1_03a2f68b3d126b81618ffeebec9f2c7f.json @@ -7,9 +7,9 @@ "cookies": [] }, "response": { - "status": 429, + "status": 200, "statusText": "", - "body": "{\n \"error\": {\n \"message\": \"You exceeded your current quota, please check your plan and billing details. For more information on this error, read the docs: https://platform.openai.com/docs/guides/error-codes/api-errors.\",\n \"type\": \"insufficient_quota\",\n \"param\": null,\n \"code\": \"insufficient_quota\"\n }\n}\n", + "body": "{\n \"id\": \"chatcmpl-BhcFrQf2aseocBDQp1k2ouqgjF9J2\",\n \"object\": \"chat.completion\",\n \"created\": 1749734855,\n \"model\": \"gpt-4o-2024-08-06\",\n \"choices\": [\n {\n \"index\": 0,\n \"message\": {\n \"role\": \"assistant\",\n \"content\": null,\n \"tool_calls\": [\n {\n \"id\": \"call_12gowK1Gb760nn4DcRb7TmHM\",\n \"type\": \"function\",\n \"function\": {\n \"name\": \"json\",\n \"arguments\": \"{\\\"operations\\\":[{\\\"type\\\":\\\"update\\\",\\\"id\\\":\\\"ref2$\\\",\\\"block\\\":{\\\"type\\\":\\\"paragraph\\\",\\\"content\\\":[{\\\"type\\\":\\\"text\\\",\\\"text\\\":\\\"Hallo, \\\",\\\"styles\\\":{}},{\\\"type\\\":\\\"mention\\\",\\\"props\\\":{\\\"user\\\":\\\"John Doe\\\"}},{\\\"type\\\":\\\"text\\\",\\\"text\\\":\\\"! \\\",\\\"styles\\\":{}},{\\\"type\\\":\\\"text\\\",\\\"text\\\":\\\"Wie geht es dir?\\\",\\\"styles\\\":{\\\"bold\\\":true}},{\\\"type\\\":\\\"text\\\",\\\"text\\\":\\\" \\\",\\\"styles\\\":{}},{\\\"type\\\":\\\"text\\\",\\\"text\\\":\\\"Dieser Text ist blau!\\\",\\\"styles\\\":{\\\"textColor\\\":\\\"blue\\\"}}],\\\"props\\\":{\\\"textColor\\\":\\\"default\\\",\\\"backgroundColor\\\":\\\"default\\\",\\\"textAlignment\\\":\\\"left\\\"}}}]}\"\n }\n }\n ],\n \"refusal\": null,\n \"annotations\": []\n },\n \"logprobs\": null,\n \"finish_reason\": \"stop\"\n }\n ],\n \"usage\": {\n \"prompt_tokens\": 1195,\n \"completion_tokens\": 129,\n \"total_tokens\": 1324,\n \"prompt_tokens_details\": {\n \"cached_tokens\": 0,\n \"audio_tokens\": 0\n },\n \"completion_tokens_details\": {\n \"reasoning_tokens\": 0,\n \"audio_tokens\": 0,\n \"accepted_prediction_tokens\": 0,\n \"rejected_prediction_tokens\": 0\n }\n },\n \"service_tier\": \"default\",\n \"system_fingerprint\": \"fp_a288987b44\"\n}\n", "headers": [] } } \ No newline at end of file diff --git a/packages/xl-ai/src/api/formats/json/__snapshots__/json.test.ts/Update/__msw_snapshots__/openai.chat/gpt-4o-2024-08-06 (non-streaming)/styles + ic in target block, add mark (paragraph)_1_7875145fec05f9cae7e28537ac95bc84.json b/packages/xl-ai/src/api/formats/json/__snapshots__/json.test.ts/Update/__msw_snapshots__/openai.chat/gpt-4o-2024-08-06 (non-streaming)/styles + ic in target block, add mark (paragraph)_1_7875145fec05f9cae7e28537ac95bc84.json index c8a30179bb..bf1216114d 100644 --- a/packages/xl-ai/src/api/formats/json/__snapshots__/json.test.ts/Update/__msw_snapshots__/openai.chat/gpt-4o-2024-08-06 (non-streaming)/styles + ic in target block, add mark (paragraph)_1_7875145fec05f9cae7e28537ac95bc84.json +++ b/packages/xl-ai/src/api/formats/json/__snapshots__/json.test.ts/Update/__msw_snapshots__/openai.chat/gpt-4o-2024-08-06 (non-streaming)/styles + ic in target block, add mark (paragraph)_1_7875145fec05f9cae7e28537ac95bc84.json @@ -7,9 +7,9 @@ "cookies": [] }, "response": { - "status": 429, + "status": 200, "statusText": "", - "body": "{\n \"error\": {\n \"message\": \"You exceeded your current quota, please check your plan and billing details. For more information on this error, read the docs: https://platform.openai.com/docs/guides/error-codes/api-errors.\",\n \"type\": \"insufficient_quota\",\n \"param\": null,\n \"code\": \"insufficient_quota\"\n }\n}\n", + "body": "{\n \"id\": \"chatcmpl-BhcG1G1oqJGAYE3uCMKC42tKqu6i6\",\n \"object\": \"chat.completion\",\n \"created\": 1749734865,\n \"model\": \"gpt-4o-2024-08-06\",\n \"choices\": [\n {\n \"index\": 0,\n \"message\": {\n \"role\": \"assistant\",\n \"content\": null,\n \"tool_calls\": [\n {\n \"id\": \"call_SWxBSpGpLNGcUKUUoGvP9PI4\",\n \"type\": \"function\",\n \"function\": {\n \"name\": \"json\",\n \"arguments\": \"{\\\"operations\\\":[{\\\"type\\\":\\\"update\\\",\\\"id\\\":\\\"ref1$\\\",\\\"block\\\":{\\\"type\\\":\\\"paragraph\\\",\\\"content\\\":[{\\\"type\\\":\\\"text\\\",\\\"text\\\":\\\"Hello, world!\\\",\\\"styles\\\":{\\\"bold\\\":true}}]}}]}\"\n }\n }\n ],\n \"refusal\": null,\n \"annotations\": []\n },\n \"logprobs\": null,\n \"finish_reason\": \"stop\"\n }\n ],\n \"usage\": {\n \"prompt_tokens\": 1186,\n \"completion_tokens\": 43,\n \"total_tokens\": 1229,\n \"prompt_tokens_details\": {\n \"cached_tokens\": 1152,\n \"audio_tokens\": 0\n },\n \"completion_tokens_details\": {\n \"reasoning_tokens\": 0,\n \"audio_tokens\": 0,\n \"accepted_prediction_tokens\": 0,\n \"rejected_prediction_tokens\": 0\n }\n },\n \"service_tier\": \"default\",\n \"system_fingerprint\": \"fp_a288987b44\"\n}\n", "headers": [] } } \ No newline at end of file diff --git a/packages/xl-ai/src/api/formats/json/__snapshots__/json.test.ts/Update/__msw_snapshots__/openai.chat/gpt-4o-2024-08-06 (non-streaming)/styles + ic in target block, add mark (word)_1_0fe47d4cbf760327d6622e9e27c734c4.json b/packages/xl-ai/src/api/formats/json/__snapshots__/json.test.ts/Update/__msw_snapshots__/openai.chat/gpt-4o-2024-08-06 (non-streaming)/styles + ic in target block, add mark (word)_1_0fe47d4cbf760327d6622e9e27c734c4.json index f2e4e567f5..df1556932b 100644 --- a/packages/xl-ai/src/api/formats/json/__snapshots__/json.test.ts/Update/__msw_snapshots__/openai.chat/gpt-4o-2024-08-06 (non-streaming)/styles + ic in target block, add mark (word)_1_0fe47d4cbf760327d6622e9e27c734c4.json +++ b/packages/xl-ai/src/api/formats/json/__snapshots__/json.test.ts/Update/__msw_snapshots__/openai.chat/gpt-4o-2024-08-06 (non-streaming)/styles + ic in target block, add mark (word)_1_0fe47d4cbf760327d6622e9e27c734c4.json @@ -7,9 +7,9 @@ "cookies": [] }, "response": { - "status": 429, + "status": 200, "statusText": "", - "body": "{\n \"error\": {\n \"message\": \"You exceeded your current quota, please check your plan and billing details. For more information on this error, read the docs: https://platform.openai.com/docs/guides/error-codes/api-errors.\",\n \"type\": \"insufficient_quota\",\n \"param\": null,\n \"code\": \"insufficient_quota\"\n }\n}\n", + "body": "{\n \"id\": \"chatcmpl-BhcG0AHpqjPbWupdaWKrPem6iCIj1\",\n \"object\": \"chat.completion\",\n \"created\": 1749734864,\n \"model\": \"gpt-4o-2024-08-06\",\n \"choices\": [\n {\n \"index\": 0,\n \"message\": {\n \"role\": \"assistant\",\n \"content\": null,\n \"tool_calls\": [\n {\n \"id\": \"call_Pns2B8wo1Rv8SEL9sWFdPMVm\",\n \"type\": \"function\",\n \"function\": {\n \"name\": \"json\",\n \"arguments\": \"{\\\"operations\\\":[{\\\"type\\\":\\\"update\\\",\\\"id\\\":\\\"ref1$\\\",\\\"block\\\":{\\\"type\\\":\\\"paragraph\\\",\\\"props\\\":{\\\"textColor\\\":\\\"default\\\",\\\"backgroundColor\\\":\\\"default\\\",\\\"textAlignment\\\":\\\"left\\\"},\\\"content\\\":[{\\\"type\\\":\\\"text\\\",\\\"text\\\":\\\"Hello, \\\",\\\"styles\\\":{}},{\\\"type\\\":\\\"text\\\",\\\"text\\\":\\\"world!\\\",\\\"styles\\\":{\\\"bold\\\":true}}]}}]}\"\n }\n }\n ],\n \"refusal\": null,\n \"annotations\": []\n },\n \"logprobs\": null,\n \"finish_reason\": \"stop\"\n }\n ],\n \"usage\": {\n \"prompt_tokens\": 1193,\n \"completion_tokens\": 72,\n \"total_tokens\": 1265,\n \"prompt_tokens_details\": {\n \"cached_tokens\": 1152,\n \"audio_tokens\": 0\n },\n \"completion_tokens_details\": {\n \"reasoning_tokens\": 0,\n \"audio_tokens\": 0,\n \"accepted_prediction_tokens\": 0,\n \"rejected_prediction_tokens\": 0\n }\n },\n \"service_tier\": \"default\",\n \"system_fingerprint\": \"fp_a288987b44\"\n}\n", "headers": [] } } \ No newline at end of file diff --git a/packages/xl-ai/src/api/formats/json/__snapshots__/json.test.ts/Update/__msw_snapshots__/openai.chat/gpt-4o-2024-08-06 (non-streaming)/translate selection_1_a1c443203ee18f4ec6d71349d0c57311.json b/packages/xl-ai/src/api/formats/json/__snapshots__/json.test.ts/Update/__msw_snapshots__/openai.chat/gpt-4o-2024-08-06 (non-streaming)/translate selection_1_a1c443203ee18f4ec6d71349d0c57311.json index 8163004a27..aa3a670ad1 100644 --- a/packages/xl-ai/src/api/formats/json/__snapshots__/json.test.ts/Update/__msw_snapshots__/openai.chat/gpt-4o-2024-08-06 (non-streaming)/translate selection_1_a1c443203ee18f4ec6d71349d0c57311.json +++ b/packages/xl-ai/src/api/formats/json/__snapshots__/json.test.ts/Update/__msw_snapshots__/openai.chat/gpt-4o-2024-08-06 (non-streaming)/translate selection_1_a1c443203ee18f4ec6d71349d0c57311.json @@ -7,9 +7,9 @@ "cookies": [] }, "response": { - "status": 429, + "status": 200, "statusText": "", - "body": "{\n \"error\": {\n \"message\": \"You exceeded your current quota, please check your plan and billing details. For more information on this error, read the docs: https://platform.openai.com/docs/guides/error-codes/api-errors.\",\n \"type\": \"insufficient_quota\",\n \"param\": null,\n \"code\": \"insufficient_quota\"\n }\n}\n", + "body": "{\n \"id\": \"chatcmpl-BhcFjkwxMeXe0fyYRC6yktLSkrUiv\",\n \"object\": \"chat.completion\",\n \"created\": 1749734847,\n \"model\": \"gpt-4o-2024-08-06\",\n \"choices\": [\n {\n \"index\": 0,\n \"message\": {\n \"role\": \"assistant\",\n \"content\": null,\n \"tool_calls\": [\n {\n \"id\": \"call_mItHOKUMqbtYQekP7IJfOozk\",\n \"type\": \"function\",\n \"function\": {\n \"name\": \"json\",\n \"arguments\": \"{\\\"operations\\\":[{\\\"type\\\":\\\"update\\\",\\\"id\\\":\\\"ref2$\\\",\\\"block\\\":{\\\"type\\\":\\\"paragraph\\\",\\\"content\\\":[{\\\"type\\\":\\\"text\\\",\\\"text\\\":\\\"Hallo\\\",\\\"styles\\\":{}}]}}]}\"\n }\n }\n ],\n \"refusal\": null,\n \"annotations\": []\n },\n \"logprobs\": null,\n \"finish_reason\": \"stop\"\n }\n ],\n \"usage\": {\n \"prompt_tokens\": 1082,\n \"completion_tokens\": 38,\n \"total_tokens\": 1120,\n \"prompt_tokens_details\": {\n \"cached_tokens\": 1024,\n \"audio_tokens\": 0\n },\n \"completion_tokens_details\": {\n \"reasoning_tokens\": 0,\n \"audio_tokens\": 0,\n \"accepted_prediction_tokens\": 0,\n \"rejected_prediction_tokens\": 0\n }\n },\n \"service_tier\": \"default\",\n \"system_fingerprint\": \"fp_07871e2ad8\"\n}\n", "headers": [] } } \ No newline at end of file diff --git a/packages/xl-ai/src/api/formats/json/__snapshots__/json.test.ts/Update/__msw_snapshots__/openai.chat/gpt-4o-2024-08-06 (non-streaming)/turn paragraphs into list_1_641282d2e6c4ebf728bf3d68a286275b.json b/packages/xl-ai/src/api/formats/json/__snapshots__/json.test.ts/Update/__msw_snapshots__/openai.chat/gpt-4o-2024-08-06 (non-streaming)/turn paragraphs into list_1_641282d2e6c4ebf728bf3d68a286275b.json index 38764d6583..82fa395d13 100644 --- a/packages/xl-ai/src/api/formats/json/__snapshots__/json.test.ts/Update/__msw_snapshots__/openai.chat/gpt-4o-2024-08-06 (non-streaming)/turn paragraphs into list_1_641282d2e6c4ebf728bf3d68a286275b.json +++ b/packages/xl-ai/src/api/formats/json/__snapshots__/json.test.ts/Update/__msw_snapshots__/openai.chat/gpt-4o-2024-08-06 (non-streaming)/turn paragraphs into list_1_641282d2e6c4ebf728bf3d68a286275b.json @@ -7,9 +7,9 @@ "cookies": [] }, "response": { - "status": 429, + "status": 200, "statusText": "", - "body": "{\n \"error\": {\n \"message\": \"You exceeded your current quota, please check your plan and billing details. For more information on this error, read the docs: https://platform.openai.com/docs/guides/error-codes/api-errors.\",\n \"type\": \"insufficient_quota\",\n \"param\": null,\n \"code\": \"insufficient_quota\"\n }\n}\n", + "body": "{\n \"id\": \"chatcmpl-BhcG8Yz9TOJEOaac233jzUuWawWvd\",\n \"object\": \"chat.completion\",\n \"created\": 1749734872,\n \"model\": \"gpt-4o-2024-08-06\",\n \"choices\": [\n {\n \"index\": 0,\n \"message\": {\n \"role\": \"assistant\",\n \"content\": null,\n \"tool_calls\": [\n {\n \"id\": \"call_fPl2yUjmU2KspsxMaVSHfqnI\",\n \"type\": \"function\",\n \"function\": {\n \"name\": \"json\",\n \"arguments\": \"{\\\"operations\\\":[{\\\"type\\\":\\\"update\\\",\\\"id\\\":\\\"ref2$\\\",\\\"block\\\":{\\\"type\\\":\\\"bulletListItem\\\",\\\"content\\\":[{\\\"type\\\":\\\"text\\\",\\\"text\\\":\\\"Apples\\\",\\\"styles\\\":{}}]}},{\\\"type\\\":\\\"update\\\",\\\"id\\\":\\\"ref3$\\\",\\\"block\\\":{\\\"type\\\":\\\"bulletListItem\\\",\\\"content\\\":[{\\\"type\\\":\\\"text\\\",\\\"text\\\":\\\"Bananas\\\",\\\"styles\\\":{}}]}}]}\"\n }\n }\n ],\n \"refusal\": null,\n \"annotations\": []\n },\n \"logprobs\": null,\n \"finish_reason\": \"stop\"\n }\n ],\n \"usage\": {\n \"prompt_tokens\": 1025,\n \"completion_tokens\": 77,\n \"total_tokens\": 1102,\n \"prompt_tokens_details\": {\n \"cached_tokens\": 0,\n \"audio_tokens\": 0\n },\n \"completion_tokens_details\": {\n \"reasoning_tokens\": 0,\n \"audio_tokens\": 0,\n \"accepted_prediction_tokens\": 0,\n \"rejected_prediction_tokens\": 0\n }\n },\n \"service_tier\": \"default\",\n \"system_fingerprint\": \"fp_07871e2ad8\"\n}\n", "headers": [] } } \ No newline at end of file diff --git a/packages/xl-ai/src/api/formats/json/__snapshots__/json.test.ts/Update/__msw_snapshots__/openai.chat/gpt-4o-2024-08-06 (non-streaming)/update block prop and content_1_535c3a219eb5cf340184d102273a2cf4.json b/packages/xl-ai/src/api/formats/json/__snapshots__/json.test.ts/Update/__msw_snapshots__/openai.chat/gpt-4o-2024-08-06 (non-streaming)/update block prop and content_1_535c3a219eb5cf340184d102273a2cf4.json index e25d6299c2..31519d28ce 100644 --- a/packages/xl-ai/src/api/formats/json/__snapshots__/json.test.ts/Update/__msw_snapshots__/openai.chat/gpt-4o-2024-08-06 (non-streaming)/update block prop and content_1_535c3a219eb5cf340184d102273a2cf4.json +++ b/packages/xl-ai/src/api/formats/json/__snapshots__/json.test.ts/Update/__msw_snapshots__/openai.chat/gpt-4o-2024-08-06 (non-streaming)/update block prop and content_1_535c3a219eb5cf340184d102273a2cf4.json @@ -7,9 +7,9 @@ "cookies": [] }, "response": { - "status": 429, + "status": 200, "statusText": "", - "body": "{\n \"error\": {\n \"message\": \"You exceeded your current quota, please check your plan and billing details. For more information on this error, read the docs: https://platform.openai.com/docs/guides/error-codes/api-errors.\",\n \"type\": \"insufficient_quota\",\n \"param\": null,\n \"code\": \"insufficient_quota\"\n }\n}\n", + "body": "{\n \"id\": \"chatcmpl-BhcFonIM3Akp1b4d5d9VD5ezKxokv\",\n \"object\": \"chat.completion\",\n \"created\": 1749734852,\n \"model\": \"gpt-4o-2024-08-06\",\n \"choices\": [\n {\n \"index\": 0,\n \"message\": {\n \"role\": \"assistant\",\n \"content\": null,\n \"tool_calls\": [\n {\n \"id\": \"call_ytLQBnyLwIlx6W8XqeTR14Sq\",\n \"type\": \"function\",\n \"function\": {\n \"name\": \"json\",\n \"arguments\": \"{\\\"operations\\\":[{\\\"type\\\":\\\"update\\\",\\\"id\\\":\\\"ref1$\\\",\\\"block\\\":{\\\"type\\\":\\\"paragraph\\\",\\\"props\\\":{\\\"textColor\\\":\\\"default\\\",\\\"backgroundColor\\\":\\\"default\\\",\\\"textAlignment\\\":\\\"right\\\"},\\\"content\\\":[{\\\"type\\\":\\\"text\\\",\\\"text\\\":\\\"What's up, world!\\\",\\\"styles\\\":{}}]}}]}\"\n }\n }\n ],\n \"refusal\": null,\n \"annotations\": []\n },\n \"logprobs\": null,\n \"finish_reason\": \"stop\"\n }\n ],\n \"usage\": {\n \"prompt_tokens\": 1199,\n \"completion_tokens\": 60,\n \"total_tokens\": 1259,\n \"prompt_tokens_details\": {\n \"cached_tokens\": 1152,\n \"audio_tokens\": 0\n },\n \"completion_tokens_details\": {\n \"reasoning_tokens\": 0,\n \"audio_tokens\": 0,\n \"accepted_prediction_tokens\": 0,\n \"rejected_prediction_tokens\": 0\n }\n },\n \"service_tier\": \"default\",\n \"system_fingerprint\": \"fp_a288987b44\"\n}\n", "headers": [] } } \ No newline at end of file diff --git a/packages/xl-ai/src/api/formats/json/__snapshots__/json.test.ts/Update/__msw_snapshots__/openai.chat/gpt-4o-2024-08-06 (non-streaming)/update block prop_1_c7c286b44674e4f6141b1e95819b7f60.json b/packages/xl-ai/src/api/formats/json/__snapshots__/json.test.ts/Update/__msw_snapshots__/openai.chat/gpt-4o-2024-08-06 (non-streaming)/update block prop_1_c7c286b44674e4f6141b1e95819b7f60.json index f14d856921..07d511298f 100644 --- a/packages/xl-ai/src/api/formats/json/__snapshots__/json.test.ts/Update/__msw_snapshots__/openai.chat/gpt-4o-2024-08-06 (non-streaming)/update block prop_1_c7c286b44674e4f6141b1e95819b7f60.json +++ b/packages/xl-ai/src/api/formats/json/__snapshots__/json.test.ts/Update/__msw_snapshots__/openai.chat/gpt-4o-2024-08-06 (non-streaming)/update block prop_1_c7c286b44674e4f6141b1e95819b7f60.json @@ -7,9 +7,9 @@ "cookies": [] }, "response": { - "status": 429, + "status": 200, "statusText": "", - "body": "{\n \"error\": {\n \"message\": \"You exceeded your current quota, please check your plan and billing details. For more information on this error, read the docs: https://platform.openai.com/docs/guides/error-codes/api-errors.\",\n \"type\": \"insufficient_quota\",\n \"param\": null,\n \"code\": \"insufficient_quota\"\n }\n}\n", + "body": "{\n \"id\": \"chatcmpl-BhcFmeervrCuzvpVSvuJTS8EEzwAn\",\n \"object\": \"chat.completion\",\n \"created\": 1749734850,\n \"model\": \"gpt-4o-2024-08-06\",\n \"choices\": [\n {\n \"index\": 0,\n \"message\": {\n \"role\": \"assistant\",\n \"content\": null,\n \"tool_calls\": [\n {\n \"id\": \"call_vqZ2BrjKpyqYXhGHl6sNxJP6\",\n \"type\": \"function\",\n \"function\": {\n \"name\": \"json\",\n \"arguments\": \"{\\\"operations\\\":[{\\\"type\\\":\\\"update\\\",\\\"id\\\":\\\"ref1$\\\",\\\"block\\\":{\\\"type\\\":\\\"paragraph\\\",\\\"props\\\":{\\\"textColor\\\":\\\"default\\\",\\\"backgroundColor\\\":\\\"default\\\",\\\"textAlignment\\\":\\\"right\\\"},\\\"content\\\":[{\\\"type\\\":\\\"text\\\",\\\"text\\\":\\\"Hello, world!\\\",\\\"styles\\\":{}}]}}]}\"\n }\n }\n ],\n \"refusal\": null,\n \"annotations\": []\n },\n \"logprobs\": null,\n \"finish_reason\": \"stop\"\n }\n ],\n \"usage\": {\n \"prompt_tokens\": 1188,\n \"completion_tokens\": 59,\n \"total_tokens\": 1247,\n \"prompt_tokens_details\": {\n \"cached_tokens\": 1152,\n \"audio_tokens\": 0\n },\n \"completion_tokens_details\": {\n \"reasoning_tokens\": 0,\n \"audio_tokens\": 0,\n \"accepted_prediction_tokens\": 0,\n \"rejected_prediction_tokens\": 0\n }\n },\n \"service_tier\": \"default\",\n \"system_fingerprint\": \"fp_a288987b44\"\n}\n", "headers": [] } } \ No newline at end of file diff --git a/packages/xl-ai/src/api/formats/json/__snapshots__/json.test.ts/Update/__msw_snapshots__/openai.chat/gpt-4o-2024-08-06 (non-streaming)/update block type and content_1_901d3a54e64251f1be4ee227b9fb4522.json b/packages/xl-ai/src/api/formats/json/__snapshots__/json.test.ts/Update/__msw_snapshots__/openai.chat/gpt-4o-2024-08-06 (non-streaming)/update block type and content_1_901d3a54e64251f1be4ee227b9fb4522.json index a16319f1f8..4cd00e624c 100644 --- a/packages/xl-ai/src/api/formats/json/__snapshots__/json.test.ts/Update/__msw_snapshots__/openai.chat/gpt-4o-2024-08-06 (non-streaming)/update block type and content_1_901d3a54e64251f1be4ee227b9fb4522.json +++ b/packages/xl-ai/src/api/formats/json/__snapshots__/json.test.ts/Update/__msw_snapshots__/openai.chat/gpt-4o-2024-08-06 (non-streaming)/update block type and content_1_901d3a54e64251f1be4ee227b9fb4522.json @@ -7,9 +7,9 @@ "cookies": [] }, "response": { - "status": 429, + "status": 200, "statusText": "", - "body": "{\n \"error\": {\n \"message\": \"You exceeded your current quota, please check your plan and billing details. For more information on this error, read the docs: https://platform.openai.com/docs/guides/error-codes/api-errors.\",\n \"type\": \"insufficient_quota\",\n \"param\": null,\n \"code\": \"insufficient_quota\"\n }\n}\n", + "body": "{\n \"id\": \"chatcmpl-BhcFnJiVhSCtShTssegz4fSfhvZH8\",\n \"object\": \"chat.completion\",\n \"created\": 1749734851,\n \"model\": \"gpt-4o-2024-08-06\",\n \"choices\": [\n {\n \"index\": 0,\n \"message\": {\n \"role\": \"assistant\",\n \"content\": null,\n \"tool_calls\": [\n {\n \"id\": \"call_pJGWRp8itjN9qNze92oUMYtz\",\n \"type\": \"function\",\n \"function\": {\n \"name\": \"json\",\n \"arguments\": \"{\\\"operations\\\":[{\\\"type\\\":\\\"update\\\",\\\"id\\\":\\\"ref1$\\\",\\\"block\\\":{\\\"type\\\":\\\"heading\\\",\\\"content\\\":[{\\\"type\\\":\\\"text\\\",\\\"text\\\":\\\"What's up, world!\\\"}],\\\"props\\\":{\\\"level\\\":1}}}]}\"\n }\n }\n ],\n \"refusal\": null,\n \"annotations\": []\n },\n \"logprobs\": null,\n \"finish_reason\": \"stop\"\n }\n ],\n \"usage\": {\n \"prompt_tokens\": 1199,\n \"completion_tokens\": 44,\n \"total_tokens\": 1243,\n \"prompt_tokens_details\": {\n \"cached_tokens\": 1152,\n \"audio_tokens\": 0\n },\n \"completion_tokens_details\": {\n \"reasoning_tokens\": 0,\n \"audio_tokens\": 0,\n \"accepted_prediction_tokens\": 0,\n \"rejected_prediction_tokens\": 0\n }\n },\n \"service_tier\": \"default\",\n \"system_fingerprint\": \"fp_a288987b44\"\n}\n", "headers": [] } } \ No newline at end of file diff --git a/packages/xl-ai/src/api/formats/json/__snapshots__/json.test.ts/Update/__msw_snapshots__/openai.chat/gpt-4o-2024-08-06 (non-streaming)/update block type_1_90c759912d4965fb8ce694e2a63e26fb.json b/packages/xl-ai/src/api/formats/json/__snapshots__/json.test.ts/Update/__msw_snapshots__/openai.chat/gpt-4o-2024-08-06 (non-streaming)/update block type_1_90c759912d4965fb8ce694e2a63e26fb.json index b887991653..890cc19b93 100644 --- a/packages/xl-ai/src/api/formats/json/__snapshots__/json.test.ts/Update/__msw_snapshots__/openai.chat/gpt-4o-2024-08-06 (non-streaming)/update block type_1_90c759912d4965fb8ce694e2a63e26fb.json +++ b/packages/xl-ai/src/api/formats/json/__snapshots__/json.test.ts/Update/__msw_snapshots__/openai.chat/gpt-4o-2024-08-06 (non-streaming)/update block type_1_90c759912d4965fb8ce694e2a63e26fb.json @@ -7,9 +7,9 @@ "cookies": [] }, "response": { - "status": 429, + "status": 200, "statusText": "", - "body": "{\n \"error\": {\n \"message\": \"You exceeded your current quota, please check your plan and billing details. For more information on this error, read the docs: https://platform.openai.com/docs/guides/error-codes/api-errors.\",\n \"type\": \"insufficient_quota\",\n \"param\": null,\n \"code\": \"insufficient_quota\"\n }\n}\n", + "body": "{\n \"id\": \"chatcmpl-BhcFkl84nxa4oCLxphR3iPrsXpINB\",\n \"object\": \"chat.completion\",\n \"created\": 1749734848,\n \"model\": \"gpt-4o-2024-08-06\",\n \"choices\": [\n {\n \"index\": 0,\n \"message\": {\n \"role\": \"assistant\",\n \"content\": null,\n \"tool_calls\": [\n {\n \"id\": \"call_wDiDCO2PLsiCG3NefRfj2HcK\",\n \"type\": \"function\",\n \"function\": {\n \"name\": \"json\",\n \"arguments\": \"{\\\"operations\\\":[{\\\"type\\\":\\\"update\\\",\\\"id\\\":\\\"ref1$\\\",\\\"block\\\":{\\\"type\\\":\\\"heading\\\",\\\"content\\\":[{\\\"type\\\":\\\"text\\\",\\\"text\\\":\\\"Hello, world!\\\",\\\"styles\\\":{}}],\\\"props\\\":{\\\"level\\\":1}}}]}\"\n }\n }\n ],\n \"refusal\": null,\n \"annotations\": []\n },\n \"logprobs\": null,\n \"finish_reason\": \"stop\"\n }\n ],\n \"usage\": {\n \"prompt_tokens\": 1188,\n \"completion_tokens\": 47,\n \"total_tokens\": 1235,\n \"prompt_tokens_details\": {\n \"cached_tokens\": 1152,\n \"audio_tokens\": 0\n },\n \"completion_tokens_details\": {\n \"reasoning_tokens\": 0,\n \"audio_tokens\": 0,\n \"accepted_prediction_tokens\": 0,\n \"rejected_prediction_tokens\": 0\n }\n },\n \"service_tier\": \"default\",\n \"system_fingerprint\": \"fp_a288987b44\"\n}\n", "headers": [] } } \ No newline at end of file diff --git a/packages/xl-ai/src/api/formats/json/__snapshots__/json.test.ts/Update/__msw_snapshots__/openai.chat/gpt-4o-2024-08-06 (streaming)/clear block formatting_1_49a8b14dc6c4c5cc452e22c79dae5b62.json b/packages/xl-ai/src/api/formats/json/__snapshots__/json.test.ts/Update/__msw_snapshots__/openai.chat/gpt-4o-2024-08-06 (streaming)/clear block formatting_1_49a8b14dc6c4c5cc452e22c79dae5b62.json index 969f4af59d..c4a4342edd 100644 --- a/packages/xl-ai/src/api/formats/json/__snapshots__/json.test.ts/Update/__msw_snapshots__/openai.chat/gpt-4o-2024-08-06 (streaming)/clear block formatting_1_49a8b14dc6c4c5cc452e22c79dae5b62.json +++ b/packages/xl-ai/src/api/formats/json/__snapshots__/json.test.ts/Update/__msw_snapshots__/openai.chat/gpt-4o-2024-08-06 (streaming)/clear block formatting_1_49a8b14dc6c4c5cc452e22c79dae5b62.json @@ -7,9 +7,9 @@ "cookies": [] }, "response": { - "status": 429, + "status": 200, "statusText": "", - "body": "{\n \"error\": {\n \"message\": \"You exceeded your current quota, please check your plan and billing details. For more information on this error, read the docs: https://platform.openai.com/docs/guides/error-codes/api-errors.\",\n \"type\": \"insufficient_quota\",\n \"param\": null,\n \"code\": \"insufficient_quota\"\n }\n}\n", + "body": "data: {\"id\":\"chatcmpl-BhcFT4KTwE82sED2Tnje5TqleOjmn\",\"object\":\"chat.completion.chunk\",\"created\":1749734831,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_a288987b44\",\"choices\":[{\"index\":0,\"delta\":{\"role\":\"assistant\",\"content\":null,\"tool_calls\":[{\"index\":0,\"id\":\"call_gbKxrlbCjkowNCzEkRPmpCGn\",\"type\":\"function\",\"function\":{\"name\":\"json\",\"arguments\":\"\"}}],\"refusal\":null},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BhcFT4KTwE82sED2Tnje5TqleOjmn\",\"object\":\"chat.completion.chunk\",\"created\":1749734831,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_a288987b44\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"{\\\"\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BhcFT4KTwE82sED2Tnje5TqleOjmn\",\"object\":\"chat.completion.chunk\",\"created\":1749734831,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_a288987b44\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"operations\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BhcFT4KTwE82sED2Tnje5TqleOjmn\",\"object\":\"chat.completion.chunk\",\"created\":1749734831,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_a288987b44\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"\\\":[\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BhcFT4KTwE82sED2Tnje5TqleOjmn\",\"object\":\"chat.completion.chunk\",\"created\":1749734831,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_a288987b44\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"{\\\"\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BhcFT4KTwE82sED2Tnje5TqleOjmn\",\"object\":\"chat.completion.chunk\",\"created\":1749734831,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_a288987b44\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"type\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BhcFT4KTwE82sED2Tnje5TqleOjmn\",\"object\":\"chat.completion.chunk\",\"created\":1749734831,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_a288987b44\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"\\\":\\\"\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BhcFT4KTwE82sED2Tnje5TqleOjmn\",\"object\":\"chat.completion.chunk\",\"created\":1749734831,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_a288987b44\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"update\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BhcFT4KTwE82sED2Tnje5TqleOjmn\",\"object\":\"chat.completion.chunk\",\"created\":1749734831,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_a288987b44\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"\\\",\\\"\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BhcFT4KTwE82sED2Tnje5TqleOjmn\",\"object\":\"chat.completion.chunk\",\"created\":1749734831,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_a288987b44\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"id\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BhcFT4KTwE82sED2Tnje5TqleOjmn\",\"object\":\"chat.completion.chunk\",\"created\":1749734831,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_a288987b44\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"\\\":\\\"\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BhcFT4KTwE82sED2Tnje5TqleOjmn\",\"object\":\"chat.completion.chunk\",\"created\":1749734831,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_a288987b44\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"ref\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BhcFT4KTwE82sED2Tnje5TqleOjmn\",\"object\":\"chat.completion.chunk\",\"created\":1749734831,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_a288987b44\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"1\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BhcFT4KTwE82sED2Tnje5TqleOjmn\",\"object\":\"chat.completion.chunk\",\"created\":1749734831,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_a288987b44\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"$\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BhcFT4KTwE82sED2Tnje5TqleOjmn\",\"object\":\"chat.completion.chunk\",\"created\":1749734831,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_a288987b44\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"\\\",\\\"\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BhcFT4KTwE82sED2Tnje5TqleOjmn\",\"object\":\"chat.completion.chunk\",\"created\":1749734831,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_a288987b44\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"block\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BhcFT4KTwE82sED2Tnje5TqleOjmn\",\"object\":\"chat.completion.chunk\",\"created\":1749734831,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_a288987b44\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"\\\":{\\\"\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BhcFT4KTwE82sED2Tnje5TqleOjmn\",\"object\":\"chat.completion.chunk\",\"created\":1749734831,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_a288987b44\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"type\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BhcFT4KTwE82sED2Tnje5TqleOjmn\",\"object\":\"chat.completion.chunk\",\"created\":1749734831,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_a288987b44\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"\\\":\\\"\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BhcFT4KTwE82sED2Tnje5TqleOjmn\",\"object\":\"chat.completion.chunk\",\"created\":1749734831,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_a288987b44\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"paragraph\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BhcFT4KTwE82sED2Tnje5TqleOjmn\",\"object\":\"chat.completion.chunk\",\"created\":1749734831,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_a288987b44\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"\\\",\\\"\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BhcFT4KTwE82sED2Tnje5TqleOjmn\",\"object\":\"chat.completion.chunk\",\"created\":1749734831,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_a288987b44\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"props\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BhcFT4KTwE82sED2Tnje5TqleOjmn\",\"object\":\"chat.completion.chunk\",\"created\":1749734831,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_a288987b44\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"\\\":{\\\"\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BhcFT4KTwE82sED2Tnje5TqleOjmn\",\"object\":\"chat.completion.chunk\",\"created\":1749734831,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_a288987b44\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"text\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BhcFT4KTwE82sED2Tnje5TqleOjmn\",\"object\":\"chat.completion.chunk\",\"created\":1749734831,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_a288987b44\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"Color\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BhcFT4KTwE82sED2Tnje5TqleOjmn\",\"object\":\"chat.completion.chunk\",\"created\":1749734831,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_a288987b44\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"\\\":\\\"\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BhcFT4KTwE82sED2Tnje5TqleOjmn\",\"object\":\"chat.completion.chunk\",\"created\":1749734831,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_a288987b44\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"default\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BhcFT4KTwE82sED2Tnje5TqleOjmn\",\"object\":\"chat.completion.chunk\",\"created\":1749734831,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_a288987b44\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"\\\",\\\"\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BhcFT4KTwE82sED2Tnje5TqleOjmn\",\"object\":\"chat.completion.chunk\",\"created\":1749734831,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_a288987b44\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"background\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BhcFT4KTwE82sED2Tnje5TqleOjmn\",\"object\":\"chat.completion.chunk\",\"created\":1749734831,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_a288987b44\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"Color\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BhcFT4KTwE82sED2Tnje5TqleOjmn\",\"object\":\"chat.completion.chunk\",\"created\":1749734831,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_a288987b44\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"\\\":\\\"\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BhcFT4KTwE82sED2Tnje5TqleOjmn\",\"object\":\"chat.completion.chunk\",\"created\":1749734831,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_a288987b44\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"default\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BhcFT4KTwE82sED2Tnje5TqleOjmn\",\"object\":\"chat.completion.chunk\",\"created\":1749734831,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_a288987b44\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"\\\",\\\"\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BhcFT4KTwE82sED2Tnje5TqleOjmn\",\"object\":\"chat.completion.chunk\",\"created\":1749734831,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_a288987b44\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"text\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BhcFT4KTwE82sED2Tnje5TqleOjmn\",\"object\":\"chat.completion.chunk\",\"created\":1749734831,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_a288987b44\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"Alignment\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BhcFT4KTwE82sED2Tnje5TqleOjmn\",\"object\":\"chat.completion.chunk\",\"created\":1749734831,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_a288987b44\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"\\\":\\\"\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BhcFT4KTwE82sED2Tnje5TqleOjmn\",\"object\":\"chat.completion.chunk\",\"created\":1749734831,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_a288987b44\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"left\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BhcFT4KTwE82sED2Tnje5TqleOjmn\",\"object\":\"chat.completion.chunk\",\"created\":1749734831,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_a288987b44\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"\\\"}\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BhcFT4KTwE82sED2Tnje5TqleOjmn\",\"object\":\"chat.completion.chunk\",\"created\":1749734831,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_a288987b44\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\",\\\"\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BhcFT4KTwE82sED2Tnje5TqleOjmn\",\"object\":\"chat.completion.chunk\",\"created\":1749734831,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_a288987b44\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"content\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BhcFT4KTwE82sED2Tnje5TqleOjmn\",\"object\":\"chat.completion.chunk\",\"created\":1749734831,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_a288987b44\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"\\\":[\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BhcFT4KTwE82sED2Tnje5TqleOjmn\",\"object\":\"chat.completion.chunk\",\"created\":1749734831,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_a288987b44\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"{\\\"\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BhcFT4KTwE82sED2Tnje5TqleOjmn\",\"object\":\"chat.completion.chunk\",\"created\":1749734831,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_a288987b44\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"type\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BhcFT4KTwE82sED2Tnje5TqleOjmn\",\"object\":\"chat.completion.chunk\",\"created\":1749734831,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_a288987b44\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"\\\":\\\"\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BhcFT4KTwE82sED2Tnje5TqleOjmn\",\"object\":\"chat.completion.chunk\",\"created\":1749734831,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_a288987b44\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"text\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BhcFT4KTwE82sED2Tnje5TqleOjmn\",\"object\":\"chat.completion.chunk\",\"created\":1749734831,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_a288987b44\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"\\\",\\\"\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BhcFT4KTwE82sED2Tnje5TqleOjmn\",\"object\":\"chat.completion.chunk\",\"created\":1749734831,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_a288987b44\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"text\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BhcFT4KTwE82sED2Tnje5TqleOjmn\",\"object\":\"chat.completion.chunk\",\"created\":1749734831,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_a288987b44\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"\\\":\\\"\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BhcFT4KTwE82sED2Tnje5TqleOjmn\",\"object\":\"chat.completion.chunk\",\"created\":1749734831,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_a288987b44\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"Colored\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BhcFT4KTwE82sED2Tnje5TqleOjmn\",\"object\":\"chat.completion.chunk\",\"created\":1749734831,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_a288987b44\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\" text\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BhcFT4KTwE82sED2Tnje5TqleOjmn\",\"object\":\"chat.completion.chunk\",\"created\":1749734831,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_a288987b44\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"\\\",\\\"\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BhcFT4KTwE82sED2Tnje5TqleOjmn\",\"object\":\"chat.completion.chunk\",\"created\":1749734831,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_a288987b44\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"styles\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BhcFT4KTwE82sED2Tnje5TqleOjmn\",\"object\":\"chat.completion.chunk\",\"created\":1749734831,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_a288987b44\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"\\\":\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BhcFT4KTwE82sED2Tnje5TqleOjmn\",\"object\":\"chat.completion.chunk\",\"created\":1749734831,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_a288987b44\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"{\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BhcFT4KTwE82sED2Tnje5TqleOjmn\",\"object\":\"chat.completion.chunk\",\"created\":1749734831,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_a288987b44\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"}}\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BhcFT4KTwE82sED2Tnje5TqleOjmn\",\"object\":\"chat.completion.chunk\",\"created\":1749734831,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_a288987b44\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"]}\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BhcFT4KTwE82sED2Tnje5TqleOjmn\",\"object\":\"chat.completion.chunk\",\"created\":1749734831,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_a288987b44\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"},{\\\"\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BhcFT4KTwE82sED2Tnje5TqleOjmn\",\"object\":\"chat.completion.chunk\",\"created\":1749734831,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_a288987b44\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"type\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BhcFT4KTwE82sED2Tnje5TqleOjmn\",\"object\":\"chat.completion.chunk\",\"created\":1749734831,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_a288987b44\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"\\\":\\\"\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BhcFT4KTwE82sED2Tnje5TqleOjmn\",\"object\":\"chat.completion.chunk\",\"created\":1749734831,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_a288987b44\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"update\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BhcFT4KTwE82sED2Tnje5TqleOjmn\",\"object\":\"chat.completion.chunk\",\"created\":1749734831,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_a288987b44\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"\\\",\\\"\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BhcFT4KTwE82sED2Tnje5TqleOjmn\",\"object\":\"chat.completion.chunk\",\"created\":1749734831,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_a288987b44\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"id\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BhcFT4KTwE82sED2Tnje5TqleOjmn\",\"object\":\"chat.completion.chunk\",\"created\":1749734831,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_a288987b44\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"\\\":\\\"\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BhcFT4KTwE82sED2Tnje5TqleOjmn\",\"object\":\"chat.completion.chunk\",\"created\":1749734831,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_a288987b44\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"ref\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BhcFT4KTwE82sED2Tnje5TqleOjmn\",\"object\":\"chat.completion.chunk\",\"created\":1749734831,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_a288987b44\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"2\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BhcFT4KTwE82sED2Tnje5TqleOjmn\",\"object\":\"chat.completion.chunk\",\"created\":1749734831,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_a288987b44\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"$\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BhcFT4KTwE82sED2Tnje5TqleOjmn\",\"object\":\"chat.completion.chunk\",\"created\":1749734831,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_a288987b44\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"\\\",\\\"\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BhcFT4KTwE82sED2Tnje5TqleOjmn\",\"object\":\"chat.completion.chunk\",\"created\":1749734831,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_a288987b44\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"block\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BhcFT4KTwE82sED2Tnje5TqleOjmn\",\"object\":\"chat.completion.chunk\",\"created\":1749734831,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_a288987b44\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"\\\":{\\\"\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BhcFT4KTwE82sED2Tnje5TqleOjmn\",\"object\":\"chat.completion.chunk\",\"created\":1749734831,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_a288987b44\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"type\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BhcFT4KTwE82sED2Tnje5TqleOjmn\",\"object\":\"chat.completion.chunk\",\"created\":1749734831,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_a288987b44\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"\\\":\\\"\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BhcFT4KTwE82sED2Tnje5TqleOjmn\",\"object\":\"chat.completion.chunk\",\"created\":1749734831,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_a288987b44\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"paragraph\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BhcFT4KTwE82sED2Tnje5TqleOjmn\",\"object\":\"chat.completion.chunk\",\"created\":1749734831,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_a288987b44\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"\\\",\\\"\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BhcFT4KTwE82sED2Tnje5TqleOjmn\",\"object\":\"chat.completion.chunk\",\"created\":1749734831,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_a288987b44\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"props\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BhcFT4KTwE82sED2Tnje5TqleOjmn\",\"object\":\"chat.completion.chunk\",\"created\":1749734831,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_a288987b44\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"\\\":{\\\"\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BhcFT4KTwE82sED2Tnje5TqleOjmn\",\"object\":\"chat.completion.chunk\",\"created\":1749734831,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_a288987b44\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"text\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BhcFT4KTwE82sED2Tnje5TqleOjmn\",\"object\":\"chat.completion.chunk\",\"created\":1749734831,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_a288987b44\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"Color\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BhcFT4KTwE82sED2Tnje5TqleOjmn\",\"object\":\"chat.completion.chunk\",\"created\":1749734831,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_a288987b44\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"\\\":\\\"\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BhcFT4KTwE82sED2Tnje5TqleOjmn\",\"object\":\"chat.completion.chunk\",\"created\":1749734831,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_a288987b44\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"default\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BhcFT4KTwE82sED2Tnje5TqleOjmn\",\"object\":\"chat.completion.chunk\",\"created\":1749734831,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_a288987b44\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"\\\",\\\"\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BhcFT4KTwE82sED2Tnje5TqleOjmn\",\"object\":\"chat.completion.chunk\",\"created\":1749734831,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_a288987b44\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"background\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BhcFT4KTwE82sED2Tnje5TqleOjmn\",\"object\":\"chat.completion.chunk\",\"created\":1749734831,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_a288987b44\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"Color\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BhcFT4KTwE82sED2Tnje5TqleOjmn\",\"object\":\"chat.completion.chunk\",\"created\":1749734831,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_a288987b44\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"\\\":\\\"\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BhcFT4KTwE82sED2Tnje5TqleOjmn\",\"object\":\"chat.completion.chunk\",\"created\":1749734831,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_a288987b44\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"default\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BhcFT4KTwE82sED2Tnje5TqleOjmn\",\"object\":\"chat.completion.chunk\",\"created\":1749734831,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_a288987b44\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"\\\",\\\"\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BhcFT4KTwE82sED2Tnje5TqleOjmn\",\"object\":\"chat.completion.chunk\",\"created\":1749734831,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_a288987b44\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"text\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BhcFT4KTwE82sED2Tnje5TqleOjmn\",\"object\":\"chat.completion.chunk\",\"created\":1749734831,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_a288987b44\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"Alignment\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BhcFT4KTwE82sED2Tnje5TqleOjmn\",\"object\":\"chat.completion.chunk\",\"created\":1749734831,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_a288987b44\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"\\\":\\\"\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BhcFT4KTwE82sED2Tnje5TqleOjmn\",\"object\":\"chat.completion.chunk\",\"created\":1749734831,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_a288987b44\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"left\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BhcFT4KTwE82sED2Tnje5TqleOjmn\",\"object\":\"chat.completion.chunk\",\"created\":1749734831,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_a288987b44\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"\\\"}\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BhcFT4KTwE82sED2Tnje5TqleOjmn\",\"object\":\"chat.completion.chunk\",\"created\":1749734831,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_a288987b44\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\",\\\"\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BhcFT4KTwE82sED2Tnje5TqleOjmn\",\"object\":\"chat.completion.chunk\",\"created\":1749734831,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_a288987b44\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"content\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BhcFT4KTwE82sED2Tnje5TqleOjmn\",\"object\":\"chat.completion.chunk\",\"created\":1749734831,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_a288987b44\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"\\\":[\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BhcFT4KTwE82sED2Tnje5TqleOjmn\",\"object\":\"chat.completion.chunk\",\"created\":1749734831,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_a288987b44\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"{\\\"\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BhcFT4KTwE82sED2Tnje5TqleOjmn\",\"object\":\"chat.completion.chunk\",\"created\":1749734831,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_a288987b44\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"type\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BhcFT4KTwE82sED2Tnje5TqleOjmn\",\"object\":\"chat.completion.chunk\",\"created\":1749734831,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_a288987b44\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"\\\":\\\"\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BhcFT4KTwE82sED2Tnje5TqleOjmn\",\"object\":\"chat.completion.chunk\",\"created\":1749734831,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_a288987b44\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"text\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BhcFT4KTwE82sED2Tnje5TqleOjmn\",\"object\":\"chat.completion.chunk\",\"created\":1749734831,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_a288987b44\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"\\\",\\\"\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BhcFT4KTwE82sED2Tnje5TqleOjmn\",\"object\":\"chat.completion.chunk\",\"created\":1749734831,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_a288987b44\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"text\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BhcFT4KTwE82sED2Tnje5TqleOjmn\",\"object\":\"chat.completion.chunk\",\"created\":1749734831,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_a288987b44\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"\\\":\\\"\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BhcFT4KTwE82sED2Tnje5TqleOjmn\",\"object\":\"chat.completion.chunk\",\"created\":1749734831,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_a288987b44\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"Aligned\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BhcFT4KTwE82sED2Tnje5TqleOjmn\",\"object\":\"chat.completion.chunk\",\"created\":1749734831,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_a288987b44\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\" text\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BhcFT4KTwE82sED2Tnje5TqleOjmn\",\"object\":\"chat.completion.chunk\",\"created\":1749734831,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_a288987b44\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"\\\",\\\"\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BhcFT4KTwE82sED2Tnje5TqleOjmn\",\"object\":\"chat.completion.chunk\",\"created\":1749734831,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_a288987b44\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"styles\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BhcFT4KTwE82sED2Tnje5TqleOjmn\",\"object\":\"chat.completion.chunk\",\"created\":1749734831,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_a288987b44\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"\\\":\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BhcFT4KTwE82sED2Tnje5TqleOjmn\",\"object\":\"chat.completion.chunk\",\"created\":1749734831,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_a288987b44\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"{\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BhcFT4KTwE82sED2Tnje5TqleOjmn\",\"object\":\"chat.completion.chunk\",\"created\":1749734831,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_a288987b44\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"}}\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BhcFT4KTwE82sED2Tnje5TqleOjmn\",\"object\":\"chat.completion.chunk\",\"created\":1749734831,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_a288987b44\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"]\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BhcFT4KTwE82sED2Tnje5TqleOjmn\",\"object\":\"chat.completion.chunk\",\"created\":1749734831,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_a288987b44\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"}}\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BhcFT4KTwE82sED2Tnje5TqleOjmn\",\"object\":\"chat.completion.chunk\",\"created\":1749734831,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_a288987b44\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"]}\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BhcFT4KTwE82sED2Tnje5TqleOjmn\",\"object\":\"chat.completion.chunk\",\"created\":1749734831,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_a288987b44\",\"choices\":[{\"index\":0,\"delta\":{},\"logprobs\":null,\"finish_reason\":\"stop\"}]}\n\ndata: [DONE]\n\n", "headers": [] } } \ No newline at end of file diff --git a/packages/xl-ai/src/api/formats/json/__snapshots__/json.test.ts/Update/__msw_snapshots__/openai.chat/gpt-4o-2024-08-06 (streaming)/drop mark and link and change text within mark_1_2c278aa8dd1cb7a5f35e306e9a02c487.json b/packages/xl-ai/src/api/formats/json/__snapshots__/json.test.ts/Update/__msw_snapshots__/openai.chat/gpt-4o-2024-08-06 (streaming)/drop mark and link and change text within mark_1_2c278aa8dd1cb7a5f35e306e9a02c487.json index a1c1ca9610..2ec3ec981e 100644 --- a/packages/xl-ai/src/api/formats/json/__snapshots__/json.test.ts/Update/__msw_snapshots__/openai.chat/gpt-4o-2024-08-06 (streaming)/drop mark and link and change text within mark_1_2c278aa8dd1cb7a5f35e306e9a02c487.json +++ b/packages/xl-ai/src/api/formats/json/__snapshots__/json.test.ts/Update/__msw_snapshots__/openai.chat/gpt-4o-2024-08-06 (streaming)/drop mark and link and change text within mark_1_2c278aa8dd1cb7a5f35e306e9a02c487.json @@ -7,9 +7,9 @@ "cookies": [] }, "response": { - "status": 429, + "status": 200, "statusText": "", - "body": "{\n \"error\": {\n \"message\": \"You exceeded your current quota, please check your plan and billing details. For more information on this error, read the docs: https://platform.openai.com/docs/guides/error-codes/api-errors.\",\n \"type\": \"insufficient_quota\",\n \"param\": null,\n \"code\": \"insufficient_quota\"\n }\n}\n", + "body": "data: {\"id\":\"chatcmpl-BhcFMPLjxr7IWHWtsFqOeoy2d8i7U\",\"object\":\"chat.completion.chunk\",\"created\":1749734824,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_07871e2ad8\",\"choices\":[{\"index\":0,\"delta\":{\"role\":\"assistant\",\"content\":null,\"tool_calls\":[{\"index\":0,\"id\":\"call_zL1cSZvuZTEtnlPQ6xAhOSxB\",\"type\":\"function\",\"function\":{\"name\":\"json\",\"arguments\":\"\"}}],\"refusal\":null},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BhcFMPLjxr7IWHWtsFqOeoy2d8i7U\",\"object\":\"chat.completion.chunk\",\"created\":1749734824,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_07871e2ad8\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"{\\\"\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BhcFMPLjxr7IWHWtsFqOeoy2d8i7U\",\"object\":\"chat.completion.chunk\",\"created\":1749734824,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_07871e2ad8\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"operations\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BhcFMPLjxr7IWHWtsFqOeoy2d8i7U\",\"object\":\"chat.completion.chunk\",\"created\":1749734824,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_07871e2ad8\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"\\\":[\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BhcFMPLjxr7IWHWtsFqOeoy2d8i7U\",\"object\":\"chat.completion.chunk\",\"created\":1749734824,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_07871e2ad8\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"{\\\"\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BhcFMPLjxr7IWHWtsFqOeoy2d8i7U\",\"object\":\"chat.completion.chunk\",\"created\":1749734824,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_07871e2ad8\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"type\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BhcFMPLjxr7IWHWtsFqOeoy2d8i7U\",\"object\":\"chat.completion.chunk\",\"created\":1749734824,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_07871e2ad8\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"\\\":\\\"\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BhcFMPLjxr7IWHWtsFqOeoy2d8i7U\",\"object\":\"chat.completion.chunk\",\"created\":1749734824,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_07871e2ad8\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"update\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BhcFMPLjxr7IWHWtsFqOeoy2d8i7U\",\"object\":\"chat.completion.chunk\",\"created\":1749734824,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_07871e2ad8\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"\\\",\\\"\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BhcFMPLjxr7IWHWtsFqOeoy2d8i7U\",\"object\":\"chat.completion.chunk\",\"created\":1749734824,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_07871e2ad8\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"id\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BhcFMPLjxr7IWHWtsFqOeoy2d8i7U\",\"object\":\"chat.completion.chunk\",\"created\":1749734824,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_07871e2ad8\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"\\\":\\\"\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BhcFMPLjxr7IWHWtsFqOeoy2d8i7U\",\"object\":\"chat.completion.chunk\",\"created\":1749734824,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_07871e2ad8\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"ref\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BhcFMPLjxr7IWHWtsFqOeoy2d8i7U\",\"object\":\"chat.completion.chunk\",\"created\":1749734824,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_07871e2ad8\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"3\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BhcFMPLjxr7IWHWtsFqOeoy2d8i7U\",\"object\":\"chat.completion.chunk\",\"created\":1749734824,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_07871e2ad8\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"$\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BhcFMPLjxr7IWHWtsFqOeoy2d8i7U\",\"object\":\"chat.completion.chunk\",\"created\":1749734824,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_07871e2ad8\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"\\\",\\\"\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BhcFMPLjxr7IWHWtsFqOeoy2d8i7U\",\"object\":\"chat.completion.chunk\",\"created\":1749734824,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_07871e2ad8\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"block\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BhcFMPLjxr7IWHWtsFqOeoy2d8i7U\",\"object\":\"chat.completion.chunk\",\"created\":1749734824,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_07871e2ad8\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"\\\":{\\\"\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BhcFMPLjxr7IWHWtsFqOeoy2d8i7U\",\"object\":\"chat.completion.chunk\",\"created\":1749734824,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_07871e2ad8\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"type\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BhcFMPLjxr7IWHWtsFqOeoy2d8i7U\",\"object\":\"chat.completion.chunk\",\"created\":1749734824,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_07871e2ad8\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"\\\":\\\"\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BhcFMPLjxr7IWHWtsFqOeoy2d8i7U\",\"object\":\"chat.completion.chunk\",\"created\":1749734824,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_07871e2ad8\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"paragraph\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BhcFMPLjxr7IWHWtsFqOeoy2d8i7U\",\"object\":\"chat.completion.chunk\",\"created\":1749734824,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_07871e2ad8\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"\\\",\\\"\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BhcFMPLjxr7IWHWtsFqOeoy2d8i7U\",\"object\":\"chat.completion.chunk\",\"created\":1749734824,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_07871e2ad8\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"content\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BhcFMPLjxr7IWHWtsFqOeoy2d8i7U\",\"object\":\"chat.completion.chunk\",\"created\":1749734824,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_07871e2ad8\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"\\\":[\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BhcFMPLjxr7IWHWtsFqOeoy2d8i7U\",\"object\":\"chat.completion.chunk\",\"created\":1749734824,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_07871e2ad8\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"{\\\"\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BhcFMPLjxr7IWHWtsFqOeoy2d8i7U\",\"object\":\"chat.completion.chunk\",\"created\":1749734824,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_07871e2ad8\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"type\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BhcFMPLjxr7IWHWtsFqOeoy2d8i7U\",\"object\":\"chat.completion.chunk\",\"created\":1749734824,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_07871e2ad8\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"\\\":\\\"\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BhcFMPLjxr7IWHWtsFqOeoy2d8i7U\",\"object\":\"chat.completion.chunk\",\"created\":1749734824,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_07871e2ad8\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"text\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BhcFMPLjxr7IWHWtsFqOeoy2d8i7U\",\"object\":\"chat.completion.chunk\",\"created\":1749734824,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_07871e2ad8\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"\\\",\\\"\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BhcFMPLjxr7IWHWtsFqOeoy2d8i7U\",\"object\":\"chat.completion.chunk\",\"created\":1749734824,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_07871e2ad8\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"text\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BhcFMPLjxr7IWHWtsFqOeoy2d8i7U\",\"object\":\"chat.completion.chunk\",\"created\":1749734824,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_07871e2ad8\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"\\\":\\\"\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BhcFMPLjxr7IWHWtsFqOeoy2d8i7U\",\"object\":\"chat.completion.chunk\",\"created\":1749734824,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_07871e2ad8\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"Hi\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BhcFMPLjxr7IWHWtsFqOeoy2d8i7U\",\"object\":\"chat.completion.chunk\",\"created\":1749734824,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_07871e2ad8\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\",\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BhcFMPLjxr7IWHWtsFqOeoy2d8i7U\",\"object\":\"chat.completion.chunk\",\"created\":1749734824,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_07871e2ad8\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\" world\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BhcFMPLjxr7IWHWtsFqOeoy2d8i7U\",\"object\":\"chat.completion.chunk\",\"created\":1749734824,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_07871e2ad8\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"!\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BhcFMPLjxr7IWHWtsFqOeoy2d8i7U\",\"object\":\"chat.completion.chunk\",\"created\":1749734824,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_07871e2ad8\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\" Bold\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BhcFMPLjxr7IWHWtsFqOeoy2d8i7U\",\"object\":\"chat.completion.chunk\",\"created\":1749734824,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_07871e2ad8\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\" the\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BhcFMPLjxr7IWHWtsFqOeoy2d8i7U\",\"object\":\"chat.completion.chunk\",\"created\":1749734824,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_07871e2ad8\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\" text\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BhcFMPLjxr7IWHWtsFqOeoy2d8i7U\",\"object\":\"chat.completion.chunk\",\"created\":1749734824,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_07871e2ad8\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\".\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BhcFMPLjxr7IWHWtsFqOeoy2d8i7U\",\"object\":\"chat.completion.chunk\",\"created\":1749734824,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_07871e2ad8\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\" Link\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BhcFMPLjxr7IWHWtsFqOeoy2d8i7U\",\"object\":\"chat.completion.chunk\",\"created\":1749734824,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_07871e2ad8\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\".\\\",\\\"\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BhcFMPLjxr7IWHWtsFqOeoy2d8i7U\",\"object\":\"chat.completion.chunk\",\"created\":1749734824,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_07871e2ad8\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"styles\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BhcFMPLjxr7IWHWtsFqOeoy2d8i7U\",\"object\":\"chat.completion.chunk\",\"created\":1749734824,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_07871e2ad8\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"\\\":\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BhcFMPLjxr7IWHWtsFqOeoy2d8i7U\",\"object\":\"chat.completion.chunk\",\"created\":1749734824,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_07871e2ad8\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"{\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BhcFMPLjxr7IWHWtsFqOeoy2d8i7U\",\"object\":\"chat.completion.chunk\",\"created\":1749734824,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_07871e2ad8\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"}}\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BhcFMPLjxr7IWHWtsFqOeoy2d8i7U\",\"object\":\"chat.completion.chunk\",\"created\":1749734824,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_07871e2ad8\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"]\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BhcFMPLjxr7IWHWtsFqOeoy2d8i7U\",\"object\":\"chat.completion.chunk\",\"created\":1749734824,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_07871e2ad8\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"}}\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BhcFMPLjxr7IWHWtsFqOeoy2d8i7U\",\"object\":\"chat.completion.chunk\",\"created\":1749734824,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_07871e2ad8\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"]}\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BhcFMPLjxr7IWHWtsFqOeoy2d8i7U\",\"object\":\"chat.completion.chunk\",\"created\":1749734824,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_07871e2ad8\",\"choices\":[{\"index\":0,\"delta\":{},\"logprobs\":null,\"finish_reason\":\"stop\"}]}\n\ndata: [DONE]\n\n", "headers": [] } } \ No newline at end of file diff --git a/packages/xl-ai/src/api/formats/json/__snapshots__/json.test.ts/Update/__msw_snapshots__/openai.chat/gpt-4o-2024-08-06 (streaming)/drop mark and link_1_8349974ecc8b2268c1b5b42aa93563b7.json b/packages/xl-ai/src/api/formats/json/__snapshots__/json.test.ts/Update/__msw_snapshots__/openai.chat/gpt-4o-2024-08-06 (streaming)/drop mark and link_1_8349974ecc8b2268c1b5b42aa93563b7.json index 1f7f9580a4..dd1a6d7588 100644 --- a/packages/xl-ai/src/api/formats/json/__snapshots__/json.test.ts/Update/__msw_snapshots__/openai.chat/gpt-4o-2024-08-06 (streaming)/drop mark and link_1_8349974ecc8b2268c1b5b42aa93563b7.json +++ b/packages/xl-ai/src/api/formats/json/__snapshots__/json.test.ts/Update/__msw_snapshots__/openai.chat/gpt-4o-2024-08-06 (streaming)/drop mark and link_1_8349974ecc8b2268c1b5b42aa93563b7.json @@ -7,9 +7,9 @@ "cookies": [] }, "response": { - "status": 429, + "status": 200, "statusText": "", - "body": "{\n \"error\": {\n \"message\": \"You exceeded your current quota, please check your plan and billing details. For more information on this error, read the docs: https://platform.openai.com/docs/guides/error-codes/api-errors.\",\n \"type\": \"insufficient_quota\",\n \"param\": null,\n \"code\": \"insufficient_quota\"\n }\n}\n", + "body": "data: {\"id\":\"chatcmpl-BhcFL3P8kw7YbIebHwlWdht15qeqc\",\"object\":\"chat.completion.chunk\",\"created\":1749734823,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_a288987b44\",\"choices\":[{\"index\":0,\"delta\":{\"role\":\"assistant\",\"content\":null,\"tool_calls\":[{\"index\":0,\"id\":\"call_bHozi9nvzxEObQu1W9sFm47S\",\"type\":\"function\",\"function\":{\"name\":\"json\",\"arguments\":\"\"}}],\"refusal\":null},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BhcFL3P8kw7YbIebHwlWdht15qeqc\",\"object\":\"chat.completion.chunk\",\"created\":1749734823,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_a288987b44\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"{\\\"\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BhcFL3P8kw7YbIebHwlWdht15qeqc\",\"object\":\"chat.completion.chunk\",\"created\":1749734823,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_a288987b44\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"operations\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BhcFL3P8kw7YbIebHwlWdht15qeqc\",\"object\":\"chat.completion.chunk\",\"created\":1749734823,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_a288987b44\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"\\\":[\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BhcFL3P8kw7YbIebHwlWdht15qeqc\",\"object\":\"chat.completion.chunk\",\"created\":1749734823,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_a288987b44\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"{\\\"\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BhcFL3P8kw7YbIebHwlWdht15qeqc\",\"object\":\"chat.completion.chunk\",\"created\":1749734823,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_a288987b44\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"type\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BhcFL3P8kw7YbIebHwlWdht15qeqc\",\"object\":\"chat.completion.chunk\",\"created\":1749734823,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_a288987b44\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"\\\":\\\"\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BhcFL3P8kw7YbIebHwlWdht15qeqc\",\"object\":\"chat.completion.chunk\",\"created\":1749734823,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_a288987b44\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"update\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BhcFL3P8kw7YbIebHwlWdht15qeqc\",\"object\":\"chat.completion.chunk\",\"created\":1749734823,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_a288987b44\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"\\\",\\\"\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BhcFL3P8kw7YbIebHwlWdht15qeqc\",\"object\":\"chat.completion.chunk\",\"created\":1749734823,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_a288987b44\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"id\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BhcFL3P8kw7YbIebHwlWdht15qeqc\",\"object\":\"chat.completion.chunk\",\"created\":1749734823,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_a288987b44\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"\\\":\\\"\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BhcFL3P8kw7YbIebHwlWdht15qeqc\",\"object\":\"chat.completion.chunk\",\"created\":1749734823,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_a288987b44\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"ref\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BhcFL3P8kw7YbIebHwlWdht15qeqc\",\"object\":\"chat.completion.chunk\",\"created\":1749734823,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_a288987b44\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"3\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BhcFL3P8kw7YbIebHwlWdht15qeqc\",\"object\":\"chat.completion.chunk\",\"created\":1749734823,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_a288987b44\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"$\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BhcFL3P8kw7YbIebHwlWdht15qeqc\",\"object\":\"chat.completion.chunk\",\"created\":1749734823,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_a288987b44\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"\\\",\\\"\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BhcFL3P8kw7YbIebHwlWdht15qeqc\",\"object\":\"chat.completion.chunk\",\"created\":1749734823,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_a288987b44\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"block\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BhcFL3P8kw7YbIebHwlWdht15qeqc\",\"object\":\"chat.completion.chunk\",\"created\":1749734823,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_a288987b44\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"\\\":{\\\"\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BhcFL3P8kw7YbIebHwlWdht15qeqc\",\"object\":\"chat.completion.chunk\",\"created\":1749734823,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_a288987b44\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"type\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BhcFL3P8kw7YbIebHwlWdht15qeqc\",\"object\":\"chat.completion.chunk\",\"created\":1749734823,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_a288987b44\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"\\\":\\\"\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BhcFL3P8kw7YbIebHwlWdht15qeqc\",\"object\":\"chat.completion.chunk\",\"created\":1749734823,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_a288987b44\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"paragraph\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BhcFL3P8kw7YbIebHwlWdht15qeqc\",\"object\":\"chat.completion.chunk\",\"created\":1749734823,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_a288987b44\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"\\\",\\\"\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BhcFL3P8kw7YbIebHwlWdht15qeqc\",\"object\":\"chat.completion.chunk\",\"created\":1749734823,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_a288987b44\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"content\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BhcFL3P8kw7YbIebHwlWdht15qeqc\",\"object\":\"chat.completion.chunk\",\"created\":1749734823,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_a288987b44\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"\\\":[\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BhcFL3P8kw7YbIebHwlWdht15qeqc\",\"object\":\"chat.completion.chunk\",\"created\":1749734823,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_a288987b44\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"{\\\"\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BhcFL3P8kw7YbIebHwlWdht15qeqc\",\"object\":\"chat.completion.chunk\",\"created\":1749734823,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_a288987b44\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"type\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BhcFL3P8kw7YbIebHwlWdht15qeqc\",\"object\":\"chat.completion.chunk\",\"created\":1749734823,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_a288987b44\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"\\\":\\\"\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BhcFL3P8kw7YbIebHwlWdht15qeqc\",\"object\":\"chat.completion.chunk\",\"created\":1749734823,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_a288987b44\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"text\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BhcFL3P8kw7YbIebHwlWdht15qeqc\",\"object\":\"chat.completion.chunk\",\"created\":1749734823,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_a288987b44\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"\\\",\\\"\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BhcFL3P8kw7YbIebHwlWdht15qeqc\",\"object\":\"chat.completion.chunk\",\"created\":1749734823,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_a288987b44\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"text\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BhcFL3P8kw7YbIebHwlWdht15qeqc\",\"object\":\"chat.completion.chunk\",\"created\":1749734823,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_a288987b44\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"\\\":\\\"\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BhcFL3P8kw7YbIebHwlWdht15qeqc\",\"object\":\"chat.completion.chunk\",\"created\":1749734823,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_a288987b44\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"Hello\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BhcFL3P8kw7YbIebHwlWdht15qeqc\",\"object\":\"chat.completion.chunk\",\"created\":1749734823,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_a288987b44\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\",\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BhcFL3P8kw7YbIebHwlWdht15qeqc\",\"object\":\"chat.completion.chunk\",\"created\":1749734823,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_a288987b44\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\" world\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BhcFL3P8kw7YbIebHwlWdht15qeqc\",\"object\":\"chat.completion.chunk\",\"created\":1749734823,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_a288987b44\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"!\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BhcFL3P8kw7YbIebHwlWdht15qeqc\",\"object\":\"chat.completion.chunk\",\"created\":1749734823,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_a288987b44\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\" Bold\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BhcFL3P8kw7YbIebHwlWdht15qeqc\",\"object\":\"chat.completion.chunk\",\"created\":1749734823,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_a288987b44\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\" text\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BhcFL3P8kw7YbIebHwlWdht15qeqc\",\"object\":\"chat.completion.chunk\",\"created\":1749734823,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_a288987b44\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\".\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BhcFL3P8kw7YbIebHwlWdht15qeqc\",\"object\":\"chat.completion.chunk\",\"created\":1749734823,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_a288987b44\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\" Link\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BhcFL3P8kw7YbIebHwlWdht15qeqc\",\"object\":\"chat.completion.chunk\",\"created\":1749734823,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_a288987b44\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\".\\\"\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BhcFL3P8kw7YbIebHwlWdht15qeqc\",\"object\":\"chat.completion.chunk\",\"created\":1749734823,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_a288987b44\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"}]\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BhcFL3P8kw7YbIebHwlWdht15qeqc\",\"object\":\"chat.completion.chunk\",\"created\":1749734823,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_a288987b44\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"}}\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BhcFL3P8kw7YbIebHwlWdht15qeqc\",\"object\":\"chat.completion.chunk\",\"created\":1749734823,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_a288987b44\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"]}\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BhcFL3P8kw7YbIebHwlWdht15qeqc\",\"object\":\"chat.completion.chunk\",\"created\":1749734823,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_a288987b44\",\"choices\":[{\"index\":0,\"delta\":{},\"logprobs\":null,\"finish_reason\":\"stop\"}]}\n\ndata: [DONE]\n\n", "headers": [] } } \ No newline at end of file diff --git a/packages/xl-ai/src/api/formats/json/__snapshots__/json.test.ts/Update/__msw_snapshots__/openai.chat/gpt-4o-2024-08-06 (streaming)/modify nested content_1_3773830b2cf364532410c9c5498a1355.json b/packages/xl-ai/src/api/formats/json/__snapshots__/json.test.ts/Update/__msw_snapshots__/openai.chat/gpt-4o-2024-08-06 (streaming)/modify nested content_1_3773830b2cf364532410c9c5498a1355.json index 032e830a0f..c322df6042 100644 --- a/packages/xl-ai/src/api/formats/json/__snapshots__/json.test.ts/Update/__msw_snapshots__/openai.chat/gpt-4o-2024-08-06 (streaming)/modify nested content_1_3773830b2cf364532410c9c5498a1355.json +++ b/packages/xl-ai/src/api/formats/json/__snapshots__/json.test.ts/Update/__msw_snapshots__/openai.chat/gpt-4o-2024-08-06 (streaming)/modify nested content_1_3773830b2cf364532410c9c5498a1355.json @@ -7,9 +7,9 @@ "cookies": [] }, "response": { - "status": 429, + "status": 200, "statusText": "", - "body": "{\n \"error\": {\n \"message\": \"You exceeded your current quota, please check your plan and billing details. For more information on this error, read the docs: https://platform.openai.com/docs/guides/error-codes/api-errors.\",\n \"type\": \"insufficient_quota\",\n \"param\": null,\n \"code\": \"insufficient_quota\"\n }\n}\n", + "body": "data: {\"id\":\"chatcmpl-BhcFQ64N0UoRjPYTVUvqtSSCYwShD\",\"object\":\"chat.completion.chunk\",\"created\":1749734828,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_a288987b44\",\"choices\":[{\"index\":0,\"delta\":{\"role\":\"assistant\",\"content\":null,\"tool_calls\":[{\"index\":0,\"id\":\"call_ZVaIzLlxWfN1CnduPQp73T5G\",\"type\":\"function\",\"function\":{\"name\":\"json\",\"arguments\":\"\"}}],\"refusal\":null},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BhcFQ64N0UoRjPYTVUvqtSSCYwShD\",\"object\":\"chat.completion.chunk\",\"created\":1749734828,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_a288987b44\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"{\\\"\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BhcFQ64N0UoRjPYTVUvqtSSCYwShD\",\"object\":\"chat.completion.chunk\",\"created\":1749734828,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_a288987b44\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"operations\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BhcFQ64N0UoRjPYTVUvqtSSCYwShD\",\"object\":\"chat.completion.chunk\",\"created\":1749734828,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_a288987b44\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"\\\":[\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BhcFQ64N0UoRjPYTVUvqtSSCYwShD\",\"object\":\"chat.completion.chunk\",\"created\":1749734828,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_a288987b44\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"{\\\"\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BhcFQ64N0UoRjPYTVUvqtSSCYwShD\",\"object\":\"chat.completion.chunk\",\"created\":1749734828,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_a288987b44\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"type\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BhcFQ64N0UoRjPYTVUvqtSSCYwShD\",\"object\":\"chat.completion.chunk\",\"created\":1749734828,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_a288987b44\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"\\\":\\\"\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BhcFQ64N0UoRjPYTVUvqtSSCYwShD\",\"object\":\"chat.completion.chunk\",\"created\":1749734828,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_a288987b44\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"update\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BhcFQ64N0UoRjPYTVUvqtSSCYwShD\",\"object\":\"chat.completion.chunk\",\"created\":1749734828,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_a288987b44\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"\\\",\\\"\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BhcFQ64N0UoRjPYTVUvqtSSCYwShD\",\"object\":\"chat.completion.chunk\",\"created\":1749734828,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_a288987b44\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"id\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BhcFQ64N0UoRjPYTVUvqtSSCYwShD\",\"object\":\"chat.completion.chunk\",\"created\":1749734828,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_a288987b44\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"\\\":\\\"\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BhcFQ64N0UoRjPYTVUvqtSSCYwShD\",\"object\":\"chat.completion.chunk\",\"created\":1749734828,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_a288987b44\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"ref\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BhcFQ64N0UoRjPYTVUvqtSSCYwShD\",\"object\":\"chat.completion.chunk\",\"created\":1749734828,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_a288987b44\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"2\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BhcFQ64N0UoRjPYTVUvqtSSCYwShD\",\"object\":\"chat.completion.chunk\",\"created\":1749734828,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_a288987b44\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"$\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BhcFQ64N0UoRjPYTVUvqtSSCYwShD\",\"object\":\"chat.completion.chunk\",\"created\":1749734828,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_a288987b44\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"\\\",\\\"\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BhcFQ64N0UoRjPYTVUvqtSSCYwShD\",\"object\":\"chat.completion.chunk\",\"created\":1749734828,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_a288987b44\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"block\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BhcFQ64N0UoRjPYTVUvqtSSCYwShD\",\"object\":\"chat.completion.chunk\",\"created\":1749734828,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_a288987b44\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"\\\":{\\\"\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BhcFQ64N0UoRjPYTVUvqtSSCYwShD\",\"object\":\"chat.completion.chunk\",\"created\":1749734828,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_a288987b44\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"type\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BhcFQ64N0UoRjPYTVUvqtSSCYwShD\",\"object\":\"chat.completion.chunk\",\"created\":1749734828,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_a288987b44\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"\\\":\\\"\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BhcFQ64N0UoRjPYTVUvqtSSCYwShD\",\"object\":\"chat.completion.chunk\",\"created\":1749734828,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_a288987b44\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"paragraph\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BhcFQ64N0UoRjPYTVUvqtSSCYwShD\",\"object\":\"chat.completion.chunk\",\"created\":1749734828,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_a288987b44\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"\\\",\\\"\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BhcFQ64N0UoRjPYTVUvqtSSCYwShD\",\"object\":\"chat.completion.chunk\",\"created\":1749734828,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_a288987b44\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"content\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BhcFQ64N0UoRjPYTVUvqtSSCYwShD\",\"object\":\"chat.completion.chunk\",\"created\":1749734828,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_a288987b44\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"\\\":[\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BhcFQ64N0UoRjPYTVUvqtSSCYwShD\",\"object\":\"chat.completion.chunk\",\"created\":1749734828,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_a288987b44\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"{\\\"\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BhcFQ64N0UoRjPYTVUvqtSSCYwShD\",\"object\":\"chat.completion.chunk\",\"created\":1749734828,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_a288987b44\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"type\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BhcFQ64N0UoRjPYTVUvqtSSCYwShD\",\"object\":\"chat.completion.chunk\",\"created\":1749734828,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_a288987b44\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"\\\":\\\"\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BhcFQ64N0UoRjPYTVUvqtSSCYwShD\",\"object\":\"chat.completion.chunk\",\"created\":1749734828,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_a288987b44\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"text\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BhcFQ64N0UoRjPYTVUvqtSSCYwShD\",\"object\":\"chat.completion.chunk\",\"created\":1749734828,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_a288987b44\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"\\\",\\\"\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BhcFQ64N0UoRjPYTVUvqtSSCYwShD\",\"object\":\"chat.completion.chunk\",\"created\":1749734828,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_a288987b44\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"text\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BhcFQ64N0UoRjPYTVUvqtSSCYwShD\",\"object\":\"chat.completion.chunk\",\"created\":1749734828,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_a288987b44\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"\\\":\\\"\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BhcFQ64N0UoRjPYTVUvqtSSCYwShD\",\"object\":\"chat.completion.chunk\",\"created\":1749734828,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_a288987b44\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"APP\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BhcFQ64N0UoRjPYTVUvqtSSCYwShD\",\"object\":\"chat.completion.chunk\",\"created\":1749734828,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_a288987b44\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"LES\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BhcFQ64N0UoRjPYTVUvqtSSCYwShD\",\"object\":\"chat.completion.chunk\",\"created\":1749734828,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_a288987b44\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"\\\",\\\"\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BhcFQ64N0UoRjPYTVUvqtSSCYwShD\",\"object\":\"chat.completion.chunk\",\"created\":1749734828,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_a288987b44\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"styles\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BhcFQ64N0UoRjPYTVUvqtSSCYwShD\",\"object\":\"chat.completion.chunk\",\"created\":1749734828,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_a288987b44\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"\\\":\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BhcFQ64N0UoRjPYTVUvqtSSCYwShD\",\"object\":\"chat.completion.chunk\",\"created\":1749734828,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_a288987b44\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"{\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BhcFQ64N0UoRjPYTVUvqtSSCYwShD\",\"object\":\"chat.completion.chunk\",\"created\":1749734828,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_a288987b44\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"}}\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BhcFQ64N0UoRjPYTVUvqtSSCYwShD\",\"object\":\"chat.completion.chunk\",\"created\":1749734828,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_a288987b44\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"]\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BhcFQ64N0UoRjPYTVUvqtSSCYwShD\",\"object\":\"chat.completion.chunk\",\"created\":1749734828,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_a288987b44\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"}}\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BhcFQ64N0UoRjPYTVUvqtSSCYwShD\",\"object\":\"chat.completion.chunk\",\"created\":1749734828,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_a288987b44\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"]}\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BhcFQ64N0UoRjPYTVUvqtSSCYwShD\",\"object\":\"chat.completion.chunk\",\"created\":1749734828,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_a288987b44\",\"choices\":[{\"index\":0,\"delta\":{},\"logprobs\":null,\"finish_reason\":\"stop\"}]}\n\ndata: [DONE]\n\n", "headers": [] } } \ No newline at end of file diff --git a/packages/xl-ai/src/api/formats/json/__snapshots__/json.test.ts/Update/__msw_snapshots__/openai.chat/gpt-4o-2024-08-06 (streaming)/modify parent content_1_c0dd9920ce66da75022907181066f5c8.json b/packages/xl-ai/src/api/formats/json/__snapshots__/json.test.ts/Update/__msw_snapshots__/openai.chat/gpt-4o-2024-08-06 (streaming)/modify parent content_1_c0dd9920ce66da75022907181066f5c8.json index 0615b9a245..e5db43922a 100644 --- a/packages/xl-ai/src/api/formats/json/__snapshots__/json.test.ts/Update/__msw_snapshots__/openai.chat/gpt-4o-2024-08-06 (streaming)/modify parent content_1_c0dd9920ce66da75022907181066f5c8.json +++ b/packages/xl-ai/src/api/formats/json/__snapshots__/json.test.ts/Update/__msw_snapshots__/openai.chat/gpt-4o-2024-08-06 (streaming)/modify parent content_1_c0dd9920ce66da75022907181066f5c8.json @@ -7,9 +7,9 @@ "cookies": [] }, "response": { - "status": 429, + "status": 200, "statusText": "", - "body": "{\n \"error\": {\n \"message\": \"You exceeded your current quota, please check your plan and billing details. For more information on this error, read the docs: https://platform.openai.com/docs/guides/error-codes/api-errors.\",\n \"type\": \"insufficient_quota\",\n \"param\": null,\n \"code\": \"insufficient_quota\"\n }\n}\n", + "body": "data: {\"id\":\"chatcmpl-BhcFRBu41zMbGaFItI5nmwbte9v4w\",\"object\":\"chat.completion.chunk\",\"created\":1749734829,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_a288987b44\",\"choices\":[{\"index\":0,\"delta\":{\"role\":\"assistant\",\"content\":null,\"tool_calls\":[{\"index\":0,\"id\":\"call_piW1bc7sUaU0iFva3yVnfpSk\",\"type\":\"function\",\"function\":{\"name\":\"json\",\"arguments\":\"\"}}],\"refusal\":null},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BhcFRBu41zMbGaFItI5nmwbte9v4w\",\"object\":\"chat.completion.chunk\",\"created\":1749734829,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_a288987b44\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"{\\\"\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BhcFRBu41zMbGaFItI5nmwbte9v4w\",\"object\":\"chat.completion.chunk\",\"created\":1749734829,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_a288987b44\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"operations\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BhcFRBu41zMbGaFItI5nmwbte9v4w\",\"object\":\"chat.completion.chunk\",\"created\":1749734829,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_a288987b44\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"\\\":[\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BhcFRBu41zMbGaFItI5nmwbte9v4w\",\"object\":\"chat.completion.chunk\",\"created\":1749734829,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_a288987b44\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"{\\\"\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BhcFRBu41zMbGaFItI5nmwbte9v4w\",\"object\":\"chat.completion.chunk\",\"created\":1749734829,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_a288987b44\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"type\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BhcFRBu41zMbGaFItI5nmwbte9v4w\",\"object\":\"chat.completion.chunk\",\"created\":1749734829,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_a288987b44\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"\\\":\\\"\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BhcFRBu41zMbGaFItI5nmwbte9v4w\",\"object\":\"chat.completion.chunk\",\"created\":1749734829,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_a288987b44\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"update\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BhcFRBu41zMbGaFItI5nmwbte9v4w\",\"object\":\"chat.completion.chunk\",\"created\":1749734829,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_a288987b44\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"\\\",\\\"\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BhcFRBu41zMbGaFItI5nmwbte9v4w\",\"object\":\"chat.completion.chunk\",\"created\":1749734829,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_a288987b44\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"id\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BhcFRBu41zMbGaFItI5nmwbte9v4w\",\"object\":\"chat.completion.chunk\",\"created\":1749734829,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_a288987b44\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"\\\":\\\"\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BhcFRBu41zMbGaFItI5nmwbte9v4w\",\"object\":\"chat.completion.chunk\",\"created\":1749734829,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_a288987b44\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"ref\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BhcFRBu41zMbGaFItI5nmwbte9v4w\",\"object\":\"chat.completion.chunk\",\"created\":1749734829,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_a288987b44\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"1\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BhcFRBu41zMbGaFItI5nmwbte9v4w\",\"object\":\"chat.completion.chunk\",\"created\":1749734829,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_a288987b44\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"$\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BhcFRBu41zMbGaFItI5nmwbte9v4w\",\"object\":\"chat.completion.chunk\",\"created\":1749734829,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_a288987b44\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"\\\",\\\"\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BhcFRBu41zMbGaFItI5nmwbte9v4w\",\"object\":\"chat.completion.chunk\",\"created\":1749734829,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_a288987b44\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"block\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BhcFRBu41zMbGaFItI5nmwbte9v4w\",\"object\":\"chat.completion.chunk\",\"created\":1749734829,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_a288987b44\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"\\\":{\\\"\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BhcFRBu41zMbGaFItI5nmwbte9v4w\",\"object\":\"chat.completion.chunk\",\"created\":1749734829,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_a288987b44\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"type\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BhcFRBu41zMbGaFItI5nmwbte9v4w\",\"object\":\"chat.completion.chunk\",\"created\":1749734829,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_a288987b44\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"\\\":\\\"\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BhcFRBu41zMbGaFItI5nmwbte9v4w\",\"object\":\"chat.completion.chunk\",\"created\":1749734829,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_a288987b44\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"paragraph\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BhcFRBu41zMbGaFItI5nmwbte9v4w\",\"object\":\"chat.completion.chunk\",\"created\":1749734829,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_a288987b44\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"\\\",\\\"\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BhcFRBu41zMbGaFItI5nmwbte9v4w\",\"object\":\"chat.completion.chunk\",\"created\":1749734829,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_a288987b44\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"content\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BhcFRBu41zMbGaFItI5nmwbte9v4w\",\"object\":\"chat.completion.chunk\",\"created\":1749734829,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_a288987b44\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"\\\":[\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BhcFRBu41zMbGaFItI5nmwbte9v4w\",\"object\":\"chat.completion.chunk\",\"created\":1749734829,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_a288987b44\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"{\\\"\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BhcFRBu41zMbGaFItI5nmwbte9v4w\",\"object\":\"chat.completion.chunk\",\"created\":1749734829,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_a288987b44\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"type\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BhcFRBu41zMbGaFItI5nmwbte9v4w\",\"object\":\"chat.completion.chunk\",\"created\":1749734829,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_a288987b44\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"\\\":\\\"\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BhcFRBu41zMbGaFItI5nmwbte9v4w\",\"object\":\"chat.completion.chunk\",\"created\":1749734829,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_a288987b44\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"text\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BhcFRBu41zMbGaFItI5nmwbte9v4w\",\"object\":\"chat.completion.chunk\",\"created\":1749734829,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_a288987b44\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"\\\",\\\"\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BhcFRBu41zMbGaFItI5nmwbte9v4w\",\"object\":\"chat.completion.chunk\",\"created\":1749734829,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_a288987b44\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"text\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BhcFRBu41zMbGaFItI5nmwbte9v4w\",\"object\":\"chat.completion.chunk\",\"created\":1749734829,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_a288987b44\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"\\\":\\\"\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BhcFRBu41zMbGaFItI5nmwbte9v4w\",\"object\":\"chat.completion.chunk\",\"created\":1749734829,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_a288987b44\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"I\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BhcFRBu41zMbGaFItI5nmwbte9v4w\",\"object\":\"chat.completion.chunk\",\"created\":1749734829,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_a288987b44\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\" NEED\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BhcFRBu41zMbGaFItI5nmwbte9v4w\",\"object\":\"chat.completion.chunk\",\"created\":1749734829,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_a288987b44\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\" TO\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BhcFRBu41zMbGaFItI5nmwbte9v4w\",\"object\":\"chat.completion.chunk\",\"created\":1749734829,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_a288987b44\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\" BUY\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BhcFRBu41zMbGaFItI5nmwbte9v4w\",\"object\":\"chat.completion.chunk\",\"created\":1749734829,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_a288987b44\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\":\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BhcFRBu41zMbGaFItI5nmwbte9v4w\",\"object\":\"chat.completion.chunk\",\"created\":1749734829,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_a288987b44\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"\\\",\\\"\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BhcFRBu41zMbGaFItI5nmwbte9v4w\",\"object\":\"chat.completion.chunk\",\"created\":1749734829,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_a288987b44\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"styles\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BhcFRBu41zMbGaFItI5nmwbte9v4w\",\"object\":\"chat.completion.chunk\",\"created\":1749734829,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_a288987b44\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"\\\":\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BhcFRBu41zMbGaFItI5nmwbte9v4w\",\"object\":\"chat.completion.chunk\",\"created\":1749734829,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_a288987b44\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"{\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BhcFRBu41zMbGaFItI5nmwbte9v4w\",\"object\":\"chat.completion.chunk\",\"created\":1749734829,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_a288987b44\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"}}\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BhcFRBu41zMbGaFItI5nmwbte9v4w\",\"object\":\"chat.completion.chunk\",\"created\":1749734829,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_a288987b44\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"],\\\"\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BhcFRBu41zMbGaFItI5nmwbte9v4w\",\"object\":\"chat.completion.chunk\",\"created\":1749734829,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_a288987b44\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"props\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BhcFRBu41zMbGaFItI5nmwbte9v4w\",\"object\":\"chat.completion.chunk\",\"created\":1749734829,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_a288987b44\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"\\\":{\\\"\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BhcFRBu41zMbGaFItI5nmwbte9v4w\",\"object\":\"chat.completion.chunk\",\"created\":1749734829,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_a288987b44\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"text\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BhcFRBu41zMbGaFItI5nmwbte9v4w\",\"object\":\"chat.completion.chunk\",\"created\":1749734829,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_a288987b44\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"Color\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BhcFRBu41zMbGaFItI5nmwbte9v4w\",\"object\":\"chat.completion.chunk\",\"created\":1749734829,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_a288987b44\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"\\\":\\\"\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BhcFRBu41zMbGaFItI5nmwbte9v4w\",\"object\":\"chat.completion.chunk\",\"created\":1749734829,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_a288987b44\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"default\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BhcFRBu41zMbGaFItI5nmwbte9v4w\",\"object\":\"chat.completion.chunk\",\"created\":1749734829,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_a288987b44\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"\\\",\\\"\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BhcFRBu41zMbGaFItI5nmwbte9v4w\",\"object\":\"chat.completion.chunk\",\"created\":1749734829,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_a288987b44\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"background\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BhcFRBu41zMbGaFItI5nmwbte9v4w\",\"object\":\"chat.completion.chunk\",\"created\":1749734829,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_a288987b44\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"Color\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BhcFRBu41zMbGaFItI5nmwbte9v4w\",\"object\":\"chat.completion.chunk\",\"created\":1749734829,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_a288987b44\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"\\\":\\\"\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BhcFRBu41zMbGaFItI5nmwbte9v4w\",\"object\":\"chat.completion.chunk\",\"created\":1749734829,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_a288987b44\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"default\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BhcFRBu41zMbGaFItI5nmwbte9v4w\",\"object\":\"chat.completion.chunk\",\"created\":1749734829,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_a288987b44\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"\\\",\\\"\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BhcFRBu41zMbGaFItI5nmwbte9v4w\",\"object\":\"chat.completion.chunk\",\"created\":1749734829,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_a288987b44\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"text\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BhcFRBu41zMbGaFItI5nmwbte9v4w\",\"object\":\"chat.completion.chunk\",\"created\":1749734829,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_a288987b44\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"Alignment\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BhcFRBu41zMbGaFItI5nmwbte9v4w\",\"object\":\"chat.completion.chunk\",\"created\":1749734829,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_a288987b44\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"\\\":\\\"\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BhcFRBu41zMbGaFItI5nmwbte9v4w\",\"object\":\"chat.completion.chunk\",\"created\":1749734829,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_a288987b44\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"left\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BhcFRBu41zMbGaFItI5nmwbte9v4w\",\"object\":\"chat.completion.chunk\",\"created\":1749734829,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_a288987b44\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"\\\"}}\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BhcFRBu41zMbGaFItI5nmwbte9v4w\",\"object\":\"chat.completion.chunk\",\"created\":1749734829,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_a288987b44\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"}\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BhcFRBu41zMbGaFItI5nmwbte9v4w\",\"object\":\"chat.completion.chunk\",\"created\":1749734829,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_a288987b44\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"]}\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BhcFRBu41zMbGaFItI5nmwbte9v4w\",\"object\":\"chat.completion.chunk\",\"created\":1749734829,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_a288987b44\",\"choices\":[{\"index\":0,\"delta\":{},\"logprobs\":null,\"finish_reason\":\"stop\"}]}\n\ndata: [DONE]\n\n", "headers": [] } } \ No newline at end of file diff --git a/packages/xl-ai/src/api/formats/json/__snapshots__/json.test.ts/Update/__msw_snapshots__/openai.chat/gpt-4o-2024-08-06 (streaming)/plain source block, add mention_1_255c7e8a0fd687acb58e373b4b4e7bee.json b/packages/xl-ai/src/api/formats/json/__snapshots__/json.test.ts/Update/__msw_snapshots__/openai.chat/gpt-4o-2024-08-06 (streaming)/plain source block, add mention_1_255c7e8a0fd687acb58e373b4b4e7bee.json index 4b638a0329..3297538c61 100644 --- a/packages/xl-ai/src/api/formats/json/__snapshots__/json.test.ts/Update/__msw_snapshots__/openai.chat/gpt-4o-2024-08-06 (streaming)/plain source block, add mention_1_255c7e8a0fd687acb58e373b4b4e7bee.json +++ b/packages/xl-ai/src/api/formats/json/__snapshots__/json.test.ts/Update/__msw_snapshots__/openai.chat/gpt-4o-2024-08-06 (streaming)/plain source block, add mention_1_255c7e8a0fd687acb58e373b4b4e7bee.json @@ -7,9 +7,9 @@ "cookies": [] }, "response": { - "status": 429, + "status": 200, "statusText": "", - "body": "{\n \"error\": {\n \"message\": \"You exceeded your current quota, please check your plan and billing details. For more information on this error, read the docs: https://platform.openai.com/docs/guides/error-codes/api-errors.\",\n \"type\": \"insufficient_quota\",\n \"param\": null,\n \"code\": \"insufficient_quota\"\n }\n}\n", + "body": "data: {\"id\":\"chatcmpl-BhcFI7UvYA1yJEwasHaeVGzlzuDYi\",\"object\":\"chat.completion.chunk\",\"created\":1749734820,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_a288987b44\",\"choices\":[{\"index\":0,\"delta\":{\"role\":\"assistant\",\"content\":null,\"tool_calls\":[{\"index\":0,\"id\":\"call_ZYXascdfqlgaWIs0BZfb8X6c\",\"type\":\"function\",\"function\":{\"name\":\"json\",\"arguments\":\"\"}}],\"refusal\":null},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BhcFI7UvYA1yJEwasHaeVGzlzuDYi\",\"object\":\"chat.completion.chunk\",\"created\":1749734820,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_a288987b44\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"{\\\"\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BhcFI7UvYA1yJEwasHaeVGzlzuDYi\",\"object\":\"chat.completion.chunk\",\"created\":1749734820,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_a288987b44\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"operations\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BhcFI7UvYA1yJEwasHaeVGzlzuDYi\",\"object\":\"chat.completion.chunk\",\"created\":1749734820,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_a288987b44\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"\\\":[\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BhcFI7UvYA1yJEwasHaeVGzlzuDYi\",\"object\":\"chat.completion.chunk\",\"created\":1749734820,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_a288987b44\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"{\\\"\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BhcFI7UvYA1yJEwasHaeVGzlzuDYi\",\"object\":\"chat.completion.chunk\",\"created\":1749734820,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_a288987b44\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"type\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BhcFI7UvYA1yJEwasHaeVGzlzuDYi\",\"object\":\"chat.completion.chunk\",\"created\":1749734820,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_a288987b44\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"\\\":\\\"\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BhcFI7UvYA1yJEwasHaeVGzlzuDYi\",\"object\":\"chat.completion.chunk\",\"created\":1749734820,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_a288987b44\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"update\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BhcFI7UvYA1yJEwasHaeVGzlzuDYi\",\"object\":\"chat.completion.chunk\",\"created\":1749734820,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_a288987b44\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"\\\",\\\"\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BhcFI7UvYA1yJEwasHaeVGzlzuDYi\",\"object\":\"chat.completion.chunk\",\"created\":1749734820,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_a288987b44\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"id\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BhcFI7UvYA1yJEwasHaeVGzlzuDYi\",\"object\":\"chat.completion.chunk\",\"created\":1749734820,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_a288987b44\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"\\\":\\\"\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BhcFI7UvYA1yJEwasHaeVGzlzuDYi\",\"object\":\"chat.completion.chunk\",\"created\":1749734820,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_a288987b44\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"ref\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BhcFI7UvYA1yJEwasHaeVGzlzuDYi\",\"object\":\"chat.completion.chunk\",\"created\":1749734820,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_a288987b44\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"1\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BhcFI7UvYA1yJEwasHaeVGzlzuDYi\",\"object\":\"chat.completion.chunk\",\"created\":1749734820,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_a288987b44\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"$\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BhcFI7UvYA1yJEwasHaeVGzlzuDYi\",\"object\":\"chat.completion.chunk\",\"created\":1749734820,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_a288987b44\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"\\\",\\\"\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BhcFI7UvYA1yJEwasHaeVGzlzuDYi\",\"object\":\"chat.completion.chunk\",\"created\":1749734820,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_a288987b44\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"block\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BhcFI7UvYA1yJEwasHaeVGzlzuDYi\",\"object\":\"chat.completion.chunk\",\"created\":1749734820,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_a288987b44\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"\\\":{\\\"\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BhcFI7UvYA1yJEwasHaeVGzlzuDYi\",\"object\":\"chat.completion.chunk\",\"created\":1749734820,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_a288987b44\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"type\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BhcFI7UvYA1yJEwasHaeVGzlzuDYi\",\"object\":\"chat.completion.chunk\",\"created\":1749734820,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_a288987b44\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"\\\":\\\"\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BhcFI7UvYA1yJEwasHaeVGzlzuDYi\",\"object\":\"chat.completion.chunk\",\"created\":1749734820,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_a288987b44\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"paragraph\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BhcFI7UvYA1yJEwasHaeVGzlzuDYi\",\"object\":\"chat.completion.chunk\",\"created\":1749734820,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_a288987b44\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"\\\",\\\"\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BhcFI7UvYA1yJEwasHaeVGzlzuDYi\",\"object\":\"chat.completion.chunk\",\"created\":1749734820,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_a288987b44\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"content\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BhcFI7UvYA1yJEwasHaeVGzlzuDYi\",\"object\":\"chat.completion.chunk\",\"created\":1749734820,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_a288987b44\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"\\\":[\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BhcFI7UvYA1yJEwasHaeVGzlzuDYi\",\"object\":\"chat.completion.chunk\",\"created\":1749734820,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_a288987b44\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"{\\\"\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BhcFI7UvYA1yJEwasHaeVGzlzuDYi\",\"object\":\"chat.completion.chunk\",\"created\":1749734820,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_a288987b44\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"type\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BhcFI7UvYA1yJEwasHaeVGzlzuDYi\",\"object\":\"chat.completion.chunk\",\"created\":1749734820,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_a288987b44\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"\\\":\\\"\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BhcFI7UvYA1yJEwasHaeVGzlzuDYi\",\"object\":\"chat.completion.chunk\",\"created\":1749734820,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_a288987b44\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"text\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BhcFI7UvYA1yJEwasHaeVGzlzuDYi\",\"object\":\"chat.completion.chunk\",\"created\":1749734820,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_a288987b44\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"\\\",\\\"\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BhcFI7UvYA1yJEwasHaeVGzlzuDYi\",\"object\":\"chat.completion.chunk\",\"created\":1749734820,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_a288987b44\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"text\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BhcFI7UvYA1yJEwasHaeVGzlzuDYi\",\"object\":\"chat.completion.chunk\",\"created\":1749734820,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_a288987b44\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"\\\":\\\"\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BhcFI7UvYA1yJEwasHaeVGzlzuDYi\",\"object\":\"chat.completion.chunk\",\"created\":1749734820,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_a288987b44\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"Hello\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BhcFI7UvYA1yJEwasHaeVGzlzuDYi\",\"object\":\"chat.completion.chunk\",\"created\":1749734820,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_a288987b44\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\",\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BhcFI7UvYA1yJEwasHaeVGzlzuDYi\",\"object\":\"chat.completion.chunk\",\"created\":1749734820,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_a288987b44\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\" \\\",\\\"\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BhcFI7UvYA1yJEwasHaeVGzlzuDYi\",\"object\":\"chat.completion.chunk\",\"created\":1749734820,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_a288987b44\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"styles\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BhcFI7UvYA1yJEwasHaeVGzlzuDYi\",\"object\":\"chat.completion.chunk\",\"created\":1749734820,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_a288987b44\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"\\\":\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BhcFI7UvYA1yJEwasHaeVGzlzuDYi\",\"object\":\"chat.completion.chunk\",\"created\":1749734820,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_a288987b44\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"{}\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BhcFI7UvYA1yJEwasHaeVGzlzuDYi\",\"object\":\"chat.completion.chunk\",\"created\":1749734820,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_a288987b44\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"},{\\\"\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BhcFI7UvYA1yJEwasHaeVGzlzuDYi\",\"object\":\"chat.completion.chunk\",\"created\":1749734820,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_a288987b44\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"type\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BhcFI7UvYA1yJEwasHaeVGzlzuDYi\",\"object\":\"chat.completion.chunk\",\"created\":1749734820,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_a288987b44\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"\\\":\\\"\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BhcFI7UvYA1yJEwasHaeVGzlzuDYi\",\"object\":\"chat.completion.chunk\",\"created\":1749734820,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_a288987b44\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"mention\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BhcFI7UvYA1yJEwasHaeVGzlzuDYi\",\"object\":\"chat.completion.chunk\",\"created\":1749734820,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_a288987b44\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"\\\",\\\"\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BhcFI7UvYA1yJEwasHaeVGzlzuDYi\",\"object\":\"chat.completion.chunk\",\"created\":1749734820,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_a288987b44\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"props\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BhcFI7UvYA1yJEwasHaeVGzlzuDYi\",\"object\":\"chat.completion.chunk\",\"created\":1749734820,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_a288987b44\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"\\\":{\\\"\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BhcFI7UvYA1yJEwasHaeVGzlzuDYi\",\"object\":\"chat.completion.chunk\",\"created\":1749734820,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_a288987b44\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"user\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BhcFI7UvYA1yJEwasHaeVGzlzuDYi\",\"object\":\"chat.completion.chunk\",\"created\":1749734820,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_a288987b44\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"\\\":\\\"\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BhcFI7UvYA1yJEwasHaeVGzlzuDYi\",\"object\":\"chat.completion.chunk\",\"created\":1749734820,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_a288987b44\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"Jane\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BhcFI7UvYA1yJEwasHaeVGzlzuDYi\",\"object\":\"chat.completion.chunk\",\"created\":1749734820,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_a288987b44\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\" Doe\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BhcFI7UvYA1yJEwasHaeVGzlzuDYi\",\"object\":\"chat.completion.chunk\",\"created\":1749734820,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_a288987b44\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"\\\"}\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BhcFI7UvYA1yJEwasHaeVGzlzuDYi\",\"object\":\"chat.completion.chunk\",\"created\":1749734820,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_a288987b44\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"},{\\\"\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BhcFI7UvYA1yJEwasHaeVGzlzuDYi\",\"object\":\"chat.completion.chunk\",\"created\":1749734820,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_a288987b44\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"type\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BhcFI7UvYA1yJEwasHaeVGzlzuDYi\",\"object\":\"chat.completion.chunk\",\"created\":1749734820,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_a288987b44\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"\\\":\\\"\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BhcFI7UvYA1yJEwasHaeVGzlzuDYi\",\"object\":\"chat.completion.chunk\",\"created\":1749734820,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_a288987b44\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"text\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BhcFI7UvYA1yJEwasHaeVGzlzuDYi\",\"object\":\"chat.completion.chunk\",\"created\":1749734820,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_a288987b44\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"\\\",\\\"\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BhcFI7UvYA1yJEwasHaeVGzlzuDYi\",\"object\":\"chat.completion.chunk\",\"created\":1749734820,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_a288987b44\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"text\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BhcFI7UvYA1yJEwasHaeVGzlzuDYi\",\"object\":\"chat.completion.chunk\",\"created\":1749734820,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_a288987b44\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"\\\":\\\"\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BhcFI7UvYA1yJEwasHaeVGzlzuDYi\",\"object\":\"chat.completion.chunk\",\"created\":1749734820,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_a288987b44\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"!\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BhcFI7UvYA1yJEwasHaeVGzlzuDYi\",\"object\":\"chat.completion.chunk\",\"created\":1749734820,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_a288987b44\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"\\\",\\\"\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BhcFI7UvYA1yJEwasHaeVGzlzuDYi\",\"object\":\"chat.completion.chunk\",\"created\":1749734820,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_a288987b44\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"styles\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BhcFI7UvYA1yJEwasHaeVGzlzuDYi\",\"object\":\"chat.completion.chunk\",\"created\":1749734820,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_a288987b44\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"\\\":\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BhcFI7UvYA1yJEwasHaeVGzlzuDYi\",\"object\":\"chat.completion.chunk\",\"created\":1749734820,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_a288987b44\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"{\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BhcFI7UvYA1yJEwasHaeVGzlzuDYi\",\"object\":\"chat.completion.chunk\",\"created\":1749734820,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_a288987b44\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"}}\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BhcFI7UvYA1yJEwasHaeVGzlzuDYi\",\"object\":\"chat.completion.chunk\",\"created\":1749734820,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_a288987b44\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"]\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BhcFI7UvYA1yJEwasHaeVGzlzuDYi\",\"object\":\"chat.completion.chunk\",\"created\":1749734820,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_a288987b44\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"}}\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BhcFI7UvYA1yJEwasHaeVGzlzuDYi\",\"object\":\"chat.completion.chunk\",\"created\":1749734820,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_a288987b44\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"]}\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BhcFI7UvYA1yJEwasHaeVGzlzuDYi\",\"object\":\"chat.completion.chunk\",\"created\":1749734820,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_a288987b44\",\"choices\":[{\"index\":0,\"delta\":{},\"logprobs\":null,\"finish_reason\":\"stop\"}]}\n\ndata: [DONE]\n\n", "headers": [] } } \ No newline at end of file diff --git a/packages/xl-ai/src/api/formats/json/__snapshots__/json.test.ts/Update/__msw_snapshots__/openai.chat/gpt-4o-2024-08-06 (streaming)/standard update_1_462e7956999f00b4e3ff89faa46d3d4d.json b/packages/xl-ai/src/api/formats/json/__snapshots__/json.test.ts/Update/__msw_snapshots__/openai.chat/gpt-4o-2024-08-06 (streaming)/standard update_1_462e7956999f00b4e3ff89faa46d3d4d.json index ae36ccc1eb..ed66ac0093 100644 --- a/packages/xl-ai/src/api/formats/json/__snapshots__/json.test.ts/Update/__msw_snapshots__/openai.chat/gpt-4o-2024-08-06 (streaming)/standard update_1_462e7956999f00b4e3ff89faa46d3d4d.json +++ b/packages/xl-ai/src/api/formats/json/__snapshots__/json.test.ts/Update/__msw_snapshots__/openai.chat/gpt-4o-2024-08-06 (streaming)/standard update_1_462e7956999f00b4e3ff89faa46d3d4d.json @@ -9,7 +9,7 @@ "response": { "status": 200, "statusText": "", - "body": "data: {\"id\":\"chatcmpl-BhZtNm4bmumlPVfJkzRhr2kObNwmF\",\"object\":\"chat.completion.chunk\",\"created\":1749725773,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_a288987b44\",\"choices\":[{\"index\":0,\"delta\":{\"role\":\"assistant\",\"content\":null,\"tool_calls\":[{\"index\":0,\"id\":\"call_yrvDiotzxEWZdUCV5IPFN6ff\",\"type\":\"function\",\"function\":{\"name\":\"json\",\"arguments\":\"\"}}],\"refusal\":null},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BhZtNm4bmumlPVfJkzRhr2kObNwmF\",\"object\":\"chat.completion.chunk\",\"created\":1749725773,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_a288987b44\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"{\\\"\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BhZtNm4bmumlPVfJkzRhr2kObNwmF\",\"object\":\"chat.completion.chunk\",\"created\":1749725773,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_a288987b44\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"operations\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BhZtNm4bmumlPVfJkzRhr2kObNwmF\",\"object\":\"chat.completion.chunk\",\"created\":1749725773,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_a288987b44\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"\\\":[\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BhZtNm4bmumlPVfJkzRhr2kObNwmF\",\"object\":\"chat.completion.chunk\",\"created\":1749725773,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_a288987b44\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"{\\\"\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BhZtNm4bmumlPVfJkzRhr2kObNwmF\",\"object\":\"chat.completion.chunk\",\"created\":1749725773,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_a288987b44\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"type\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BhZtNm4bmumlPVfJkzRhr2kObNwmF\",\"object\":\"chat.completion.chunk\",\"created\":1749725773,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_a288987b44\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"\\\":\\\"\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BhZtNm4bmumlPVfJkzRhr2kObNwmF\",\"object\":\"chat.completion.chunk\",\"created\":1749725773,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_a288987b44\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"update\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BhZtNm4bmumlPVfJkzRhr2kObNwmF\",\"object\":\"chat.completion.chunk\",\"created\":1749725773,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_a288987b44\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"\\\",\\\"\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BhZtNm4bmumlPVfJkzRhr2kObNwmF\",\"object\":\"chat.completion.chunk\",\"created\":1749725773,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_a288987b44\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"id\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BhZtNm4bmumlPVfJkzRhr2kObNwmF\",\"object\":\"chat.completion.chunk\",\"created\":1749725773,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_a288987b44\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"\\\":\\\"\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BhZtNm4bmumlPVfJkzRhr2kObNwmF\",\"object\":\"chat.completion.chunk\",\"created\":1749725773,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_a288987b44\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"ref\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BhZtNm4bmumlPVfJkzRhr2kObNwmF\",\"object\":\"chat.completion.chunk\",\"created\":1749725773,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_a288987b44\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"1\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BhZtNm4bmumlPVfJkzRhr2kObNwmF\",\"object\":\"chat.completion.chunk\",\"created\":1749725773,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_a288987b44\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"$\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BhZtNm4bmumlPVfJkzRhr2kObNwmF\",\"object\":\"chat.completion.chunk\",\"created\":1749725773,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_a288987b44\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"\\\",\\\"\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BhZtNm4bmumlPVfJkzRhr2kObNwmF\",\"object\":\"chat.completion.chunk\",\"created\":1749725773,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_a288987b44\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"block\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BhZtNm4bmumlPVfJkzRhr2kObNwmF\",\"object\":\"chat.completion.chunk\",\"created\":1749725773,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_a288987b44\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"\\\":{\\\"\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BhZtNm4bmumlPVfJkzRhr2kObNwmF\",\"object\":\"chat.completion.chunk\",\"created\":1749725773,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_a288987b44\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"type\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BhZtNm4bmumlPVfJkzRhr2kObNwmF\",\"object\":\"chat.completion.chunk\",\"created\":1749725773,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_a288987b44\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"\\\":\\\"\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BhZtNm4bmumlPVfJkzRhr2kObNwmF\",\"object\":\"chat.completion.chunk\",\"created\":1749725773,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_a288987b44\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"paragraph\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BhZtNm4bmumlPVfJkzRhr2kObNwmF\",\"object\":\"chat.completion.chunk\",\"created\":1749725773,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_a288987b44\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"\\\",\\\"\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BhZtNm4bmumlPVfJkzRhr2kObNwmF\",\"object\":\"chat.completion.chunk\",\"created\":1749725773,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_a288987b44\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"content\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BhZtNm4bmumlPVfJkzRhr2kObNwmF\",\"object\":\"chat.completion.chunk\",\"created\":1749725773,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_a288987b44\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"\\\":[\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BhZtNm4bmumlPVfJkzRhr2kObNwmF\",\"object\":\"chat.completion.chunk\",\"created\":1749725773,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_a288987b44\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"{\\\"\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BhZtNm4bmumlPVfJkzRhr2kObNwmF\",\"object\":\"chat.completion.chunk\",\"created\":1749725773,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_a288987b44\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"type\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BhZtNm4bmumlPVfJkzRhr2kObNwmF\",\"object\":\"chat.completion.chunk\",\"created\":1749725773,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_a288987b44\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"\\\":\\\"\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BhZtNm4bmumlPVfJkzRhr2kObNwmF\",\"object\":\"chat.completion.chunk\",\"created\":1749725773,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_a288987b44\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"text\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BhZtNm4bmumlPVfJkzRhr2kObNwmF\",\"object\":\"chat.completion.chunk\",\"created\":1749725773,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_a288987b44\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"\\\",\\\"\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BhZtNm4bmumlPVfJkzRhr2kObNwmF\",\"object\":\"chat.completion.chunk\",\"created\":1749725773,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_a288987b44\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"text\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BhZtNm4bmumlPVfJkzRhr2kObNwmF\",\"object\":\"chat.completion.chunk\",\"created\":1749725773,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_a288987b44\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"\\\":\\\"\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BhZtNm4bmumlPVfJkzRhr2kObNwmF\",\"object\":\"chat.completion.chunk\",\"created\":1749725773,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_a288987b44\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"Hallo\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BhZtNm4bmumlPVfJkzRhr2kObNwmF\",\"object\":\"chat.completion.chunk\",\"created\":1749725773,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_a288987b44\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\",\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BhZtNm4bmumlPVfJkzRhr2kObNwmF\",\"object\":\"chat.completion.chunk\",\"created\":1749725773,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_a288987b44\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\" Welt\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BhZtNm4bmumlPVfJkzRhr2kObNwmF\",\"object\":\"chat.completion.chunk\",\"created\":1749725773,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_a288987b44\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"!\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BhZtNm4bmumlPVfJkzRhr2kObNwmF\",\"object\":\"chat.completion.chunk\",\"created\":1749725773,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_a288987b44\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"\\\",\\\"\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BhZtNm4bmumlPVfJkzRhr2kObNwmF\",\"object\":\"chat.completion.chunk\",\"created\":1749725773,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_a288987b44\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"styles\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BhZtNm4bmumlPVfJkzRhr2kObNwmF\",\"object\":\"chat.completion.chunk\",\"created\":1749725773,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_a288987b44\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"\\\":\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BhZtNm4bmumlPVfJkzRhr2kObNwmF\",\"object\":\"chat.completion.chunk\",\"created\":1749725773,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_a288987b44\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"{\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BhZtNm4bmumlPVfJkzRhr2kObNwmF\",\"object\":\"chat.completion.chunk\",\"created\":1749725773,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_a288987b44\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"}}\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BhZtNm4bmumlPVfJkzRhr2kObNwmF\",\"object\":\"chat.completion.chunk\",\"created\":1749725773,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_a288987b44\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"]\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BhZtNm4bmumlPVfJkzRhr2kObNwmF\",\"object\":\"chat.completion.chunk\",\"created\":1749725773,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_a288987b44\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"}}\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BhZtNm4bmumlPVfJkzRhr2kObNwmF\",\"object\":\"chat.completion.chunk\",\"created\":1749725773,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_a288987b44\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"]}\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BhZtNm4bmumlPVfJkzRhr2kObNwmF\",\"object\":\"chat.completion.chunk\",\"created\":1749725773,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_a288987b44\",\"choices\":[{\"index\":0,\"delta\":{},\"logprobs\":null,\"finish_reason\":\"stop\"}]}\n\ndata: [DONE]\n\n", + "body": "data: {\"id\":\"chatcmpl-BhcEzQgEJrETjorzYolqkaZga7nNh\",\"object\":\"chat.completion.chunk\",\"created\":1749734801,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_a288987b44\",\"choices\":[{\"index\":0,\"delta\":{\"role\":\"assistant\",\"content\":null,\"tool_calls\":[{\"index\":0,\"id\":\"call_ffIwAYKi22zTSZrIGLm2luUH\",\"type\":\"function\",\"function\":{\"name\":\"json\",\"arguments\":\"\"}}],\"refusal\":null},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BhcEzQgEJrETjorzYolqkaZga7nNh\",\"object\":\"chat.completion.chunk\",\"created\":1749734801,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_a288987b44\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"{\\\"\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BhcEzQgEJrETjorzYolqkaZga7nNh\",\"object\":\"chat.completion.chunk\",\"created\":1749734801,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_a288987b44\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"operations\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BhcEzQgEJrETjorzYolqkaZga7nNh\",\"object\":\"chat.completion.chunk\",\"created\":1749734801,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_a288987b44\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"\\\":[\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BhcEzQgEJrETjorzYolqkaZga7nNh\",\"object\":\"chat.completion.chunk\",\"created\":1749734801,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_a288987b44\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"{\\\"\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BhcEzQgEJrETjorzYolqkaZga7nNh\",\"object\":\"chat.completion.chunk\",\"created\":1749734801,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_a288987b44\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"type\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BhcEzQgEJrETjorzYolqkaZga7nNh\",\"object\":\"chat.completion.chunk\",\"created\":1749734801,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_a288987b44\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"\\\":\\\"\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BhcEzQgEJrETjorzYolqkaZga7nNh\",\"object\":\"chat.completion.chunk\",\"created\":1749734801,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_a288987b44\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"update\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BhcEzQgEJrETjorzYolqkaZga7nNh\",\"object\":\"chat.completion.chunk\",\"created\":1749734801,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_a288987b44\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"\\\",\\\"\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BhcEzQgEJrETjorzYolqkaZga7nNh\",\"object\":\"chat.completion.chunk\",\"created\":1749734801,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_a288987b44\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"id\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BhcEzQgEJrETjorzYolqkaZga7nNh\",\"object\":\"chat.completion.chunk\",\"created\":1749734801,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_a288987b44\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"\\\":\\\"\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BhcEzQgEJrETjorzYolqkaZga7nNh\",\"object\":\"chat.completion.chunk\",\"created\":1749734801,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_a288987b44\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"ref\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BhcEzQgEJrETjorzYolqkaZga7nNh\",\"object\":\"chat.completion.chunk\",\"created\":1749734801,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_a288987b44\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"1\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BhcEzQgEJrETjorzYolqkaZga7nNh\",\"object\":\"chat.completion.chunk\",\"created\":1749734801,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_a288987b44\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"$\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BhcEzQgEJrETjorzYolqkaZga7nNh\",\"object\":\"chat.completion.chunk\",\"created\":1749734801,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_a288987b44\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"\\\",\\\"\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BhcEzQgEJrETjorzYolqkaZga7nNh\",\"object\":\"chat.completion.chunk\",\"created\":1749734801,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_a288987b44\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"block\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BhcEzQgEJrETjorzYolqkaZga7nNh\",\"object\":\"chat.completion.chunk\",\"created\":1749734801,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_a288987b44\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"\\\":{\\\"\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BhcEzQgEJrETjorzYolqkaZga7nNh\",\"object\":\"chat.completion.chunk\",\"created\":1749734801,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_a288987b44\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"type\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BhcEzQgEJrETjorzYolqkaZga7nNh\",\"object\":\"chat.completion.chunk\",\"created\":1749734801,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_a288987b44\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"\\\":\\\"\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BhcEzQgEJrETjorzYolqkaZga7nNh\",\"object\":\"chat.completion.chunk\",\"created\":1749734801,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_a288987b44\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"paragraph\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BhcEzQgEJrETjorzYolqkaZga7nNh\",\"object\":\"chat.completion.chunk\",\"created\":1749734801,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_a288987b44\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"\\\",\\\"\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BhcEzQgEJrETjorzYolqkaZga7nNh\",\"object\":\"chat.completion.chunk\",\"created\":1749734801,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_a288987b44\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"content\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BhcEzQgEJrETjorzYolqkaZga7nNh\",\"object\":\"chat.completion.chunk\",\"created\":1749734801,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_a288987b44\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"\\\":[\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BhcEzQgEJrETjorzYolqkaZga7nNh\",\"object\":\"chat.completion.chunk\",\"created\":1749734801,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_a288987b44\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"{\\\"\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BhcEzQgEJrETjorzYolqkaZga7nNh\",\"object\":\"chat.completion.chunk\",\"created\":1749734801,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_a288987b44\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"type\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BhcEzQgEJrETjorzYolqkaZga7nNh\",\"object\":\"chat.completion.chunk\",\"created\":1749734801,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_a288987b44\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"\\\":\\\"\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BhcEzQgEJrETjorzYolqkaZga7nNh\",\"object\":\"chat.completion.chunk\",\"created\":1749734801,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_a288987b44\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"text\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BhcEzQgEJrETjorzYolqkaZga7nNh\",\"object\":\"chat.completion.chunk\",\"created\":1749734801,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_a288987b44\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"\\\",\\\"\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BhcEzQgEJrETjorzYolqkaZga7nNh\",\"object\":\"chat.completion.chunk\",\"created\":1749734801,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_a288987b44\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"text\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BhcEzQgEJrETjorzYolqkaZga7nNh\",\"object\":\"chat.completion.chunk\",\"created\":1749734801,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_a288987b44\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"\\\":\\\"\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BhcEzQgEJrETjorzYolqkaZga7nNh\",\"object\":\"chat.completion.chunk\",\"created\":1749734801,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_a288987b44\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"Hallo\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BhcEzQgEJrETjorzYolqkaZga7nNh\",\"object\":\"chat.completion.chunk\",\"created\":1749734801,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_a288987b44\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\",\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BhcEzQgEJrETjorzYolqkaZga7nNh\",\"object\":\"chat.completion.chunk\",\"created\":1749734801,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_a288987b44\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\" Welt\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BhcEzQgEJrETjorzYolqkaZga7nNh\",\"object\":\"chat.completion.chunk\",\"created\":1749734801,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_a288987b44\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"!\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BhcEzQgEJrETjorzYolqkaZga7nNh\",\"object\":\"chat.completion.chunk\",\"created\":1749734801,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_a288987b44\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"\\\",\\\"\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BhcEzQgEJrETjorzYolqkaZga7nNh\",\"object\":\"chat.completion.chunk\",\"created\":1749734801,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_a288987b44\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"styles\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BhcEzQgEJrETjorzYolqkaZga7nNh\",\"object\":\"chat.completion.chunk\",\"created\":1749734801,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_a288987b44\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"\\\":\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BhcEzQgEJrETjorzYolqkaZga7nNh\",\"object\":\"chat.completion.chunk\",\"created\":1749734801,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_a288987b44\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"{\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BhcEzQgEJrETjorzYolqkaZga7nNh\",\"object\":\"chat.completion.chunk\",\"created\":1749734801,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_a288987b44\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"}}\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BhcEzQgEJrETjorzYolqkaZga7nNh\",\"object\":\"chat.completion.chunk\",\"created\":1749734801,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_a288987b44\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"]\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BhcEzQgEJrETjorzYolqkaZga7nNh\",\"object\":\"chat.completion.chunk\",\"created\":1749734801,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_a288987b44\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"}}\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BhcEzQgEJrETjorzYolqkaZga7nNh\",\"object\":\"chat.completion.chunk\",\"created\":1749734801,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_a288987b44\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"]}\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BhcEzQgEJrETjorzYolqkaZga7nNh\",\"object\":\"chat.completion.chunk\",\"created\":1749734801,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_a288987b44\",\"choices\":[{\"index\":0,\"delta\":{},\"logprobs\":null,\"finish_reason\":\"stop\"}]}\n\ndata: [DONE]\n\n", "headers": [] } } \ No newline at end of file diff --git a/packages/xl-ai/src/api/formats/json/__snapshots__/json.test.ts/Update/__msw_snapshots__/openai.chat/gpt-4o-2024-08-06 (streaming)/styles + ic in source block, remove mark_1_c7c6246b702c9417679fec382dfa34d1.json b/packages/xl-ai/src/api/formats/json/__snapshots__/json.test.ts/Update/__msw_snapshots__/openai.chat/gpt-4o-2024-08-06 (streaming)/styles + ic in source block, remove mark_1_c7c6246b702c9417679fec382dfa34d1.json index a1cbca5209..f327541f7c 100644 --- a/packages/xl-ai/src/api/formats/json/__snapshots__/json.test.ts/Update/__msw_snapshots__/openai.chat/gpt-4o-2024-08-06 (streaming)/styles + ic in source block, remove mark_1_c7c6246b702c9417679fec382dfa34d1.json +++ b/packages/xl-ai/src/api/formats/json/__snapshots__/json.test.ts/Update/__msw_snapshots__/openai.chat/gpt-4o-2024-08-06 (streaming)/styles + ic in source block, remove mark_1_c7c6246b702c9417679fec382dfa34d1.json @@ -7,9 +7,9 @@ "cookies": [] }, "response": { - "status": 429, + "status": 200, "statusText": "", - "body": "{\n \"error\": {\n \"message\": \"You exceeded your current quota, please check your plan and billing details. For more information on this error, read the docs: https://platform.openai.com/docs/guides/error-codes/api-errors.\",\n \"type\": \"insufficient_quota\",\n \"param\": null,\n \"code\": \"insufficient_quota\"\n }\n}\n", + "body": "data: {\"id\":\"chatcmpl-BhcFBYTD28rhPlxRj8nAYNRAdiDO9\",\"object\":\"chat.completion.chunk\",\"created\":1749734813,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_a288987b44\",\"choices\":[{\"index\":0,\"delta\":{\"role\":\"assistant\",\"content\":null,\"tool_calls\":[{\"index\":0,\"id\":\"call_Kl2budWvGzLc6S7Znq8rc5vp\",\"type\":\"function\",\"function\":{\"name\":\"json\",\"arguments\":\"\"}}],\"refusal\":null},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BhcFBYTD28rhPlxRj8nAYNRAdiDO9\",\"object\":\"chat.completion.chunk\",\"created\":1749734813,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_a288987b44\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"{\\\"\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BhcFBYTD28rhPlxRj8nAYNRAdiDO9\",\"object\":\"chat.completion.chunk\",\"created\":1749734813,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_a288987b44\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"operations\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BhcFBYTD28rhPlxRj8nAYNRAdiDO9\",\"object\":\"chat.completion.chunk\",\"created\":1749734813,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_a288987b44\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"\\\":[\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BhcFBYTD28rhPlxRj8nAYNRAdiDO9\",\"object\":\"chat.completion.chunk\",\"created\":1749734813,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_a288987b44\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"{\\\"\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BhcFBYTD28rhPlxRj8nAYNRAdiDO9\",\"object\":\"chat.completion.chunk\",\"created\":1749734813,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_a288987b44\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"type\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BhcFBYTD28rhPlxRj8nAYNRAdiDO9\",\"object\":\"chat.completion.chunk\",\"created\":1749734813,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_a288987b44\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"\\\":\\\"\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BhcFBYTD28rhPlxRj8nAYNRAdiDO9\",\"object\":\"chat.completion.chunk\",\"created\":1749734813,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_a288987b44\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"update\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BhcFBYTD28rhPlxRj8nAYNRAdiDO9\",\"object\":\"chat.completion.chunk\",\"created\":1749734813,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_a288987b44\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"\\\",\\\"\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BhcFBYTD28rhPlxRj8nAYNRAdiDO9\",\"object\":\"chat.completion.chunk\",\"created\":1749734813,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_a288987b44\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"id\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BhcFBYTD28rhPlxRj8nAYNRAdiDO9\",\"object\":\"chat.completion.chunk\",\"created\":1749734813,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_a288987b44\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"\\\":\\\"\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BhcFBYTD28rhPlxRj8nAYNRAdiDO9\",\"object\":\"chat.completion.chunk\",\"created\":1749734813,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_a288987b44\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"ref\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BhcFBYTD28rhPlxRj8nAYNRAdiDO9\",\"object\":\"chat.completion.chunk\",\"created\":1749734813,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_a288987b44\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"2\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BhcFBYTD28rhPlxRj8nAYNRAdiDO9\",\"object\":\"chat.completion.chunk\",\"created\":1749734813,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_a288987b44\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"$\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BhcFBYTD28rhPlxRj8nAYNRAdiDO9\",\"object\":\"chat.completion.chunk\",\"created\":1749734813,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_a288987b44\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"\\\",\\\"\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BhcFBYTD28rhPlxRj8nAYNRAdiDO9\",\"object\":\"chat.completion.chunk\",\"created\":1749734813,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_a288987b44\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"block\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BhcFBYTD28rhPlxRj8nAYNRAdiDO9\",\"object\":\"chat.completion.chunk\",\"created\":1749734813,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_a288987b44\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"\\\":{\\\"\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BhcFBYTD28rhPlxRj8nAYNRAdiDO9\",\"object\":\"chat.completion.chunk\",\"created\":1749734813,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_a288987b44\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"type\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BhcFBYTD28rhPlxRj8nAYNRAdiDO9\",\"object\":\"chat.completion.chunk\",\"created\":1749734813,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_a288987b44\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"\\\":\\\"\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BhcFBYTD28rhPlxRj8nAYNRAdiDO9\",\"object\":\"chat.completion.chunk\",\"created\":1749734813,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_a288987b44\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"paragraph\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BhcFBYTD28rhPlxRj8nAYNRAdiDO9\",\"object\":\"chat.completion.chunk\",\"created\":1749734813,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_a288987b44\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"\\\",\\\"\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BhcFBYTD28rhPlxRj8nAYNRAdiDO9\",\"object\":\"chat.completion.chunk\",\"created\":1749734813,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_a288987b44\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"content\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BhcFBYTD28rhPlxRj8nAYNRAdiDO9\",\"object\":\"chat.completion.chunk\",\"created\":1749734813,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_a288987b44\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"\\\":[\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BhcFBYTD28rhPlxRj8nAYNRAdiDO9\",\"object\":\"chat.completion.chunk\",\"created\":1749734813,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_a288987b44\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"{\\\"\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BhcFBYTD28rhPlxRj8nAYNRAdiDO9\",\"object\":\"chat.completion.chunk\",\"created\":1749734813,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_a288987b44\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"type\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BhcFBYTD28rhPlxRj8nAYNRAdiDO9\",\"object\":\"chat.completion.chunk\",\"created\":1749734813,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_a288987b44\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"\\\":\\\"\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BhcFBYTD28rhPlxRj8nAYNRAdiDO9\",\"object\":\"chat.completion.chunk\",\"created\":1749734813,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_a288987b44\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"text\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BhcFBYTD28rhPlxRj8nAYNRAdiDO9\",\"object\":\"chat.completion.chunk\",\"created\":1749734813,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_a288987b44\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"\\\",\\\"\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BhcFBYTD28rhPlxRj8nAYNRAdiDO9\",\"object\":\"chat.completion.chunk\",\"created\":1749734813,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_a288987b44\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"text\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BhcFBYTD28rhPlxRj8nAYNRAdiDO9\",\"object\":\"chat.completion.chunk\",\"created\":1749734813,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_a288987b44\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"\\\":\\\"\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BhcFBYTD28rhPlxRj8nAYNRAdiDO9\",\"object\":\"chat.completion.chunk\",\"created\":1749734813,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_a288987b44\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"Hello\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BhcFBYTD28rhPlxRj8nAYNRAdiDO9\",\"object\":\"chat.completion.chunk\",\"created\":1749734813,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_a288987b44\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\",\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BhcFBYTD28rhPlxRj8nAYNRAdiDO9\",\"object\":\"chat.completion.chunk\",\"created\":1749734813,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_a288987b44\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\" \\\",\\\"\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BhcFBYTD28rhPlxRj8nAYNRAdiDO9\",\"object\":\"chat.completion.chunk\",\"created\":1749734813,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_a288987b44\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"styles\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BhcFBYTD28rhPlxRj8nAYNRAdiDO9\",\"object\":\"chat.completion.chunk\",\"created\":1749734813,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_a288987b44\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"\\\":\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BhcFBYTD28rhPlxRj8nAYNRAdiDO9\",\"object\":\"chat.completion.chunk\",\"created\":1749734813,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_a288987b44\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"{}\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BhcFBYTD28rhPlxRj8nAYNRAdiDO9\",\"object\":\"chat.completion.chunk\",\"created\":1749734813,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_a288987b44\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"},{\\\"\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BhcFBYTD28rhPlxRj8nAYNRAdiDO9\",\"object\":\"chat.completion.chunk\",\"created\":1749734813,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_a288987b44\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"type\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BhcFBYTD28rhPlxRj8nAYNRAdiDO9\",\"object\":\"chat.completion.chunk\",\"created\":1749734813,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_a288987b44\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"\\\":\\\"\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BhcFBYTD28rhPlxRj8nAYNRAdiDO9\",\"object\":\"chat.completion.chunk\",\"created\":1749734813,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_a288987b44\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"mention\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BhcFBYTD28rhPlxRj8nAYNRAdiDO9\",\"object\":\"chat.completion.chunk\",\"created\":1749734813,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_a288987b44\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"\\\",\\\"\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BhcFBYTD28rhPlxRj8nAYNRAdiDO9\",\"object\":\"chat.completion.chunk\",\"created\":1749734813,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_a288987b44\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"props\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BhcFBYTD28rhPlxRj8nAYNRAdiDO9\",\"object\":\"chat.completion.chunk\",\"created\":1749734813,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_a288987b44\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"\\\":{\\\"\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BhcFBYTD28rhPlxRj8nAYNRAdiDO9\",\"object\":\"chat.completion.chunk\",\"created\":1749734813,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_a288987b44\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"user\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BhcFBYTD28rhPlxRj8nAYNRAdiDO9\",\"object\":\"chat.completion.chunk\",\"created\":1749734813,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_a288987b44\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"\\\":\\\"\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BhcFBYTD28rhPlxRj8nAYNRAdiDO9\",\"object\":\"chat.completion.chunk\",\"created\":1749734813,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_a288987b44\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"John\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BhcFBYTD28rhPlxRj8nAYNRAdiDO9\",\"object\":\"chat.completion.chunk\",\"created\":1749734813,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_a288987b44\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\" Doe\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BhcFBYTD28rhPlxRj8nAYNRAdiDO9\",\"object\":\"chat.completion.chunk\",\"created\":1749734813,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_a288987b44\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"\\\"}\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BhcFBYTD28rhPlxRj8nAYNRAdiDO9\",\"object\":\"chat.completion.chunk\",\"created\":1749734813,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_a288987b44\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"},{\\\"\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BhcFBYTD28rhPlxRj8nAYNRAdiDO9\",\"object\":\"chat.completion.chunk\",\"created\":1749734813,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_a288987b44\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"type\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BhcFBYTD28rhPlxRj8nAYNRAdiDO9\",\"object\":\"chat.completion.chunk\",\"created\":1749734813,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_a288987b44\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"\\\":\\\"\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BhcFBYTD28rhPlxRj8nAYNRAdiDO9\",\"object\":\"chat.completion.chunk\",\"created\":1749734813,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_a288987b44\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"text\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BhcFBYTD28rhPlxRj8nAYNRAdiDO9\",\"object\":\"chat.completion.chunk\",\"created\":1749734813,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_a288987b44\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"\\\",\\\"\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BhcFBYTD28rhPlxRj8nAYNRAdiDO9\",\"object\":\"chat.completion.chunk\",\"created\":1749734813,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_a288987b44\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"text\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BhcFBYTD28rhPlxRj8nAYNRAdiDO9\",\"object\":\"chat.completion.chunk\",\"created\":1749734813,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_a288987b44\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"\\\":\\\"\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BhcFBYTD28rhPlxRj8nAYNRAdiDO9\",\"object\":\"chat.completion.chunk\",\"created\":1749734813,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_a288987b44\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"!\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BhcFBYTD28rhPlxRj8nAYNRAdiDO9\",\"object\":\"chat.completion.chunk\",\"created\":1749734813,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_a288987b44\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\" \\\",\\\"\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BhcFBYTD28rhPlxRj8nAYNRAdiDO9\",\"object\":\"chat.completion.chunk\",\"created\":1749734813,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_a288987b44\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"styles\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BhcFBYTD28rhPlxRj8nAYNRAdiDO9\",\"object\":\"chat.completion.chunk\",\"created\":1749734813,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_a288987b44\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"\\\":\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BhcFBYTD28rhPlxRj8nAYNRAdiDO9\",\"object\":\"chat.completion.chunk\",\"created\":1749734813,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_a288987b44\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"{}\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BhcFBYTD28rhPlxRj8nAYNRAdiDO9\",\"object\":\"chat.completion.chunk\",\"created\":1749734813,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_a288987b44\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"},{\\\"\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BhcFBYTD28rhPlxRj8nAYNRAdiDO9\",\"object\":\"chat.completion.chunk\",\"created\":1749734813,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_a288987b44\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"type\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BhcFBYTD28rhPlxRj8nAYNRAdiDO9\",\"object\":\"chat.completion.chunk\",\"created\":1749734813,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_a288987b44\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"\\\":\\\"\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BhcFBYTD28rhPlxRj8nAYNRAdiDO9\",\"object\":\"chat.completion.chunk\",\"created\":1749734813,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_a288987b44\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"text\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BhcFBYTD28rhPlxRj8nAYNRAdiDO9\",\"object\":\"chat.completion.chunk\",\"created\":1749734813,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_a288987b44\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"\\\",\\\"\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BhcFBYTD28rhPlxRj8nAYNRAdiDO9\",\"object\":\"chat.completion.chunk\",\"created\":1749734813,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_a288987b44\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"text\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BhcFBYTD28rhPlxRj8nAYNRAdiDO9\",\"object\":\"chat.completion.chunk\",\"created\":1749734813,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_a288987b44\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"\\\":\\\"\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BhcFBYTD28rhPlxRj8nAYNRAdiDO9\",\"object\":\"chat.completion.chunk\",\"created\":1749734813,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_a288987b44\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"How\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BhcFBYTD28rhPlxRj8nAYNRAdiDO9\",\"object\":\"chat.completion.chunk\",\"created\":1749734813,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_a288987b44\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\" are\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BhcFBYTD28rhPlxRj8nAYNRAdiDO9\",\"object\":\"chat.completion.chunk\",\"created\":1749734813,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_a288987b44\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\" you\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BhcFBYTD28rhPlxRj8nAYNRAdiDO9\",\"object\":\"chat.completion.chunk\",\"created\":1749734813,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_a288987b44\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\" doing\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BhcFBYTD28rhPlxRj8nAYNRAdiDO9\",\"object\":\"chat.completion.chunk\",\"created\":1749734813,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_a288987b44\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"?\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BhcFBYTD28rhPlxRj8nAYNRAdiDO9\",\"object\":\"chat.completion.chunk\",\"created\":1749734813,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_a288987b44\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"\\\",\\\"\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BhcFBYTD28rhPlxRj8nAYNRAdiDO9\",\"object\":\"chat.completion.chunk\",\"created\":1749734813,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_a288987b44\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"styles\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BhcFBYTD28rhPlxRj8nAYNRAdiDO9\",\"object\":\"chat.completion.chunk\",\"created\":1749734813,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_a288987b44\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"\\\":\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BhcFBYTD28rhPlxRj8nAYNRAdiDO9\",\"object\":\"chat.completion.chunk\",\"created\":1749734813,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_a288987b44\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"{}\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BhcFBYTD28rhPlxRj8nAYNRAdiDO9\",\"object\":\"chat.completion.chunk\",\"created\":1749734813,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_a288987b44\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"},{\\\"\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BhcFBYTD28rhPlxRj8nAYNRAdiDO9\",\"object\":\"chat.completion.chunk\",\"created\":1749734813,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_a288987b44\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"type\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BhcFBYTD28rhPlxRj8nAYNRAdiDO9\",\"object\":\"chat.completion.chunk\",\"created\":1749734813,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_a288987b44\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"\\\":\\\"\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BhcFBYTD28rhPlxRj8nAYNRAdiDO9\",\"object\":\"chat.completion.chunk\",\"created\":1749734813,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_a288987b44\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"text\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BhcFBYTD28rhPlxRj8nAYNRAdiDO9\",\"object\":\"chat.completion.chunk\",\"created\":1749734813,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_a288987b44\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"\\\",\\\"\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BhcFBYTD28rhPlxRj8nAYNRAdiDO9\",\"object\":\"chat.completion.chunk\",\"created\":1749734813,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_a288987b44\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"text\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BhcFBYTD28rhPlxRj8nAYNRAdiDO9\",\"object\":\"chat.completion.chunk\",\"created\":1749734813,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_a288987b44\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"\\\":\\\"\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BhcFBYTD28rhPlxRj8nAYNRAdiDO9\",\"object\":\"chat.completion.chunk\",\"created\":1749734813,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_a288987b44\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\" \\\",\\\"\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BhcFBYTD28rhPlxRj8nAYNRAdiDO9\",\"object\":\"chat.completion.chunk\",\"created\":1749734813,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_a288987b44\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"styles\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BhcFBYTD28rhPlxRj8nAYNRAdiDO9\",\"object\":\"chat.completion.chunk\",\"created\":1749734813,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_a288987b44\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"\\\":\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BhcFBYTD28rhPlxRj8nAYNRAdiDO9\",\"object\":\"chat.completion.chunk\",\"created\":1749734813,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_a288987b44\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"{}\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BhcFBYTD28rhPlxRj8nAYNRAdiDO9\",\"object\":\"chat.completion.chunk\",\"created\":1749734813,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_a288987b44\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"},{\\\"\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BhcFBYTD28rhPlxRj8nAYNRAdiDO9\",\"object\":\"chat.completion.chunk\",\"created\":1749734813,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_a288987b44\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"type\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BhcFBYTD28rhPlxRj8nAYNRAdiDO9\",\"object\":\"chat.completion.chunk\",\"created\":1749734813,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_a288987b44\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"\\\":\\\"\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BhcFBYTD28rhPlxRj8nAYNRAdiDO9\",\"object\":\"chat.completion.chunk\",\"created\":1749734813,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_a288987b44\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"text\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BhcFBYTD28rhPlxRj8nAYNRAdiDO9\",\"object\":\"chat.completion.chunk\",\"created\":1749734813,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_a288987b44\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"\\\",\\\"\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BhcFBYTD28rhPlxRj8nAYNRAdiDO9\",\"object\":\"chat.completion.chunk\",\"created\":1749734813,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_a288987b44\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"text\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BhcFBYTD28rhPlxRj8nAYNRAdiDO9\",\"object\":\"chat.completion.chunk\",\"created\":1749734813,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_a288987b44\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"\\\":\\\"\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BhcFBYTD28rhPlxRj8nAYNRAdiDO9\",\"object\":\"chat.completion.chunk\",\"created\":1749734813,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_a288987b44\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"This\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BhcFBYTD28rhPlxRj8nAYNRAdiDO9\",\"object\":\"chat.completion.chunk\",\"created\":1749734813,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_a288987b44\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\" text\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BhcFBYTD28rhPlxRj8nAYNRAdiDO9\",\"object\":\"chat.completion.chunk\",\"created\":1749734813,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_a288987b44\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\" is\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BhcFBYTD28rhPlxRj8nAYNRAdiDO9\",\"object\":\"chat.completion.chunk\",\"created\":1749734813,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_a288987b44\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\" blue\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BhcFBYTD28rhPlxRj8nAYNRAdiDO9\",\"object\":\"chat.completion.chunk\",\"created\":1749734813,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_a288987b44\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"!\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BhcFBYTD28rhPlxRj8nAYNRAdiDO9\",\"object\":\"chat.completion.chunk\",\"created\":1749734813,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_a288987b44\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"\\\",\\\"\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BhcFBYTD28rhPlxRj8nAYNRAdiDO9\",\"object\":\"chat.completion.chunk\",\"created\":1749734813,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_a288987b44\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"styles\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BhcFBYTD28rhPlxRj8nAYNRAdiDO9\",\"object\":\"chat.completion.chunk\",\"created\":1749734813,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_a288987b44\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"\\\":{\\\"\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BhcFBYTD28rhPlxRj8nAYNRAdiDO9\",\"object\":\"chat.completion.chunk\",\"created\":1749734813,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_a288987b44\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"text\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BhcFBYTD28rhPlxRj8nAYNRAdiDO9\",\"object\":\"chat.completion.chunk\",\"created\":1749734813,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_a288987b44\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"Color\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BhcFBYTD28rhPlxRj8nAYNRAdiDO9\",\"object\":\"chat.completion.chunk\",\"created\":1749734813,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_a288987b44\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"\\\":\\\"\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BhcFBYTD28rhPlxRj8nAYNRAdiDO9\",\"object\":\"chat.completion.chunk\",\"created\":1749734813,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_a288987b44\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"blue\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BhcFBYTD28rhPlxRj8nAYNRAdiDO9\",\"object\":\"chat.completion.chunk\",\"created\":1749734813,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_a288987b44\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"\\\"}}\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BhcFBYTD28rhPlxRj8nAYNRAdiDO9\",\"object\":\"chat.completion.chunk\",\"created\":1749734813,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_a288987b44\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"]\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BhcFBYTD28rhPlxRj8nAYNRAdiDO9\",\"object\":\"chat.completion.chunk\",\"created\":1749734813,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_a288987b44\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"}}\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BhcFBYTD28rhPlxRj8nAYNRAdiDO9\",\"object\":\"chat.completion.chunk\",\"created\":1749734813,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_a288987b44\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"]}\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BhcFBYTD28rhPlxRj8nAYNRAdiDO9\",\"object\":\"chat.completion.chunk\",\"created\":1749734813,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_a288987b44\",\"choices\":[{\"index\":0,\"delta\":{},\"logprobs\":null,\"finish_reason\":\"stop\"}]}\n\ndata: [DONE]\n\n", "headers": [] } } \ No newline at end of file diff --git a/packages/xl-ai/src/api/formats/json/__snapshots__/json.test.ts/Update/__msw_snapshots__/openai.chat/gpt-4o-2024-08-06 (streaming)/styles + ic in source block, remove mention_1_5eb79311fbbec3ee0ed02e0178b3bee6.json b/packages/xl-ai/src/api/formats/json/__snapshots__/json.test.ts/Update/__msw_snapshots__/openai.chat/gpt-4o-2024-08-06 (streaming)/styles + ic in source block, remove mention_1_5eb79311fbbec3ee0ed02e0178b3bee6.json index dd2596aacd..122c9117ef 100644 --- a/packages/xl-ai/src/api/formats/json/__snapshots__/json.test.ts/Update/__msw_snapshots__/openai.chat/gpt-4o-2024-08-06 (streaming)/styles + ic in source block, remove mention_1_5eb79311fbbec3ee0ed02e0178b3bee6.json +++ b/packages/xl-ai/src/api/formats/json/__snapshots__/json.test.ts/Update/__msw_snapshots__/openai.chat/gpt-4o-2024-08-06 (streaming)/styles + ic in source block, remove mention_1_5eb79311fbbec3ee0ed02e0178b3bee6.json @@ -7,9 +7,9 @@ "cookies": [] }, "response": { - "status": 429, + "status": 200, "statusText": "", - "body": "{\n \"error\": {\n \"message\": \"You exceeded your current quota, please check your plan and billing details. For more information on this error, read the docs: https://platform.openai.com/docs/guides/error-codes/api-errors.\",\n \"type\": \"insufficient_quota\",\n \"param\": null,\n \"code\": \"insufficient_quota\"\n }\n}\n", + "body": "data: {\"id\":\"chatcmpl-BhcFCOCkywjrvBpcJeek3JmePMv42\",\"object\":\"chat.completion.chunk\",\"created\":1749734814,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_a288987b44\",\"choices\":[{\"index\":0,\"delta\":{\"role\":\"assistant\",\"content\":null,\"tool_calls\":[{\"index\":0,\"id\":\"call_EjfNsF1J4E2ZX6BfLHgVbTYV\",\"type\":\"function\",\"function\":{\"name\":\"json\",\"arguments\":\"\"}}],\"refusal\":null},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BhcFCOCkywjrvBpcJeek3JmePMv42\",\"object\":\"chat.completion.chunk\",\"created\":1749734814,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_a288987b44\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"{\\\"\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BhcFCOCkywjrvBpcJeek3JmePMv42\",\"object\":\"chat.completion.chunk\",\"created\":1749734814,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_a288987b44\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"operations\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BhcFCOCkywjrvBpcJeek3JmePMv42\",\"object\":\"chat.completion.chunk\",\"created\":1749734814,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_a288987b44\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"\\\":[\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BhcFCOCkywjrvBpcJeek3JmePMv42\",\"object\":\"chat.completion.chunk\",\"created\":1749734814,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_a288987b44\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"{\\\"\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BhcFCOCkywjrvBpcJeek3JmePMv42\",\"object\":\"chat.completion.chunk\",\"created\":1749734814,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_a288987b44\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"type\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BhcFCOCkywjrvBpcJeek3JmePMv42\",\"object\":\"chat.completion.chunk\",\"created\":1749734814,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_a288987b44\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"\\\":\\\"\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BhcFCOCkywjrvBpcJeek3JmePMv42\",\"object\":\"chat.completion.chunk\",\"created\":1749734814,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_a288987b44\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"update\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BhcFCOCkywjrvBpcJeek3JmePMv42\",\"object\":\"chat.completion.chunk\",\"created\":1749734814,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_a288987b44\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"\\\",\\\"\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BhcFCOCkywjrvBpcJeek3JmePMv42\",\"object\":\"chat.completion.chunk\",\"created\":1749734814,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_a288987b44\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"id\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BhcFCOCkywjrvBpcJeek3JmePMv42\",\"object\":\"chat.completion.chunk\",\"created\":1749734814,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_a288987b44\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"\\\":\\\"\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BhcFCOCkywjrvBpcJeek3JmePMv42\",\"object\":\"chat.completion.chunk\",\"created\":1749734814,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_a288987b44\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"ref\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BhcFCOCkywjrvBpcJeek3JmePMv42\",\"object\":\"chat.completion.chunk\",\"created\":1749734814,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_a288987b44\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"2\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BhcFCOCkywjrvBpcJeek3JmePMv42\",\"object\":\"chat.completion.chunk\",\"created\":1749734814,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_a288987b44\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"$\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BhcFCOCkywjrvBpcJeek3JmePMv42\",\"object\":\"chat.completion.chunk\",\"created\":1749734814,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_a288987b44\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"\\\",\\\"\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BhcFCOCkywjrvBpcJeek3JmePMv42\",\"object\":\"chat.completion.chunk\",\"created\":1749734814,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_a288987b44\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"block\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BhcFCOCkywjrvBpcJeek3JmePMv42\",\"object\":\"chat.completion.chunk\",\"created\":1749734814,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_a288987b44\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"\\\":{\\\"\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BhcFCOCkywjrvBpcJeek3JmePMv42\",\"object\":\"chat.completion.chunk\",\"created\":1749734814,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_a288987b44\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"type\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BhcFCOCkywjrvBpcJeek3JmePMv42\",\"object\":\"chat.completion.chunk\",\"created\":1749734814,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_a288987b44\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"\\\":\\\"\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BhcFCOCkywjrvBpcJeek3JmePMv42\",\"object\":\"chat.completion.chunk\",\"created\":1749734814,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_a288987b44\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"paragraph\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BhcFCOCkywjrvBpcJeek3JmePMv42\",\"object\":\"chat.completion.chunk\",\"created\":1749734814,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_a288987b44\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"\\\",\\\"\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BhcFCOCkywjrvBpcJeek3JmePMv42\",\"object\":\"chat.completion.chunk\",\"created\":1749734814,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_a288987b44\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"content\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BhcFCOCkywjrvBpcJeek3JmePMv42\",\"object\":\"chat.completion.chunk\",\"created\":1749734814,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_a288987b44\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"\\\":[\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BhcFCOCkywjrvBpcJeek3JmePMv42\",\"object\":\"chat.completion.chunk\",\"created\":1749734814,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_a288987b44\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"{\\\"\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BhcFCOCkywjrvBpcJeek3JmePMv42\",\"object\":\"chat.completion.chunk\",\"created\":1749734814,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_a288987b44\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"type\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BhcFCOCkywjrvBpcJeek3JmePMv42\",\"object\":\"chat.completion.chunk\",\"created\":1749734814,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_a288987b44\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"\\\":\\\"\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BhcFCOCkywjrvBpcJeek3JmePMv42\",\"object\":\"chat.completion.chunk\",\"created\":1749734814,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_a288987b44\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"text\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BhcFCOCkywjrvBpcJeek3JmePMv42\",\"object\":\"chat.completion.chunk\",\"created\":1749734814,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_a288987b44\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"\\\",\\\"\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BhcFCOCkywjrvBpcJeek3JmePMv42\",\"object\":\"chat.completion.chunk\",\"created\":1749734814,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_a288987b44\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"text\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BhcFCOCkywjrvBpcJeek3JmePMv42\",\"object\":\"chat.completion.chunk\",\"created\":1749734814,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_a288987b44\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"\\\":\\\"\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BhcFCOCkywjrvBpcJeek3JmePMv42\",\"object\":\"chat.completion.chunk\",\"created\":1749734814,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_a288987b44\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"Hello\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BhcFCOCkywjrvBpcJeek3JmePMv42\",\"object\":\"chat.completion.chunk\",\"created\":1749734814,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_a288987b44\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"!\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BhcFCOCkywjrvBpcJeek3JmePMv42\",\"object\":\"chat.completion.chunk\",\"created\":1749734814,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_a288987b44\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\" \\\",\\\"\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BhcFCOCkywjrvBpcJeek3JmePMv42\",\"object\":\"chat.completion.chunk\",\"created\":1749734814,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_a288987b44\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"styles\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BhcFCOCkywjrvBpcJeek3JmePMv42\",\"object\":\"chat.completion.chunk\",\"created\":1749734814,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_a288987b44\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"\\\":\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BhcFCOCkywjrvBpcJeek3JmePMv42\",\"object\":\"chat.completion.chunk\",\"created\":1749734814,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_a288987b44\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"{}\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BhcFCOCkywjrvBpcJeek3JmePMv42\",\"object\":\"chat.completion.chunk\",\"created\":1749734814,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_a288987b44\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"},{\\\"\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BhcFCOCkywjrvBpcJeek3JmePMv42\",\"object\":\"chat.completion.chunk\",\"created\":1749734814,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_a288987b44\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"type\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BhcFCOCkywjrvBpcJeek3JmePMv42\",\"object\":\"chat.completion.chunk\",\"created\":1749734814,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_a288987b44\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"\\\":\\\"\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BhcFCOCkywjrvBpcJeek3JmePMv42\",\"object\":\"chat.completion.chunk\",\"created\":1749734814,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_a288987b44\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"text\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BhcFCOCkywjrvBpcJeek3JmePMv42\",\"object\":\"chat.completion.chunk\",\"created\":1749734814,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_a288987b44\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"\\\",\\\"\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BhcFCOCkywjrvBpcJeek3JmePMv42\",\"object\":\"chat.completion.chunk\",\"created\":1749734814,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_a288987b44\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"text\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BhcFCOCkywjrvBpcJeek3JmePMv42\",\"object\":\"chat.completion.chunk\",\"created\":1749734814,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_a288987b44\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"\\\":\\\"\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BhcFCOCkywjrvBpcJeek3JmePMv42\",\"object\":\"chat.completion.chunk\",\"created\":1749734814,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_a288987b44\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"How\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BhcFCOCkywjrvBpcJeek3JmePMv42\",\"object\":\"chat.completion.chunk\",\"created\":1749734814,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_a288987b44\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\" are\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BhcFCOCkywjrvBpcJeek3JmePMv42\",\"object\":\"chat.completion.chunk\",\"created\":1749734814,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_a288987b44\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\" you\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BhcFCOCkywjrvBpcJeek3JmePMv42\",\"object\":\"chat.completion.chunk\",\"created\":1749734814,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_a288987b44\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\" doing\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BhcFCOCkywjrvBpcJeek3JmePMv42\",\"object\":\"chat.completion.chunk\",\"created\":1749734814,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_a288987b44\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"?\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BhcFCOCkywjrvBpcJeek3JmePMv42\",\"object\":\"chat.completion.chunk\",\"created\":1749734814,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_a288987b44\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"\\\",\\\"\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BhcFCOCkywjrvBpcJeek3JmePMv42\",\"object\":\"chat.completion.chunk\",\"created\":1749734814,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_a288987b44\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"styles\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BhcFCOCkywjrvBpcJeek3JmePMv42\",\"object\":\"chat.completion.chunk\",\"created\":1749734814,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_a288987b44\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"\\\":{\\\"\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BhcFCOCkywjrvBpcJeek3JmePMv42\",\"object\":\"chat.completion.chunk\",\"created\":1749734814,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_a288987b44\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"bold\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BhcFCOCkywjrvBpcJeek3JmePMv42\",\"object\":\"chat.completion.chunk\",\"created\":1749734814,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_a288987b44\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"\\\":\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BhcFCOCkywjrvBpcJeek3JmePMv42\",\"object\":\"chat.completion.chunk\",\"created\":1749734814,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_a288987b44\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"true\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BhcFCOCkywjrvBpcJeek3JmePMv42\",\"object\":\"chat.completion.chunk\",\"created\":1749734814,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_a288987b44\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"}},\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BhcFCOCkywjrvBpcJeek3JmePMv42\",\"object\":\"chat.completion.chunk\",\"created\":1749734814,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_a288987b44\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"{\\\"\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BhcFCOCkywjrvBpcJeek3JmePMv42\",\"object\":\"chat.completion.chunk\",\"created\":1749734814,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_a288987b44\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"type\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BhcFCOCkywjrvBpcJeek3JmePMv42\",\"object\":\"chat.completion.chunk\",\"created\":1749734814,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_a288987b44\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"\\\":\\\"\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BhcFCOCkywjrvBpcJeek3JmePMv42\",\"object\":\"chat.completion.chunk\",\"created\":1749734814,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_a288987b44\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"text\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BhcFCOCkywjrvBpcJeek3JmePMv42\",\"object\":\"chat.completion.chunk\",\"created\":1749734814,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_a288987b44\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"\\\",\\\"\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BhcFCOCkywjrvBpcJeek3JmePMv42\",\"object\":\"chat.completion.chunk\",\"created\":1749734814,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_a288987b44\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"text\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BhcFCOCkywjrvBpcJeek3JmePMv42\",\"object\":\"chat.completion.chunk\",\"created\":1749734814,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_a288987b44\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"\\\":\\\"\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BhcFCOCkywjrvBpcJeek3JmePMv42\",\"object\":\"chat.completion.chunk\",\"created\":1749734814,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_a288987b44\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\" \\\",\\\"\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BhcFCOCkywjrvBpcJeek3JmePMv42\",\"object\":\"chat.completion.chunk\",\"created\":1749734814,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_a288987b44\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"styles\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BhcFCOCkywjrvBpcJeek3JmePMv42\",\"object\":\"chat.completion.chunk\",\"created\":1749734814,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_a288987b44\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"\\\":\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BhcFCOCkywjrvBpcJeek3JmePMv42\",\"object\":\"chat.completion.chunk\",\"created\":1749734814,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_a288987b44\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"{}\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BhcFCOCkywjrvBpcJeek3JmePMv42\",\"object\":\"chat.completion.chunk\",\"created\":1749734814,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_a288987b44\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"},{\\\"\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BhcFCOCkywjrvBpcJeek3JmePMv42\",\"object\":\"chat.completion.chunk\",\"created\":1749734814,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_a288987b44\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"type\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BhcFCOCkywjrvBpcJeek3JmePMv42\",\"object\":\"chat.completion.chunk\",\"created\":1749734814,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_a288987b44\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"\\\":\\\"\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BhcFCOCkywjrvBpcJeek3JmePMv42\",\"object\":\"chat.completion.chunk\",\"created\":1749734814,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_a288987b44\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"text\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BhcFCOCkywjrvBpcJeek3JmePMv42\",\"object\":\"chat.completion.chunk\",\"created\":1749734814,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_a288987b44\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"\\\",\\\"\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BhcFCOCkywjrvBpcJeek3JmePMv42\",\"object\":\"chat.completion.chunk\",\"created\":1749734814,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_a288987b44\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"text\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BhcFCOCkywjrvBpcJeek3JmePMv42\",\"object\":\"chat.completion.chunk\",\"created\":1749734814,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_a288987b44\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"\\\":\\\"\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BhcFCOCkywjrvBpcJeek3JmePMv42\",\"object\":\"chat.completion.chunk\",\"created\":1749734814,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_a288987b44\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"This\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BhcFCOCkywjrvBpcJeek3JmePMv42\",\"object\":\"chat.completion.chunk\",\"created\":1749734814,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_a288987b44\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\" text\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BhcFCOCkywjrvBpcJeek3JmePMv42\",\"object\":\"chat.completion.chunk\",\"created\":1749734814,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_a288987b44\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\" is\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BhcFCOCkywjrvBpcJeek3JmePMv42\",\"object\":\"chat.completion.chunk\",\"created\":1749734814,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_a288987b44\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\" blue\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BhcFCOCkywjrvBpcJeek3JmePMv42\",\"object\":\"chat.completion.chunk\",\"created\":1749734814,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_a288987b44\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"!\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BhcFCOCkywjrvBpcJeek3JmePMv42\",\"object\":\"chat.completion.chunk\",\"created\":1749734814,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_a288987b44\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"\\\",\\\"\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BhcFCOCkywjrvBpcJeek3JmePMv42\",\"object\":\"chat.completion.chunk\",\"created\":1749734814,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_a288987b44\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"styles\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BhcFCOCkywjrvBpcJeek3JmePMv42\",\"object\":\"chat.completion.chunk\",\"created\":1749734814,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_a288987b44\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"\\\":{\\\"\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BhcFCOCkywjrvBpcJeek3JmePMv42\",\"object\":\"chat.completion.chunk\",\"created\":1749734814,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_a288987b44\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"text\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BhcFCOCkywjrvBpcJeek3JmePMv42\",\"object\":\"chat.completion.chunk\",\"created\":1749734814,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_a288987b44\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"Color\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BhcFCOCkywjrvBpcJeek3JmePMv42\",\"object\":\"chat.completion.chunk\",\"created\":1749734814,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_a288987b44\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"\\\":\\\"\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BhcFCOCkywjrvBpcJeek3JmePMv42\",\"object\":\"chat.completion.chunk\",\"created\":1749734814,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_a288987b44\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"blue\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BhcFCOCkywjrvBpcJeek3JmePMv42\",\"object\":\"chat.completion.chunk\",\"created\":1749734814,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_a288987b44\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"\\\"}}\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BhcFCOCkywjrvBpcJeek3JmePMv42\",\"object\":\"chat.completion.chunk\",\"created\":1749734814,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_a288987b44\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"]\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BhcFCOCkywjrvBpcJeek3JmePMv42\",\"object\":\"chat.completion.chunk\",\"created\":1749734814,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_a288987b44\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"}}\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BhcFCOCkywjrvBpcJeek3JmePMv42\",\"object\":\"chat.completion.chunk\",\"created\":1749734814,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_a288987b44\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"]}\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BhcFCOCkywjrvBpcJeek3JmePMv42\",\"object\":\"chat.completion.chunk\",\"created\":1749734814,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_a288987b44\",\"choices\":[{\"index\":0,\"delta\":{},\"logprobs\":null,\"finish_reason\":\"stop\"}]}\n\ndata: [DONE]\n\n", "headers": [] } } \ No newline at end of file diff --git a/packages/xl-ai/src/api/formats/json/__snapshots__/json.test.ts/Update/__msw_snapshots__/openai.chat/gpt-4o-2024-08-06 (streaming)/styles + ic in source block, replace content_1_5d52b9a4787e7d80ebeabb4ebd975206.json b/packages/xl-ai/src/api/formats/json/__snapshots__/json.test.ts/Update/__msw_snapshots__/openai.chat/gpt-4o-2024-08-06 (streaming)/styles + ic in source block, replace content_1_5d52b9a4787e7d80ebeabb4ebd975206.json index e37bcf8e0f..7463bc6cf1 100644 --- a/packages/xl-ai/src/api/formats/json/__snapshots__/json.test.ts/Update/__msw_snapshots__/openai.chat/gpt-4o-2024-08-06 (streaming)/styles + ic in source block, replace content_1_5d52b9a4787e7d80ebeabb4ebd975206.json +++ b/packages/xl-ai/src/api/formats/json/__snapshots__/json.test.ts/Update/__msw_snapshots__/openai.chat/gpt-4o-2024-08-06 (streaming)/styles + ic in source block, replace content_1_5d52b9a4787e7d80ebeabb4ebd975206.json @@ -7,9 +7,9 @@ "cookies": [] }, "response": { - "status": 429, + "status": 200, "statusText": "", - "body": "{\n \"error\": {\n \"message\": \"You exceeded your current quota, please check your plan and billing details. For more information on this error, read the docs: https://platform.openai.com/docs/guides/error-codes/api-errors.\",\n \"type\": \"insufficient_quota\",\n \"param\": null,\n \"code\": \"insufficient_quota\"\n }\n}\n", + "body": "data: {\"id\":\"chatcmpl-BhcF7cn4u4dqXhEvUwu8ApwSlsIp2\",\"object\":\"chat.completion.chunk\",\"created\":1749734809,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_a288987b44\",\"choices\":[{\"index\":0,\"delta\":{\"role\":\"assistant\",\"content\":null,\"tool_calls\":[{\"index\":0,\"id\":\"call_JkedmFHf70ZQaLdKYPJB1yTM\",\"type\":\"function\",\"function\":{\"name\":\"json\",\"arguments\":\"\"}}],\"refusal\":null},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BhcF7cn4u4dqXhEvUwu8ApwSlsIp2\",\"object\":\"chat.completion.chunk\",\"created\":1749734809,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_a288987b44\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"{\\\"\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BhcF7cn4u4dqXhEvUwu8ApwSlsIp2\",\"object\":\"chat.completion.chunk\",\"created\":1749734809,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_a288987b44\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"operations\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BhcF7cn4u4dqXhEvUwu8ApwSlsIp2\",\"object\":\"chat.completion.chunk\",\"created\":1749734809,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_a288987b44\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"\\\":[\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BhcF7cn4u4dqXhEvUwu8ApwSlsIp2\",\"object\":\"chat.completion.chunk\",\"created\":1749734809,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_a288987b44\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"{\\\"\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BhcF7cn4u4dqXhEvUwu8ApwSlsIp2\",\"object\":\"chat.completion.chunk\",\"created\":1749734809,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_a288987b44\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"type\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BhcF7cn4u4dqXhEvUwu8ApwSlsIp2\",\"object\":\"chat.completion.chunk\",\"created\":1749734809,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_a288987b44\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"\\\":\\\"\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BhcF7cn4u4dqXhEvUwu8ApwSlsIp2\",\"object\":\"chat.completion.chunk\",\"created\":1749734809,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_a288987b44\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"update\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BhcF7cn4u4dqXhEvUwu8ApwSlsIp2\",\"object\":\"chat.completion.chunk\",\"created\":1749734809,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_a288987b44\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"\\\",\\\"\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BhcF7cn4u4dqXhEvUwu8ApwSlsIp2\",\"object\":\"chat.completion.chunk\",\"created\":1749734809,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_a288987b44\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"id\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BhcF7cn4u4dqXhEvUwu8ApwSlsIp2\",\"object\":\"chat.completion.chunk\",\"created\":1749734809,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_a288987b44\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"\\\":\\\"\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BhcF7cn4u4dqXhEvUwu8ApwSlsIp2\",\"object\":\"chat.completion.chunk\",\"created\":1749734809,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_a288987b44\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"ref\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BhcF7cn4u4dqXhEvUwu8ApwSlsIp2\",\"object\":\"chat.completion.chunk\",\"created\":1749734809,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_a288987b44\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"2\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BhcF7cn4u4dqXhEvUwu8ApwSlsIp2\",\"object\":\"chat.completion.chunk\",\"created\":1749734809,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_a288987b44\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"$\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BhcF7cn4u4dqXhEvUwu8ApwSlsIp2\",\"object\":\"chat.completion.chunk\",\"created\":1749734809,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_a288987b44\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"\\\",\\\"\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BhcF7cn4u4dqXhEvUwu8ApwSlsIp2\",\"object\":\"chat.completion.chunk\",\"created\":1749734809,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_a288987b44\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"block\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BhcF7cn4u4dqXhEvUwu8ApwSlsIp2\",\"object\":\"chat.completion.chunk\",\"created\":1749734809,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_a288987b44\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"\\\":{\\\"\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BhcF7cn4u4dqXhEvUwu8ApwSlsIp2\",\"object\":\"chat.completion.chunk\",\"created\":1749734809,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_a288987b44\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"type\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BhcF7cn4u4dqXhEvUwu8ApwSlsIp2\",\"object\":\"chat.completion.chunk\",\"created\":1749734809,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_a288987b44\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"\\\":\\\"\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BhcF7cn4u4dqXhEvUwu8ApwSlsIp2\",\"object\":\"chat.completion.chunk\",\"created\":1749734809,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_a288987b44\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"paragraph\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BhcF7cn4u4dqXhEvUwu8ApwSlsIp2\",\"object\":\"chat.completion.chunk\",\"created\":1749734809,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_a288987b44\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"\\\",\\\"\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BhcF7cn4u4dqXhEvUwu8ApwSlsIp2\",\"object\":\"chat.completion.chunk\",\"created\":1749734809,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_a288987b44\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"content\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BhcF7cn4u4dqXhEvUwu8ApwSlsIp2\",\"object\":\"chat.completion.chunk\",\"created\":1749734809,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_a288987b44\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"\\\":[\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BhcF7cn4u4dqXhEvUwu8ApwSlsIp2\",\"object\":\"chat.completion.chunk\",\"created\":1749734809,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_a288987b44\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"{\\\"\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BhcF7cn4u4dqXhEvUwu8ApwSlsIp2\",\"object\":\"chat.completion.chunk\",\"created\":1749734809,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_a288987b44\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"type\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BhcF7cn4u4dqXhEvUwu8ApwSlsIp2\",\"object\":\"chat.completion.chunk\",\"created\":1749734809,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_a288987b44\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"\\\":\\\"\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BhcF7cn4u4dqXhEvUwu8ApwSlsIp2\",\"object\":\"chat.completion.chunk\",\"created\":1749734809,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_a288987b44\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"text\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BhcF7cn4u4dqXhEvUwu8ApwSlsIp2\",\"object\":\"chat.completion.chunk\",\"created\":1749734809,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_a288987b44\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"\\\",\\\"\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BhcF7cn4u4dqXhEvUwu8ApwSlsIp2\",\"object\":\"chat.completion.chunk\",\"created\":1749734809,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_a288987b44\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"text\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BhcF7cn4u4dqXhEvUwu8ApwSlsIp2\",\"object\":\"chat.completion.chunk\",\"created\":1749734809,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_a288987b44\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"\\\":\\\"\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BhcF7cn4u4dqXhEvUwu8ApwSlsIp2\",\"object\":\"chat.completion.chunk\",\"created\":1749734809,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_a288987b44\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"Hello\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BhcF7cn4u4dqXhEvUwu8ApwSlsIp2\",\"object\":\"chat.completion.chunk\",\"created\":1749734809,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_a288987b44\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\",\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BhcF7cn4u4dqXhEvUwu8ApwSlsIp2\",\"object\":\"chat.completion.chunk\",\"created\":1749734809,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_a288987b44\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\" updated\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BhcF7cn4u4dqXhEvUwu8ApwSlsIp2\",\"object\":\"chat.completion.chunk\",\"created\":1749734809,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_a288987b44\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\" content\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BhcF7cn4u4dqXhEvUwu8ApwSlsIp2\",\"object\":\"chat.completion.chunk\",\"created\":1749734809,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_a288987b44\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"\\\",\\\"\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BhcF7cn4u4dqXhEvUwu8ApwSlsIp2\",\"object\":\"chat.completion.chunk\",\"created\":1749734809,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_a288987b44\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"styles\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BhcF7cn4u4dqXhEvUwu8ApwSlsIp2\",\"object\":\"chat.completion.chunk\",\"created\":1749734809,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_a288987b44\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"\\\":\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BhcF7cn4u4dqXhEvUwu8ApwSlsIp2\",\"object\":\"chat.completion.chunk\",\"created\":1749734809,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_a288987b44\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"{\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BhcF7cn4u4dqXhEvUwu8ApwSlsIp2\",\"object\":\"chat.completion.chunk\",\"created\":1749734809,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_a288987b44\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"}}\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BhcF7cn4u4dqXhEvUwu8ApwSlsIp2\",\"object\":\"chat.completion.chunk\",\"created\":1749734809,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_a288987b44\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"]\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BhcF7cn4u4dqXhEvUwu8ApwSlsIp2\",\"object\":\"chat.completion.chunk\",\"created\":1749734809,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_a288987b44\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"}}\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BhcF7cn4u4dqXhEvUwu8ApwSlsIp2\",\"object\":\"chat.completion.chunk\",\"created\":1749734809,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_a288987b44\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"]}\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BhcF7cn4u4dqXhEvUwu8ApwSlsIp2\",\"object\":\"chat.completion.chunk\",\"created\":1749734809,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_a288987b44\",\"choices\":[{\"index\":0,\"delta\":{},\"logprobs\":null,\"finish_reason\":\"stop\"}]}\n\ndata: [DONE]\n\n", "headers": [] } } \ No newline at end of file diff --git a/packages/xl-ai/src/api/formats/json/__snapshots__/json.test.ts/Update/__msw_snapshots__/openai.chat/gpt-4o-2024-08-06 (streaming)/styles + ic in source block, update mention prop_1_18ed7c60005c23092d68b0d1f73af517.json b/packages/xl-ai/src/api/formats/json/__snapshots__/json.test.ts/Update/__msw_snapshots__/openai.chat/gpt-4o-2024-08-06 (streaming)/styles + ic in source block, update mention prop_1_18ed7c60005c23092d68b0d1f73af517.json index 2671ff61be..424dd75bfb 100644 --- a/packages/xl-ai/src/api/formats/json/__snapshots__/json.test.ts/Update/__msw_snapshots__/openai.chat/gpt-4o-2024-08-06 (streaming)/styles + ic in source block, update mention prop_1_18ed7c60005c23092d68b0d1f73af517.json +++ b/packages/xl-ai/src/api/formats/json/__snapshots__/json.test.ts/Update/__msw_snapshots__/openai.chat/gpt-4o-2024-08-06 (streaming)/styles + ic in source block, update mention prop_1_18ed7c60005c23092d68b0d1f73af517.json @@ -7,9 +7,9 @@ "cookies": [] }, "response": { - "status": 429, + "status": 200, "statusText": "", - "body": "{\n \"error\": {\n \"message\": \"You exceeded your current quota, please check your plan and billing details. For more information on this error, read the docs: https://platform.openai.com/docs/guides/error-codes/api-errors.\",\n \"type\": \"insufficient_quota\",\n \"param\": null,\n \"code\": \"insufficient_quota\"\n }\n}\n", + "body": "data: {\"id\":\"chatcmpl-BhcFJHZYb0m0SuSducTFXW81yqQZM\",\"object\":\"chat.completion.chunk\",\"created\":1749734821,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_a288987b44\",\"choices\":[{\"index\":0,\"delta\":{\"role\":\"assistant\",\"content\":null,\"tool_calls\":[{\"index\":0,\"id\":\"call_AKHKoWbH9qtIzPaz8djgLtvb\",\"type\":\"function\",\"function\":{\"name\":\"json\",\"arguments\":\"\"}}],\"refusal\":null},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BhcFJHZYb0m0SuSducTFXW81yqQZM\",\"object\":\"chat.completion.chunk\",\"created\":1749734821,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_a288987b44\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"{\\\"\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BhcFJHZYb0m0SuSducTFXW81yqQZM\",\"object\":\"chat.completion.chunk\",\"created\":1749734821,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_a288987b44\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"operations\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BhcFJHZYb0m0SuSducTFXW81yqQZM\",\"object\":\"chat.completion.chunk\",\"created\":1749734821,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_a288987b44\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"\\\":[\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BhcFJHZYb0m0SuSducTFXW81yqQZM\",\"object\":\"chat.completion.chunk\",\"created\":1749734821,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_a288987b44\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"{\\\"\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BhcFJHZYb0m0SuSducTFXW81yqQZM\",\"object\":\"chat.completion.chunk\",\"created\":1749734821,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_a288987b44\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"type\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BhcFJHZYb0m0SuSducTFXW81yqQZM\",\"object\":\"chat.completion.chunk\",\"created\":1749734821,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_a288987b44\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"\\\":\\\"\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BhcFJHZYb0m0SuSducTFXW81yqQZM\",\"object\":\"chat.completion.chunk\",\"created\":1749734821,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_a288987b44\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"update\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BhcFJHZYb0m0SuSducTFXW81yqQZM\",\"object\":\"chat.completion.chunk\",\"created\":1749734821,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_a288987b44\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"\\\",\\\"\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BhcFJHZYb0m0SuSducTFXW81yqQZM\",\"object\":\"chat.completion.chunk\",\"created\":1749734821,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_a288987b44\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"id\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BhcFJHZYb0m0SuSducTFXW81yqQZM\",\"object\":\"chat.completion.chunk\",\"created\":1749734821,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_a288987b44\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"\\\":\\\"\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BhcFJHZYb0m0SuSducTFXW81yqQZM\",\"object\":\"chat.completion.chunk\",\"created\":1749734821,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_a288987b44\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"ref\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BhcFJHZYb0m0SuSducTFXW81yqQZM\",\"object\":\"chat.completion.chunk\",\"created\":1749734821,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_a288987b44\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"2\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BhcFJHZYb0m0SuSducTFXW81yqQZM\",\"object\":\"chat.completion.chunk\",\"created\":1749734821,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_a288987b44\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"$\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BhcFJHZYb0m0SuSducTFXW81yqQZM\",\"object\":\"chat.completion.chunk\",\"created\":1749734821,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_a288987b44\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"\\\",\\\"\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BhcFJHZYb0m0SuSducTFXW81yqQZM\",\"object\":\"chat.completion.chunk\",\"created\":1749734821,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_a288987b44\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"block\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BhcFJHZYb0m0SuSducTFXW81yqQZM\",\"object\":\"chat.completion.chunk\",\"created\":1749734821,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_a288987b44\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"\\\":{\\\"\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BhcFJHZYb0m0SuSducTFXW81yqQZM\",\"object\":\"chat.completion.chunk\",\"created\":1749734821,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_a288987b44\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"type\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BhcFJHZYb0m0SuSducTFXW81yqQZM\",\"object\":\"chat.completion.chunk\",\"created\":1749734821,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_a288987b44\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"\\\":\\\"\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BhcFJHZYb0m0SuSducTFXW81yqQZM\",\"object\":\"chat.completion.chunk\",\"created\":1749734821,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_a288987b44\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"paragraph\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BhcFJHZYb0m0SuSducTFXW81yqQZM\",\"object\":\"chat.completion.chunk\",\"created\":1749734821,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_a288987b44\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"\\\",\\\"\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BhcFJHZYb0m0SuSducTFXW81yqQZM\",\"object\":\"chat.completion.chunk\",\"created\":1749734821,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_a288987b44\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"props\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BhcFJHZYb0m0SuSducTFXW81yqQZM\",\"object\":\"chat.completion.chunk\",\"created\":1749734821,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_a288987b44\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"\\\":{\\\"\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BhcFJHZYb0m0SuSducTFXW81yqQZM\",\"object\":\"chat.completion.chunk\",\"created\":1749734821,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_a288987b44\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"text\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BhcFJHZYb0m0SuSducTFXW81yqQZM\",\"object\":\"chat.completion.chunk\",\"created\":1749734821,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_a288987b44\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"Color\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BhcFJHZYb0m0SuSducTFXW81yqQZM\",\"object\":\"chat.completion.chunk\",\"created\":1749734821,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_a288987b44\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"\\\":\\\"\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BhcFJHZYb0m0SuSducTFXW81yqQZM\",\"object\":\"chat.completion.chunk\",\"created\":1749734821,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_a288987b44\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"default\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BhcFJHZYb0m0SuSducTFXW81yqQZM\",\"object\":\"chat.completion.chunk\",\"created\":1749734821,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_a288987b44\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"\\\",\\\"\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BhcFJHZYb0m0SuSducTFXW81yqQZM\",\"object\":\"chat.completion.chunk\",\"created\":1749734821,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_a288987b44\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"background\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BhcFJHZYb0m0SuSducTFXW81yqQZM\",\"object\":\"chat.completion.chunk\",\"created\":1749734821,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_a288987b44\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"Color\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BhcFJHZYb0m0SuSducTFXW81yqQZM\",\"object\":\"chat.completion.chunk\",\"created\":1749734821,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_a288987b44\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"\\\":\\\"\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BhcFJHZYb0m0SuSducTFXW81yqQZM\",\"object\":\"chat.completion.chunk\",\"created\":1749734821,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_a288987b44\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"default\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BhcFJHZYb0m0SuSducTFXW81yqQZM\",\"object\":\"chat.completion.chunk\",\"created\":1749734821,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_a288987b44\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"\\\",\\\"\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BhcFJHZYb0m0SuSducTFXW81yqQZM\",\"object\":\"chat.completion.chunk\",\"created\":1749734821,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_a288987b44\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"text\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BhcFJHZYb0m0SuSducTFXW81yqQZM\",\"object\":\"chat.completion.chunk\",\"created\":1749734821,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_a288987b44\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"Alignment\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BhcFJHZYb0m0SuSducTFXW81yqQZM\",\"object\":\"chat.completion.chunk\",\"created\":1749734821,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_a288987b44\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"\\\":\\\"\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BhcFJHZYb0m0SuSducTFXW81yqQZM\",\"object\":\"chat.completion.chunk\",\"created\":1749734821,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_a288987b44\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"left\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BhcFJHZYb0m0SuSducTFXW81yqQZM\",\"object\":\"chat.completion.chunk\",\"created\":1749734821,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_a288987b44\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"\\\"}\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BhcFJHZYb0m0SuSducTFXW81yqQZM\",\"object\":\"chat.completion.chunk\",\"created\":1749734821,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_a288987b44\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\",\\\"\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BhcFJHZYb0m0SuSducTFXW81yqQZM\",\"object\":\"chat.completion.chunk\",\"created\":1749734821,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_a288987b44\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"content\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BhcFJHZYb0m0SuSducTFXW81yqQZM\",\"object\":\"chat.completion.chunk\",\"created\":1749734821,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_a288987b44\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"\\\":[\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BhcFJHZYb0m0SuSducTFXW81yqQZM\",\"object\":\"chat.completion.chunk\",\"created\":1749734821,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_a288987b44\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"{\\\"\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BhcFJHZYb0m0SuSducTFXW81yqQZM\",\"object\":\"chat.completion.chunk\",\"created\":1749734821,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_a288987b44\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"type\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BhcFJHZYb0m0SuSducTFXW81yqQZM\",\"object\":\"chat.completion.chunk\",\"created\":1749734821,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_a288987b44\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"\\\":\\\"\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BhcFJHZYb0m0SuSducTFXW81yqQZM\",\"object\":\"chat.completion.chunk\",\"created\":1749734821,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_a288987b44\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"text\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BhcFJHZYb0m0SuSducTFXW81yqQZM\",\"object\":\"chat.completion.chunk\",\"created\":1749734821,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_a288987b44\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"\\\",\\\"\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BhcFJHZYb0m0SuSducTFXW81yqQZM\",\"object\":\"chat.completion.chunk\",\"created\":1749734821,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_a288987b44\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"text\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BhcFJHZYb0m0SuSducTFXW81yqQZM\",\"object\":\"chat.completion.chunk\",\"created\":1749734821,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_a288987b44\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"\\\":\\\"\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BhcFJHZYb0m0SuSducTFXW81yqQZM\",\"object\":\"chat.completion.chunk\",\"created\":1749734821,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_a288987b44\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"Hello\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BhcFJHZYb0m0SuSducTFXW81yqQZM\",\"object\":\"chat.completion.chunk\",\"created\":1749734821,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_a288987b44\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\",\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BhcFJHZYb0m0SuSducTFXW81yqQZM\",\"object\":\"chat.completion.chunk\",\"created\":1749734821,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_a288987b44\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\" \\\",\\\"\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BhcFJHZYb0m0SuSducTFXW81yqQZM\",\"object\":\"chat.completion.chunk\",\"created\":1749734821,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_a288987b44\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"styles\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BhcFJHZYb0m0SuSducTFXW81yqQZM\",\"object\":\"chat.completion.chunk\",\"created\":1749734821,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_a288987b44\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"\\\":\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BhcFJHZYb0m0SuSducTFXW81yqQZM\",\"object\":\"chat.completion.chunk\",\"created\":1749734821,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_a288987b44\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"{}\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BhcFJHZYb0m0SuSducTFXW81yqQZM\",\"object\":\"chat.completion.chunk\",\"created\":1749734821,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_a288987b44\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"},{\\\"\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BhcFJHZYb0m0SuSducTFXW81yqQZM\",\"object\":\"chat.completion.chunk\",\"created\":1749734821,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_a288987b44\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"type\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BhcFJHZYb0m0SuSducTFXW81yqQZM\",\"object\":\"chat.completion.chunk\",\"created\":1749734821,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_a288987b44\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"\\\":\\\"\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BhcFJHZYb0m0SuSducTFXW81yqQZM\",\"object\":\"chat.completion.chunk\",\"created\":1749734821,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_a288987b44\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"mention\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BhcFJHZYb0m0SuSducTFXW81yqQZM\",\"object\":\"chat.completion.chunk\",\"created\":1749734821,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_a288987b44\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"\\\",\\\"\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BhcFJHZYb0m0SuSducTFXW81yqQZM\",\"object\":\"chat.completion.chunk\",\"created\":1749734821,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_a288987b44\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"props\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BhcFJHZYb0m0SuSducTFXW81yqQZM\",\"object\":\"chat.completion.chunk\",\"created\":1749734821,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_a288987b44\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"\\\":{\\\"\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BhcFJHZYb0m0SuSducTFXW81yqQZM\",\"object\":\"chat.completion.chunk\",\"created\":1749734821,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_a288987b44\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"user\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BhcFJHZYb0m0SuSducTFXW81yqQZM\",\"object\":\"chat.completion.chunk\",\"created\":1749734821,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_a288987b44\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"\\\":\\\"\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BhcFJHZYb0m0SuSducTFXW81yqQZM\",\"object\":\"chat.completion.chunk\",\"created\":1749734821,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_a288987b44\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"Jane\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BhcFJHZYb0m0SuSducTFXW81yqQZM\",\"object\":\"chat.completion.chunk\",\"created\":1749734821,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_a288987b44\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\" Doe\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BhcFJHZYb0m0SuSducTFXW81yqQZM\",\"object\":\"chat.completion.chunk\",\"created\":1749734821,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_a288987b44\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"\\\"}\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BhcFJHZYb0m0SuSducTFXW81yqQZM\",\"object\":\"chat.completion.chunk\",\"created\":1749734821,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_a288987b44\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"},{\\\"\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BhcFJHZYb0m0SuSducTFXW81yqQZM\",\"object\":\"chat.completion.chunk\",\"created\":1749734821,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_a288987b44\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"type\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BhcFJHZYb0m0SuSducTFXW81yqQZM\",\"object\":\"chat.completion.chunk\",\"created\":1749734821,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_a288987b44\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"\\\":\\\"\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BhcFJHZYb0m0SuSducTFXW81yqQZM\",\"object\":\"chat.completion.chunk\",\"created\":1749734821,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_a288987b44\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"text\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BhcFJHZYb0m0SuSducTFXW81yqQZM\",\"object\":\"chat.completion.chunk\",\"created\":1749734821,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_a288987b44\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"\\\",\\\"\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BhcFJHZYb0m0SuSducTFXW81yqQZM\",\"object\":\"chat.completion.chunk\",\"created\":1749734821,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_a288987b44\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"text\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BhcFJHZYb0m0SuSducTFXW81yqQZM\",\"object\":\"chat.completion.chunk\",\"created\":1749734821,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_a288987b44\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"\\\":\\\"\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BhcFJHZYb0m0SuSducTFXW81yqQZM\",\"object\":\"chat.completion.chunk\",\"created\":1749734821,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_a288987b44\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"!\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BhcFJHZYb0m0SuSducTFXW81yqQZM\",\"object\":\"chat.completion.chunk\",\"created\":1749734821,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_a288987b44\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\" \\\",\\\"\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BhcFJHZYb0m0SuSducTFXW81yqQZM\",\"object\":\"chat.completion.chunk\",\"created\":1749734821,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_a288987b44\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"styles\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BhcFJHZYb0m0SuSducTFXW81yqQZM\",\"object\":\"chat.completion.chunk\",\"created\":1749734821,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_a288987b44\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"\\\":\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BhcFJHZYb0m0SuSducTFXW81yqQZM\",\"object\":\"chat.completion.chunk\",\"created\":1749734821,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_a288987b44\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"{}\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BhcFJHZYb0m0SuSducTFXW81yqQZM\",\"object\":\"chat.completion.chunk\",\"created\":1749734821,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_a288987b44\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"},{\\\"\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BhcFJHZYb0m0SuSducTFXW81yqQZM\",\"object\":\"chat.completion.chunk\",\"created\":1749734821,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_a288987b44\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"type\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BhcFJHZYb0m0SuSducTFXW81yqQZM\",\"object\":\"chat.completion.chunk\",\"created\":1749734821,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_a288987b44\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"\\\":\\\"\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BhcFJHZYb0m0SuSducTFXW81yqQZM\",\"object\":\"chat.completion.chunk\",\"created\":1749734821,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_a288987b44\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"text\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BhcFJHZYb0m0SuSducTFXW81yqQZM\",\"object\":\"chat.completion.chunk\",\"created\":1749734821,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_a288987b44\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"\\\",\\\"\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BhcFJHZYb0m0SuSducTFXW81yqQZM\",\"object\":\"chat.completion.chunk\",\"created\":1749734821,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_a288987b44\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"text\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BhcFJHZYb0m0SuSducTFXW81yqQZM\",\"object\":\"chat.completion.chunk\",\"created\":1749734821,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_a288987b44\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"\\\":\\\"\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BhcFJHZYb0m0SuSducTFXW81yqQZM\",\"object\":\"chat.completion.chunk\",\"created\":1749734821,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_a288987b44\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"How\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BhcFJHZYb0m0SuSducTFXW81yqQZM\",\"object\":\"chat.completion.chunk\",\"created\":1749734821,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_a288987b44\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\" are\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BhcFJHZYb0m0SuSducTFXW81yqQZM\",\"object\":\"chat.completion.chunk\",\"created\":1749734821,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_a288987b44\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\" you\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BhcFJHZYb0m0SuSducTFXW81yqQZM\",\"object\":\"chat.completion.chunk\",\"created\":1749734821,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_a288987b44\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\" doing\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BhcFJHZYb0m0SuSducTFXW81yqQZM\",\"object\":\"chat.completion.chunk\",\"created\":1749734821,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_a288987b44\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"?\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BhcFJHZYb0m0SuSducTFXW81yqQZM\",\"object\":\"chat.completion.chunk\",\"created\":1749734821,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_a288987b44\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"\\\",\\\"\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BhcFJHZYb0m0SuSducTFXW81yqQZM\",\"object\":\"chat.completion.chunk\",\"created\":1749734821,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_a288987b44\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"styles\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BhcFJHZYb0m0SuSducTFXW81yqQZM\",\"object\":\"chat.completion.chunk\",\"created\":1749734821,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_a288987b44\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"\\\":{\\\"\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BhcFJHZYb0m0SuSducTFXW81yqQZM\",\"object\":\"chat.completion.chunk\",\"created\":1749734821,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_a288987b44\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"bold\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BhcFJHZYb0m0SuSducTFXW81yqQZM\",\"object\":\"chat.completion.chunk\",\"created\":1749734821,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_a288987b44\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"\\\":\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BhcFJHZYb0m0SuSducTFXW81yqQZM\",\"object\":\"chat.completion.chunk\",\"created\":1749734821,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_a288987b44\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"true\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BhcFJHZYb0m0SuSducTFXW81yqQZM\",\"object\":\"chat.completion.chunk\",\"created\":1749734821,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_a288987b44\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"}},\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BhcFJHZYb0m0SuSducTFXW81yqQZM\",\"object\":\"chat.completion.chunk\",\"created\":1749734821,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_a288987b44\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"{\\\"\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BhcFJHZYb0m0SuSducTFXW81yqQZM\",\"object\":\"chat.completion.chunk\",\"created\":1749734821,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_a288987b44\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"type\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BhcFJHZYb0m0SuSducTFXW81yqQZM\",\"object\":\"chat.completion.chunk\",\"created\":1749734821,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_a288987b44\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"\\\":\\\"\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BhcFJHZYb0m0SuSducTFXW81yqQZM\",\"object\":\"chat.completion.chunk\",\"created\":1749734821,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_a288987b44\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"text\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BhcFJHZYb0m0SuSducTFXW81yqQZM\",\"object\":\"chat.completion.chunk\",\"created\":1749734821,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_a288987b44\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"\\\",\\\"\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BhcFJHZYb0m0SuSducTFXW81yqQZM\",\"object\":\"chat.completion.chunk\",\"created\":1749734821,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_a288987b44\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"text\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BhcFJHZYb0m0SuSducTFXW81yqQZM\",\"object\":\"chat.completion.chunk\",\"created\":1749734821,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_a288987b44\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"\\\":\\\"\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BhcFJHZYb0m0SuSducTFXW81yqQZM\",\"object\":\"chat.completion.chunk\",\"created\":1749734821,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_a288987b44\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\" \\\",\\\"\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BhcFJHZYb0m0SuSducTFXW81yqQZM\",\"object\":\"chat.completion.chunk\",\"created\":1749734821,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_a288987b44\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"styles\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BhcFJHZYb0m0SuSducTFXW81yqQZM\",\"object\":\"chat.completion.chunk\",\"created\":1749734821,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_a288987b44\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"\\\":\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BhcFJHZYb0m0SuSducTFXW81yqQZM\",\"object\":\"chat.completion.chunk\",\"created\":1749734821,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_a288987b44\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"{}\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BhcFJHZYb0m0SuSducTFXW81yqQZM\",\"object\":\"chat.completion.chunk\",\"created\":1749734821,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_a288987b44\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"},{\\\"\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BhcFJHZYb0m0SuSducTFXW81yqQZM\",\"object\":\"chat.completion.chunk\",\"created\":1749734821,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_a288987b44\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"type\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BhcFJHZYb0m0SuSducTFXW81yqQZM\",\"object\":\"chat.completion.chunk\",\"created\":1749734821,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_a288987b44\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"\\\":\\\"\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BhcFJHZYb0m0SuSducTFXW81yqQZM\",\"object\":\"chat.completion.chunk\",\"created\":1749734821,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_a288987b44\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"text\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BhcFJHZYb0m0SuSducTFXW81yqQZM\",\"object\":\"chat.completion.chunk\",\"created\":1749734821,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_a288987b44\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"\\\",\\\"\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BhcFJHZYb0m0SuSducTFXW81yqQZM\",\"object\":\"chat.completion.chunk\",\"created\":1749734821,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_a288987b44\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"text\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BhcFJHZYb0m0SuSducTFXW81yqQZM\",\"object\":\"chat.completion.chunk\",\"created\":1749734821,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_a288987b44\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"\\\":\\\"\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BhcFJHZYb0m0SuSducTFXW81yqQZM\",\"object\":\"chat.completion.chunk\",\"created\":1749734821,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_a288987b44\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"This\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BhcFJHZYb0m0SuSducTFXW81yqQZM\",\"object\":\"chat.completion.chunk\",\"created\":1749734821,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_a288987b44\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\" text\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BhcFJHZYb0m0SuSducTFXW81yqQZM\",\"object\":\"chat.completion.chunk\",\"created\":1749734821,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_a288987b44\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\" is\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BhcFJHZYb0m0SuSducTFXW81yqQZM\",\"object\":\"chat.completion.chunk\",\"created\":1749734821,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_a288987b44\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\" blue\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BhcFJHZYb0m0SuSducTFXW81yqQZM\",\"object\":\"chat.completion.chunk\",\"created\":1749734821,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_a288987b44\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"!\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BhcFJHZYb0m0SuSducTFXW81yqQZM\",\"object\":\"chat.completion.chunk\",\"created\":1749734821,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_a288987b44\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"\\\",\\\"\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BhcFJHZYb0m0SuSducTFXW81yqQZM\",\"object\":\"chat.completion.chunk\",\"created\":1749734821,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_a288987b44\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"styles\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BhcFJHZYb0m0SuSducTFXW81yqQZM\",\"object\":\"chat.completion.chunk\",\"created\":1749734821,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_a288987b44\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"\\\":{\\\"\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BhcFJHZYb0m0SuSducTFXW81yqQZM\",\"object\":\"chat.completion.chunk\",\"created\":1749734821,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_a288987b44\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"text\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BhcFJHZYb0m0SuSducTFXW81yqQZM\",\"object\":\"chat.completion.chunk\",\"created\":1749734821,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_a288987b44\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"Color\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BhcFJHZYb0m0SuSducTFXW81yqQZM\",\"object\":\"chat.completion.chunk\",\"created\":1749734821,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_a288987b44\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"\\\":\\\"\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BhcFJHZYb0m0SuSducTFXW81yqQZM\",\"object\":\"chat.completion.chunk\",\"created\":1749734821,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_a288987b44\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"blue\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BhcFJHZYb0m0SuSducTFXW81yqQZM\",\"object\":\"chat.completion.chunk\",\"created\":1749734821,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_a288987b44\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"\\\"}}\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BhcFJHZYb0m0SuSducTFXW81yqQZM\",\"object\":\"chat.completion.chunk\",\"created\":1749734821,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_a288987b44\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"]\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BhcFJHZYb0m0SuSducTFXW81yqQZM\",\"object\":\"chat.completion.chunk\",\"created\":1749734821,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_a288987b44\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"}}\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BhcFJHZYb0m0SuSducTFXW81yqQZM\",\"object\":\"chat.completion.chunk\",\"created\":1749734821,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_a288987b44\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"]}\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BhcFJHZYb0m0SuSducTFXW81yqQZM\",\"object\":\"chat.completion.chunk\",\"created\":1749734821,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_a288987b44\",\"choices\":[{\"index\":0,\"delta\":{},\"logprobs\":null,\"finish_reason\":\"stop\"}]}\n\ndata: [DONE]\n\n", "headers": [] } } \ No newline at end of file diff --git a/packages/xl-ai/src/api/formats/json/__snapshots__/json.test.ts/Update/__msw_snapshots__/openai.chat/gpt-4o-2024-08-06 (streaming)/styles + ic in source block, update text_1_b2017bfc7ff6e6440d2459f1042a8a49.json b/packages/xl-ai/src/api/formats/json/__snapshots__/json.test.ts/Update/__msw_snapshots__/openai.chat/gpt-4o-2024-08-06 (streaming)/styles + ic in source block, update text_1_b2017bfc7ff6e6440d2459f1042a8a49.json index cc850b2723..a0b8ef3fbd 100644 --- a/packages/xl-ai/src/api/formats/json/__snapshots__/json.test.ts/Update/__msw_snapshots__/openai.chat/gpt-4o-2024-08-06 (streaming)/styles + ic in source block, update text_1_b2017bfc7ff6e6440d2459f1042a8a49.json +++ b/packages/xl-ai/src/api/formats/json/__snapshots__/json.test.ts/Update/__msw_snapshots__/openai.chat/gpt-4o-2024-08-06 (streaming)/styles + ic in source block, update text_1_b2017bfc7ff6e6440d2459f1042a8a49.json @@ -7,9 +7,9 @@ "cookies": [] }, "response": { - "status": 429, + "status": 200, "statusText": "", - "body": "{\n \"error\": {\n \"message\": \"You exceeded your current quota, please check your plan and billing details. For more information on this error, read the docs: https://platform.openai.com/docs/guides/error-codes/api-errors.\",\n \"type\": \"insufficient_quota\",\n \"param\": null,\n \"code\": \"insufficient_quota\"\n }\n}\n", + "body": "data: {\"id\":\"chatcmpl-BhcF8doDS6m88nOc6leiI0lUNIWgi\",\"object\":\"chat.completion.chunk\",\"created\":1749734810,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_a288987b44\",\"choices\":[{\"index\":0,\"delta\":{\"role\":\"assistant\",\"content\":null,\"tool_calls\":[{\"index\":0,\"id\":\"call_OYU1U4ioZvFKgtPGl0OTxruS\",\"type\":\"function\",\"function\":{\"name\":\"json\",\"arguments\":\"\"}}],\"refusal\":null},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BhcF8doDS6m88nOc6leiI0lUNIWgi\",\"object\":\"chat.completion.chunk\",\"created\":1749734810,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_a288987b44\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"{\\\"\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BhcF8doDS6m88nOc6leiI0lUNIWgi\",\"object\":\"chat.completion.chunk\",\"created\":1749734810,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_a288987b44\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"operations\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BhcF8doDS6m88nOc6leiI0lUNIWgi\",\"object\":\"chat.completion.chunk\",\"created\":1749734810,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_a288987b44\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"\\\":[\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BhcF8doDS6m88nOc6leiI0lUNIWgi\",\"object\":\"chat.completion.chunk\",\"created\":1749734810,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_a288987b44\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"{\\\"\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BhcF8doDS6m88nOc6leiI0lUNIWgi\",\"object\":\"chat.completion.chunk\",\"created\":1749734810,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_a288987b44\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"type\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BhcF8doDS6m88nOc6leiI0lUNIWgi\",\"object\":\"chat.completion.chunk\",\"created\":1749734810,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_a288987b44\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"\\\":\\\"\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BhcF8doDS6m88nOc6leiI0lUNIWgi\",\"object\":\"chat.completion.chunk\",\"created\":1749734810,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_a288987b44\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"update\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BhcF8doDS6m88nOc6leiI0lUNIWgi\",\"object\":\"chat.completion.chunk\",\"created\":1749734810,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_a288987b44\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"\\\",\\\"\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BhcF8doDS6m88nOc6leiI0lUNIWgi\",\"object\":\"chat.completion.chunk\",\"created\":1749734810,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_a288987b44\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"id\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BhcF8doDS6m88nOc6leiI0lUNIWgi\",\"object\":\"chat.completion.chunk\",\"created\":1749734810,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_a288987b44\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"\\\":\\\"\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BhcF8doDS6m88nOc6leiI0lUNIWgi\",\"object\":\"chat.completion.chunk\",\"created\":1749734810,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_a288987b44\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"ref\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BhcF8doDS6m88nOc6leiI0lUNIWgi\",\"object\":\"chat.completion.chunk\",\"created\":1749734810,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_a288987b44\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"2\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BhcF8doDS6m88nOc6leiI0lUNIWgi\",\"object\":\"chat.completion.chunk\",\"created\":1749734810,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_a288987b44\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"$\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BhcF8doDS6m88nOc6leiI0lUNIWgi\",\"object\":\"chat.completion.chunk\",\"created\":1749734810,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_a288987b44\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"\\\",\\\"\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BhcF8doDS6m88nOc6leiI0lUNIWgi\",\"object\":\"chat.completion.chunk\",\"created\":1749734810,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_a288987b44\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"block\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BhcF8doDS6m88nOc6leiI0lUNIWgi\",\"object\":\"chat.completion.chunk\",\"created\":1749734810,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_a288987b44\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"\\\":{\\\"\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BhcF8doDS6m88nOc6leiI0lUNIWgi\",\"object\":\"chat.completion.chunk\",\"created\":1749734810,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_a288987b44\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"type\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BhcF8doDS6m88nOc6leiI0lUNIWgi\",\"object\":\"chat.completion.chunk\",\"created\":1749734810,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_a288987b44\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"\\\":\\\"\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BhcF8doDS6m88nOc6leiI0lUNIWgi\",\"object\":\"chat.completion.chunk\",\"created\":1749734810,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_a288987b44\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"paragraph\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BhcF8doDS6m88nOc6leiI0lUNIWgi\",\"object\":\"chat.completion.chunk\",\"created\":1749734810,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_a288987b44\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"\\\",\\\"\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BhcF8doDS6m88nOc6leiI0lUNIWgi\",\"object\":\"chat.completion.chunk\",\"created\":1749734810,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_a288987b44\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"content\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BhcF8doDS6m88nOc6leiI0lUNIWgi\",\"object\":\"chat.completion.chunk\",\"created\":1749734810,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_a288987b44\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"\\\":[\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BhcF8doDS6m88nOc6leiI0lUNIWgi\",\"object\":\"chat.completion.chunk\",\"created\":1749734810,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_a288987b44\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"{\\\"\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BhcF8doDS6m88nOc6leiI0lUNIWgi\",\"object\":\"chat.completion.chunk\",\"created\":1749734810,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_a288987b44\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"type\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BhcF8doDS6m88nOc6leiI0lUNIWgi\",\"object\":\"chat.completion.chunk\",\"created\":1749734810,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_a288987b44\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"\\\":\\\"\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BhcF8doDS6m88nOc6leiI0lUNIWgi\",\"object\":\"chat.completion.chunk\",\"created\":1749734810,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_a288987b44\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"text\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BhcF8doDS6m88nOc6leiI0lUNIWgi\",\"object\":\"chat.completion.chunk\",\"created\":1749734810,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_a288987b44\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"\\\",\\\"\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BhcF8doDS6m88nOc6leiI0lUNIWgi\",\"object\":\"chat.completion.chunk\",\"created\":1749734810,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_a288987b44\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"text\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BhcF8doDS6m88nOc6leiI0lUNIWgi\",\"object\":\"chat.completion.chunk\",\"created\":1749734810,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_a288987b44\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"\\\":\\\"\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BhcF8doDS6m88nOc6leiI0lUNIWgi\",\"object\":\"chat.completion.chunk\",\"created\":1749734810,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_a288987b44\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"Hallo\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BhcF8doDS6m88nOc6leiI0lUNIWgi\",\"object\":\"chat.completion.chunk\",\"created\":1749734810,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_a288987b44\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\",\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BhcF8doDS6m88nOc6leiI0lUNIWgi\",\"object\":\"chat.completion.chunk\",\"created\":1749734810,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_a288987b44\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\" \\\",\\\"\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BhcF8doDS6m88nOc6leiI0lUNIWgi\",\"object\":\"chat.completion.chunk\",\"created\":1749734810,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_a288987b44\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"styles\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BhcF8doDS6m88nOc6leiI0lUNIWgi\",\"object\":\"chat.completion.chunk\",\"created\":1749734810,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_a288987b44\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"\\\":\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BhcF8doDS6m88nOc6leiI0lUNIWgi\",\"object\":\"chat.completion.chunk\",\"created\":1749734810,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_a288987b44\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"{}\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BhcF8doDS6m88nOc6leiI0lUNIWgi\",\"object\":\"chat.completion.chunk\",\"created\":1749734810,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_a288987b44\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"},{\\\"\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BhcF8doDS6m88nOc6leiI0lUNIWgi\",\"object\":\"chat.completion.chunk\",\"created\":1749734810,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_a288987b44\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"type\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BhcF8doDS6m88nOc6leiI0lUNIWgi\",\"object\":\"chat.completion.chunk\",\"created\":1749734810,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_a288987b44\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"\\\":\\\"\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BhcF8doDS6m88nOc6leiI0lUNIWgi\",\"object\":\"chat.completion.chunk\",\"created\":1749734810,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_a288987b44\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"mention\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BhcF8doDS6m88nOc6leiI0lUNIWgi\",\"object\":\"chat.completion.chunk\",\"created\":1749734810,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_a288987b44\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"\\\",\\\"\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BhcF8doDS6m88nOc6leiI0lUNIWgi\",\"object\":\"chat.completion.chunk\",\"created\":1749734810,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_a288987b44\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"props\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BhcF8doDS6m88nOc6leiI0lUNIWgi\",\"object\":\"chat.completion.chunk\",\"created\":1749734810,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_a288987b44\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"\\\":{\\\"\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BhcF8doDS6m88nOc6leiI0lUNIWgi\",\"object\":\"chat.completion.chunk\",\"created\":1749734810,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_a288987b44\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"user\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BhcF8doDS6m88nOc6leiI0lUNIWgi\",\"object\":\"chat.completion.chunk\",\"created\":1749734810,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_a288987b44\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"\\\":\\\"\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BhcF8doDS6m88nOc6leiI0lUNIWgi\",\"object\":\"chat.completion.chunk\",\"created\":1749734810,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_a288987b44\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"John\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BhcF8doDS6m88nOc6leiI0lUNIWgi\",\"object\":\"chat.completion.chunk\",\"created\":1749734810,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_a288987b44\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\" Doe\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BhcF8doDS6m88nOc6leiI0lUNIWgi\",\"object\":\"chat.completion.chunk\",\"created\":1749734810,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_a288987b44\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"\\\"}\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BhcF8doDS6m88nOc6leiI0lUNIWgi\",\"object\":\"chat.completion.chunk\",\"created\":1749734810,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_a288987b44\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"},{\\\"\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BhcF8doDS6m88nOc6leiI0lUNIWgi\",\"object\":\"chat.completion.chunk\",\"created\":1749734810,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_a288987b44\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"type\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BhcF8doDS6m88nOc6leiI0lUNIWgi\",\"object\":\"chat.completion.chunk\",\"created\":1749734810,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_a288987b44\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"\\\":\\\"\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BhcF8doDS6m88nOc6leiI0lUNIWgi\",\"object\":\"chat.completion.chunk\",\"created\":1749734810,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_a288987b44\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"text\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BhcF8doDS6m88nOc6leiI0lUNIWgi\",\"object\":\"chat.completion.chunk\",\"created\":1749734810,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_a288987b44\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"\\\",\\\"\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BhcF8doDS6m88nOc6leiI0lUNIWgi\",\"object\":\"chat.completion.chunk\",\"created\":1749734810,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_a288987b44\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"text\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BhcF8doDS6m88nOc6leiI0lUNIWgi\",\"object\":\"chat.completion.chunk\",\"created\":1749734810,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_a288987b44\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"\\\":\\\"\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BhcF8doDS6m88nOc6leiI0lUNIWgi\",\"object\":\"chat.completion.chunk\",\"created\":1749734810,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_a288987b44\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"!\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BhcF8doDS6m88nOc6leiI0lUNIWgi\",\"object\":\"chat.completion.chunk\",\"created\":1749734810,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_a288987b44\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\" \\\",\\\"\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BhcF8doDS6m88nOc6leiI0lUNIWgi\",\"object\":\"chat.completion.chunk\",\"created\":1749734810,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_a288987b44\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"styles\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BhcF8doDS6m88nOc6leiI0lUNIWgi\",\"object\":\"chat.completion.chunk\",\"created\":1749734810,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_a288987b44\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"\\\":\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BhcF8doDS6m88nOc6leiI0lUNIWgi\",\"object\":\"chat.completion.chunk\",\"created\":1749734810,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_a288987b44\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"{}\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BhcF8doDS6m88nOc6leiI0lUNIWgi\",\"object\":\"chat.completion.chunk\",\"created\":1749734810,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_a288987b44\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"},{\\\"\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BhcF8doDS6m88nOc6leiI0lUNIWgi\",\"object\":\"chat.completion.chunk\",\"created\":1749734810,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_a288987b44\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"type\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BhcF8doDS6m88nOc6leiI0lUNIWgi\",\"object\":\"chat.completion.chunk\",\"created\":1749734810,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_a288987b44\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"\\\":\\\"\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BhcF8doDS6m88nOc6leiI0lUNIWgi\",\"object\":\"chat.completion.chunk\",\"created\":1749734810,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_a288987b44\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"text\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BhcF8doDS6m88nOc6leiI0lUNIWgi\",\"object\":\"chat.completion.chunk\",\"created\":1749734810,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_a288987b44\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"\\\",\\\"\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BhcF8doDS6m88nOc6leiI0lUNIWgi\",\"object\":\"chat.completion.chunk\",\"created\":1749734810,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_a288987b44\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"text\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BhcF8doDS6m88nOc6leiI0lUNIWgi\",\"object\":\"chat.completion.chunk\",\"created\":1749734810,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_a288987b44\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"\\\":\\\"\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BhcF8doDS6m88nOc6leiI0lUNIWgi\",\"object\":\"chat.completion.chunk\",\"created\":1749734810,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_a288987b44\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"Wie\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BhcF8doDS6m88nOc6leiI0lUNIWgi\",\"object\":\"chat.completion.chunk\",\"created\":1749734810,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_a288987b44\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\" geht\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BhcF8doDS6m88nOc6leiI0lUNIWgi\",\"object\":\"chat.completion.chunk\",\"created\":1749734810,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_a288987b44\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\" es\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BhcF8doDS6m88nOc6leiI0lUNIWgi\",\"object\":\"chat.completion.chunk\",\"created\":1749734810,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_a288987b44\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\" dir\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BhcF8doDS6m88nOc6leiI0lUNIWgi\",\"object\":\"chat.completion.chunk\",\"created\":1749734810,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_a288987b44\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"?\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BhcF8doDS6m88nOc6leiI0lUNIWgi\",\"object\":\"chat.completion.chunk\",\"created\":1749734810,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_a288987b44\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"\\\",\\\"\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BhcF8doDS6m88nOc6leiI0lUNIWgi\",\"object\":\"chat.completion.chunk\",\"created\":1749734810,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_a288987b44\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"styles\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BhcF8doDS6m88nOc6leiI0lUNIWgi\",\"object\":\"chat.completion.chunk\",\"created\":1749734810,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_a288987b44\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"\\\":{\\\"\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BhcF8doDS6m88nOc6leiI0lUNIWgi\",\"object\":\"chat.completion.chunk\",\"created\":1749734810,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_a288987b44\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"bold\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BhcF8doDS6m88nOc6leiI0lUNIWgi\",\"object\":\"chat.completion.chunk\",\"created\":1749734810,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_a288987b44\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"\\\":\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BhcF8doDS6m88nOc6leiI0lUNIWgi\",\"object\":\"chat.completion.chunk\",\"created\":1749734810,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_a288987b44\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"true\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BhcF8doDS6m88nOc6leiI0lUNIWgi\",\"object\":\"chat.completion.chunk\",\"created\":1749734810,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_a288987b44\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"}},\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BhcF8doDS6m88nOc6leiI0lUNIWgi\",\"object\":\"chat.completion.chunk\",\"created\":1749734810,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_a288987b44\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"{\\\"\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BhcF8doDS6m88nOc6leiI0lUNIWgi\",\"object\":\"chat.completion.chunk\",\"created\":1749734810,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_a288987b44\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"type\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BhcF8doDS6m88nOc6leiI0lUNIWgi\",\"object\":\"chat.completion.chunk\",\"created\":1749734810,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_a288987b44\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"\\\":\\\"\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BhcF8doDS6m88nOc6leiI0lUNIWgi\",\"object\":\"chat.completion.chunk\",\"created\":1749734810,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_a288987b44\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"text\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BhcF8doDS6m88nOc6leiI0lUNIWgi\",\"object\":\"chat.completion.chunk\",\"created\":1749734810,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_a288987b44\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"\\\",\\\"\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BhcF8doDS6m88nOc6leiI0lUNIWgi\",\"object\":\"chat.completion.chunk\",\"created\":1749734810,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_a288987b44\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"text\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BhcF8doDS6m88nOc6leiI0lUNIWgi\",\"object\":\"chat.completion.chunk\",\"created\":1749734810,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_a288987b44\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"\\\":\\\"\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BhcF8doDS6m88nOc6leiI0lUNIWgi\",\"object\":\"chat.completion.chunk\",\"created\":1749734810,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_a288987b44\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\" \\\",\\\"\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BhcF8doDS6m88nOc6leiI0lUNIWgi\",\"object\":\"chat.completion.chunk\",\"created\":1749734810,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_a288987b44\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"styles\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BhcF8doDS6m88nOc6leiI0lUNIWgi\",\"object\":\"chat.completion.chunk\",\"created\":1749734810,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_a288987b44\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"\\\":\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BhcF8doDS6m88nOc6leiI0lUNIWgi\",\"object\":\"chat.completion.chunk\",\"created\":1749734810,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_a288987b44\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"{}\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BhcF8doDS6m88nOc6leiI0lUNIWgi\",\"object\":\"chat.completion.chunk\",\"created\":1749734810,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_a288987b44\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"},{\\\"\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BhcF8doDS6m88nOc6leiI0lUNIWgi\",\"object\":\"chat.completion.chunk\",\"created\":1749734810,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_a288987b44\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"type\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BhcF8doDS6m88nOc6leiI0lUNIWgi\",\"object\":\"chat.completion.chunk\",\"created\":1749734810,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_a288987b44\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"\\\":\\\"\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BhcF8doDS6m88nOc6leiI0lUNIWgi\",\"object\":\"chat.completion.chunk\",\"created\":1749734810,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_a288987b44\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"text\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BhcF8doDS6m88nOc6leiI0lUNIWgi\",\"object\":\"chat.completion.chunk\",\"created\":1749734810,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_a288987b44\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"\\\",\\\"\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BhcF8doDS6m88nOc6leiI0lUNIWgi\",\"object\":\"chat.completion.chunk\",\"created\":1749734810,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_a288987b44\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"text\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BhcF8doDS6m88nOc6leiI0lUNIWgi\",\"object\":\"chat.completion.chunk\",\"created\":1749734810,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_a288987b44\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"\\\":\\\"\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BhcF8doDS6m88nOc6leiI0lUNIWgi\",\"object\":\"chat.completion.chunk\",\"created\":1749734810,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_a288987b44\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"Dieser\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BhcF8doDS6m88nOc6leiI0lUNIWgi\",\"object\":\"chat.completion.chunk\",\"created\":1749734810,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_a288987b44\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\" Text\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BhcF8doDS6m88nOc6leiI0lUNIWgi\",\"object\":\"chat.completion.chunk\",\"created\":1749734810,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_a288987b44\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\" ist\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BhcF8doDS6m88nOc6leiI0lUNIWgi\",\"object\":\"chat.completion.chunk\",\"created\":1749734810,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_a288987b44\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\" blau\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BhcF8doDS6m88nOc6leiI0lUNIWgi\",\"object\":\"chat.completion.chunk\",\"created\":1749734810,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_a288987b44\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"!\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BhcF8doDS6m88nOc6leiI0lUNIWgi\",\"object\":\"chat.completion.chunk\",\"created\":1749734810,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_a288987b44\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"\\\",\\\"\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BhcF8doDS6m88nOc6leiI0lUNIWgi\",\"object\":\"chat.completion.chunk\",\"created\":1749734810,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_a288987b44\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"styles\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BhcF8doDS6m88nOc6leiI0lUNIWgi\",\"object\":\"chat.completion.chunk\",\"created\":1749734810,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_a288987b44\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"\\\":{\\\"\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BhcF8doDS6m88nOc6leiI0lUNIWgi\",\"object\":\"chat.completion.chunk\",\"created\":1749734810,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_a288987b44\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"text\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BhcF8doDS6m88nOc6leiI0lUNIWgi\",\"object\":\"chat.completion.chunk\",\"created\":1749734810,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_a288987b44\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"Color\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BhcF8doDS6m88nOc6leiI0lUNIWgi\",\"object\":\"chat.completion.chunk\",\"created\":1749734810,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_a288987b44\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"\\\":\\\"\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BhcF8doDS6m88nOc6leiI0lUNIWgi\",\"object\":\"chat.completion.chunk\",\"created\":1749734810,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_a288987b44\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"blue\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BhcF8doDS6m88nOc6leiI0lUNIWgi\",\"object\":\"chat.completion.chunk\",\"created\":1749734810,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_a288987b44\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"\\\"}}\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BhcF8doDS6m88nOc6leiI0lUNIWgi\",\"object\":\"chat.completion.chunk\",\"created\":1749734810,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_a288987b44\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"]\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BhcF8doDS6m88nOc6leiI0lUNIWgi\",\"object\":\"chat.completion.chunk\",\"created\":1749734810,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_a288987b44\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"}}\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BhcF8doDS6m88nOc6leiI0lUNIWgi\",\"object\":\"chat.completion.chunk\",\"created\":1749734810,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_a288987b44\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"]}\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BhcF8doDS6m88nOc6leiI0lUNIWgi\",\"object\":\"chat.completion.chunk\",\"created\":1749734810,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_a288987b44\",\"choices\":[{\"index\":0,\"delta\":{},\"logprobs\":null,\"finish_reason\":\"stop\"}]}\n\ndata: [DONE]\n\n", "headers": [] } } \ No newline at end of file diff --git a/packages/xl-ai/src/api/formats/json/__snapshots__/json.test.ts/Update/__msw_snapshots__/openai.chat/gpt-4o-2024-08-06 (streaming)/styles + ic in target block, add mark (paragraph)_1_b68a744287cba99975e82279562eb768.json b/packages/xl-ai/src/api/formats/json/__snapshots__/json.test.ts/Update/__msw_snapshots__/openai.chat/gpt-4o-2024-08-06 (streaming)/styles + ic in target block, add mark (paragraph)_1_b68a744287cba99975e82279562eb768.json index e6c4974cb7..f340d6766c 100644 --- a/packages/xl-ai/src/api/formats/json/__snapshots__/json.test.ts/Update/__msw_snapshots__/openai.chat/gpt-4o-2024-08-06 (streaming)/styles + ic in target block, add mark (paragraph)_1_b68a744287cba99975e82279562eb768.json +++ b/packages/xl-ai/src/api/formats/json/__snapshots__/json.test.ts/Update/__msw_snapshots__/openai.chat/gpt-4o-2024-08-06 (streaming)/styles + ic in target block, add mark (paragraph)_1_b68a744287cba99975e82279562eb768.json @@ -7,9 +7,9 @@ "cookies": [] }, "response": { - "status": 429, + "status": 200, "statusText": "", - "body": "{\n \"error\": {\n \"message\": \"You exceeded your current quota, please check your plan and billing details. For more information on this error, read the docs: https://platform.openai.com/docs/guides/error-codes/api-errors.\",\n \"type\": \"insufficient_quota\",\n \"param\": null,\n \"code\": \"insufficient_quota\"\n }\n}\n", + "body": "data: {\"id\":\"chatcmpl-BhcFHPvX7FYsfomssesLk0jSyefpf\",\"object\":\"chat.completion.chunk\",\"created\":1749734819,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_a288987b44\",\"choices\":[{\"index\":0,\"delta\":{\"role\":\"assistant\",\"content\":null,\"tool_calls\":[{\"index\":0,\"id\":\"call_uiXu72fla7QfOoOFbxxfn1a3\",\"type\":\"function\",\"function\":{\"name\":\"json\",\"arguments\":\"\"}}],\"refusal\":null},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BhcFHPvX7FYsfomssesLk0jSyefpf\",\"object\":\"chat.completion.chunk\",\"created\":1749734819,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_a288987b44\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"{\\\"\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BhcFHPvX7FYsfomssesLk0jSyefpf\",\"object\":\"chat.completion.chunk\",\"created\":1749734819,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_a288987b44\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"operations\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BhcFHPvX7FYsfomssesLk0jSyefpf\",\"object\":\"chat.completion.chunk\",\"created\":1749734819,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_a288987b44\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"\\\":[\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BhcFHPvX7FYsfomssesLk0jSyefpf\",\"object\":\"chat.completion.chunk\",\"created\":1749734819,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_a288987b44\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"{\\\"\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BhcFHPvX7FYsfomssesLk0jSyefpf\",\"object\":\"chat.completion.chunk\",\"created\":1749734819,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_a288987b44\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"type\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BhcFHPvX7FYsfomssesLk0jSyefpf\",\"object\":\"chat.completion.chunk\",\"created\":1749734819,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_a288987b44\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"\\\":\\\"\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BhcFHPvX7FYsfomssesLk0jSyefpf\",\"object\":\"chat.completion.chunk\",\"created\":1749734819,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_a288987b44\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"update\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BhcFHPvX7FYsfomssesLk0jSyefpf\",\"object\":\"chat.completion.chunk\",\"created\":1749734819,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_a288987b44\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"\\\",\\\"\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BhcFHPvX7FYsfomssesLk0jSyefpf\",\"object\":\"chat.completion.chunk\",\"created\":1749734819,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_a288987b44\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"id\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BhcFHPvX7FYsfomssesLk0jSyefpf\",\"object\":\"chat.completion.chunk\",\"created\":1749734819,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_a288987b44\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"\\\":\\\"\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BhcFHPvX7FYsfomssesLk0jSyefpf\",\"object\":\"chat.completion.chunk\",\"created\":1749734819,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_a288987b44\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"ref\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BhcFHPvX7FYsfomssesLk0jSyefpf\",\"object\":\"chat.completion.chunk\",\"created\":1749734819,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_a288987b44\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"1\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BhcFHPvX7FYsfomssesLk0jSyefpf\",\"object\":\"chat.completion.chunk\",\"created\":1749734819,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_a288987b44\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"$\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BhcFHPvX7FYsfomssesLk0jSyefpf\",\"object\":\"chat.completion.chunk\",\"created\":1749734819,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_a288987b44\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"\\\",\\\"\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BhcFHPvX7FYsfomssesLk0jSyefpf\",\"object\":\"chat.completion.chunk\",\"created\":1749734819,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_a288987b44\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"block\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BhcFHPvX7FYsfomssesLk0jSyefpf\",\"object\":\"chat.completion.chunk\",\"created\":1749734819,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_a288987b44\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"\\\":{\\\"\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BhcFHPvX7FYsfomssesLk0jSyefpf\",\"object\":\"chat.completion.chunk\",\"created\":1749734819,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_a288987b44\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"type\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BhcFHPvX7FYsfomssesLk0jSyefpf\",\"object\":\"chat.completion.chunk\",\"created\":1749734819,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_a288987b44\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"\\\":\\\"\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BhcFHPvX7FYsfomssesLk0jSyefpf\",\"object\":\"chat.completion.chunk\",\"created\":1749734819,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_a288987b44\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"paragraph\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BhcFHPvX7FYsfomssesLk0jSyefpf\",\"object\":\"chat.completion.chunk\",\"created\":1749734819,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_a288987b44\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"\\\",\\\"\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BhcFHPvX7FYsfomssesLk0jSyefpf\",\"object\":\"chat.completion.chunk\",\"created\":1749734819,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_a288987b44\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"content\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BhcFHPvX7FYsfomssesLk0jSyefpf\",\"object\":\"chat.completion.chunk\",\"created\":1749734819,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_a288987b44\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"\\\":[\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BhcFHPvX7FYsfomssesLk0jSyefpf\",\"object\":\"chat.completion.chunk\",\"created\":1749734819,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_a288987b44\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"{\\\"\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BhcFHPvX7FYsfomssesLk0jSyefpf\",\"object\":\"chat.completion.chunk\",\"created\":1749734819,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_a288987b44\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"type\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BhcFHPvX7FYsfomssesLk0jSyefpf\",\"object\":\"chat.completion.chunk\",\"created\":1749734819,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_a288987b44\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"\\\":\\\"\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BhcFHPvX7FYsfomssesLk0jSyefpf\",\"object\":\"chat.completion.chunk\",\"created\":1749734819,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_a288987b44\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"text\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BhcFHPvX7FYsfomssesLk0jSyefpf\",\"object\":\"chat.completion.chunk\",\"created\":1749734819,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_a288987b44\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"\\\",\\\"\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BhcFHPvX7FYsfomssesLk0jSyefpf\",\"object\":\"chat.completion.chunk\",\"created\":1749734819,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_a288987b44\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"text\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BhcFHPvX7FYsfomssesLk0jSyefpf\",\"object\":\"chat.completion.chunk\",\"created\":1749734819,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_a288987b44\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"\\\":\\\"\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BhcFHPvX7FYsfomssesLk0jSyefpf\",\"object\":\"chat.completion.chunk\",\"created\":1749734819,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_a288987b44\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"Hello\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BhcFHPvX7FYsfomssesLk0jSyefpf\",\"object\":\"chat.completion.chunk\",\"created\":1749734819,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_a288987b44\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\",\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BhcFHPvX7FYsfomssesLk0jSyefpf\",\"object\":\"chat.completion.chunk\",\"created\":1749734819,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_a288987b44\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\" world\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BhcFHPvX7FYsfomssesLk0jSyefpf\",\"object\":\"chat.completion.chunk\",\"created\":1749734819,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_a288987b44\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"!\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BhcFHPvX7FYsfomssesLk0jSyefpf\",\"object\":\"chat.completion.chunk\",\"created\":1749734819,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_a288987b44\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"\\\",\\\"\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BhcFHPvX7FYsfomssesLk0jSyefpf\",\"object\":\"chat.completion.chunk\",\"created\":1749734819,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_a288987b44\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"styles\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BhcFHPvX7FYsfomssesLk0jSyefpf\",\"object\":\"chat.completion.chunk\",\"created\":1749734819,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_a288987b44\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"\\\":{\\\"\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BhcFHPvX7FYsfomssesLk0jSyefpf\",\"object\":\"chat.completion.chunk\",\"created\":1749734819,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_a288987b44\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"bold\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BhcFHPvX7FYsfomssesLk0jSyefpf\",\"object\":\"chat.completion.chunk\",\"created\":1749734819,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_a288987b44\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"\\\":\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BhcFHPvX7FYsfomssesLk0jSyefpf\",\"object\":\"chat.completion.chunk\",\"created\":1749734819,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_a288987b44\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"true\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BhcFHPvX7FYsfomssesLk0jSyefpf\",\"object\":\"chat.completion.chunk\",\"created\":1749734819,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_a288987b44\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"}}\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BhcFHPvX7FYsfomssesLk0jSyefpf\",\"object\":\"chat.completion.chunk\",\"created\":1749734819,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_a288987b44\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"]\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BhcFHPvX7FYsfomssesLk0jSyefpf\",\"object\":\"chat.completion.chunk\",\"created\":1749734819,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_a288987b44\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"}}\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BhcFHPvX7FYsfomssesLk0jSyefpf\",\"object\":\"chat.completion.chunk\",\"created\":1749734819,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_a288987b44\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"]}\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BhcFHPvX7FYsfomssesLk0jSyefpf\",\"object\":\"chat.completion.chunk\",\"created\":1749734819,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_a288987b44\",\"choices\":[{\"index\":0,\"delta\":{},\"logprobs\":null,\"finish_reason\":\"stop\"}]}\n\ndata: [DONE]\n\n", "headers": [] } } \ No newline at end of file diff --git a/packages/xl-ai/src/api/formats/json/__snapshots__/json.test.ts/Update/__msw_snapshots__/openai.chat/gpt-4o-2024-08-06 (streaming)/styles + ic in target block, add mark (word)_1_a435c74c2ca086ce0225445d217e9a2e.json b/packages/xl-ai/src/api/formats/json/__snapshots__/json.test.ts/Update/__msw_snapshots__/openai.chat/gpt-4o-2024-08-06 (streaming)/styles + ic in target block, add mark (word)_1_a435c74c2ca086ce0225445d217e9a2e.json index 06cd383428..5c65c8d93c 100644 --- a/packages/xl-ai/src/api/formats/json/__snapshots__/json.test.ts/Update/__msw_snapshots__/openai.chat/gpt-4o-2024-08-06 (streaming)/styles + ic in target block, add mark (word)_1_a435c74c2ca086ce0225445d217e9a2e.json +++ b/packages/xl-ai/src/api/formats/json/__snapshots__/json.test.ts/Update/__msw_snapshots__/openai.chat/gpt-4o-2024-08-06 (streaming)/styles + ic in target block, add mark (word)_1_a435c74c2ca086ce0225445d217e9a2e.json @@ -7,9 +7,9 @@ "cookies": [] }, "response": { - "status": 429, + "status": 200, "statusText": "", - "body": "{\n \"error\": {\n \"message\": \"You exceeded your current quota, please check your plan and billing details. For more information on this error, read the docs: https://platform.openai.com/docs/guides/error-codes/api-errors.\",\n \"type\": \"insufficient_quota\",\n \"param\": null,\n \"code\": \"insufficient_quota\"\n }\n}\n", + "body": "data: {\"id\":\"chatcmpl-BhcFFbe36RkJGVZvMp9E7LL4wc4fW\",\"object\":\"chat.completion.chunk\",\"created\":1749734817,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_a288987b44\",\"choices\":[{\"index\":0,\"delta\":{\"role\":\"assistant\",\"content\":null,\"tool_calls\":[{\"index\":0,\"id\":\"call_ILyfjzaqtIul00wowmEzIsn1\",\"type\":\"function\",\"function\":{\"name\":\"json\",\"arguments\":\"\"}}],\"refusal\":null},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BhcFFbe36RkJGVZvMp9E7LL4wc4fW\",\"object\":\"chat.completion.chunk\",\"created\":1749734817,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_a288987b44\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"{\\\"\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BhcFFbe36RkJGVZvMp9E7LL4wc4fW\",\"object\":\"chat.completion.chunk\",\"created\":1749734817,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_a288987b44\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"operations\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BhcFFbe36RkJGVZvMp9E7LL4wc4fW\",\"object\":\"chat.completion.chunk\",\"created\":1749734817,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_a288987b44\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"\\\":[\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BhcFFbe36RkJGVZvMp9E7LL4wc4fW\",\"object\":\"chat.completion.chunk\",\"created\":1749734817,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_a288987b44\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"{\\\"\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BhcFFbe36RkJGVZvMp9E7LL4wc4fW\",\"object\":\"chat.completion.chunk\",\"created\":1749734817,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_a288987b44\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"type\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BhcFFbe36RkJGVZvMp9E7LL4wc4fW\",\"object\":\"chat.completion.chunk\",\"created\":1749734817,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_a288987b44\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"\\\":\\\"\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BhcFFbe36RkJGVZvMp9E7LL4wc4fW\",\"object\":\"chat.completion.chunk\",\"created\":1749734817,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_a288987b44\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"update\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BhcFFbe36RkJGVZvMp9E7LL4wc4fW\",\"object\":\"chat.completion.chunk\",\"created\":1749734817,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_a288987b44\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"\\\",\\\"\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BhcFFbe36RkJGVZvMp9E7LL4wc4fW\",\"object\":\"chat.completion.chunk\",\"created\":1749734817,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_a288987b44\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"id\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BhcFFbe36RkJGVZvMp9E7LL4wc4fW\",\"object\":\"chat.completion.chunk\",\"created\":1749734817,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_a288987b44\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"\\\":\\\"\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BhcFFbe36RkJGVZvMp9E7LL4wc4fW\",\"object\":\"chat.completion.chunk\",\"created\":1749734817,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_a288987b44\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"ref\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BhcFFbe36RkJGVZvMp9E7LL4wc4fW\",\"object\":\"chat.completion.chunk\",\"created\":1749734817,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_a288987b44\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"1\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BhcFFbe36RkJGVZvMp9E7LL4wc4fW\",\"object\":\"chat.completion.chunk\",\"created\":1749734817,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_a288987b44\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"$\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BhcFFbe36RkJGVZvMp9E7LL4wc4fW\",\"object\":\"chat.completion.chunk\",\"created\":1749734817,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_a288987b44\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"\\\",\\\"\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BhcFFbe36RkJGVZvMp9E7LL4wc4fW\",\"object\":\"chat.completion.chunk\",\"created\":1749734817,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_a288987b44\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"block\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BhcFFbe36RkJGVZvMp9E7LL4wc4fW\",\"object\":\"chat.completion.chunk\",\"created\":1749734817,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_a288987b44\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"\\\":{\\\"\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BhcFFbe36RkJGVZvMp9E7LL4wc4fW\",\"object\":\"chat.completion.chunk\",\"created\":1749734817,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_a288987b44\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"type\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BhcFFbe36RkJGVZvMp9E7LL4wc4fW\",\"object\":\"chat.completion.chunk\",\"created\":1749734817,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_a288987b44\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"\\\":\\\"\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BhcFFbe36RkJGVZvMp9E7LL4wc4fW\",\"object\":\"chat.completion.chunk\",\"created\":1749734817,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_a288987b44\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"paragraph\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BhcFFbe36RkJGVZvMp9E7LL4wc4fW\",\"object\":\"chat.completion.chunk\",\"created\":1749734817,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_a288987b44\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"\\\",\\\"\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BhcFFbe36RkJGVZvMp9E7LL4wc4fW\",\"object\":\"chat.completion.chunk\",\"created\":1749734817,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_a288987b44\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"props\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BhcFFbe36RkJGVZvMp9E7LL4wc4fW\",\"object\":\"chat.completion.chunk\",\"created\":1749734817,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_a288987b44\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"\\\":{\\\"\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BhcFFbe36RkJGVZvMp9E7LL4wc4fW\",\"object\":\"chat.completion.chunk\",\"created\":1749734817,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_a288987b44\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"text\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BhcFFbe36RkJGVZvMp9E7LL4wc4fW\",\"object\":\"chat.completion.chunk\",\"created\":1749734817,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_a288987b44\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"Color\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BhcFFbe36RkJGVZvMp9E7LL4wc4fW\",\"object\":\"chat.completion.chunk\",\"created\":1749734817,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_a288987b44\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"\\\":\\\"\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BhcFFbe36RkJGVZvMp9E7LL4wc4fW\",\"object\":\"chat.completion.chunk\",\"created\":1749734817,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_a288987b44\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"default\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BhcFFbe36RkJGVZvMp9E7LL4wc4fW\",\"object\":\"chat.completion.chunk\",\"created\":1749734817,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_a288987b44\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"\\\",\\\"\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BhcFFbe36RkJGVZvMp9E7LL4wc4fW\",\"object\":\"chat.completion.chunk\",\"created\":1749734817,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_a288987b44\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"background\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BhcFFbe36RkJGVZvMp9E7LL4wc4fW\",\"object\":\"chat.completion.chunk\",\"created\":1749734817,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_a288987b44\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"Color\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BhcFFbe36RkJGVZvMp9E7LL4wc4fW\",\"object\":\"chat.completion.chunk\",\"created\":1749734817,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_a288987b44\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"\\\":\\\"\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BhcFFbe36RkJGVZvMp9E7LL4wc4fW\",\"object\":\"chat.completion.chunk\",\"created\":1749734817,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_a288987b44\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"default\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BhcFFbe36RkJGVZvMp9E7LL4wc4fW\",\"object\":\"chat.completion.chunk\",\"created\":1749734817,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_a288987b44\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"\\\",\\\"\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BhcFFbe36RkJGVZvMp9E7LL4wc4fW\",\"object\":\"chat.completion.chunk\",\"created\":1749734817,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_a288987b44\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"text\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BhcFFbe36RkJGVZvMp9E7LL4wc4fW\",\"object\":\"chat.completion.chunk\",\"created\":1749734817,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_a288987b44\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"Alignment\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BhcFFbe36RkJGVZvMp9E7LL4wc4fW\",\"object\":\"chat.completion.chunk\",\"created\":1749734817,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_a288987b44\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"\\\":\\\"\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BhcFFbe36RkJGVZvMp9E7LL4wc4fW\",\"object\":\"chat.completion.chunk\",\"created\":1749734817,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_a288987b44\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"left\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BhcFFbe36RkJGVZvMp9E7LL4wc4fW\",\"object\":\"chat.completion.chunk\",\"created\":1749734817,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_a288987b44\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"\\\"}\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BhcFFbe36RkJGVZvMp9E7LL4wc4fW\",\"object\":\"chat.completion.chunk\",\"created\":1749734817,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_a288987b44\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\",\\\"\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BhcFFbe36RkJGVZvMp9E7LL4wc4fW\",\"object\":\"chat.completion.chunk\",\"created\":1749734817,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_a288987b44\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"content\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BhcFFbe36RkJGVZvMp9E7LL4wc4fW\",\"object\":\"chat.completion.chunk\",\"created\":1749734817,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_a288987b44\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"\\\":[\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BhcFFbe36RkJGVZvMp9E7LL4wc4fW\",\"object\":\"chat.completion.chunk\",\"created\":1749734817,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_a288987b44\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"{\\\"\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BhcFFbe36RkJGVZvMp9E7LL4wc4fW\",\"object\":\"chat.completion.chunk\",\"created\":1749734817,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_a288987b44\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"type\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BhcFFbe36RkJGVZvMp9E7LL4wc4fW\",\"object\":\"chat.completion.chunk\",\"created\":1749734817,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_a288987b44\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"\\\":\\\"\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BhcFFbe36RkJGVZvMp9E7LL4wc4fW\",\"object\":\"chat.completion.chunk\",\"created\":1749734817,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_a288987b44\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"text\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BhcFFbe36RkJGVZvMp9E7LL4wc4fW\",\"object\":\"chat.completion.chunk\",\"created\":1749734817,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_a288987b44\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"\\\",\\\"\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BhcFFbe36RkJGVZvMp9E7LL4wc4fW\",\"object\":\"chat.completion.chunk\",\"created\":1749734817,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_a288987b44\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"text\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BhcFFbe36RkJGVZvMp9E7LL4wc4fW\",\"object\":\"chat.completion.chunk\",\"created\":1749734817,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_a288987b44\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"\\\":\\\"\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BhcFFbe36RkJGVZvMp9E7LL4wc4fW\",\"object\":\"chat.completion.chunk\",\"created\":1749734817,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_a288987b44\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"Hello\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BhcFFbe36RkJGVZvMp9E7LL4wc4fW\",\"object\":\"chat.completion.chunk\",\"created\":1749734817,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_a288987b44\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\",\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BhcFFbe36RkJGVZvMp9E7LL4wc4fW\",\"object\":\"chat.completion.chunk\",\"created\":1749734817,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_a288987b44\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\" \\\",\\\"\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BhcFFbe36RkJGVZvMp9E7LL4wc4fW\",\"object\":\"chat.completion.chunk\",\"created\":1749734817,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_a288987b44\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"styles\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BhcFFbe36RkJGVZvMp9E7LL4wc4fW\",\"object\":\"chat.completion.chunk\",\"created\":1749734817,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_a288987b44\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"\\\":\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BhcFFbe36RkJGVZvMp9E7LL4wc4fW\",\"object\":\"chat.completion.chunk\",\"created\":1749734817,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_a288987b44\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"{}\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BhcFFbe36RkJGVZvMp9E7LL4wc4fW\",\"object\":\"chat.completion.chunk\",\"created\":1749734817,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_a288987b44\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"},{\\\"\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BhcFFbe36RkJGVZvMp9E7LL4wc4fW\",\"object\":\"chat.completion.chunk\",\"created\":1749734817,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_a288987b44\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"type\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BhcFFbe36RkJGVZvMp9E7LL4wc4fW\",\"object\":\"chat.completion.chunk\",\"created\":1749734817,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_a288987b44\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"\\\":\\\"\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BhcFFbe36RkJGVZvMp9E7LL4wc4fW\",\"object\":\"chat.completion.chunk\",\"created\":1749734817,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_a288987b44\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"text\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BhcFFbe36RkJGVZvMp9E7LL4wc4fW\",\"object\":\"chat.completion.chunk\",\"created\":1749734817,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_a288987b44\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"\\\",\\\"\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BhcFFbe36RkJGVZvMp9E7LL4wc4fW\",\"object\":\"chat.completion.chunk\",\"created\":1749734817,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_a288987b44\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"text\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BhcFFbe36RkJGVZvMp9E7LL4wc4fW\",\"object\":\"chat.completion.chunk\",\"created\":1749734817,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_a288987b44\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"\\\":\\\"\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BhcFFbe36RkJGVZvMp9E7LL4wc4fW\",\"object\":\"chat.completion.chunk\",\"created\":1749734817,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_a288987b44\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"world\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BhcFFbe36RkJGVZvMp9E7LL4wc4fW\",\"object\":\"chat.completion.chunk\",\"created\":1749734817,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_a288987b44\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"!\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BhcFFbe36RkJGVZvMp9E7LL4wc4fW\",\"object\":\"chat.completion.chunk\",\"created\":1749734817,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_a288987b44\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"\\\",\\\"\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BhcFFbe36RkJGVZvMp9E7LL4wc4fW\",\"object\":\"chat.completion.chunk\",\"created\":1749734817,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_a288987b44\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"styles\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BhcFFbe36RkJGVZvMp9E7LL4wc4fW\",\"object\":\"chat.completion.chunk\",\"created\":1749734817,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_a288987b44\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"\\\":{\\\"\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BhcFFbe36RkJGVZvMp9E7LL4wc4fW\",\"object\":\"chat.completion.chunk\",\"created\":1749734817,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_a288987b44\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"bold\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BhcFFbe36RkJGVZvMp9E7LL4wc4fW\",\"object\":\"chat.completion.chunk\",\"created\":1749734817,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_a288987b44\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"\\\":\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BhcFFbe36RkJGVZvMp9E7LL4wc4fW\",\"object\":\"chat.completion.chunk\",\"created\":1749734817,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_a288987b44\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"true\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BhcFFbe36RkJGVZvMp9E7LL4wc4fW\",\"object\":\"chat.completion.chunk\",\"created\":1749734817,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_a288987b44\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"}}\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BhcFFbe36RkJGVZvMp9E7LL4wc4fW\",\"object\":\"chat.completion.chunk\",\"created\":1749734817,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_a288987b44\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"]\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BhcFFbe36RkJGVZvMp9E7LL4wc4fW\",\"object\":\"chat.completion.chunk\",\"created\":1749734817,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_a288987b44\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"}}\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BhcFFbe36RkJGVZvMp9E7LL4wc4fW\",\"object\":\"chat.completion.chunk\",\"created\":1749734817,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_a288987b44\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"]}\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BhcFFbe36RkJGVZvMp9E7LL4wc4fW\",\"object\":\"chat.completion.chunk\",\"created\":1749734817,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_a288987b44\",\"choices\":[{\"index\":0,\"delta\":{},\"logprobs\":null,\"finish_reason\":\"stop\"}]}\n\ndata: [DONE]\n\n", "headers": [] } } \ No newline at end of file diff --git a/packages/xl-ai/src/api/formats/json/__snapshots__/json.test.ts/Update/__msw_snapshots__/openai.chat/gpt-4o-2024-08-06 (streaming)/translate selection_1_ac70d79d18996d3e08a6559885013c70.json b/packages/xl-ai/src/api/formats/json/__snapshots__/json.test.ts/Update/__msw_snapshots__/openai.chat/gpt-4o-2024-08-06 (streaming)/translate selection_1_ac70d79d18996d3e08a6559885013c70.json index a710ac4d74..e565132291 100644 --- a/packages/xl-ai/src/api/formats/json/__snapshots__/json.test.ts/Update/__msw_snapshots__/openai.chat/gpt-4o-2024-08-06 (streaming)/translate selection_1_ac70d79d18996d3e08a6559885013c70.json +++ b/packages/xl-ai/src/api/formats/json/__snapshots__/json.test.ts/Update/__msw_snapshots__/openai.chat/gpt-4o-2024-08-06 (streaming)/translate selection_1_ac70d79d18996d3e08a6559885013c70.json @@ -9,7 +9,7 @@ "response": { "status": 200, "statusText": "", - "body": "data: {\"id\":\"chatcmpl-BhZtOq2Fv6MB9SkwZm1I6F4VlJH1o\",\"object\":\"chat.completion.chunk\",\"created\":1749725774,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_07871e2ad8\",\"choices\":[{\"index\":0,\"delta\":{\"role\":\"assistant\",\"content\":null,\"tool_calls\":[{\"index\":0,\"id\":\"call_KR4zkfRt5xlg4oTdgZykhwpQ\",\"type\":\"function\",\"function\":{\"name\":\"json\",\"arguments\":\"\"}}],\"refusal\":null},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BhZtOq2Fv6MB9SkwZm1I6F4VlJH1o\",\"object\":\"chat.completion.chunk\",\"created\":1749725774,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_07871e2ad8\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"{\\\"\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BhZtOq2Fv6MB9SkwZm1I6F4VlJH1o\",\"object\":\"chat.completion.chunk\",\"created\":1749725774,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_07871e2ad8\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"operations\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BhZtOq2Fv6MB9SkwZm1I6F4VlJH1o\",\"object\":\"chat.completion.chunk\",\"created\":1749725774,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_07871e2ad8\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"\\\":[\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BhZtOq2Fv6MB9SkwZm1I6F4VlJH1o\",\"object\":\"chat.completion.chunk\",\"created\":1749725774,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_07871e2ad8\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"{\\\"\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BhZtOq2Fv6MB9SkwZm1I6F4VlJH1o\",\"object\":\"chat.completion.chunk\",\"created\":1749725774,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_07871e2ad8\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"type\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BhZtOq2Fv6MB9SkwZm1I6F4VlJH1o\",\"object\":\"chat.completion.chunk\",\"created\":1749725774,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_07871e2ad8\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"\\\":\\\"\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BhZtOq2Fv6MB9SkwZm1I6F4VlJH1o\",\"object\":\"chat.completion.chunk\",\"created\":1749725774,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_07871e2ad8\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"update\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BhZtOq2Fv6MB9SkwZm1I6F4VlJH1o\",\"object\":\"chat.completion.chunk\",\"created\":1749725774,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_07871e2ad8\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"\\\",\\\"\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BhZtOq2Fv6MB9SkwZm1I6F4VlJH1o\",\"object\":\"chat.completion.chunk\",\"created\":1749725774,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_07871e2ad8\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"id\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BhZtOq2Fv6MB9SkwZm1I6F4VlJH1o\",\"object\":\"chat.completion.chunk\",\"created\":1749725774,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_07871e2ad8\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"\\\":\\\"\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BhZtOq2Fv6MB9SkwZm1I6F4VlJH1o\",\"object\":\"chat.completion.chunk\",\"created\":1749725774,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_07871e2ad8\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"ref\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BhZtOq2Fv6MB9SkwZm1I6F4VlJH1o\",\"object\":\"chat.completion.chunk\",\"created\":1749725774,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_07871e2ad8\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"2\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BhZtOq2Fv6MB9SkwZm1I6F4VlJH1o\",\"object\":\"chat.completion.chunk\",\"created\":1749725774,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_07871e2ad8\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"$\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BhZtOq2Fv6MB9SkwZm1I6F4VlJH1o\",\"object\":\"chat.completion.chunk\",\"created\":1749725774,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_07871e2ad8\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"\\\",\\\"\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BhZtOq2Fv6MB9SkwZm1I6F4VlJH1o\",\"object\":\"chat.completion.chunk\",\"created\":1749725774,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_07871e2ad8\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"block\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BhZtOq2Fv6MB9SkwZm1I6F4VlJH1o\",\"object\":\"chat.completion.chunk\",\"created\":1749725774,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_07871e2ad8\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"\\\":{\\\"\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BhZtOq2Fv6MB9SkwZm1I6F4VlJH1o\",\"object\":\"chat.completion.chunk\",\"created\":1749725774,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_07871e2ad8\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"type\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BhZtOq2Fv6MB9SkwZm1I6F4VlJH1o\",\"object\":\"chat.completion.chunk\",\"created\":1749725774,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_07871e2ad8\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"\\\":\\\"\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BhZtOq2Fv6MB9SkwZm1I6F4VlJH1o\",\"object\":\"chat.completion.chunk\",\"created\":1749725774,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_07871e2ad8\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"paragraph\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BhZtOq2Fv6MB9SkwZm1I6F4VlJH1o\",\"object\":\"chat.completion.chunk\",\"created\":1749725774,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_07871e2ad8\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"\\\",\\\"\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BhZtOq2Fv6MB9SkwZm1I6F4VlJH1o\",\"object\":\"chat.completion.chunk\",\"created\":1749725774,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_07871e2ad8\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"content\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BhZtOq2Fv6MB9SkwZm1I6F4VlJH1o\",\"object\":\"chat.completion.chunk\",\"created\":1749725774,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_07871e2ad8\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"\\\":[\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BhZtOq2Fv6MB9SkwZm1I6F4VlJH1o\",\"object\":\"chat.completion.chunk\",\"created\":1749725774,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_07871e2ad8\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"{\\\"\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BhZtOq2Fv6MB9SkwZm1I6F4VlJH1o\",\"object\":\"chat.completion.chunk\",\"created\":1749725774,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_07871e2ad8\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"type\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BhZtOq2Fv6MB9SkwZm1I6F4VlJH1o\",\"object\":\"chat.completion.chunk\",\"created\":1749725774,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_07871e2ad8\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"\\\":\\\"\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BhZtOq2Fv6MB9SkwZm1I6F4VlJH1o\",\"object\":\"chat.completion.chunk\",\"created\":1749725774,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_07871e2ad8\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"text\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BhZtOq2Fv6MB9SkwZm1I6F4VlJH1o\",\"object\":\"chat.completion.chunk\",\"created\":1749725774,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_07871e2ad8\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"\\\",\\\"\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BhZtOq2Fv6MB9SkwZm1I6F4VlJH1o\",\"object\":\"chat.completion.chunk\",\"created\":1749725774,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_07871e2ad8\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"text\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BhZtOq2Fv6MB9SkwZm1I6F4VlJH1o\",\"object\":\"chat.completion.chunk\",\"created\":1749725774,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_07871e2ad8\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"\\\":\\\"\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BhZtOq2Fv6MB9SkwZm1I6F4VlJH1o\",\"object\":\"chat.completion.chunk\",\"created\":1749725774,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_07871e2ad8\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"Hallo\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BhZtOq2Fv6MB9SkwZm1I6F4VlJH1o\",\"object\":\"chat.completion.chunk\",\"created\":1749725774,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_07871e2ad8\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"\\\",\\\"\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BhZtOq2Fv6MB9SkwZm1I6F4VlJH1o\",\"object\":\"chat.completion.chunk\",\"created\":1749725774,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_07871e2ad8\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"styles\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BhZtOq2Fv6MB9SkwZm1I6F4VlJH1o\",\"object\":\"chat.completion.chunk\",\"created\":1749725774,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_07871e2ad8\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"\\\":\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BhZtOq2Fv6MB9SkwZm1I6F4VlJH1o\",\"object\":\"chat.completion.chunk\",\"created\":1749725774,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_07871e2ad8\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"{\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BhZtOq2Fv6MB9SkwZm1I6F4VlJH1o\",\"object\":\"chat.completion.chunk\",\"created\":1749725774,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_07871e2ad8\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"}}\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BhZtOq2Fv6MB9SkwZm1I6F4VlJH1o\",\"object\":\"chat.completion.chunk\",\"created\":1749725774,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_07871e2ad8\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"]\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BhZtOq2Fv6MB9SkwZm1I6F4VlJH1o\",\"object\":\"chat.completion.chunk\",\"created\":1749725774,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_07871e2ad8\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"}}\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BhZtOq2Fv6MB9SkwZm1I6F4VlJH1o\",\"object\":\"chat.completion.chunk\",\"created\":1749725774,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_07871e2ad8\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"]}\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BhZtOq2Fv6MB9SkwZm1I6F4VlJH1o\",\"object\":\"chat.completion.chunk\",\"created\":1749725774,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_07871e2ad8\",\"choices\":[{\"index\":0,\"delta\":{},\"logprobs\":null,\"finish_reason\":\"stop\"}]}\n\ndata: [DONE]\n\n", + "body": "data: {\"id\":\"chatcmpl-BhcF0DkZEgyksfN7gnmrWMQqsckcG\",\"object\":\"chat.completion.chunk\",\"created\":1749734802,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_07871e2ad8\",\"choices\":[{\"index\":0,\"delta\":{\"role\":\"assistant\",\"content\":null,\"tool_calls\":[{\"index\":0,\"id\":\"call_CAbdyaOskHm8vktPdcs0mj3K\",\"type\":\"function\",\"function\":{\"name\":\"json\",\"arguments\":\"\"}}],\"refusal\":null},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BhcF0DkZEgyksfN7gnmrWMQqsckcG\",\"object\":\"chat.completion.chunk\",\"created\":1749734802,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_07871e2ad8\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"{\\\"\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BhcF0DkZEgyksfN7gnmrWMQqsckcG\",\"object\":\"chat.completion.chunk\",\"created\":1749734802,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_07871e2ad8\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"operations\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BhcF0DkZEgyksfN7gnmrWMQqsckcG\",\"object\":\"chat.completion.chunk\",\"created\":1749734802,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_07871e2ad8\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"\\\":[\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BhcF0DkZEgyksfN7gnmrWMQqsckcG\",\"object\":\"chat.completion.chunk\",\"created\":1749734802,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_07871e2ad8\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"{\\\"\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BhcF0DkZEgyksfN7gnmrWMQqsckcG\",\"object\":\"chat.completion.chunk\",\"created\":1749734802,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_07871e2ad8\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"type\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BhcF0DkZEgyksfN7gnmrWMQqsckcG\",\"object\":\"chat.completion.chunk\",\"created\":1749734802,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_07871e2ad8\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"\\\":\\\"\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BhcF0DkZEgyksfN7gnmrWMQqsckcG\",\"object\":\"chat.completion.chunk\",\"created\":1749734802,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_07871e2ad8\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"update\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BhcF0DkZEgyksfN7gnmrWMQqsckcG\",\"object\":\"chat.completion.chunk\",\"created\":1749734802,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_07871e2ad8\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"\\\",\\\"\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BhcF0DkZEgyksfN7gnmrWMQqsckcG\",\"object\":\"chat.completion.chunk\",\"created\":1749734802,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_07871e2ad8\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"id\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BhcF0DkZEgyksfN7gnmrWMQqsckcG\",\"object\":\"chat.completion.chunk\",\"created\":1749734802,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_07871e2ad8\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"\\\":\\\"\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BhcF0DkZEgyksfN7gnmrWMQqsckcG\",\"object\":\"chat.completion.chunk\",\"created\":1749734802,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_07871e2ad8\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"ref\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BhcF0DkZEgyksfN7gnmrWMQqsckcG\",\"object\":\"chat.completion.chunk\",\"created\":1749734802,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_07871e2ad8\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"2\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BhcF0DkZEgyksfN7gnmrWMQqsckcG\",\"object\":\"chat.completion.chunk\",\"created\":1749734802,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_07871e2ad8\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"$\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BhcF0DkZEgyksfN7gnmrWMQqsckcG\",\"object\":\"chat.completion.chunk\",\"created\":1749734802,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_07871e2ad8\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"\\\",\\\"\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BhcF0DkZEgyksfN7gnmrWMQqsckcG\",\"object\":\"chat.completion.chunk\",\"created\":1749734802,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_07871e2ad8\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"block\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BhcF0DkZEgyksfN7gnmrWMQqsckcG\",\"object\":\"chat.completion.chunk\",\"created\":1749734802,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_07871e2ad8\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"\\\":{\\\"\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BhcF0DkZEgyksfN7gnmrWMQqsckcG\",\"object\":\"chat.completion.chunk\",\"created\":1749734802,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_07871e2ad8\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"type\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BhcF0DkZEgyksfN7gnmrWMQqsckcG\",\"object\":\"chat.completion.chunk\",\"created\":1749734802,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_07871e2ad8\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"\\\":\\\"\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BhcF0DkZEgyksfN7gnmrWMQqsckcG\",\"object\":\"chat.completion.chunk\",\"created\":1749734802,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_07871e2ad8\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"paragraph\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BhcF0DkZEgyksfN7gnmrWMQqsckcG\",\"object\":\"chat.completion.chunk\",\"created\":1749734802,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_07871e2ad8\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"\\\",\\\"\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BhcF0DkZEgyksfN7gnmrWMQqsckcG\",\"object\":\"chat.completion.chunk\",\"created\":1749734802,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_07871e2ad8\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"content\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BhcF0DkZEgyksfN7gnmrWMQqsckcG\",\"object\":\"chat.completion.chunk\",\"created\":1749734802,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_07871e2ad8\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"\\\":[\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BhcF0DkZEgyksfN7gnmrWMQqsckcG\",\"object\":\"chat.completion.chunk\",\"created\":1749734802,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_07871e2ad8\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"{\\\"\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BhcF0DkZEgyksfN7gnmrWMQqsckcG\",\"object\":\"chat.completion.chunk\",\"created\":1749734802,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_07871e2ad8\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"type\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BhcF0DkZEgyksfN7gnmrWMQqsckcG\",\"object\":\"chat.completion.chunk\",\"created\":1749734802,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_07871e2ad8\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"\\\":\\\"\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BhcF0DkZEgyksfN7gnmrWMQqsckcG\",\"object\":\"chat.completion.chunk\",\"created\":1749734802,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_07871e2ad8\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"text\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BhcF0DkZEgyksfN7gnmrWMQqsckcG\",\"object\":\"chat.completion.chunk\",\"created\":1749734802,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_07871e2ad8\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"\\\",\\\"\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BhcF0DkZEgyksfN7gnmrWMQqsckcG\",\"object\":\"chat.completion.chunk\",\"created\":1749734802,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_07871e2ad8\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"text\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BhcF0DkZEgyksfN7gnmrWMQqsckcG\",\"object\":\"chat.completion.chunk\",\"created\":1749734802,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_07871e2ad8\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"\\\":\\\"\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BhcF0DkZEgyksfN7gnmrWMQqsckcG\",\"object\":\"chat.completion.chunk\",\"created\":1749734802,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_07871e2ad8\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"Hallo\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BhcF0DkZEgyksfN7gnmrWMQqsckcG\",\"object\":\"chat.completion.chunk\",\"created\":1749734802,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_07871e2ad8\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"\\\",\\\"\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BhcF0DkZEgyksfN7gnmrWMQqsckcG\",\"object\":\"chat.completion.chunk\",\"created\":1749734802,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_07871e2ad8\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"styles\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BhcF0DkZEgyksfN7gnmrWMQqsckcG\",\"object\":\"chat.completion.chunk\",\"created\":1749734802,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_07871e2ad8\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"\\\":\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BhcF0DkZEgyksfN7gnmrWMQqsckcG\",\"object\":\"chat.completion.chunk\",\"created\":1749734802,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_07871e2ad8\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"{\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BhcF0DkZEgyksfN7gnmrWMQqsckcG\",\"object\":\"chat.completion.chunk\",\"created\":1749734802,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_07871e2ad8\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"}}\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BhcF0DkZEgyksfN7gnmrWMQqsckcG\",\"object\":\"chat.completion.chunk\",\"created\":1749734802,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_07871e2ad8\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"]\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BhcF0DkZEgyksfN7gnmrWMQqsckcG\",\"object\":\"chat.completion.chunk\",\"created\":1749734802,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_07871e2ad8\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"}}\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BhcF0DkZEgyksfN7gnmrWMQqsckcG\",\"object\":\"chat.completion.chunk\",\"created\":1749734802,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_07871e2ad8\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"]}\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BhcF0DkZEgyksfN7gnmrWMQqsckcG\",\"object\":\"chat.completion.chunk\",\"created\":1749734802,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_07871e2ad8\",\"choices\":[{\"index\":0,\"delta\":{},\"logprobs\":null,\"finish_reason\":\"stop\"}]}\n\ndata: [DONE]\n\n", "headers": [] } } \ No newline at end of file diff --git a/packages/xl-ai/src/api/formats/json/__snapshots__/json.test.ts/Update/__msw_snapshots__/openai.chat/gpt-4o-2024-08-06 (streaming)/turn paragraphs into list_1_92a38569e8e9c873af8553e1607a7ba7.json b/packages/xl-ai/src/api/formats/json/__snapshots__/json.test.ts/Update/__msw_snapshots__/openai.chat/gpt-4o-2024-08-06 (streaming)/turn paragraphs into list_1_92a38569e8e9c873af8553e1607a7ba7.json index 32db8cb981..563c060084 100644 --- a/packages/xl-ai/src/api/formats/json/__snapshots__/json.test.ts/Update/__msw_snapshots__/openai.chat/gpt-4o-2024-08-06 (streaming)/turn paragraphs into list_1_92a38569e8e9c873af8553e1607a7ba7.json +++ b/packages/xl-ai/src/api/formats/json/__snapshots__/json.test.ts/Update/__msw_snapshots__/openai.chat/gpt-4o-2024-08-06 (streaming)/turn paragraphs into list_1_92a38569e8e9c873af8553e1607a7ba7.json @@ -7,9 +7,9 @@ "cookies": [] }, "response": { - "status": 429, + "status": 200, "statusText": "", - "body": "{\n \"error\": {\n \"message\": \"You exceeded your current quota, please check your plan and billing details. For more information on this error, read the docs: https://platform.openai.com/docs/guides/error-codes/api-errors.\",\n \"type\": \"insufficient_quota\",\n \"param\": null,\n \"code\": \"insufficient_quota\"\n }\n}\n", + "body": "data: {\"id\":\"chatcmpl-BhcFOH8K67d5757g13vWDbM0kSj8C\",\"object\":\"chat.completion.chunk\",\"created\":1749734826,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_07871e2ad8\",\"choices\":[{\"index\":0,\"delta\":{\"role\":\"assistant\",\"content\":null,\"tool_calls\":[{\"index\":0,\"id\":\"call_H1bw3rvRuEQa00e9BB1ArxVt\",\"type\":\"function\",\"function\":{\"name\":\"json\",\"arguments\":\"\"}}],\"refusal\":null},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BhcFOH8K67d5757g13vWDbM0kSj8C\",\"object\":\"chat.completion.chunk\",\"created\":1749734826,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_07871e2ad8\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"{\\\"\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BhcFOH8K67d5757g13vWDbM0kSj8C\",\"object\":\"chat.completion.chunk\",\"created\":1749734826,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_07871e2ad8\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"operations\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BhcFOH8K67d5757g13vWDbM0kSj8C\",\"object\":\"chat.completion.chunk\",\"created\":1749734826,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_07871e2ad8\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"\\\":[\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BhcFOH8K67d5757g13vWDbM0kSj8C\",\"object\":\"chat.completion.chunk\",\"created\":1749734826,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_07871e2ad8\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"{\\\"\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BhcFOH8K67d5757g13vWDbM0kSj8C\",\"object\":\"chat.completion.chunk\",\"created\":1749734826,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_07871e2ad8\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"type\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BhcFOH8K67d5757g13vWDbM0kSj8C\",\"object\":\"chat.completion.chunk\",\"created\":1749734826,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_07871e2ad8\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"\\\":\\\"\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BhcFOH8K67d5757g13vWDbM0kSj8C\",\"object\":\"chat.completion.chunk\",\"created\":1749734826,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_07871e2ad8\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"update\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BhcFOH8K67d5757g13vWDbM0kSj8C\",\"object\":\"chat.completion.chunk\",\"created\":1749734826,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_07871e2ad8\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"\\\",\\\"\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BhcFOH8K67d5757g13vWDbM0kSj8C\",\"object\":\"chat.completion.chunk\",\"created\":1749734826,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_07871e2ad8\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"id\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BhcFOH8K67d5757g13vWDbM0kSj8C\",\"object\":\"chat.completion.chunk\",\"created\":1749734826,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_07871e2ad8\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"\\\":\\\"\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BhcFOH8K67d5757g13vWDbM0kSj8C\",\"object\":\"chat.completion.chunk\",\"created\":1749734826,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_07871e2ad8\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"ref\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BhcFOH8K67d5757g13vWDbM0kSj8C\",\"object\":\"chat.completion.chunk\",\"created\":1749734826,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_07871e2ad8\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"2\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BhcFOH8K67d5757g13vWDbM0kSj8C\",\"object\":\"chat.completion.chunk\",\"created\":1749734826,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_07871e2ad8\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"$\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BhcFOH8K67d5757g13vWDbM0kSj8C\",\"object\":\"chat.completion.chunk\",\"created\":1749734826,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_07871e2ad8\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"\\\",\\\"\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BhcFOH8K67d5757g13vWDbM0kSj8C\",\"object\":\"chat.completion.chunk\",\"created\":1749734826,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_07871e2ad8\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"block\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BhcFOH8K67d5757g13vWDbM0kSj8C\",\"object\":\"chat.completion.chunk\",\"created\":1749734826,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_07871e2ad8\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"\\\":{\\\"\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BhcFOH8K67d5757g13vWDbM0kSj8C\",\"object\":\"chat.completion.chunk\",\"created\":1749734826,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_07871e2ad8\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"type\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BhcFOH8K67d5757g13vWDbM0kSj8C\",\"object\":\"chat.completion.chunk\",\"created\":1749734826,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_07871e2ad8\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"\\\":\\\"\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BhcFOH8K67d5757g13vWDbM0kSj8C\",\"object\":\"chat.completion.chunk\",\"created\":1749734826,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_07871e2ad8\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"bullet\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BhcFOH8K67d5757g13vWDbM0kSj8C\",\"object\":\"chat.completion.chunk\",\"created\":1749734826,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_07871e2ad8\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"List\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BhcFOH8K67d5757g13vWDbM0kSj8C\",\"object\":\"chat.completion.chunk\",\"created\":1749734826,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_07871e2ad8\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"Item\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BhcFOH8K67d5757g13vWDbM0kSj8C\",\"object\":\"chat.completion.chunk\",\"created\":1749734826,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_07871e2ad8\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"\\\",\\\"\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BhcFOH8K67d5757g13vWDbM0kSj8C\",\"object\":\"chat.completion.chunk\",\"created\":1749734826,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_07871e2ad8\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"content\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BhcFOH8K67d5757g13vWDbM0kSj8C\",\"object\":\"chat.completion.chunk\",\"created\":1749734826,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_07871e2ad8\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"\\\":[\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BhcFOH8K67d5757g13vWDbM0kSj8C\",\"object\":\"chat.completion.chunk\",\"created\":1749734826,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_07871e2ad8\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"{\\\"\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BhcFOH8K67d5757g13vWDbM0kSj8C\",\"object\":\"chat.completion.chunk\",\"created\":1749734826,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_07871e2ad8\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"type\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BhcFOH8K67d5757g13vWDbM0kSj8C\",\"object\":\"chat.completion.chunk\",\"created\":1749734826,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_07871e2ad8\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"\\\":\\\"\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BhcFOH8K67d5757g13vWDbM0kSj8C\",\"object\":\"chat.completion.chunk\",\"created\":1749734826,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_07871e2ad8\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"text\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BhcFOH8K67d5757g13vWDbM0kSj8C\",\"object\":\"chat.completion.chunk\",\"created\":1749734826,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_07871e2ad8\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"\\\",\\\"\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BhcFOH8K67d5757g13vWDbM0kSj8C\",\"object\":\"chat.completion.chunk\",\"created\":1749734826,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_07871e2ad8\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"text\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BhcFOH8K67d5757g13vWDbM0kSj8C\",\"object\":\"chat.completion.chunk\",\"created\":1749734826,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_07871e2ad8\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"\\\":\\\"\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BhcFOH8K67d5757g13vWDbM0kSj8C\",\"object\":\"chat.completion.chunk\",\"created\":1749734826,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_07871e2ad8\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"Ap\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BhcFOH8K67d5757g13vWDbM0kSj8C\",\"object\":\"chat.completion.chunk\",\"created\":1749734826,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_07871e2ad8\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"ples\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BhcFOH8K67d5757g13vWDbM0kSj8C\",\"object\":\"chat.completion.chunk\",\"created\":1749734826,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_07871e2ad8\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"\\\",\\\"\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BhcFOH8K67d5757g13vWDbM0kSj8C\",\"object\":\"chat.completion.chunk\",\"created\":1749734826,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_07871e2ad8\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"styles\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BhcFOH8K67d5757g13vWDbM0kSj8C\",\"object\":\"chat.completion.chunk\",\"created\":1749734826,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_07871e2ad8\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"\\\":\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BhcFOH8K67d5757g13vWDbM0kSj8C\",\"object\":\"chat.completion.chunk\",\"created\":1749734826,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_07871e2ad8\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"{\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BhcFOH8K67d5757g13vWDbM0kSj8C\",\"object\":\"chat.completion.chunk\",\"created\":1749734826,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_07871e2ad8\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"}}\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BhcFOH8K67d5757g13vWDbM0kSj8C\",\"object\":\"chat.completion.chunk\",\"created\":1749734826,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_07871e2ad8\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"]}\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BhcFOH8K67d5757g13vWDbM0kSj8C\",\"object\":\"chat.completion.chunk\",\"created\":1749734826,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_07871e2ad8\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"},{\\\"\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BhcFOH8K67d5757g13vWDbM0kSj8C\",\"object\":\"chat.completion.chunk\",\"created\":1749734826,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_07871e2ad8\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"type\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BhcFOH8K67d5757g13vWDbM0kSj8C\",\"object\":\"chat.completion.chunk\",\"created\":1749734826,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_07871e2ad8\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"\\\":\\\"\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BhcFOH8K67d5757g13vWDbM0kSj8C\",\"object\":\"chat.completion.chunk\",\"created\":1749734826,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_07871e2ad8\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"update\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BhcFOH8K67d5757g13vWDbM0kSj8C\",\"object\":\"chat.completion.chunk\",\"created\":1749734826,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_07871e2ad8\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"\\\",\\\"\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BhcFOH8K67d5757g13vWDbM0kSj8C\",\"object\":\"chat.completion.chunk\",\"created\":1749734826,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_07871e2ad8\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"id\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BhcFOH8K67d5757g13vWDbM0kSj8C\",\"object\":\"chat.completion.chunk\",\"created\":1749734826,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_07871e2ad8\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"\\\":\\\"\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BhcFOH8K67d5757g13vWDbM0kSj8C\",\"object\":\"chat.completion.chunk\",\"created\":1749734826,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_07871e2ad8\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"ref\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BhcFOH8K67d5757g13vWDbM0kSj8C\",\"object\":\"chat.completion.chunk\",\"created\":1749734826,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_07871e2ad8\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"3\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BhcFOH8K67d5757g13vWDbM0kSj8C\",\"object\":\"chat.completion.chunk\",\"created\":1749734826,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_07871e2ad8\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"$\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BhcFOH8K67d5757g13vWDbM0kSj8C\",\"object\":\"chat.completion.chunk\",\"created\":1749734826,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_07871e2ad8\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"\\\",\\\"\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BhcFOH8K67d5757g13vWDbM0kSj8C\",\"object\":\"chat.completion.chunk\",\"created\":1749734826,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_07871e2ad8\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"block\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BhcFOH8K67d5757g13vWDbM0kSj8C\",\"object\":\"chat.completion.chunk\",\"created\":1749734826,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_07871e2ad8\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"\\\":{\\\"\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BhcFOH8K67d5757g13vWDbM0kSj8C\",\"object\":\"chat.completion.chunk\",\"created\":1749734826,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_07871e2ad8\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"type\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BhcFOH8K67d5757g13vWDbM0kSj8C\",\"object\":\"chat.completion.chunk\",\"created\":1749734826,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_07871e2ad8\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"\\\":\\\"\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BhcFOH8K67d5757g13vWDbM0kSj8C\",\"object\":\"chat.completion.chunk\",\"created\":1749734826,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_07871e2ad8\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"bullet\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BhcFOH8K67d5757g13vWDbM0kSj8C\",\"object\":\"chat.completion.chunk\",\"created\":1749734826,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_07871e2ad8\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"List\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BhcFOH8K67d5757g13vWDbM0kSj8C\",\"object\":\"chat.completion.chunk\",\"created\":1749734826,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_07871e2ad8\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"Item\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BhcFOH8K67d5757g13vWDbM0kSj8C\",\"object\":\"chat.completion.chunk\",\"created\":1749734826,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_07871e2ad8\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"\\\",\\\"\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BhcFOH8K67d5757g13vWDbM0kSj8C\",\"object\":\"chat.completion.chunk\",\"created\":1749734826,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_07871e2ad8\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"content\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BhcFOH8K67d5757g13vWDbM0kSj8C\",\"object\":\"chat.completion.chunk\",\"created\":1749734826,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_07871e2ad8\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"\\\":[\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BhcFOH8K67d5757g13vWDbM0kSj8C\",\"object\":\"chat.completion.chunk\",\"created\":1749734826,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_07871e2ad8\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"{\\\"\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BhcFOH8K67d5757g13vWDbM0kSj8C\",\"object\":\"chat.completion.chunk\",\"created\":1749734826,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_07871e2ad8\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"type\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BhcFOH8K67d5757g13vWDbM0kSj8C\",\"object\":\"chat.completion.chunk\",\"created\":1749734826,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_07871e2ad8\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"\\\":\\\"\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BhcFOH8K67d5757g13vWDbM0kSj8C\",\"object\":\"chat.completion.chunk\",\"created\":1749734826,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_07871e2ad8\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"text\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BhcFOH8K67d5757g13vWDbM0kSj8C\",\"object\":\"chat.completion.chunk\",\"created\":1749734826,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_07871e2ad8\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"\\\",\\\"\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BhcFOH8K67d5757g13vWDbM0kSj8C\",\"object\":\"chat.completion.chunk\",\"created\":1749734826,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_07871e2ad8\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"text\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BhcFOH8K67d5757g13vWDbM0kSj8C\",\"object\":\"chat.completion.chunk\",\"created\":1749734826,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_07871e2ad8\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"\\\":\\\"\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BhcFOH8K67d5757g13vWDbM0kSj8C\",\"object\":\"chat.completion.chunk\",\"created\":1749734826,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_07871e2ad8\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"Ban\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BhcFOH8K67d5757g13vWDbM0kSj8C\",\"object\":\"chat.completion.chunk\",\"created\":1749734826,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_07871e2ad8\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"anas\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BhcFOH8K67d5757g13vWDbM0kSj8C\",\"object\":\"chat.completion.chunk\",\"created\":1749734826,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_07871e2ad8\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"\\\",\\\"\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BhcFOH8K67d5757g13vWDbM0kSj8C\",\"object\":\"chat.completion.chunk\",\"created\":1749734826,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_07871e2ad8\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"styles\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BhcFOH8K67d5757g13vWDbM0kSj8C\",\"object\":\"chat.completion.chunk\",\"created\":1749734826,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_07871e2ad8\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"\\\":\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BhcFOH8K67d5757g13vWDbM0kSj8C\",\"object\":\"chat.completion.chunk\",\"created\":1749734826,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_07871e2ad8\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"{\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BhcFOH8K67d5757g13vWDbM0kSj8C\",\"object\":\"chat.completion.chunk\",\"created\":1749734826,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_07871e2ad8\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"}}\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BhcFOH8K67d5757g13vWDbM0kSj8C\",\"object\":\"chat.completion.chunk\",\"created\":1749734826,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_07871e2ad8\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"]\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BhcFOH8K67d5757g13vWDbM0kSj8C\",\"object\":\"chat.completion.chunk\",\"created\":1749734826,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_07871e2ad8\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"}}\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BhcFOH8K67d5757g13vWDbM0kSj8C\",\"object\":\"chat.completion.chunk\",\"created\":1749734826,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_07871e2ad8\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"]}\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BhcFOH8K67d5757g13vWDbM0kSj8C\",\"object\":\"chat.completion.chunk\",\"created\":1749734826,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_07871e2ad8\",\"choices\":[{\"index\":0,\"delta\":{},\"logprobs\":null,\"finish_reason\":\"stop\"}]}\n\ndata: [DONE]\n\n", "headers": [] } } \ No newline at end of file diff --git a/packages/xl-ai/src/api/formats/json/__snapshots__/json.test.ts/Update/__msw_snapshots__/openai.chat/gpt-4o-2024-08-06 (streaming)/update block prop and content_1_470bec988f3c558f26928b2f29b50637.json b/packages/xl-ai/src/api/formats/json/__snapshots__/json.test.ts/Update/__msw_snapshots__/openai.chat/gpt-4o-2024-08-06 (streaming)/update block prop and content_1_470bec988f3c558f26928b2f29b50637.json index c5ebdaf180..1182503d36 100644 --- a/packages/xl-ai/src/api/formats/json/__snapshots__/json.test.ts/Update/__msw_snapshots__/openai.chat/gpt-4o-2024-08-06 (streaming)/update block prop and content_1_470bec988f3c558f26928b2f29b50637.json +++ b/packages/xl-ai/src/api/formats/json/__snapshots__/json.test.ts/Update/__msw_snapshots__/openai.chat/gpt-4o-2024-08-06 (streaming)/update block prop and content_1_470bec988f3c558f26928b2f29b50637.json @@ -7,9 +7,9 @@ "cookies": [] }, "response": { - "status": 429, + "status": 200, "statusText": "", - "body": "{\n \"error\": {\n \"message\": \"You exceeded your current quota, please check your plan and billing details. For more information on this error, read the docs: https://platform.openai.com/docs/guides/error-codes/api-errors.\",\n \"type\": \"insufficient_quota\",\n \"param\": null,\n \"code\": \"insufficient_quota\"\n }\n}\n", + "body": "data: {\"id\":\"chatcmpl-BhcF5Jykmz1YLroGP1YyROOby9pd4\",\"object\":\"chat.completion.chunk\",\"created\":1749734807,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_a288987b44\",\"choices\":[{\"index\":0,\"delta\":{\"role\":\"assistant\",\"content\":null,\"tool_calls\":[{\"index\":0,\"id\":\"call_KCx3ALjU8EmpcqMbCUoRZVHD\",\"type\":\"function\",\"function\":{\"name\":\"json\",\"arguments\":\"\"}}],\"refusal\":null},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BhcF5Jykmz1YLroGP1YyROOby9pd4\",\"object\":\"chat.completion.chunk\",\"created\":1749734807,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_a288987b44\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"{\\\"\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BhcF5Jykmz1YLroGP1YyROOby9pd4\",\"object\":\"chat.completion.chunk\",\"created\":1749734807,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_a288987b44\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"operations\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BhcF5Jykmz1YLroGP1YyROOby9pd4\",\"object\":\"chat.completion.chunk\",\"created\":1749734807,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_a288987b44\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"\\\":[\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BhcF5Jykmz1YLroGP1YyROOby9pd4\",\"object\":\"chat.completion.chunk\",\"created\":1749734807,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_a288987b44\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"{\\\"\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BhcF5Jykmz1YLroGP1YyROOby9pd4\",\"object\":\"chat.completion.chunk\",\"created\":1749734807,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_a288987b44\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"type\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BhcF5Jykmz1YLroGP1YyROOby9pd4\",\"object\":\"chat.completion.chunk\",\"created\":1749734807,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_a288987b44\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"\\\":\\\"\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BhcF5Jykmz1YLroGP1YyROOby9pd4\",\"object\":\"chat.completion.chunk\",\"created\":1749734807,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_a288987b44\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"update\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BhcF5Jykmz1YLroGP1YyROOby9pd4\",\"object\":\"chat.completion.chunk\",\"created\":1749734807,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_a288987b44\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"\\\",\\\"\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BhcF5Jykmz1YLroGP1YyROOby9pd4\",\"object\":\"chat.completion.chunk\",\"created\":1749734807,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_a288987b44\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"id\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BhcF5Jykmz1YLroGP1YyROOby9pd4\",\"object\":\"chat.completion.chunk\",\"created\":1749734807,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_a288987b44\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"\\\":\\\"\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BhcF5Jykmz1YLroGP1YyROOby9pd4\",\"object\":\"chat.completion.chunk\",\"created\":1749734807,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_a288987b44\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"ref\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BhcF5Jykmz1YLroGP1YyROOby9pd4\",\"object\":\"chat.completion.chunk\",\"created\":1749734807,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_a288987b44\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"1\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BhcF5Jykmz1YLroGP1YyROOby9pd4\",\"object\":\"chat.completion.chunk\",\"created\":1749734807,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_a288987b44\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"$\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BhcF5Jykmz1YLroGP1YyROOby9pd4\",\"object\":\"chat.completion.chunk\",\"created\":1749734807,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_a288987b44\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"\\\",\\\"\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BhcF5Jykmz1YLroGP1YyROOby9pd4\",\"object\":\"chat.completion.chunk\",\"created\":1749734807,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_a288987b44\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"block\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BhcF5Jykmz1YLroGP1YyROOby9pd4\",\"object\":\"chat.completion.chunk\",\"created\":1749734807,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_a288987b44\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"\\\":{\\\"\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BhcF5Jykmz1YLroGP1YyROOby9pd4\",\"object\":\"chat.completion.chunk\",\"created\":1749734807,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_a288987b44\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"type\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BhcF5Jykmz1YLroGP1YyROOby9pd4\",\"object\":\"chat.completion.chunk\",\"created\":1749734807,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_a288987b44\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"\\\":\\\"\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BhcF5Jykmz1YLroGP1YyROOby9pd4\",\"object\":\"chat.completion.chunk\",\"created\":1749734807,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_a288987b44\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"paragraph\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BhcF5Jykmz1YLroGP1YyROOby9pd4\",\"object\":\"chat.completion.chunk\",\"created\":1749734807,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_a288987b44\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"\\\",\\\"\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BhcF5Jykmz1YLroGP1YyROOby9pd4\",\"object\":\"chat.completion.chunk\",\"created\":1749734807,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_a288987b44\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"content\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BhcF5Jykmz1YLroGP1YyROOby9pd4\",\"object\":\"chat.completion.chunk\",\"created\":1749734807,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_a288987b44\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"\\\":[\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BhcF5Jykmz1YLroGP1YyROOby9pd4\",\"object\":\"chat.completion.chunk\",\"created\":1749734807,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_a288987b44\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"{\\\"\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BhcF5Jykmz1YLroGP1YyROOby9pd4\",\"object\":\"chat.completion.chunk\",\"created\":1749734807,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_a288987b44\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"type\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BhcF5Jykmz1YLroGP1YyROOby9pd4\",\"object\":\"chat.completion.chunk\",\"created\":1749734807,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_a288987b44\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"\\\":\\\"\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BhcF5Jykmz1YLroGP1YyROOby9pd4\",\"object\":\"chat.completion.chunk\",\"created\":1749734807,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_a288987b44\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"text\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BhcF5Jykmz1YLroGP1YyROOby9pd4\",\"object\":\"chat.completion.chunk\",\"created\":1749734807,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_a288987b44\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"\\\",\\\"\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BhcF5Jykmz1YLroGP1YyROOby9pd4\",\"object\":\"chat.completion.chunk\",\"created\":1749734807,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_a288987b44\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"text\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BhcF5Jykmz1YLroGP1YyROOby9pd4\",\"object\":\"chat.completion.chunk\",\"created\":1749734807,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_a288987b44\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"\\\":\\\"\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BhcF5Jykmz1YLroGP1YyROOby9pd4\",\"object\":\"chat.completion.chunk\",\"created\":1749734807,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_a288987b44\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"What's\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BhcF5Jykmz1YLroGP1YyROOby9pd4\",\"object\":\"chat.completion.chunk\",\"created\":1749734807,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_a288987b44\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\" up\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BhcF5Jykmz1YLroGP1YyROOby9pd4\",\"object\":\"chat.completion.chunk\",\"created\":1749734807,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_a288987b44\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\",\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BhcF5Jykmz1YLroGP1YyROOby9pd4\",\"object\":\"chat.completion.chunk\",\"created\":1749734807,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_a288987b44\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\" world\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BhcF5Jykmz1YLroGP1YyROOby9pd4\",\"object\":\"chat.completion.chunk\",\"created\":1749734807,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_a288987b44\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"!\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BhcF5Jykmz1YLroGP1YyROOby9pd4\",\"object\":\"chat.completion.chunk\",\"created\":1749734807,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_a288987b44\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"\\\",\\\"\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BhcF5Jykmz1YLroGP1YyROOby9pd4\",\"object\":\"chat.completion.chunk\",\"created\":1749734807,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_a288987b44\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"styles\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BhcF5Jykmz1YLroGP1YyROOby9pd4\",\"object\":\"chat.completion.chunk\",\"created\":1749734807,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_a288987b44\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"\\\":\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BhcF5Jykmz1YLroGP1YyROOby9pd4\",\"object\":\"chat.completion.chunk\",\"created\":1749734807,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_a288987b44\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"{\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BhcF5Jykmz1YLroGP1YyROOby9pd4\",\"object\":\"chat.completion.chunk\",\"created\":1749734807,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_a288987b44\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"}}\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BhcF5Jykmz1YLroGP1YyROOby9pd4\",\"object\":\"chat.completion.chunk\",\"created\":1749734807,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_a288987b44\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"],\\\"\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BhcF5Jykmz1YLroGP1YyROOby9pd4\",\"object\":\"chat.completion.chunk\",\"created\":1749734807,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_a288987b44\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"props\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BhcF5Jykmz1YLroGP1YyROOby9pd4\",\"object\":\"chat.completion.chunk\",\"created\":1749734807,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_a288987b44\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"\\\":{\\\"\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BhcF5Jykmz1YLroGP1YyROOby9pd4\",\"object\":\"chat.completion.chunk\",\"created\":1749734807,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_a288987b44\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"text\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BhcF5Jykmz1YLroGP1YyROOby9pd4\",\"object\":\"chat.completion.chunk\",\"created\":1749734807,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_a288987b44\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"Color\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BhcF5Jykmz1YLroGP1YyROOby9pd4\",\"object\":\"chat.completion.chunk\",\"created\":1749734807,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_a288987b44\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"\\\":\\\"\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BhcF5Jykmz1YLroGP1YyROOby9pd4\",\"object\":\"chat.completion.chunk\",\"created\":1749734807,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_a288987b44\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"default\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BhcF5Jykmz1YLroGP1YyROOby9pd4\",\"object\":\"chat.completion.chunk\",\"created\":1749734807,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_a288987b44\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"\\\",\\\"\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BhcF5Jykmz1YLroGP1YyROOby9pd4\",\"object\":\"chat.completion.chunk\",\"created\":1749734807,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_a288987b44\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"background\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BhcF5Jykmz1YLroGP1YyROOby9pd4\",\"object\":\"chat.completion.chunk\",\"created\":1749734807,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_a288987b44\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"Color\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BhcF5Jykmz1YLroGP1YyROOby9pd4\",\"object\":\"chat.completion.chunk\",\"created\":1749734807,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_a288987b44\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"\\\":\\\"\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BhcF5Jykmz1YLroGP1YyROOby9pd4\",\"object\":\"chat.completion.chunk\",\"created\":1749734807,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_a288987b44\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"default\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BhcF5Jykmz1YLroGP1YyROOby9pd4\",\"object\":\"chat.completion.chunk\",\"created\":1749734807,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_a288987b44\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"\\\",\\\"\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BhcF5Jykmz1YLroGP1YyROOby9pd4\",\"object\":\"chat.completion.chunk\",\"created\":1749734807,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_a288987b44\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"text\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BhcF5Jykmz1YLroGP1YyROOby9pd4\",\"object\":\"chat.completion.chunk\",\"created\":1749734807,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_a288987b44\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"Alignment\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BhcF5Jykmz1YLroGP1YyROOby9pd4\",\"object\":\"chat.completion.chunk\",\"created\":1749734807,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_a288987b44\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"\\\":\\\"\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BhcF5Jykmz1YLroGP1YyROOby9pd4\",\"object\":\"chat.completion.chunk\",\"created\":1749734807,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_a288987b44\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"right\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BhcF5Jykmz1YLroGP1YyROOby9pd4\",\"object\":\"chat.completion.chunk\",\"created\":1749734807,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_a288987b44\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"\\\"}}\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BhcF5Jykmz1YLroGP1YyROOby9pd4\",\"object\":\"chat.completion.chunk\",\"created\":1749734807,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_a288987b44\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"}\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BhcF5Jykmz1YLroGP1YyROOby9pd4\",\"object\":\"chat.completion.chunk\",\"created\":1749734807,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_a288987b44\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"]}\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BhcF5Jykmz1YLroGP1YyROOby9pd4\",\"object\":\"chat.completion.chunk\",\"created\":1749734807,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_a288987b44\",\"choices\":[{\"index\":0,\"delta\":{},\"logprobs\":null,\"finish_reason\":\"stop\"}]}\n\ndata: [DONE]\n\n", "headers": [] } } \ No newline at end of file diff --git a/packages/xl-ai/src/api/formats/json/__snapshots__/json.test.ts/Update/__msw_snapshots__/openai.chat/gpt-4o-2024-08-06 (streaming)/update block prop_1_7e88e61010d66486f9882befa48894db.json b/packages/xl-ai/src/api/formats/json/__snapshots__/json.test.ts/Update/__msw_snapshots__/openai.chat/gpt-4o-2024-08-06 (streaming)/update block prop_1_7e88e61010d66486f9882befa48894db.json index ffc04b1728..5ba5d57333 100644 --- a/packages/xl-ai/src/api/formats/json/__snapshots__/json.test.ts/Update/__msw_snapshots__/openai.chat/gpt-4o-2024-08-06 (streaming)/update block prop_1_7e88e61010d66486f9882befa48894db.json +++ b/packages/xl-ai/src/api/formats/json/__snapshots__/json.test.ts/Update/__msw_snapshots__/openai.chat/gpt-4o-2024-08-06 (streaming)/update block prop_1_7e88e61010d66486f9882befa48894db.json @@ -7,9 +7,9 @@ "cookies": [] }, "response": { - "status": 429, + "status": 200, "statusText": "", - "body": "{\n \"error\": {\n \"message\": \"You exceeded your current quota, please check your plan and billing details. For more information on this error, read the docs: https://platform.openai.com/docs/guides/error-codes/api-errors.\",\n \"type\": \"insufficient_quota\",\n \"param\": null,\n \"code\": \"insufficient_quota\"\n }\n}\n", + "body": "data: {\"id\":\"chatcmpl-BhcF2AB3wKCUB7t19f4yB32b4gq1S\",\"object\":\"chat.completion.chunk\",\"created\":1749734804,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_a288987b44\",\"choices\":[{\"index\":0,\"delta\":{\"role\":\"assistant\",\"content\":null,\"tool_calls\":[{\"index\":0,\"id\":\"call_J9tj7pX1ojchfX56cakFDNTe\",\"type\":\"function\",\"function\":{\"name\":\"json\",\"arguments\":\"\"}}],\"refusal\":null},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BhcF2AB3wKCUB7t19f4yB32b4gq1S\",\"object\":\"chat.completion.chunk\",\"created\":1749734804,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_a288987b44\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"{\\\"\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BhcF2AB3wKCUB7t19f4yB32b4gq1S\",\"object\":\"chat.completion.chunk\",\"created\":1749734804,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_a288987b44\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"operations\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BhcF2AB3wKCUB7t19f4yB32b4gq1S\",\"object\":\"chat.completion.chunk\",\"created\":1749734804,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_a288987b44\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"\\\":[\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BhcF2AB3wKCUB7t19f4yB32b4gq1S\",\"object\":\"chat.completion.chunk\",\"created\":1749734804,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_a288987b44\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"{\\\"\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BhcF2AB3wKCUB7t19f4yB32b4gq1S\",\"object\":\"chat.completion.chunk\",\"created\":1749734804,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_a288987b44\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"type\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BhcF2AB3wKCUB7t19f4yB32b4gq1S\",\"object\":\"chat.completion.chunk\",\"created\":1749734804,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_a288987b44\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"\\\":\\\"\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BhcF2AB3wKCUB7t19f4yB32b4gq1S\",\"object\":\"chat.completion.chunk\",\"created\":1749734804,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_a288987b44\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"update\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BhcF2AB3wKCUB7t19f4yB32b4gq1S\",\"object\":\"chat.completion.chunk\",\"created\":1749734804,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_a288987b44\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"\\\",\\\"\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BhcF2AB3wKCUB7t19f4yB32b4gq1S\",\"object\":\"chat.completion.chunk\",\"created\":1749734804,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_a288987b44\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"id\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BhcF2AB3wKCUB7t19f4yB32b4gq1S\",\"object\":\"chat.completion.chunk\",\"created\":1749734804,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_a288987b44\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"\\\":\\\"\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BhcF2AB3wKCUB7t19f4yB32b4gq1S\",\"object\":\"chat.completion.chunk\",\"created\":1749734804,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_a288987b44\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"ref\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BhcF2AB3wKCUB7t19f4yB32b4gq1S\",\"object\":\"chat.completion.chunk\",\"created\":1749734804,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_a288987b44\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"1\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BhcF2AB3wKCUB7t19f4yB32b4gq1S\",\"object\":\"chat.completion.chunk\",\"created\":1749734804,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_a288987b44\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"$\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BhcF2AB3wKCUB7t19f4yB32b4gq1S\",\"object\":\"chat.completion.chunk\",\"created\":1749734804,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_a288987b44\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"\\\",\\\"\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BhcF2AB3wKCUB7t19f4yB32b4gq1S\",\"object\":\"chat.completion.chunk\",\"created\":1749734804,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_a288987b44\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"block\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BhcF2AB3wKCUB7t19f4yB32b4gq1S\",\"object\":\"chat.completion.chunk\",\"created\":1749734804,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_a288987b44\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"\\\":{\\\"\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BhcF2AB3wKCUB7t19f4yB32b4gq1S\",\"object\":\"chat.completion.chunk\",\"created\":1749734804,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_a288987b44\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"type\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BhcF2AB3wKCUB7t19f4yB32b4gq1S\",\"object\":\"chat.completion.chunk\",\"created\":1749734804,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_a288987b44\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"\\\":\\\"\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BhcF2AB3wKCUB7t19f4yB32b4gq1S\",\"object\":\"chat.completion.chunk\",\"created\":1749734804,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_a288987b44\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"paragraph\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BhcF2AB3wKCUB7t19f4yB32b4gq1S\",\"object\":\"chat.completion.chunk\",\"created\":1749734804,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_a288987b44\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"\\\",\\\"\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BhcF2AB3wKCUB7t19f4yB32b4gq1S\",\"object\":\"chat.completion.chunk\",\"created\":1749734804,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_a288987b44\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"props\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BhcF2AB3wKCUB7t19f4yB32b4gq1S\",\"object\":\"chat.completion.chunk\",\"created\":1749734804,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_a288987b44\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"\\\":{\\\"\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BhcF2AB3wKCUB7t19f4yB32b4gq1S\",\"object\":\"chat.completion.chunk\",\"created\":1749734804,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_a288987b44\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"text\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BhcF2AB3wKCUB7t19f4yB32b4gq1S\",\"object\":\"chat.completion.chunk\",\"created\":1749734804,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_a288987b44\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"Color\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BhcF2AB3wKCUB7t19f4yB32b4gq1S\",\"object\":\"chat.completion.chunk\",\"created\":1749734804,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_a288987b44\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"\\\":\\\"\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BhcF2AB3wKCUB7t19f4yB32b4gq1S\",\"object\":\"chat.completion.chunk\",\"created\":1749734804,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_a288987b44\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"default\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BhcF2AB3wKCUB7t19f4yB32b4gq1S\",\"object\":\"chat.completion.chunk\",\"created\":1749734804,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_a288987b44\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"\\\",\\\"\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BhcF2AB3wKCUB7t19f4yB32b4gq1S\",\"object\":\"chat.completion.chunk\",\"created\":1749734804,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_a288987b44\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"background\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BhcF2AB3wKCUB7t19f4yB32b4gq1S\",\"object\":\"chat.completion.chunk\",\"created\":1749734804,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_a288987b44\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"Color\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BhcF2AB3wKCUB7t19f4yB32b4gq1S\",\"object\":\"chat.completion.chunk\",\"created\":1749734804,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_a288987b44\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"\\\":\\\"\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BhcF2AB3wKCUB7t19f4yB32b4gq1S\",\"object\":\"chat.completion.chunk\",\"created\":1749734804,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_a288987b44\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"default\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BhcF2AB3wKCUB7t19f4yB32b4gq1S\",\"object\":\"chat.completion.chunk\",\"created\":1749734804,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_a288987b44\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"\\\",\\\"\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BhcF2AB3wKCUB7t19f4yB32b4gq1S\",\"object\":\"chat.completion.chunk\",\"created\":1749734804,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_a288987b44\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"text\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BhcF2AB3wKCUB7t19f4yB32b4gq1S\",\"object\":\"chat.completion.chunk\",\"created\":1749734804,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_a288987b44\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"Alignment\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BhcF2AB3wKCUB7t19f4yB32b4gq1S\",\"object\":\"chat.completion.chunk\",\"created\":1749734804,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_a288987b44\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"\\\":\\\"\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BhcF2AB3wKCUB7t19f4yB32b4gq1S\",\"object\":\"chat.completion.chunk\",\"created\":1749734804,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_a288987b44\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"right\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BhcF2AB3wKCUB7t19f4yB32b4gq1S\",\"object\":\"chat.completion.chunk\",\"created\":1749734804,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_a288987b44\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"\\\"}\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BhcF2AB3wKCUB7t19f4yB32b4gq1S\",\"object\":\"chat.completion.chunk\",\"created\":1749734804,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_a288987b44\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\",\\\"\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BhcF2AB3wKCUB7t19f4yB32b4gq1S\",\"object\":\"chat.completion.chunk\",\"created\":1749734804,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_a288987b44\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"content\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BhcF2AB3wKCUB7t19f4yB32b4gq1S\",\"object\":\"chat.completion.chunk\",\"created\":1749734804,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_a288987b44\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"\\\":[\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BhcF2AB3wKCUB7t19f4yB32b4gq1S\",\"object\":\"chat.completion.chunk\",\"created\":1749734804,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_a288987b44\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"{\\\"\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BhcF2AB3wKCUB7t19f4yB32b4gq1S\",\"object\":\"chat.completion.chunk\",\"created\":1749734804,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_a288987b44\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"type\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BhcF2AB3wKCUB7t19f4yB32b4gq1S\",\"object\":\"chat.completion.chunk\",\"created\":1749734804,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_a288987b44\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"\\\":\\\"\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BhcF2AB3wKCUB7t19f4yB32b4gq1S\",\"object\":\"chat.completion.chunk\",\"created\":1749734804,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_a288987b44\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"text\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BhcF2AB3wKCUB7t19f4yB32b4gq1S\",\"object\":\"chat.completion.chunk\",\"created\":1749734804,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_a288987b44\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"\\\",\\\"\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BhcF2AB3wKCUB7t19f4yB32b4gq1S\",\"object\":\"chat.completion.chunk\",\"created\":1749734804,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_a288987b44\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"text\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BhcF2AB3wKCUB7t19f4yB32b4gq1S\",\"object\":\"chat.completion.chunk\",\"created\":1749734804,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_a288987b44\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"\\\":\\\"\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BhcF2AB3wKCUB7t19f4yB32b4gq1S\",\"object\":\"chat.completion.chunk\",\"created\":1749734804,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_a288987b44\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"Hello\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BhcF2AB3wKCUB7t19f4yB32b4gq1S\",\"object\":\"chat.completion.chunk\",\"created\":1749734804,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_a288987b44\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\",\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BhcF2AB3wKCUB7t19f4yB32b4gq1S\",\"object\":\"chat.completion.chunk\",\"created\":1749734804,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_a288987b44\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\" world\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BhcF2AB3wKCUB7t19f4yB32b4gq1S\",\"object\":\"chat.completion.chunk\",\"created\":1749734804,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_a288987b44\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"!\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BhcF2AB3wKCUB7t19f4yB32b4gq1S\",\"object\":\"chat.completion.chunk\",\"created\":1749734804,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_a288987b44\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"\\\",\\\"\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BhcF2AB3wKCUB7t19f4yB32b4gq1S\",\"object\":\"chat.completion.chunk\",\"created\":1749734804,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_a288987b44\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"styles\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BhcF2AB3wKCUB7t19f4yB32b4gq1S\",\"object\":\"chat.completion.chunk\",\"created\":1749734804,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_a288987b44\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"\\\":\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BhcF2AB3wKCUB7t19f4yB32b4gq1S\",\"object\":\"chat.completion.chunk\",\"created\":1749734804,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_a288987b44\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"{\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BhcF2AB3wKCUB7t19f4yB32b4gq1S\",\"object\":\"chat.completion.chunk\",\"created\":1749734804,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_a288987b44\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"}}\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BhcF2AB3wKCUB7t19f4yB32b4gq1S\",\"object\":\"chat.completion.chunk\",\"created\":1749734804,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_a288987b44\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"]\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BhcF2AB3wKCUB7t19f4yB32b4gq1S\",\"object\":\"chat.completion.chunk\",\"created\":1749734804,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_a288987b44\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"}}\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BhcF2AB3wKCUB7t19f4yB32b4gq1S\",\"object\":\"chat.completion.chunk\",\"created\":1749734804,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_a288987b44\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"]}\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BhcF2AB3wKCUB7t19f4yB32b4gq1S\",\"object\":\"chat.completion.chunk\",\"created\":1749734804,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_a288987b44\",\"choices\":[{\"index\":0,\"delta\":{},\"logprobs\":null,\"finish_reason\":\"stop\"}]}\n\ndata: [DONE]\n\n", "headers": [] } } \ No newline at end of file diff --git a/packages/xl-ai/src/api/formats/json/__snapshots__/json.test.ts/Update/__msw_snapshots__/openai.chat/gpt-4o-2024-08-06 (streaming)/update block type and content_1_1c088e30cb25a7508d30c2079426a225.json b/packages/xl-ai/src/api/formats/json/__snapshots__/json.test.ts/Update/__msw_snapshots__/openai.chat/gpt-4o-2024-08-06 (streaming)/update block type and content_1_1c088e30cb25a7508d30c2079426a225.json index 83b4f64400..1f1030042d 100644 --- a/packages/xl-ai/src/api/formats/json/__snapshots__/json.test.ts/Update/__msw_snapshots__/openai.chat/gpt-4o-2024-08-06 (streaming)/update block type and content_1_1c088e30cb25a7508d30c2079426a225.json +++ b/packages/xl-ai/src/api/formats/json/__snapshots__/json.test.ts/Update/__msw_snapshots__/openai.chat/gpt-4o-2024-08-06 (streaming)/update block type and content_1_1c088e30cb25a7508d30c2079426a225.json @@ -7,9 +7,9 @@ "cookies": [] }, "response": { - "status": 429, + "status": 200, "statusText": "", - "body": "{\n \"error\": {\n \"message\": \"You exceeded your current quota, please check your plan and billing details. For more information on this error, read the docs: https://platform.openai.com/docs/guides/error-codes/api-errors.\",\n \"type\": \"insufficient_quota\",\n \"param\": null,\n \"code\": \"insufficient_quota\"\n }\n}\n", + "body": "data: {\"id\":\"chatcmpl-BhcF3Ui6sCOq5GbmX5jbeK3hsEvXy\",\"object\":\"chat.completion.chunk\",\"created\":1749734805,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_a288987b44\",\"choices\":[{\"index\":0,\"delta\":{\"role\":\"assistant\",\"content\":null,\"tool_calls\":[{\"index\":0,\"id\":\"call_73Qy5ZbxsRBY72upLfJUHQkn\",\"type\":\"function\",\"function\":{\"name\":\"json\",\"arguments\":\"\"}}],\"refusal\":null},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BhcF3Ui6sCOq5GbmX5jbeK3hsEvXy\",\"object\":\"chat.completion.chunk\",\"created\":1749734805,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_a288987b44\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"{\\\"\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BhcF3Ui6sCOq5GbmX5jbeK3hsEvXy\",\"object\":\"chat.completion.chunk\",\"created\":1749734805,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_a288987b44\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"operations\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BhcF3Ui6sCOq5GbmX5jbeK3hsEvXy\",\"object\":\"chat.completion.chunk\",\"created\":1749734805,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_a288987b44\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"\\\":[\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BhcF3Ui6sCOq5GbmX5jbeK3hsEvXy\",\"object\":\"chat.completion.chunk\",\"created\":1749734805,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_a288987b44\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"{\\\"\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BhcF3Ui6sCOq5GbmX5jbeK3hsEvXy\",\"object\":\"chat.completion.chunk\",\"created\":1749734805,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_a288987b44\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"type\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BhcF3Ui6sCOq5GbmX5jbeK3hsEvXy\",\"object\":\"chat.completion.chunk\",\"created\":1749734805,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_a288987b44\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"\\\":\\\"\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BhcF3Ui6sCOq5GbmX5jbeK3hsEvXy\",\"object\":\"chat.completion.chunk\",\"created\":1749734805,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_a288987b44\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"update\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BhcF3Ui6sCOq5GbmX5jbeK3hsEvXy\",\"object\":\"chat.completion.chunk\",\"created\":1749734805,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_a288987b44\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"\\\",\\\"\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BhcF3Ui6sCOq5GbmX5jbeK3hsEvXy\",\"object\":\"chat.completion.chunk\",\"created\":1749734805,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_a288987b44\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"id\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BhcF3Ui6sCOq5GbmX5jbeK3hsEvXy\",\"object\":\"chat.completion.chunk\",\"created\":1749734805,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_a288987b44\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"\\\":\\\"\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BhcF3Ui6sCOq5GbmX5jbeK3hsEvXy\",\"object\":\"chat.completion.chunk\",\"created\":1749734805,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_a288987b44\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"ref\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BhcF3Ui6sCOq5GbmX5jbeK3hsEvXy\",\"object\":\"chat.completion.chunk\",\"created\":1749734805,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_a288987b44\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"1\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BhcF3Ui6sCOq5GbmX5jbeK3hsEvXy\",\"object\":\"chat.completion.chunk\",\"created\":1749734805,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_a288987b44\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"$\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BhcF3Ui6sCOq5GbmX5jbeK3hsEvXy\",\"object\":\"chat.completion.chunk\",\"created\":1749734805,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_a288987b44\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"\\\",\\\"\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BhcF3Ui6sCOq5GbmX5jbeK3hsEvXy\",\"object\":\"chat.completion.chunk\",\"created\":1749734805,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_a288987b44\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"block\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BhcF3Ui6sCOq5GbmX5jbeK3hsEvXy\",\"object\":\"chat.completion.chunk\",\"created\":1749734805,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_a288987b44\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"\\\":{\\\"\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BhcF3Ui6sCOq5GbmX5jbeK3hsEvXy\",\"object\":\"chat.completion.chunk\",\"created\":1749734805,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_a288987b44\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"type\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BhcF3Ui6sCOq5GbmX5jbeK3hsEvXy\",\"object\":\"chat.completion.chunk\",\"created\":1749734805,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_a288987b44\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"\\\":\\\"\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BhcF3Ui6sCOq5GbmX5jbeK3hsEvXy\",\"object\":\"chat.completion.chunk\",\"created\":1749734805,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_a288987b44\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"heading\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BhcF3Ui6sCOq5GbmX5jbeK3hsEvXy\",\"object\":\"chat.completion.chunk\",\"created\":1749734805,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_a288987b44\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"\\\",\\\"\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BhcF3Ui6sCOq5GbmX5jbeK3hsEvXy\",\"object\":\"chat.completion.chunk\",\"created\":1749734805,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_a288987b44\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"content\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BhcF3Ui6sCOq5GbmX5jbeK3hsEvXy\",\"object\":\"chat.completion.chunk\",\"created\":1749734805,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_a288987b44\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"\\\":[\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BhcF3Ui6sCOq5GbmX5jbeK3hsEvXy\",\"object\":\"chat.completion.chunk\",\"created\":1749734805,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_a288987b44\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"{\\\"\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BhcF3Ui6sCOq5GbmX5jbeK3hsEvXy\",\"object\":\"chat.completion.chunk\",\"created\":1749734805,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_a288987b44\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"type\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BhcF3Ui6sCOq5GbmX5jbeK3hsEvXy\",\"object\":\"chat.completion.chunk\",\"created\":1749734805,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_a288987b44\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"\\\":\\\"\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BhcF3Ui6sCOq5GbmX5jbeK3hsEvXy\",\"object\":\"chat.completion.chunk\",\"created\":1749734805,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_a288987b44\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"text\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BhcF3Ui6sCOq5GbmX5jbeK3hsEvXy\",\"object\":\"chat.completion.chunk\",\"created\":1749734805,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_a288987b44\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"\\\",\\\"\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BhcF3Ui6sCOq5GbmX5jbeK3hsEvXy\",\"object\":\"chat.completion.chunk\",\"created\":1749734805,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_a288987b44\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"text\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BhcF3Ui6sCOq5GbmX5jbeK3hsEvXy\",\"object\":\"chat.completion.chunk\",\"created\":1749734805,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_a288987b44\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"\\\":\\\"\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BhcF3Ui6sCOq5GbmX5jbeK3hsEvXy\",\"object\":\"chat.completion.chunk\",\"created\":1749734805,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_a288987b44\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"What's\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BhcF3Ui6sCOq5GbmX5jbeK3hsEvXy\",\"object\":\"chat.completion.chunk\",\"created\":1749734805,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_a288987b44\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\" up\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BhcF3Ui6sCOq5GbmX5jbeK3hsEvXy\",\"object\":\"chat.completion.chunk\",\"created\":1749734805,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_a288987b44\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\",\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BhcF3Ui6sCOq5GbmX5jbeK3hsEvXy\",\"object\":\"chat.completion.chunk\",\"created\":1749734805,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_a288987b44\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\" world\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BhcF3Ui6sCOq5GbmX5jbeK3hsEvXy\",\"object\":\"chat.completion.chunk\",\"created\":1749734805,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_a288987b44\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"!\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BhcF3Ui6sCOq5GbmX5jbeK3hsEvXy\",\"object\":\"chat.completion.chunk\",\"created\":1749734805,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_a288987b44\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"\\\",\\\"\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BhcF3Ui6sCOq5GbmX5jbeK3hsEvXy\",\"object\":\"chat.completion.chunk\",\"created\":1749734805,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_a288987b44\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"styles\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BhcF3Ui6sCOq5GbmX5jbeK3hsEvXy\",\"object\":\"chat.completion.chunk\",\"created\":1749734805,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_a288987b44\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"\\\":\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BhcF3Ui6sCOq5GbmX5jbeK3hsEvXy\",\"object\":\"chat.completion.chunk\",\"created\":1749734805,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_a288987b44\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"{\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BhcF3Ui6sCOq5GbmX5jbeK3hsEvXy\",\"object\":\"chat.completion.chunk\",\"created\":1749734805,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_a288987b44\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"}}\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BhcF3Ui6sCOq5GbmX5jbeK3hsEvXy\",\"object\":\"chat.completion.chunk\",\"created\":1749734805,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_a288987b44\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"],\\\"\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BhcF3Ui6sCOq5GbmX5jbeK3hsEvXy\",\"object\":\"chat.completion.chunk\",\"created\":1749734805,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_a288987b44\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"props\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BhcF3Ui6sCOq5GbmX5jbeK3hsEvXy\",\"object\":\"chat.completion.chunk\",\"created\":1749734805,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_a288987b44\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"\\\":{\\\"\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BhcF3Ui6sCOq5GbmX5jbeK3hsEvXy\",\"object\":\"chat.completion.chunk\",\"created\":1749734805,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_a288987b44\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"level\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BhcF3Ui6sCOq5GbmX5jbeK3hsEvXy\",\"object\":\"chat.completion.chunk\",\"created\":1749734805,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_a288987b44\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"\\\":\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BhcF3Ui6sCOq5GbmX5jbeK3hsEvXy\",\"object\":\"chat.completion.chunk\",\"created\":1749734805,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_a288987b44\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"1\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BhcF3Ui6sCOq5GbmX5jbeK3hsEvXy\",\"object\":\"chat.completion.chunk\",\"created\":1749734805,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_a288987b44\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"}}\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BhcF3Ui6sCOq5GbmX5jbeK3hsEvXy\",\"object\":\"chat.completion.chunk\",\"created\":1749734805,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_a288987b44\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"}\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BhcF3Ui6sCOq5GbmX5jbeK3hsEvXy\",\"object\":\"chat.completion.chunk\",\"created\":1749734805,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_a288987b44\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"]}\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BhcF3Ui6sCOq5GbmX5jbeK3hsEvXy\",\"object\":\"chat.completion.chunk\",\"created\":1749734805,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_a288987b44\",\"choices\":[{\"index\":0,\"delta\":{},\"logprobs\":null,\"finish_reason\":\"stop\"}]}\n\ndata: [DONE]\n\n", "headers": [] } } \ No newline at end of file diff --git a/packages/xl-ai/src/api/formats/json/__snapshots__/json.test.ts/Update/__msw_snapshots__/openai.chat/gpt-4o-2024-08-06 (streaming)/update block type_1_9fed5f51d881546a9031bc6308ff465c.json b/packages/xl-ai/src/api/formats/json/__snapshots__/json.test.ts/Update/__msw_snapshots__/openai.chat/gpt-4o-2024-08-06 (streaming)/update block type_1_9fed5f51d881546a9031bc6308ff465c.json index d9e3f4dee5..88e470d90f 100644 --- a/packages/xl-ai/src/api/formats/json/__snapshots__/json.test.ts/Update/__msw_snapshots__/openai.chat/gpt-4o-2024-08-06 (streaming)/update block type_1_9fed5f51d881546a9031bc6308ff465c.json +++ b/packages/xl-ai/src/api/formats/json/__snapshots__/json.test.ts/Update/__msw_snapshots__/openai.chat/gpt-4o-2024-08-06 (streaming)/update block type_1_9fed5f51d881546a9031bc6308ff465c.json @@ -9,7 +9,7 @@ "response": { "status": 200, "statusText": "", - "body": "data: {\"id\":\"chatcmpl-BhZtPM4EGbPrZtWGxPbHfII7iudox\",\"object\":\"chat.completion.chunk\",\"created\":1749725775,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_a288987b44\",\"choices\":[{\"index\":0,\"delta\":{\"role\":\"assistant\",\"content\":null,\"tool_calls\":[{\"index\":0,\"id\":\"call_6sOkS2Jtzo7ytoY2i7qjgDy8\",\"type\":\"function\",\"function\":{\"name\":\"json\",\"arguments\":\"\"}}],\"refusal\":null},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BhZtPM4EGbPrZtWGxPbHfII7iudox\",\"object\":\"chat.completion.chunk\",\"created\":1749725775,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_a288987b44\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"{\\\"\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BhZtPM4EGbPrZtWGxPbHfII7iudox\",\"object\":\"chat.completion.chunk\",\"created\":1749725775,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_a288987b44\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"operations\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BhZtPM4EGbPrZtWGxPbHfII7iudox\",\"object\":\"chat.completion.chunk\",\"created\":1749725775,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_a288987b44\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"\\\":[\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BhZtPM4EGbPrZtWGxPbHfII7iudox\",\"object\":\"chat.completion.chunk\",\"created\":1749725775,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_a288987b44\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"{\\\"\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BhZtPM4EGbPrZtWGxPbHfII7iudox\",\"object\":\"chat.completion.chunk\",\"created\":1749725775,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_a288987b44\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"type\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BhZtPM4EGbPrZtWGxPbHfII7iudox\",\"object\":\"chat.completion.chunk\",\"created\":1749725775,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_a288987b44\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"\\\":\\\"\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BhZtPM4EGbPrZtWGxPbHfII7iudox\",\"object\":\"chat.completion.chunk\",\"created\":1749725775,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_a288987b44\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"update\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BhZtPM4EGbPrZtWGxPbHfII7iudox\",\"object\":\"chat.completion.chunk\",\"created\":1749725775,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_a288987b44\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"\\\",\\\"\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BhZtPM4EGbPrZtWGxPbHfII7iudox\",\"object\":\"chat.completion.chunk\",\"created\":1749725775,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_a288987b44\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"id\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BhZtPM4EGbPrZtWGxPbHfII7iudox\",\"object\":\"chat.completion.chunk\",\"created\":1749725775,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_a288987b44\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"\\\":\\\"\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BhZtPM4EGbPrZtWGxPbHfII7iudox\",\"object\":\"chat.completion.chunk\",\"created\":1749725775,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_a288987b44\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"ref\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BhZtPM4EGbPrZtWGxPbHfII7iudox\",\"object\":\"chat.completion.chunk\",\"created\":1749725775,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_a288987b44\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"1\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BhZtPM4EGbPrZtWGxPbHfII7iudox\",\"object\":\"chat.completion.chunk\",\"created\":1749725775,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_a288987b44\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"$\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BhZtPM4EGbPrZtWGxPbHfII7iudox\",\"object\":\"chat.completion.chunk\",\"created\":1749725775,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_a288987b44\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"\\\",\\\"\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BhZtPM4EGbPrZtWGxPbHfII7iudox\",\"object\":\"chat.completion.chunk\",\"created\":1749725775,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_a288987b44\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"block\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BhZtPM4EGbPrZtWGxPbHfII7iudox\",\"object\":\"chat.completion.chunk\",\"created\":1749725775,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_a288987b44\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"\\\":{\\\"\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BhZtPM4EGbPrZtWGxPbHfII7iudox\",\"object\":\"chat.completion.chunk\",\"created\":1749725775,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_a288987b44\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"type\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BhZtPM4EGbPrZtWGxPbHfII7iudox\",\"object\":\"chat.completion.chunk\",\"created\":1749725775,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_a288987b44\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"\\\":\\\"\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BhZtPM4EGbPrZtWGxPbHfII7iudox\",\"object\":\"chat.completion.chunk\",\"created\":1749725775,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_a288987b44\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"heading\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BhZtPM4EGbPrZtWGxPbHfII7iudox\",\"object\":\"chat.completion.chunk\",\"created\":1749725775,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_a288987b44\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"\\\",\\\"\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BhZtPM4EGbPrZtWGxPbHfII7iudox\",\"object\":\"chat.completion.chunk\",\"created\":1749725775,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_a288987b44\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"content\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BhZtPM4EGbPrZtWGxPbHfII7iudox\",\"object\":\"chat.completion.chunk\",\"created\":1749725775,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_a288987b44\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"\\\":[\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BhZtPM4EGbPrZtWGxPbHfII7iudox\",\"object\":\"chat.completion.chunk\",\"created\":1749725775,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_a288987b44\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"{\\\"\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BhZtPM4EGbPrZtWGxPbHfII7iudox\",\"object\":\"chat.completion.chunk\",\"created\":1749725775,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_a288987b44\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"type\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BhZtPM4EGbPrZtWGxPbHfII7iudox\",\"object\":\"chat.completion.chunk\",\"created\":1749725775,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_a288987b44\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"\\\":\\\"\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BhZtPM4EGbPrZtWGxPbHfII7iudox\",\"object\":\"chat.completion.chunk\",\"created\":1749725775,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_a288987b44\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"text\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BhZtPM4EGbPrZtWGxPbHfII7iudox\",\"object\":\"chat.completion.chunk\",\"created\":1749725775,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_a288987b44\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"\\\",\\\"\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BhZtPM4EGbPrZtWGxPbHfII7iudox\",\"object\":\"chat.completion.chunk\",\"created\":1749725775,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_a288987b44\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"text\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BhZtPM4EGbPrZtWGxPbHfII7iudox\",\"object\":\"chat.completion.chunk\",\"created\":1749725775,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_a288987b44\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"\\\":\\\"\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BhZtPM4EGbPrZtWGxPbHfII7iudox\",\"object\":\"chat.completion.chunk\",\"created\":1749725775,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_a288987b44\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"Hello\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BhZtPM4EGbPrZtWGxPbHfII7iudox\",\"object\":\"chat.completion.chunk\",\"created\":1749725775,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_a288987b44\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\",\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BhZtPM4EGbPrZtWGxPbHfII7iudox\",\"object\":\"chat.completion.chunk\",\"created\":1749725775,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_a288987b44\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\" world\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BhZtPM4EGbPrZtWGxPbHfII7iudox\",\"object\":\"chat.completion.chunk\",\"created\":1749725775,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_a288987b44\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"!\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BhZtPM4EGbPrZtWGxPbHfII7iudox\",\"object\":\"chat.completion.chunk\",\"created\":1749725775,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_a288987b44\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"\\\",\\\"\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BhZtPM4EGbPrZtWGxPbHfII7iudox\",\"object\":\"chat.completion.chunk\",\"created\":1749725775,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_a288987b44\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"styles\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BhZtPM4EGbPrZtWGxPbHfII7iudox\",\"object\":\"chat.completion.chunk\",\"created\":1749725775,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_a288987b44\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"\\\":\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BhZtPM4EGbPrZtWGxPbHfII7iudox\",\"object\":\"chat.completion.chunk\",\"created\":1749725775,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_a288987b44\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"{\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BhZtPM4EGbPrZtWGxPbHfII7iudox\",\"object\":\"chat.completion.chunk\",\"created\":1749725775,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_a288987b44\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"}}\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BhZtPM4EGbPrZtWGxPbHfII7iudox\",\"object\":\"chat.completion.chunk\",\"created\":1749725775,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_a288987b44\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"],\\\"\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BhZtPM4EGbPrZtWGxPbHfII7iudox\",\"object\":\"chat.completion.chunk\",\"created\":1749725775,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_a288987b44\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"props\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BhZtPM4EGbPrZtWGxPbHfII7iudox\",\"object\":\"chat.completion.chunk\",\"created\":1749725775,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_a288987b44\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"\\\":{\\\"\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BhZtPM4EGbPrZtWGxPbHfII7iudox\",\"object\":\"chat.completion.chunk\",\"created\":1749725775,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_a288987b44\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"level\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BhZtPM4EGbPrZtWGxPbHfII7iudox\",\"object\":\"chat.completion.chunk\",\"created\":1749725775,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_a288987b44\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"\\\":\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BhZtPM4EGbPrZtWGxPbHfII7iudox\",\"object\":\"chat.completion.chunk\",\"created\":1749725775,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_a288987b44\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"1\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BhZtPM4EGbPrZtWGxPbHfII7iudox\",\"object\":\"chat.completion.chunk\",\"created\":1749725775,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_a288987b44\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"}}\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BhZtPM4EGbPrZtWGxPbHfII7iudox\",\"object\":\"chat.completion.chunk\",\"created\":1749725775,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_a288987b44\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"}\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BhZtPM4EGbPrZtWGxPbHfII7iudox\",\"object\":\"chat.completion.chunk\",\"created\":1749725775,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_a288987b44\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"]}\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BhZtPM4EGbPrZtWGxPbHfII7iudox\",\"object\":\"chat.completion.chunk\",\"created\":1749725775,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_a288987b44\",\"choices\":[{\"index\":0,\"delta\":{},\"logprobs\":null,\"finish_reason\":\"stop\"}]}\n\ndata: [DONE]\n\n", + "body": "data: {\"id\":\"chatcmpl-BhcF1jo7CvH6VEUBe1f10dn4jsBtz\",\"object\":\"chat.completion.chunk\",\"created\":1749734803,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_a288987b44\",\"choices\":[{\"index\":0,\"delta\":{\"role\":\"assistant\",\"content\":null,\"tool_calls\":[{\"index\":0,\"id\":\"call_NCuJuRLkfEHB3yRv0d48EIO1\",\"type\":\"function\",\"function\":{\"name\":\"json\",\"arguments\":\"\"}}],\"refusal\":null},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BhcF1jo7CvH6VEUBe1f10dn4jsBtz\",\"object\":\"chat.completion.chunk\",\"created\":1749734803,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_a288987b44\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"{\\\"\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BhcF1jo7CvH6VEUBe1f10dn4jsBtz\",\"object\":\"chat.completion.chunk\",\"created\":1749734803,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_a288987b44\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"operations\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BhcF1jo7CvH6VEUBe1f10dn4jsBtz\",\"object\":\"chat.completion.chunk\",\"created\":1749734803,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_a288987b44\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"\\\":[\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BhcF1jo7CvH6VEUBe1f10dn4jsBtz\",\"object\":\"chat.completion.chunk\",\"created\":1749734803,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_a288987b44\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"{\\\"\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BhcF1jo7CvH6VEUBe1f10dn4jsBtz\",\"object\":\"chat.completion.chunk\",\"created\":1749734803,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_a288987b44\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"type\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BhcF1jo7CvH6VEUBe1f10dn4jsBtz\",\"object\":\"chat.completion.chunk\",\"created\":1749734803,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_a288987b44\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"\\\":\\\"\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BhcF1jo7CvH6VEUBe1f10dn4jsBtz\",\"object\":\"chat.completion.chunk\",\"created\":1749734803,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_a288987b44\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"update\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BhcF1jo7CvH6VEUBe1f10dn4jsBtz\",\"object\":\"chat.completion.chunk\",\"created\":1749734803,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_a288987b44\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"\\\",\\\"\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BhcF1jo7CvH6VEUBe1f10dn4jsBtz\",\"object\":\"chat.completion.chunk\",\"created\":1749734803,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_a288987b44\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"id\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BhcF1jo7CvH6VEUBe1f10dn4jsBtz\",\"object\":\"chat.completion.chunk\",\"created\":1749734803,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_a288987b44\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"\\\":\\\"\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BhcF1jo7CvH6VEUBe1f10dn4jsBtz\",\"object\":\"chat.completion.chunk\",\"created\":1749734803,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_a288987b44\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"ref\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BhcF1jo7CvH6VEUBe1f10dn4jsBtz\",\"object\":\"chat.completion.chunk\",\"created\":1749734803,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_a288987b44\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"1\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BhcF1jo7CvH6VEUBe1f10dn4jsBtz\",\"object\":\"chat.completion.chunk\",\"created\":1749734803,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_a288987b44\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"$\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BhcF1jo7CvH6VEUBe1f10dn4jsBtz\",\"object\":\"chat.completion.chunk\",\"created\":1749734803,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_a288987b44\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"\\\",\\\"\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BhcF1jo7CvH6VEUBe1f10dn4jsBtz\",\"object\":\"chat.completion.chunk\",\"created\":1749734803,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_a288987b44\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"block\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BhcF1jo7CvH6VEUBe1f10dn4jsBtz\",\"object\":\"chat.completion.chunk\",\"created\":1749734803,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_a288987b44\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"\\\":{\\\"\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BhcF1jo7CvH6VEUBe1f10dn4jsBtz\",\"object\":\"chat.completion.chunk\",\"created\":1749734803,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_a288987b44\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"type\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BhcF1jo7CvH6VEUBe1f10dn4jsBtz\",\"object\":\"chat.completion.chunk\",\"created\":1749734803,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_a288987b44\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"\\\":\\\"\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BhcF1jo7CvH6VEUBe1f10dn4jsBtz\",\"object\":\"chat.completion.chunk\",\"created\":1749734803,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_a288987b44\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"heading\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BhcF1jo7CvH6VEUBe1f10dn4jsBtz\",\"object\":\"chat.completion.chunk\",\"created\":1749734803,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_a288987b44\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"\\\",\\\"\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BhcF1jo7CvH6VEUBe1f10dn4jsBtz\",\"object\":\"chat.completion.chunk\",\"created\":1749734803,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_a288987b44\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"content\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BhcF1jo7CvH6VEUBe1f10dn4jsBtz\",\"object\":\"chat.completion.chunk\",\"created\":1749734803,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_a288987b44\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"\\\":[\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BhcF1jo7CvH6VEUBe1f10dn4jsBtz\",\"object\":\"chat.completion.chunk\",\"created\":1749734803,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_a288987b44\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"{\\\"\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BhcF1jo7CvH6VEUBe1f10dn4jsBtz\",\"object\":\"chat.completion.chunk\",\"created\":1749734803,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_a288987b44\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"type\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BhcF1jo7CvH6VEUBe1f10dn4jsBtz\",\"object\":\"chat.completion.chunk\",\"created\":1749734803,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_a288987b44\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"\\\":\\\"\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BhcF1jo7CvH6VEUBe1f10dn4jsBtz\",\"object\":\"chat.completion.chunk\",\"created\":1749734803,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_a288987b44\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"text\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BhcF1jo7CvH6VEUBe1f10dn4jsBtz\",\"object\":\"chat.completion.chunk\",\"created\":1749734803,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_a288987b44\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"\\\",\\\"\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BhcF1jo7CvH6VEUBe1f10dn4jsBtz\",\"object\":\"chat.completion.chunk\",\"created\":1749734803,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_a288987b44\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"text\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BhcF1jo7CvH6VEUBe1f10dn4jsBtz\",\"object\":\"chat.completion.chunk\",\"created\":1749734803,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_a288987b44\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"\\\":\\\"\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BhcF1jo7CvH6VEUBe1f10dn4jsBtz\",\"object\":\"chat.completion.chunk\",\"created\":1749734803,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_a288987b44\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"Hello\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BhcF1jo7CvH6VEUBe1f10dn4jsBtz\",\"object\":\"chat.completion.chunk\",\"created\":1749734803,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_a288987b44\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\",\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BhcF1jo7CvH6VEUBe1f10dn4jsBtz\",\"object\":\"chat.completion.chunk\",\"created\":1749734803,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_a288987b44\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\" world\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BhcF1jo7CvH6VEUBe1f10dn4jsBtz\",\"object\":\"chat.completion.chunk\",\"created\":1749734803,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_a288987b44\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"!\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BhcF1jo7CvH6VEUBe1f10dn4jsBtz\",\"object\":\"chat.completion.chunk\",\"created\":1749734803,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_a288987b44\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"\\\",\\\"\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BhcF1jo7CvH6VEUBe1f10dn4jsBtz\",\"object\":\"chat.completion.chunk\",\"created\":1749734803,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_a288987b44\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"styles\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BhcF1jo7CvH6VEUBe1f10dn4jsBtz\",\"object\":\"chat.completion.chunk\",\"created\":1749734803,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_a288987b44\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"\\\":\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BhcF1jo7CvH6VEUBe1f10dn4jsBtz\",\"object\":\"chat.completion.chunk\",\"created\":1749734803,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_a288987b44\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"{\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BhcF1jo7CvH6VEUBe1f10dn4jsBtz\",\"object\":\"chat.completion.chunk\",\"created\":1749734803,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_a288987b44\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"}}\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BhcF1jo7CvH6VEUBe1f10dn4jsBtz\",\"object\":\"chat.completion.chunk\",\"created\":1749734803,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_a288987b44\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"],\\\"\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BhcF1jo7CvH6VEUBe1f10dn4jsBtz\",\"object\":\"chat.completion.chunk\",\"created\":1749734803,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_a288987b44\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"props\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BhcF1jo7CvH6VEUBe1f10dn4jsBtz\",\"object\":\"chat.completion.chunk\",\"created\":1749734803,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_a288987b44\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"\\\":{\\\"\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BhcF1jo7CvH6VEUBe1f10dn4jsBtz\",\"object\":\"chat.completion.chunk\",\"created\":1749734803,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_a288987b44\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"level\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BhcF1jo7CvH6VEUBe1f10dn4jsBtz\",\"object\":\"chat.completion.chunk\",\"created\":1749734803,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_a288987b44\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"\\\":\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BhcF1jo7CvH6VEUBe1f10dn4jsBtz\",\"object\":\"chat.completion.chunk\",\"created\":1749734803,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_a288987b44\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"1\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BhcF1jo7CvH6VEUBe1f10dn4jsBtz\",\"object\":\"chat.completion.chunk\",\"created\":1749734803,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_a288987b44\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"}}\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BhcF1jo7CvH6VEUBe1f10dn4jsBtz\",\"object\":\"chat.completion.chunk\",\"created\":1749734803,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_a288987b44\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"}\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BhcF1jo7CvH6VEUBe1f10dn4jsBtz\",\"object\":\"chat.completion.chunk\",\"created\":1749734803,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_a288987b44\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"]}\"}}]},\"logprobs\":null,\"finish_reason\":null}]}\n\ndata: {\"id\":\"chatcmpl-BhcF1jo7CvH6VEUBe1f10dn4jsBtz\",\"object\":\"chat.completion.chunk\",\"created\":1749734803,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_a288987b44\",\"choices\":[{\"index\":0,\"delta\":{},\"logprobs\":null,\"finish_reason\":\"stop\"}]}\n\ndata: [DONE]\n\n", "headers": [] } } \ No newline at end of file From 88bb5c3e49dc2a9123abb1a075d0b2922078f2eb Mon Sep 17 00:00:00 2001 From: Matthew Lipski Date: Thu, 12 Jun 2025 16:25:51 +0200 Subject: [PATCH 21/34] Small cleanup --- .../HeadingBlockContent.ts | 3 +- .../ToggleListItemBlockContent.ts | 3 +- .../ToggleWrapper/createToggleWrapper.ts | 22 +++++++---- packages/core/src/editor/Block.css | 38 ++++++------------- 4 files changed, 30 insertions(+), 36 deletions(-) diff --git a/packages/core/src/blocks/HeadingBlockContent/HeadingBlockContent.ts b/packages/core/src/blocks/HeadingBlockContent/HeadingBlockContent.ts index bf296f87a0..a40b3a5320 100644 --- a/packages/core/src/blocks/HeadingBlockContent/HeadingBlockContent.ts +++ b/packages/core/src/blocks/HeadingBlockContent/HeadingBlockContent.ts @@ -1,5 +1,4 @@ import { InputRule } from "@tiptap/core"; - import { updateBlockCommand } from "../../api/blockManipulation/commands/updateBlock/updateBlock.js"; import { getBlockInfoFromSelection } from "../../api/getBlockInfoFromPos.js"; import { @@ -17,7 +16,7 @@ export const headingPropSchema = { ...defaultProps, level: { default: 1, values: [1, 2, 3] as const }, isTogglable: { default: false }, -} as const satisfies PropSchema; +} satisfies PropSchema; const HeadingBlockContent = createStronglyTypedTiptapNode({ name: "heading", diff --git a/packages/core/src/blocks/ListItemBlockContent/ToggleListItemBlockContent/ToggleListItemBlockContent.ts b/packages/core/src/blocks/ListItemBlockContent/ToggleListItemBlockContent/ToggleListItemBlockContent.ts index 54c0befa3a..aef1978305 100644 --- a/packages/core/src/blocks/ListItemBlockContent/ToggleListItemBlockContent/ToggleListItemBlockContent.ts +++ b/packages/core/src/blocks/ListItemBlockContent/ToggleListItemBlockContent/ToggleListItemBlockContent.ts @@ -19,8 +19,9 @@ const ToggleListItemBlockContent = createStronglyTypedTiptapNode({ name: "toggleListItem", content: "inline*", group: "blockContent", + // This is to make sure that the list item Enter keyboard handler takes + // priority over the default one. priority: 90, - addKeyboardShortcuts() { return { Enter: () => handleEnter(this.options.editor), diff --git a/packages/core/src/blocks/ToggleWrapper/createToggleWrapper.ts b/packages/core/src/blocks/ToggleWrapper/createToggleWrapper.ts index 80f15ee443..1ce56f84b8 100644 --- a/packages/core/src/blocks/ToggleWrapper/createToggleWrapper.ts +++ b/packages/core/src/blocks/ToggleWrapper/createToggleWrapper.ts @@ -88,7 +88,8 @@ export const createToggleWrapper = ( // Adds/removes the "add block" button if child blocks are added/removed. if ( editor.getBlock(block)?.children.length === 0 && - toggleWrapper.getAttribute("data-show-children") === "true" + toggleWrapper.getAttribute("data-show-children") === "true" && + !dom.contains(toggleAddBlockButton) ) { dom.appendChild(toggleAddBlockButton); } else if (dom.contains(toggleAddBlockButton)) { @@ -100,16 +101,23 @@ export const createToggleWrapper = ( dom, contentDOM: renderedElement.contentDOM, // Prevents re-renders when the toggle button is clicked. - // TODO: Document what this actually does. ignoreMutation: (mutation) => { + if (renderedElement.ignoreMutation) { + return renderedElement.ignoreMutation(mutation); + } + if ( mutation instanceof MutationRecord && - (mutation.type === "attributes" || mutation.type === "childList") + // We want to prevent re-renders when the view changes, so we ignore + // all mutations where the `data-show-children` attribute is changed + // or the "add block" button is added/removed. + ((mutation.type === "attributes" && + mutation.target === toggleWrapper && + mutation.attributeName === "data-show-children") || + (mutation.type === "childList" && + (mutation.addedNodes[0] === toggleAddBlockButton || + mutation.removedNodes[0] === toggleAddBlockButton))) ) { - if (renderedElement.ignoreMutation) { - return renderedElement.ignoreMutation(mutation); - } - return true; } return false; diff --git a/packages/core/src/editor/Block.css b/packages/core/src/editor/Block.css index 5c639d4b59..bbe88c1ec3 100644 --- a/packages/core/src/editor/Block.css +++ b/packages/core/src/editor/Block.css @@ -125,16 +125,13 @@ NESTED BLOCKS } /* HEADINGS*/ -[data-content-type="heading"], -[data-content-type="toggleHeading"] { +[data-content-type="heading"] { --level: 3em; } -[data-content-type="heading"][data-level="2"], -[data-content-type="toggleHeading"][data-level="2"] { +[data-content-type="heading"][data-level="2"] { --level: 2em; } -[data-content-type="heading"][data-level="3"], -[data-content-type="toggleHeading"][data-level="3"] { +[data-content-type="heading"][data-level="3"] { --level: 1.3em; } @@ -148,10 +145,7 @@ NESTED BLOCKS --prev-level: 1.3em; } -.bn-block-outer[data-prev-type="heading"] > .bn-block > .bn-block-content, -.bn-block-outer[data-prev-type="toggleHeading"] - > .bn-block - > .bn-block-content { +.bn-block-outer[data-prev-type="heading"] > .bn-block > .bn-block-content { font-size: var(--prev-level); font-weight: bold; } @@ -163,15 +157,7 @@ NESTED BLOCKS > .bn-block > div[data-type="modification"] > div[data-type="modification"] - > .bn-block-content[data-content-type="heading"], -.bn-block-outer:not([data-prev-type]) - > .bn-block - > .bn-block-content[data-content-type="toggleHeading"], -.bn-block-outer:not([data-prev-type]) - > .bn-block - > div[data-type="modification"] - > div[data-type="modification"] - > .bn-block-content[data-content-type="toggleHeading"] { + > .bn-block-content[data-content-type="heading"] { font-size: var(--level); font-weight: bold; } @@ -468,7 +454,13 @@ NESTED BLOCKS width: 100%; } -/* Toggle blocks */ +/* Block-specific styles */ +[data-content-type="audio"] > .bn-file-block-content-wrapper, +.bn-audio { + width: 100%; +} + +/* Toggle wrapper */ .bn-block:has( > .bn-block-content > div > .bn-toggle-wrapper[data-show-children="false"] ) @@ -519,12 +511,6 @@ NESTED BLOCKS transform: rotate(90deg); } -/* Block-specific styles */ -[data-content-type="audio"] > .bn-file-block-content-wrapper, -.bn-audio { - width: 100%; -} - /* PLACEHOLDERS*/ .bn-inline-content:has(> .ProseMirror-trailingBreak:only-child):before { /*float: left; */ From 860bcd54a6b52d82566c1599989d6e8999d416e8 Mon Sep 17 00:00:00 2001 From: Matthew Lipski Date: Thu, 12 Jun 2025 16:48:23 +0200 Subject: [PATCH 22/34] Improved keyboard handling --- .../blocks/ToggleWrapper/createToggleWrapper.ts | 14 ++++++-------- 1 file changed, 6 insertions(+), 8 deletions(-) diff --git a/packages/core/src/blocks/ToggleWrapper/createToggleWrapper.ts b/packages/core/src/blocks/ToggleWrapper/createToggleWrapper.ts index 1ce56f84b8..04f516ae37 100644 --- a/packages/core/src/blocks/ToggleWrapper/createToggleWrapper.ts +++ b/packages/core/src/blocks/ToggleWrapper/createToggleWrapper.ts @@ -72,6 +72,8 @@ export const createToggleWrapper = ( const toggleAddBlockButtonOnClick = () => { // Adds a single empty child block. editor.transact(() => { + dom.removeChild(toggleAddBlockButton); + const updatedBlock = editor.updateBlock(block, { // Single empty block with default type. children: [{}], @@ -86,14 +88,10 @@ export const createToggleWrapper = ( const onEditorChange = editor.onChange(() => { // Adds/removes the "add block" button if child blocks are added/removed. - if ( - editor.getBlock(block)?.children.length === 0 && - toggleWrapper.getAttribute("data-show-children") === "true" && - !dom.contains(toggleAddBlockButton) - ) { - dom.appendChild(toggleAddBlockButton); - } else if (dom.contains(toggleAddBlockButton)) { - dom.removeChild(toggleAddBlockButton); + if (editor.getBlock(block)?.children.length === 0) { + toggleWrapper.setAttribute("data-show-children", "false"); + } else { + toggleWrapper.setAttribute("data-show-children", "true"); } }); From c3b2f58303d28ba95eac0fe259473d4f6fffc949 Mon Sep 17 00:00:00 2001 From: Matthew Lipski Date: Thu, 12 Jun 2025 16:53:09 +0200 Subject: [PATCH 23/34] Updated `ToggleWrapper` keyboard handling --- packages/react/src/blocks/ToggleWrapper/ToggleWrapper.tsx | 6 ++++++ 1 file changed, 6 insertions(+) diff --git a/packages/react/src/blocks/ToggleWrapper/ToggleWrapper.tsx b/packages/react/src/blocks/ToggleWrapper/ToggleWrapper.tsx index 6f8758b322..bf3a5f79d0 100644 --- a/packages/react/src/blocks/ToggleWrapper/ToggleWrapper.tsx +++ b/packages/react/src/blocks/ToggleWrapper/ToggleWrapper.tsx @@ -17,8 +17,14 @@ export const ToggleWrapper = ( const actualBlock = editor.getBlock(block); if (actualBlock?.children.length === 0) { + if (hasChildren) { + setShowChildren(false); + } setHasChildren(false); } else { + if (!hasChildren) { + setShowChildren(true); + } setHasChildren(true); } }); From 353309113584c11d6563480f580a312d656e0aa0 Mon Sep 17 00:00:00 2001 From: Matthew Lipski Date: Thu, 12 Jun 2025 17:42:48 +0200 Subject: [PATCH 24/34] Skip AI tests --- packages/xl-ai/src/api/formats/json/json.test.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/packages/xl-ai/src/api/formats/json/json.test.ts b/packages/xl-ai/src/api/formats/json/json.test.ts index 540c56d0f1..16abc26e43 100644 --- a/packages/xl-ai/src/api/formats/json/json.test.ts +++ b/packages/xl-ai/src/api/formats/json/json.test.ts @@ -36,7 +36,7 @@ async function createRequestHash(req: Request) { } // Main test suite with snapshot middleware -describe("Models", () => { +describe.skip("Models", () => { // Define server with snapshot middleware for the main tests const server = setupServer( snapshot({ From 7ee478857daa918ef10a194c71215558cd2c5986 Mon Sep 17 00:00:00 2001 From: Matthew Lipski Date: Thu, 12 Jun 2025 19:16:48 +0200 Subject: [PATCH 25/34] Updated PW snap --- .../docStructureSnapshot-firefox-linux.json | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tests/src/end-to-end/slashmenu/slashmenu.test.ts-snapshots/docStructureSnapshot-firefox-linux.json b/tests/src/end-to-end/slashmenu/slashmenu.test.ts-snapshots/docStructureSnapshot-firefox-linux.json index ad9bbe7a86..163bad478e 100644 --- a/tests/src/end-to-end/slashmenu/slashmenu.test.ts-snapshots/docStructureSnapshot-firefox-linux.json +++ b/tests/src/end-to-end/slashmenu/slashmenu.test.ts-snapshots/docStructureSnapshot-firefox-linux.json @@ -65,7 +65,7 @@ "type": "heading", "attrs": { "textAlignment": "left", - "level": 1, + "level": 3, "isTogglable": false }, "content": [ From 1b0ccedecfd4446198c94d0ad03abb251ce36d9b Mon Sep 17 00:00:00 2001 From: Matthew Lipski Date: Fri, 13 Jun 2025 16:14:09 +0200 Subject: [PATCH 26/34] Implemented PR feedback --- examples/01-basic/04-default-blocks/App.tsx | 6 +- .../06-togglable-blocks/README.md | 8 - .../.bnexample.json | 0 .../App.tsx | 0 .../06-toggleable-blocks/README.md | 9 + .../Toggle.tsx | 0 .../index.html | 2 +- .../main.tsx | 0 .../package.json | 2 +- .../tsconfig.json | 0 .../vite.config.ts | 0 .../__snapshots__/insertBlocks.test.ts.snap | 36 +- .../__snapshots__/mergeBlocks.test.ts.snap | 20 +- .../__snapshots__/moveBlocks.test.ts.snap | 80 +-- .../__snapshots__/replaceBlocks.test.ts.snap | 46 +- .../__snapshots__/splitBlock.test.ts.snap | 26 +- .../__snapshots__/updateBlock.test.ts.snap | 100 ++-- .../HeadingBlockContent.ts | 2 +- .../ToggleWrapper/createToggleWrapper.ts | 39 +- packages/core/src/editor/Block.css | 131 +++-- .../core/src/editor/BlockNoteEditor.test.ts | 2 +- .../getDefaultSlashMenuItems.ts | 6 +- packages/core/src/i18n/locales/ar.ts | 2 +- packages/core/src/i18n/locales/de.ts | 2 +- packages/core/src/i18n/locales/en.ts | 10 +- packages/core/src/i18n/locales/es.ts | 2 +- packages/core/src/i18n/locales/fr.ts | 2 +- packages/core/src/i18n/locales/hr.ts | 2 +- packages/core/src/i18n/locales/is.ts | 2 +- packages/core/src/i18n/locales/it.ts | 2 +- packages/core/src/i18n/locales/ja.ts | 2 +- packages/core/src/i18n/locales/ko.ts | 2 +- packages/core/src/i18n/locales/nl.ts | 2 +- packages/core/src/i18n/locales/no.ts | 2 +- packages/core/src/i18n/locales/pl.ts | 2 +- packages/core/src/i18n/locales/pt.ts | 2 +- packages/core/src/i18n/locales/ru.ts | 2 +- packages/core/src/i18n/locales/sk.ts | 2 +- packages/core/src/i18n/locales/uk.ts | 2 +- packages/core/src/i18n/locales/vi.ts | 2 +- packages/core/src/i18n/locales/zh-tw.ts | 2 +- packages/core/src/i18n/locales/zh.ts | 2 +- .../blocks/ToggleWrapper/ToggleWrapper.tsx | 27 +- .../src/context/ServerBlockNoteEditor.test.ts | 2 +- .../ServerBlockNoteEditor.test.ts.snap | 4 +- ...ck_1_da23f47c1267f17138027b6bd115b251.json | 4 +- ...d)_1_215b02f86ce29cdb7f8834b39d073041.json | 4 +- ...c)_1_56cad0142b200cfff68d9ff03f02e930.json | 4 +- ...d)_1_87a85aa54d0e545e325753089c3843b2.json | 4 +- ...t)_1_572761dc235c6278ed438821af019645.json | 4 +- ...ck_1_a5e8aef512955120d014d7b2fc72d306.json | 4 +- ...d)_1_97ac96ad778b2e833c0e43c1a2221a4f.json | 4 +- ...c)_1_25dfbd403ed079997ccc162bd02defa7.json | 4 +- ...d)_1_240d8ee34ce9447499e1ea1058a6d6e3.json | 4 +- ...t)_1_ccaaaa4df61f9ed8a174034e7eb066af.json | 4 +- ...ph_1_923d9eef4b0b2e7367fd68983678a41a.json | 4 +- ...on_1_ca185676c21707be2b3524b104786716.json | 4 +- ...ph_1_6a4c9cc869ec961e3662b788540af827.json | 4 +- ...on_1_8092e1583e60700c3cff810383dbf5ad.json | 4 +- ...ck_1_f36354147821c0e68c7e4d2ff18e8a95.json | 4 +- ...ck_1_4ac561ca5a33ecb3cbb77482471e2477.json | 4 +- ...ng_1_4479e5ad2d77e8d9f6b49330a706a3af.json | 4 +- ...rk_1_d8be2007761d56dcf271fa44d6e8a232.json | 4 +- ...nk_1_ce3a8d756277935c395939e94ffbdfb1.json | 4 +- ...nt_1_65bac275d973af0c7b46b2b8d5d324fe.json | 4 +- ...nt_1_e23642dde85b3d958c556c5e4f86ac38.json | 4 +- ...on_1_b2b46f2ea1174691cf498ebb089d464a.json | 4 +- ...te_1_94dcefb2b5844b8a3f64f32f87115a14.json | 4 +- ...rk_1_276903909ec4f878e8adc9c6bd53d0cf.json | 4 +- ...on_1_e494072895d2e9d6bd0465582b9034f6.json | 4 +- ...nt_1_0781fecd32901229a780bd5675e62163.json | 4 +- ...op_1_2d779ce68436ee4e33b6781e66c95d4d.json | 4 +- ...xt_1_03a2f68b3d126b81618ffeebec9f2c7f.json | 4 +- ...h)_1_7875145fec05f9cae7e28537ac95bc84.json | 4 +- ...d)_1_0fe47d4cbf760327d6622e9e27c734c4.json | 4 +- ...on_1_a1c443203ee18f4ec6d71349d0c57311.json | 4 +- ...st_1_641282d2e6c4ebf728bf3d68a286275b.json | 4 +- ...nt_1_535c3a219eb5cf340184d102273a2cf4.json | 4 +- ...op_1_c7c286b44674e4f6141b1e95819b7f60.json | 4 +- ...nt_1_901d3a54e64251f1be4ee227b9fb4522.json | 4 +- ...pe_1_90c759912d4965fb8ce694e2a63e26fb.json | 4 +- ...ng_1_49a8b14dc6c4c5cc452e22c79dae5b62.json | 4 +- ...rk_1_2c278aa8dd1cb7a5f35e306e9a02c487.json | 4 +- ...nk_1_8349974ecc8b2268c1b5b42aa93563b7.json | 4 +- ...nt_1_3773830b2cf364532410c9c5498a1355.json | 4 +- ...nt_1_c0dd9920ce66da75022907181066f5c8.json | 4 +- ...on_1_255c7e8a0fd687acb58e373b4b4e7bee.json | 4 +- ...te_1_462e7956999f00b4e3ff89faa46d3d4d.json | 4 +- ...rk_1_c7c6246b702c9417679fec382dfa34d1.json | 4 +- ...on_1_5eb79311fbbec3ee0ed02e0178b3bee6.json | 4 +- ...nt_1_5d52b9a4787e7d80ebeabb4ebd975206.json | 4 +- ...op_1_18ed7c60005c23092d68b0d1f73af517.json | 4 +- ...xt_1_b2017bfc7ff6e6440d2459f1042a8a49.json | 4 +- ...h)_1_b68a744287cba99975e82279562eb768.json | 4 +- ...d)_1_a435c74c2ca086ce0225445d217e9a2e.json | 4 +- ...on_1_ac70d79d18996d3e08a6559885013c70.json | 4 +- ...st_1_92a38569e8e9c873af8553e1607a7ba7.json | 4 +- ...nt_1_470bec988f3c558f26928b2f29b50637.json | 4 +- ...op_1_7e88e61010d66486f9882befa48894db.json | 4 +- ...nt_1_1c088e30cb25a7508d30c2079426a225.json | 4 +- ...pe_1_9fed5f51d881546a9031bc6308ff465c.json | 4 +- .../schemaToJSONSchema.test.ts.snap | 2 +- .../__snapshots__/agent.test.ts.snap | 28 +- .../__snapshots__/changeset.test.ts.snap | 4 +- playground/src/examples.gen.tsx | 8 +- .../ariakit-slash-menu-chromium-linux.png | Bin 45808 -> 45846 bytes .../ariakit-slash-menu-firefox-linux.png | Bin 75139 -> 75332 bytes .../ariakit-slash-menu-webkit-linux.png | Bin 161119 -> 161541 bytes .../backgroundColorMark-firefox-linux.png | Bin 28617 -> 32931 bytes .../headings-json-chromium-linux.json | 12 +- .../dragdropnested-chromium-linux.json | 6 +- .../dragdropnested-webkit-linux.json | 6 +- .../dragdropsingle-chromium-linux.json | 6 +- .../dragdropsingle-webkit-linux.json | 6 +- ...dnonselectedemptyblock-chromium-linux.json | 4 +- ...ddnonselectedemptyblock-firefox-linux.json | 4 +- ...addnonselectedemptyblock-webkit-linux.json | 4 +- ...dragHandleDocStructure-chromium-linux.json | 4 +- .../dragHandleDocStructure-firefox-linux.json | 4 +- .../dragHandleDocStructure-webkit-linux.json | 4 +- .../draghandleadd-chromium-linux.json | 4 +- .../draghandleadd-firefox-linux.json | 4 +- .../draghandleadd-webkit-linux.json | 4 +- ...draghandlenesteddelete-chromium-linux.json | 2 +- .../draghandlenesteddelete-firefox-linux.json | 2 +- .../draghandlenesteddelete-webkit-linux.json | 2 +- .../dragImage-chromium-linux.json | 2 +- .../dragImage-firefox-linux.json | 2 +- .../dragImage-webkit-linux.json | 2 +- ...seIndentMultipleBlocks-chromium-linux.json | 6 +- ...aseIndentMultipleBlocks-firefox-linux.json | 6 +- ...easeIndentMultipleBlocks-webkit-linux.json | 6 +- ...reaseIndentSingleBlock-chromium-linux.json | 6 +- ...creaseIndentSingleBlock-firefox-linux.json | 6 +- ...ecreaseIndentSingleBlock-webkit-linux.json | 6 +- ...seIndentMultipleBlocks-chromium-linux.json | 6 +- ...aseIndentMultipleBlocks-firefox-linux.json | 6 +- ...easeIndentMultipleBlocks-webkit-linux.json | 6 +- ...reaseIndentSingleBlock-chromium-linux.json | 6 +- ...creaseIndentSingleBlock-firefox-linux.json | 6 +- ...ncreaseIndentSingleBlock-webkit-linux.json | 6 +- ...ckspaceStartOfBlock-json-webkit-linux.json | 6 +- ...terPreservesMarks-json-chromium-linux.json | 2 +- ...nterPreservesMarks-json-firefox-linux.json | 2 +- ...enterPreservesMarks-json-webkit-linux.json | 2 +- ...ervesNestedBlocks-json-chromium-linux.json | 6 +- ...servesNestedBlocks-json-firefox-linux.json | 6 +- ...eservesNestedBlocks-json-webkit-linux.json | 6 +- ...SelectionNotEmpty-json-chromium-linux.json | 2 +- ...rSelectionNotEmpty-json-firefox-linux.json | 2 +- ...erSelectionNotEmpty-json-webkit-linux.json | 2 +- .../heading1Shortcut-json-chromium-linux.json | 2 +- .../heading1Shortcut-json-firefox-linux.json | 2 +- .../heading1Shortcut-json-webkit-linux.json | 2 +- .../heading2Shortcut-json-chromium-linux.json | 2 +- .../heading2Shortcut-json-firefox-linux.json | 2 +- .../heading2Shortcut-json-webkit-linux.json | 2 +- .../heading3Shortcut-json-chromium-linux.json | 2 +- .../heading3Shortcut-json-firefox-linux.json | 2 +- .../heading3Shortcut-json-webkit-linux.json | 2 +- .../shadcn-slash-menu-chromium-linux.png | Bin 58846 -> 58854 bytes .../shadcn-slash-menu-firefox-linux.png | Bin 92665 -> 92736 bytes .../shadcn-slash-menu-webkit-linux.png | Bin 187154 -> 187794 bytes .../docStructureSnapshot-chromium-linux.json | 6 +- .../docStructureSnapshot-firefox-linux.json | 6 +- .../docStructureSnapshot-webkit-linux.json | 6 +- .../slash-menu-end-product-chromium-linux.png | Bin 15815 -> 15818 bytes .../slash-menu-end-product-firefox-linux.png | Bin 36839 -> 36551 bytes .../slash-menu-end-product-webkit-linux.png | Bin 59068 -> 59025 bytes .../static-rendering-chromium-linux.png | Bin 10028 -> 9835 bytes .../static-rendering-firefox-linux.png | Bin 25690 -> 26284 bytes .../static-rendering-webkit-linux.png | Bin 30818 -> 30830 bytes .../dark-slash-menu-chromium-linux.png | Bin 56285 -> 56234 bytes .../dark-slash-menu-firefox-linux.png | Bin 81250 -> 81310 bytes .../dark-slash-menu-webkit-linux.png | Bin 172297 -> 172878 bytes .../__snapshots__/nodes/complex/misc.json | 2 +- .../__snapshots__/html/basicBlockTypes.json | 6 +- .../__snapshots__/html/deepNestedContent.json | 6 +- .../parse/__snapshots__/html/googleDocs.json | 6 +- .../parse/__snapshots__/html/notion.json | 6 +- .../html/paragraphHeadingListItem.json | 2 +- .../parse/__snapshots__/markdown/basic.json | 2 +- .../parse/__snapshots__/markdown/complex.json | 6 +- .../__snapshots__/markdown/issue226case1.json | 2 +- .../parse/__snapshots__/markdown/nested.json | 2 +- .../__snapshots__/end/basic.txt | 544 +++++++++--------- .../__snapshots__/start/basic.txt | 364 ++++++------ 187 files changed, 1045 insertions(+), 993 deletions(-) delete mode 100644 examples/06-custom-schema/06-togglable-blocks/README.md rename examples/06-custom-schema/{06-togglable-blocks => 06-toggleable-blocks}/.bnexample.json (100%) rename examples/06-custom-schema/{06-togglable-blocks => 06-toggleable-blocks}/App.tsx (100%) create mode 100644 examples/06-custom-schema/06-toggleable-blocks/README.md rename examples/06-custom-schema/{06-togglable-blocks => 06-toggleable-blocks}/Toggle.tsx (100%) rename examples/06-custom-schema/{06-togglable-blocks => 06-toggleable-blocks}/index.html (89%) rename examples/06-custom-schema/{06-togglable-blocks => 06-toggleable-blocks}/main.tsx (100%) rename examples/06-custom-schema/{06-togglable-blocks => 06-toggleable-blocks}/package.json (92%) rename examples/06-custom-schema/{06-togglable-blocks => 06-toggleable-blocks}/tsconfig.json (100%) rename examples/06-custom-schema/{06-togglable-blocks => 06-toggleable-blocks}/vite.config.ts (100%) diff --git a/examples/01-basic/04-default-blocks/App.tsx b/examples/01-basic/04-default-blocks/App.tsx index 63a28ff584..e3cae01647 100644 --- a/examples/01-basic/04-default-blocks/App.tsx +++ b/examples/01-basic/04-default-blocks/App.tsx @@ -34,7 +34,7 @@ export default function App() { }, { type: "heading", - props: { isTogglable: true }, + props: { isToggleable: true }, content: "Toggle Heading", }, { @@ -53,6 +53,10 @@ export default function App() { type: "checkListItem", content: "Check List Item", }, + { + type: "toggleListItem", + content: "Toggle List Item", + }, { type: "codeBlock", props: { language: "javascript" }, diff --git a/examples/06-custom-schema/06-togglable-blocks/README.md b/examples/06-custom-schema/06-togglable-blocks/README.md deleted file mode 100644 index aff02fb6b1..0000000000 --- a/examples/06-custom-schema/06-togglable-blocks/README.md +++ /dev/null @@ -1,8 +0,0 @@ -# Togglable Blocks - -This example shows how to create blocks with a toggle button to show/hide their children, like with the default toggle heading and list item blocks. This is done using the use the `ToggleWrapper` component from `@blocknote/react`. - -**Relevant Docs:** - -- [Custom Blocks](/docs/custom-schemas/custom-blocks) -- [Editor Setup](/docs/editor-basics/setup) diff --git a/examples/06-custom-schema/06-togglable-blocks/.bnexample.json b/examples/06-custom-schema/06-toggleable-blocks/.bnexample.json similarity index 100% rename from examples/06-custom-schema/06-togglable-blocks/.bnexample.json rename to examples/06-custom-schema/06-toggleable-blocks/.bnexample.json diff --git a/examples/06-custom-schema/06-togglable-blocks/App.tsx b/examples/06-custom-schema/06-toggleable-blocks/App.tsx similarity index 100% rename from examples/06-custom-schema/06-togglable-blocks/App.tsx rename to examples/06-custom-schema/06-toggleable-blocks/App.tsx diff --git a/examples/06-custom-schema/06-toggleable-blocks/README.md b/examples/06-custom-schema/06-toggleable-blocks/README.md new file mode 100644 index 0000000000..0c8ec86f71 --- /dev/null +++ b/examples/06-custom-schema/06-toggleable-blocks/README.md @@ -0,0 +1,9 @@ +# Toggleable Custom Blocks + +This example shows how to create custom blocks with a toggle button to show/hide their children, like with the default toggle heading and list item blocks. This is done using the use the `ToggleWrapper` component from `@blocknote/react`. + +**Relevant Docs:** + +- [Custom Blocks](/docs/custom-schemas/custom-blocks) +- [Editor Setup](/docs/editor-basics/setup) +- [Default Schema](/docs/editor-basics/default-schema) diff --git a/examples/06-custom-schema/06-togglable-blocks/Toggle.tsx b/examples/06-custom-schema/06-toggleable-blocks/Toggle.tsx similarity index 100% rename from examples/06-custom-schema/06-togglable-blocks/Toggle.tsx rename to examples/06-custom-schema/06-toggleable-blocks/Toggle.tsx diff --git a/examples/06-custom-schema/06-togglable-blocks/index.html b/examples/06-custom-schema/06-toggleable-blocks/index.html similarity index 89% rename from examples/06-custom-schema/06-togglable-blocks/index.html rename to examples/06-custom-schema/06-toggleable-blocks/index.html index f98e3f20c4..010b3479d6 100644 --- a/examples/06-custom-schema/06-togglable-blocks/index.html +++ b/examples/06-custom-schema/06-toggleable-blocks/index.html @@ -5,7 +5,7 @@ - Togglable Blocks + Toggleable Blocks
diff --git a/examples/06-custom-schema/06-togglable-blocks/main.tsx b/examples/06-custom-schema/06-toggleable-blocks/main.tsx similarity index 100% rename from examples/06-custom-schema/06-togglable-blocks/main.tsx rename to examples/06-custom-schema/06-toggleable-blocks/main.tsx diff --git a/examples/06-custom-schema/06-togglable-blocks/package.json b/examples/06-custom-schema/06-toggleable-blocks/package.json similarity index 92% rename from examples/06-custom-schema/06-togglable-blocks/package.json rename to examples/06-custom-schema/06-toggleable-blocks/package.json index f6bf82cac4..b93ea25044 100644 --- a/examples/06-custom-schema/06-togglable-blocks/package.json +++ b/examples/06-custom-schema/06-toggleable-blocks/package.json @@ -1,5 +1,5 @@ { - "name": "@blocknote/example-togglable-blocks", + "name": "@blocknote/example-toggleable-blocks", "description": "AUTO-GENERATED FILE, DO NOT EDIT DIRECTLY", "private": true, "version": "0.12.4", diff --git a/examples/06-custom-schema/06-togglable-blocks/tsconfig.json b/examples/06-custom-schema/06-toggleable-blocks/tsconfig.json similarity index 100% rename from examples/06-custom-schema/06-togglable-blocks/tsconfig.json rename to examples/06-custom-schema/06-toggleable-blocks/tsconfig.json diff --git a/examples/06-custom-schema/06-togglable-blocks/vite.config.ts b/examples/06-custom-schema/06-toggleable-blocks/vite.config.ts similarity index 100% rename from examples/06-custom-schema/06-togglable-blocks/vite.config.ts rename to examples/06-custom-schema/06-toggleable-blocks/vite.config.ts diff --git a/packages/core/src/api/blockManipulation/commands/insertBlocks/__snapshots__/insertBlocks.test.ts.snap b/packages/core/src/api/blockManipulation/commands/insertBlocks/__snapshots__/insertBlocks.test.ts.snap index 6681f1c203..dd575d1041 100644 --- a/packages/core/src/api/blockManipulation/commands/insertBlocks/__snapshots__/insertBlocks.test.ts.snap +++ b/packages/core/src/api/blockManipulation/commands/insertBlocks/__snapshots__/insertBlocks.test.ts.snap @@ -307,7 +307,7 @@ exports[`Test insertBlocks > Insert multiple blocks after 2`] = ` "id": "heading-0", "props": { "backgroundColor": "default", - "isTogglable": false, + "isToggleable": false, "level": 1, "textAlignment": "left", "textColor": "default", @@ -654,7 +654,7 @@ exports[`Test insertBlocks > Insert multiple blocks after 2`] = ` "id": "heading-with-everything", "props": { "backgroundColor": "red", - "isTogglable": false, + "isToggleable": false, "level": 2, "textAlignment": "center", "textColor": "red", @@ -982,7 +982,7 @@ exports[`Test insertBlocks > Insert multiple blocks before 2`] = ` "id": "heading-0", "props": { "backgroundColor": "default", - "isTogglable": false, + "isToggleable": false, "level": 1, "textAlignment": "left", "textColor": "default", @@ -1329,7 +1329,7 @@ exports[`Test insertBlocks > Insert multiple blocks before 2`] = ` "id": "heading-with-everything", "props": { "backgroundColor": "red", - "isTogglable": false, + "isToggleable": false, "level": 2, "textAlignment": "center", "textColor": "red", @@ -1577,7 +1577,7 @@ exports[`Test insertBlocks > Insert single basic block after 2`] = ` "id": "heading-0", "props": { "backgroundColor": "default", - "isTogglable": false, + "isToggleable": false, "level": 1, "textAlignment": "left", "textColor": "default", @@ -1924,7 +1924,7 @@ exports[`Test insertBlocks > Insert single basic block after 2`] = ` "id": "heading-with-everything", "props": { "backgroundColor": "red", - "isTogglable": false, + "isToggleable": false, "level": 2, "textAlignment": "center", "textColor": "red", @@ -2184,7 +2184,7 @@ exports[`Test insertBlocks > Insert single basic block before (without type) 2`] "id": "heading-0", "props": { "backgroundColor": "default", - "isTogglable": false, + "isToggleable": false, "level": 1, "textAlignment": "left", "textColor": "default", @@ -2531,7 +2531,7 @@ exports[`Test insertBlocks > Insert single basic block before (without type) 2`] "id": "heading-with-everything", "props": { "backgroundColor": "red", - "isTogglable": false, + "isToggleable": false, "level": 2, "textAlignment": "center", "textColor": "red", @@ -2779,7 +2779,7 @@ exports[`Test insertBlocks > Insert single basic block before 2`] = ` "id": "heading-0", "props": { "backgroundColor": "default", - "isTogglable": false, + "isToggleable": false, "level": 1, "textAlignment": "left", "textColor": "default", @@ -3126,7 +3126,7 @@ exports[`Test insertBlocks > Insert single basic block before 2`] = ` "id": "heading-with-everything", "props": { "backgroundColor": "red", - "isTogglable": false, + "isToggleable": false, "level": 2, "textAlignment": "center", "textColor": "red", @@ -3211,7 +3211,7 @@ exports[`Test insertBlocks > Insert single complex block after 1`] = ` "id": "inserted-heading-with-everything", "props": { "backgroundColor": "red", - "isTogglable": false, + "isToggleable": false, "level": 2, "textAlignment": "center", "textColor": "red", @@ -3302,7 +3302,7 @@ exports[`Test insertBlocks > Insert single complex block after 2`] = ` "id": "inserted-heading-with-everything", "props": { "backgroundColor": "red", - "isTogglable": false, + "isToggleable": false, "level": 2, "textAlignment": "center", "textColor": "red", @@ -3490,7 +3490,7 @@ exports[`Test insertBlocks > Insert single complex block after 2`] = ` "id": "heading-0", "props": { "backgroundColor": "default", - "isTogglable": false, + "isToggleable": false, "level": 1, "textAlignment": "left", "textColor": "default", @@ -3837,7 +3837,7 @@ exports[`Test insertBlocks > Insert single complex block after 2`] = ` "id": "heading-with-everything", "props": { "backgroundColor": "red", - "isTogglable": false, + "isToggleable": false, "level": 2, "textAlignment": "center", "textColor": "red", @@ -3922,7 +3922,7 @@ exports[`Test insertBlocks > Insert single complex block before 1`] = ` "id": "inserted-heading-with-everything", "props": { "backgroundColor": "red", - "isTogglable": false, + "isToggleable": false, "level": 2, "textAlignment": "center", "textColor": "red", @@ -3996,7 +3996,7 @@ exports[`Test insertBlocks > Insert single complex block before 2`] = ` "id": "inserted-heading-with-everything", "props": { "backgroundColor": "red", - "isTogglable": false, + "isToggleable": false, "level": 2, "textAlignment": "center", "textColor": "red", @@ -4201,7 +4201,7 @@ exports[`Test insertBlocks > Insert single complex block before 2`] = ` "id": "heading-0", "props": { "backgroundColor": "default", - "isTogglable": false, + "isToggleable": false, "level": 1, "textAlignment": "left", "textColor": "default", @@ -4548,7 +4548,7 @@ exports[`Test insertBlocks > Insert single complex block before 2`] = ` "id": "heading-with-everything", "props": { "backgroundColor": "red", - "isTogglable": false, + "isToggleable": false, "level": 2, "textAlignment": "center", "textColor": "red", diff --git a/packages/core/src/api/blockManipulation/commands/mergeBlocks/__snapshots__/mergeBlocks.test.ts.snap b/packages/core/src/api/blockManipulation/commands/mergeBlocks/__snapshots__/mergeBlocks.test.ts.snap index 175059d7d1..690c00017e 100644 --- a/packages/core/src/api/blockManipulation/commands/mergeBlocks/__snapshots__/mergeBlocks.test.ts.snap +++ b/packages/core/src/api/blockManipulation/commands/mergeBlocks/__snapshots__/mergeBlocks.test.ts.snap @@ -183,7 +183,7 @@ exports[`Test mergeBlocks > Basic 1`] = ` "id": "heading-0", "props": { "backgroundColor": "default", - "isTogglable": false, + "isToggleable": false, "level": 1, "textAlignment": "left", "textColor": "default", @@ -530,7 +530,7 @@ exports[`Test mergeBlocks > Basic 1`] = ` "id": "heading-with-everything", "props": { "backgroundColor": "red", - "isTogglable": false, + "isToggleable": false, "level": 2, "textAlignment": "center", "textColor": "red", @@ -751,7 +751,7 @@ exports[`Test mergeBlocks > Blocks have different types 1`] = ` "id": "heading-0", "props": { "backgroundColor": "default", - "isTogglable": false, + "isToggleable": false, "level": 1, "textAlignment": "left", "textColor": "default", @@ -1081,7 +1081,7 @@ exports[`Test mergeBlocks > Blocks have different types 1`] = ` "id": "heading-with-everything", "props": { "backgroundColor": "red", - "isTogglable": false, + "isToggleable": false, "level": 2, "textAlignment": "center", "textColor": "red", @@ -1285,7 +1285,7 @@ exports[`Test mergeBlocks > First block has children 1`] = ` "id": "heading-0", "props": { "backgroundColor": "default", - "isTogglable": false, + "isToggleable": false, "level": 1, "textAlignment": "left", "textColor": "default", @@ -1632,7 +1632,7 @@ exports[`Test mergeBlocks > First block has children 1`] = ` "id": "heading-with-everything", "props": { "backgroundColor": "red", - "isTogglable": false, + "isToggleable": false, "level": 2, "textAlignment": "center", "textColor": "red", @@ -1835,7 +1835,7 @@ exports[`Test mergeBlocks > Second block has children 1`] = ` "id": "heading-0", "props": { "backgroundColor": "default", - "isTogglable": false, + "isToggleable": false, "level": 1, "textAlignment": "left", "textColor": "default", @@ -2182,7 +2182,7 @@ exports[`Test mergeBlocks > Second block has children 1`] = ` "id": "heading-with-everything", "props": { "backgroundColor": "red", - "isTogglable": false, + "isToggleable": false, "level": 2, "textAlignment": "center", "textColor": "red", @@ -2403,7 +2403,7 @@ exports[`Test mergeBlocks > Second block is empty 1`] = ` "id": "heading-0", "props": { "backgroundColor": "default", - "isTogglable": false, + "isToggleable": false, "level": 1, "textAlignment": "left", "textColor": "default", @@ -2739,7 +2739,7 @@ exports[`Test mergeBlocks > Second block is empty 1`] = ` "id": "heading-with-everything", "props": { "backgroundColor": "red", - "isTogglable": false, + "isToggleable": false, "level": 2, "textAlignment": "center", "textColor": "red", diff --git a/packages/core/src/api/blockManipulation/commands/moveBlocks/__snapshots__/moveBlocks.test.ts.snap b/packages/core/src/api/blockManipulation/commands/moveBlocks/__snapshots__/moveBlocks.test.ts.snap index efe9278694..902463bbc1 100644 --- a/packages/core/src/api/blockManipulation/commands/moveBlocks/__snapshots__/moveBlocks.test.ts.snap +++ b/packages/core/src/api/blockManipulation/commands/moveBlocks/__snapshots__/moveBlocks.test.ts.snap @@ -200,7 +200,7 @@ exports[`Test moveBlocksDown > Basic 1`] = ` "id": "heading-0", "props": { "backgroundColor": "default", - "isTogglable": false, + "isToggleable": false, "level": 1, "textAlignment": "left", "textColor": "default", @@ -547,7 +547,7 @@ exports[`Test moveBlocksDown > Basic 1`] = ` "id": "heading-with-everything", "props": { "backgroundColor": "red", - "isTogglable": false, + "isToggleable": false, "level": 2, "textAlignment": "center", "textColor": "red", @@ -768,7 +768,7 @@ exports[`Test moveBlocksDown > Into children 1`] = ` "id": "heading-0", "props": { "backgroundColor": "default", - "isTogglable": false, + "isToggleable": false, "level": 1, "textAlignment": "left", "textColor": "default", @@ -1115,7 +1115,7 @@ exports[`Test moveBlocksDown > Into children 1`] = ` "id": "heading-with-everything", "props": { "backgroundColor": "red", - "isTogglable": false, + "isToggleable": false, "level": 2, "textAlignment": "center", "textColor": "red", @@ -1336,7 +1336,7 @@ exports[`Test moveBlocksDown > Last block 1`] = ` "id": "heading-0", "props": { "backgroundColor": "default", - "isTogglable": false, + "isToggleable": false, "level": 1, "textAlignment": "left", "textColor": "default", @@ -1683,7 +1683,7 @@ exports[`Test moveBlocksDown > Last block 1`] = ` "id": "heading-with-everything", "props": { "backgroundColor": "red", - "isTogglable": false, + "isToggleable": false, "level": 2, "textAlignment": "center", "textColor": "red", @@ -1904,7 +1904,7 @@ exports[`Test moveBlocksDown > Multiple blocks 1`] = ` "id": "heading-0", "props": { "backgroundColor": "default", - "isTogglable": false, + "isToggleable": false, "level": 1, "textAlignment": "left", "textColor": "default", @@ -2251,7 +2251,7 @@ exports[`Test moveBlocksDown > Multiple blocks 1`] = ` "id": "heading-with-everything", "props": { "backgroundColor": "red", - "isTogglable": false, + "isToggleable": false, "level": 2, "textAlignment": "center", "textColor": "red", @@ -2472,7 +2472,7 @@ exports[`Test moveBlocksDown > Multiple blocks ending in block with children 1`] "id": "heading-0", "props": { "backgroundColor": "default", - "isTogglable": false, + "isToggleable": false, "level": 1, "textAlignment": "left", "textColor": "default", @@ -2819,7 +2819,7 @@ exports[`Test moveBlocksDown > Multiple blocks ending in block with children 1`] "id": "heading-with-everything", "props": { "backgroundColor": "red", - "isTogglable": false, + "isToggleable": false, "level": 2, "textAlignment": "center", "textColor": "red", @@ -3040,7 +3040,7 @@ exports[`Test moveBlocksDown > Multiple blocks ending in nested block 1`] = ` "id": "heading-0", "props": { "backgroundColor": "default", - "isTogglable": false, + "isToggleable": false, "level": 1, "textAlignment": "left", "textColor": "default", @@ -3387,7 +3387,7 @@ exports[`Test moveBlocksDown > Multiple blocks ending in nested block 1`] = ` "id": "heading-with-everything", "props": { "backgroundColor": "red", - "isTogglable": false, + "isToggleable": false, "level": 2, "textAlignment": "center", "textColor": "red", @@ -3618,7 +3618,7 @@ exports[`Test moveBlocksDown > Multiple blocks starting and ending in nested blo "id": "heading-0", "props": { "backgroundColor": "default", - "isTogglable": false, + "isToggleable": false, "level": 1, "textAlignment": "left", "textColor": "default", @@ -3965,7 +3965,7 @@ exports[`Test moveBlocksDown > Multiple blocks starting and ending in nested blo "id": "heading-with-everything", "props": { "backgroundColor": "red", - "isTogglable": false, + "isToggleable": false, "level": 2, "textAlignment": "center", "textColor": "red", @@ -4186,7 +4186,7 @@ exports[`Test moveBlocksDown > Multiple blocks starting in block with children 1 "id": "heading-0", "props": { "backgroundColor": "default", - "isTogglable": false, + "isToggleable": false, "level": 1, "textAlignment": "left", "textColor": "default", @@ -4533,7 +4533,7 @@ exports[`Test moveBlocksDown > Multiple blocks starting in block with children 1 "id": "heading-with-everything", "props": { "backgroundColor": "red", - "isTogglable": false, + "isToggleable": false, "level": 2, "textAlignment": "center", "textColor": "red", @@ -4753,7 +4753,7 @@ exports[`Test moveBlocksDown > Multiple blocks starting in nested block 1`] = ` "id": "heading-0", "props": { "backgroundColor": "default", - "isTogglable": false, + "isToggleable": false, "level": 1, "textAlignment": "left", "textColor": "default", @@ -5100,7 +5100,7 @@ exports[`Test moveBlocksDown > Multiple blocks starting in nested block 1`] = ` "id": "heading-with-everything", "props": { "backgroundColor": "red", - "isTogglable": false, + "isToggleable": false, "level": 2, "textAlignment": "center", "textColor": "red", @@ -5321,7 +5321,7 @@ exports[`Test moveBlocksDown > Out of children 1`] = ` "id": "heading-0", "props": { "backgroundColor": "default", - "isTogglable": false, + "isToggleable": false, "level": 1, "textAlignment": "left", "textColor": "default", @@ -5632,7 +5632,7 @@ exports[`Test moveBlocksDown > Out of children 1`] = ` "id": "heading-with-everything", "props": { "backgroundColor": "red", - "isTogglable": false, + "isToggleable": false, "level": 2, "textAlignment": "center", "textColor": "red", @@ -5888,7 +5888,7 @@ exports[`Test moveBlocksUp > Basic 1`] = ` "id": "heading-0", "props": { "backgroundColor": "default", - "isTogglable": false, + "isToggleable": false, "level": 1, "textAlignment": "left", "textColor": "default", @@ -6235,7 +6235,7 @@ exports[`Test moveBlocksUp > Basic 1`] = ` "id": "heading-with-everything", "props": { "backgroundColor": "red", - "isTogglable": false, + "isToggleable": false, "level": 2, "textAlignment": "center", "textColor": "red", @@ -6456,7 +6456,7 @@ exports[`Test moveBlocksUp > First block 1`] = ` "id": "heading-0", "props": { "backgroundColor": "default", - "isTogglable": false, + "isToggleable": false, "level": 1, "textAlignment": "left", "textColor": "default", @@ -6803,7 +6803,7 @@ exports[`Test moveBlocksUp > First block 1`] = ` "id": "heading-with-everything", "props": { "backgroundColor": "red", - "isTogglable": false, + "isToggleable": false, "level": 2, "textAlignment": "center", "textColor": "red", @@ -7024,7 +7024,7 @@ exports[`Test moveBlocksUp > Into children 1`] = ` "id": "heading-0", "props": { "backgroundColor": "default", - "isTogglable": false, + "isToggleable": false, "level": 1, "textAlignment": "left", "textColor": "default", @@ -7371,7 +7371,7 @@ exports[`Test moveBlocksUp > Into children 1`] = ` "id": "heading-with-everything", "props": { "backgroundColor": "red", - "isTogglable": false, + "isToggleable": false, "level": 2, "textAlignment": "center", "textColor": "red", @@ -7592,7 +7592,7 @@ exports[`Test moveBlocksUp > Multiple blocks 1`] = ` "id": "heading-0", "props": { "backgroundColor": "default", - "isTogglable": false, + "isToggleable": false, "level": 1, "textAlignment": "left", "textColor": "default", @@ -7939,7 +7939,7 @@ exports[`Test moveBlocksUp > Multiple blocks 1`] = ` "id": "heading-with-everything", "props": { "backgroundColor": "red", - "isTogglable": false, + "isToggleable": false, "level": 2, "textAlignment": "center", "textColor": "red", @@ -8160,7 +8160,7 @@ exports[`Test moveBlocksUp > Multiple blocks ending in block with children 1`] = "id": "heading-0", "props": { "backgroundColor": "default", - "isTogglable": false, + "isToggleable": false, "level": 1, "textAlignment": "left", "textColor": "default", @@ -8507,7 +8507,7 @@ exports[`Test moveBlocksUp > Multiple blocks ending in block with children 1`] = "id": "heading-with-everything", "props": { "backgroundColor": "red", - "isTogglable": false, + "isToggleable": false, "level": 2, "textAlignment": "center", "textColor": "red", @@ -8728,7 +8728,7 @@ exports[`Test moveBlocksUp > Multiple blocks ending in nested block 1`] = ` "id": "heading-0", "props": { "backgroundColor": "default", - "isTogglable": false, + "isToggleable": false, "level": 1, "textAlignment": "left", "textColor": "default", @@ -9075,7 +9075,7 @@ exports[`Test moveBlocksUp > Multiple blocks ending in nested block 1`] = ` "id": "heading-with-everything", "props": { "backgroundColor": "red", - "isTogglable": false, + "isToggleable": false, "level": 2, "textAlignment": "center", "textColor": "red", @@ -9278,7 +9278,7 @@ exports[`Test moveBlocksUp > Multiple blocks starting and ending in nested block "id": "heading-0", "props": { "backgroundColor": "default", - "isTogglable": false, + "isToggleable": false, "level": 1, "textAlignment": "left", "textColor": "default", @@ -9625,7 +9625,7 @@ exports[`Test moveBlocksUp > Multiple blocks starting and ending in nested block "id": "heading-with-everything", "props": { "backgroundColor": "red", - "isTogglable": false, + "isToggleable": false, "level": 2, "textAlignment": "center", "textColor": "red", @@ -9863,7 +9863,7 @@ exports[`Test moveBlocksUp > Multiple blocks starting in block with children 1`] "id": "heading-0", "props": { "backgroundColor": "default", - "isTogglable": false, + "isToggleable": false, "level": 1, "textAlignment": "left", "textColor": "default", @@ -10210,7 +10210,7 @@ exports[`Test moveBlocksUp > Multiple blocks starting in block with children 1`] "id": "heading-with-everything", "props": { "backgroundColor": "red", - "isTogglable": false, + "isToggleable": false, "level": 2, "textAlignment": "center", "textColor": "red", @@ -10430,7 +10430,7 @@ exports[`Test moveBlocksUp > Multiple blocks starting in nested block 1`] = ` "id": "heading-0", "props": { "backgroundColor": "default", - "isTogglable": false, + "isToggleable": false, "level": 1, "textAlignment": "left", "textColor": "default", @@ -10777,7 +10777,7 @@ exports[`Test moveBlocksUp > Multiple blocks starting in nested block 1`] = ` "id": "heading-with-everything", "props": { "backgroundColor": "red", - "isTogglable": false, + "isToggleable": false, "level": 2, "textAlignment": "center", "textColor": "red", @@ -10998,7 +10998,7 @@ exports[`Test moveBlocksUp > Out of children 1`] = ` "id": "heading-0", "props": { "backgroundColor": "default", - "isTogglable": false, + "isToggleable": false, "level": 1, "textAlignment": "left", "textColor": "default", @@ -11344,7 +11344,7 @@ exports[`Test moveBlocksUp > Out of children 1`] = ` "id": "heading-with-everything", "props": { "backgroundColor": "red", - "isTogglable": false, + "isToggleable": false, "level": 2, "textAlignment": "center", "textColor": "red", diff --git a/packages/core/src/api/blockManipulation/commands/replaceBlocks/__snapshots__/replaceBlocks.test.ts.snap b/packages/core/src/api/blockManipulation/commands/replaceBlocks/__snapshots__/replaceBlocks.test.ts.snap index 94c09c5d21..d255acf235 100644 --- a/packages/core/src/api/blockManipulation/commands/replaceBlocks/__snapshots__/replaceBlocks.test.ts.snap +++ b/packages/core/src/api/blockManipulation/commands/replaceBlocks/__snapshots__/replaceBlocks.test.ts.snap @@ -113,7 +113,7 @@ exports[`Test replaceBlocks > Remove multiple consecutive blocks 1`] = ` "id": "heading-0", "props": { "backgroundColor": "default", - "isTogglable": false, + "isToggleable": false, "level": 1, "textAlignment": "left", "textColor": "default", @@ -460,7 +460,7 @@ exports[`Test replaceBlocks > Remove multiple consecutive blocks 1`] = ` "id": "heading-with-everything", "props": { "backgroundColor": "red", - "isTogglable": false, + "isToggleable": false, "level": 2, "textAlignment": "center", "textColor": "red", @@ -664,7 +664,7 @@ exports[`Test replaceBlocks > Remove multiple non-consecutive blocks 1`] = ` "id": "heading-0", "props": { "backgroundColor": "default", - "isTogglable": false, + "isToggleable": false, "level": 1, "textAlignment": "left", "textColor": "default", @@ -961,7 +961,7 @@ exports[`Test replaceBlocks > Remove single block 1`] = ` "id": "heading-0", "props": { "backgroundColor": "default", - "isTogglable": false, + "isToggleable": false, "level": 1, "textAlignment": "left", "textColor": "default", @@ -1308,7 +1308,7 @@ exports[`Test replaceBlocks > Remove single block 1`] = ` "id": "heading-with-everything", "props": { "backgroundColor": "red", - "isTogglable": false, + "isToggleable": false, "level": 2, "textAlignment": "center", "textColor": "red", @@ -1493,7 +1493,7 @@ exports[`Test replaceBlocks > Replace multiple consecutive blocks with multiple "id": "heading-0", "props": { "backgroundColor": "default", - "isTogglable": false, + "isToggleable": false, "level": 1, "textAlignment": "left", "textColor": "default", @@ -1840,7 +1840,7 @@ exports[`Test replaceBlocks > Replace multiple consecutive blocks with multiple "id": "heading-with-everything", "props": { "backgroundColor": "red", - "isTogglable": false, + "isToggleable": false, "level": 2, "textAlignment": "center", "textColor": "red", @@ -1985,7 +1985,7 @@ exports[`Test replaceBlocks > Replace multiple consecutive blocks with single ba "id": "heading-0", "props": { "backgroundColor": "default", - "isTogglable": false, + "isToggleable": false, "level": 1, "textAlignment": "left", "textColor": "default", @@ -2332,7 +2332,7 @@ exports[`Test replaceBlocks > Replace multiple consecutive blocks with single ba "id": "heading-with-everything", "props": { "backgroundColor": "red", - "isTogglable": false, + "isToggleable": false, "level": 2, "textAlignment": "center", "textColor": "red", @@ -2417,7 +2417,7 @@ exports[`Test replaceBlocks > Replace multiple consecutive blocks with single co "id": "inserted-heading-with-everything", "props": { "backgroundColor": "red", - "isTogglable": false, + "isToggleable": false, "level": 2, "textAlignment": "center", "textColor": "red", @@ -2535,7 +2535,7 @@ exports[`Test replaceBlocks > Replace multiple consecutive blocks with single co "id": "heading-0", "props": { "backgroundColor": "default", - "isTogglable": false, + "isToggleable": false, "level": 1, "textAlignment": "left", "textColor": "default", @@ -2882,7 +2882,7 @@ exports[`Test replaceBlocks > Replace multiple consecutive blocks with single co "id": "heading-with-everything", "props": { "backgroundColor": "red", - "isTogglable": false, + "isToggleable": false, "level": 2, "textAlignment": "center", "textColor": "red", @@ -3137,7 +3137,7 @@ exports[`Test replaceBlocks > Replace multiple non-consecutive blocks with multi "id": "heading-0", "props": { "backgroundColor": "default", - "isTogglable": false, + "isToggleable": false, "level": 1, "textAlignment": "left", "textColor": "default", @@ -3445,7 +3445,7 @@ exports[`Test replaceBlocks > Replace multiple non-consecutive blocks with singl "id": "heading-0", "props": { "backgroundColor": "default", - "isTogglable": false, + "isToggleable": false, "level": 1, "textAlignment": "left", "textColor": "default", @@ -3623,7 +3623,7 @@ exports[`Test replaceBlocks > Replace multiple non-consecutive blocks with singl "id": "inserted-heading-with-everything", "props": { "backgroundColor": "red", - "isTogglable": false, + "isToggleable": false, "level": 2, "textAlignment": "center", "textColor": "red", @@ -3811,7 +3811,7 @@ exports[`Test replaceBlocks > Replace multiple non-consecutive blocks with singl "id": "heading-0", "props": { "backgroundColor": "default", - "isTogglable": false, + "isToggleable": false, "level": 1, "textAlignment": "left", "textColor": "default", @@ -4159,7 +4159,7 @@ exports[`Test replaceBlocks > Replace single block with multiple 1`] = ` "id": "heading-0", "props": { "backgroundColor": "default", - "isTogglable": false, + "isToggleable": false, "level": 1, "textAlignment": "left", "textColor": "default", @@ -4506,7 +4506,7 @@ exports[`Test replaceBlocks > Replace single block with multiple 1`] = ` "id": "heading-with-everything", "props": { "backgroundColor": "red", - "isTogglable": false, + "isToggleable": false, "level": 2, "textAlignment": "center", "textColor": "red", @@ -4721,7 +4721,7 @@ exports[`Test replaceBlocks > Replace single block with single basic 1`] = ` "id": "heading-0", "props": { "backgroundColor": "default", - "isTogglable": false, + "isToggleable": false, "level": 1, "textAlignment": "left", "textColor": "default", @@ -5068,7 +5068,7 @@ exports[`Test replaceBlocks > Replace single block with single basic 1`] = ` "id": "heading-with-everything", "props": { "backgroundColor": "red", - "isTogglable": false, + "isToggleable": false, "level": 2, "textAlignment": "center", "textColor": "red", @@ -5153,7 +5153,7 @@ exports[`Test replaceBlocks > Replace single block with single complex 1`] = ` "id": "inserted-heading-with-everything", "props": { "backgroundColor": "red", - "isTogglable": false, + "isToggleable": false, "level": 2, "textAlignment": "center", "textColor": "red", @@ -5341,7 +5341,7 @@ exports[`Test replaceBlocks > Replace single block with single complex 1`] = ` "id": "heading-0", "props": { "backgroundColor": "default", - "isTogglable": false, + "isToggleable": false, "level": 1, "textAlignment": "left", "textColor": "default", @@ -5688,7 +5688,7 @@ exports[`Test replaceBlocks > Replace single block with single complex 1`] = ` "id": "heading-with-everything", "props": { "backgroundColor": "red", - "isTogglable": false, + "isToggleable": false, "level": 2, "textAlignment": "center", "textColor": "red", diff --git a/packages/core/src/api/blockManipulation/commands/splitBlock/__snapshots__/splitBlock.test.ts.snap b/packages/core/src/api/blockManipulation/commands/splitBlock/__snapshots__/splitBlock.test.ts.snap index 35b88656b0..60c3d1c1ed 100644 --- a/packages/core/src/api/blockManipulation/commands/splitBlock/__snapshots__/splitBlock.test.ts.snap +++ b/packages/core/src/api/blockManipulation/commands/splitBlock/__snapshots__/splitBlock.test.ts.snap @@ -217,7 +217,7 @@ exports[`Test splitBlocks > Basic 1`] = ` "id": "heading-0", "props": { "backgroundColor": "default", - "isTogglable": false, + "isToggleable": false, "level": 1, "textAlignment": "left", "textColor": "default", @@ -564,7 +564,7 @@ exports[`Test splitBlocks > Basic 1`] = ` "id": "heading-with-everything", "props": { "backgroundColor": "red", - "isTogglable": false, + "isToggleable": false, "level": 2, "textAlignment": "center", "textColor": "red", @@ -802,7 +802,7 @@ exports[`Test splitBlocks > Block has children 1`] = ` "id": "heading-0", "props": { "backgroundColor": "default", - "isTogglable": false, + "isToggleable": false, "level": 1, "textAlignment": "left", "textColor": "default", @@ -1149,7 +1149,7 @@ exports[`Test splitBlocks > Block has children 1`] = ` "id": "heading-with-everything", "props": { "backgroundColor": "red", - "isTogglable": false, + "isToggleable": false, "level": 2, "textAlignment": "center", "textColor": "red", @@ -1387,7 +1387,7 @@ exports[`Test splitBlocks > Don't keep props 1`] = ` "id": "heading-0", "props": { "backgroundColor": "default", - "isTogglable": false, + "isToggleable": false, "level": 1, "textAlignment": "left", "textColor": "default", @@ -1734,7 +1734,7 @@ exports[`Test splitBlocks > Don't keep props 1`] = ` "id": "heading-with-everything", "props": { "backgroundColor": "red", - "isTogglable": false, + "isToggleable": false, "level": 2, "textAlignment": "center", "textColor": "red", @@ -1955,7 +1955,7 @@ exports[`Test splitBlocks > Don't keep type 1`] = ` "id": "heading-0", "props": { "backgroundColor": "default", - "isTogglable": false, + "isToggleable": false, "level": 1, "textAlignment": "left", "textColor": "default", @@ -2319,7 +2319,7 @@ exports[`Test splitBlocks > Don't keep type 1`] = ` "id": "heading-with-everything", "props": { "backgroundColor": "red", - "isTogglable": false, + "isToggleable": false, "level": 2, "textAlignment": "center", "textColor": "red", @@ -2551,7 +2551,7 @@ exports[`Test splitBlocks > End of content 1`] = ` "id": "heading-0", "props": { "backgroundColor": "default", - "isTogglable": false, + "isToggleable": false, "level": 1, "textAlignment": "left", "textColor": "default", @@ -2898,7 +2898,7 @@ exports[`Test splitBlocks > End of content 1`] = ` "id": "heading-with-everything", "props": { "backgroundColor": "red", - "isTogglable": false, + "isToggleable": false, "level": 2, "textAlignment": "center", "textColor": "red", @@ -3119,7 +3119,7 @@ exports[`Test splitBlocks > Keep type 1`] = ` "id": "heading-0", "props": { "backgroundColor": "default", - "isTogglable": false, + "isToggleable": false, "level": 1, "textAlignment": "left", "textColor": "default", @@ -3138,7 +3138,7 @@ exports[`Test splitBlocks > Keep type 1`] = ` "id": "0", "props": { "backgroundColor": "default", - "isTogglable": false, + "isToggleable": false, "level": 1, "textAlignment": "left", "textColor": "default", @@ -3485,7 +3485,7 @@ exports[`Test splitBlocks > Keep type 1`] = ` "id": "heading-with-everything", "props": { "backgroundColor": "red", - "isTogglable": false, + "isToggleable": false, "level": 2, "textAlignment": "center", "textColor": "red", diff --git a/packages/core/src/api/blockManipulation/commands/updateBlock/__snapshots__/updateBlock.test.ts.snap b/packages/core/src/api/blockManipulation/commands/updateBlock/__snapshots__/updateBlock.test.ts.snap index 8c88b66d2f..3246168815 100644 --- a/packages/core/src/api/blockManipulation/commands/updateBlock/__snapshots__/updateBlock.test.ts.snap +++ b/packages/core/src/api/blockManipulation/commands/updateBlock/__snapshots__/updateBlock.test.ts.snap @@ -63,7 +63,7 @@ exports[`Test updateBlock > Revert all props 1`] = ` "id": "heading-with-everything", "props": { "backgroundColor": "default", - "isTogglable": false, + "isToggleable": false, "level": 1, "textAlignment": "left", "textColor": "default", @@ -272,7 +272,7 @@ exports[`Test updateBlock > Revert all props 2`] = ` "id": "heading-0", "props": { "backgroundColor": "default", - "isTogglable": false, + "isToggleable": false, "level": 1, "textAlignment": "left", "textColor": "default", @@ -619,7 +619,7 @@ exports[`Test updateBlock > Revert all props 2`] = ` "id": "heading-with-everything", "props": { "backgroundColor": "default", - "isTogglable": false, + "isToggleable": false, "level": 1, "textAlignment": "left", "textColor": "default", @@ -703,7 +703,7 @@ exports[`Test updateBlock > Revert single prop 1`] = ` "id": "heading-with-everything", "props": { "backgroundColor": "red", - "isTogglable": false, + "isToggleable": false, "level": 1, "textAlignment": "center", "textColor": "red", @@ -912,7 +912,7 @@ exports[`Test updateBlock > Revert single prop 2`] = ` "id": "heading-0", "props": { "backgroundColor": "default", - "isTogglable": false, + "isToggleable": false, "level": 1, "textAlignment": "left", "textColor": "default", @@ -1259,7 +1259,7 @@ exports[`Test updateBlock > Revert single prop 2`] = ` "id": "heading-with-everything", "props": { "backgroundColor": "red", - "isTogglable": false, + "isToggleable": false, "level": 1, "textAlignment": "center", "textColor": "red", @@ -1343,7 +1343,7 @@ exports[`Test updateBlock > Update all props 1`] = ` "id": "heading-with-everything", "props": { "backgroundColor": "blue", - "isTogglable": false, + "isToggleable": false, "level": 3, "textAlignment": "right", "textColor": "blue", @@ -1552,7 +1552,7 @@ exports[`Test updateBlock > Update all props 2`] = ` "id": "heading-0", "props": { "backgroundColor": "default", - "isTogglable": false, + "isToggleable": false, "level": 1, "textAlignment": "left", "textColor": "default", @@ -1899,7 +1899,7 @@ exports[`Test updateBlock > Update all props 2`] = ` "id": "heading-with-everything", "props": { "backgroundColor": "blue", - "isTogglable": false, + "isToggleable": false, "level": 3, "textAlignment": "right", "textColor": "blue", @@ -1983,7 +1983,7 @@ exports[`Test updateBlock > Update children 1`] = ` "id": "heading-with-everything", "props": { "backgroundColor": "red", - "isTogglable": false, + "isToggleable": false, "level": 2, "textAlignment": "center", "textColor": "red", @@ -2192,7 +2192,7 @@ exports[`Test updateBlock > Update children 2`] = ` "id": "heading-0", "props": { "backgroundColor": "default", - "isTogglable": false, + "isToggleable": false, "level": 1, "textAlignment": "left", "textColor": "default", @@ -2539,7 +2539,7 @@ exports[`Test updateBlock > Update children 2`] = ` "id": "heading-with-everything", "props": { "backgroundColor": "red", - "isTogglable": false, + "isToggleable": false, "level": 2, "textAlignment": "center", "textColor": "red", @@ -2774,7 +2774,7 @@ exports[`Test updateBlock > Update inline content to no content 2`] = ` "id": "heading-0", "props": { "backgroundColor": "default", - "isTogglable": false, + "isToggleable": false, "level": 1, "textAlignment": "left", "textColor": "default", @@ -3121,7 +3121,7 @@ exports[`Test updateBlock > Update inline content to no content 2`] = ` "id": "heading-with-everything", "props": { "backgroundColor": "red", - "isTogglable": false, + "isToggleable": false, "level": 2, "textAlignment": "center", "textColor": "red", @@ -3698,7 +3698,7 @@ exports[`Test updateBlock > Update inline content to table content 2`] = ` "id": "heading-0", "props": { "backgroundColor": "default", - "isTogglable": false, + "isToggleable": false, "level": 1, "textAlignment": "left", "textColor": "default", @@ -4045,7 +4045,7 @@ exports[`Test updateBlock > Update inline content to table content 2`] = ` "id": "heading-with-everything", "props": { "backgroundColor": "red", - "isTogglable": false, + "isToggleable": false, "level": 2, "textAlignment": "center", "textColor": "red", @@ -4280,7 +4280,7 @@ exports[`Test updateBlock > Update no content to empty inline content 2`] = ` "id": "heading-0", "props": { "backgroundColor": "default", - "isTogglable": false, + "isToggleable": false, "level": 1, "textAlignment": "left", "textColor": "default", @@ -4624,7 +4624,7 @@ exports[`Test updateBlock > Update no content to empty inline content 2`] = ` "id": "heading-with-everything", "props": { "backgroundColor": "red", - "isTogglable": false, + "isToggleable": false, "level": 2, "textAlignment": "center", "textColor": "red", @@ -4863,7 +4863,7 @@ exports[`Test updateBlock > Update no content to empty table content 2`] = ` "id": "heading-0", "props": { "backgroundColor": "default", - "isTogglable": false, + "isToggleable": false, "level": 1, "textAlignment": "left", "textColor": "default", @@ -5207,7 +5207,7 @@ exports[`Test updateBlock > Update no content to empty table content 2`] = ` "id": "heading-with-everything", "props": { "backgroundColor": "red", - "isTogglable": false, + "isToggleable": false, "level": 2, "textAlignment": "center", "textColor": "red", @@ -5448,7 +5448,7 @@ exports[`Test updateBlock > Update no content to inline content 2`] = ` "id": "heading-0", "props": { "backgroundColor": "default", - "isTogglable": false, + "isToggleable": false, "level": 1, "textAlignment": "left", "textColor": "default", @@ -5798,7 +5798,7 @@ exports[`Test updateBlock > Update no content to inline content 2`] = ` "id": "heading-with-everything", "props": { "backgroundColor": "red", - "isTogglable": false, + "isToggleable": false, "level": 2, "textAlignment": "center", "textColor": "red", @@ -6207,7 +6207,7 @@ exports[`Test updateBlock > Update no content to table content 2`] = ` "id": "heading-0", "props": { "backgroundColor": "default", - "isTogglable": false, + "isToggleable": false, "level": 1, "textAlignment": "left", "textColor": "default", @@ -6725,7 +6725,7 @@ exports[`Test updateBlock > Update no content to table content 2`] = ` "id": "heading-with-everything", "props": { "backgroundColor": "red", - "isTogglable": false, + "isToggleable": false, "level": 2, "textAlignment": "center", "textColor": "red", @@ -6946,7 +6946,7 @@ exports[`Test updateBlock > Update partial (offset start + end) 1`] = ` "id": "heading-0", "props": { "backgroundColor": "default", - "isTogglable": false, + "isToggleable": false, "level": 1, "textAlignment": "left", "textColor": "default", @@ -7293,7 +7293,7 @@ exports[`Test updateBlock > Update partial (offset start + end) 1`] = ` "id": "heading-with-everything", "props": { "backgroundColor": "red", - "isTogglable": false, + "isToggleable": false, "level": 2, "textAlignment": "center", "textColor": "red", @@ -7514,7 +7514,7 @@ exports[`Test updateBlock > Update partial (offset start) 1`] = ` "id": "heading-0", "props": { "backgroundColor": "default", - "isTogglable": false, + "isToggleable": false, "level": 1, "textAlignment": "left", "textColor": "default", @@ -7854,7 +7854,7 @@ exports[`Test updateBlock > Update partial (offset start) 1`] = ` "id": "heading-with-everything", "props": { "backgroundColor": "red", - "isTogglable": false, + "isToggleable": false, "level": 2, "textAlignment": "center", "textColor": "red", @@ -8075,7 +8075,7 @@ exports[`Test updateBlock > Update partial (props + offset end) 1`] = ` "id": "heading-0", "props": { "backgroundColor": "default", - "isTogglable": false, + "isToggleable": false, "level": 1, "textAlignment": "left", "textColor": "default", @@ -8415,7 +8415,7 @@ exports[`Test updateBlock > Update partial (props + offset end) 1`] = ` "id": "heading-with-everything", "props": { "backgroundColor": "red", - "isTogglable": false, + "isToggleable": false, "level": 1, "textAlignment": "center", "textColor": "red", @@ -8636,7 +8636,7 @@ exports[`Test updateBlock > Update partial (table cell) 1`] = ` "id": "heading-0", "props": { "backgroundColor": "default", - "isTogglable": false, + "isToggleable": false, "level": 1, "textAlignment": "left", "textColor": "default", @@ -8983,7 +8983,7 @@ exports[`Test updateBlock > Update partial (table cell) 1`] = ` "id": "heading-with-everything", "props": { "backgroundColor": "red", - "isTogglable": false, + "isToggleable": false, "level": 2, "textAlignment": "center", "textColor": "red", @@ -9204,7 +9204,7 @@ exports[`Test updateBlock > Update partial (table row) 1`] = ` "id": "heading-0", "props": { "backgroundColor": "default", - "isTogglable": false, + "isToggleable": false, "level": 1, "textAlignment": "left", "textColor": "default", @@ -9551,7 +9551,7 @@ exports[`Test updateBlock > Update partial (table row) 1`] = ` "id": "heading-with-everything", "props": { "backgroundColor": "red", - "isTogglable": false, + "isToggleable": false, "level": 2, "textAlignment": "center", "textColor": "red", @@ -9635,7 +9635,7 @@ exports[`Test updateBlock > Update single prop 1`] = ` "id": "heading-with-everything", "props": { "backgroundColor": "red", - "isTogglable": false, + "isToggleable": false, "level": 3, "textAlignment": "center", "textColor": "red", @@ -9844,7 +9844,7 @@ exports[`Test updateBlock > Update single prop 2`] = ` "id": "heading-0", "props": { "backgroundColor": "default", - "isTogglable": false, + "isToggleable": false, "level": 1, "textAlignment": "left", "textColor": "default", @@ -10191,7 +10191,7 @@ exports[`Test updateBlock > Update single prop 2`] = ` "id": "heading-with-everything", "props": { "backgroundColor": "red", - "isTogglable": false, + "isToggleable": false, "level": 3, "textAlignment": "center", "textColor": "red", @@ -10426,7 +10426,7 @@ exports[`Test updateBlock > Update table content to empty inline content 2`] = ` "id": "heading-0", "props": { "backgroundColor": "default", - "isTogglable": false, + "isToggleable": false, "level": 1, "textAlignment": "left", "textColor": "default", @@ -10599,7 +10599,7 @@ exports[`Test updateBlock > Update table content to empty inline content 2`] = ` "id": "heading-with-everything", "props": { "backgroundColor": "red", - "isTogglable": false, + "isToggleable": false, "level": 2, "textAlignment": "center", "textColor": "red", @@ -10840,7 +10840,7 @@ exports[`Test updateBlock > Update table content to inline content 2`] = ` "id": "heading-0", "props": { "backgroundColor": "default", - "isTogglable": false, + "isToggleable": false, "level": 1, "textAlignment": "left", "textColor": "default", @@ -11019,7 +11019,7 @@ exports[`Test updateBlock > Update table content to inline content 2`] = ` "id": "heading-with-everything", "props": { "backgroundColor": "red", - "isTogglable": false, + "isToggleable": false, "level": 2, "textAlignment": "center", "textColor": "red", @@ -11257,7 +11257,7 @@ exports[`Test updateBlock > Update table content to no content 2`] = ` "id": "heading-0", "props": { "backgroundColor": "default", - "isTogglable": false, + "isToggleable": false, "level": 1, "textAlignment": "left", "textColor": "default", @@ -11433,7 +11433,7 @@ exports[`Test updateBlock > Update table content to no content 2`] = ` "id": "heading-with-everything", "props": { "backgroundColor": "red", - "isTogglable": false, + "isToggleable": false, "level": 2, "textAlignment": "center", "textColor": "red", @@ -11724,7 +11724,7 @@ exports[`Test updateBlock > Update type 2`] = ` "id": "heading-0", "props": { "backgroundColor": "default", - "isTogglable": false, + "isToggleable": false, "level": 1, "textAlignment": "left", "textColor": "default", @@ -12139,7 +12139,7 @@ exports[`Test updateBlock > Update with plain content 1`] = ` "id": "heading-with-everything", "props": { "backgroundColor": "red", - "isTogglable": false, + "isToggleable": false, "level": 2, "textAlignment": "center", "textColor": "red", @@ -12348,7 +12348,7 @@ exports[`Test updateBlock > Update with plain content 2`] = ` "id": "heading-0", "props": { "backgroundColor": "default", - "isTogglable": false, + "isToggleable": false, "level": 1, "textAlignment": "left", "textColor": "default", @@ -12681,7 +12681,7 @@ exports[`Test updateBlock > Update with plain content 2`] = ` "id": "heading-with-everything", "props": { "backgroundColor": "red", - "isTogglable": false, + "isToggleable": false, "level": 2, "textAlignment": "center", "textColor": "red", @@ -12765,7 +12765,7 @@ exports[`Test updateBlock > Update with styled content 1`] = ` "id": "heading-with-everything", "props": { "backgroundColor": "red", - "isTogglable": false, + "isToggleable": false, "level": 2, "textAlignment": "center", "textColor": "red", @@ -12974,7 +12974,7 @@ exports[`Test updateBlock > Update with styled content 2`] = ` "id": "heading-0", "props": { "backgroundColor": "default", - "isTogglable": false, + "isToggleable": false, "level": 1, "textAlignment": "left", "textColor": "default", @@ -13321,7 +13321,7 @@ exports[`Test updateBlock > Update with styled content 2`] = ` "id": "heading-with-everything", "props": { "backgroundColor": "red", - "isTogglable": false, + "isToggleable": false, "level": 2, "textAlignment": "center", "textColor": "red", diff --git a/packages/core/src/blocks/HeadingBlockContent/HeadingBlockContent.ts b/packages/core/src/blocks/HeadingBlockContent/HeadingBlockContent.ts index a40b3a5320..0261471c3b 100644 --- a/packages/core/src/blocks/HeadingBlockContent/HeadingBlockContent.ts +++ b/packages/core/src/blocks/HeadingBlockContent/HeadingBlockContent.ts @@ -15,7 +15,7 @@ import { createToggleWrapper } from "../ToggleWrapper/createToggleWrapper.js"; export const headingPropSchema = { ...defaultProps, level: { default: 1, values: [1, 2, 3] as const }, - isTogglable: { default: false }, + isToggleable: { default: false }, } satisfies PropSchema; const HeadingBlockContent = createStronglyTypedTiptapNode({ diff --git a/packages/core/src/blocks/ToggleWrapper/createToggleWrapper.ts b/packages/core/src/blocks/ToggleWrapper/createToggleWrapper.ts index 04f516ae37..18a02f2e51 100644 --- a/packages/core/src/blocks/ToggleWrapper/createToggleWrapper.ts +++ b/packages/core/src/blocks/ToggleWrapper/createToggleWrapper.ts @@ -18,7 +18,7 @@ export const createToggleWrapper = ( ignoreMutation?: (mutation: ViewMutationRecord) => boolean; destroy?: () => void; } => { - if ("isTogglable" in block.props && !block.props.isTogglable) { + if ("isToggleable" in block.props && !block.props.isToggleable) { return renderedElement; } @@ -32,7 +32,7 @@ export const createToggleWrapper = ( toggleButton.className = "bn-toggle-button"; toggleButton.innerHTML = // https://fonts.google.com/icons?selected=Material+Symbols+Rounded:chevron_right:FILL@0;wght@700;GRAD@0;opsz@24&icon.query=chevron&icon.style=Rounded&icon.size=24&icon.color=%23e8eaed - ''; + ''; const toggleButtonMouseDown = (event: MouseEvent) => event.preventDefault(); toggleButton.addEventListener("mousedown", toggleButtonMouseDown); const toggleButtonOnClick = () => { @@ -72,7 +72,7 @@ export const createToggleWrapper = ( const toggleAddBlockButtonOnClick = () => { // Adds a single empty child block. editor.transact(() => { - dom.removeChild(toggleAddBlockButton); + // dom.removeChild(toggleAddBlockButton); const updatedBlock = editor.updateBlock(block, { // Single empty block with default type. @@ -86,13 +86,36 @@ export const createToggleWrapper = ( dom.appendChild(toggleWrapper); + let childCount = block.children.length; const onEditorChange = editor.onChange(() => { - // Adds/removes the "add block" button if child blocks are added/removed. - if (editor.getBlock(block)?.children.length === 0) { - toggleWrapper.setAttribute("data-show-children", "false"); - } else { - toggleWrapper.setAttribute("data-show-children", "true"); + const newChildCount = editor.getBlock(block)?.children.length ?? 0; + + if (newChildCount > childCount) { + // If a child block is added while children are hidden, show children. + if (toggleWrapper.getAttribute("data-show-children") === "false") { + toggleWrapper.setAttribute("data-show-children", "true"); + } + + // Remove the "add block" button as we want to show child blocks and + // there is at least one child block. + if (dom.contains(toggleAddBlockButton)) { + dom.removeChild(toggleAddBlockButton); + } + } else if (newChildCount === 0 && newChildCount < childCount) { + // If the last child block is removed while children are shown, hide + // children. + if (toggleWrapper.getAttribute("data-show-children") === "true") { + toggleWrapper.setAttribute("data-show-children", "false"); + } + + // Remove the "add block" button as we want to hide child blocks, + // regardless of whether there are child blocks or not. + if (dom.contains(toggleAddBlockButton)) { + dom.removeChild(toggleAddBlockButton); + } } + + childCount = newChildCount; }); return { diff --git a/packages/core/src/editor/Block.css b/packages/core/src/editor/Block.css index e79cd7299e..8e5ba1eee3 100644 --- a/packages/core/src/editor/Block.css +++ b/packages/core/src/editor/Block.css @@ -174,9 +174,10 @@ NESTED BLOCKS } /* Ordered */ -.bn-block-content[data-content-type="numberedListItem"] { +.bn-block-content[data-content-type="numberedListItem"]::before { display: flex; - gap: 0.5em; + justify-content: center; + width: 25px; } [data-content-type="numberedListItem"] { @@ -204,9 +205,10 @@ NESTED BLOCKS } /* Unordered */ -.bn-block-content[data-content-type="bulletListItem"] { +.bn-block-content[data-content-type="bulletListItem"]::before { display: flex; - gap: 0.5em; + justify-content: center; + width: 25px; } /* Checked */ @@ -215,9 +217,14 @@ NESTED BLOCKS width: 100%; } +.bn-block-content[data-content-type="checkListItem"] > div > div { + display: flex; + justify-content: center; + width: 25px; +} + .bn-block-content[data-content-type="checkListItem"] > div > div > input { margin: 0; - margin-inline-end: 0.5em; cursor: pointer; } @@ -234,6 +241,69 @@ NESTED BLOCKS justify-content: flex-end; } +/* Toggle */ +.bn-block-content:has(.bn-toggle-wrapper) > div { + display: flex; + flex-direction: column; + gap: 4px; +} + +.bn-block:has( + > .bn-block-content > div > .bn-toggle-wrapper[data-show-children="false"] + ) + > .bn-block-group, +.bn-block:has( + > .react-renderer + > .bn-block-content + > div + > .bn-toggle-wrapper[data-show-children="false"] + ) + > .bn-block-group { + display: none; +} + +.bn-toggle-wrapper { + display: flex; + align-items: center; +} + +.bn-toggle-button { + padding: 3px; +} + +.bn-toggle-button > svg { + width: 18px; + height: 18px; +} + +.bn-toggle-wrapper[data-show-children="true"] .bn-toggle-button { + transform: rotate(90deg); +} + +.bn-toggle-add-block-button { + font-size: 16px; + color: var(--bn-colors-side-menu); + font-weight: normal; + margin-left: 22px; + padding-inline: 2px; +} + +.bn-toggle-button, +.bn-toggle-add-block-button { + background: none; + border: none; + border-radius: var(--bn-border-radius-small); + color: var(--bn-colors-editor-text); + cursor: pointer; + display: flex; + user-select: none; +} + +.bn-toggle-button:hover, +.bn-toggle-add-block-button:hover { + background-color: var(--bn-colors-hovered-background); +} + /* No list nesting */ .bn-block-outer[data-prev-type="bulletListItem"] > .bn-block @@ -455,57 +525,6 @@ NESTED BLOCKS width: 100%; } -/* Toggle wrapper */ -.bn-block:has( - > .bn-block-content > div > .bn-toggle-wrapper[data-show-children="false"] - ) - > .bn-block-group, -.bn-block:has( - > .react-renderer - > .bn-block-content - > div - > .bn-toggle-wrapper[data-show-children="false"] - ) - > .bn-block-group { - display: none; -} - -.bn-toggle-wrapper { - display: flex; - align-items: center; -} - -.bn-toggle-button, -.bn-toggle-add-block-button { - cursor: pointer; - display: flex; - align-items: center; - padding: 0; - border-radius: var; - background: none; - border: none; - border-radius: 4px; - color: var(--bn-colors-editor-text); - user-select: none; -} - -.bn-toggle-button:hover, -.bn-toggle-add-block-button:hover { - background-color: var(--bn-colors-hovered-background); -} - -.bn-toggle-add-block-button { - font-size: 16px; - color: var(--bn-colors-side-menu); - font-weight: normal; - margin-left: 1.5em; - padding: 2px; -} - -.bn-toggle-wrapper[data-show-children="true"] .bn-toggle-button { - transform: rotate(90deg); -} - /* PLACEHOLDERS*/ .bn-inline-content:has(> .ProseMirror-trailingBreak:only-child):before { /*float: left; */ diff --git a/packages/core/src/editor/BlockNoteEditor.test.ts b/packages/core/src/editor/BlockNoteEditor.test.ts index d329fd17d4..7b109977e2 100644 --- a/packages/core/src/editor/BlockNoteEditor.test.ts +++ b/packages/core/src/editor/BlockNoteEditor.test.ts @@ -52,7 +52,7 @@ it("immediately replaces doc", async () => { "id": "2", "props": { "backgroundColor": "default", - "isTogglable": false, + "isToggleable": false, "level": 1, "textAlignment": "left", "textColor": "default", diff --git a/packages/core/src/extensions/SuggestionMenu/getDefaultSlashMenuItems.ts b/packages/core/src/extensions/SuggestionMenu/getDefaultSlashMenuItems.ts index 7ed48f4487..a5f7c4bcad 100644 --- a/packages/core/src/extensions/SuggestionMenu/getDefaultSlashMenuItems.ts +++ b/packages/core/src/extensions/SuggestionMenu/getDefaultSlashMenuItems.ts @@ -126,7 +126,7 @@ export function getDefaultSlashMenuItems< onItemClick: () => { insertOrUpdateBlock(editor, { type: "heading", - props: { level: 1, isTogglable: true }, + props: { level: 1, isToggleable: true }, }); }, key: "toggle_heading", @@ -136,7 +136,7 @@ export function getDefaultSlashMenuItems< onItemClick: () => { insertOrUpdateBlock(editor, { type: "heading", - props: { level: 2, isTogglable: true }, + props: { level: 2, isToggleable: true }, }); }, @@ -147,7 +147,7 @@ export function getDefaultSlashMenuItems< onItemClick: () => { insertOrUpdateBlock(editor, { type: "heading", - props: { level: 3, isTogglable: true }, + props: { level: 3, isToggleable: true }, }); }, key: "toggle_heading_3", diff --git a/packages/core/src/i18n/locales/ar.ts b/packages/core/src/i18n/locales/ar.ts index d202078e37..e557e35a8f 100644 --- a/packages/core/src/i18n/locales/ar.ts +++ b/packages/core/src/i18n/locales/ar.ts @@ -142,7 +142,7 @@ export const ar: Dictionary = { placeholders: { default: "أدخل نصًا أو اكتب '/' للأوامر", heading: "عنوان", - toggleList: "قائمة", + toggleList: "طيّ", bulletListItem: "قائمة", numberedListItem: "قائمة", checkListItem: "قائمة", diff --git a/packages/core/src/i18n/locales/de.ts b/packages/core/src/i18n/locales/de.ts index 63531c130d..e482f5da83 100644 --- a/packages/core/src/i18n/locales/de.ts +++ b/packages/core/src/i18n/locales/de.ts @@ -164,7 +164,7 @@ export const de: Dictionary = { placeholders: { default: "Text eingeben oder '/' für Befehle tippen", heading: "Überschrift", - toggleList: "Liste", + toggleList: "Umschalten", bulletListItem: "Liste", numberedListItem: "Liste", checkListItem: "Liste", diff --git a/packages/core/src/i18n/locales/en.ts b/packages/core/src/i18n/locales/en.ts index 28b8a0c0fc..78c4416cbe 100644 --- a/packages/core/src/i18n/locales/en.ts +++ b/packages/core/src/i18n/locales/en.ts @@ -20,19 +20,19 @@ export const en = { }, toggle_heading: { title: "Toggle Heading 1", - subtext: "Togglable top-level heading", + subtext: "Toggleable top-level heading", aliases: ["h", "heading1", "h1", "collapsable"], group: "Headings", }, toggle_heading_2: { title: "Toggle Heading 2", - subtext: "Togglable key section heading", + subtext: "Toggleable key section heading", aliases: ["h2", "heading2", "subheading", "collapsable"], group: "Headings", }, toggle_heading_3: { title: "Toggle Heading 3", - subtext: "Togglable subsection and group heading", + subtext: "Toggleable subsection and group heading", aliases: ["h3", "heading3", "subheading", "collapsable"], group: "Headings", }, @@ -44,7 +44,7 @@ export const en = { }, toggle_list: { title: "Toggle List", - subtext: "List with hidable sub-items", + subtext: "List with hideable sub-items", aliases: ["li", "list", "toggleList", "toggle list", "collapsable list"], group: "Basic blocks", }, @@ -156,7 +156,7 @@ export const en = { placeholders: { default: "Enter text or type '/' for commands", heading: "Heading", - toggleList: "List", + toggleList: "Toggle", bulletListItem: "List", numberedListItem: "List", checkListItem: "List", diff --git a/packages/core/src/i18n/locales/es.ts b/packages/core/src/i18n/locales/es.ts index 7e32abe592..2d40a959bf 100644 --- a/packages/core/src/i18n/locales/es.ts +++ b/packages/core/src/i18n/locales/es.ts @@ -157,7 +157,7 @@ export const es: Dictionary = { placeholders: { default: "Escribe o teclea '/' para comandos", heading: "Encabezado", - toggleList: "Lista", + toggleList: "Alternar", bulletListItem: "Lista", numberedListItem: "Lista", checkListItem: "Lista", diff --git a/packages/core/src/i18n/locales/fr.ts b/packages/core/src/i18n/locales/fr.ts index 0c945f5e19..a0c7302054 100644 --- a/packages/core/src/i18n/locales/fr.ts +++ b/packages/core/src/i18n/locales/fr.ts @@ -189,7 +189,7 @@ export const fr: Dictionary = { default: "Entrez du texte ou tapez '/' pour faire apparaître les options de mise en page", heading: "Titre", - toggleList: "Liste", + toggleList: "Basculer", bulletListItem: "Liste", numberedListItem: "Liste", checkListItem: "Liste", diff --git a/packages/core/src/i18n/locales/hr.ts b/packages/core/src/i18n/locales/hr.ts index 36f41d4144..0c506aa64d 100644 --- a/packages/core/src/i18n/locales/hr.ts +++ b/packages/core/src/i18n/locales/hr.ts @@ -170,7 +170,7 @@ export const hr: Dictionary = { placeholders: { default: "Unesi tekst ili upiši ‘/’ za naredbe", heading: "Naslov", - toggleList: "Lista", + toggleList: "Prebaciti", bulletListItem: "Lista", numberedListItem: "Lista", checkListItem: "Lista", diff --git a/packages/core/src/i18n/locales/is.ts b/packages/core/src/i18n/locales/is.ts index 3b6ebd4010..6c39cef049 100644 --- a/packages/core/src/i18n/locales/is.ts +++ b/packages/core/src/i18n/locales/is.ts @@ -150,7 +150,7 @@ export const is: Dictionary = { placeholders: { default: "Sláðu inn texta eða skrifaðu '/' fyrir skipanir", heading: "Fyrirsögn", - toggleList: "Listi", + toggleList: "Víxla", bulletListItem: "Listi", numberedListItem: "Listi", checkListItem: "Listi", diff --git a/packages/core/src/i18n/locales/it.ts b/packages/core/src/i18n/locales/it.ts index 378f2c4941..db8198eaf3 100644 --- a/packages/core/src/i18n/locales/it.ts +++ b/packages/core/src/i18n/locales/it.ts @@ -158,7 +158,7 @@ export const it: Dictionary = { placeholders: { default: "Inserisci testo o digita '/' per i comandi", heading: "Intestazione", - toggleList: "Elenco", + toggleList: "Attiva/Disattiva", bulletListItem: "Elenco", numberedListItem: "Elenco", checkListItem: "Elenco", diff --git a/packages/core/src/i18n/locales/ja.ts b/packages/core/src/i18n/locales/ja.ts index e19ecba4c9..59349fe056 100644 --- a/packages/core/src/i18n/locales/ja.ts +++ b/packages/core/src/i18n/locales/ja.ts @@ -177,7 +177,7 @@ export const ja: Dictionary = { placeholders: { default: "テキストを入力するか'/' を入力してコマンド選択", heading: "見出し", - toggleList: "リストを追加", + toggleList: "トグル", bulletListItem: "リストを追加", numberedListItem: "リストを追加", checkListItem: "リストを追加", diff --git a/packages/core/src/i18n/locales/ko.ts b/packages/core/src/i18n/locales/ko.ts index 99a7ef28a1..5699d5f816 100644 --- a/packages/core/src/i18n/locales/ko.ts +++ b/packages/core/src/i18n/locales/ko.ts @@ -170,7 +170,7 @@ export const ko: Dictionary = { placeholders: { default: "텍스트를 입력하거나 /를 입력하여 명령을 입력하세요.", heading: "제목", - toggleList: "목록", + toggleList: "토글", bulletListItem: "목록", numberedListItem: "목록", checkListItem: "목록", diff --git a/packages/core/src/i18n/locales/nl.ts b/packages/core/src/i18n/locales/nl.ts index 764388dffe..550cb6e713 100644 --- a/packages/core/src/i18n/locales/nl.ts +++ b/packages/core/src/i18n/locales/nl.ts @@ -157,7 +157,7 @@ export const nl: Dictionary = { placeholders: { default: "Voer tekst in of type '/' voor commando's", heading: "Kop", - toggleList: "Lijst", + toggleList: "Schakelaar", bulletListItem: "Lijst", numberedListItem: "Lijst", checkListItem: "Lijst", diff --git a/packages/core/src/i18n/locales/no.ts b/packages/core/src/i18n/locales/no.ts index f053e74722..ab966b6a2b 100644 --- a/packages/core/src/i18n/locales/no.ts +++ b/packages/core/src/i18n/locales/no.ts @@ -158,7 +158,7 @@ export const no: Dictionary = { placeholders: { default: "Skriv tekst eller skriv '/' for å vise kommandoer", heading: "Overskrift", - toggleList: "Liste", + toggleList: "Veksle", bulletListItem: "Liste", numberedListItem: "Liste", checkListItem: "Liste", diff --git a/packages/core/src/i18n/locales/pl.ts b/packages/core/src/i18n/locales/pl.ts index 970b75b250..6787474f60 100644 --- a/packages/core/src/i18n/locales/pl.ts +++ b/packages/core/src/i18n/locales/pl.ts @@ -148,7 +148,7 @@ export const pl: Dictionary = { placeholders: { default: "Wprowadź tekst lub wpisz '/' aby użyć poleceń", heading: "Nagłówek", - toggleList: "Lista", + toggleList: "Przełącz", bulletListItem: "Lista", numberedListItem: "Lista", checkListItem: "Lista", diff --git a/packages/core/src/i18n/locales/pt.ts b/packages/core/src/i18n/locales/pt.ts index 3cac9d9187..afcbe19e2b 100644 --- a/packages/core/src/i18n/locales/pt.ts +++ b/packages/core/src/i18n/locales/pt.ts @@ -149,7 +149,7 @@ export const pt: Dictionary = { placeholders: { default: "Digite texto ou use '/' para comandos", heading: "Título", - toggleList: "Lista", + toggleList: "Alternar", bulletListItem: "Lista", numberedListItem: "Lista", checkListItem: "Lista", diff --git a/packages/core/src/i18n/locales/ru.ts b/packages/core/src/i18n/locales/ru.ts index 3cdab94b47..a6499df52e 100644 --- a/packages/core/src/i18n/locales/ru.ts +++ b/packages/core/src/i18n/locales/ru.ts @@ -203,7 +203,7 @@ export const ru: Dictionary = { placeholders: { default: "Введите текст или введите «/» для команд", heading: "Заголовок", - toggleList: "Список", + toggleList: "Переключить", bulletListItem: "Список", numberedListItem: "Список", checkListItem: "Список", diff --git a/packages/core/src/i18n/locales/sk.ts b/packages/core/src/i18n/locales/sk.ts index f643582572..6bfc9facf5 100644 --- a/packages/core/src/i18n/locales/sk.ts +++ b/packages/core/src/i18n/locales/sk.ts @@ -156,7 +156,7 @@ export const sk = { placeholders: { default: "Zadajte text alebo napíšte '/' pre príkazy", heading: "Nadpis", - toggleList: "Zoznam", + toggleList: "Prepnúť", bulletListItem: "Zoznam", numberedListItem: "Zoznam", checkListItem: "Zoznam", diff --git a/packages/core/src/i18n/locales/uk.ts b/packages/core/src/i18n/locales/uk.ts index 6ef559090c..19b6189500 100644 --- a/packages/core/src/i18n/locales/uk.ts +++ b/packages/core/src/i18n/locales/uk.ts @@ -182,7 +182,7 @@ export const uk: Dictionary = { placeholders: { default: "Введіть текст або наберіть '/' для команд", heading: "Заголовок", - toggleList: "Список", + toggleList: "Перемикач", bulletListItem: "Список", numberedListItem: "Список", checkListItem: "Список", diff --git a/packages/core/src/i18n/locales/vi.ts b/packages/core/src/i18n/locales/vi.ts index 9a5f81670d..ccd4002f25 100644 --- a/packages/core/src/i18n/locales/vi.ts +++ b/packages/core/src/i18n/locales/vi.ts @@ -156,7 +156,7 @@ export const vi: Dictionary = { placeholders: { default: "Nhập văn bản hoặc gõ '/' để thêm định dạng", heading: "Tiêu đề", - toggleList: "Danh sách", + toggleList: "Chuyển đổi", bulletListItem: "Danh sách", numberedListItem: "Danh sách", checkListItem: "Danh sách", diff --git a/packages/core/src/i18n/locales/zh-tw.ts b/packages/core/src/i18n/locales/zh-tw.ts index eda4ee7648..f5729b7776 100644 --- a/packages/core/src/i18n/locales/zh-tw.ts +++ b/packages/core/src/i18n/locales/zh-tw.ts @@ -198,7 +198,7 @@ export const zhTW: Dictionary = { placeholders: { default: "輸入 '/' 以使用指令", heading: "標題", - toggleList: "列表", + toggleList: "切換", bulletListItem: "列表", numberedListItem: "列表", checkListItem: "列表", diff --git a/packages/core/src/i18n/locales/zh.ts b/packages/core/src/i18n/locales/zh.ts index 91d7c65368..6533fd35bf 100644 --- a/packages/core/src/i18n/locales/zh.ts +++ b/packages/core/src/i18n/locales/zh.ts @@ -198,7 +198,7 @@ export const zh: Dictionary = { placeholders: { default: "输入 '/' 以使用命令", heading: "标题", - toggleList: "列表", + toggleList: "切换", bulletListItem: "列表", numberedListItem: "列表", checkListItem: "列表", diff --git a/packages/react/src/blocks/ToggleWrapper/ToggleWrapper.tsx b/packages/react/src/blocks/ToggleWrapper/ToggleWrapper.tsx index bf3a5f79d0..1fb3bba067 100644 --- a/packages/react/src/blocks/ToggleWrapper/ToggleWrapper.tsx +++ b/packages/react/src/blocks/ToggleWrapper/ToggleWrapper.tsx @@ -11,25 +11,28 @@ export const ToggleWrapper = ( const { block, editor, children } = props; const [showChildren, setShowChildren] = useState(false); - const [hasChildren, setHasChildren] = useState(block.children.length > 0); + const [childCount, setChildCount] = useState(block.children.length); useEditorChange(() => { - const actualBlock = editor.getBlock(block); + const newChildCount = editor.getBlock(block)?.children.length ?? 0; - if (actualBlock?.children.length === 0) { - if (hasChildren) { - setShowChildren(false); - } - setHasChildren(false); - } else { - if (!hasChildren) { + if (newChildCount > childCount) { + // If a child block is added while children are hidden, show children. + if (!showChildren) { setShowChildren(true); } - setHasChildren(true); + } else if (newChildCount === 0 && newChildCount < childCount) { + // If the last child block is removed while children are shown, hide + // children. + if (showChildren) { + setShowChildren(false); + } } + + setChildCount(newChildCount); }); - if ("isTogglable" in block.props && !block.props.isTogglable) { + if ("isToggleable" in block.props && !block.props.isToggleable) { return children; } @@ -54,7 +57,7 @@ export const ToggleWrapper = ( {children}
- {showChildren && !hasChildren && ( + {showChildren && childCount === 0 && (