From e2397c3b83b9f4324c4e21edda828e35105a2630 Mon Sep 17 00:00:00 2001 From: Ishaan Jaff Date: Wed, 19 Jun 2024 21:14:18 -0700 Subject: [PATCH] fix test_team_2logging langfuse --- proxy_server_config.yaml | 1 + tests/test_team_logging.py | 1 + 2 files changed, 2 insertions(+) diff --git a/proxy_server_config.yaml b/proxy_server_config.yaml index e87452869..5ee7192c8 100644 --- a/proxy_server_config.yaml +++ b/proxy_server_config.yaml @@ -111,6 +111,7 @@ litellm_settings: failure_callback: ["langfuse"] langfuse_public_key: os.environ/LANGFUSE_PROJECT2_PUBLIC # Project 2 langfuse_secret: os.environ/LANGFUSE_PROJECT2_SECRET # Project 2 + langfuse_host: https://us.cloud.langfuse.com router_settings: routing_strategy: usage-based-routing-v2 diff --git a/tests/test_team_logging.py b/tests/test_team_logging.py index d745a8d77..4d12d6bce 100644 --- a/tests/test_team_logging.py +++ b/tests/test_team_logging.py @@ -144,6 +144,7 @@ async def test_team_2logging(): langfuse_client = langfuse.Langfuse( public_key=os.getenv("LANGFUSE_PROJECT2_PUBLIC"), secret_key=os.getenv("LANGFUSE_PROJECT2_SECRET"), + host="https://us.cloud.langfuse.com", ) await asyncio.sleep(10)