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 #28
  • Loading branch information
kikuomax committed Oct 17, 2023
1 parent fd2b300 commit 6ef9543
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 6ef9543

Please sign in to comment.