diff --git a/quick-start.mdx b/quick-start.mdx
index 5853ef8..cc8a385 100644
--- a/quick-start.mdx
+++ b/quick-start.mdx
@@ -5,7 +5,6 @@ title: Quick Start
Make sure you have followed the [installation](installation) steps before proceeding.
-
## Interactive View
1. Run Magemaker with your desired cloud provider:
@@ -21,7 +20,6 @@ Supported providers:
- `--cloud azure` Azure Machine Learning deployment
- `--cloud all` Configure all three providers at the same time
-
### List Models
From the dropdown, select `Show Acitve Models` to see the list of endpoints deployed.
@@ -34,14 +32,12 @@ From the dropdown, select `Delete a Model Endpoint` to see the list of models en

-
### Querying Models
From the dropdown, select `Query a Model Endpoint` to see the list of models endpoints. Press space to select the endpoints you want to query. Enter the query in the text box and press enter to get the response.

-
### YAML-based Deployment (Recommended)
For reproducible deployments, use YAML configuration:
@@ -119,15 +115,33 @@ models:

-
+
Select Hugging-Face from the collections list. The id of the model card is the id you need to use in the yaml file

-
+### Additional CLI Arguments
+
+Magemaker now supports more fine-grained control of deployment through extra arguments:
+
+- `--instance`: EC2 (or equivalent) instance type to deploy to (e.g., `ml.g4dn.xlarge`)
+- `--cpu`: Specify the desired CPU type for deployment (e.g., `intel`, `amd`)
+Other supported flags:
+
+- `--hf`: Deploy a Hugging Face model directly.
+- `--deploy`: Path to YAML deployment configuration file (see above).
+- `--cloud`: Target cloud providers.
+- `--train`: Path to YAML training configuration file.
+- `--version`: Show Magemaker version and exit.
+
+Example:
+
+```sh
+magemaker --cloud aws --instance ml.g4dn.xlarge --cpu intel --hf facebook/opt-125m
+```
### Model Fine-tuning
@@ -175,12 +189,10 @@ training: !Training
Remember to deactivate unused endpoints to avoid unnecessary charges!
-
## Contact
You can reach us, faizan & jneid, at [support@slashml.com](mailto:support@slashml.com).
-
If anything doesn't make sense or you have suggestions, do point them out at [magemaker.featurebase.app](https://magemaker.featurebase.app/).
We'd love to hear from you! We're excited to learn how we can make this more valuable for the community and welcome any and all feedback and suggestions.