Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Updates docs with reset, model lists #254

Merged
merged 14 commits into from
Jul 10, 2023
Prev Previous commit
Next Next commit
Additional detail on arguments
  • Loading branch information
JasonWeill authored and dlqqq committed Jul 10, 2023
commit 3aae5bad8e93dcddf11a8c7594a6be6c1372532c
9 changes: 4 additions & 5 deletions packages/jupyter-ai-magics/jupyter_ai_magics/providers.py
Original file line number Diff line number Diff line change
Expand Up @@ -375,11 +375,10 @@ class SmEndpointProvider(BaseProvider, SagemakerEndpoint):
model_id_key = "endpoint_name"
# This all needs to be on one line of markdown, for use in a table
help = (
"SageMaker endpoint names are created when you deploy a model. "
"For more information, see "
'["Create your endpoint and deploy your model"]'
"(https://docs.aws.amazon.com/sagemaker/latest/dg/realtime-endpoints-deployment.html) "
"in the SageMaker documentation."
"Specify a model's name as the model ID. "
JasonWeill marked this conversation as resolved.
Show resolved Hide resolved
"In addition, you must include the `--region_name`, `--response_schema`, and the `--response_path` arguments. "
JasonWeill marked this conversation as resolved.
Show resolved Hide resolved
"For more information, see the documentation about [SageMaker endpoints deployment](https://docs.aws.amazon.com/sagemaker/latest/dg/realtime-endpoints-deployment.html) "
"and about [using magic commands with SageMaker endpoints](https://jupyter-ai.readthedocs.io/en/latest/users/index.html#using-magic-commands-with-sagemaker-endpoints)."
)

pypi_package_deps = ["boto3"]
Expand Down