This commit is contained in:
Timothy J. Baek
2024-08-17 17:01:35 +02:00
parent 536b40890a
commit 0ae6ca608c
2 changed files with 11 additions and 6 deletions

View File

@@ -121,6 +121,6 @@ def search_query_generation_template(
return template
def tool_calling_generation_template(template: str, tools_specs: str) -> str:
def tools_function_calling_generation_template(template: str, tools_specs: str) -> str:
template = template.replace("{{TOOLS}}", tools_specs)
return template