Skip to content

Commit 6a1a8f2

Browse files
authored
fixing docs (#1193)
Signed-off-by: Dhrubo Saha <[email protected]>
1 parent d3d4122 commit 6a1a8f2

File tree

6 files changed

+16
-16
lines changed

6 files changed

+16
-16
lines changed

DEVELOPER_GUIDE.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -59,7 +59,7 @@ Fork ml-commons by clicking the "Fork" button at the top of the [GitHub reposito
5959
Clone your forked version of ml-commons to your local machine (replace `opensearch-project` in the command below with your GitHub username):
6060

6161
```bash
62-
$ git clone [email protected]:opensearch-project/opensearch-py-ml.git
62+
$ git clone [email protected]:opensearch-project/ml-commons.git
6363
```
6464

6565
### Run OpenSearch

docs/remote_inference_blueprints/cohere_connector_embedding_blueprint.md

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -5,9 +5,9 @@
55
```json
66
POST /_plugins/_ml/connectors/_create
77
{
8-
"name": "<YOUR MODEL NAME>",
9-
"description": "<YOUR MODEL DESCRIPTION>",
10-
"version": "<YOUR MODEL VERSION>",
8+
"name": "<YOUR CONNECTOR NAME>",
9+
"description": "<YOUR CONNECTOR DESCRIPTION>",
10+
"version": "<YOUR CONNECTOR VERSION>",
1111
"protocol": "http",
1212
"credential": {
1313
"cohere_key": "<PLEASE ADD YOUR Cohere API KEY HERE>"

docs/remote_inference_blueprints/cohere_connector_rerank_blueprint.md

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -5,9 +5,9 @@
55
```json
66
POST /_plugins/_ml/connectors/_create
77
{
8-
"name": "<YOUR MODEL NAME>",
9-
"description": "<YOUR MODEL DESCRIPTION>",
10-
"version": "<YOUR MODEL VERSION>",
8+
"name": "<YOUR CONNECTOR NAME>",
9+
"description": "<YOUR CONNECTOR DESCRIPTION>",
10+
"version": "<YOUR CONNECTOR VERSION>",
1111
"protocol": "http",
1212
"parameters": {
1313
"endpoint": "api.cohere.ai",

docs/remote_inference_blueprints/open_ai_connector_chat_blueprint.md

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -4,9 +4,9 @@
44
```json
55
POST /_plugins/_ml/connectors/_create
66
{
7-
"name": "<YOUR MODEL NAME>",
8-
"description": "<YOUR MODEL DESCRIPTION>",
9-
"version": "<YOUR MODEL VERSION>",
7+
"name": "<YOUR CONNECTOR NAME>",
8+
"description": "<YOUR CONNECTOR DESCRIPTION>",
9+
"version": "<YOUR CONNECTOR VERSION>",
1010
"protocol": "http",
1111
"parameters": {
1212
"endpoint": "api.openai.com",

docs/remote_inference_blueprints/open_ai_connector_completion_blueprint.md

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -5,9 +5,9 @@
55
```json
66
POST /_plugins/_ml/connectors/_create
77
{
8-
"name": "<YOUR MODEL NAME>",
9-
"description": "<YOUR MODEL DESCRIPTION>",
10-
"version": "<YOUR MODEL VERSION>",
8+
"name": "<YOUR CONNECTOR NAME>",
9+
"description": "<YOUR CONNECTOR DESCRIPTION>",
10+
"version": "<YOUR CONNECTOR VERSION>",
1111
"protocol": "http",
1212
"parameters": {
1313
"endpoint": "api.openai.com",

docs/remote_inference_blueprints/sagemaker_connector_blueprint.md

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -3,9 +3,9 @@
33
```json
44
POST /_plugins/_ml/connectors/_create
55
{
6-
"name": "<YOUR MODEL NAME>",
7-
"description": "<YOUR MODEL DESCRIPTION>",
8-
"version": "<YOUR MODEL VERSION>",
6+
"name": "<YOUR CONNECTOR NAME>",
7+
"description": "<YOUR CONNECTOR DESCRIPTION>",
8+
"version": "<YOUR CONNECTOR VERSION>",
99
"protocol": "aws_sigv4",
1010
"credential": {
1111
"access_key": "<PLEASE ADD YOUR AWS ACCESS KEY HERE>",

0 commit comments

Comments
 (0)