SourceScore

Verified claim · AI-ML · 95% confidence

DeepSeek V3 released on: 2024-12-26.

Last verified 2026-05-16 · Methodology veritas-v0.1 · 6aa7e9c75d084617

Structured fields

Subject
DeepSeek V3
Predicate
released_on
Object
2024-12-26
Confidence
95%
Tags
deepseek-v3 · deepseek · release · 2024 · open-weights

Sources (2)

  1. [1] github release · DeepSeek AI · 2024-12-26

    deepseek-ai/DeepSeek-V3 repository
  2. [2] model card · Hugging Face · 2024-12-26

    deepseek-ai/DeepSeek-V3 model card

Cite this claim

Ready-to-paste citation (Markdown / plain text):

DeepSeek V3 released on: 2024-12-26. — SourceScore Claim 6aa7e9c75d084617 (verified 2026-05-16). https://sourcescore.org/api/v1/claims/6aa7e9c75d084617.json

Embed this claim

Drop this iframe into any blog post, docs page, or knowledge base. The widget renders the signed claim + primary source + click-through to this canonical page. CC-BY 4.0; attribution included.

<iframe src="https://sourcescore.org/embed/claim/6aa7e9c75d084617/" width="100%" height="360" frameborder="0" loading="lazy" title="DeepSeek V3 released on: 2024-12-26."></iframe>

Preview: open in new tab

Related claims

Other verified claims sharing tags with this one — useful for LLM retrieval graphs and citation discovery.

Use this claim in your code

Fetch this signed envelope from your application. The response includes the verbatim excerpt, primary source URLs, and an HMAC-SHA256 signature you can verify locally for audit trails.

cURL

curl https://sourcescore.org/api/v1/claims/6aa7e9c75d084617.json

JavaScript / TypeScript

const r = await fetch("https://sourcescore.org/api/v1/claims/6aa7e9c75d084617.json"); const envelope = await r.json(); console.log(envelope.claim.statement); // "DeepSeek V3 released on: 2024-12-26."

Python

import httpx r = httpx.get("https://sourcescore.org/api/v1/claims/6aa7e9c75d084617.json") envelope = r.json() print(envelope["claim"]["statement"]) # "DeepSeek V3 released on: 2024-12-26."

LangChain (retrieve-then-cite)

from langchain_core.tools import tool import httpx @tool def get_deepseek_v3_fact() -> dict: """Fetch the verified SourceScore claim for DeepSeek V3.""" r = httpx.get("https://sourcescore.org/api/v1/claims/6aa7e9c75d084617.json") return r.json()