Replies: 2 comments 1 reply
-
There is #573 |
Beta Was this translation helpful? Give feedback.
1 reply
-
I'd really like to dive more into tool integration, where can I found more info about this? For example a list of LLMs with tools (I tried tinyllama as a toy and it said me it doesn't have it), or even better an example of use. |
Beta Was this translation helpful? Give feedback.
0 replies
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
-
Does the sglang frontend support tool use yet? Tool use allows providing a list of functions with calling schemas and descriptions. Supported LLMs (among them Llama 3.2 and OpenAI GPT-4-turbo and newer) can then call them, which typically suspends generations (by detecting special tokens) and allows the client caller code to execute the function and provide the result back to the LLM. Building this yourself or with control flow is different/significantly less flexible since one has to specify the positions where such (constrained) function calling generation can happen.
Further reading:
Beta Was this translation helpful? Give feedback.
All reactions