Skip to content

Commit e020cfe

Browse files
Merge branch 'main' into HEAD
2 parents c57430e + 7c3a2a7 commit e020cfe

File tree

6 files changed

+502
-2
lines changed

6 files changed

+502
-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)