emeses commited on
Commit
64f77f5
·
1 Parent(s): b7d04b0

Update space

Browse files
Files changed (1) hide show
  1. app.py +32 -47
app.py CHANGED
@@ -12,7 +12,8 @@ data = []
12
  def respond(message, history, system_message):
13
  messages = [{"role": "system", "content": system_message}]
14
  for val in history:
15
- messages.append({"role": "user", "content": val[0]})
 
16
  if val[1]:
17
  messages.append({"role": "assistant", "content": val[1]})
18
 
@@ -76,27 +77,19 @@ def extract_table(url):
76
  except Exception as e:
77
  return f"<p>Error: {str(e)}</p>"
78
 
79
- def user_message(message, history):
80
- if message:
81
- history = history + [(message, None)]
82
  return history
83
 
84
- def bot(history, system_message):
85
- if not history or history[-1][1] is not None: # Skip if no history or last message already has a response
86
  return history
87
 
88
- history_with_response = history.copy()
89
  response = ""
90
-
91
- try:
92
- for chunk in respond(history[-1][0], history[:-1], system_message):
93
- response = chunk
94
- history_with_response[-1] = (history[-1][0], response)
95
- yield history_with_response
96
- except Exception as e:
97
- print(f"Error in bot: {e}")
98
- history_with_response[-1] = (history[-1][0], "I apologize, but I encountered an error processing your request.")
99
- yield history_with_response
100
 
101
  def handle_prepare(index, history):
102
  try:
@@ -105,14 +98,9 @@ def handle_prepare(index, history):
105
  topic = data[index]["Topic"]
106
  date = data[index]["Date"]
107
  message = f"Please prepare a 10-minute reading guide for the topic '{topic}' scheduled for {date}"
108
-
109
- history = history or []
110
- history = history + [(message, None)]
111
- print(f"Prepare button clicked: {message}")
112
- return history
113
- except Exception as e:
114
- print(f"Error in handle_prepare: {e}")
115
- return history or []
116
 
117
  def clear_chat():
118
  return [], ""
@@ -133,11 +121,8 @@ with gr.Blocks() as demo:
133
  prepare_button = gr.Button("Prepare", visible=False, elem_id="prepare-button")
134
 
135
  with gr.Column(scale=2):
136
- chatbot = gr.Chatbot(
137
- height=600,
138
- bubble_full_width=False,
139
- )
140
- msg = gr.Textbox(label="Message", interactive=True)
141
  system_message = gr.Textbox(
142
  value="Student class preparation companion.",
143
  label="System message"
@@ -156,40 +141,40 @@ with gr.Blocks() as demo:
156
 
157
  # Submit button handler
158
  msg.submit(
159
- fn=user_message,
160
- inputs=[msg, chatbot],
161
- outputs=chatbot,
162
- ).then(
163
  fn=lambda: "",
164
- outputs=msg,
165
  ).then(
166
- fn=bot,
167
  inputs=[chatbot, system_message],
168
- outputs=chatbot,
169
  )
170
 
171
  submit.click(
172
- fn=user_message,
173
- inputs=[msg, chatbot],
174
- outputs=chatbot,
175
- ).then(
176
  fn=lambda: "",
177
- outputs=msg,
178
  ).then(
179
- fn=bot,
180
  inputs=[chatbot, system_message],
181
- outputs=chatbot,
182
  )
183
 
184
  # Prepare button handler
185
  prepare_button.click(
186
  fn=handle_prepare,
187
  inputs=[prepare_topic, chatbot],
188
- outputs=chatbot,
189
  ).then(
190
- fn=bot,
191
  inputs=[chatbot, system_message],
192
- outputs=chatbot,
193
  )
194
 
195
  # Clear button handler
 
12
  def respond(message, history, system_message):
13
  messages = [{"role": "system", "content": system_message}]
14
  for val in history:
15
+ if val[0]:
16
+ messages.append({"role": "user", "content": val[0]})
17
  if val[1]:
18
  messages.append({"role": "assistant", "content": val[1]})
19
 
 
77
  except Exception as e:
78
  return f"<p>Error: {str(e)}</p>"
79
 
80
+ def add_text(history, text):
81
+ history = history + [(text, None)]
 
82
  return history
83
 
84
+ def generate_response(history, system_message):
85
+ if not history:
86
  return history
87
 
 
88
  response = ""
89
+ for chunk in respond(history[-1][0], history[:-1], system_message):
90
+ response = chunk
91
+ history[-1] = (history[-1][0], response)
92
+ yield history
 
 
 
 
 
 
93
 
94
  def handle_prepare(index, history):
95
  try:
 
98
  topic = data[index]["Topic"]
99
  date = data[index]["Date"]
100
  message = f"Please prepare a 10-minute reading guide for the topic '{topic}' scheduled for {date}"
101
+ return history + [(message, None)]
102
+ except:
103
+ return history
 
 
 
 
 
104
 
105
  def clear_chat():
106
  return [], ""
 
121
  prepare_button = gr.Button("Prepare", visible=False, elem_id="prepare-button")
122
 
123
  with gr.Column(scale=2):
124
+ chatbot = gr.Chatbot()
125
+ msg = gr.Textbox(label="Message")
 
 
 
126
  system_message = gr.Textbox(
127
  value="Student class preparation companion.",
128
  label="System message"
 
141
 
142
  # Submit button handler
143
  msg.submit(
144
+ fn=add_text,
145
+ inputs=[chatbot, msg],
146
+ outputs=chatbot
147
+ ).success(
148
  fn=lambda: "",
149
+ outputs=msg
150
  ).then(
151
+ fn=generate_response,
152
  inputs=[chatbot, system_message],
153
+ outputs=chatbot
154
  )
155
 
156
  submit.click(
157
+ fn=add_text,
158
+ inputs=[chatbot, msg],
159
+ outputs=chatbot
160
+ ).success(
161
  fn=lambda: "",
162
+ outputs=msg
163
  ).then(
164
+ fn=generate_response,
165
  inputs=[chatbot, system_message],
166
+ outputs=chatbot
167
  )
168
 
169
  # Prepare button handler
170
  prepare_button.click(
171
  fn=handle_prepare,
172
  inputs=[prepare_topic, chatbot],
173
+ outputs=chatbot
174
  ).then(
175
+ fn=generate_response,
176
  inputs=[chatbot, system_message],
177
+ outputs=chatbot
178
  )
179
 
180
  # Clear button handler