Views
No views yet
nvidia/Orchestrator-8B using llama.cpp via the ggml.ai's GGUF-my-repo space.
Refer to the original model card for more details on the model.1
2root@90dd7d73d62b:/# ollama pull hf.co/AXONVERTEX-AI-RESEARCH/Qwen3-Embedding-0.6B-Q8_0-GGUF:Q8_0
3pulling manifest
4pulling ee029816fb96: 100% ▕██████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████▏ 639 MB
5pulling eb4402837c78: 100% ▕██████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████▏ 1.5 KB
6pulling 4a6ce91d86a8: 100% ▕██████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████▏ 99 B
7pulling be570f0686c3: 100% ▕██████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████▏ 549 B
8verifying sha256 digest
9writing manifest
10success
11root@90dd7d73d62b:/# ollama pull hf.co/AXONVERTEX-AI-RESEARCH/Orchestrator-8B-Q8_0-GGUF:Q8_0
12pulling manifest
13pulling 7ba8f19c5542: 100% ▕██████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████▏ 8.7 GB
14pulling eb4402837c78: 100% ▕██████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████▏ 1.5 KB
15pulling 4a6ce91d86a8: 100% ▕██████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████▏ 99 B
16pulling 9dfdfd94d3aa: 100% ▕██████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████▏ 552 B
17verifying sha256 digest
18writing manifest
19success
20root@90dd7d73d62b:/# ollama run hf.co/AXONVERTEX-AI-RESEARCH/Orchestrator-8B-Q8_0-GGUF:Q8_0
21>>> Hello
22<think>
23Okay, the user said "Hello". I need to respond appropriately. Since they just greeted me, I should acknowledge their greeting and offer assistance. Let me make sure my response is friendly and
24open-ended. Maybe something like, "Hello! How can I assist you today?" That sounds good. I should keep it simple and inviting.
25</think>
26
27Hello! How can I assist you today? 😊
281
2{%- if tools %}
3 {{- '<|im_start|>system\n' }}
4 {%- if messages[0].role == 'system' %}
5 {{- messages[0].content + '\n\n' }}
6 {%- endif %}
7 {{- "# Tools\n\nYou may call one or more functions to assist with the user query.\n\nYou are provided with function signatures within <tools></tools> XML tags:\n<tools>" }}
8 {%- for tool in tools %}
9 {{- "\n" }}
10 {{- tool | tojson }}
11 {%- endfor %}
12 {{- "\n</tools>\n\nFor each function call, return a json object with function name and arguments within <tool_call></tool_call> XML tags:\n<tool_call>\n{\"name\": <function-name>, \"arguments\": <args-json-object>}\n</tool_call><|im_end|>\n" }}
13{%- else %}
14 {%- if messages[0].role == 'system' %}
15 {{- '<|im_start|>system\n' + messages[0].content + '<|im_end|>\n' }}
16 {%- endif %}
17{%- endif %}
18{%- set ns = namespace(multi_step_tool=true, last_query_index=messages|length - 1) %}
19{%- for message in messages[::-1] %}
20 {%- set index = (messages|length - 1) - loop.index0 %}
21 {%- if ns.multi_step_tool and message.role == "user" and message.content is string and not(message.content.startswith('<tool_response>') and message.content.endswith('</tool_response>')) %}
22 {%- set ns.multi_step_tool = false %}
23 {%- set ns.last_query_index = index %}
24 {%- endif %}
25{%- endfor %}
26{%- for message in messages %}
27 {%- if message.content is string %}
28 {%- set content = message.content %}
29 {%- else %}
30 {%- set content = '' %}
31 {%- endif %}
32 {%- if (message.role == "user") or (message.role == "system" and not loop.first) %}
33 {{- '<|im_start|>' + message.role + '\n' + content + '<|im_end|>' + '\n' }}
34 {%- elif message.role == "assistant" %}
35 {%- set reasoning_content = '' %}
36 {%- if message.reasoning_content is string %}
37 {%- set reasoning_content = message.reasoning_content %}
38 {%- else %}
39 {%- if '</think>' in content %}
40 {%- set reasoning_content = content.split('</think>')[0].rstrip('\n').split('<think>')[-1].lstrip('\n') %}
41 {%- set content = content.split('</think>')[-1].lstrip('\n') %}
42 {%- endif %}
43 {%- endif %}
44 {%- if loop.index0 > ns.last_query_index %}
45 {%- if loop.last or (not loop.last and reasoning_content) %}
46 {{- '<|im_start|>' + message.role + '\n<think>\n' + reasoning_content.strip('\n') + '\n</think>\n\n' + content.lstrip('\n') }}
47 {%- else %}
48 {{- '<|im_start|>' + message.role + '\n' + content }}
49 {%- endif %}
50 {%- else %}
51 {{- '<|im_start|>' + message.role + '\n' + content }}
52 {%- endif %}
53 {%- if message.tool_calls %}
54 {%- for tool_call in message.tool_calls %}
55 {%- if (loop.first and content) or (not loop.first) %}
56 {{- '\n' }}
57 {%- endif %}
58 {%- if tool_call.function %}
59 {%- set tool_call = tool_call.function %}
60 {%- endif %}
61 {{- '<tool_call>\n{"name": "' }}
62 {{- tool_call.name }}
63 {{- '", "arguments": ' }}
64 {%- if tool_call.arguments is string %}
65 {{- tool_call.arguments }}
66 {%- else %}
67 {{- tool_call.arguments | tojson }}
68 {%- endif %}
69 {{- '}\n</tool_call>' }}
70 {%- endfor %}
71 {%- endif %}
72 {{- '<|im_end|>\n' }}
73 {%- elif message.role == "tool" %}
74 {%- if loop.first or (messages[loop.index0 - 1].role != "tool") %}
75 {{- '<|im_start|>user' }}
76 {%- endif %}
77 {{- '\n<tool_response>\n' }}
78 {{- content }}
79 {{- '\n</tool_response>' }}
80 {%- if loop.last or (messages[loop.index0 + 1].role != "tool") %}
81 {{- '<|im_end|>\n' }}
82 {%- endif %}
83 {%- endif %}
84{%- endfor %}
85{%- if add_generation_prompt %}
86 {{- '<|im_start|>assistant\n' }}
87 {%- if enable_thinking is defined and enable_thinking is false %}
88 {{- '<think>\n\n</think>\n\n' }}
89 {%- endif %}
90{%- endif %}
911brew install llama.cpp
2llama-cli --hf-repo AXONVERTEX-AI-RESEARCH/Orchestrator-8B-Q8_0-GGUF --hf-file orchestrator-8b-q8_0.gguf -p "The meaning to life and the universe is"llama-server --hf-repo AXONVERTEX-AI-RESEARCH/Orchestrator-8B-Q8_0-GGUF --hf-file orchestrator-8b-q8_0.gguf -c 2048git clone https://github.com/ggerganov/llama.cppLLAMA_CURL=1 flag along with other hardware-specific flags (for ex: LLAMA_CUDA=1 for Nvidia GPUs on Linux).cd llama.cpp && LLAMA_CURL=1 make./llama-cli --hf-repo AXONVERTEX-AI-RESEARCH/Orchestrator-8B-Q8_0-GGUF --hf-file orchestrator-8b-q8_0.gguf -p "The meaning to life and the universe is"./llama-server --hf-repo AXONVERTEX-AI-RESEARCH/Orchestrator-8B-Q8_0-GGUF --hf-file orchestrator-8b-q8_0.gguf -c 2048