We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent a24f674 commit 7e235b7Copy full SHA for 7e235b7
samples/content-generation/.gitignore
samples/document_explorer/.gitignore
samples/image-description/.gitignore
samples/rfp-answer-generation/backend/app.py
@@ -18,10 +18,16 @@
18
19
from stack import IngestionStack, InferenceStack
20
21
+USAGE_METRIC = 'uksb-1tupboc45'
22
+VERSION = '0.0.1'
23
+SOLUTION_NAME = "GenAI RFP Answers"
24
25
app = cdk.App()
26
-ingestion_stack = IngestionStack(app, "RFPAnswers-IngestionStack")
27
+ingestion_stack = IngestionStack(
28
+ app,
29
+ "RFPAnswers-IngestionStack",
30
+ description=f'({USAGE_METRIC})(tag: {SOLUTION_NAME})')
31
32
inference_stack = InferenceStack(
33
app,
0 commit comments