We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 527fa90 commit 61db6aeCopy full SHA for 61db6ae
assistant/common/reply.py
@@ -33,6 +33,8 @@ async def send_reply(
33
files = []
34
for idx, match in enumerate(THINK_BLOCK.finditer(content)):
35
think_content = match.group(1).strip()
36
+ if not think_content:
37
+ think_content += "no thinkies 🤯"
38
filename = "thinkies.txt" if idx == 0 else f"thinkies_part{idx + 1}.txt"
39
files.append(text_to_file(think_content, filename=filename))
40
content = THINK_BLOCK.sub("", content).strip()
0 commit comments