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 2727 LLMType ,
2828 Neo4jDriverType ,
2929)
30+ from neo4j_graphrag .experimental .pipeline .config .param_resolver import (
31+ ParamConfig ,
32+ )
3033from neo4j_graphrag .experimental .pipeline .config .types import PipelineType
3134from 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
You can’t perform that action at this time.
0 commit comments