Update app.py
Browse files
app.py
CHANGED
@@ -84,7 +84,7 @@ 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)
|
@@ -119,20 +119,17 @@ with gr.Blocks(css=css) as demo:
|
|
119 |
|
120 |
def user(user_message: str, history: list) -> tuple[str, list]:
|
121 |
"""Add user message to history"""
|
122 |
-
return "", history + [
|
123 |
|
124 |
def bot(history: list, system_message: str, max_tokens: int, temperature: float, top_p: float) -> Iterator[list]:
|
125 |
"""Generate and stream bot responses"""
|
126 |
-
user_message
|
127 |
-
history[
|
128 |
-
|
129 |
-
for partial_response in respond(user_message, history[:-1], system_message, max_tokens, temperature, top_p):
|
130 |
-
history[-1][1] = partial_response
|
131 |
yield history
|
132 |
|
133 |
-
#
|
134 |
-
|
135 |
-
msg.submit(
|
136 |
user,
|
137 |
[msg, chatbot],
|
138 |
[msg, chatbot],
|
@@ -142,6 +139,9 @@ with gr.Blocks(css=css) as demo:
|
|
142 |
[chatbot, system_message, max_tokens, temperature, top_p],
|
143 |
chatbot
|
144 |
)
|
|
|
|
|
|
|
145 |
|
146 |
# Add a clear button
|
147 |
clear = gr.Button("Clear Conversation")
|
|
|
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, type='messages')
|
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)
|
|
|
119 |
|
120 |
def user(user_message: str, history: list) -> tuple[str, list]:
|
121 |
"""Add user message to history"""
|
122 |
+
return "", history + [{"role": "user", "content": user_message}, {"role": "assistant", "content": None}]
|
123 |
|
124 |
def bot(history: list, system_message: str, max_tokens: int, temperature: float, top_p: float) -> Iterator[list]:
|
125 |
"""Generate and stream bot responses"""
|
126 |
+
user_message = history[-2]["content"] # Get the last user message
|
127 |
+
for partial_response in respond(user_message, history[:-2], system_message, max_tokens, temperature, top_p):
|
128 |
+
history[-1]["content"] = partial_response
|
|
|
|
|
129 |
yield history
|
130 |
|
131 |
+
# Create event handlers
|
132 |
+
submit_event = msg.submit(
|
|
|
133 |
user,
|
134 |
[msg, chatbot],
|
135 |
[msg, chatbot],
|
|
|
139 |
[chatbot, system_message, max_tokens, temperature, top_p],
|
140 |
chatbot
|
141 |
)
|
142 |
+
|
143 |
+
# Set up stop button
|
144 |
+
stop.click(fn=None, inputs=None, outputs=None, cancels=[submit_event])
|
145 |
|
146 |
# Add a clear button
|
147 |
clear = gr.Button("Clear Conversation")
|