Salesforce/xlam-function-calling-60k
Viewer • Updated • 60k • 19.5k • 615
Fine-tuned Llama 3.1 8B Instruct for function/tool calling.
from vllm import LLM
llm = LLM(model="alfazick/llama-3.1-8b-function-calling")
Or with transformers:
from transformers import AutoModelForCausalLM, AutoTokenizer
model = AutoModelForCausalLM.from_pretrained("alfazick/llama-3.1-8b-function-calling")
tokenizer = AutoTokenizer.from_pretrained("alfazick/llama-3.1-8b-function-calling")
<|begin_of_text|><|start_header_id|>system<|end_header_id|>
You are a helpful assistant with access to the following tools or function calls. Your task is to produce a sequence of tools or function calls necessary to generate response to the user utterance. Use the following tools or function calls as required:
[{"name": "func_name", "description": "...", "parameters": {...}}]<|eot_id|><|start_header_id|>user<|end_header_id|>
{query}<|eot_id|><|start_header_id|>assistant<|end_header_id|>
[{"name": "function_name", "arguments": {"arg": "value"}}]
Base model
meta-llama/Llama-3.1-8B