From b56120944dc4374b4d17bf9db3911046d855580a Mon Sep 17 00:00:00 2001
From: OHSAWA Masashi <makai_no_kamen_benshi@hotmail.com>
Date: Tue, 15 Apr 2025 14:23:29 +0900
Subject: [PATCH] =?UTF-8?q?Fix:=20Replace=20U+201C(=E2=80=9C)=20and=20U+20?=
 =?UTF-8?q?1D(=E2=80=9D)=20with=20U+0022(")=20in=20XML=20and=20JSON?=
MIME-Version: 1.0
Content-Type: text/plain; charset=UTF-8
Content-Transfer-Encoding: 8bit

---
 examples/gpt4-1_prompting_guide.ipynb | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/examples/gpt4-1_prompting_guide.ipynb b/examples/gpt4-1_prompting_guide.ipynb
index e2b7cb73d9..1a5c44cb73 100644
--- a/examples/gpt4-1_prompting_guide.ipynb
+++ b/examples/gpt4-1_prompting_guide.ipynb
@@ -470,11 +470,11 @@
     "Guidance specifically for adding a large number of documents or files to context:\n",
     "\n",
     "* XML performed well in our long context testing.  \n",
-    "  * Example: `<doc id=1 title=”The Fox”>The quick brown fox jumps over the lazy dog</doc>`  \n",
+    "  * Example: `<doc id="1" title="The Fox">The quick brown fox jumps over the lazy dog</doc>`  \n",
     "* This format, proposed by Lee et al. ([ref](https://arxiv.org/pdf/2406.13121)), also performed well in our long context testing.  \n",
     "  * Example: `ID: 1 | TITLE: The Fox | CONTENT: The quick brown fox jumps over the lazy dog`  \n",
     "* JSON performed particularly poorly.  \n",
-    "  * Example: `[{“id”: 1, “title”: “The Fox”, “content”: “The quick brown fox jumped over the lazy dog”}]`\n",
+    "  * Example: `[{"id": 1, "title": "The Fox", "content": "The quick brown fox jumped over the lazy dog"}]`\n",
     "\n",
     "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",
     "\n",