Spaces:
Sleeping
Sleeping
bug fix
Browse files
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[
|
| 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 |
|