-
Notifications
You must be signed in to change notification settings - Fork 2
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
* plugins --------- Co-authored-by: Phil Downey <[email protected]> Co-authored-by: Brian Duenas <[email protected]>
- Loading branch information
1 parent
dfad8fa
commit 7eed012
Showing
11 changed files
with
122 additions
and
63 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -482,25 +482,34 @@ uncatalog a model service <br> | |
`uncatalog model service 'gen'` <br><br> | ||
|
||
`catalog model service from (remote) '<path or github>' as '<service_name>'|<service_name>`{: .cmd } | ||
catalog a model service from a path or github or remotely from an existing OpenAD service. <br> | ||
Example: <br> | ||
catalog a model service from a path or github or remotely from an existing OpenAD service. <br> | ||
|
||
`catalog model service from '[email protected]:acceleratedscience/generation_inference_service.git' as 'gen'` <br><br> | ||
Example: <br> | ||
|
||
`model service up '<service_name>'|<service_name>`{: .cmd } | ||
launch a model service <br> | ||
Examples: <br> | ||
`model service up gen` <br> | ||
`model service up 'gen'` <br><br> | ||
-`catalog model service from '[email protected]:acceleratedscience/generation_inference_service.git' as 'gen'` <br> | ||
|
||
or to catalog a remote service shared with you: <br> | ||
-`catalog model service from remote 'http://54.235.3.243:30001' as gen` <br><br> | ||
|
||
`model service up '<service_name>'|<service_name> [no_gpu]}`{: .cmd } | ||
launches a cataloged model service. <br> | ||
If you do not want to launch a service with GPU you should specify `no_gpu` at the end of the command. <br> | ||
Examples: <br> | ||
|
||
-`model service up gen` <br> | ||
|
||
-`model service up 'gen'` <br> | ||
|
||
-`model service up gen no_gpu` <br><br> | ||
|
||
`model service local up '<service_name>'|<service_name>`{: .cmd } | ||
launch a model service locally <br> | ||
launch a model service locally. <br> | ||
|
||
Example: <br> | ||
` model service local up gen` <br><br> | ||
Example: <br> | ||
` model service local up gen` <br><br> | ||
|
||
`model service down '<service_name>'|<service_name>`{: .cmd } | ||
bring down a model service <br> | ||
Bring down a model service <br> | ||
Examples: <br> | ||
|
||
`model service down gen` <br> | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,6 +1,6 @@ | ||
[tool.poetry] | ||
name = "openad" | ||
version = "0.3.0" | ||
version = "0.3.1" | ||
description = "Open Accelerated Discovery Client " | ||
authors = ["Phil Downey <[email protected]>"] | ||
readme = "README.md" | ||
|
@@ -107,7 +107,7 @@ enable_error_code = [ | |
] | ||
|
||
[tool.pytest.ini_options] | ||
addopts = "--cov=openad/openad_model_plugin" | ||
#addopts = "--cov=openad/openad_model_plugin" | ||
testpaths = ["tests"] | ||
filterwarnings = ["ignore::DeprecationWarning"] | ||
|
||
|