Skip to content
GitLab
Menu
Projects
Groups
Snippets
Loading...
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in
Toggle navigation
Menu
Open sidebar
OpenDAS
vllm_cscc
Commits
eb07c8cb
Unverified
Commit
eb07c8cb
authored
Apr 06, 2025
by
Ben Jackson
Committed by
GitHub
Apr 06, 2025
Browse files
[Frontend] Fix typo in tool chat templates for llama3.2 and toolace (#14501)
Signed-off-by:
Ben Jackson
<
ben@ben.com
>
parent
ba108019
Changes
2
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
2 additions
and
2 deletions
+2
-2
examples/tool_chat_template_llama3.2_pythonic.jinja
examples/tool_chat_template_llama3.2_pythonic.jinja
+1
-1
examples/tool_chat_template_toolace.jinja
examples/tool_chat_template_toolace.jinja
+1
-1
No files found.
examples/tool_chat_template_llama3.2_pythonic.jinja
View file @
eb07c8cb
...
...
@@ -76,7 +76,7 @@
{{- tool_call.name + '(' -}}
{%- for param in tool_call.arguments %}
{{- param + '=' -}}
{{- "%s
r
" | format(tool_call.arguments[param]) -}}
{{- "%s" | format(tool_call.arguments[param]) -}}
{% if not loop.last %}, {% endif %}
{%- endfor %}
{{- ')' -}}
...
...
examples/tool_chat_template_toolace.jinja
View file @
eb07c8cb
...
...
@@ -44,7 +44,7 @@
{{- tool_call.name + '(' -}}
{%- for param in tool_call.arguments %}
{{- param + '=' -}}
{{- "%s
r
" | format(tool_call.arguments[param]) -}}
{{- "%s" | format(tool_call.arguments[param]) -}}
{% if not loop.last %}, {% endif %}
{%- endfor %}
{{- ')' -}}
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
.
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment