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

20
infra/langfuse/conf.py Normal file
View File

@@ -0,0 +1,20 @@
import pulumi
import pulumi_aws as aws
from autotag.autotag import register_auto_tags
config = pulumi.Config("langfuse")
project_name = config.require("project_name")
stack_name = pulumi.get_stack()
environment = config.require("environment")
account_id = config.require("account_id")
tags = config.require_object("tags")
network = config.require_object("network")
ec2_config = config.require_object("ec2")
langfuse_config = config.require_object("langfuse_config")
aws_region = aws.get_region().id
current = aws.get_caller_identity()
register_auto_tags(tags)