Perplexity: R1 1776

perplexity/r1-1776

Created Feb 19, 2025128,000 context
$2/M input tokens$8/M output tokens

R1 1776 is a version of DeepSeek-R1 that has been post-trained to remove censorship constraints related to topics restricted by the Chinese government. The model retains its original reasoning capabilities while providing direct responses to a wider range of queries. R1 1776 is an offline chat model that does not use the perplexity search subsystem.

The model was tested on a multilingual dataset of over 1,000 examples covering sensitive topics to measure its likelihood of refusal or overly filtered responses. Evaluation Results Its performance on math and reasoning benchmarks remains similar to the base R1 model. Reasoning Performance

Read more on the Blog Post

Providers for R1 1776

OpenRouter routes requests to the best providers that are able to handle your prompt size and parameters, with fallbacks to maximize uptime.

Context
128K
Max Output
128K
Input
$2
Output
$8
Context
164K
Max Output
164K
Input
$3
Output
$7

Apps using R1 1776

Top public apps this week using this model

Recent activity on R1 1776

Tokens processed per day

Feb 19Feb 24Mar 1Mar 6Mar 11Mar 16Mar 21Mar 26Mar 31Apr 5Apr 10Apr 15Apr 20Apr 25Apr 30May 5025M50M75M100M

Uptime stats for R1 1776

Uptime stats for R1 1776 across all providers

Sample code and API for R1 1776

OpenRouter normalizes requests and responses across providers for you.

OpenRouter provides an OpenAI-compatible completion API to 300+ models & providers that you can call directly, or using the OpenAI SDK. Additionally, some third-party SDKs are available.

In the examples below, the OpenRouter-specific headers are optional. Setting them allows your app to appear on the OpenRouter leaderboards.

from openai import OpenAI

client = OpenAI(
  base_url="https://openrouter.ai/api/v1",
  api_key="<OPENROUTER_API_KEY>",
)

completion = client.chat.completions.create(
  extra_headers={
    "HTTP-Referer": "<YOUR_SITE_URL>", # Optional. Site URL for rankings on openrouter.ai.
    "X-Title": "<YOUR_SITE_NAME>", # Optional. Site title for rankings on openrouter.ai.
  },
  extra_body={},
  model="perplexity/r1-1776",
  messages=[
    {
      "role": "user",
      "content": "What is the meaning of life?"
    }
  ]
)
print(completion.choices[0].message.content)

Using third-party SDKs

For information about using third-party SDKs and frameworks with OpenRouter, please see our frameworks documentation.

See the Request docs for all possible fields, and Parameters for explanations of specific sampling parameters.

    R1 1776 - API, Providers, Stats | OpenRouter