Update app.py
Browse files
app.py
CHANGED
@@ -44,26 +44,10 @@ def respond(
|
|
44 |
yield f"Error: {str(e)}"
|
45 |
|
46 |
def format_response(response: str) -> str:
|
47 |
-
"""Format the response with collapsible thinking sections
|
48 |
-
|
49 |
-
|
50 |
-
|
51 |
-
def get_section_id(content):
|
52 |
-
# Create a unique ID for each thinking section based on its content
|
53 |
-
return hashlib.md5(content.encode()).hexdigest()[:8]
|
54 |
-
|
55 |
-
# Find all thinking sections and replace them with uniquely identified sections
|
56 |
-
pattern = r"<think>(.*?)</think>"
|
57 |
-
sections = re.findall(pattern, response, re.DOTALL)
|
58 |
-
|
59 |
-
formatted = response
|
60 |
-
for section in sections:
|
61 |
-
section_id = get_section_id(section)
|
62 |
-
old = f"<think>{section}</think>"
|
63 |
-
new = f'<details id="think_{section_id}" open><summary>Show thinking 🧠</summary><div class="thoughts">{section}</div></details>'
|
64 |
-
formatted = formatted.replace(old, new)
|
65 |
-
|
66 |
-
return formatted
|
67 |
|
68 |
# Custom CSS for styling
|
69 |
css = """
|
@@ -97,11 +81,14 @@ details[open] summary:after {
|
|
97 |
|
98 |
# Create Gradio interface
|
99 |
with gr.Blocks(css=css) as demo:
|
100 |
-
gr.Markdown("## Chat with Superthoughts lite! (1.7B)")
|
101 |
gr.Markdown("**Note:** First response may take a moment to initialize. Subsequent responses will be faster.")
|
102 |
|
103 |
chatbot = gr.Chatbot(height=600)
|
104 |
-
|
|
|
|
|
|
|
105 |
|
106 |
with gr.Accordion("Advanced Settings", open=False):
|
107 |
system_message = gr.Textbox(
|
@@ -143,7 +130,8 @@ with gr.Blocks(css=css) as demo:
|
|
143 |
history[-1][1] = partial_response
|
144 |
yield history
|
145 |
|
146 |
-
# Set up chat message handling
|
|
|
147 |
msg.submit(
|
148 |
user,
|
149 |
[msg, chatbot],
|
@@ -155,9 +143,9 @@ with gr.Blocks(css=css) as demo:
|
|
155 |
chatbot
|
156 |
)
|
157 |
|
158 |
-
|
159 |
-
|
160 |
-
|
161 |
|
162 |
# Add disclaimer
|
163 |
gr.Markdown(
|
|
|
44 |
yield f"Error: {str(e)}"
|
45 |
|
46 |
def format_response(response: str) -> str:
|
47 |
+
"""Format the response with collapsible thinking sections"""
|
48 |
+
response = response.replace("<think>", '<details open><summary>Show thinking 🧠</summary><div class="thoughts">')
|
49 |
+
response = response.replace("</think>", "</div></details>")
|
50 |
+
return response
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
51 |
|
52 |
# Custom CSS for styling
|
53 |
css = """
|
|
|
81 |
|
82 |
# Create Gradio interface
|
83 |
with gr.Blocks(css=css) as demo:
|
84 |
+
gr.Markdown("## Chat with <span style='color: #d026ff'>Superthoughts</span> lite! (1.7B)")
|
85 |
gr.Markdown("**Note:** First response may take a moment to initialize. Subsequent responses will be faster.")
|
86 |
|
87 |
chatbot = gr.Chatbot(height=600)
|
88 |
+
with gr.Row():
|
89 |
+
msg = gr.Textbox(label="Your message", placeholder="Type your message here...", scale=9)
|
90 |
+
stop = gr.Button("Stop", scale=1)
|
91 |
+
|
92 |
|
93 |
with gr.Accordion("Advanced Settings", open=False):
|
94 |
system_message = gr.Textbox(
|
|
|
130 |
history[-1][1] = partial_response
|
131 |
yield history
|
132 |
|
133 |
+
# Set up chat message handling and stop button
|
134 |
+
stop.click(fn=None, inputs=None, outputs=None, cancels=msg.submit)
|
135 |
msg.submit(
|
136 |
user,
|
137 |
[msg, chatbot],
|
|
|
143 |
chatbot
|
144 |
)
|
145 |
|
146 |
+
# Add a clear button
|
147 |
+
clear = gr.Button("Clear Conversation")
|
148 |
+
clear.click(lambda: None, None, chatbot, queue=False)
|
149 |
|
150 |
# Add disclaimer
|
151 |
gr.Markdown(
|