We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 9b3a750 commit d8f80acCopy full SHA for d8f80ac
1 file changed
renard/pipeline/preconfigured.py
@@ -87,6 +87,11 @@ def conversational_pipeline(
87
88
if not "graph_type" in graph_extractor_kwargs:
89
graph_extractor_kwargs["graph_type"] = "conversation"
90
+ if (
91
+ graph_extractor_kwargs["graph_type"] == "conversation"
92
+ and not "conversation_dist" in graph_extractor_kwargs
93
+ ):
94
+ graph_extractor_kwargs["conversation_dist"] = 1
95
96
return Pipeline(
97
[
0 commit comments