feat: add inference for elo on new listings

This commit is contained in:
Stijnvandenbroek
2026-03-08 14:09:05 +00:00
parent fea062fbaa
commit 16a7a470ea
15 changed files with 360 additions and 6 deletions

View File

@@ -46,3 +46,12 @@ class MLflowResource(ConfigurableResource):
def get_tracking_uri(self) -> str:
return self.tracking_uri
class DiscordResource(ConfigurableResource):
"""Discord webhook resource for sending notifications."""
webhook_url: str = EnvVar("DISCORD_WEBHOOK_URL")
def get_webhook_url(self) -> str:
return self.webhook_url