An offline AI model that provides uncensored, unbiased responses without relying on real-time search.

Model Type: Offline Chat Model
Use Case: Private, factual-based answering without live web search.

Key Features:

  • No real-time search access
  • Provides factual, unbiased answers

Real-World Examples:

  • Historical research with unbiased perspectives
  • Legal document reviews
  • Analyzing structured, factual content

Pricing:

Pricing ComponentCost
Input Tokens (Per Million)$2
Output Tokens (Per Million)$8

Test the Model:

curl --request POST \
  --url https://api.perplexity.ai/chat/completions \
  --header 'Authorization: Bearer <token>' \
  --header 'Content-Type: application/json' \
  --data '{
  "model": "r1-1776",
  "messages": [
    {"role": "user", "content": "Explain the legal implications of copyright law."}
  ],
  "max_tokens": 300
}'