File tree Expand file tree Collapse file tree 4 files changed +6
-5
lines changed
Expand file tree Collapse file tree 4 files changed +6
-5
lines changed Original file line number Diff line number Diff line change @@ -31,4 +31,6 @@ examples/graph_examples/ScrapeGraphAI_generated_graph
3131examples /** /result.csv
3232examples /** /result.json
3333main.py
34+ * .python-version
35+ * .lock
3436
Original file line number Diff line number Diff line change @@ -10,7 +10,6 @@ authors = [
1010 { name = " Lorenzo Padoan" , email = " lorenzo.padoan977@gmail.com" }
1111]
1212dependencies = [
13- # python = ">=3.9, <3.12"
1413 " langchain==0.1.15" ,
1514 " langchain-openai==0.1.6" ,
1615 " langchain-google-genai==1.0.3" ,
Original file line number Diff line number Diff line change 22OmniSearchGraph Module
33"""
44
5- from copy import deepcopy
5+ from copy import copy
66
77from .base_graph import BaseGraph
88from ..nodes import (
@@ -43,7 +43,7 @@ class OmniSearchGraph(AbstractGraph):
4343 def __init__ (self , prompt : str , config : dict ):
4444
4545 self .max_results = config .get ("max_results" , 3 )
46- self .copy_config = deepcopy (config )
46+ self .copy_config = copy (config )
4747
4848 super ().__init__ (prompt , config )
4949
Original file line number Diff line number Diff line change 22SearchGraph Module
33"""
44
5- from copy import deepcopy
5+ from copy import copy
66
77from .base_graph import BaseGraph
88from ..nodes import (
@@ -42,7 +42,7 @@ class SearchGraph(AbstractGraph):
4242 def __init__ (self , prompt : str , config : dict ):
4343
4444 self .max_results = config .get ("max_results" , 3 )
45- self .copy_config = deepcopy (config )
45+ self .copy_config = copy (config )
4646
4747 super ().__init__ (prompt , config )
4848
You can’t perform that action at this time.
0 commit comments