frimeet-api-nlp / app /shared /tracing.py
AlleksDev's picture
Deploy Frimeet API NLP
45b1179
Raw
History Blame Contribute Delete
151 Bytes
from uuid import uuid4
def new_response_id() -> str:
return f"resp_{uuid4().hex}"
def new_trace_id() -> str:
return f"trace_{uuid4().hex}"