docs: fix typo (#30310)

This commit is contained in:
Oskar Stark
2025-03-17 11:54:32 -05:00
committed by GitHub
parent a5eca20e1b
commit 192035f8c0
2 changed files with 2 additions and 2 deletions

View File

@@ -16,7 +16,7 @@ This need motivates the concept of structured output, where models can be instru
## Recommended usage
This pseudo-code illustrates the recommended workflow when using structured output.
This pseudocode illustrates the recommended workflow when using structured output.
LangChain provides a method, [`with_structured_output()`](/docs/how_to/structured_output/#the-with_structured_output-method), that automates the process of binding the schema to the [model](/docs/concepts/chat_models/) and parsing the output.
This helper function is available for all model providers that support structured output.

View File

@@ -30,7 +30,7 @@ You will sometimes hear the term `function calling`. We use this term interchang
## Recommended usage
This pseudo-code illustrates the recommended workflow for using tool calling.
This pseudocode illustrates the recommended workflow for using tool calling.
Created tools are passed to `.bind_tools()` method as a list.
This model can be called, as usual. If a tool call is made, model's response will contain the tool call arguments.
The tool call arguments can be passed directly to the tool.