(self, prompt: str, config: dict)
| 77 | |
| 78 | class TestGraph(AbstractGraph): |
| 79 | def __init__(self, prompt: str, config: dict): |
| 80 | super().__init__(prompt, config) |
| 81 | |
| 82 | def _create_graph(self) -> BaseGraph: |
| 83 | fetch_node = FetchNode( |
nothing calls this directly
no outgoing calls
no test coverage detected