Views
No views yet
llama3_json tool-call parser, the parser used by the Llama 3 series.1# Launch the server, listening on port 8000 by default
2furiosa-llm serve furiosa-ai/Llama-3.3-70B-Instruct1INFO: Started server process [27507]
2INFO: Waiting for application startup.
3INFO: Application startup complete.
4INFO: Uvicorn running on http://0.0.0.0:8000 (Press CTRL+C to quit)llama3_json
tool-call parser:1furiosa-llm serve furiosa-ai/Llama-3.3-70B-Instruct \
2 --enable-auto-tool-choice \
3 --tool-call-parser llama3_jsoncurl:1curl http://localhost:8000/v1/chat/completions \
2 -H "Content-Type: application/json" \
3 -d '{
4 "model": "furiosa-ai/Llama-3.3-70B-Instruct",
5 "messages": [{"role": "user", "content": "What is the capital of France?"}]
6 }' \
7 | python -m json.tool--enable-auto-tool-choice --tool-call-parser llama3_json,
you can pass tools and let the model decide when to call them. See the
Tool Calling guide
for a complete client example and details on tool-choice options.furiosa-llm serve) — full OpenAI-compatible API reference and serving options