Skip to content
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

feat: llama index data loader construct #714

Merged
merged 42 commits into from
Oct 15, 2024
Merged
Show file tree
Hide file tree
Changes from 5 commits
Commits
Show all changes
42 commits
Select commit Hold shift + click to select a range
e0a50e9
feat: llama index data loader construct
scottschreckengaust Sep 26, 2024
a5aed4e
chore: self mutation
invalid-email-address Sep 26, 2024
5e26a37
Merge branch 'main' into feature/llama-index-data-loader
krokoko Sep 26, 2024
986a61b
Merge branch 'main' into feature/llama-index-data-loader
krokoko Oct 1, 2024
a516e64
Merge branch 'main' into feature/llama-index-data-loader
krokoko Oct 2, 2024
089f224
chore: merge branch 'main' into feature/llama-index-data-loader
krokoko Oct 7, 2024
2ddb2d9
fix: defaults for props
scottschreckengaust Oct 8, 2024
f42f3f1
chore: self mutation
invalid-email-address Oct 8, 2024
d05f54c
feat: add docker for llamaindex data loader
scottschreckengaust Oct 8, 2024
817362f
feat: print to logger statements
scottschreckengaust Oct 8, 2024
13c145d
fix: set the platform to amd64
scottschreckengaust Oct 8, 2024
01ae910
fix: update and minimize requirements
scottschreckengaust Oct 8, 2024
d777153
fix: collapse multi-line
scottschreckengaust Oct 8, 2024
f56e525
fix: add llamaindex architecture
scottschreckengaust Oct 8, 2024
cd83e66
feat: add architecture diagram for llamaindex data loader
scottschreckengaust Oct 8, 2024
92718bb
feat: add tests and update README
scottschreckengaust Oct 9, 2024
5051034
fix: move output bucket up
scottschreckengaust Oct 11, 2024
623921e
feat(doc): add the construct to the main README
scottschreckengaust Oct 11, 2024
ea836ff
fix: add join for running tests single
scottschreckengaust Oct 11, 2024
7639ba7
feat: document
scottschreckengaust Oct 11, 2024
1efa45e
fix: remove defaults
scottschreckengaust Oct 11, 2024
8d6a800
fix: only deploy resources if no docker path
scottschreckengaust Oct 11, 2024
3aa97a7
feat: allow passing in a VPC
scottschreckengaust Oct 11, 2024
480aadc
Merge branch 'main' into feature/llama-index-data-loader
scottschreckengaust Oct 11, 2024
7646676
feat: add aws-llama-index-data-loader architecture update
scottschreckengaust Oct 11, 2024
0448378
feat: add ability to pass in output bucket
scottschreckengaust Oct 11, 2024
939f10c
feat(test): add snapshot tests
scottschreckengaust Oct 11, 2024
1303a71
Merge branch 'main' into feature/llama-index-data-loader
krokoko Oct 11, 2024
270965b
fix: add copyright header
scottschreckengaust Oct 11, 2024
97a9435
chore: update README
scottschreckengaust Oct 11, 2024
fa69de0
fix: markdown missing pipe
scottschreckengaust Oct 11, 2024
ecea37d
fix: add description and services used
scottschreckengaust Oct 11, 2024
7f5c093
fix(test): update snapshot files
scottschreckengaust Oct 11, 2024
b192215
Merge branch 'main' into feature/llama-index-data-loader
krokoko Oct 14, 2024
618ca2e
fix: document cluster and vpc plus test snapshots
scottschreckengaust Oct 14, 2024
a3f0e9c
fix: add enumeration to base class
scottschreckengaust Oct 15, 2024
228a950
fix: remove comments
scottschreckengaust Oct 15, 2024
34d281e
fix: add headers
scottschreckengaust Oct 15, 2024
f4970e0
fix: update snapshot
scottschreckengaust Oct 15, 2024
9d1c847
Merge branch 'main' into feature/llama-index-data-loader
scottschreckengaust Oct 15, 2024
c03ebf1
Merge branch 'main' into feature/llama-index-data-loader
krokoko Oct 15, 2024
79071aa
chore(build): fix update from main
krokoko Oct 15, 2024
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
6 changes: 6 additions & 0 deletions apidocs/enumerations/ConstructName.md
Original file line number Diff line number Diff line change
Expand Up @@ -25,6 +25,12 @@ Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved.

***

### AWSLLAMAINDEXDATALOADER

> **AWSLLAMAINDEXDATALOADER**: `"C12"`

***

### AWSMODELDEPLOYMENTSAGEMAKER

> **AWSMODELDEPLOYMENTSAGEMAKER**: `"C4"`
Expand Down
3 changes: 2 additions & 1 deletion src/common/base-class/construct-name-enum.ts
Original file line number Diff line number Diff line change
Expand Up @@ -21,5 +21,6 @@ export enum ConstructName {
AWSCONTENTGENAPPSYNCLAMBDA = 'C8',
AWSRAGAPPSYNCSTEPFNKENDRA = 'C9',
AWSWEBCRAWLER = 'C10',
AWSTEXTTOSQL= 'C11'
AWSTEXTTOSQL= 'C11',
AWSLLAMAINDEXDATALOADER = 'C12',
scottschreckengaust marked this conversation as resolved.
Show resolved Hide resolved
}
Loading
Loading