Skip to content

Commit 008d084

Browse files
committed
fix: read env variables
1 parent 2afb11f commit 008d084

File tree

1 file changed

+3
-0
lines changed

1 file changed

+3
-0
lines changed

src/api/models/bedrock.py

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -59,6 +59,9 @@
5959
# This ensures the consumer and auth check happen at module load time
6060
try:
6161
_langfuse = Langfuse(
62+
public_key=os.environ.get("LANGFUSE_PUBLIC_KEY"),
63+
secret_key=os.environ.get("LANGFUSE_SECRET_KEY"),
64+
host=os.environ.get("LANGFUSE_HOST"),
6265
debug=DEBUG
6366
)
6467
if DEBUG:

0 commit comments

Comments
 (0)