docs: Fix comment within "handle long text" example (#21248)

The current doc-string comment is referring to the wrong schema.
pull/21224/head^2
andyjessen 1 month ago committed by GitHub
parent c3d169ab00
commit 64e17bd793
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194

@ -115,8 +115,8 @@
"class KeyDevelopment(BaseModel):\n",
" \"\"\"Information about a development in the history of cars.\"\"\"\n",
"\n",
" # ^ Doc-string for the entity Person.\n",
" # This doc-string is sent to the LLM as the description of the schema Person,\n",
" # ^ Doc-string for the entity KeyDevelopment.\n",
" # This doc-string is sent to the LLM as the description of the schema KeyDevelopment,\n",
" # and it can help to improve extraction results.\n",
" # Note that all fields are required rather than optional!\n",
" year: int = Field(\n",

Loading…
Cancel
Save