Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Binary file added .qodo/history.sqlite
Binary file not shown.
8 changes: 8 additions & 0 deletions magemaker/runner.py
Original file line number Diff line number Diff line change
Expand Up @@ -166,6 +166,14 @@ def runner():
help="Deploy a Hugging Face Model.",
type=str
)

parser.add_argument(
'--query',
action='query',
help="path to YAML query configuration file",
type=str
)

parser.add_argument(
"--instance",
help="EC2 instance type to deploy to.",
Copy link

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

This code diff represents the addition of an argument to a parser. The new argument is called --query, corresponding to a YAML query configuration file path. When using this argument, users need to provide a string input which signifies this path.

Expand Down
Loading