Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion local-ai-sandbox/.env
Original file line number Diff line number Diff line change
@@ -1,3 +1,3 @@
PORT=9001
REGION=NA
SP_API_SANDBOX_TELEMETRY_ENABLED=true
MODE=Seller
1 change: 1 addition & 0 deletions local-ai-sandbox/.gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -6,6 +6,7 @@
# Temporary files
*.tmp
*~
build

#Mac
.DS_Store
Expand Down
166 changes: 107 additions & 59 deletions local-ai-sandbox/README.md

Large diffs are not rendered by default.

15 changes: 15 additions & 0 deletions local-ai-sandbox/deployment/cloudformation-template.yml
Original file line number Diff line number Diff line change
Expand Up @@ -19,6 +19,12 @@ Parameters:
Type: String

Resources:
AiSandboxQueue:
Type: AWS::SQS::Queue
DeletionPolicy: Delete
Properties:
QueueName: AiSandbox

ElasticBeanstalkApplication:
Type: AWS::ElasticBeanstalk::Application
DeletionPolicy: Delete
Expand Down Expand Up @@ -75,6 +81,15 @@ Resources:
Resource:
- !Sub arn:aws:bedrock:*:${AWS::AccountId}:inference-profile/global.anthropic.claude-haiku-4-5-20251001-v1:0
- 'arn:aws:bedrock:*::foundation-model/anthropic.claude-haiku-4-5-*'
- PolicyName: SqsSendMessagePolicy
PolicyDocument:
Version: '2012-10-17'
Statement:
- Effect: Allow
Action:
- sqs:SendMessage
Resource:
- !GetAtt AiSandboxQueue.Arn

InstanceProfile:
Type: AWS::IAM::InstanceProfile
Expand Down
Loading
Loading