From 776bfd817df7850bdd366f0a1d93c4d733630212 Mon Sep 17 00:00:00 2001 From: kingbri Date: Sun, 8 Sep 2024 12:28:38 -0400 Subject: [PATCH] Templates: Migrate tool calling templates to folder Mirrors the llm-prompt-templates repo Signed-off-by: kingbri --- .gitignore | 6 +++++- .../chatml_with_headers.jinja} | 0 2 files changed, 5 insertions(+), 1 deletion(-) rename templates/{chatml_with_headers_tool_calling.jinja => tool_calls/chatml_with_headers.jinja} (100%) diff --git a/.gitignore b/.gitignore index 49aa5173..5e5c9ee5 100644 --- a/.gitignore +++ b/.gitignore @@ -192,7 +192,11 @@ templates/* !templates/place_your_templates_here.txt !templates/alpaca.jinja !templates/chatml.jinja -!templates/chatml_with_headers_tool_calling.jinja + +# Tool calling templates folder +templates/tool_calls/* +!templates/tool_calls +!templates/tool_calls/chatml_with_headers.jinja # Sampler overrides folder sampler_overrides/* diff --git a/templates/chatml_with_headers_tool_calling.jinja b/templates/tool_calls/chatml_with_headers.jinja similarity index 100% rename from templates/chatml_with_headers_tool_calling.jinja rename to templates/tool_calls/chatml_with_headers.jinja