Skip to content

Commit 2c88921

Browse files
Fix: Replace U+201C(“) and U+201D(”) with U+0022(") in XML and JSON (openai#1774)
1 parent d8bffd8 commit 2c88921

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

examples/gpt4-1_prompting_guide.ipynb

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -577,11 +577,11 @@
577577
"Guidance specifically for adding a large number of documents or files to input context:\n",
578578
"\n",
579579
"* XML performed well in our long context testing. \n",
580-
" * Example: `<doc id=1 title=The Fox>The quick brown fox jumps over the lazy dog</doc>` \n",
580+
" * Example: `<doc id="1" title="The Fox">The quick brown fox jumps over the lazy dog</doc>` \n",
581581
"* This format, proposed by Lee et al. ([ref](https://arxiv.org/pdf/2406.13121)), also performed well in our long context testing. \n",
582582
" * Example: `ID: 1 | TITLE: The Fox | CONTENT: The quick brown fox jumps over the lazy dog` \n",
583-
"* JSON performed particularly poorly.\n",
584-
" * Example: `[{“id”: 1, title”: “The Fox”, “content”: “The quick brown fox jumped over the lazy dog}]`\n",
583+
"* JSON performed particularly poorly. \n",
584+
" * Example: `[{"id": 1, "title": "The Fox", "content": "The quick brown fox jumped over the lazy dog"}]`\n",
585585
"\n",
586586
"The model is trained to robustly understand structure in a variety of formats. Generally, use your judgement and think about what will provide clear information and “stand out” to the model. For example, if you’re retrieving documents that contain lots of XML, an XML-based delimiter will likely be less effective. \n",
587587
"\n",

0 commit comments

Comments
 (0)