Skip to content

docs: Fix typos #7823

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Merged
merged 1 commit into from
Mar 11, 2025
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
8 changes: 4 additions & 4 deletions docs/core_docs/docs/tutorials/classification.ipynb
Original file line number Diff line number Diff line change
Expand Up @@ -195,7 +195,7 @@
"`\n",
")\n",
"\n",
"const llmWihStructuredOutput2 = llm.withStructuredOutput(classificationSchema2, { name: \"extractor\" })"
"const llmWithStructuredOutput2 = llm.withStructuredOutput(classificationSchema2, { name: \"extractor\" })"
]
},
{
Expand Down Expand Up @@ -224,7 +224,7 @@
"const prompt2 = await taggingPrompt2.invoke({\n",
" input: \"Estoy increiblemente contento de haberte conocido! Creo que seremos muy buenos amigos!\"\n",
"})\n",
"await llmWihStructuredOutput2.invoke(prompt2)"
"await llmWithStructuredOutput2.invoke(prompt2)"
]
},
{
Expand All @@ -245,7 +245,7 @@
"const prompt3 = await taggingPrompt2.invoke({\n",
" input: \"Estoy muy enojado con vos! Te voy a dar tu merecido!\"\n",
"})\n",
"await llmWihStructuredOutput2.invoke(prompt3)"
"await llmWithStructuredOutput2.invoke(prompt3)"
]
},
{
Expand All @@ -266,7 +266,7 @@
"const prompt4 = await taggingPrompt2.invoke({\n",
" input: \"Weather is ok here, I can go outside without much more than a coat\"\n",
"})\n",
"await llmWihStructuredOutput2.invoke(prompt4)"
"await llmWithStructuredOutput2.invoke(prompt4)"
]
},
{
Expand Down
Loading