Skip to content

Commit a8a2ce0

Browse files
committed
docs: improve model list check and add arch
1 parent f5e0feb commit a8a2ce0

File tree

2 files changed

+6
-43
lines changed

2 files changed

+6
-43
lines changed

README.md

Lines changed: 6 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -23,7 +23,6 @@ EMD (Easy Model Deployer) is a lightweight tool designed to simplify model deplo
2323

2424
**Notes**
2525

26-
- Please check the [Supported Models](docs/en/supported_models.md) for complete list.
2726
- OpenAI Compatible API is supported only for Amazon ECS and Amazon EC2 deployment.
2827

2928
## Table of Contents
@@ -39,11 +38,6 @@ Deploy models to the cloud with EMD will use the following components in Amazon
3938

4039
![alt text](docs/images/emd-architecture.png)
4140

42-
- Amazon SageMaker
43-
- Amazon ECS
44-
- Amazon EC2
45-
- Amazon ECR
46-
- Amazon EKS
4741

4842
## Getting Started
4943

@@ -52,7 +46,7 @@ Deploy models to the cloud with EMD will use the following components in Amazon
5246
Install EMD with `pip`, currently only support for Python 3.9 and above:
5347

5448
```bash
55-
curl -LO https://github.com/aws-samples/easy-model-deployer/releases/download/dev/emd-0.6.0-py3-none-any.whl && pip install emd-0.6.0-py3-none-any.whl"[all]"
49+
pip install https://github.com/aws-samples/easy-model-deployer/releases/download/main/emd-0.6.0-py3-none-any.whl
5650
```
5751

5852
Visit our [documentation](https://aws-samples.github.io/easy-model-deployer/) to learn more.
@@ -73,6 +67,11 @@ emd bootstrap
7367
Notes: This is going to set up the necessary resources for model deployment. Whenever you change EMD version, run this command again.
7468
![alt text](docs/images/emd-bootstrap.png)
7569

70+
#### Quickly see what models are supported by ```emd list-supported-models```. This command will output all information related to deployment. The following command is recommended to just check the model type. (Plese check [Supported Models](docs/en/supported_models.md) for complete information.)
71+
```bash
72+
emd list-supported-models | jq -r '.[] | "\(.model_id)\t\(.model_type)"' | column -t -s $'\t' | sort
73+
```
74+
7675
#### Choose deployment parameters interactively by ```emd deploy``` or deploy with one command
7776
```bash
7877
emd deploy --model-id DeepSeek-R1-Distill-Qwen-1.5B --instance-type g5.8xlarge --engine-type vllm --framework-type fastapi --service-type sagemaker --extra-params {} --skip-confirm

docs/supported_models.md

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

0 commit comments

Comments
 (0)