Skip to content

Commit 8251a0d

Browse files
Add blueprint description.
Signed-off-by: Nathalie Jonathan <[email protected]>
1 parent 44abf84 commit 8251a0d

File tree

1 file changed

+6
-17
lines changed

1 file changed

+6
-17
lines changed

docs/remote_inference_blueprints/deepseek_connector_chat_blueprint.md

+6-17
Original file line numberDiff line numberDiff line change
@@ -1,19 +1,8 @@
11
# DeepSeek connector blueprint example for Chat
2+
This blueprint integrates [DeepSeek Chat Model](https://api-docs.deepseek.com/api/create-chat-completion) for question-answering capabilities for standalone interactions. Full conversational functionality requires additional development.
3+
Adapt and extend this blueprint as needed for your specific use case.
24

3-
## 1. Add connector endpoint to trusted URLs:
4-
5-
```json
6-
PUT /_cluster/settings
7-
{
8-
"persistent": {
9-
"plugins.ml_commons.trusted_connector_endpoints_regex": [
10-
"^https://api\\.deepseek\\.com/.*$"
11-
]
12-
}
13-
}
14-
```
15-
16-
## 2. Create connector for DeepSeek Chat:
5+
## 1. Create connector for DeepSeek Chat:
176

187
```json
198
{
@@ -51,7 +40,7 @@ PUT /_cluster/settings
5140
}
5241
```
5342

54-
## 3. Create model group:
43+
## 2. Create model group:
5544

5645
```json
5746
POST /_plugins/_ml/model_groups/_register
@@ -69,7 +58,7 @@ POST /_plugins/_ml/model_groups/_register
6958
}
7059
```
7160

72-
## 4. Register model to model group & deploy model:
61+
## 3. Register model to model group & deploy model:
7362

7463
```json
7564
{
@@ -90,7 +79,7 @@ POST /_plugins/_ml/model_groups/_register
9079
}
9180
```
9281

93-
## 5. Test model inference
82+
## 4. Test model inference
9483

9584
```json
9685
POST /_plugins/_ml/models/oUdPqZQBQwAL8-GOCZYL/_predict

0 commit comments

Comments
 (0)