Skip to content

Commit 4f98690

Browse files
techpro-aimlapigitbook-bot
authored andcommitted
GITBOOK-877: docs: deprecate claude-3-opus, update deepseek v3.2 speciale api schema
1 parent 006dd7c commit 4f98690

9 files changed

Lines changed: 15 additions & 149 deletions

File tree

docs/SUMMARY.md

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -36,7 +36,6 @@
3636
* [magnum-v4](api-references/text-models-llm/Anthracite/magnum-v4.md)
3737
* [Anthropic](api-references/text-models-llm/Anthropic/README.md)
3838
* [Claude 3 Haiku](api-references/text-models-llm/Anthropic/claude-3-haiku.md)
39-
* [Claude 3 Opus](api-references/text-models-llm/Anthropic/claude-3-opus.md)
4039
* [Claude 3.5 Haiku](api-references/text-models-llm/anthropic/claude-3.5-haiku.md)
4140
* [Claude 3.7 Sonnet](api-references/text-models-llm/anthropic/claude-3.7-sonnet.md)
4241
* [Claude 4 Opus](api-references/text-models-llm/anthropic/claude-4-opus.md)

docs/api-references/model-database.md

Lines changed: 2 additions & 2 deletions
Large diffs are not rendered by default.

docs/api-references/text-models-llm/Anthracite/magnum-v4.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,7 @@ This documentation is valid for the following list of our models:
1616

1717
## Model Overview
1818

19-
A LLM fine-tuned on top of Qwen2.5, specifically designed to replicate the prose quality of the Claude 3 models, particularly Sonnet and [Opus](../Anthropic/claude-3-opus.md). It excels in generating coherent and contextually rich text.
19+
A LLM fine-tuned on top of Qwen2.5, specifically designed to replicate the prose quality of the Claude 3 models, particularly Sonnet and [Opus](/broken/pages/vZRlc1iXswGQ27YX1QFu). It excels in generating coherent and contextually rich text.
2020

2121
{% hint style="warning" %}
2222
[Create AI/ML API Key](https://aimlapi.com/app/keys)

docs/api-references/text-models-llm/Anthropic/claude-3-opus.md

Lines changed: 0 additions & 135 deletions
This file was deleted.

docs/api-references/text-models-llm/README.md

Lines changed: 1 addition & 1 deletion
Large diffs are not rendered by default.

docs/capabilities/function-calling.md

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -45,7 +45,7 @@ import openai
4545

4646
client = openai.OpenAI(
4747
base_url="https://api.aimlapi.com/v1",
48-
api_key='AI_ML_API',
48+
api_key='<YOUR_AIMLAPI_KEY',
4949
)
5050

5151
tools = [
@@ -93,7 +93,6 @@ print(json.dumps(response.choices[0].message.model_dump()['tool_calls'], indent=
9393
## Models That Support Function Calling
9494

9595
* [claude-3-haiku-20240307](../api-references/text-models-llm/Anthropic/claude-3-haiku.md)
96-
* [claude-3-opus-20240229](../api-references/text-models-llm/Anthropic/claude-3-opus.md)
9796
* [claude-3-5-haiku-20241022](../api-references/text-models-llm/anthropic/claude-3.5-haiku.md)
9897
* [claude-3-7-sonnet-20250219](../api-references/text-models-llm/anthropic/claude-3.7-sonnet.md)
9998
* [claude-opus-4-20250514](../api-references/text-models-llm/anthropic/claude-4-opus.md)

docs/capabilities/image-to-text-vision.md

Lines changed: 4 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -4,6 +4,8 @@ This article describes a specific capability of text models: vision, which enabl
44

55
## Example
66

7+
{% tabs %}
8+
{% tab title="Python" %}
79
{% code overflow="wrap" %}
810
```python
911
import requests
@@ -37,16 +39,16 @@ headers = {
3739

3840
response = requests.post(url, headers=headers, data=payload)
3941
print(response.json())
40-
4142
```
4243
{% endcode %}
44+
{% endtab %}
45+
{% endtabs %}
4346

4447
## Text Models That Support Vision
4548

4649
* [alibaba/qwen3-vl-32b-instruct](../api-references/text-models-llm/alibaba-cloud/qwen3-vl-32b-instruct.md)
4750
* [alibaba/qwen3-vl-32b-thinking](../api-references/text-models-llm/alibaba-cloud/qwen3-vl-32b-thinking.md)
4851
* [claude-3-haiku-20240307](../api-references/text-models-llm/Anthropic/claude-3-haiku.md)
49-
* [claude-3-opus-20240229](../api-references/text-models-llm/Anthropic/claude-3-opus.md)
5052
* [claude-3-5-haiku-20241022](../api-references/text-models-llm/anthropic/claude-3.5-haiku.md)
5153
* [claude-3-7-sonnet-20250219](../api-references/text-models-llm/anthropic/claude-3.7-sonnet.md)
5254
* [claude-sonnet-4-20250514](../api-references/text-models-llm/anthropic/claude-4-sonnet.md)

docs/quickstart/u9q0-g/README.md

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -18,7 +18,7 @@ Here, you'll learn how to start using our API in your code. The following steps
1818
* [configuring the base URL](./#configuring-base-url),
1919
* [making an API call](./#making-an-api-call).
2020

21-
Let's walk through an example of connecting to [the free-tier Gemma 3](../../api-references/text-models-llm/google/gemma-3.md) model via OpenAI SDK. \
21+
Let's walk through an example of connecting to [the free-tier Gemma 3](../../api-references/text-models-llm/google/gemma-3.md) model via [REST API](../supported-sdks.md#rest-api). \
2222
After completing the steps, you will be able to generate text with this model at no cost.
2323

2424
This guide is suitable even for complete beginners.
@@ -521,9 +521,10 @@ Voila! Using AI/ML API models is the simplest and most productive way to get int
521521

522522
## Future Steps
523523

524-
* [Browse and compare our models, including GPT, Claude, and many others, using the Playground](https://aimlapi.com/app/)
525524
* [Move to production-ready models: see the guide for connecting GPT-4o](u9q0.md)
525+
* [Browse and compare AI models, including GPT, Claude, and many others, using the Playground](https://aimlapi.com/app/)
526526
* [Know more about supported SDKs](../supported-sdks.md)
527+
* [Learn more about special text model capabilities](/broken/pages/qQxIeD1HucvN1Duoxrk0)
527528
* [Join the community: get help and share your projects in our Discord](https://discord.com/invite/hvaUsJpVJf)
528529

529530
[^1]: Because of notation, these two parameters are called slightly differently in different languages (camel case in JS and snake case in Python), but their functionality is the same.

docs/quickstart/u9q0-g/u9q0.md

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -22,7 +22,7 @@ messages: [
2222
role: "user",
2323
content: "Tell me about San Francisco",
2424
},
25-
],
25+
],
2626
```
2727

2828
Here’s the complete code you can use right away in a Python or Node.js program. You only need to replace `<YOUR_AIMLAPI_KEY>` with your AIML API key from your account, provide your behavior instructions in the system prompt, and place your request to the model in the user prompt.
@@ -116,7 +116,7 @@ main();
116116

117117
## Future Steps
118118

119-
* [Browse and compare our models, including GPT, Claude, and many others, using the Playground](https://aimlapi.com/app/)
120-
* [Move to production-ready models: see the guide for connecting GPT-4o](u9q0.md)
119+
* [Browse and compare AI models, including GPT, Claude, and many others, using the Playground](https://aimlapi.com/app/)
121120
* [Know more about supported SDKs](../supported-sdks.md)
121+
* [Learn more about special text model capabilities](/broken/pages/qQxIeD1HucvN1Duoxrk0)
122122
* [Join the community: get help and share your projects in our Discord](https://discord.com/invite/hvaUsJpVJf)

0 commit comments

Comments
 (0)