Spaces:
Running
on
CPU Upgrade
Running
on
CPU Upgrade
Update app.py
Browse files
app.py
CHANGED
@@ -124,7 +124,8 @@ def SaveResponseAndRead(result):
|
|
124 |
|
125 |
def save_search_results(prompt, results, response):
|
126 |
timestamp = datetime.now().strftime("%Y%m%d_%H%M%S")
|
127 |
-
filename = f"{timestamp}_{re.sub(r'[^\\w\\-_\\. ]', '_', prompt)}.txt"
|
|
|
128 |
with open(filename, "w") as f:
|
129 |
f.write(f"# {prompt}\n\n")
|
130 |
f.write(f"## Search Results\n\n{results}\n\n")
|
|
|
124 |
|
125 |
def save_search_results(prompt, results, response):
|
126 |
timestamp = datetime.now().strftime("%Y%m%d_%H%M%S")
|
127 |
+
#filename = f"{timestamp}_{re.sub(r'[^\\w\\-_\\. ]', '_', prompt)}.txt"
|
128 |
+
filename = f"{timestamp} - {prompt}.txt"
|
129 |
with open(filename, "w") as f:
|
130 |
f.write(f"# {prompt}\n\n")
|
131 |
f.write(f"## Search Results\n\n{results}\n\n")
|