Skip to content

Commit

Permalink
feat: add Amazon Bedrock Document Translation POC with dependencies a…
Browse files Browse the repository at this point in the history
…nd usage guide
  • Loading branch information
flamingquaks committed Dec 17, 2024
1 parent 1d37066 commit 55ad922
Show file tree
Hide file tree
Showing 19 changed files with 1,105 additions and 363 deletions.
7 changes: 3 additions & 4 deletions .eslintrc.json

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

11 changes: 3 additions & 8 deletions .projen/deps.json

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

7 changes: 2 additions & 5 deletions .projen/tasks.json

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

11 changes: 11 additions & 0 deletions .projenrc.ts
Original file line number Diff line number Diff line change
Expand Up @@ -1846,6 +1846,17 @@ guardrail_version=<Guardrail_Version> (this is just a number i.e. 1,2,3 etc...)`
},
}));

pythonPocs.push(new StreamlitQuickStartPOC({
parentProject: project,
pocName: 'Amazon Bedrock Document Translation POC',
pocPackageName: 'amazon-bedrock-document-translation-poc',
pocDescription:
'This is sample code demonstrating the use of Amazon Bedrock and Generative AI to translate a document from source language to target language, outputting the translated document to match the input document, just in a the target language.',
additionalDeps: [
'pypdf', 'PyMuPDF',
],
}));

const pythonPocReadmeDetails: Array<POCReadmeDetails> = [];
pythonPocs.sort((a, b) => a.pocProps.pocPackageName.localeCompare(b.pocProps.pocPackageName));
for (const poc of pythonPocs) {
Expand Down
4 changes: 4 additions & 0 deletions README.md

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

Original file line number Diff line number Diff line change
@@ -0,0 +1,7 @@
# POC Usage Guide

This guide covers how to use the Streamlit POC in the browser.
For information guidance on downloading and running the POC, please visit the [README](README.md)
---

** Replace this section with a walk through **
Loading

0 comments on commit 55ad922

Please sign in to comment.