Skip to content

Commit

Permalink
Merge pull request #464 from arc53/bug/fix-tests
Browse files Browse the repository at this point in the history
Fix tests on sagemaker.py
  • Loading branch information
pabik authored Oct 6, 2023
2 parents b3a0368 + 43a22f8 commit 68b8d7d
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions application/llm/sagemaker.py
Original file line number Diff line number Diff line change
Expand Up @@ -64,9 +64,9 @@ def __init__(self, *args, **kwargs):
import boto3
runtime = boto3.client(
'runtime.sagemaker',
aws_access_key_id=settings.SAGEMAKER_ACCESS_KEY,
aws_secret_access_key=settings.SAGEMAKER_SECRET_KEY,
region_name=settings.SAGEMAKER_REGION
aws_access_key_id='xxx',
aws_secret_access_key='xxx',
region_name='us-west-2'
)


Expand Down

2 comments on commit 68b8d7d

@vercel
Copy link

@vercel vercel bot commented on 68b8d7d Oct 6, 2023

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Successfully deployed to the following URLs:

nextra-docsgpt – ./docs

nextra-docsgpt-git-main-arc53.vercel.app
nextra-docsgpt.vercel.app
nextra-docsgpt-arc53.vercel.app
docs.docsgpt.co.uk

@vercel
Copy link

@vercel vercel bot commented on 68b8d7d Oct 6, 2023

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Successfully deployed to the following URLs:

docs-gpt – ./frontend

docs-gpt-brown.vercel.app
docs-gpt-arc53.vercel.app
docs-gpt-git-main-arc53.vercel.app

Please sign in to comment.