chat-qwen
GitHub调用ZeroGPU API与qwen3-30b-a3b-fp8模型对话,适用于非英语提示、翻译相关任务及中等复杂度问题。
Trigger Scenarios
Install
npx skills add zerogpu/zerogpu-router --skill chat-qwen -g -y
SKILL.md
Frontmatter
{
"name": "chat-qwen",
"metadata": {
"openclaw": {
"install": [
{
"bins": [
"zerogpu"
],
"kind": "node",
"package": "zerogpu-cli"
}
],
"requires": {
"bins": [
"zerogpu"
]
}
}
},
"description": "Chat with qwen3-30b-a3b-fp8, a 30B MoE model with strong multilingual coverage (100+ languages, 32K context). Use for non-English prompts, translation-adjacent tasks, or mid-weight questions the 1.2B edge models handle poorly.",
"allowed-tools": "Bash(zerogpu chat_completions *)",
"argument-hint": "<text> [-i <instructions>]"
}
Sends your input to ZeroGPU's hosted API for inference — this is not local processing. Don't pass secrets, credentials, or regulated data you aren't cleared to share with a third party. See the plugin README's "Data & privacy" section.
Call qwen3-30b-a3b-fp8. Run this with the exec tool, pasting the user's prompt into the heredoc verbatim — no escaping or quoting required (the quoted heredoc handles every shell metacharacter, newline, quote, and paren safely):
zerogpu chat_completions -m qwen3-30b-a3b-fp8 <<'ZGPU_END_OF_INPUT'
<the user's prompt, verbatim>
ZGPU_END_OF_INPUT
If the user supplied system instructions, add -i '<instructions>' after the model flag, writing any ' inside them as '\''.
Output is the assistant's answer as plain text — the model's reasoning trace comes back in a separate field and is not printed. Relay the answer as-is — do not rewrite or expand it.
Savings note: only if the command output literally contains a line starting with 💰 ZeroGPU savings, append that exact line, unchanged, as the last line of your reply. If no such line is present, say nothing about savings and do not mention or suggest the cost-savings skill — this note is intentionally occasional, not shown every time.
Version History
-
4e1b070
Current 2026-09-22 08:07
v5.0.0: 模型参数从30.5B更新为30B;v4.4.0: 改用zerogpu-cli通用端点,提升插件独立性。
- cee9321 2026-08-02 21:15


