danswer/backend/onyx/utils/callbacks.py
2024-12-13 09:56:10 -08:00

13 lines
258 B
Python

from typing import Generic
from typing import TypeVar
T = TypeVar("T")
class MetricsHander(Generic[T]):
def __init__(self) -> None:
self.metrics: T | None = None
def record_metric(self, metrics: T) -> None:
self.metrics = metrics