Skip to content

Commit 6705031

Browse files
techpro-aimlapigitbook-bot
authored andcommitted
GITBOOK-711: docs: add try-in-playground button for deepseeks
1 parent 7c2a2ae commit 6705031

10 files changed

Lines changed: 122 additions & 40 deletions

docs/SUMMARY.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -51,10 +51,10 @@
5151
* [DeepSeek Prover V2](api-references/text-models-llm/deepseek/deepseek-prover-v2.md)
5252
* [DeepSeek Chat V3.1](api-references/text-models-llm/deepseek/deepseek-chat-v3.1.md)
5353
* [DeepSeek Reasoner V3.1](api-references/text-models-llm/deepseek/deepseek-reasoner-v3.1.md)
54-
* [Deepseek Reasoner V3.1 Terminus](api-references/text-models-llm/deepseek/deepseek-reasoner-v3.1-terminus.md)
5554
* [Deepseek Non-reasoner V3.1 Terminus](api-references/text-models-llm/deepseek/deepseek-non-reasoner-v3.1-terminus.md)
56-
* [DeepSeek V3.2 Exp Thinking](api-references/text-models-llm/deepseek/deepseek-reasoner-v3.2-exp-thinking.md)
55+
* [Deepseek Reasoner V3.1 Terminus](api-references/text-models-llm/deepseek/deepseek-reasoner-v3.1-terminus.md)
5756
* [DeepSeek V3.2 Exp Non-thinking](api-references/text-models-llm/deepseek/deepseek-reasoner-v3.2-exp-non-thinking.md)
57+
* [DeepSeek V3.2 Exp Thinking](api-references/text-models-llm/deepseek/deepseek-reasoner-v3.2-exp-thinking.md)
5858
* [Google](api-references/text-models-llm/Google/README.md)
5959
* [gemini-2.0-flash-exp](api-references/text-models-llm/Google/gemini-2.0-flash-exp.md)
6060
* [gemini-2.0-flash](api-references/text-models-llm/google/gemini-2.0-flash.md)

docs/api-references/text-models-llm/DeepSeek/deepseek-chat.md

Lines changed: 13 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -1,12 +1,20 @@
11
# DeepSeek V3
22

3+
{% columns %}
4+
{% column width="66.66666666666666%" %}
35
{% hint style="info" %}
46
This documentation is valid for the following list of our models:
57

68
* `deepseek-chat`
79
* `deepseek/deepseek-chat`
810
* `deepseek/deepseek-chat-v3-0324`
911
{% endhint %}
12+
{% endcolumn %}
13+
14+
{% column width="33.33333333333334%" %}
15+
<a href="https://aimlapi.com/app/deepseek-chat" class="button primary">Try in Playground</a>
16+
{% endcolumn %}
17+
{% endcolumns %}
1018

1119
{% hint style="success" %}
1220
We provide the latest version of this model from **Mar 24, 2025**.\
@@ -23,25 +31,25 @@ DeepSeek V3 (or deepseek-chat) is an advanced conversational AI designed to deli
2331

2432
<summary>Step-by-Step Instructions</summary>
2533

26-
#### :digit\_one: Setup You Can’t Skip
34+
:digit\_one: **Setup You Can’t Skip**
2735

2836
:black\_small\_square: [**Create an Account**](https://aimlapi.com/app/sign-up): Visit the AI/ML API website and create an account (if you don’t have one yet).\
2937
:black\_small\_square: [**Generate an API Key**](https://aimlapi.com/app/keys): After logging in, navigate to your account dashboard and generate your API key. Ensure that key is enabled on UI.
3038

31-
#### :digit\_two: Copy the code example
39+
:digit\_two: **Copy the code example**
3240

3341
At the bottom of this page, you'll find [a code example](deepseek-chat.md#code-example) that shows how to structure the request. Choose the code snippet in your preferred programming language and copy it into your development environment.
3442

35-
#### :digit\_three: Modify the code example
43+
:digit\_three: **Modify the code example**
3644

3745
:black\_small\_square: Replace `<YOUR_AIMLAPI_KEY>` with your actual AI/ML API key from your account.\
3846
:black\_small\_square: Insert your question or request into the `content` field—this is what the model will respond to.
3947

40-
#### :digit\_four: <sup><sub><mark style="background-color:yellow;">(Optional)<mark style="background-color:yellow;"><sub></sup> Adjust other optional parameters if needed
48+
:digit\_four: <sup><sub><mark style="background-color:yellow;">**(Optional)**<mark style="background-color:yellow;"><sub></sup>**&#x20;Adjust other optional parameters if needed**
4149

4250
Only `model` and `messages` are required parameters for this model (and we’ve already filled them in for you in the example), but you can include optional parameters if needed to adjust the model’s behavior. Below, you can find the corresponding [API schema](deepseek-chat.md#api-schema), which lists all available parameters along with notes on how to use them.
4351

44-
#### :digit\_five: Run your modified code
52+
:digit\_five: **Run your modified code**
4553

4654
Run your modified code in your development environment. Response time depends on various factors, but for simple prompts it rarely exceeds a few seconds.
4755

docs/api-references/text-models-llm/DeepSeek/deepseek-r1.md

Lines changed: 13 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -1,11 +1,19 @@
11
# DeepSeek R1
22

3+
{% columns %}
4+
{% column width="66.66666666666666%" %}
35
{% hint style="info" %}
46
This documentation is valid for the following list of our models:
57

68
* `deepseek/deepseek-r1`
79
* `deepseek-reasoner`
810
{% endhint %}
11+
{% endcolumn %}
12+
13+
{% column width="33.33333333333334%" %}
14+
<a href="https://aimlapi.com/app/deepseek-reasoner" class="button primary">Try in Playground</a>
15+
{% endcolumn %}
16+
{% endcolumns %}
917

1018
{% hint style="success" %}
1119
Both IDs listed above refer to the same model; we support them for backward compatibility.
@@ -21,25 +29,25 @@ DeepSeek R1 is a cutting-edge reasoning model developed by DeepSeek AI, designed
2129

2230
<summary>Step-by-Step Instructions</summary>
2331

24-
#### :digit\_one: Setup You Can’t Skip
32+
:digit\_one: **Setup You Can’t Skip**
2533

2634
:black\_small\_square: [**Create an Account**](https://aimlapi.com/app/sign-up): Visit the AI/ML API website and create an account (if you don’t have one yet).\
2735
:black\_small\_square: [**Generate an API Key**](https://aimlapi.com/app/keys): After logging in, navigate to your account dashboard and generate your API key. Ensure that key is enabled on UI.
2836

29-
#### :digit\_two: Copy the code example
37+
:digit\_two: **Copy the code example**
3038

3139
At the bottom of this page, you'll find [a code example](deepseek-r1.md#code-example) that shows how to structure the request. Choose the code snippet in your preferred programming language and copy it into your development environment.
3240

33-
#### :digit\_three: Modify the code example
41+
:digit\_three: **Modify the code example**
3442

3543
:black\_small\_square: Replace `<YOUR_AIMLAPI_KEY>` with your actual AI/ML API key from your account.\
3644
:black\_small\_square: Insert your question or request into the `content` field—this is what the model will respond to.
3745

38-
#### :digit\_four: <sup><sub><mark style="background-color:yellow;">(Optional)<mark style="background-color:yellow;"><sub></sup> Adjust other optional parameters if needed
46+
:digit\_four: <sup><sub><mark style="background-color:yellow;">**(Optional)**<mark style="background-color:yellow;"><sub></sup>**&#x20;Adjust other optional parameters if needed**
3947

4048
Only `model` and `messages` are required parameters for this model (and we’ve already filled them in for you in the example), but you can include optional parameters if needed to adjust the model’s behavior. Below, you can find the corresponding [API schema](deepseek-r1.md#api-schema), which lists all available parameters along with notes on how to use them.
4149

42-
#### :digit\_five: Run your modified code
50+
:digit\_five: **Run your modified code**
4351

4452
Run your modified code in your development environment. Response time depends on various factors, but for simple prompts it rarely exceeds a few seconds.
4553

docs/api-references/text-models-llm/deepseek/deepseek-chat-v3.1.md

Lines changed: 13 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -1,10 +1,18 @@
11
# DeepSeek Chat V3.1
22

3+
{% columns %}
4+
{% column width="66.66666666666666%" %}
35
{% hint style="info" %}
46
This documentation is valid for the following list of our models:
57

68
* `deepseek/deepseek-chat-v3.1`
79
{% endhint %}
10+
{% endcolumn %}
11+
12+
{% column width="33.33333333333334%" %}
13+
<a href="https://aimlapi.com/app/deepseek/deepseek-chat-v3-1" class="button primary">Try in Playground</a>
14+
{% endcolumn %}
15+
{% endcolumns %}
816

917
## Model Overview
1018

@@ -16,25 +24,25 @@ August 2025 update of the [DeepSeek V3](../DeepSeek/deepseek-chat.md) non-reason
1624

1725
<summary>Step-by-Step Instructions</summary>
1826

19-
#### :digit\_one: Setup You Can’t Skip
27+
:digit\_one: **Setup You Can’t Skip**
2028

2129
:black\_small\_square: [**Create an Account**](https://aimlapi.com/app/sign-up): Visit the AI/ML API website and create an account (if you don’t have one yet).\
2230
:black\_small\_square: [**Generate an API Key**](https://aimlapi.com/app/keys): After logging in, navigate to your account dashboard and generate your API key. Ensure that key is enabled on UI.
2331

24-
#### :digit\_two: Copy the code example
32+
:digit\_two: **Copy the code example**
2533

2634
At the bottom of this page, you'll find [a code example](deepseek-chat-v3.1.md#code-example) that shows how to structure the request. Choose the code snippet in your preferred programming language and copy it into your development environment.
2735

28-
#### :digit\_three: Modify the code example
36+
:digit\_three: **Modify the code example**
2937

3038
:black\_small\_square: Replace `<YOUR_AIMLAPI_KEY>` with your actual AI/ML API key from your account.\
3139
:black\_small\_square: Insert your question or request into the `content` field—this is what the model will respond to.
3240

33-
#### :digit\_four: <sup><sub><mark style="background-color:yellow;">(Optional)<mark style="background-color:yellow;"><sub></sup> Adjust other optional parameters if needed
41+
:digit\_four: <sup><sub><mark style="background-color:yellow;">**(Optional)**<mark style="background-color:yellow;"><sub></sup>**&#x20;Adjust other optional parameters if needed**
3442

3543
Only `model` and `messages` are required parameters for this model (and we’ve already filled them in for you in the example), but you can include optional parameters if needed to adjust the model’s behavior. Below, you can find the corresponding [API schema](deepseek-chat-v3.1.md#api-schema), which lists all available parameters along with notes on how to use them.
3644

37-
#### :digit\_five: Run your modified code
45+
:digit\_five: **Run your modified code**
3846

3947
Run your modified code in your development environment. Response time depends on various factors, but for simple prompts it rarely exceeds a few seconds.
4048

docs/api-references/text-models-llm/deepseek/deepseek-non-reasoner-v3.1-terminus.md

Lines changed: 13 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -1,10 +1,18 @@
11
# Deepseek Non-reasoner V3.1 Terminus
22

3+
{% columns %}
4+
{% column width="66.66666666666666%" %}
35
{% hint style="info" %}
46
This documentation is valid for the following list of our models:
57

68
* `deepseek/deepseek-non-reasoner-v3.1-terminus`
79
{% endhint %}
10+
{% endcolumn %}
11+
12+
{% column width="33.33333333333334%" %}
13+
<a href="https://aimlapi.com/app/deepseek/deepseek-non-reasoner-v3-1-terminus" class="button primary">Try in Playground</a>
14+
{% endcolumn %}
15+
{% endcolumns %}
816

917
## Model Overview
1018

@@ -16,25 +24,25 @@ September 2025 update of [the DeepSeek Chat V3.1](deepseek-chat-v3.1.md) non-rea
1624

1725
<summary>Step-by-Step Instructions</summary>
1826

19-
#### :digit\_one: Setup You Can’t Skip
27+
:digit\_one: **Setup You Can’t Skip**
2028

2129
:black\_small\_square: [**Create an Account**](https://aimlapi.com/app/sign-up): Visit the AI/ML API website and create an account (if you don’t have one yet).\
2230
:black\_small\_square: [**Generate an API Key**](https://aimlapi.com/app/keys): After logging in, navigate to your account dashboard and generate your API key. Ensure that key is enabled on UI.
2331

24-
#### :digit\_two: Copy the code example
32+
:digit\_two: **Copy the code example**
2533

2634
At the bottom of this page, you'll find [a code example](deepseek-non-reasoner-v3.1-terminus.md#code-example) that shows how to structure the request. Choose the code snippet in your preferred programming language and copy it into your development environment.
2735

28-
#### :digit\_three: Modify the code example
36+
:digit\_three: **Modify the code example**
2937

3038
:black\_small\_square: Replace `<YOUR_AIMLAPI_KEY>` with your actual AI/ML API key from your account.\
3139
:black\_small\_square: Insert your question or request into the `content` field—this is what the model will respond to.
3240

33-
#### :digit\_four: <sup><sub><mark style="background-color:yellow;">(Optional)<mark style="background-color:yellow;"><sub></sup> Adjust other optional parameters if needed
41+
:digit\_four: <sup><sub><mark style="background-color:yellow;">**(Optional)**<mark style="background-color:yellow;"><sub></sup>**&#x20;Adjust other optional parameters if needed**
3442

3543
Only `model` and `messages` are required parameters for this model (and we’ve already filled them in for you in the example), but you can include optional parameters if needed to adjust the model’s behavior. Below, you can find the corresponding [API schema](deepseek-non-reasoner-v3.1-terminus.md#api-schema), which lists all available parameters along with notes on how to use them.
3644

37-
#### :digit\_five: Run your modified code
45+
:digit\_five: **Run your modified code**
3846

3947
Run your modified code in your development environment. Response time depends on various factors, but for simple prompts it rarely exceeds a few seconds.
4048

docs/api-references/text-models-llm/deepseek/deepseek-prover-v2.md

Lines changed: 16 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,18 @@
11
# DeepSeek Prover V2
22

3+
{% columns %}
4+
{% column width="66.66666666666666%" %}
35
{% hint style="info" %}
4-
This documentation is valid for the following model: `deepseek/deepseek-prover-v2`
6+
This documentation is valid for the following list of our models:
7+
8+
* `deepseek/deepseek-prover-v2`
59
{% endhint %}
10+
{% endcolumn %}
11+
12+
{% column width="33.33333333333334%" %}
13+
<a href="https://aimlapi.com/app/deepseek/deepseek-prover-v2" class="button primary">Try in Playground</a>
14+
{% endcolumn %}
15+
{% endcolumns %}
616

717
## Model Overview
818

@@ -14,25 +24,25 @@ A massive 671B-parameter model, presumed to focus on logic and mathematics. It a
1424

1525
<summary>Step-by-Step Instructions</summary>
1626

17-
#### :digit\_one: Setup You Can’t Skip
27+
:digit\_one: **Setup You Can’t Skip**
1828

1929
:black\_small\_square: [**Create an Account**](https://aimlapi.com/app/sign-up): Visit the AI/ML API website and create an account (if you don’t have one yet).\
2030
:black\_small\_square: [**Generate an API Key**](https://aimlapi.com/app/keys): After logging in, navigate to your account dashboard and generate your API key. Ensure that key is enabled on UI.
2131

22-
#### :digit\_two: Copy the code example
32+
:digit\_two: **Copy the code example**
2333

2434
At the bottom of this page, you'll find [a code example](deepseek-prover-v2.md#code-example) that shows how to structure the request. Choose the code snippet in your preferred programming language and copy it into your development environment.
2535

26-
#### :digit\_three: Modify the code example
36+
:digit\_three: **Modify the code example**
2737

2838
:black\_small\_square: Replace `<YOUR_AIMLAPI_KEY>` with your actual AI/ML API key from your account.\
2939
:black\_small\_square: Insert your question or request into the `content` field—this is what the model will respond to.
3040

31-
#### :digit\_four: <sup><sub><mark style="background-color:yellow;">(Optional)<mark style="background-color:yellow;"><sub></sup> Adjust other optional parameters if needed
41+
:digit\_four: <sup><sub><mark style="background-color:yellow;">**(Optional)**<mark style="background-color:yellow;"><sub></sup>**&#x20;Adjust other optional parameters if needed**
3242

3343
Only `model` and `messages` are required parameters for this model (and we’ve already filled them in for you in the example), but you can include optional parameters if needed to adjust the model’s behavior. Below, you can find the corresponding [API schema](deepseek-prover-v2.md#api-schema), which lists all available parameters along with notes on how to use them.
3444

35-
#### :digit\_five: Run your modified code
45+
:digit\_five: **Run your modified code**
3646

3747
Run your modified code in your development environment. Response time depends on various factors, but for simple prompts it rarely exceeds a few seconds.
3848

docs/api-references/text-models-llm/deepseek/deepseek-reasoner-v3.1-terminus.md

Lines changed: 13 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -1,10 +1,18 @@
11
# Deepseek Reasoner V3.1 Terminus
22

3+
{% columns %}
4+
{% column width="66.66666666666666%" %}
35
{% hint style="info" %}
46
This documentation is valid for the following list of our models:
57

68
* `deepseek/deepseek-reasoner-v3.1-terminus`
79
{% endhint %}
10+
{% endcolumn %}
11+
12+
{% column width="33.33333333333334%" %}
13+
<a href="https://aimlapi.com/app/deepseek/deepseek-reasoner-v3-1-terminus" class="button primary">Try in Playground</a>
14+
{% endcolumn %}
15+
{% endcolumns %}
816

917
## Model Overview
1018

@@ -16,25 +24,25 @@ September 2025 update of [the DeepSeek Reasoner V3.1](deepseek-reasoner-v3.1.md)
1624

1725
<summary>Step-by-Step Instructions</summary>
1826

19-
#### :digit\_one: Setup You Can’t Skip
27+
:digit\_one: **Setup You Can’t Skip**
2028

2129
:black\_small\_square: [**Create an Account**](https://aimlapi.com/app/sign-up): Visit the AI/ML API website and create an account (if you don’t have one yet).\
2230
:black\_small\_square: [**Generate an API Key**](https://aimlapi.com/app/keys): After logging in, navigate to your account dashboard and generate your API key. Ensure that key is enabled on UI.
2331

24-
#### :digit\_two: Copy the code example
32+
:digit\_two: **Copy the code example**
2533

2634
At the bottom of this page, you'll find [a code example](deepseek-reasoner-v3.1-terminus.md#code-example) that shows how to structure the request. Choose the code snippet in your preferred programming language and copy it into your development environment.
2735

28-
#### :digit\_three: Modify the code example
36+
:digit\_three: **Modify the code example**
2937

3038
:black\_small\_square: Replace `<YOUR_AIMLAPI_KEY>` with your actual AI/ML API key from your account.\
3139
:black\_small\_square: Insert your question or request into the `content` field—this is what the model will respond to.
3240

33-
#### :digit\_four: <sup><sub><mark style="background-color:yellow;">(Optional)<mark style="background-color:yellow;"><sub></sup> Adjust other optional parameters if needed
41+
:digit\_four: <sup><sub><mark style="background-color:yellow;">**(Optional)**<mark style="background-color:yellow;"><sub></sup>**&#x20;Adjust other optional parameters if needed**
3442

3543
Only `model` and `messages` are required parameters for this model (and we’ve already filled them in for you in the example), but you can include optional parameters if needed to adjust the model’s behavior. Below, you can find the corresponding [API schema](deepseek-reasoner-v3.1-terminus.md#api-schema), which lists all available parameters along with notes on how to use them.
3644

37-
#### :digit\_five: Run your modified code
45+
:digit\_five: **Run your modified code**
3846

3947
Run your modified code in your development environment. Response time depends on various factors, but for simple prompts it rarely exceeds a few seconds.
4048

0 commit comments

Comments
 (0)