| 6 | |
| 7 | # Create a dummy graph class to simulate graph execution |
| 8 | class DummyGraph: |
| 9 | def __init__(self, final_state): |
| 10 | self.final_state = final_state |
| 11 | |
| 12 | def execute(self, inputs): |
| 13 | # Return final_state and dummy execution info |
| 14 | return self.final_state, {"debug": True} |
| 15 | |
| 16 | |
| 17 | # Dummy schema for testing purposes |
no outgoing calls