-
Notifications
You must be signed in to change notification settings - Fork 30
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
* refactor vlm_stream_generate * refactor custom types * Add llama 3.1 tool calling * fix opening config file * add xlam tool calling * add arcee-agent and firefunction * bump mlx-vlm * add function call tets * fix vlm call * add function calling * add command-r-plus * sort
- Loading branch information
Showing
12 changed files
with
761 additions
and
167 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,18 @@ | ||
{% if tools %} | ||
In this environment, you have access to a set of tools you can use to answer the user's question. | ||
|
||
You may call them like this: | ||
<function_calls> | ||
<invoke> | ||
<tool_name>$TOOL_NAME</tool_name> | ||
<parameters> | ||
<$PARAMETER_NAME>$PARAMETER_VALUE</$PARAMETER_NAME> | ||
... | ||
</parameters> | ||
</invoke> | ||
</function_calls> | ||
|
||
Here are the tools available: | ||
{{ tools }} | ||
|
||
{% endif %} |
Oops, something went wrong.