(chain, inputs, timeout)
| 194 | state = {"dummy_input": "What is the answer?", "doc": ["Only one chunk text"]} |
| 195 | |
| 196 | def fake_invoke_timeout(chain, inputs, timeout): |
| 197 | raise Timeout("Simulated timeout error") |
| 198 | |
| 199 | dummy_node_with_pipe.invoke_with_timeout = fake_invoke_timeout |
| 200 | output_state = dummy_node_with_pipe.execute(state) |
nothing calls this directly
no outgoing calls
no test coverage detected