Feat: Final changes to prompt

This commit is contained in:
2025-10-22 16:44:01 -03:00
parent f2df55f0f9
commit 42f9d22c77
32 changed files with 1122 additions and 1607 deletions

View File

@@ -0,0 +1,18 @@
import pulumi
import pulumi_aws as aws
import conf as config
basic_dynamodb_table = aws.dynamodb.Table(config.project_name,
name="br-edu-ifsp-ifsp-ret-memoria-tabela-chatbot-editais-dev",
billing_mode="PAY_PER_REQUEST",
hash_key="UserId",
range_key="Timestamp",
attributes=[
{
"name": "UserId",
"type": "S",
},
{
"name": "Timestamp",
"type": "N",
}
])