-
Notifications
You must be signed in to change notification settings - Fork 323
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
4 changed files
with
144 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
141 changes: 141 additions & 0 deletions
141
apps/opik-documentation/documentation/docs/tracing/integrations/deepseek.mdx
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,141 @@ | ||
--- | ||
sidebar_label: DeepSeek | ||
description: Describes how to track DeepSeek LLM calls using Opik | ||
pytest_codeblocks_skip: false | ||
--- | ||
|
||
import Tabs from "@theme/Tabs"; | ||
import TabItem from "@theme/TabItem"; | ||
|
||
# Deepseek | ||
|
||
Deepseek is an Open-Source LLM model that rivals o1 from OpenAI. You can learn more about DeepSeek on [Github](https://github.com/deepseek-ai/DeepSeek-R1) or | ||
on [deepseek.com](https://www.deepseek.com/). | ||
|
||
In this guide, we will showcase how to track DeepSeek calls using Opik. As DeepSeek is open-source, there are many way to run and call the model. We will focus on how to integrate Opik with the following hosting options: | ||
|
||
1. DeepSeek API | ||
2. Fireworks AI API | ||
3. Together AI API | ||
|
||
## Getting started | ||
|
||
### Configuring your hosting provider | ||
|
||
Before you can start tracking DeepSeek calls, you need to get the API key from your hosting provider. | ||
|
||
<Tabs> | ||
<TabItem value="DeepSeek API" title="DeepSeek API"> | ||
|
||
In order to use the DeepSeek API, you will need to have an API key. You can register for an account on [DeepSeek.com](https://chat.deepseek.com/sign_up). | ||
Once you have signed up, you can register for an API key. | ||
|
||
</TabItem> | ||
<TabItem value="Fireworks AI API" title="Fireworks AI API"> | ||
|
||
You can log into Fireworks AI on [fireworks.ai](https://fireworks.ai/). You can then access your API key on the [API keys](https://fireworks.ai/account/api-keys) page. | ||
|
||
</TabItem> | ||
<TabItem value="Together AI API" title="Together AI API"> | ||
|
||
You can log into Together AI on [together.ai](https://together.ai/). You can then access your API key on the [API keys](https://api.together.ai/settings/api-keys) page. | ||
|
||
</TabItem> | ||
</Tabs> | ||
|
||
### Configuring Opik | ||
|
||
```bash | ||
pip install --upgrade --quiet opik | ||
|
||
opik configure | ||
``` | ||
|
||
:::tip | ||
Opik is fully open-source and can be run locally or through the Opik Cloud platform. You can learn more about hosting Opik on your own infrastructure in the [self-hosting guide](/docs/self-host/overview.md). | ||
::: | ||
|
||
## Tracking DeepSeek calls | ||
|
||
The easiest way to call DeepSeek with Opik is to use the OpenAI Python SDK and the `track_openai` decorator. This approach is compatible with the DeepSeek API, Fireworks AI API and Together AI API: | ||
|
||
<Tabs> | ||
<TabItem value="DeepSeek API" title="DeepSeek API"> | ||
|
||
```python | ||
from opik.integrations.openai import track_openai | ||
from openai import OpenAI | ||
|
||
# Create the OpenAI client that points to DeepSeek API | ||
client = OpenAI(api_key="<DeepSeek API Key>", base_url="https://api.deepseek.com") | ||
|
||
# Wrap your OpenAI client to track all calls to Opik | ||
client = track_openai(client) | ||
|
||
# Call the API | ||
response = client.chat.completions.create( | ||
model="deepseek-chat", | ||
messages=[ | ||
{"role": "system", "content": "You are a helpful assistant"}, | ||
{"role": "user", "content": "Hello"}, | ||
], | ||
stream=False | ||
) | ||
|
||
print(response.choices[0].message.content) | ||
``` | ||
|
||
</TabItem> | ||
<TabItem value="Fireworks AI API" title="Fireworks AI API"> | ||
|
||
```python | ||
from opik.integrations.openai import track_openai | ||
from openai import OpenAI | ||
|
||
# Create the OpenAI client that points to DeepSeek API | ||
client = OpenAI(api_key="<Firebworks AI API Key>", base_url="https://api.fireworks.ai/inference/v1") | ||
|
||
# Wrap your OpenAI client to track all calls to Opik | ||
client = track_openai(client) | ||
|
||
# Call the API | ||
response = client.chat.completions.create( | ||
model="accounts/fireworks/models/deepseek-v3", | ||
messages=[ | ||
{"role": "system", "content": "You are a helpful assistant"}, | ||
{"role": "user", "content": "Hello"}, | ||
], | ||
stream=False | ||
) | ||
|
||
print(response.choices[0].message.content) | ||
``` | ||
|
||
</TabItem> | ||
<TabItem value="Together AI API" title="Together AI API"> | ||
|
||
```python | ||
from opik.integrations.openai import track_openai | ||
from openai import OpenAI | ||
|
||
# Create the OpenAI client that points to Together AI API | ||
client = OpenAI(api_key="<Together AI API Key>", base_url="https://api.together.xyz/v1") | ||
|
||
# Wrap your OpenAI client to track all calls to Opik | ||
client = track_openai(client) | ||
|
||
# Call the API | ||
response = client.chat.completions.create( | ||
model="deepseek-ai/DeepSeek-R1", | ||
messages=[ | ||
{"role": "system", "content": "You are a helpful assistant"}, | ||
{"role": "user", "content": "Hello"}, | ||
], | ||
stream=False | ||
) | ||
|
||
print(response.choices[0].message.content) | ||
``` | ||
|
||
</TabItem> | ||
</Tabs> |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters