From c61b9daef57d125c66b3cd9391c44420fa5c951f Mon Sep 17 00:00:00 2001 From: Aleksandar Petrov <7101799+AleksandarPetrov@users.noreply.github.com> Date: Mon, 7 Oct 2024 21:55:25 +0300 Subject: [PATCH] docs: Grammar fix in concepts.mdx (#27149) Missing "is" in a sentence about the Tool usage. --- docs/docs/concepts.mdx | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/docs/docs/concepts.mdx b/docs/docs/concepts.mdx index 1efb3e25da7..2f48f142976 100644 --- a/docs/docs/concepts.mdx +++ b/docs/docs/concepts.mdx @@ -611,7 +611,7 @@ Read more about [defining tools that return artifacts here](/docs/how_to/tool_ar When designing tools to be used by a model, it is important to keep in mind that: - Chat models that have explicit [tool-calling APIs](/docs/concepts/#functiontool-calling) will be better at tool calling than non-fine-tuned models. -- Models will perform better if the tools have well-chosen names, descriptions, and JSON schemas. This another form of prompt engineering. +- Models will perform better if the tools have well-chosen names, descriptions, and JSON schemas. This is another form of prompt engineering. - Simple, narrowly scoped tools are easier for models to use than complex tools. #### Related