Spaces:
Running
Running
File size: 16,209 Bytes
773c823 2a28af6 17d526c 5e651f0 ca14c49 7c05144 5e651f0 04b440e 5e651f0 ca14c49 5e651f0 ca14c49 5e651f0 ca14c49 5e651f0 ca14c49 04b440e ca14c49 5e651f0 773c823 5e651f0 dbcb597 5e651f0 4c31cac 5e651f0 dbcb597 5e651f0 dbcb597 5e651f0 773c823 4c31cac 773c823 5e651f0 773c823 4c31cac 773c823 5e651f0 773c823 4c31cac 773c823 5e651f0 773c823 4c31cac 5e651f0 773c823 5e651f0 c0a58c4 f863e43 ca14c49 5d99375 04b440e ca14c49 5d99375 ca14c49 5e651f0 ca14c49 5e651f0 ca14c49 5e651f0 ca14c49 5235612 a46b4a9 5e651f0 |
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 331 332 333 334 335 336 337 338 339 340 341 342 343 344 345 346 347 348 349 350 351 352 353 354 355 356 357 358 359 360 361 362 363 364 365 366 367 368 369 370 371 372 373 374 375 376 377 378 379 380 381 382 383 384 385 386 387 |
# # import gradio as gr
# # from openai import OpenAI
# # # 🔹 Configure your agent
# # agent_endpoint = "https://q77iuwf7ncfemoonbzon2iyd.agents.do-ai.run/api/v1/"
# # agent_access_key = "CzIwmTIDFNWRRIHvxVNzKWztq8rn5S5w"
# # client = OpenAI(base_url=agent_endpoint, api_key=agent_access_key)
# # # Parameters
# # DEFAULT_RETRIEVAL_RUNS = 3 # adjustable in UI
# # def policy_chat(message, history, retrieval_runs=DEFAULT_RETRIEVAL_RUNS):
# # """
# # Chatbot with streaming + multiple retrieval runs.
# # """
# # # Show "processing" placeholder
# # history = history + [[message, "Processing..."]]
# # yield history, history
# # aggregated_responses = []
# # for run in range(retrieval_runs):
# # try:
# # stream = client.chat.completions.create(
# # model="n/a", # agent handles routing
# # messages=[
# # {"role": "system", "content": "The data must be returned verbatim. Please be quite detailed and include all information. You are new to the analysis of policy documents, hence you need to be objective in retrieving information, and it is not expected that you will analyse and interpret the information."},
# # *[{"role": "user", "content": u} if i % 2 == 0 else {"role": "assistant", "content": b}
# # for i, (u, b) in enumerate(history[:-1])], # exclude placeholder
# # {"role": "user", "content": message},
# # ],
# # extra_body={"include_retrieval_info": True},
# # stream=True,
# # )
# # response_text = ""
# # for chunk in stream:
# # delta = chunk.choices[0].delta
# # if delta and delta.content: # delta.content is a string or None
# # response_text += delta.content
# # # Stream update to Gradio UI
# # history[-1][1] = response_text
# # yield history, history
# # aggregated_responses.append(response_text or "⚠️ Empty response")
# # except Exception as e:
# # aggregated_responses.append(f"⚠️ Error during run {run+1}: {str(e)}")
# # # 🔹 Choose the “best” response (longest for now)
# # best_response = max(aggregated_responses, key=len, default="⚠️ No response")
# # history[-1][1] = best_response
# # yield history, history
# # with gr.Blocks(theme=gr.themes.Soft(primary_hue="blue", secondary_hue="gray")) as demo:
# # gr.Markdown("# 🤖 Policy-Agent Chatbot\nAsk me about policies. I’ll query the knowledge base multiple times to retrieve the best answer for you!")
# # popup_widget_html = '''<style>
# # .policy-agent-popup-container { position:fixed; bottom:16px; right:16px; z-index:9999; }
# # </style>
# # <div class="policy-agent-popup-container">
# # <script async
# # src="https://q77iuwf7ncfemoonbzon2iyd.agents.do-ai.run/static/chatbot/widget.js"
# # data-agent-id="fcad9141-8590-11f0-b074-4e013e2ddde4"
# # data-chatbot-id="oTQKgtWMkQLbLVw7CIHkbxw25Pu9jekn"
# # data-name="policy-agent Chatbot"
# # data-primary-color="#031B4E"
# # data-secondary-color="#E5E8ED"
# # data-button-background-color="#0061EB"
# # data-starting-message="Hello! I am your policy analysis bot made to help you comb through the policies."
# # data-logo="/static/chatbot/icons/default-agent.svg">
# # </script>
# # </div>'''
# # gr.HTML(popup_widget_html)
# # chatbot = gr.Chatbot(height=500)
# # msg = gr.Textbox(placeholder="Type your question...")
# # retrieval_slider = gr.Slider(1, 10, value=DEFAULT_RETRIEVAL_RUNS, step=1, label="Number of retrieval runs")
# # clear = gr.Button("Clear Chat")
# # msg.submit(policy_chat, [msg, chatbot, retrieval_slider], [chatbot, chatbot])
# # msg.submit(lambda: "", None, msg) # clear textbox
# # clear.click(lambda: None, None, chatbot, queue=False)
# # if __name__ == "__main__":
# # demo.launch(debug=True)
# import gradio as gr
# from openai import OpenAI
# # 🔹 Configure your agent
# agent_endpoint = "https://q77iuwf7ncfemoonbzon2iyd.agents.do-ai.run/api/v1/"
# agent_access_key = "CzIwmTIDFNWRRIHvxVNzKWztq8rn5S5w"
# client = OpenAI(base_url=agent_endpoint, api_key=agent_access_key)
# # Parameters
# DEFAULT_RETRIEVAL_RUNS = 3 # adjustable in UI
# stop_flag = {"stop": False} # global flag for stopping runs
# def stop_runs():
# """Set stop flag to True to interrupt current processing."""
# stop_flag["stop"] = True
# return "⛔ Retrieval stopped by user."
# def policy_chat(message, history, retrieval_runs=DEFAULT_RETRIEVAL_RUNS):
# """
# Runs multiple retrievals, stores responses, and returns the best one.
# """
# # Reset stop flag
# stop_flag["stop"] = False
# # Show "processing" placeholder in UI
# history = history + [[message, "Processing..."]]
# yield history, history
# aggregated_responses = []
# for run in range(retrieval_runs):
# if stop_flag["stop"]:
# history[-1][1] = "⛔ Stopped before completion."
# yield history, history
# return
# try:
# # Stream response but collect full text silently
# stream = client.chat.completions.create(
# model="n/a", # agent handles routing
# messages=[
# {"role": "system", "content": "The data must be returned verbatim. Please be quite detailed and include all information. You are new to the analysis of policy documents, hence you need to be objective in retrieving information, and it is not expected that you will analyse and interpret the information."},
# *[{"role": "user", "content": u} if i % 2 == 0 else {"role": "assistant", "content": b}
# for i, (u, b) in enumerate(history[:-1])], # exclude placeholder
# {"role": "user", "content": message},
# ],
# extra_body={"include_retrieval_info": True},
# stream=True,
# )
# response_text = ""
# for chunk in stream:
# delta = chunk.choices[0].delta
# if delta and delta.content:
# response_text += delta.content
# aggregated_responses.append(response_text or "⚠️ Empty response")
# except Exception as e:
# aggregated_responses.append(f"⚠️ Error during run {run+1}: {str(e)}")
# # --- Selection logic ---
# # For now, pick the "best" as the longest response
# best_response = max(aggregated_responses, key=len, default="⚠️ No response")
# # Replace "Processing..." with final answer
# history[-1][1] = best_response
# yield history, history
# with gr.Blocks(theme=gr.themes.Soft(primary_hue="blue", secondary_hue="gray")) as demo:
# gr.Markdown("# 🤖 Policy-Agent Chatbot\nAsk me about policies. I’ll query the knowledge base multiple times!")
# chatbot = gr.Chatbot(height=500)
# msg = gr.Textbox(placeholder="Type your question...")
# retrieval_slider = gr.Slider(1, 10, value=DEFAULT_RETRIEVAL_RUNS, step=1, label="Number of retrieval runs")
# with gr.Row():
# clear = gr.Button("Clear Chat")
# stop = gr.Button("⛔ Stop")
# msg.submit(policy_chat, [msg, chatbot, retrieval_slider], [chatbot, chatbot])
# msg.submit(lambda: "", None, msg) # clear textbox
# clear.click(lambda: None, None, chatbot, queue=False)
# stop.click(stop_runs, None, chatbot, queue=False)
# if __name__ == "__main__":
# demo.launch(debug=True)
import gradio as gr
from openai import OpenAI
from datetime import datetime
# 🔹 Configure your agent
agent_endpoint = "https://q77iuwf7ncfemoonbzon2iyd.agents.do-ai.run/api/v1/"
agent_access_key = "CzIwmTIDFNWRRIHvxVNzKWztq8rn5S5w"
client = OpenAI(base_url=agent_endpoint, api_key=agent_access_key)
# Global flag to control streaming
stop_flag = {"stop": False}
# Store reasoning context for export
REASONING_CONTEXT = ""
def stop_streaming():
"""Sets the stop flag to True to interrupt the streaming response."""
stop_flag["stop"] = True
def export_chat(history):
"""Exports the chat history to a formatted text file."""
if not history:
return None
timestamp = datetime.now().strftime("%Y%m%d_%H%M%S")
filename = f"chat_history_{timestamp}.txt"
formatted_chat = ""
for user_msg, bot_msg in history:
formatted_chat += f"You: {user_msg}\n"
formatted_chat += f"Bot: {bot_msg}\n\n"
# Add reasoning context to the export if it exists
if REASONING_CONTEXT:
formatted_chat += "\n" + "="*20 + "\n"
formatted_chat += "Last Reasoning Context:\n"
formatted_chat += "="*20 + "\n\n"
formatted_chat += REASONING_CONTEXT
with open(filename, "w", encoding="utf-8") as f:
f.write(formatted_chat)
return filename
def policy_chat(message, history):
"""
Single stream chat with real-time thinking process and a stop button.
"""
global REASONING_CONTEXT
# Reset stop flag at the beginning of a new request
stop_flag["stop"] = False
# 1. Show thinking indicator and stop button
yield {
chatbot: history,
thinking_indicator: gr.update(visible=True),
reasoning_accordion: gr.update(visible=False, value=""),
stop_btn: gr.update(visible=True),
send_btn: gr.update(interactive=False)
}
# Add user message and empty assistant response to history
history = history + [[message, ""]]
yield {
chatbot: history,
thinking_indicator: gr.update(visible=True),
reasoning_accordion: gr.update(visible=False, value=""),
stop_btn: gr.update(visible=True),
send_btn: gr.update(interactive=False)
}
try:
# 2. Simulate reasoning (this would be your retrieval logic integrated with DigitalOcean agent)
REASONING_CONTEXT = (
"### Retrieved Context\n\n"
"1. **Document:** `policy_document_A.pdf` (Page 17)\n"
" - **Content:** 'The primary objective for renewable energy is to increase its share in the national grid by 20% by the year 2030.'\n"
"2. **Document:** `strategy_paper_B.pdf` (Page 5)\n"
" - **Content:** 'Energy efficiency measures will be enforced through new building codes and industrial standards.'\n"
)
# Show reasoning and hide thinking indicator
yield {
chatbot: history,
thinking_indicator: gr.update(visible=False),
reasoning_accordion: gr.update(visible=False, value=REASONING_CONTEXT),
stop_btn: gr.update(visible=True),
send_btn: gr.update(interactive=False)
}
# Create streaming chat completion using DigitalOcean agent
stream = client.chat.completions.create(
model="n/a", # DigitalOcean agent handles routing
messages=[
{"role": "system", "content": "The data must be returned verbatim. Please be quite detailed and include all information. You are new to the analysis of policy documents, hence you need to be objective in retrieving information, and it is not expected that you will analyse and interpret the information."},
*[{"role": "user", "content": u} if i % 2 == 0 else {"role": "assistant", "content": b}
for i, (u, b) in enumerate(history[:-1])], # exclude current exchange
{"role": "user", "content": message},
],
extra_body={"include_retrieval_info": True},
stream=True,
)
# Stream response content in real-time
response_text = ""
for chunk in stream:
# Check if the stop flag has been set
if stop_flag["stop"]:
response_text += "\n\n⛔ **Streaming stopped by user.**"
history[-1][1] = response_text
yield {
chatbot: history,
thinking_indicator: gr.update(visible=False),
reasoning_accordion: gr.update(visible=False, value=REASONING_CONTEXT),
stop_btn: gr.update(visible=True),
send_btn: gr.update(interactive=False)
}
break # Exit the loop
delta = chunk.choices[0].delta
if delta and delta.content:
response_text += delta.content
# Update the last message in history with streaming content
history[-1][1] = response_text
yield {
chatbot: history,
thinking_indicator: gr.update(visible=False),
reasoning_accordion: gr.update(visible=False, value=REASONING_CONTEXT),
stop_btn: gr.update(visible=True),
send_btn: gr.update(interactive=False)
}
except Exception as e:
# Handle errors by updating the assistant message
history[-1][1] = f"⚠️ Error: {str(e)}"
yield {
chatbot: history,
thinking_indicator: gr.update(visible=False),
reasoning_accordion: gr.update(visible=False, value=REASONING_CONTEXT),
stop_btn: gr.update(visible=False),
send_btn: gr.update(interactive=True)
}
finally:
# Hide the stop button and re-enable send button once streaming is complete or stopped
yield {
chatbot: history,
thinking_indicator: gr.update(visible=False),
reasoning_accordion: gr.update(visible=False, value=REASONING_CONTEXT),
stop_btn: gr.update(visible=False),
send_btn: gr.update(interactive=True)
}
with gr.Blocks(theme=gr.themes.Soft(primary_hue="blue", secondary_hue="gray")) as demo:
gr.Markdown("# 🤖 Policy-Agent Chatbot\nAsk me about policies. I'll stream responses and show my reasoning.")
with gr.Row():
with gr.Column(scale=3):
chatbot = gr.Chatbot(height=600, label="Chat Window", show_copy_button=True)
thinking_indicator = gr.Markdown("🤔 Thinking...", visible=False)
reasoning_accordion = gr.Markdown(
"",
visible=False,
label="Visualise Reasoning (Retrieved Context)"
)
with gr.Column(scale=1):
export_btn = gr.Button("Export Chat")
export_file = gr.File(label="Download Chat History", interactive=False)
with gr.Row():
msg = gr.Textbox(
placeholder="Type your question and press Enter or click Send...",
scale=4,
show_label=False
)
send_btn = gr.Button("Send", scale=1)
with gr.Row():
stop_btn = gr.Button("⛔ Stop Streaming", visible=False)
clear_btn = gr.Button("Clear Chat")
# Define event handlers
def on_submit(message, history):
yield from policy_chat(message, history)
# Combine all UI updates into outputs list
chat_outputs = [chatbot, thinking_indicator, reasoning_accordion, stop_btn, send_btn]
# Wire up components
msg.submit(on_submit, [msg, chatbot], chat_outputs)
send_btn.click(on_submit, [msg, chatbot], chat_outputs)
# After submission, clear the textbox
msg.submit(lambda: "", None, msg, queue=False)
send_btn.click(lambda: "", None, msg, queue=False)
stop_btn.click(stop_streaming, None, None, queue=False)
clear_btn.click(lambda: ([], "", None), None, [chatbot, reasoning_accordion, export_file], queue=False)
export_btn.click(export_chat, chatbot, export_file)
if __name__ == "__main__":
demo.launch(debug=True, height=800) |