10 lines
175 B
Python
10 lines
175 B
Python
from enum import Enum
|
|
|
|
|
|
class Observer(str, Enum):
|
|
"""Monitoring tools"""
|
|
|
|
NONE = "none"
|
|
LANGFUSE = "langfuse"
|
|
LLMLITE = "llmlite"
|
|
LANGSMITH = "langsmith"
|