| 121 | to the graph's execute method and returns the expected answer.""" |
| 122 | |
| 123 | class DummyGraphCapture: |
| 124 | def __init__(self): |
| 125 | self.captured_inputs = None |
| 126 | |
| 127 | def execute(self, inputs): |
| 128 | self.captured_inputs = inputs |
| 129 | return ({"answer": "captured answer"}, {}) |
| 130 | |
| 131 | prompt = "Argument test prompt" |
| 132 | source = ["url_arg1", "url_arg2"] |
no outgoing calls