remove defaulting none if not langfuse

This commit is contained in:
Hande 2025-09-18 14:17:53 +02:00
parent 3426f23452
commit 04ac0d52d2

View file

@ -21,8 +21,6 @@ class BaseConfig(BaseSettings):
# Set monitoring tool based on available keys
if self.langfuse_public_key and self.langfuse_secret_key:
self.monitoring_tool = Observer.LANGFUSE
else:
self.monitoring_tool = Observer.NONE
return self