Spaces:
Sleeping
Sleeping
Update app.py
Browse files
app.py
CHANGED
@@ -684,7 +684,11 @@ def save_memory(purpose, history):
|
|
684 |
|
685 |
def valid_list(inp):
|
686 |
inp_typ = type(inp)
|
687 |
-
|
|
|
|
|
|
|
|
|
688 |
|
689 |
|
690 |
def recall_memory(inp,history):
|
|
|
684 |
|
685 |
def valid_list(inp):
|
686 |
inp_typ = type(inp)
|
687 |
+
if inp_typ=="<class 'str'>":
|
688 |
+
print("STRING")
|
689 |
+
new_list=list(inp_typ.split("[")[1].split("]",-1)[0]))
|
690 |
+
print(new_list)
|
691 |
+
print(type(new_list))
|
692 |
|
693 |
|
694 |
def recall_memory(inp,history):
|