File tree Expand file tree Collapse file tree 3 files changed +19
-0
lines changed
Expand file tree Collapse file tree 3 files changed +19
-0
lines changed Original file line number Diff line number Diff line change @@ -199,6 +199,13 @@ Add your following API keys and value to the respective file: `./envs/backend.en
199199``` bash
200200OPENAI_API_KEY=sk-proj-...
201201POSTGRES_DSN=postgresql://postgres...
202+
203+ LANGFUSE_PUBLIC_KEY=pk-lf-...
204+ LANGFUSE_SECRET_KEY=sk-lf-...
205+ LANGFUSE_HOST=https://cloud.langfuse.com
206+
207+ ENVIRONMENT=production
208+
202209YOUTUBE_API_KEY=...
203210```
204211
Original file line number Diff line number Diff line change @@ -33,5 +33,11 @@ def checkpoint_conn_str(self) -> str:
3333 # with specifying psycopg driver explicitly
3434 return self .postgres_dsn .encoded_string ()
3535
36+ langfuse_public_key : str = ""
37+ langfuse_secret_key : str = ""
38+ langfuse_host : str = "https://cloud.langfuse.com"
39+
40+ environment : str = "development"
41+
3642
3743settings = Settings ()
Original file line number Diff line number Diff line change 11OPENAI_API_KEY =
22# do not specify driver (do not specify `+psycopg`)
33POSTGRES_DSN =
4+
5+ LANGFUSE_PUBLIC_KEY = pk-lf-
6+ LANGFUSE_SECRET_KEY = sk-lf-
7+ LANGFUSE_HOST = https://cloud.langfuse.com
8+
9+ ENVIRONMENT = production
You can’t perform that action at this time.
0 commit comments