We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 0c69285 commit 170ecaeCopy full SHA for 170ecae
src/neo4j_graphrag/experimental/pipeline/component.py
@@ -40,7 +40,7 @@ def __new__(
40
run = run_context_method if run_context_method is not None else run_method
41
if run is None:
42
raise RuntimeError(
43
- f"Either 'run' or 'run_with_context' must be implemented in component: '{name}'"
+ f"You must implement either `run` or `run_with_context` in Component '{name}'"
44
)
45
sig = inspect.signature(run)
46
attrs["component_inputs"] = {
0 commit comments