()
| 803 | error: Dict[str, Any] = {} |
| 804 | |
| 805 | def target(): |
| 806 | try: |
| 807 | result["value"] = self.llm_fn(prompt) |
| 808 | except Exception as exc: |
| 809 | error["value"] = exc |
| 810 | |
| 811 | thread = threading.Thread(target=target, daemon=True) |
| 812 | thread.start() |
nothing calls this directly
no outgoing calls
no test coverage detected