saneowl commited on
Commit
d0d60f4
·
verified ·
1 Parent(s): 3ad05c5

Update app.py

Browse files
Files changed (1) hide show
  1. app.py +20 -118
app.py CHANGED
@@ -1,9 +1,7 @@
1
  import gradio as gr
2
  import requests
3
- import json
4
- import os
5
  import re
6
- from datetime import datetime
7
 
8
 
9
  API_ENDPOINT = os.getenv("API_ENDPOINT", "none")
@@ -55,7 +53,7 @@ def convert_reasoning_to_collapsible(text):
55
 
56
  return html_response
57
 
58
- def chat_interface(message, history, stored_history):
59
  """Handle chat interactions and update history."""
60
  if not history:
61
  history = []
@@ -75,53 +73,12 @@ def chat_interface(message, history, stored_history):
75
  # Update history in the format expected by Gradio chatbot
76
  history.append((message, ai_response))
77
 
78
- timestamp = datetime.now().strftime("%Y-%m-%d %H:%M:%S")
79
- if stored_history is None:
80
- stored_history = []
81
-
82
- # Store a plain text version for history display
83
- plain_response = re.sub(r'<details>.*?</details>', '[Reasoning available]', ai_response, flags=re.DOTALL)
84
- plain_response = re.sub(r'<[^>]*>', '', plain_response)
85
-
86
- stored_history.insert(0, {
87
- "timestamp": timestamp,
88
- "user": message,
89
- "ai": plain_response
90
- })
91
- return history, stored_history
92
-
93
- def update_history_display(stored_history):
94
- """Generate HTML for history display and save to local storage."""
95
- if not stored_history:
96
- html = "<p>No history yet</p>"
97
- else:
98
- html = "<ul id='history_list'>"
99
- for item in stored_history[:10]: # Limit to last 10 conversations
100
- html += f"""
101
- <li class='history-item'>
102
- <small>{item['timestamp']}</small><br>
103
- <strong>You:</strong> {item['user'][:50]}{'...' if len(item['user']) > 50 else ''}<br>
104
- <strong>AI:</strong> {item['ai'][:50]}{'...' if len(item['ai']) > 50 else ''}
105
- </li>
106
- """
107
- html += "</ul>"
108
- # Embed script to save history to local storage
109
- html += f"<script>localStorage.setItem('chat_history', JSON.stringify({json.dumps(stored_history)}))</script>"
110
- return html
111
-
112
- def load_history_from_storage():
113
- """Function to load history from JavaScript"""
114
- # This is a placeholder that will be replaced by the JavaScript function
115
- return []
116
 
117
  # Modern CSS for a clean UI
118
  custom_css = """
119
  body { background-color: #1a1a1a; color: #ffffff; font-family: 'Arial', sans-serif; }
120
- #chatbot { height: 60vh; background-color: #2d2d2d; border: 1px solid #404040; border-radius: 8px; }
121
- #sidebar { background-color: #242424; padding: 10px; border-right: 1px solid #404040; height: 80vh; overflow-y: auto; }
122
- #history_list { list-style: none; padding: 0; }
123
- .history-item { background-color: #333333; margin: 5px 0; padding: 10px; border-radius: 5px; cursor: pointer; }
124
- .history-item:hover { background-color: #404040; }
125
  input, button { background-color: #333333; color: #ffffff; border: 1px solid #404040; border-radius: 5px; }
126
  button:hover { background-color: #404040; }
127
  details { background-color: #333333; padding: 10px; margin: 5px 0; border-radius: 5px; }
@@ -129,48 +86,20 @@ summary { cursor: pointer; color: #70a9e6; }
129
  .reasoning-content { padding: 10px; margin-top: 5px; background-color: #404040; border-radius: 5px; }
130
  """
131
 
132
- # HTML head for rendering HTML in chatbot
133
- html_head = """
134
- <head>
135
- <style>
136
- details { background-color: #333333; padding: 10px; margin: 5px 0; border-radius: 5px; }
137
- summary { cursor: pointer; color: #70a9e6; }
138
- .reasoning-content { padding: 10px; margin-top: 5px; background-color: #404040; border-radius: 5px; }
139
- </style>
140
- </head>
141
- """
142
-
143
  # Build the Gradio app
144
- with gr.Blocks(css=custom_css, title="AI Assistant with Collapsible Reasoning") as demo:
145
- with gr.Row():
146
- # Sidebar for history
147
- with gr.Column(scale=1, min_width=300, elem_id="sidebar"):
148
- gr.Markdown("## Chat History")
149
- history_display = gr.HTML(label="Previous Conversations")
150
- clear_history_btn = gr.Button("Clear History")
151
-
152
- # Main chat area
153
- with gr.Column(scale=3):
154
- gr.Markdown("## AI Assistant")
155
- gr.Markdown("This assistant shows reasoning in collapsible sections.")
156
- chatbot = gr.Chatbot(elem_id="chatbot", render_markdown=False, bubble_full_width=True)
157
- with gr.Row():
158
- message = gr.Textbox(placeholder="Type your message...", show_label=False, container=False)
159
- submit_btn = gr.Button("Send", size="sm")
160
- clear_chat_btn = gr.Button("Clear Chat")
161
 
162
  # State management
163
  chat_state = gr.State([]) # Current chat history
164
- history_state = gr.State([]) # Stored history across sessions
165
 
166
- # JavaScript for loading history from local storage
167
- load_history_js = """
168
- function() {
169
- const history = localStorage.getItem('chat_history');
170
- return history ? JSON.parse(history) : [];
171
- }
172
- """
173
-
174
  # JavaScript for enabling HTML in chatbot
175
  js = """
176
  function() {
@@ -203,16 +132,12 @@ with gr.Blocks(css=custom_css, title="AI Assistant with Collapsible Reasoning")
203
  # Event handlers
204
  submit_btn.click(
205
  chat_interface,
206
- [message, chat_state, history_state],
207
- [chat_state, history_state]
208
  ).then(
209
  lambda history: history,
210
  chat_state,
211
  chatbot
212
- ).then(
213
- update_history_display,
214
- history_state,
215
- history_display
216
  ).then(
217
  lambda: "", # Clear the input box
218
  None,
@@ -222,16 +147,12 @@ with gr.Blocks(css=custom_css, title="AI Assistant with Collapsible Reasoning")
222
  # Message submit via Enter key
223
  message.submit(
224
  chat_interface,
225
- [message, chat_state, history_state],
226
- [chat_state, history_state]
227
  ).then(
228
  lambda history: history,
229
  chat_state,
230
  chatbot
231
- ).then(
232
- update_history_display,
233
- history_state,
234
- history_display
235
  ).then(
236
  lambda: "", # Clear the input box
237
  None,
@@ -239,33 +160,14 @@ with gr.Blocks(css=custom_css, title="AI Assistant with Collapsible Reasoning")
239
  )
240
 
241
  clear_chat_btn.click(
242
- lambda: ([], None),
243
- None,
244
- [chat_state, chatbot]
245
- )
246
-
247
- clear_history_btn.click(
248
  lambda: [],
249
  None,
250
- history_state
251
- ).then(
252
- update_history_display,
253
- history_state,
254
- history_display
255
  )
256
 
257
- # Load initial history from local storage using JavaScript
258
  demo.load(
259
- fn=load_history_from_storage,
260
- inputs=None,
261
- outputs=history_state,
262
- js=load_history_js
263
- ).then(
264
- update_history_display,
265
- history_state,
266
- history_display
267
- ).then(
268
- fn=load_history_from_storage,
269
  inputs=None,
270
  outputs=None,
271
  js=js
 
1
  import gradio as gr
2
  import requests
 
 
3
  import re
4
+ import os
5
 
6
 
7
  API_ENDPOINT = os.getenv("API_ENDPOINT", "none")
 
53
 
54
  return html_response
55
 
56
+ def chat_interface(message, history):
57
  """Handle chat interactions and update history."""
58
  if not history:
59
  history = []
 
73
  # Update history in the format expected by Gradio chatbot
74
  history.append((message, ai_response))
75
 
76
+ return history
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
77
 
78
  # Modern CSS for a clean UI
79
  custom_css = """
80
  body { background-color: #1a1a1a; color: #ffffff; font-family: 'Arial', sans-serif; }
81
+ #chatbot { height: 80vh; background-color: #2d2d2d; border: 1px solid #404040; border-radius: 8px; }
 
 
 
 
82
  input, button { background-color: #333333; color: #ffffff; border: 1px solid #404040; border-radius: 5px; }
83
  button:hover { background-color: #404040; }
84
  details { background-color: #333333; padding: 10px; margin: 5px 0; border-radius: 5px; }
 
86
  .reasoning-content { padding: 10px; margin-top: 5px; background-color: #404040; border-radius: 5px; }
87
  """
88
 
 
 
 
 
 
 
 
 
 
 
 
89
  # Build the Gradio app
90
+ with gr.Blocks(css=custom_css, title="Reka Flash 3") as demo:
91
+ with gr.Column():
92
+ gr.Markdown("## Reka Flash 3")
93
+ gr.Markdown("This assistant shows reasoning in collapsible sections.")
94
+ chatbot = gr.Chatbot(elem_id="chatbot", render_markdown=False, bubble_full_width=True)
95
+ with gr.Row():
96
+ message = gr.Textbox(placeholder="Type your message...", show_label=False, container=False)
97
+ submit_btn = gr.Button("Send", size="sm")
98
+ clear_chat_btn = gr.Button("Clear Chat")
 
 
 
 
 
 
 
 
99
 
100
  # State management
101
  chat_state = gr.State([]) # Current chat history
 
102
 
 
 
 
 
 
 
 
 
103
  # JavaScript for enabling HTML in chatbot
104
  js = """
105
  function() {
 
132
  # Event handlers
133
  submit_btn.click(
134
  chat_interface,
135
+ [message, chat_state],
136
+ [chat_state]
137
  ).then(
138
  lambda history: history,
139
  chat_state,
140
  chatbot
 
 
 
 
141
  ).then(
142
  lambda: "", # Clear the input box
143
  None,
 
147
  # Message submit via Enter key
148
  message.submit(
149
  chat_interface,
150
+ [message, chat_state],
151
+ [chat_state]
152
  ).then(
153
  lambda history: history,
154
  chat_state,
155
  chatbot
 
 
 
 
156
  ).then(
157
  lambda: "", # Clear the input box
158
  None,
 
160
  )
161
 
162
  clear_chat_btn.click(
 
 
 
 
 
 
163
  lambda: [],
164
  None,
165
+ [chat_state, chatbot]
 
 
 
 
166
  )
167
 
168
+ # Load JavaScript for HTML rendering
169
  demo.load(
170
+ fn=lambda: None,
 
 
 
 
 
 
 
 
 
171
  inputs=None,
172
  outputs=None,
173
  js=js