| 15 | |
| 16 | # Dummy classes to simulate behavior for testing |
| 17 | class DummyGraph: |
| 18 | def __init__(self, final_state, execution_info): |
| 19 | self.final_state = final_state |
| 20 | self.execution_info = execution_info |
| 21 | |
| 22 | def execute(self, inputs): |
| 23 | return self.final_state, self.execution_info |
| 24 | |
| 25 | |
| 26 | class DummySchema(BaseModel): |
no outgoing calls