Update app.py
Browse files
app.py
CHANGED
@@ -1,49 +1,63 @@
|
|
1 |
import gradio as gr
|
2 |
-
|
|
|
|
|
3 |
|
4 |
-
|
5 |
-
|
6 |
-
|
7 |
-
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
8 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
9 |
|
10 |
-
|
11 |
-
|
12 |
-
|
13 |
-
|
14 |
-
|
15 |
-
|
16 |
-
|
17 |
-
|
18 |
-
messages = [{"role": "system", "content": system_message}]
|
19 |
|
20 |
-
|
21 |
-
if val[0]:
|
22 |
-
messages.append({"role": "user", "content": val[0]})
|
23 |
-
if val[1]:
|
24 |
-
messages.append({"role": "assistant", "content": val[1]})
|
25 |
-
|
26 |
-
messages.append({"role": "user", "content": message})
|
27 |
-
|
28 |
-
response = ""
|
29 |
-
|
30 |
-
for message in client.chat_completion(
|
31 |
-
messages,
|
32 |
-
max_tokens=max_tokens,
|
33 |
-
stream=True,
|
34 |
-
temperature=temperature,
|
35 |
-
top_p=top_p,
|
36 |
-
):
|
37 |
-
token = message.choices[0].delta.content
|
38 |
-
|
39 |
-
response += token
|
40 |
-
yield response
|
41 |
-
|
42 |
-
|
43 |
-
"""
|
44 |
-
For information on how to customize the ChatInterface, peruse the gradio docs: https://www.gradio.app/docs/chatinterface
|
45 |
-
"""
|
46 |
-
demo = gr.ChatInterface(
|
47 |
respond,
|
48 |
additional_inputs=[
|
49 |
gr.Textbox(value="You must always include <think> ... </think> <output> </output> tokens.", label="System message"),
|
@@ -57,8 +71,15 @@ demo = gr.ChatInterface(
|
|
57 |
label="Top-p (nucleus sampling)",
|
58 |
),
|
59 |
],
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
60 |
)
|
61 |
|
62 |
-
|
63 |
if __name__ == "__main__":
|
64 |
-
demo.launch()
|
|
|
1 |
import gradio as gr
|
2 |
+
import re
|
3 |
+
from typing import List, Tuple
|
4 |
+
import html
|
5 |
|
6 |
+
def create_collapsible_html(thinking: str) -> str:
|
7 |
+
"""Create HTML for a collapsible thinking section"""
|
8 |
+
escaped_thinking = html.escape(thinking)
|
9 |
+
return f'''
|
10 |
+
<div class="thinking-container" style="margin: 8px 0;">
|
11 |
+
<details class="thinking-details" style="
|
12 |
+
border: 1px solid #ddd;
|
13 |
+
border-radius: 4px;
|
14 |
+
padding: 8px;
|
15 |
+
background-color: #f8f9fa;
|
16 |
+
cursor: pointer;
|
17 |
+
">
|
18 |
+
<summary style="
|
19 |
+
font-weight: 500;
|
20 |
+
display: flex;
|
21 |
+
align-items: center;
|
22 |
+
gap: 8px;
|
23 |
+
">
|
24 |
+
<span style="transform: rotate(-90deg); display: inline-block;">➤</span>
|
25 |
+
Show thoughts
|
26 |
+
</summary>
|
27 |
+
<div style="
|
28 |
+
margin-top: 8px;
|
29 |
+
padding: 8px;
|
30 |
+
border-top: 1px solid #eee;
|
31 |
+
white-space: pre-wrap;
|
32 |
+
">{escaped_thinking}</div>
|
33 |
+
</details>
|
34 |
+
</div>
|
35 |
+
'''
|
36 |
|
37 |
+
def process_message(message: str) -> str:
|
38 |
+
"""Process a message to convert thinking sections into collapsible elements"""
|
39 |
+
def replace_thinking(match):
|
40 |
+
thinking_content = match.group(1).strip()
|
41 |
+
return create_collapsible_html(thinking_content)
|
42 |
+
|
43 |
+
# Replace thinking sections with collapsible elements
|
44 |
+
processed = re.sub(r'<think>(.*?)</think>', replace_thinking, message, flags=re.DOTALL)
|
45 |
+
|
46 |
+
# Remove output tags if present
|
47 |
+
processed = re.sub(r'<output>(.*?)</output>', r'\1', processed, flags=re.DOTALL)
|
48 |
+
|
49 |
+
return processed
|
50 |
|
51 |
+
class CustomChatInterface(gr.ChatInterface):
|
52 |
+
def __init__(self, *args, **kwargs):
|
53 |
+
super().__init__(*args, **kwargs)
|
54 |
+
|
55 |
+
def render_message(self, message: str, is_user: bool) -> str:
|
56 |
+
if not is_user:
|
57 |
+
return process_message(message)
|
58 |
+
return message
|
|
|
59 |
|
60 |
+
demo = CustomChatInterface(
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
61 |
respond,
|
62 |
additional_inputs=[
|
63 |
gr.Textbox(value="You must always include <think> ... </think> <output> </output> tokens.", label="System message"),
|
|
|
71 |
label="Top-p (nucleus sampling)",
|
72 |
),
|
73 |
],
|
74 |
+
css="""
|
75 |
+
.thinking-details[open] summary span {
|
76 |
+
transform: rotate(0deg) !important;
|
77 |
+
}
|
78 |
+
.thinking-details summary::-webkit-details-marker {
|
79 |
+
display: none;
|
80 |
+
}
|
81 |
+
"""
|
82 |
)
|
83 |
|
|
|
84 |
if __name__ == "__main__":
|
85 |
+
demo.launch()
|