mirror of
https://github.com/BerriAI/litellm.git
synced 2025-04-25 10:44:24 +00:00
6 lines
160 B
Python
6 lines
160 B
Python
import sys
|
|
|
|
class TraceloopLogger:
|
|
def __init__(self):
|
|
from traceloop.tracing import Tracer
|
|
self.tracer = Tracer.init(app_name=sys.argv[0])
|