Llama 3.2 with better templates for tool-calling agents
66 Pulls Updated 2 months ago
Updated 2 months ago
2 months ago
440e9a2b3350 · 2.0GB
Readme
For more information, see the base llama-3.2
model’s Readme.
The llama-3.2
model’s prompt template comes from this example prompt on the Llama 3.1 model website. I have found empirically that this template does not work well for tool-calling agents. The default prompt template causes agents to behave unnaturally, such as responding to greetings by calling unrelated tools.
The tags of this model are identical to the llama-3.2:3b
model but contain prompt templates that are intended to perform better with tool-calling agents. More information about the creation of these templates is available in this blog post.
Templates
ejschwar/llama3.2-better-prompts:llama3.1-tooling-prompt
This model uses the template for Llama 3.1 documented in the llama-models repository.
ejschwar/llama3.2-better-prompts:llama3.1-tooling-prompt-customized
This model is based on the template for Llama 3.1 documented in the llama-models repository, but with a small change as expressed in the following diff:
-Answer the user's question by making use of the following functions if needed.
-If none of the function can be used, please say so.
+Help and converse with the user. If and only if the user asks a question that
+is relevant to one of the following functions, make use of them. If none of
+the functions can be used, answer the query as best you can.
Empirically, I found the change caused the model to more reliably answer questions that were unrelated to the available tools.