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
Upload main.py with huggingface_hub
Browse files
main.py
ADDED
|
@@ -0,0 +1,33 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
from vllm import LLM, SamplingParams
|
| 2 |
+
from rt_templates import RTPrompts
|
| 3 |
+
from rt_tools import RTTools
|
| 4 |
+
import time
|
| 5 |
+
|
| 6 |
+
# 1. 初始化模型 (RT-Qwen 系列)
|
| 7 |
+
MODEL_PATH = "./RT-Qwen2.5-1.5B-AWQ"
|
| 8 |
+
llm = LLM(model=MODEL_PATH, enable_prefix_caching=True, gpu_memory_utilization=0.6)
|
| 9 |
+
stop_tokens = ["<|null|>", "</content>", "</function>", "</arg1>", "</arg2>", "</arg3>", "</arg4>", "</arg5>", "</arg6>"]
|
| 10 |
+
sampling_params = SamplingParams(temperature=0.0, max_tokens=16, stop=stop_tokens, include_stop_str_in_output=True)
|
| 11 |
+
|
| 12 |
+
# 2. 准备 Prompt (极简 Query)
|
| 13 |
+
prompt_prefix = RTPrompts.SYSTEM_PROMPT.format(tools_json=RTTools.get_all())
|
| 14 |
+
user_query = RTPrompts.get_query("Add Bob with 123")
|
| 15 |
+
full_prompt = prompt_prefix + user_query
|
| 16 |
+
|
| 17 |
+
# 3. 模拟多头并行解码 (Head 1: Function, Head 2: Name, Head 3: Phone)
|
| 18 |
+
heads = ["<content>", "<function>", "<arg1>", "<arg2>", "<arg3>", "<arg4>", "<arg5>", "<arg62>"]
|
| 19 |
+
prompts = [full_prompt + head for head in heads]
|
| 20 |
+
|
| 21 |
+
print(f"\n--- Parallel Decoding for: 'Add Bob with 123' ---")
|
| 22 |
+
start_time = time.perf_counter()
|
| 23 |
+
|
| 24 |
+
# vLLM 会自动处理 Prefix Caching,仅第一次 Prefill 全量,后续并发
|
| 25 |
+
outputs = llm.generate(prompts, sampling_params)
|
| 26 |
+
|
| 27 |
+
end_time = time.perf_counter()
|
| 28 |
+
print(f"Total Latency: {(end_time - start_time)*1000:.2f} ms\n")
|
| 29 |
+
|
| 30 |
+
# 4. 打印结果
|
| 31 |
+
for i, output in enumerate(outputs):
|
| 32 |
+
text = output.outputs[0].text
|
| 33 |
+
print(f"Head {i} [{heads[i]:<10}]: {text}")
|