Instructions to use Cialtion/SimpleTool with libraries, inference providers, notebooks, and local apps. Follow these links to get started.
- Libraries
- Transformers
How to use Cialtion/SimpleTool with Transformers:
# Use a pipeline as a high-level helper from transformers import pipeline pipe = pipeline("text-generation", model="Cialtion/SimpleTool")# Load model directly from transformers import AutoModel model = AutoModel.from_pretrained("Cialtion/SimpleTool", dtype="auto") - Notebooks
- Google Colab
- Kaggle
- Local Apps
- vLLM
How to use Cialtion/SimpleTool with vLLM:
Install from pip and serve model
# Install vLLM from pip: pip install vllm # Start the vLLM server: vllm serve "Cialtion/SimpleTool" # Call the server using curl (OpenAI-compatible API): curl -X POST "http://localhost:8000/v1/completions" \ -H "Content-Type: application/json" \ --data '{ "model": "Cialtion/SimpleTool", "prompt": "Once upon a time,", "max_tokens": 512, "temperature": 0.5 }'Use Docker
docker model run hf.co/Cialtion/SimpleTool
- SGLang
How to use Cialtion/SimpleTool with SGLang:
Install from pip and serve model
# Install SGLang from pip: pip install sglang # Start the SGLang server: python3 -m sglang.launch_server \ --model-path "Cialtion/SimpleTool" \ --host 0.0.0.0 \ --port 30000 # Call the server using curl (OpenAI-compatible API): curl -X POST "http://localhost:30000/v1/completions" \ -H "Content-Type: application/json" \ --data '{ "model": "Cialtion/SimpleTool", "prompt": "Once upon a time,", "max_tokens": 512, "temperature": 0.5 }'Use Docker images
docker run --gpus all \ --shm-size 32g \ -p 30000:30000 \ -v ~/.cache/huggingface:/root/.cache/huggingface \ --env "HF_TOKEN=<secret>" \ --ipc=host \ lmsysorg/sglang:latest \ python3 -m sglang.launch_server \ --model-path "Cialtion/SimpleTool" \ --host 0.0.0.0 \ --port 30000 # Call the server using curl (OpenAI-compatible API): curl -X POST "http://localhost:30000/v1/completions" \ -H "Content-Type: application/json" \ --data '{ "model": "Cialtion/SimpleTool", "prompt": "Once upon a time,", "max_tokens": 512, "temperature": 0.5 }' - Docker Model Runner
How to use Cialtion/SimpleTool with Docker Model Runner:
docker model run hf.co/Cialtion/SimpleTool
Fix/Check RT-Qwen3-30B-AWQ/added_tokens.json
Browse files
RT-Qwen3-30B-AWQ/added_tokens.json
ADDED
|
@@ -0,0 +1,45 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
{
|
| 2 |
+
"</arg1>": 151674,
|
| 3 |
+
"</arg2>": 151676,
|
| 4 |
+
"</arg3>": 151678,
|
| 5 |
+
"</arg4>": 151680,
|
| 6 |
+
"</arg5>": 151682,
|
| 7 |
+
"</arg6>": 151684,
|
| 8 |
+
"</content>": 151670,
|
| 9 |
+
"</function>": 151672,
|
| 10 |
+
"</think>": 151668,
|
| 11 |
+
"</tool_call>": 151658,
|
| 12 |
+
"</tool_response>": 151666,
|
| 13 |
+
"<arg1>": 151673,
|
| 14 |
+
"<arg2>": 151675,
|
| 15 |
+
"<arg3>": 151677,
|
| 16 |
+
"<arg4>": 151679,
|
| 17 |
+
"<arg5>": 151681,
|
| 18 |
+
"<arg6>": 151683,
|
| 19 |
+
"<content>": 151669,
|
| 20 |
+
"<function>": 151671,
|
| 21 |
+
"<think>": 151667,
|
| 22 |
+
"<tool_call>": 151657,
|
| 23 |
+
"<tool_response>": 151665,
|
| 24 |
+
"<|box_end|>": 151649,
|
| 25 |
+
"<|box_start|>": 151648,
|
| 26 |
+
"<|endoftext|>": 151643,
|
| 27 |
+
"<|file_sep|>": 151664,
|
| 28 |
+
"<|fim_middle|>": 151660,
|
| 29 |
+
"<|fim_pad|>": 151662,
|
| 30 |
+
"<|fim_prefix|>": 151659,
|
| 31 |
+
"<|fim_suffix|>": 151661,
|
| 32 |
+
"<|im_end|>": 151645,
|
| 33 |
+
"<|im_start|>": 151644,
|
| 34 |
+
"<|image_pad|>": 151655,
|
| 35 |
+
"<|null|>": 151685,
|
| 36 |
+
"<|object_ref_end|>": 151647,
|
| 37 |
+
"<|object_ref_start|>": 151646,
|
| 38 |
+
"<|quad_end|>": 151651,
|
| 39 |
+
"<|quad_start|>": 151650,
|
| 40 |
+
"<|repo_name|>": 151663,
|
| 41 |
+
"<|video_pad|>": 151656,
|
| 42 |
+
"<|vision_end|>": 151653,
|
| 43 |
+
"<|vision_pad|>": 151654,
|
| 44 |
+
"<|vision_start|>": 151652
|
| 45 |
+
}
|