We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 12f3c3d commit 647f0a2Copy full SHA for 647f0a2
test_model/test_endpoint.py
@@ -5,8 +5,8 @@
5
import boto3
6
7
AWS_REGION = "us-east-1"
8
-ENVIRONMENT = os.environ.get("ENV", "dev")
9
-ENDPOINT_NAME = f"{ENVIRONMENT}-multilingual-sentiment-analysis-endpoint"
+ENV = os.environ.get("ENVIRONMENT", "dev")
+ENDPOINT_NAME = f"{ENV}-multilingual-sentiment-analysis-endpoint"
10
11
sagemaker_runtime = boto3.client("sagemaker-runtime", region_name=AWS_REGION)
12
0 commit comments