-
Notifications
You must be signed in to change notification settings - Fork 1.2k
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
[ERROR] NameError: Field name "json" shadows a BaseModel attribute; use a different field name with "alias='json'" #4944
Labels
Comments
we were able to execute above code with sagemaker 2.227.0 version but not with latest version 2.235.2 |
Team , any udate on this bug? |
Hey, team friendly bump on this issue. |
Bump, we see this simply doing an import of Predictor, it it does appear that it is due to a dependency of this import on jumpstart
|
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Describe the bug
A clear and concise description of what the bug is.
[ERROR] NameError: Field name "json" shadows a BaseModel attribute; use a different field name with "alias='json'".
Traceback (most recent call last):
File "/var/lang/lib/python3.9/importlib/init.py", line 127, in import_module
return _bootstrap._gcd_import(name[level:], package, level)
File "", line 1030, in _gcd_import
File "", line 1007, in _find_and_load
File "", line 986, in _find_and_load_unlocked
File "", line 680, in _load_unlocked
File "", line 850, in exec_module
File "", line 228, in _call_with_frames_removed
File "/var/task/test_lambda_docker_container_image/hrfin_mec_provision_llm.py", line 5, in
from sagemaker.jumpstart.model import JumpStartModel
To reproduce
A clear, step-by-step set of instructions to reproduce the bug.
The provided code need to be complete and runnable, if additional data is needed, please include them in the issue.
We are trying to create a sagemaker jumpstart llm model endpoint from the AWS lambda using docker
This code was running very well for last one year , but it is failing from 12/01 with below error . I have tried to pip install --upgrade sagemaker as well to upgrade the sagemaker packages in docker container.
Code :
import json
import time
from boto3 import client as boto3_client
from aws_lambda_powertools import Logger
from sagemaker.jumpstart.model import JumpStartModel
logger = Logger(service="test_lambda_docker_container_image")
def lambda_handler(event, context):
Expected behavior
A clear and concise description of what you expected to happen.
above code should execute well and create a meta llm model
Screenshots or logs
If applicable, add screenshots or logs to help explain your problem.
System information
A description of your system. Please provide:
Additional context
Add any other context about the problem here.
The text was updated successfully, but these errors were encountered: