Skip to content

Commit

Permalink
feat(cdk): add Lambda function for similarity search
Browse files Browse the repository at this point in the history
- Introduces a new CDK construct `Indexer` that will provision resources
  necessary for indexing and search of data. So far, it provides a
  Lambda function `SearchSimilarLambda` that performs similarity search
  over mumblings. The function is implemented in Rust and located in
  `lambda/indexer` as `search-similar` binary.
  `Indexer` also provisions an S3 bucket to store database files.

issue codemonger-io#28
  • Loading branch information
kikuomax committed Oct 12, 2023
1 parent 6fc2922 commit d693605
Show file tree
Hide file tree
Showing 7 changed files with 2,384 additions and 0 deletions.
1 change: 1 addition & 0 deletions cdk/lambda/indexer/.gitignore
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
/target
Loading

0 comments on commit d693605

Please sign in to comment.