Instructions to use developmentseed/gazet-model with libraries, inference providers, notebooks, and local apps. Follow these links to get started.
- Libraries
- llama-cpp-python
How to use developmentseed/gazet-model with llama-cpp-python:
# !pip install llama-cpp-python from llama_cpp import Llama llm = Llama.from_pretrained( repo_id="developmentseed/gazet-model", filename="models/ckpt-q8_0.gguf", )
llm.create_chat_completion( messages = [ { "role": "user", "content": "What is the capital of France?" } ] ) - Notebooks
- Google Colab
- Kaggle
- Local Apps
- llama.cpp
How to use developmentseed/gazet-model with llama.cpp:
Install from brew
brew install llama.cpp # Start a local OpenAI-compatible server with a web UI: llama-server -hf developmentseed/gazet-model:Q8_0 # Run inference directly in the terminal: llama-cli -hf developmentseed/gazet-model:Q8_0
Install from WinGet (Windows)
winget install llama.cpp # Start a local OpenAI-compatible server with a web UI: llama-server -hf developmentseed/gazet-model:Q8_0 # Run inference directly in the terminal: llama-cli -hf developmentseed/gazet-model:Q8_0
Use pre-built binary
# Download pre-built binary from: # https://github.com/ggerganov/llama.cpp/releases # Start a local OpenAI-compatible server with a web UI: ./llama-server -hf developmentseed/gazet-model:Q8_0 # Run inference directly in the terminal: ./llama-cli -hf developmentseed/gazet-model:Q8_0
Build from source code
git clone https://github.com/ggerganov/llama.cpp.git cd llama.cpp cmake -B build cmake --build build -j --target llama-server llama-cli # Start a local OpenAI-compatible server with a web UI: ./build/bin/llama-server -hf developmentseed/gazet-model:Q8_0 # Run inference directly in the terminal: ./build/bin/llama-cli -hf developmentseed/gazet-model:Q8_0
Use Docker
docker model run hf.co/developmentseed/gazet-model:Q8_0
- LM Studio
- Jan
- vLLM
How to use developmentseed/gazet-model with vLLM:
Install from pip and serve model
# Install vLLM from pip: pip install vllm # Start the vLLM server: vllm serve "developmentseed/gazet-model" # Call the server using curl (OpenAI-compatible API): curl -X POST "http://localhost:8000/v1/chat/completions" \ -H "Content-Type: application/json" \ --data '{ "model": "developmentseed/gazet-model", "messages": [ { "role": "user", "content": "What is the capital of France?" } ] }'Use Docker
docker model run hf.co/developmentseed/gazet-model:Q8_0
- Ollama
How to use developmentseed/gazet-model with Ollama:
ollama run hf.co/developmentseed/gazet-model:Q8_0
- Unsloth Studio new
How to use developmentseed/gazet-model with Unsloth Studio:
Install Unsloth Studio (macOS, Linux, WSL)
curl -fsSL https://unsloth.ai/install.sh | sh # Run unsloth studio unsloth studio -H 0.0.0.0 -p 8888 # Then open http://localhost:8888 in your browser # Search for developmentseed/gazet-model to start chatting
Install Unsloth Studio (Windows)
irm https://unsloth.ai/install.ps1 | iex # Run unsloth studio unsloth studio -H 0.0.0.0 -p 8888 # Then open http://localhost:8888 in your browser # Search for developmentseed/gazet-model to start chatting
Using HuggingFace Spaces for Unsloth
# No setup required # Open https://huggingface.co/spaces/unsloth/studio in your browser # Search for developmentseed/gazet-model to start chatting
- Pi new
How to use developmentseed/gazet-model with Pi:
Start the llama.cpp server
# Install llama.cpp: brew install llama.cpp # Start a local OpenAI-compatible server: llama-server -hf developmentseed/gazet-model:Q8_0
Configure the model in Pi
# Install Pi: npm install -g @mariozechner/pi-coding-agent # Add to ~/.pi/agent/models.json: { "providers": { "llama-cpp": { "baseUrl": "http://localhost:8080/v1", "api": "openai-completions", "apiKey": "none", "models": [ { "id": "developmentseed/gazet-model:Q8_0" } ] } } }Run Pi
# Start Pi in your project directory: pi
- Hermes Agent new
How to use developmentseed/gazet-model with Hermes Agent:
Start the llama.cpp server
# Install llama.cpp: brew install llama.cpp # Start a local OpenAI-compatible server: llama-server -hf developmentseed/gazet-model:Q8_0
Configure Hermes
# Install Hermes: curl -fsSL https://hermes-agent.nousresearch.com/install.sh | bash hermes setup # Point Hermes at the local server: hermes config set model.provider custom hermes config set model.base_url http://127.0.0.1:8080/v1 hermes config set model.default developmentseed/gazet-model:Q8_0
Run Hermes
hermes
- Docker Model Runner
How to use developmentseed/gazet-model with Docker Model Runner:
docker model run hf.co/developmentseed/gazet-model:Q8_0
- Lemonade
How to use developmentseed/gazet-model with Lemonade:
Pull the model
# Download Lemonade from https://lemonade-server.ai/ lemonade pull developmentseed/gazet-model:Q8_0
Run and chat with the model
lemonade run user.gazet-model-Q8_0
List all available models
lemonade list
remove merged tensors from root
Browse files- config.json +0 -106
- tokenizer.json +0 -3
- tokenizer_config.json +0 -34
config.json
DELETED
|
@@ -1,106 +0,0 @@
|
|
| 1 |
-
{
|
| 2 |
-
"architectures": [
|
| 3 |
-
"Qwen3_5ForConditionalGeneration"
|
| 4 |
-
],
|
| 5 |
-
"torch_dtype": "bfloat16",
|
| 6 |
-
"eos_token_id": 248046,
|
| 7 |
-
"image_token_id": 248056,
|
| 8 |
-
"model_name": "unsloth/Qwen3.5-0.8B",
|
| 9 |
-
"model_type": "qwen3_5",
|
| 10 |
-
"pad_token_id": 248055,
|
| 11 |
-
"text_config": {
|
| 12 |
-
"attention_bias": false,
|
| 13 |
-
"attention_dropout": 0.0,
|
| 14 |
-
"attn_output_gate": true,
|
| 15 |
-
"bos_token_id": null,
|
| 16 |
-
"torch_dtype": "bfloat16",
|
| 17 |
-
"eos_token_id": 248044,
|
| 18 |
-
"full_attention_interval": 4,
|
| 19 |
-
"head_dim": 256,
|
| 20 |
-
"hidden_act": "silu",
|
| 21 |
-
"hidden_size": 1024,
|
| 22 |
-
"initializer_range": 0.02,
|
| 23 |
-
"intermediate_size": 3584,
|
| 24 |
-
"layer_types": [
|
| 25 |
-
"linear_attention",
|
| 26 |
-
"linear_attention",
|
| 27 |
-
"linear_attention",
|
| 28 |
-
"full_attention",
|
| 29 |
-
"linear_attention",
|
| 30 |
-
"linear_attention",
|
| 31 |
-
"linear_attention",
|
| 32 |
-
"full_attention",
|
| 33 |
-
"linear_attention",
|
| 34 |
-
"linear_attention",
|
| 35 |
-
"linear_attention",
|
| 36 |
-
"full_attention",
|
| 37 |
-
"linear_attention",
|
| 38 |
-
"linear_attention",
|
| 39 |
-
"linear_attention",
|
| 40 |
-
"full_attention",
|
| 41 |
-
"linear_attention",
|
| 42 |
-
"linear_attention",
|
| 43 |
-
"linear_attention",
|
| 44 |
-
"full_attention",
|
| 45 |
-
"linear_attention",
|
| 46 |
-
"linear_attention",
|
| 47 |
-
"linear_attention",
|
| 48 |
-
"full_attention"
|
| 49 |
-
],
|
| 50 |
-
"linear_conv_kernel_dim": 4,
|
| 51 |
-
"linear_key_head_dim": 128,
|
| 52 |
-
"linear_num_key_heads": 16,
|
| 53 |
-
"linear_num_value_heads": 16,
|
| 54 |
-
"linear_value_head_dim": 128,
|
| 55 |
-
"mamba_ssm_dtype": "float32",
|
| 56 |
-
"max_position_embeddings": 262144,
|
| 57 |
-
"mlp_only_layers": [],
|
| 58 |
-
"model_type": "qwen3_5_text",
|
| 59 |
-
"mtp_num_hidden_layers": 1,
|
| 60 |
-
"mtp_use_dedicated_embeddings": false,
|
| 61 |
-
"num_attention_heads": 8,
|
| 62 |
-
"num_hidden_layers": 24,
|
| 63 |
-
"num_key_value_heads": 2,
|
| 64 |
-
"pad_token_id": null,
|
| 65 |
-
"partial_rotary_factor": 0.25,
|
| 66 |
-
"rms_norm_eps": 1e-06,
|
| 67 |
-
"rope_parameters": {
|
| 68 |
-
"mrope_interleaved": true,
|
| 69 |
-
"mrope_section": [
|
| 70 |
-
11,
|
| 71 |
-
11,
|
| 72 |
-
10
|
| 73 |
-
],
|
| 74 |
-
"partial_rotary_factor": 0.25,
|
| 75 |
-
"rope_theta": 10000000,
|
| 76 |
-
"rope_type": "default"
|
| 77 |
-
},
|
| 78 |
-
"tie_word_embeddings": true,
|
| 79 |
-
"use_cache": true,
|
| 80 |
-
"vocab_size": 248320
|
| 81 |
-
},
|
| 82 |
-
"tie_word_embeddings": true,
|
| 83 |
-
"unsloth_fixed": true,
|
| 84 |
-
"unsloth_version": "2026.4.4",
|
| 85 |
-
"use_cache": false,
|
| 86 |
-
"video_token_id": 248057,
|
| 87 |
-
"vision_config": {
|
| 88 |
-
"deepstack_visual_indexes": [],
|
| 89 |
-
"depth": 12,
|
| 90 |
-
"torch_dtype": "bfloat16",
|
| 91 |
-
"hidden_act": "gelu_pytorch_tanh",
|
| 92 |
-
"hidden_size": 768,
|
| 93 |
-
"in_channels": 3,
|
| 94 |
-
"initializer_range": 0.02,
|
| 95 |
-
"intermediate_size": 3072,
|
| 96 |
-
"model_type": "qwen3_5",
|
| 97 |
-
"num_heads": 12,
|
| 98 |
-
"num_position_embeddings": 2304,
|
| 99 |
-
"out_hidden_size": 1024,
|
| 100 |
-
"patch_size": 16,
|
| 101 |
-
"spatial_merge_size": 2,
|
| 102 |
-
"temporal_patch_size": 2
|
| 103 |
-
},
|
| 104 |
-
"vision_end_token_id": 248054,
|
| 105 |
-
"vision_start_token_id": 248053
|
| 106 |
-
}
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
tokenizer.json
DELETED
|
@@ -1,3 +0,0 @@
|
|
| 1 |
-
version https://git-lfs.github.com/spec/v1
|
| 2 |
-
oid sha256:87a7830d63fcf43bf241c3c5242e96e62dd3fdc29224ca26fed8ea333db72de4
|
| 3 |
-
size 19989343
|
|
|
|
|
|
|
|
|
|
|
|
tokenizer_config.json
DELETED
|
@@ -1,34 +0,0 @@
|
|
| 1 |
-
{
|
| 2 |
-
"add_prefix_space": false,
|
| 3 |
-
"audio_bos_token": "<|audio_start|>",
|
| 4 |
-
"audio_eos_token": "<|audio_end|>",
|
| 5 |
-
"audio_token": "<|audio_pad|>",
|
| 6 |
-
"backend": "tokenizers",
|
| 7 |
-
"bos_token": null,
|
| 8 |
-
"clean_up_tokenization_spaces": false,
|
| 9 |
-
"eos_token": "<|im_end|>",
|
| 10 |
-
"errors": "replace",
|
| 11 |
-
"image_token": "<|image_pad|>",
|
| 12 |
-
"is_local": false,
|
| 13 |
-
"model_max_length": 262144,
|
| 14 |
-
"model_specific_special_tokens": {
|
| 15 |
-
"audio_bos_token": "<|audio_start|>",
|
| 16 |
-
"audio_eos_token": "<|audio_end|>",
|
| 17 |
-
"audio_token": "<|audio_pad|>",
|
| 18 |
-
"image_token": "<|image_pad|>",
|
| 19 |
-
"video_token": "<|video_pad|>",
|
| 20 |
-
"vision_bos_token": "<|vision_start|>",
|
| 21 |
-
"vision_eos_token": "<|vision_end|>"
|
| 22 |
-
},
|
| 23 |
-
"pad_token": "<|vision_pad|>",
|
| 24 |
-
"padding_side": "right",
|
| 25 |
-
"pretokenize_regex": "(?i:'s|'t|'re|'ve|'m|'ll|'d)|[^\\r\\n\\p{L}\\p{N}]?[\\p{L}\\p{M}]+|\\p{N}| ?[^\\s\\p{L}\\p{M}\\p{N}]+[\\r\\n]*|\\s*[\\r\\n]+|\\s+(?!\\S)|\\s+",
|
| 26 |
-
"processor_class": "Qwen3VLProcessor",
|
| 27 |
-
"split_special_tokens": false,
|
| 28 |
-
"tokenizer_class": "TokenizersBackend",
|
| 29 |
-
"unk_token": null,
|
| 30 |
-
"video_token": "<|video_pad|>",
|
| 31 |
-
"vision_bos_token": "<|vision_start|>",
|
| 32 |
-
"vision_eos_token": "<|vision_end|>",
|
| 33 |
-
"chat_template": "{%- set image_count = namespace(value=0) %}\n{%- set video_count = namespace(value=0) %}\n{%- macro render_content(content, do_vision_count, is_system_content=false) %}\n {%- if content is string %}\n {{- content }}\n {%- elif content is iterable and content is not mapping %}\n {%- for item in content %}\n {%- if 'image' in item or 'image_url' in item or item.type == 'image' %}\n {%- if is_system_content %}\n {{- raise_exception('System message cannot contain images.') }}\n {%- endif %}\n {%- if do_vision_count %}\n {%- set image_count.value = image_count.value + 1 %}\n {%- endif %}\n {%- if add_vision_id %}\n {{- 'Picture ' ~ image_count.value ~ ': ' }}\n {%- endif %}\n {{- '<|vision_start|><|image_pad|><|vision_end|>' }}\n {%- elif 'video' in item or item.type == 'video' %}\n {%- if is_system_content %}\n {{- raise_exception('System message cannot contain videos.') }}\n {%- endif %}\n {%- if do_vision_count %}\n {%- set video_count.value = video_count.value + 1 %}\n {%- endif %}\n {%- if add_vision_id %}\n {{- 'Video ' ~ video_count.value ~ ': ' }}\n {%- endif %}\n {{- '<|vision_start|><|video_pad|><|vision_end|>' }}\n {%- elif 'text' in item %}\n {{- item.text }}\n {%- else %}\n {{- raise_exception('Unexpected item type in content.') }}\n {%- endif %}\n {%- endfor %}\n {%- elif content is none or content is undefined %}\n {{- '' }}\n {%- else %}\n {{- raise_exception('Unexpected content type.') }}\n {%- endif %}\n{%- endmacro %}\n{%- if not messages %}\n {{- raise_exception('No messages provided.') }}\n{%- endif %}\n{%- if tools and tools is iterable and tools is not mapping %}\n {{- '<|im_start|>system\\n' }}\n {{- \"# Tools\\n\\nYou have access to the following functions:\\n\\n<tools>\" }}\n {%- for tool in tools %}\n {{- \"\\n\" }}\n {{- tool | tojson }}\n {%- endfor %}\n {{- \"\\n</tools>\" }}\n {{- '\\n\\nIf you choose to call a function ONLY reply in the following format with NO suffix:\\n\\n<tool_call>\\n<function=example_function_name>\\n<parameter=example_parameter_1>\\nvalue_1\\n</parameter>\\n<parameter=example_parameter_2>\\nThis is the value for the second parameter\\nthat can span\\nmultiple lines\\n</parameter>\\n</function>\\n</tool_call>\\n\\n<IMPORTANT>\\nReminder:\\n- Function calls MUST follow the specified format: an inner <function=...></function> block must be nested within <tool_call></tool_call> XML tags\\n- Required parameters MUST be specified\\n- You may provide optional reasoning for your function call in natural language BEFORE the function call, but NOT after\\n- If there is no function call available, answer the question like normal with your current knowledge and do not tell the user about function calls\\n</IMPORTANT>' }}\n {%- if messages[0].role == 'system' %}\n {%- set content = render_content(messages[0].content, false, true)|trim %}\n {%- if content %}\n {{- '\\n\\n' + content }}\n {%- endif %}\n {%- endif %}\n {{- '<|im_end|>\\n' }}\n{%- else %}\n {%- if messages[0].role == 'system' %}\n {%- set content = render_content(messages[0].content, false, true)|trim %}\n {{- '<|im_start|>system\\n' + content + '<|im_end|>\\n' }}\n {%- endif %}\n{%- endif %}\n{%- set ns = namespace(multi_step_tool=true, last_query_index=messages|length - 1) %}\n{%- for message in messages[::-1] %}\n {%- set index = (messages|length - 1) - loop.index0 %}\n {%- if ns.multi_step_tool and message.role == \"user\" %}\n {%- set content = render_content(message.content, false)|trim %}\n {%- if not(content.startswith('<tool_response>') and content.endswith('</tool_response>')) %}\n {%- set ns.multi_step_tool = false %}\n {%- set ns.last_query_index = index %}\n {%- endif %}\n {%- endif %}\n{%- endfor %}\n{%- if ns.multi_step_tool %}\n {{- raise_exception('No user query found in messages.') }}\n{%- endif %}\n{%- for message in messages %}\n {%- set content = render_content(message.content, true)|trim %}\n {%- if message.role == \"system\" %}\n {%- if not loop.first %}\n {{- raise_exception('System message must be at the beginning.') }}\n {%- endif %}\n {%- elif message.role == \"user\" %}\n {{- '<|im_start|>' + message.role + '\\n' + content + '<|im_end|>' + '\\n' }}\n {%- elif message.role == \"assistant\" %}\n {%- set reasoning_content = '' %}\n {%- if message.reasoning_content is string %}\n {%- set reasoning_content = message.reasoning_content %}\n {%- else %}\n {%- if '</think>' in content %}\n {%- set reasoning_content = content.split('</think>')[0].rstrip('\\n').split('<think>')[-1].lstrip('\\n') %}\n {%- set content = content.split('</think>')[-1].lstrip('\\n') %}\n {%- endif %}\n {%- endif %}\n {%- set reasoning_content = reasoning_content|trim %}\n {%- if loop.index0 > ns.last_query_index %}\n {{- '<|im_start|>' + message.role + '\\n<think>\\n' + reasoning_content + '\\n</think>\\n\\n' + content }}\n {%- else %}\n {{- '<|im_start|>' + message.role + '\\n' + content }}\n {%- endif %}\n {%- if message.tool_calls and message.tool_calls is iterable and message.tool_calls is not mapping %}\n {%- for tool_call in message.tool_calls %}\n {%- if tool_call.function is defined %}\n {%- set tool_call = tool_call.function %}\n {%- endif %}\n {%- if loop.first %}\n {%- if content|trim %}\n {{- '\\n\\n<tool_call>\\n<function=' + tool_call.name + '>\\n' }}\n {%- else %}\n {{- '<tool_call>\\n<function=' + tool_call.name + '>\\n' }}\n {%- endif %}\n {%- else %}\n {{- '\\n<tool_call>\\n<function=' + tool_call.name + '>\\n' }}\n {%- endif %}\n {%- if tool_call.arguments is mapping %}\n {%- for args_name in tool_call.arguments %}\n {%- set args_value = tool_call.arguments[args_name] %}\n {{- '<parameter=' + args_name + '>\\n' }}\n {%- set args_value = args_value | tojson | safe if args_value is mapping or (args_value is sequence and args_value is not string) else args_value | string %}\n {{- args_value }}\n {{- '\\n</parameter>\\n' }}\n {%- endfor %}\n {%- endif %}\n {{- '</function>\\n</tool_call>' }}\n {%- endfor %}\n {%- endif %}\n {{- '<|im_end|>\\n' }}\n {%- elif message.role == \"tool\" %}\n {%- if loop.previtem and loop.previtem.role != \"tool\" %}\n {{- '<|im_start|>user' }}\n {%- endif %}\n {{- '\\n<tool_response>\\n' }}\n {{- content }}\n {{- '\\n</tool_response>' }}\n {%- if not loop.last and loop.nextitem.role != \"tool\" %}\n {{- '<|im_end|>\\n' }}\n {%- elif loop.last %}\n {{- '<|im_end|>\\n' }}\n {%- endif %}\n {%- else %}\n {{- raise_exception('Unexpected message role.') }}\n {%- endif %}\n{%- endfor %}\n{%- if add_generation_prompt %}\n {{- '<|im_start|>assistant\\n' }}\n {%- if enable_thinking is defined and enable_thinking is true %}\n {{- '<think>\\n' }}\n {%- else %}\n {{- '<think>\\n\\n</think>\\n\\n' }}\n {%- endif %}\n{%- endif %}"
|
| 34 |
-
}
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|