(self, nodes, edges, entry_point, graph_name)
| 32 | """Dummy BaseGraph to test _create_graph method without side effects.""" |
| 33 | |
| 34 | def __init__(self, nodes, edges, entry_point, graph_name): |
| 35 | self.nodes = nodes |
| 36 | self.edges = edges |
| 37 | self.entry_point = entry_point |
| 38 | self.graph_name = graph_name |
| 39 | |
| 40 | config = { |
| 41 | "llm": {"model": "dummy_model", "model_provider": "dummy_provider"}, |
nothing calls this directly
no outgoing calls
no test coverage detected