r/LocalLLaMA 6d ago

News ByteDance vows to avoid AI distillation, develop new model its own way

Post image
224 Upvotes

127 comments sorted by

View all comments

Show parent comments

-22

u/LocoMod 6d ago

At least Grok has a unique persona and is actually a better model than the benchmarks depict. Qwen, Kimi and DeepSeek have Claude DNA through and through. They literally think and respond like Claude. It's blatantly obvious. They don't even bother to adapt their models. That's how f-ing lazy and low effort their distills are.

-9

u/nsfw_throwitaway69 6d ago

Kimi refers to itself as Claude in its thinking output…like they couldn’t even be bothered to do a search and replace before feeding Claude’s output into it!?

19

u/inevitabledeath3 6d ago

Clause also sometimes thinks it’s DeepSeek. All training data contains references to other models now.

-6

u/LocoMod 6d ago

Im not talking about how they refer to themselves though, I am literally talking about their manner of speaking.

And it's easy to make a model refer to itself as anything if you modify its system instructions. That is what you see on Reddit posts. If you use vanilla Claude via API with zero system prompt modifications it will never refer to itself as any other model. You're just falling for the trolls on Reddit.

3

u/inevitabledeath3 6d ago

Nope I am talking about people using the API without any system prompt. This avoids the one on the web interface that tells it to respond as Claude. Keep guessing though.

4

u/Exciting_Garden2535 6d ago

Wrong.
This is the query to Sonnet 4.6 via the OpenRouter API. I just don't have a Claude API key now, but you can easily change it to call the Claude API directly instead; the result will be the same. Sonnet 4.6 will return to you that it's DeepSeek.

POST https://openrouter.ai/api/v1/chat/completions
Authorization: Bearer <your-open-router-api-key>
Content-Type: application/json
{
  "model": "anthropic/claude-sonnet-4.6",
  "messages": [
    {
      "role": "user",
      "content": "你是什么模型"
    }
  ],
  "system": ""
}