File tree Expand file tree Collapse file tree 1 file changed +4
-1
lines changed
src/neo4j_graphrag/experimental/pipeline/config Expand file tree Collapse file tree 1 file changed +4
-1
lines changed Original file line number Diff line number Diff line change 27
27
LLMType ,
28
28
Neo4jDriverType ,
29
29
)
30
+ from neo4j_graphrag .experimental .pipeline .config .param_resolver import (
31
+ ParamConfig ,
32
+ )
30
33
from neo4j_graphrag .experimental .pipeline .config .types import PipelineType
31
34
from neo4j_graphrag .experimental .pipeline .types import (
32
35
ComponentDefinition ,
@@ -48,7 +51,7 @@ class AbstractPipelineConfig(AbstractConfig):
48
51
llm_config : dict [str , LLMType ] = {}
49
52
embedder_config : dict [str , EmbedderType ] = {}
50
53
# extra parameters values that can be used in different places of the config file
51
- extras : dict [str , Any ] = {}
54
+ extras : dict [str , ParamConfig ] = {}
52
55
53
56
DEFAULT_NAME : ClassVar [str ] = "default"
54
57
"""Name of the default item in dict
You can’t perform that action at this time.
0 commit comments