(self)
| 106 | ) |
| 107 | |
| 108 | def run(self) -> str: |
| 109 | inputs = {"user_prompt": self.prompt, self.input_key: self.source} |
| 110 | self.final_state, self.execution_info = self.graph.execute(inputs) |
| 111 | |
| 112 | return self.final_state.get("answer", "No answer found.") |
| 113 | |
| 114 | |
| 115 | class TestAbstractGraph: |
no test coverage detected