Skip to content

Commit 23d5f38

Browse files
committed
"extras" must be resolved
1 parent 68cba61 commit 23d5f38

File tree

1 file changed

+4
-1
lines changed

1 file changed

+4
-1
lines changed

src/neo4j_graphrag/experimental/pipeline/config/pipeline_config.py

Lines changed: 4 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -27,6 +27,9 @@
2727
LLMType,
2828
Neo4jDriverType,
2929
)
30+
from neo4j_graphrag.experimental.pipeline.config.param_resolver import (
31+
ParamConfig,
32+
)
3033
from neo4j_graphrag.experimental.pipeline.config.types import PipelineType
3134
from neo4j_graphrag.experimental.pipeline.types import (
3235
ComponentDefinition,
@@ -48,7 +51,7 @@ class AbstractPipelineConfig(AbstractConfig):
4851
llm_config: dict[str, LLMType] = {}
4952
embedder_config: dict[str, EmbedderType] = {}
5053
# extra parameters values that can be used in different places of the config file
51-
extras: dict[str, Any] = {}
54+
extras: dict[str, ParamConfig] = {}
5255

5356
DEFAULT_NAME: ClassVar[str] = "default"
5457
"""Name of the default item in dict

0 commit comments

Comments
 (0)