Apply patch [skip ci]

This commit is contained in:
open-swe[bot]
2025-09-09 23:47:21 +00:00
parent 3fa8180722
commit ddd1809a9d

View File

@@ -62,8 +62,7 @@ class ContextCapturingRunnable(Runnable[str, str]):
self, input: str, config: Optional[RunnableConfig] = None, **kwargs: Any
) -> str:
"""Process input and capture context."""
import threading
from contextvars import copy_context
del config, kwargs # Unused but required by interface
# Capture current context and thread info
context_id = id(copy_context())
@@ -310,3 +309,4 @@ if __name__ == "__main__":
test_batch_single_input()