Skip to content

Commit be07534

Browse files
Fix broken cell in prompting guide (openai#1842)
1 parent 8e4d321 commit be07534

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

examples/gpt4-1_prompting_guide.ipynb

Lines changed: 2 additions & 2 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",
583583
"* JSON performed particularly poorly. \n",
584-
" * Example: `[{"id": 1, "title": "The Fox", "content": "The quick brown fox jumped over the lazy dog"}]`\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)