Files
Mayacontigo/apps/normativa/api/context.py
Rogelio 325f1ef439 ic
2025-10-13 18:16:25 +00:00

7 lines
308 B
Python

from contextvars import ContextVar
buffer: ContextVar[str] = ContextVar("buffer", default="")
tool_buffer: ContextVar[str] = ContextVar("tool_buffer", default="")
tool_id: ContextVar[str | None] = ContextVar("tool_id", default=None)
tool_name: ContextVar[str | None] = ContextVar("tool_name", default=None)