DeepSeek R1

New
DeepSeek
Text & Chat

DeepSeek's reasoning model with chain-of-thought capabilities. Excellent for complex problem-solving.

Examples

See what DeepSeek R1 can generate

Calculus Problem

Find the volume of the solid obtained by rotating y = x² from x=0 to x=2 around the x-axis

Using the disk method, V = π∫(0 to 2) [f(x)]² dx = π∫(0 to 2) x⁴ dx. Evaluating: π[x⁵/5] from 0 to 2 = π(32/5 - 0) = 32π/5. The volume is 32π/5 ≈ 20.11 cubic units. The disk method works here because we're rotating around the x-axis and the function is non-negative on the interval.

Physics Reasoning

A 2kg ball is thrown upward at 15 m/s. Ignoring air resistance, what is the maximum height and total time in the air?

At maximum height, velocity = 0. Using v² = v₀² - 2gh: 0 = 225 - 2(9.8)h, so h = 225/19.6 = 11.48 meters. For time to reach max height: v = v₀ - gt, so 0 = 15 - 9.8t, giving t = 1.53 seconds. Total flight time is double this (symmetry of projectile motion): 3.06 seconds. Note that mass doesn't affect the answer—the 2kg is irrelevant when air resistance is ignored, as all objects experience the same gravitational acceleration.

Try DeepSeek R1

0.7

Response will appear here...

Sign up free to start generating
Get Started

Pricing

Price per Generation
Per generationFree

API Integration

Use our OpenAI-compatible API to integrate DeepSeek R1 into your application.

Install
npm install railwail
JavaScript / TypeScript
import railwail from "railwail";

const rw = railwail("YOUR_API_KEY");

// Simple — just pass a string
const reply = await rw.run("deepseek-r1", "Hello! What can you do?");
console.log(reply);

// With message history
const reply2 = await rw.run("deepseek-r1", [
  { role: "system", content: "You are a helpful assistant." },
  { role: "user", content: "Explain quantum computing simply." },
]);
console.log(reply2);

// Full response with usage info
const res = await rw.chat("deepseek-r1", [
  { role: "user", content: "Hello!" },
], { temperature: 0.7, max_tokens: 500 });
console.log(res.choices[0].message.content);
console.log(res.usage);
Specifications
Context window
64,000 tokens
Max output
8,192 tokens
Avg. latency
8.0s
Provider
DeepSeek
Category
Text & Chat
Tags
reasoning
math
Try this model

Free credits on sign-up

Start using DeepSeek R1 today

Get started with free credits. No credit card required. Access DeepSeek R1 and 100+ other models through a single API.