You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: docs/my-website/docs/providers/datarobot.md
+7-6Lines changed: 7 additions & 6 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -2,9 +2,11 @@ import Tabs from '@theme/Tabs';
2
2
import TabItem from '@theme/TabItem';
3
3
4
4
# DataRobot
5
-
LiteLLM supports all models from [DataRobot](https://datarobot.com). Selecting`datarobot` as the provider routes your request through the `datarobot` OpenAI-compatible endpoint using the upstream [official OpenAI Python API library](https://github.com/openai/openai-python/blob/main/README.md).
5
+
LiteLLM supports all models from [DataRobot](https://datarobot.com). Select`datarobot` as the provider to route your request through the `datarobot` OpenAI-compatible endpoint using the upstream [official OpenAI Python API library](https://github.com/openai/openai-python/blob/main/README.md).
6
6
7
-
## Usage - environment variables
7
+
## Usage
8
+
9
+
### Environment variables
8
10
```python
9
11
import os
10
12
from litellm import completion
@@ -15,10 +17,9 @@ response = completion(
15
17
model="datarobot/openai/gpt-4o-mini",
16
18
messages=messages,
17
19
)
18
-
```
19
20
20
21
21
-
##Usage - completion
22
+
### Completion
22
23
```python
23
24
import litellm
24
25
import os
@@ -35,8 +36,8 @@ response = litellm.completion(
35
36
print(response)
36
37
```
37
38
38
-
## DataRobot Completion Models
39
+
## DataRobot completion models
39
40
40
-
🚨 LiteLLM supports _all_ DataRobot LLM gateway models, to get a list for your installation and user account, you can send this simple CURL command:
41
+
🚨 LiteLLM supports _all_ DataRobot LLM gateway models. To get a list for your installation and user account, send the following CURL command:
0 commit comments