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
[pre-commit.ci] auto fixes from pre-commit.com hooks
for more information, see https://pre-commit.ci
  • Loading branch information
pre-commit-ci[bot] authored and dlqqq committed Jul 10, 2023
commit e99589b0ea516d3565f15787947dfdf532df2a2a
6 changes: 4 additions & 2 deletions packages/jupyter-ai-magics/jupyter_ai_magics/providers.py
Original file line number Diff line number Diff line change
Expand Up @@ -371,11 +371,13 @@ class SmEndpointProvider(BaseProvider, SagemakerEndpoint):
models = ["*"]
model_id_key = "endpoint_name"
# This all needs to be on one line of markdown, for use in a table
model_help = ("SageMaker endpoint names are created when you deploy a model. "
model_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.")
"in the SageMaker documentation."
)

pypi_package_deps = ["boto3"]
auth_strategy = AwsAuthStrategy()
Expand Down