jproman commited on
Commit
0740693
·
1 Parent(s): f013b22
Files changed (1) hide show
  1. nodes.py +1 -1
nodes.py CHANGED
@@ -73,7 +73,7 @@ class Search(Node):
73
 
74
  def post(self,shared,prep_res,exec_res):
75
  previous = shared.get("context","")
76
- shared["context"] = f"{previous}\n\nSEARCH: {shared["search_query"]}\n\nRESULTS: {exec_res}"
77
  return "decide"
78
 
79
 
 
73
 
74
  def post(self,shared,prep_res,exec_res):
75
  previous = shared.get("context","")
76
+ shared["context"] = f"{previous}\n\nSEARCH: {shared['search_query']}\n\nRESULTS: {exec_res}"
77
  return "decide"
78
 
79