Skip to content

Commit a8cf505

Browse files
authored
Bedrock batch v2 (#11)
* Adding bedrock batch inference module * added aws batch inference bedrock
1 parent df2fe30 commit a8cf505

66 files changed

Lines changed: 20583 additions & 1 deletion

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

.gitignore

Lines changed: 110 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -15,4 +15,113 @@ cdk.out
1515
cdk.context.json
1616

1717
# IDEs
18-
.idea/
18+
.idea/
19+
20+
# ============================================
21+
# Python
22+
# ============================================
23+
__pycache__/
24+
*.py[cod]
25+
*$py.class
26+
*.so
27+
.Python
28+
build/
29+
dist/
30+
eggs/
31+
.eggs/
32+
*.egg-info/
33+
*.egg
34+
MANIFEST
35+
36+
# Virtual environment
37+
venv/
38+
env/
39+
.venv/
40+
41+
# Testing
42+
.pytest_cache/
43+
.hypothesis/
44+
.coverage
45+
htmlcov/
46+
.tox/
47+
48+
# Type checking
49+
.mypy_cache/
50+
.dmypy.json
51+
52+
# ============================================
53+
# AWS / Infrastructure
54+
# ============================================
55+
.aws/
56+
*.pem
57+
*.key
58+
59+
# CDK (compiled output, synth artifacts, node deps)
60+
.cdk.staging
61+
cdk.out
62+
cdk.context.json
63+
node_modules/
64+
outputs.json
65+
**/cdk/**/*.js
66+
**/cdk/**/*.d.ts
67+
!**/cdk/jest.config.js
68+
69+
# CDK generated files
70+
deploy.log
71+
infrastructure-summary.json
72+
package-lock.json
73+
74+
# ============================================
75+
# Configuration
76+
# ============================================
77+
config.json
78+
config-custom-*.json
79+
config-with-arn-example.json
80+
config-test-small.json
81+
config-realistic.json
82+
config-local.json
83+
84+
# Environment files
85+
.env
86+
.env.local
87+
.env.*
88+
89+
# Secrets
90+
secrets.json
91+
credentials.json
92+
*.secret
93+
94+
# ============================================
95+
# Project artifacts
96+
# ============================================
97+
*.parquet
98+
output/
99+
results/
100+
*.log
101+
logs/
102+
candidates_delete.txt
103+
104+
# ============================================
105+
# IDE / OS
106+
# ============================================
107+
.vscode/
108+
.idea/
109+
*.swp
110+
*.swo
111+
*~
112+
.DS_Store
113+
Thumbs.db
114+
115+
# Kiro
116+
.kiro/cache/
117+
.kiro/logs/
118+
.kiro/.session_*
119+
120+
# ============================================
121+
# Misc
122+
# ============================================
123+
*.tmp
124+
*.bak
125+
*.bat
126+
.ipynb_checkpoints/
127+
*.ipynb
Lines changed: 35 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,35 @@
1+
# Python
2+
__pycache__/
3+
*.py[cod]
4+
venv/
5+
.venv/
6+
7+
# IDE
8+
.vscode/
9+
.idea/
10+
.kiro/
11+
12+
# Testing
13+
tests/
14+
benchmarks/
15+
.pytest_cache/
16+
.hypothesis/
17+
18+
# Documentation
19+
*.md
20+
docs/
21+
22+
# Git
23+
.git/
24+
.gitignore
25+
26+
# Infrastructure
27+
cdk/
28+
29+
# Misc
30+
*.zip
31+
*.log
32+
*.parquet
33+
examples/
34+
scripts/
35+
candidates_delete.txt
Lines changed: 113 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,113 @@
1+
# ============================================
2+
# Python
3+
# ============================================
4+
__pycache__/
5+
*.py[cod]
6+
*$py.class
7+
*.so
8+
.Python
9+
build/
10+
dist/
11+
eggs/
12+
.eggs/
13+
*.egg-info/
14+
*.egg
15+
MANIFEST
16+
17+
# Virtual environment
18+
venv/
19+
env/
20+
.venv/
21+
22+
# Testing
23+
.pytest_cache/
24+
.hypothesis/
25+
.coverage
26+
htmlcov/
27+
.tox/
28+
29+
# Type checking
30+
.mypy_cache/
31+
.dmypy.json
32+
33+
# ============================================
34+
# AWS / Infrastructure
35+
# ============================================
36+
.aws/
37+
*.pem
38+
*.key
39+
40+
# CDK (compiled output, synth artifacts, node deps)
41+
cdk/node_modules/
42+
cdk/cdk.out/
43+
cdk/outputs.json
44+
cdk/**/*.js
45+
cdk/**/*.d.ts
46+
!cdk/jest.config.js
47+
48+
# CDK generated files that shouldn't be committed
49+
cdk/deploy.log
50+
cdk/infrastructure-summary.json
51+
52+
# ============================================
53+
# Configuration
54+
# ============================================
55+
56+
# Working configs — contain account-specific values
57+
# Use generate-config.sh to create from stack outputs
58+
config.json
59+
config-custom-*.json
60+
config-with-arn-example.json
61+
config-test-small.json
62+
config-realistic.json
63+
config-local.json
64+
65+
# Environment files
66+
.env
67+
.env.local
68+
.env.*
69+
70+
# Secrets
71+
secrets.json
72+
credentials.json
73+
*.secret
74+
75+
# ============================================
76+
# Project artifacts
77+
# ============================================
78+
79+
# Output data
80+
*.parquet
81+
output/
82+
results/
83+
84+
# Logs
85+
*.log
86+
logs/
87+
88+
# Cleanup/review lists
89+
candidates_delete.txt
90+
91+
# ============================================
92+
# IDE / OS
93+
# ============================================
94+
.vscode/
95+
.idea/
96+
*.swp
97+
*.swo
98+
*~
99+
.DS_Store
100+
Thumbs.db
101+
102+
# Kiro (keep specs and steering, ignore cache)
103+
.kiro/cache/
104+
.kiro/logs/
105+
.kiro/.session_*
106+
107+
# ============================================
108+
# Misc
109+
# ============================================
110+
*.tmp
111+
*.bak
112+
.ipynb_checkpoints/
113+
*.ipynb

0 commit comments

Comments
 (0)