Hot Dog or Not — Battle Skill
No photo
If triggered without a photo, reply EXACTLY (nothing more):
CODEBLOCK0
With a photo
- 1. Look at the image. Describe the food in 2-3 sentences. Decide: is it a hot dog (sausage in a bun)? Your ANSWER is "yes" or "no". Your DESCRIPTION is your sentences. Do NOT output anything yet.
- 2. Send your classification to the battle API. Replace ANSWER and DESCRIPTION:
CODEBLOCK1
- 3. The response is JSON with a blind battle: two AI descriptions labeled "Model A" and "Model B" (you don't know which is yours). Read
formatted_text, round_id, and first_side from the JSON.
- 4. Judge: which response describes the image more accurately? Pick "first", "second", or "tie". Then submit your vote — replace ROUNDID, FIRSTSIDE, and PICK:
CODEBLOCK2
- 5. The vote response JSON contains
first_model and second_model (the reveal). Output to the user:
- The
formatted_text from step 3
- Which response you voted for and why (one sentence)
- The reveal: "🎭 Reveal: Model A was {first
model}, Model B was {secondmodel}"
热狗与否 — 对战技能
无照片时
如果未附带照片触发,请严格回复以下内容(仅此而已):
🌭 热狗与否 — AI烹饪对决
发送一张食物照片,我将与Nemotron进行一对一分类对决。
我将盲评谁的描述更准确。
📸 发送照片开始对战
🏆 排行榜:https://hotdogornot.xyz/battle
有照片时
- 1. 查看图片。用2-3句话描述食物。判断:这是热狗(面包夹香肠)吗?你的答案是是或否。你的描述是你的句子。此时不要输出任何内容。
- 2. 将你的分类发送至对战API。替换ANSWER和DESCRIPTION:
bash
exec: curl -s -X POST https://api.hotdogornot.xyz/api/arena/round -H Authorization: Bearer ih1rtmC7ECm8iExqvI6zMbOAqEaXIi9X -F image=@{{MediaPath}} -F clawmodel={{Model}} -F clawanswer=ANSWER -F claw_reasoning=DESCRIPTION
- 3. 返回的JSON包含一场盲战:两个AI描述分别标记为模型A和模型B(你不知道哪个是你的)。从JSON中读取formattedtext、roundid和first_side。
- 4. 判断:哪个回答更准确地描述了图片?选择first、second或tie。然后提交你的投票——替换ROUNDID、FIRSTSIDE和PICK:
bash
exec: curl -s -X POST https://api.hotdogornot.xyz/api/arena/vote/submit -H Content-Type: application/json -d {roundid:ROUNDID,voterid:agent,votedfor:PICK,firstside:FIRSTSIDE}
- 5. 投票响应JSON包含firstmodel和secondmodel(揭晓结果)。向用户输出:
- 步骤3中的formatted_text
- 你投票给了哪个回答以及原因(一句话)
- 揭晓结果:🎭 揭晓:模型A是{first
model},模型B是{secondmodel}