Commit Β·
fdeefb3
0
Parent(s):
fix: DATABASE_URL eu-west-1 (was us-east-1 wrong region)
Browse files- Dockerfile +9 -0
- README.md +26 -0
Dockerfile
ADDED
|
@@ -0,0 +1,9 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
FROM langfuse/langfuse:2
|
| 2 |
+
|
| 3 |
+
ENV PORT=7860
|
| 4 |
+
ENV HOSTNAME=0.0.0.0
|
| 5 |
+
ENV NEXTAUTH_URL=https://nomos42-langfuse.hf.space
|
| 6 |
+
ENV TELEMETRY_ENABLED=false
|
| 7 |
+
ENV LANGFUSE_ENABLE_EXPERIMENTAL_FEATURES=true
|
| 8 |
+
|
| 9 |
+
EXPOSE 7860
|
README.md
ADDED
|
@@ -0,0 +1,26 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
---
|
| 2 |
+
title: Nomos42 Langfuse
|
| 3 |
+
emoji: π
|
| 4 |
+
colorFrom: indigo
|
| 5 |
+
colorTo: purple
|
| 6 |
+
sdk: docker
|
| 7 |
+
app_port: 7860
|
| 8 |
+
pinned: false
|
| 9 |
+
---
|
| 10 |
+
|
| 11 |
+
# Nomos42 Langfuse β LLM Observability
|
| 12 |
+
|
| 13 |
+
Self-hosted [Langfuse](https://langfuse.com) for Nomos42 Trading Floor observability.
|
| 14 |
+
|
| 15 |
+
Traces every LLM call across:
|
| 16 |
+
- 12 NBA Trading Floor agents
|
| 17 |
+
- 10 Political Trading Floor agents
|
| 18 |
+
- 9 Department Council loops
|
| 19 |
+
- LLM Gateway proxy calls
|
| 20 |
+
|
| 21 |
+
## Setup
|
| 22 |
+
|
| 23 |
+
Requires these Space secrets:
|
| 24 |
+
- `DATABASE_URL` β Postgres connection string (Supabase pooler)
|
| 25 |
+
- `NEXTAUTH_SECRET` β random 32-char string
|
| 26 |
+
- `SALT` β random 32-char string
|