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 link to google.com_1_82b3f34219ff0a515d07ae5202044dc3.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 link to google.com_1_82b3f34219ff0a515d07ae5202044dc3.json new file mode 100644 index 0000000000..227dda3ecd --- /dev/null +++ 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 link to google.com_1_82b3f34219ff0a515d07ae5202044dc3.json @@ -0,0 +1,15 @@ +{ + "request": { + "method": "POST", + "url": "https://api.openai.com/v1/chat/completions", + "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\":\"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).\"},{\"role\":\"user\",\"content\":\"add a paragraph with the text 'Check this out' containing a link to 'https://www.google.com' after the last sentence\"}],\"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,4,5,6]},\"isToggleable\":{\"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-CCW1KZmIpbHqJEctRIaz5olIV7qtH\",\n \"object\": \"chat.completion\",\n \"created\": 1757099058,\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_W21fhJ2Dy9pJXFqBf49gV5Rg\",\n \"type\": \"function\",\n \"function\": {\n \"name\": \"json\",\n \"arguments\": \"{\\\"operations\\\":[{\\\"type\\\":\\\"add\\\",\\\"referenceId\\\":\\\"ref2$\\\",\\\"position\\\":\\\"after\\\",\\\"blocks\\\":[{\\\"type\\\":\\\"paragraph\\\",\\\"content\\\":[{\\\"type\\\":\\\"text\\\",\\\"text\\\":\\\"Check this out \\\",\\\"styles\\\":{}},{\\\"type\\\":\\\"link\\\",\\\"content\\\":[{\\\"type\\\":\\\"text\\\",\\\"text\\\":\\\"here\\\",\\\"styles\\\":{}}],\\\"href\\\":\\\"https://www.google.com\\\"}]}]}]}\"\n }\n }\n ],\n \"refusal\": null,\n \"annotations\": []\n },\n \"logprobs\": null,\n \"finish_reason\": \"stop\"\n }\n ],\n \"usage\": {\n \"prompt_tokens\": 1051,\n \"completion_tokens\": 74,\n \"total_tokens\": 1125,\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_cbf1785567\"\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 link to google.com_1_a07b53b9e3645cc50e882d6a23d17c0c.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 link to google.com_1_a07b53b9e3645cc50e882d6a23d17c0c.json new file mode 100644 index 0000000000..8e52d46b8e --- /dev/null +++ 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 link to google.com_1_a07b53b9e3645cc50e882d6a23d17c0c.json @@ -0,0 +1,15 @@ +{ + "request": { + "method": "POST", + "url": "https://api.openai.com/v1/chat/completions", + "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\":\"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).\"},{\"role\":\"user\",\"content\":\"add a paragraph with the text 'Check this out' and a link with text 'here' to 'https://www.google.com' after the last sentence\"}],\"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,4,5,6]},\"isToggleable\":{\"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-CCW3Hfm1wwzGAL0Br4JCj5X4f0enp\",\n \"object\": \"chat.completion\",\n \"created\": 1757099179,\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_hthJanljcECD3dXmhGssgY3D\",\n \"type\": \"function\",\n \"function\": {\n \"name\": \"json\",\n \"arguments\": \"{\\\"operations\\\":[{\\\"type\\\":\\\"add\\\",\\\"referenceId\\\":\\\"ref2$\\\",\\\"position\\\":\\\"after\\\",\\\"blocks\\\":[{\\\"type\\\":\\\"paragraph\\\",\\\"content\\\":[{\\\"type\\\":\\\"text\\\",\\\"text\\\":\\\"Check this out \\\"},{\\\"type\\\":\\\"link\\\",\\\"content\\\":[{\\\"type\\\":\\\"text\\\",\\\"text\\\":\\\"here\\\"}],\\\"href\\\":\\\"https://www.google.com\\\"}]}]}]}\"\n }\n }\n ],\n \"refusal\": null,\n \"annotations\": []\n },\n \"logprobs\": null,\n \"finish_reason\": \"stop\"\n }\n ],\n \"usage\": {\n \"prompt_tokens\": 1056,\n \"completion_tokens\": 67,\n \"total_tokens\": 1123,\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_cbf1785567\"\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 link to google.com_1_3b0faf254f985c2234d441af7209d29a.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 link to google.com_1_3b0faf254f985c2234d441af7209d29a.json new file mode 100644 index 0000000000..c4aaed1309 --- /dev/null +++ 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 link to google.com_1_3b0faf254f985c2234d441af7209d29a.json @@ -0,0 +1,15 @@ +{ + "request": { + "method": "POST", + "url": "https://api.openai.com/v1/chat/completions", + "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\":\"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).\"},{\"role\":\"user\",\"content\":\"add a paragraph with the text 'Check this out' and a link with text 'here' to 'https://www.google.com' after the last sentence\"}],\"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,4,5,6]},\"isToggleable\":{\"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-CCW3F6CSXZpjLd4Lai52tliZMwi8n\",\"object\":\"chat.completion.chunk\",\"created\":1757099177,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_cbf1785567\",\"choices\":[{\"index\":0,\"delta\":{\"role\":\"assistant\",\"content\":null,\"tool_calls\":[{\"index\":0,\"id\":\"call_MeUah2fy3eqycXgFgu2pxMsP\",\"type\":\"function\",\"function\":{\"name\":\"json\",\"arguments\":\"\"}}],\"refusal\":null},\"logprobs\":null,\"finish_reason\":null}],\"obfuscation\":\"GYEU9EbUS5LRm\"}\n\ndata: {\"id\":\"chatcmpl-CCW3F6CSXZpjLd4Lai52tliZMwi8n\",\"object\":\"chat.completion.chunk\",\"created\":1757099177,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_cbf1785567\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"{\\\"\"}}]},\"logprobs\":null,\"finish_reason\":null}],\"obfuscation\":\"\"}\n\ndata: {\"id\":\"chatcmpl-CCW3F6CSXZpjLd4Lai52tliZMwi8n\",\"object\":\"chat.completion.chunk\",\"created\":1757099177,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_cbf1785567\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"operations\"}}]},\"logprobs\":null,\"finish_reason\":null}],\"obfuscation\":\"Y7S8bw1he\"}\n\ndata: {\"id\":\"chatcmpl-CCW3F6CSXZpjLd4Lai52tliZMwi8n\",\"object\":\"chat.completion.chunk\",\"created\":1757099177,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_cbf1785567\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"\\\":[\"}}]},\"logprobs\":null,\"finish_reason\":null}],\"obfuscation\":\"EyEiviwZ8YiWpGg\"}\n\ndata: {\"id\":\"chatcmpl-CCW3F6CSXZpjLd4Lai52tliZMwi8n\",\"object\":\"chat.completion.chunk\",\"created\":1757099177,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_cbf1785567\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"{\\\"\"}}]},\"logprobs\":null,\"finish_reason\":null}],\"obfuscation\":\"\"}\n\ndata: {\"id\":\"chatcmpl-CCW3F6CSXZpjLd4Lai52tliZMwi8n\",\"object\":\"chat.completion.chunk\",\"created\":1757099177,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_cbf1785567\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"type\"}}]},\"logprobs\":null,\"finish_reason\":null}],\"obfuscation\":\"ejdBelWi1FT8y46\"}\n\ndata: {\"id\":\"chatcmpl-CCW3F6CSXZpjLd4Lai52tliZMwi8n\",\"object\":\"chat.completion.chunk\",\"created\":1757099177,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_cbf1785567\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"\\\":\\\"\"}}]},\"logprobs\":null,\"finish_reason\":null}],\"obfuscation\":\"6zxy67oKQd1HJ5\"}\n\ndata: {\"id\":\"chatcmpl-CCW3F6CSXZpjLd4Lai52tliZMwi8n\",\"object\":\"chat.completion.chunk\",\"created\":1757099177,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_cbf1785567\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"add\"}}]},\"logprobs\":null,\"finish_reason\":null}],\"obfuscation\":\"\"}\n\ndata: {\"id\":\"chatcmpl-CCW3F6CSXZpjLd4Lai52tliZMwi8n\",\"object\":\"chat.completion.chunk\",\"created\":1757099177,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_cbf1785567\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"\\\",\\\"\"}}]},\"logprobs\":null,\"finish_reason\":null}],\"obfuscation\":\"tcJLnneXqbYJPP\"}\n\ndata: {\"id\":\"chatcmpl-CCW3F6CSXZpjLd4Lai52tliZMwi8n\",\"object\":\"chat.completion.chunk\",\"created\":1757099177,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_cbf1785567\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"reference\"}}]},\"logprobs\":null,\"finish_reason\":null}],\"obfuscation\":\"DwuvfZminp\"}\n\ndata: {\"id\":\"chatcmpl-CCW3F6CSXZpjLd4Lai52tliZMwi8n\",\"object\":\"chat.completion.chunk\",\"created\":1757099177,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_cbf1785567\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"Id\"}}]},\"logprobs\":null,\"finish_reason\":null}],\"obfuscation\":\"9\"}\n\ndata: {\"id\":\"chatcmpl-CCW3F6CSXZpjLd4Lai52tliZMwi8n\",\"object\":\"chat.completion.chunk\",\"created\":1757099177,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_cbf1785567\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"\\\":\\\"\"}}]},\"logprobs\":null,\"finish_reason\":null}],\"obfuscation\":\"PqrzoComLhWdaw\"}\n\ndata: {\"id\":\"chatcmpl-CCW3F6CSXZpjLd4Lai52tliZMwi8n\",\"object\":\"chat.completion.chunk\",\"created\":1757099177,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_cbf1785567\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"ref\"}}]},\"logprobs\":null,\"finish_reason\":null}],\"obfuscation\":\"\"}\n\ndata: {\"id\":\"chatcmpl-CCW3F6CSXZpjLd4Lai52tliZMwi8n\",\"object\":\"chat.completion.chunk\",\"created\":1757099177,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_cbf1785567\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"2\"}}]},\"logprobs\":null,\"finish_reason\":null}],\"obfuscation\":\"Q5\"}\n\ndata: {\"id\":\"chatcmpl-CCW3F6CSXZpjLd4Lai52tliZMwi8n\",\"object\":\"chat.completion.chunk\",\"created\":1757099177,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_cbf1785567\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"$\"}}]},\"logprobs\":null,\"finish_reason\":null}],\"obfuscation\":\"ZB\"}\n\ndata: {\"id\":\"chatcmpl-CCW3F6CSXZpjLd4Lai52tliZMwi8n\",\"object\":\"chat.completion.chunk\",\"created\":1757099177,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_cbf1785567\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"\\\",\\\"\"}}]},\"logprobs\":null,\"finish_reason\":null}],\"obfuscation\":\"WQhC3W1cOJx1Ww\"}\n\ndata: {\"id\":\"chatcmpl-CCW3F6CSXZpjLd4Lai52tliZMwi8n\",\"object\":\"chat.completion.chunk\",\"created\":1757099177,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_cbf1785567\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"position\"}}]},\"logprobs\":null,\"finish_reason\":null}],\"obfuscation\":\"qzKNLpqOiEZ\"}\n\ndata: {\"id\":\"chatcmpl-CCW3F6CSXZpjLd4Lai52tliZMwi8n\",\"object\":\"chat.completion.chunk\",\"created\":1757099177,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_cbf1785567\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"\\\":\\\"\"}}]},\"logprobs\":null,\"finish_reason\":null}],\"obfuscation\":\"8UZgeVAkys58qr\"}\n\ndata: {\"id\":\"chatcmpl-CCW3F6CSXZpjLd4Lai52tliZMwi8n\",\"object\":\"chat.completion.chunk\",\"created\":1757099177,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_cbf1785567\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"after\"}}]},\"logprobs\":null,\"finish_reason\":null}],\"obfuscation\":\"BvReZ5GnzxByAy\"}\n\ndata: {\"id\":\"chatcmpl-CCW3F6CSXZpjLd4Lai52tliZMwi8n\",\"object\":\"chat.completion.chunk\",\"created\":1757099177,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_cbf1785567\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"\\\",\\\"\"}}]},\"logprobs\":null,\"finish_reason\":null}],\"obfuscation\":\"e8GCVN1CNRpyHv\"}\n\ndata: {\"id\":\"chatcmpl-CCW3F6CSXZpjLd4Lai52tliZMwi8n\",\"object\":\"chat.completion.chunk\",\"created\":1757099177,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_cbf1785567\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"blocks\"}}]},\"logprobs\":null,\"finish_reason\":null}],\"obfuscation\":\"gw75ciy6gT0uX\"}\n\ndata: {\"id\":\"chatcmpl-CCW3F6CSXZpjLd4Lai52tliZMwi8n\",\"object\":\"chat.completion.chunk\",\"created\":1757099177,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_cbf1785567\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"\\\":[\"}}]},\"logprobs\":null,\"finish_reason\":null}],\"obfuscation\":\"PN2usPb4HNyqUGF\"}\n\ndata: {\"id\":\"chatcmpl-CCW3F6CSXZpjLd4Lai52tliZMwi8n\",\"object\":\"chat.completion.chunk\",\"created\":1757099177,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_cbf1785567\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"{\\\"\"}}]},\"logprobs\":null,\"finish_reason\":null}],\"obfuscation\":\"\"}\n\ndata: {\"id\":\"chatcmpl-CCW3F6CSXZpjLd4Lai52tliZMwi8n\",\"object\":\"chat.completion.chunk\",\"created\":1757099177,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_cbf1785567\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"type\"}}]},\"logprobs\":null,\"finish_reason\":null}],\"obfuscation\":\"b79BBtGeo4FEdG4\"}\n\ndata: {\"id\":\"chatcmpl-CCW3F6CSXZpjLd4Lai52tliZMwi8n\",\"object\":\"chat.completion.chunk\",\"created\":1757099177,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_cbf1785567\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"\\\":\\\"\"}}]},\"logprobs\":null,\"finish_reason\":null}],\"obfuscation\":\"dq85ok4uh6QYua\"}\n\ndata: {\"id\":\"chatcmpl-CCW3F6CSXZpjLd4Lai52tliZMwi8n\",\"object\":\"chat.completion.chunk\",\"created\":1757099177,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_cbf1785567\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"paragraph\"}}]},\"logprobs\":null,\"finish_reason\":null}],\"obfuscation\":\"LVl5NChAb0\"}\n\ndata: {\"id\":\"chatcmpl-CCW3F6CSXZpjLd4Lai52tliZMwi8n\",\"object\":\"chat.completion.chunk\",\"created\":1757099177,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_cbf1785567\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"\\\",\\\"\"}}]},\"logprobs\":null,\"finish_reason\":null}],\"obfuscation\":\"IeAXJCURJW4yFC\"}\n\ndata: {\"id\":\"chatcmpl-CCW3F6CSXZpjLd4Lai52tliZMwi8n\",\"object\":\"chat.completion.chunk\",\"created\":1757099177,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_cbf1785567\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"content\"}}]},\"logprobs\":null,\"finish_reason\":null}],\"obfuscation\":\"C7g3dyS2KcNn\"}\n\ndata: {\"id\":\"chatcmpl-CCW3F6CSXZpjLd4Lai52tliZMwi8n\",\"object\":\"chat.completion.chunk\",\"created\":1757099177,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_cbf1785567\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"\\\":[\"}}]},\"logprobs\":null,\"finish_reason\":null}],\"obfuscation\":\"C7tJZRdts5P1F6X\"}\n\ndata: {\"id\":\"chatcmpl-CCW3F6CSXZpjLd4Lai52tliZMwi8n\",\"object\":\"chat.completion.chunk\",\"created\":1757099177,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_cbf1785567\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"{\\\"\"}}]},\"logprobs\":null,\"finish_reason\":null}],\"obfuscation\":\"\"}\n\ndata: {\"id\":\"chatcmpl-CCW3F6CSXZpjLd4Lai52tliZMwi8n\",\"object\":\"chat.completion.chunk\",\"created\":1757099177,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_cbf1785567\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"type\"}}]},\"logprobs\":null,\"finish_reason\":null}],\"obfuscation\":\"toEPHeE2GY75H0J\"}\n\ndata: {\"id\":\"chatcmpl-CCW3F6CSXZpjLd4Lai52tliZMwi8n\",\"object\":\"chat.completion.chunk\",\"created\":1757099177,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_cbf1785567\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"\\\":\\\"\"}}]},\"logprobs\":null,\"finish_reason\":null}],\"obfuscation\":\"Pp9AzWqhYxgTXY\"}\n\ndata: {\"id\":\"chatcmpl-CCW3F6CSXZpjLd4Lai52tliZMwi8n\",\"object\":\"chat.completion.chunk\",\"created\":1757099177,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_cbf1785567\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"text\"}}]},\"logprobs\":null,\"finish_reason\":null}],\"obfuscation\":\"RLYyU2ibHdUCQbz\"}\n\ndata: {\"id\":\"chatcmpl-CCW3F6CSXZpjLd4Lai52tliZMwi8n\",\"object\":\"chat.completion.chunk\",\"created\":1757099177,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_cbf1785567\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"\\\",\\\"\"}}]},\"logprobs\":null,\"finish_reason\":null}],\"obfuscation\":\"LvAnGnomR5ry9G\"}\n\ndata: {\"id\":\"chatcmpl-CCW3F6CSXZpjLd4Lai52tliZMwi8n\",\"object\":\"chat.completion.chunk\",\"created\":1757099177,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_cbf1785567\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"text\"}}]},\"logprobs\":null,\"finish_reason\":null}],\"obfuscation\":\"Rh86fACPIjyXTGz\"}\n\ndata: {\"id\":\"chatcmpl-CCW3F6CSXZpjLd4Lai52tliZMwi8n\",\"object\":\"chat.completion.chunk\",\"created\":1757099177,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_cbf1785567\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"\\\":\\\"\"}}]},\"logprobs\":null,\"finish_reason\":null}],\"obfuscation\":\"o628awYSRnxFG7\"}\n\ndata: {\"id\":\"chatcmpl-CCW3F6CSXZpjLd4Lai52tliZMwi8n\",\"object\":\"chat.completion.chunk\",\"created\":1757099177,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_cbf1785567\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"Check\"}}]},\"logprobs\":null,\"finish_reason\":null}],\"obfuscation\":\"9AszLQ4lD4vycE\"}\n\ndata: {\"id\":\"chatcmpl-CCW3F6CSXZpjLd4Lai52tliZMwi8n\",\"object\":\"chat.completion.chunk\",\"created\":1757099177,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_cbf1785567\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\" this\"}}]},\"logprobs\":null,\"finish_reason\":null}],\"obfuscation\":\"bUqyMFVltZZVmf\"}\n\ndata: {\"id\":\"chatcmpl-CCW3F6CSXZpjLd4Lai52tliZMwi8n\",\"object\":\"chat.completion.chunk\",\"created\":1757099177,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_cbf1785567\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\" out\"}}]},\"logprobs\":null,\"finish_reason\":null}],\"obfuscation\":\"Q69LgEm39RlugEJ\"}\n\ndata: {\"id\":\"chatcmpl-CCW3F6CSXZpjLd4Lai52tliZMwi8n\",\"object\":\"chat.completion.chunk\",\"created\":1757099177,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_cbf1785567\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\" \\\"\"}}]},\"logprobs\":null,\"finish_reason\":null}],\"obfuscation\":\"\"}\n\ndata: {\"id\":\"chatcmpl-CCW3F6CSXZpjLd4Lai52tliZMwi8n\",\"object\":\"chat.completion.chunk\",\"created\":1757099177,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_cbf1785567\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"},{\\\"\"}}]},\"logprobs\":null,\"finish_reason\":null}],\"obfuscation\":\"f045Vhx1zlPOkU\"}\n\ndata: {\"id\":\"chatcmpl-CCW3F6CSXZpjLd4Lai52tliZMwi8n\",\"object\":\"chat.completion.chunk\",\"created\":1757099177,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_cbf1785567\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"type\"}}]},\"logprobs\":null,\"finish_reason\":null}],\"obfuscation\":\"ApGdYAqBRT9AYLi\"}\n\ndata: {\"id\":\"chatcmpl-CCW3F6CSXZpjLd4Lai52tliZMwi8n\",\"object\":\"chat.completion.chunk\",\"created\":1757099177,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_cbf1785567\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"\\\":\\\"\"}}]},\"logprobs\":null,\"finish_reason\":null}],\"obfuscation\":\"uECCaSbPDcUnvm\"}\n\ndata: {\"id\":\"chatcmpl-CCW3F6CSXZpjLd4Lai52tliZMwi8n\",\"object\":\"chat.completion.chunk\",\"created\":1757099177,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_cbf1785567\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"link\"}}]},\"logprobs\":null,\"finish_reason\":null}],\"obfuscation\":\"ta9QdtpOkqaZOFy\"}\n\ndata: {\"id\":\"chatcmpl-CCW3F6CSXZpjLd4Lai52tliZMwi8n\",\"object\":\"chat.completion.chunk\",\"created\":1757099177,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_cbf1785567\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"\\\",\\\"\"}}]},\"logprobs\":null,\"finish_reason\":null}],\"obfuscation\":\"L09qa0NUulXwvf\"}\n\ndata: {\"id\":\"chatcmpl-CCW3F6CSXZpjLd4Lai52tliZMwi8n\",\"object\":\"chat.completion.chunk\",\"created\":1757099177,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_cbf1785567\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"content\"}}]},\"logprobs\":null,\"finish_reason\":null}],\"obfuscation\":\"Gtt11k3y7UWb\"}\n\ndata: {\"id\":\"chatcmpl-CCW3F6CSXZpjLd4Lai52tliZMwi8n\",\"object\":\"chat.completion.chunk\",\"created\":1757099177,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_cbf1785567\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"\\\":[\"}}]},\"logprobs\":null,\"finish_reason\":null}],\"obfuscation\":\"HGXFFqDpkUFwBhu\"}\n\ndata: {\"id\":\"chatcmpl-CCW3F6CSXZpjLd4Lai52tliZMwi8n\",\"object\":\"chat.completion.chunk\",\"created\":1757099177,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_cbf1785567\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"{\\\"\"}}]},\"logprobs\":null,\"finish_reason\":null}],\"obfuscation\":\"\"}\n\ndata: {\"id\":\"chatcmpl-CCW3F6CSXZpjLd4Lai52tliZMwi8n\",\"object\":\"chat.completion.chunk\",\"created\":1757099177,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_cbf1785567\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"type\"}}]},\"logprobs\":null,\"finish_reason\":null}],\"obfuscation\":\"w8lXIQT7O4DfRl9\"}\n\ndata: {\"id\":\"chatcmpl-CCW3F6CSXZpjLd4Lai52tliZMwi8n\",\"object\":\"chat.completion.chunk\",\"created\":1757099177,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_cbf1785567\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"\\\":\\\"\"}}]},\"logprobs\":null,\"finish_reason\":null}],\"obfuscation\":\"rEXVmMdIqQsNPU\"}\n\ndata: {\"id\":\"chatcmpl-CCW3F6CSXZpjLd4Lai52tliZMwi8n\",\"object\":\"chat.completion.chunk\",\"created\":1757099177,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_cbf1785567\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"text\"}}]},\"logprobs\":null,\"finish_reason\":null}],\"obfuscation\":\"z2pXkOV4FJB3JiA\"}\n\ndata: {\"id\":\"chatcmpl-CCW3F6CSXZpjLd4Lai52tliZMwi8n\",\"object\":\"chat.completion.chunk\",\"created\":1757099177,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_cbf1785567\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"\\\",\\\"\"}}]},\"logprobs\":null,\"finish_reason\":null}],\"obfuscation\":\"V9mEXlh3TQukLI\"}\n\ndata: {\"id\":\"chatcmpl-CCW3F6CSXZpjLd4Lai52tliZMwi8n\",\"object\":\"chat.completion.chunk\",\"created\":1757099177,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_cbf1785567\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"text\"}}]},\"logprobs\":null,\"finish_reason\":null}],\"obfuscation\":\"h73GPyM5uK3RiE9\"}\n\ndata: {\"id\":\"chatcmpl-CCW3F6CSXZpjLd4Lai52tliZMwi8n\",\"object\":\"chat.completion.chunk\",\"created\":1757099177,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_cbf1785567\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"\\\":\\\"\"}}]},\"logprobs\":null,\"finish_reason\":null}],\"obfuscation\":\"LxN2dFSmiSkUD5\"}\n\ndata: {\"id\":\"chatcmpl-CCW3F6CSXZpjLd4Lai52tliZMwi8n\",\"object\":\"chat.completion.chunk\",\"created\":1757099177,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_cbf1785567\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"here\"}}]},\"logprobs\":null,\"finish_reason\":null}],\"obfuscation\":\"fNPFiRXW9v96S4t\"}\n\ndata: {\"id\":\"chatcmpl-CCW3F6CSXZpjLd4Lai52tliZMwi8n\",\"object\":\"chat.completion.chunk\",\"created\":1757099177,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_cbf1785567\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"\\\"}\"}}]},\"logprobs\":null,\"finish_reason\":null}],\"obfuscation\":\"\"}\n\ndata: {\"id\":\"chatcmpl-CCW3F6CSXZpjLd4Lai52tliZMwi8n\",\"object\":\"chat.completion.chunk\",\"created\":1757099177,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_cbf1785567\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"],\\\"\"}}]},\"logprobs\":null,\"finish_reason\":null}],\"obfuscation\":\"9n8v1TWBgchSE2c\"}\n\ndata: {\"id\":\"chatcmpl-CCW3F6CSXZpjLd4Lai52tliZMwi8n\",\"object\":\"chat.completion.chunk\",\"created\":1757099177,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_cbf1785567\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"href\"}}]},\"logprobs\":null,\"finish_reason\":null}],\"obfuscation\":\"1svNiYDQSWsnmyW\"}\n\ndata: {\"id\":\"chatcmpl-CCW3F6CSXZpjLd4Lai52tliZMwi8n\",\"object\":\"chat.completion.chunk\",\"created\":1757099177,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_cbf1785567\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"\\\":\\\"\"}}]},\"logprobs\":null,\"finish_reason\":null}],\"obfuscation\":\"POsmmnTNvnddMI\"}\n\ndata: {\"id\":\"chatcmpl-CCW3F6CSXZpjLd4Lai52tliZMwi8n\",\"object\":\"chat.completion.chunk\",\"created\":1757099177,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_cbf1785567\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"https\"}}]},\"logprobs\":null,\"finish_reason\":null}],\"obfuscation\":\"K3NlocDPu0bIRC\"}\n\ndata: {\"id\":\"chatcmpl-CCW3F6CSXZpjLd4Lai52tliZMwi8n\",\"object\":\"chat.completion.chunk\",\"created\":1757099177,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_cbf1785567\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"://\"}}]},\"logprobs\":null,\"finish_reason\":null}],\"obfuscation\":\"\"}\n\ndata: {\"id\":\"chatcmpl-CCW3F6CSXZpjLd4Lai52tliZMwi8n\",\"object\":\"chat.completion.chunk\",\"created\":1757099177,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_cbf1785567\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"www\"}}]},\"logprobs\":null,\"finish_reason\":null}],\"obfuscation\":\"\"}\n\ndata: {\"id\":\"chatcmpl-CCW3F6CSXZpjLd4Lai52tliZMwi8n\",\"object\":\"chat.completion.chunk\",\"created\":1757099177,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_cbf1785567\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\".google\"}}]},\"logprobs\":null,\"finish_reason\":null}],\"obfuscation\":\"WHx1fsxk5zKq\"}\n\ndata: {\"id\":\"chatcmpl-CCW3F6CSXZpjLd4Lai52tliZMwi8n\",\"object\":\"chat.completion.chunk\",\"created\":1757099177,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_cbf1785567\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\".com\"}}]},\"logprobs\":null,\"finish_reason\":null}],\"obfuscation\":\"R1h7Ysp3lM9QF2b\"}\n\ndata: {\"id\":\"chatcmpl-CCW3F6CSXZpjLd4Lai52tliZMwi8n\",\"object\":\"chat.completion.chunk\",\"created\":1757099177,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_cbf1785567\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"\\\"}\"}}]},\"logprobs\":null,\"finish_reason\":null}],\"obfuscation\":\"\"}\n\ndata: {\"id\":\"chatcmpl-CCW3F6CSXZpjLd4Lai52tliZMwi8n\",\"object\":\"chat.completion.chunk\",\"created\":1757099177,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_cbf1785567\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"]}\"}}]},\"logprobs\":null,\"finish_reason\":null}],\"obfuscation\":\"H\"}\n\ndata: {\"id\":\"chatcmpl-CCW3F6CSXZpjLd4Lai52tliZMwi8n\",\"object\":\"chat.completion.chunk\",\"created\":1757099177,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_cbf1785567\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"]}\"}}]},\"logprobs\":null,\"finish_reason\":null}],\"obfuscation\":\"t\"}\n\ndata: {\"id\":\"chatcmpl-CCW3F6CSXZpjLd4Lai52tliZMwi8n\",\"object\":\"chat.completion.chunk\",\"created\":1757099177,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_cbf1785567\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"]}\"}}]},\"logprobs\":null,\"finish_reason\":null}],\"obfuscation\":\"U\"}\n\ndata: {\"id\":\"chatcmpl-CCW3F6CSXZpjLd4Lai52tliZMwi8n\",\"object\":\"chat.completion.chunk\",\"created\":1757099177,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_cbf1785567\",\"choices\":[{\"index\":0,\"delta\":{},\"logprobs\":null,\"finish_reason\":\"stop\"}],\"obfuscation\":\"ikKhSXO\"}\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 link to google.com_1_fbb9d88d76ae07c1200114cb1bb24e44.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 link to google.com_1_fbb9d88d76ae07c1200114cb1bb24e44.json new file mode 100644 index 0000000000..70f3866974 --- /dev/null +++ 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 link to google.com_1_fbb9d88d76ae07c1200114cb1bb24e44.json @@ -0,0 +1,15 @@ +{ + "request": { + "method": "POST", + "url": "https://api.openai.com/v1/chat/completions", + "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\":\"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).\"},{\"role\":\"user\",\"content\":\"add a paragraph with the text 'Check this out' containing a link to 'https://www.google.com' after the last sentence\"}],\"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,4,5,6]},\"isToggleable\":{\"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-CCW1Jwd5xrbau2u1GbBvgTMd3dmUA\",\"object\":\"chat.completion.chunk\",\"created\":1757099057,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_cbf1785567\",\"choices\":[{\"index\":0,\"delta\":{\"role\":\"assistant\",\"content\":null,\"tool_calls\":[{\"index\":0,\"id\":\"call_Ndw9MDPbeuAXiLVdD9V2Ww3g\",\"type\":\"function\",\"function\":{\"name\":\"json\",\"arguments\":\"\"}}],\"refusal\":null},\"logprobs\":null,\"finish_reason\":null}],\"obfuscation\":\"6DW6myxNbO621\"}\n\ndata: {\"id\":\"chatcmpl-CCW1Jwd5xrbau2u1GbBvgTMd3dmUA\",\"object\":\"chat.completion.chunk\",\"created\":1757099057,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_cbf1785567\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"{\\\"\"}}]},\"logprobs\":null,\"finish_reason\":null}],\"obfuscation\":\"\"}\n\ndata: {\"id\":\"chatcmpl-CCW1Jwd5xrbau2u1GbBvgTMd3dmUA\",\"object\":\"chat.completion.chunk\",\"created\":1757099057,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_cbf1785567\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"operations\"}}]},\"logprobs\":null,\"finish_reason\":null}],\"obfuscation\":\"hBiMwlKeA\"}\n\ndata: {\"id\":\"chatcmpl-CCW1Jwd5xrbau2u1GbBvgTMd3dmUA\",\"object\":\"chat.completion.chunk\",\"created\":1757099057,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_cbf1785567\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"\\\":[\"}}]},\"logprobs\":null,\"finish_reason\":null}],\"obfuscation\":\"N0BlK6etD2LLIar\"}\n\ndata: {\"id\":\"chatcmpl-CCW1Jwd5xrbau2u1GbBvgTMd3dmUA\",\"object\":\"chat.completion.chunk\",\"created\":1757099057,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_cbf1785567\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"{\\\"\"}}]},\"logprobs\":null,\"finish_reason\":null}],\"obfuscation\":\"\"}\n\ndata: {\"id\":\"chatcmpl-CCW1Jwd5xrbau2u1GbBvgTMd3dmUA\",\"object\":\"chat.completion.chunk\",\"created\":1757099057,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_cbf1785567\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"type\"}}]},\"logprobs\":null,\"finish_reason\":null}],\"obfuscation\":\"K3Ay9pwEwVWd9Vy\"}\n\ndata: {\"id\":\"chatcmpl-CCW1Jwd5xrbau2u1GbBvgTMd3dmUA\",\"object\":\"chat.completion.chunk\",\"created\":1757099057,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_cbf1785567\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"\\\":\\\"\"}}]},\"logprobs\":null,\"finish_reason\":null}],\"obfuscation\":\"ePtLg1gE95XHDj\"}\n\ndata: {\"id\":\"chatcmpl-CCW1Jwd5xrbau2u1GbBvgTMd3dmUA\",\"object\":\"chat.completion.chunk\",\"created\":1757099057,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_cbf1785567\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"add\"}}]},\"logprobs\":null,\"finish_reason\":null}],\"obfuscation\":\"\"}\n\ndata: {\"id\":\"chatcmpl-CCW1Jwd5xrbau2u1GbBvgTMd3dmUA\",\"object\":\"chat.completion.chunk\",\"created\":1757099057,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_cbf1785567\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"\\\",\\\"\"}}]},\"logprobs\":null,\"finish_reason\":null}],\"obfuscation\":\"tHho0fbz4Fyg2Y\"}\n\ndata: {\"id\":\"chatcmpl-CCW1Jwd5xrbau2u1GbBvgTMd3dmUA\",\"object\":\"chat.completion.chunk\",\"created\":1757099057,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_cbf1785567\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"reference\"}}]},\"logprobs\":null,\"finish_reason\":null}],\"obfuscation\":\"j7LlmjmxpA\"}\n\ndata: {\"id\":\"chatcmpl-CCW1Jwd5xrbau2u1GbBvgTMd3dmUA\",\"object\":\"chat.completion.chunk\",\"created\":1757099057,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_cbf1785567\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"Id\"}}]},\"logprobs\":null,\"finish_reason\":null}],\"obfuscation\":\"D\"}\n\ndata: {\"id\":\"chatcmpl-CCW1Jwd5xrbau2u1GbBvgTMd3dmUA\",\"object\":\"chat.completion.chunk\",\"created\":1757099057,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_cbf1785567\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"\\\":\\\"\"}}]},\"logprobs\":null,\"finish_reason\":null}],\"obfuscation\":\"icglKwBdUxAGJE\"}\n\ndata: {\"id\":\"chatcmpl-CCW1Jwd5xrbau2u1GbBvgTMd3dmUA\",\"object\":\"chat.completion.chunk\",\"created\":1757099057,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_cbf1785567\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"ref\"}}]},\"logprobs\":null,\"finish_reason\":null}],\"obfuscation\":\"\"}\n\ndata: {\"id\":\"chatcmpl-CCW1Jwd5xrbau2u1GbBvgTMd3dmUA\",\"object\":\"chat.completion.chunk\",\"created\":1757099057,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_cbf1785567\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"2\"}}]},\"logprobs\":null,\"finish_reason\":null}],\"obfuscation\":\"4U\"}\n\ndata: {\"id\":\"chatcmpl-CCW1Jwd5xrbau2u1GbBvgTMd3dmUA\",\"object\":\"chat.completion.chunk\",\"created\":1757099057,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_cbf1785567\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"$\"}}]},\"logprobs\":null,\"finish_reason\":null}],\"obfuscation\":\"rM\"}\n\ndata: {\"id\":\"chatcmpl-CCW1Jwd5xrbau2u1GbBvgTMd3dmUA\",\"object\":\"chat.completion.chunk\",\"created\":1757099057,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_cbf1785567\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"\\\",\\\"\"}}]},\"logprobs\":null,\"finish_reason\":null}],\"obfuscation\":\"uHba0oyOEoUxZs\"}\n\ndata: {\"id\":\"chatcmpl-CCW1Jwd5xrbau2u1GbBvgTMd3dmUA\",\"object\":\"chat.completion.chunk\",\"created\":1757099057,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_cbf1785567\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"position\"}}]},\"logprobs\":null,\"finish_reason\":null}],\"obfuscation\":\"pvVfyK1Br96\"}\n\ndata: {\"id\":\"chatcmpl-CCW1Jwd5xrbau2u1GbBvgTMd3dmUA\",\"object\":\"chat.completion.chunk\",\"created\":1757099057,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_cbf1785567\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"\\\":\\\"\"}}]},\"logprobs\":null,\"finish_reason\":null}],\"obfuscation\":\"OHdj9EHgM1lMo9\"}\n\ndata: {\"id\":\"chatcmpl-CCW1Jwd5xrbau2u1GbBvgTMd3dmUA\",\"object\":\"chat.completion.chunk\",\"created\":1757099057,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_cbf1785567\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"after\"}}]},\"logprobs\":null,\"finish_reason\":null}],\"obfuscation\":\"PAVnhlXlYWTxHW\"}\n\ndata: {\"id\":\"chatcmpl-CCW1Jwd5xrbau2u1GbBvgTMd3dmUA\",\"object\":\"chat.completion.chunk\",\"created\":1757099057,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_cbf1785567\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"\\\",\\\"\"}}]},\"logprobs\":null,\"finish_reason\":null}],\"obfuscation\":\"hPRhMd5nHtt299\"}\n\ndata: {\"id\":\"chatcmpl-CCW1Jwd5xrbau2u1GbBvgTMd3dmUA\",\"object\":\"chat.completion.chunk\",\"created\":1757099057,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_cbf1785567\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"blocks\"}}]},\"logprobs\":null,\"finish_reason\":null}],\"obfuscation\":\"8iFcpnDP5GBuz\"}\n\ndata: {\"id\":\"chatcmpl-CCW1Jwd5xrbau2u1GbBvgTMd3dmUA\",\"object\":\"chat.completion.chunk\",\"created\":1757099057,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_cbf1785567\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"\\\":[\"}}]},\"logprobs\":null,\"finish_reason\":null}],\"obfuscation\":\"9WZxEGFHLbbLJJS\"}\n\ndata: {\"id\":\"chatcmpl-CCW1Jwd5xrbau2u1GbBvgTMd3dmUA\",\"object\":\"chat.completion.chunk\",\"created\":1757099057,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_cbf1785567\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"{\\\"\"}}]},\"logprobs\":null,\"finish_reason\":null}],\"obfuscation\":\"\"}\n\ndata: {\"id\":\"chatcmpl-CCW1Jwd5xrbau2u1GbBvgTMd3dmUA\",\"object\":\"chat.completion.chunk\",\"created\":1757099057,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_cbf1785567\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"type\"}}]},\"logprobs\":null,\"finish_reason\":null}],\"obfuscation\":\"ReyuJ4DqPuSuTCv\"}\n\ndata: {\"id\":\"chatcmpl-CCW1Jwd5xrbau2u1GbBvgTMd3dmUA\",\"object\":\"chat.completion.chunk\",\"created\":1757099057,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_cbf1785567\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"\\\":\\\"\"}}]},\"logprobs\":null,\"finish_reason\":null}],\"obfuscation\":\"9woU0oKywAHfIL\"}\n\ndata: {\"id\":\"chatcmpl-CCW1Jwd5xrbau2u1GbBvgTMd3dmUA\",\"object\":\"chat.completion.chunk\",\"created\":1757099057,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_cbf1785567\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"paragraph\"}}]},\"logprobs\":null,\"finish_reason\":null}],\"obfuscation\":\"Fk9GmBVVgV\"}\n\ndata: {\"id\":\"chatcmpl-CCW1Jwd5xrbau2u1GbBvgTMd3dmUA\",\"object\":\"chat.completion.chunk\",\"created\":1757099057,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_cbf1785567\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"\\\",\\\"\"}}]},\"logprobs\":null,\"finish_reason\":null}],\"obfuscation\":\"zCmF1Mfdv2Jueo\"}\n\ndata: {\"id\":\"chatcmpl-CCW1Jwd5xrbau2u1GbBvgTMd3dmUA\",\"object\":\"chat.completion.chunk\",\"created\":1757099057,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_cbf1785567\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"content\"}}]},\"logprobs\":null,\"finish_reason\":null}],\"obfuscation\":\"jf29ZUIgzJb1\"}\n\ndata: {\"id\":\"chatcmpl-CCW1Jwd5xrbau2u1GbBvgTMd3dmUA\",\"object\":\"chat.completion.chunk\",\"created\":1757099057,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_cbf1785567\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"\\\":[\"}}]},\"logprobs\":null,\"finish_reason\":null}],\"obfuscation\":\"RA7McgYUTVJtPCp\"}\n\ndata: {\"id\":\"chatcmpl-CCW1Jwd5xrbau2u1GbBvgTMd3dmUA\",\"object\":\"chat.completion.chunk\",\"created\":1757099057,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_cbf1785567\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"{\\\"\"}}]},\"logprobs\":null,\"finish_reason\":null}],\"obfuscation\":\"\"}\n\ndata: {\"id\":\"chatcmpl-CCW1Jwd5xrbau2u1GbBvgTMd3dmUA\",\"object\":\"chat.completion.chunk\",\"created\":1757099057,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_cbf1785567\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"type\"}}]},\"logprobs\":null,\"finish_reason\":null}],\"obfuscation\":\"wtJ2nJwSMAsVjVS\"}\n\ndata: {\"id\":\"chatcmpl-CCW1Jwd5xrbau2u1GbBvgTMd3dmUA\",\"object\":\"chat.completion.chunk\",\"created\":1757099057,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_cbf1785567\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"\\\":\\\"\"}}]},\"logprobs\":null,\"finish_reason\":null}],\"obfuscation\":\"2nkgZidDW5ZjjN\"}\n\ndata: {\"id\":\"chatcmpl-CCW1Jwd5xrbau2u1GbBvgTMd3dmUA\",\"object\":\"chat.completion.chunk\",\"created\":1757099057,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_cbf1785567\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"text\"}}]},\"logprobs\":null,\"finish_reason\":null}],\"obfuscation\":\"AJSiYqrlWuzEEFQ\"}\n\ndata: {\"id\":\"chatcmpl-CCW1Jwd5xrbau2u1GbBvgTMd3dmUA\",\"object\":\"chat.completion.chunk\",\"created\":1757099057,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_cbf1785567\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"\\\",\\\"\"}}]},\"logprobs\":null,\"finish_reason\":null}],\"obfuscation\":\"PV6Ue3yEn9Ot7a\"}\n\ndata: {\"id\":\"chatcmpl-CCW1Jwd5xrbau2u1GbBvgTMd3dmUA\",\"object\":\"chat.completion.chunk\",\"created\":1757099057,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_cbf1785567\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"text\"}}]},\"logprobs\":null,\"finish_reason\":null}],\"obfuscation\":\"6z8H8gXJKu6FUOt\"}\n\ndata: {\"id\":\"chatcmpl-CCW1Jwd5xrbau2u1GbBvgTMd3dmUA\",\"object\":\"chat.completion.chunk\",\"created\":1757099057,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_cbf1785567\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"\\\":\\\"\"}}]},\"logprobs\":null,\"finish_reason\":null}],\"obfuscation\":\"mSDHU9FDPGrDgg\"}\n\ndata: {\"id\":\"chatcmpl-CCW1Jwd5xrbau2u1GbBvgTMd3dmUA\",\"object\":\"chat.completion.chunk\",\"created\":1757099057,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_cbf1785567\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"Check\"}}]},\"logprobs\":null,\"finish_reason\":null}],\"obfuscation\":\"EQJcVZH83B60zL\"}\n\ndata: {\"id\":\"chatcmpl-CCW1Jwd5xrbau2u1GbBvgTMd3dmUA\",\"object\":\"chat.completion.chunk\",\"created\":1757099057,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_cbf1785567\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\" this\"}}]},\"logprobs\":null,\"finish_reason\":null}],\"obfuscation\":\"NgxPfHtLcLwVMN\"}\n\ndata: {\"id\":\"chatcmpl-CCW1Jwd5xrbau2u1GbBvgTMd3dmUA\",\"object\":\"chat.completion.chunk\",\"created\":1757099057,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_cbf1785567\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\" out\"}}]},\"logprobs\":null,\"finish_reason\":null}],\"obfuscation\":\"F2UDmxNULct46BA\"}\n\ndata: {\"id\":\"chatcmpl-CCW1Jwd5xrbau2u1GbBvgTMd3dmUA\",\"object\":\"chat.completion.chunk\",\"created\":1757099057,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_cbf1785567\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\" \\\",\\\"\"}}]},\"logprobs\":null,\"finish_reason\":null}],\"obfuscation\":\"KFx1Ig6nWQubI\"}\n\ndata: {\"id\":\"chatcmpl-CCW1Jwd5xrbau2u1GbBvgTMd3dmUA\",\"object\":\"chat.completion.chunk\",\"created\":1757099057,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_cbf1785567\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"styles\"}}]},\"logprobs\":null,\"finish_reason\":null}],\"obfuscation\":\"RRdn3w3aA72Xx\"}\n\ndata: {\"id\":\"chatcmpl-CCW1Jwd5xrbau2u1GbBvgTMd3dmUA\",\"object\":\"chat.completion.chunk\",\"created\":1757099057,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_cbf1785567\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"\\\":\"}}]},\"logprobs\":null,\"finish_reason\":null}],\"obfuscation\":\"\"}\n\ndata: {\"id\":\"chatcmpl-CCW1Jwd5xrbau2u1GbBvgTMd3dmUA\",\"object\":\"chat.completion.chunk\",\"created\":1757099057,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_cbf1785567\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"{}\"}}]},\"logprobs\":null,\"finish_reason\":null}],\"obfuscation\":\"7\"}\n\ndata: {\"id\":\"chatcmpl-CCW1Jwd5xrbau2u1GbBvgTMd3dmUA\",\"object\":\"chat.completion.chunk\",\"created\":1757099057,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_cbf1785567\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"},{\\\"\"}}]},\"logprobs\":null,\"finish_reason\":null}],\"obfuscation\":\"11o4cK4SC3dbZM\"}\n\ndata: {\"id\":\"chatcmpl-CCW1Jwd5xrbau2u1GbBvgTMd3dmUA\",\"object\":\"chat.completion.chunk\",\"created\":1757099057,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_cbf1785567\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"type\"}}]},\"logprobs\":null,\"finish_reason\":null}],\"obfuscation\":\"0Ykn5PtiEYIOFix\"}\n\ndata: {\"id\":\"chatcmpl-CCW1Jwd5xrbau2u1GbBvgTMd3dmUA\",\"object\":\"chat.completion.chunk\",\"created\":1757099057,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_cbf1785567\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"\\\":\\\"\"}}]},\"logprobs\":null,\"finish_reason\":null}],\"obfuscation\":\"K455ncUMsccsEH\"}\n\ndata: {\"id\":\"chatcmpl-CCW1Jwd5xrbau2u1GbBvgTMd3dmUA\",\"object\":\"chat.completion.chunk\",\"created\":1757099057,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_cbf1785567\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"link\"}}]},\"logprobs\":null,\"finish_reason\":null}],\"obfuscation\":\"ziOUIQBdL1MjV7V\"}\n\ndata: {\"id\":\"chatcmpl-CCW1Jwd5xrbau2u1GbBvgTMd3dmUA\",\"object\":\"chat.completion.chunk\",\"created\":1757099057,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_cbf1785567\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"\\\",\\\"\"}}]},\"logprobs\":null,\"finish_reason\":null}],\"obfuscation\":\"jkw4AYbHM5o2fI\"}\n\ndata: {\"id\":\"chatcmpl-CCW1Jwd5xrbau2u1GbBvgTMd3dmUA\",\"object\":\"chat.completion.chunk\",\"created\":1757099057,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_cbf1785567\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"content\"}}]},\"logprobs\":null,\"finish_reason\":null}],\"obfuscation\":\"tNn8EnmWq0nn\"}\n\ndata: {\"id\":\"chatcmpl-CCW1Jwd5xrbau2u1GbBvgTMd3dmUA\",\"object\":\"chat.completion.chunk\",\"created\":1757099057,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_cbf1785567\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"\\\":[\"}}]},\"logprobs\":null,\"finish_reason\":null}],\"obfuscation\":\"GXGMpEpXZjbedia\"}\n\ndata: {\"id\":\"chatcmpl-CCW1Jwd5xrbau2u1GbBvgTMd3dmUA\",\"object\":\"chat.completion.chunk\",\"created\":1757099057,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_cbf1785567\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"{\\\"\"}}]},\"logprobs\":null,\"finish_reason\":null}],\"obfuscation\":\"\"}\n\ndata: {\"id\":\"chatcmpl-CCW1Jwd5xrbau2u1GbBvgTMd3dmUA\",\"object\":\"chat.completion.chunk\",\"created\":1757099057,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_cbf1785567\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"type\"}}]},\"logprobs\":null,\"finish_reason\":null}],\"obfuscation\":\"ebXA6xDZuxxcFKy\"}\n\ndata: {\"id\":\"chatcmpl-CCW1Jwd5xrbau2u1GbBvgTMd3dmUA\",\"object\":\"chat.completion.chunk\",\"created\":1757099057,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_cbf1785567\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"\\\":\\\"\"}}]},\"logprobs\":null,\"finish_reason\":null}],\"obfuscation\":\"FkjZ6T5WHp5fEX\"}\n\ndata: {\"id\":\"chatcmpl-CCW1Jwd5xrbau2u1GbBvgTMd3dmUA\",\"object\":\"chat.completion.chunk\",\"created\":1757099057,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_cbf1785567\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"text\"}}]},\"logprobs\":null,\"finish_reason\":null}],\"obfuscation\":\"KTVNdUZxU0SCszx\"}\n\ndata: {\"id\":\"chatcmpl-CCW1Jwd5xrbau2u1GbBvgTMd3dmUA\",\"object\":\"chat.completion.chunk\",\"created\":1757099057,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_cbf1785567\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"\\\",\\\"\"}}]},\"logprobs\":null,\"finish_reason\":null}],\"obfuscation\":\"wona2URty6Gejm\"}\n\ndata: {\"id\":\"chatcmpl-CCW1Jwd5xrbau2u1GbBvgTMd3dmUA\",\"object\":\"chat.completion.chunk\",\"created\":1757099057,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_cbf1785567\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"text\"}}]},\"logprobs\":null,\"finish_reason\":null}],\"obfuscation\":\"dbkJph7YMvltGPM\"}\n\ndata: {\"id\":\"chatcmpl-CCW1Jwd5xrbau2u1GbBvgTMd3dmUA\",\"object\":\"chat.completion.chunk\",\"created\":1757099057,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_cbf1785567\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"\\\":\\\"\"}}]},\"logprobs\":null,\"finish_reason\":null}],\"obfuscation\":\"r3462cWp7r2VJP\"}\n\ndata: {\"id\":\"chatcmpl-CCW1Jwd5xrbau2u1GbBvgTMd3dmUA\",\"object\":\"chat.completion.chunk\",\"created\":1757099057,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_cbf1785567\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"here\"}}]},\"logprobs\":null,\"finish_reason\":null}],\"obfuscation\":\"HCwQNTCfhigqtx1\"}\n\ndata: {\"id\":\"chatcmpl-CCW1Jwd5xrbau2u1GbBvgTMd3dmUA\",\"object\":\"chat.completion.chunk\",\"created\":1757099057,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_cbf1785567\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"\\\",\\\"\"}}]},\"logprobs\":null,\"finish_reason\":null}],\"obfuscation\":\"OyWUvboz8MfJG1\"}\n\ndata: {\"id\":\"chatcmpl-CCW1Jwd5xrbau2u1GbBvgTMd3dmUA\",\"object\":\"chat.completion.chunk\",\"created\":1757099057,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_cbf1785567\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"styles\"}}]},\"logprobs\":null,\"finish_reason\":null}],\"obfuscation\":\"7AEq4TPwSoMxP\"}\n\ndata: {\"id\":\"chatcmpl-CCW1Jwd5xrbau2u1GbBvgTMd3dmUA\",\"object\":\"chat.completion.chunk\",\"created\":1757099057,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_cbf1785567\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"\\\":\"}}]},\"logprobs\":null,\"finish_reason\":null}],\"obfuscation\":\"\"}\n\ndata: {\"id\":\"chatcmpl-CCW1Jwd5xrbau2u1GbBvgTMd3dmUA\",\"object\":\"chat.completion.chunk\",\"created\":1757099057,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_cbf1785567\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"{\"}}]},\"logprobs\":null,\"finish_reason\":null}],\"obfuscation\":\"w9\"}\n\ndata: {\"id\":\"chatcmpl-CCW1Jwd5xrbau2u1GbBvgTMd3dmUA\",\"object\":\"chat.completion.chunk\",\"created\":1757099057,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_cbf1785567\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"}}\"}}]},\"logprobs\":null,\"finish_reason\":null}],\"obfuscation\":\"L\"}\n\ndata: {\"id\":\"chatcmpl-CCW1Jwd5xrbau2u1GbBvgTMd3dmUA\",\"object\":\"chat.completion.chunk\",\"created\":1757099057,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_cbf1785567\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"],\\\"\"}}]},\"logprobs\":null,\"finish_reason\":null}],\"obfuscation\":\"H4W6w8RXnoKQOcD\"}\n\ndata: {\"id\":\"chatcmpl-CCW1Jwd5xrbau2u1GbBvgTMd3dmUA\",\"object\":\"chat.completion.chunk\",\"created\":1757099057,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_cbf1785567\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"href\"}}]},\"logprobs\":null,\"finish_reason\":null}],\"obfuscation\":\"6i6kdn3MrKVlQrl\"}\n\ndata: {\"id\":\"chatcmpl-CCW1Jwd5xrbau2u1GbBvgTMd3dmUA\",\"object\":\"chat.completion.chunk\",\"created\":1757099057,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_cbf1785567\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"\\\":\\\"\"}}]},\"logprobs\":null,\"finish_reason\":null}],\"obfuscation\":\"ZnzHHe4GBS2KhM\"}\n\ndata: {\"id\":\"chatcmpl-CCW1Jwd5xrbau2u1GbBvgTMd3dmUA\",\"object\":\"chat.completion.chunk\",\"created\":1757099057,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_cbf1785567\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"https\"}}]},\"logprobs\":null,\"finish_reason\":null}],\"obfuscation\":\"UCX5Kgb1i8tJGx\"}\n\ndata: {\"id\":\"chatcmpl-CCW1Jwd5xrbau2u1GbBvgTMd3dmUA\",\"object\":\"chat.completion.chunk\",\"created\":1757099057,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_cbf1785567\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"://\"}}]},\"logprobs\":null,\"finish_reason\":null}],\"obfuscation\":\"\"}\n\ndata: {\"id\":\"chatcmpl-CCW1Jwd5xrbau2u1GbBvgTMd3dmUA\",\"object\":\"chat.completion.chunk\",\"created\":1757099057,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_cbf1785567\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"www\"}}]},\"logprobs\":null,\"finish_reason\":null}],\"obfuscation\":\"\"}\n\ndata: {\"id\":\"chatcmpl-CCW1Jwd5xrbau2u1GbBvgTMd3dmUA\",\"object\":\"chat.completion.chunk\",\"created\":1757099057,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_cbf1785567\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\".google\"}}]},\"logprobs\":null,\"finish_reason\":null}],\"obfuscation\":\"yMbwf6ce5WoM\"}\n\ndata: {\"id\":\"chatcmpl-CCW1Jwd5xrbau2u1GbBvgTMd3dmUA\",\"object\":\"chat.completion.chunk\",\"created\":1757099057,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_cbf1785567\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\".com\"}}]},\"logprobs\":null,\"finish_reason\":null}],\"obfuscation\":\"hiGdKd43jDEtVA4\"}\n\ndata: {\"id\":\"chatcmpl-CCW1Jwd5xrbau2u1GbBvgTMd3dmUA\",\"object\":\"chat.completion.chunk\",\"created\":1757099057,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_cbf1785567\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"\\\"}\"}}]},\"logprobs\":null,\"finish_reason\":null}],\"obfuscation\":\"\"}\n\ndata: {\"id\":\"chatcmpl-CCW1Jwd5xrbau2u1GbBvgTMd3dmUA\",\"object\":\"chat.completion.chunk\",\"created\":1757099057,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_cbf1785567\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"]}\"}}]},\"logprobs\":null,\"finish_reason\":null}],\"obfuscation\":\"U\"}\n\ndata: {\"id\":\"chatcmpl-CCW1Jwd5xrbau2u1GbBvgTMd3dmUA\",\"object\":\"chat.completion.chunk\",\"created\":1757099057,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_cbf1785567\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"]}\"}}]},\"logprobs\":null,\"finish_reason\":null}],\"obfuscation\":\"m\"}\n\ndata: {\"id\":\"chatcmpl-CCW1Jwd5xrbau2u1GbBvgTMd3dmUA\",\"object\":\"chat.completion.chunk\",\"created\":1757099057,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_cbf1785567\",\"choices\":[{\"index\":0,\"delta\":{\"tool_calls\":[{\"index\":0,\"function\":{\"arguments\":\"]}\"}}]},\"logprobs\":null,\"finish_reason\":null}],\"obfuscation\":\"R\"}\n\ndata: {\"id\":\"chatcmpl-CCW1Jwd5xrbau2u1GbBvgTMd3dmUA\",\"object\":\"chat.completion.chunk\",\"created\":1757099057,\"model\":\"gpt-4o-2024-08-06\",\"service_tier\":\"default\",\"system_fingerprint\":\"fp_cbf1785567\",\"choices\":[{\"index\":0,\"delta\":{},\"logprobs\":null,\"finish_reason\":\"stop\"}],\"obfuscation\":\"fanYK3E\"}\n\ndata: [DONE]\n\n", + "headers": [] + } +} \ No newline at end of file diff --git a/packages/xl-ai/src/api/formats/json/tools/validate.ts b/packages/xl-ai/src/api/formats/json/tools/validate.ts index 10d95d0599..41b1ce1ab7 100644 --- a/packages/xl-ai/src/api/formats/json/tools/validate.ts +++ b/packages/xl-ai/src/api/formats/json/tools/validate.ts @@ -27,7 +27,9 @@ function validateInlineContent(content: any, editor: any): boolean { return false; } - return validateInlineContent(content.content, editor); + return content.content.every((child: any) => + validateInlineContent(child, editor), + ); } // TODO: custom ic content diff --git a/packages/xl-ai/src/testUtil/cases/addOperationTestCases.ts b/packages/xl-ai/src/testUtil/cases/addOperationTestCases.ts index 8d1179d918..67d9958577 100644 --- a/packages/xl-ai/src/testUtil/cases/addOperationTestCases.ts +++ b/packages/xl-ai/src/testUtil/cases/addOperationTestCases.ts @@ -99,4 +99,39 @@ export const addOperationTestCases: DocumentOperationTestCase[] = [ ], userPrompt: `write a new paragraph with the text 'You look great today!'`, }, + { + editor: getSimpleEditor, + description: "add a link to google.com", + baseToolCalls: [ + { + type: "add", + blocks: [ + { + type: "paragraph", + content: [ + { + type: "text", + text: "Check this out ", + }, + { + type: "link", + content: [ + { + type: "text", + text: "here", + styles: {}, + }, + ], + href: "https://www.google.com", + }, + ], + }, + ], + referenceId: "ref2", + position: "after", + }, + ], + userPrompt: + "add a paragraph with the text 'Check this out' and a link with text 'here' to 'https://www.google.com' after the last sentence", + }, ];