Spaces:
Sleeping
Sleeping
File size: 23,210 Bytes
02b86d2 3d4cf60 71e46b5 3d4cf60 71e46b5 3d4cf60 71e46b5 3d4cf60 8fda4c7 3d4cf60 8fda4c7 3d4cf60 02b86d2 3d4cf60 02b86d2 3d4cf60 02b86d2 3d4cf60 71e46b5 3d4cf60 71e46b5 3d4cf60 a4dcc3b 3d4cf60 71e46b5 3d4cf60 456993f 71e46b5 456993f 3d4cf60 02b86d2 3d4cf60 71e46b5 3d4cf60 456993f 3d4cf60 02b86d2 3d4cf60 02b86d2 3d4cf60 02b86d2 3d4cf60 02b86d2 3d4cf60 db19d6b 3d4cf60 02b86d2 3d4cf60 02b86d2 3d4cf60 02b86d2 3d4cf60 02b86d2 3d4cf60 02b86d2 3d4cf60 02b86d2 3d4cf60 02b86d2 3d4cf60 db19d6b 3d4cf60 db19d6b edba66d 02b86d2 edba66d 02b86d2 3d4cf60 02b86d2 9a5e694 02b86d2 3d4cf60 02b86d2 db19d6b 02b86d2 3d4cf60 02b86d2 3d4cf60 02b86d2 db19d6b 02b86d2 db19d6b 02b86d2 3d4cf60 02b86d2 3d4cf60 02b86d2 | 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 388 389 390 391 392 393 394 395 396 397 398 399 400 401 402 403 404 405 406 407 408 409 410 411 412 413 414 415 416 417 418 419 420 421 422 423 424 425 426 427 428 429 430 431 432 433 434 435 436 437 438 439 440 441 442 443 444 445 446 447 448 449 450 451 452 453 454 455 456 457 458 459 460 461 462 463 464 465 466 467 468 469 470 471 472 473 474 475 476 477 478 479 480 481 482 483 484 485 486 487 488 489 490 491 492 493 494 495 496 497 498 499 500 501 502 503 504 505 506 507 508 509 510 511 512 513 514 515 516 517 518 519 520 521 522 523 524 525 526 527 528 529 530 531 532 533 534 535 536 537 538 539 540 541 542 543 544 545 546 547 548 549 550 551 552 553 554 555 556 557 558 559 560 561 562 563 564 565 566 567 568 569 570 571 572 573 574 575 576 577 578 579 580 581 582 583 584 585 586 587 588 589 590 591 592 593 594 595 596 597 598 599 | import asyncio
import logging
import uuid
from semantic_kernel import Kernel
from semantic_kernel.connectors.ai.open_ai import AzureChatCompletion
from semantic_kernel.functions import kernel_function
from azure.cosmos import CosmosClient
from semantic_kernel.connectors.ai.open_ai.prompt_execution_settings.azure_chat_prompt_execution_settings import (
AzureChatPromptExecutionSettings,
)
from semantic_kernel.connectors.ai.function_choice_behavior import FunctionChoiceBehavior
from models.converterModels import PowerConverter
from plugins.converterPlugin import ConverterPlugin
from plugins.chatMemoryPlugin import ChatMemoryPlugin
import os
import gradio as gr
from dotenv import load_dotenv
load_dotenv()
logger = logging.getLogger("kernel")
logger.setLevel(logging.DEBUG)
handler = logging.StreamHandler()
handler.setFormatter(logging.Formatter(
"[%(asctime)s - %(name)s:%(lineno)d - %(levelname)s] %(message)s"
))
logger.addHandler(handler)
# Initialize Semantic Kernel
kernel = Kernel()
# Add Azure OpenAI Chat Service
kernel.add_service(AzureChatCompletion(
service_id="chat",
deployment_name=os.getenv("AZURE_OPENAI_DEPLOYMENT_NAME"),
endpoint=os.getenv("AZURE_OPENAI_ENDPOINT"),
api_key=os.getenv("AZURE_OPENAI_KEY")
))
class NL2SQLPlugin:
@kernel_function(name="generate_sql", description="Generate Cosmos DB SQL query")
async def generate_sql(self, question: str) -> str:
sql = await self._generate_sql_helper(question)
# Block DML commands first
if any(command in sql.upper() for command in ["DELETE", "UPDATE", "INSERT", "SET"]):
return "Invalid operation"
if "FROM converters c" in sql:
sql = sql.replace("FROM converters c", "FROM c")
if "SELECT *" not in sql and "FROM c" in sql:
sql = sql.replace("SELECT c.*,", "SELECT *")
sql = sql.replace("SELECT c.*", "SELECT *")
sql = sql.replace("SELECT c", "SELECT *")
return sql
async def _generate_sql_helper(self, question: str) -> str:
from semantic_kernel.contents import ChatHistory
chat_service = kernel.get_service("chat")
chat_history = ChatHistory()
chat_history.add_user_message(f"""Convert to Cosmos DB SQL: {question}
Collection: converters (alias 'c')
Fields:
- c.type (e.g., '350mA','180mA','700mA','24V DC','48V') - for queries related to current (mA) always refer to c.type
- c.artnr (numeric (int) article number e.g., 930546)
- c.output_voltage_v: dictionary with min/max values for output voltage
- c.output_voltage_v.min (e.g., 15)
- c.output_voltage_v.max (e.g., 40)
- c.nom_input_voltage_v: dictionary with min/max values for input voltage
- c.nom_input_voltage_v.min (e.g., 198)
- c.nom_input_voltage_v.max (e.g., 264)
- c.lamps: dictionary with min/max values for lamp types for this converter
- c.lamps["lamp_name"].min (e.g., 1)
- c.lamps["lamp_name"].max (e.g., 10)
- c.class (safety class)
- c.dimmability (e.g. if not dimmable 'NOT DIMMABLE'. if supports dimming, 'DALI/TOUCHDIM','MAINS DIM LC', '1-10V','CASAMBI' etc)
- c.listprice (e.g., 58)
- c.size (e.g., '150x30x30')
- c.dimlist_type (e.g., 'DALI')
- c.pdf_link (link to product PDF)
- c.converter_description (e.g., 'POWERLED CONVERTER REMOTE 180mA 8W IP20 1-10V')
- c.ip (Ingress Protection, integer values e.g., 20,67)
- c.efficiency_full_load (e.g., 0.9)
- c.name (e.g., 'Power Converter 350mA')
- c.unit (e.g., 'PC')
- c.strain_relief (e.g., "NO", "YES")
Example document for reference:
c = {{
"id": "8797fff0-e0a8-4e23-aad0-06209881b1d3",
"type": "350mA",
"artnr": 984500,
"converter_description": "POWERLED CONVERTER REMOTE 350mA 18W IP20 DALI/TOUCHDIM",
"strain_relief": "YES",
"location": "INDOOR",
"dimmability": "DALI/TOUCHDIM",
"ccr_amplitude": "YES",
"efficiency_full_load": 0.85,
"ip": 20,
"class": 2,
"nom_input_voltage_v": {{"min": 220, "max": 240}},
"output_voltage_v": {{"min": 9, "max": 52}},
"barcode": "54 15233 15690 8",
"name": "POWERLED REMOTE CONVERTER (18.2W) TOUCH DALI DIM 350mA",
"listprice": 47,
"unit": "PC",
"pdf_link": "...",
"lamps": {{
"Single led XPE": {{"min": 3, "max": 15}},
"Thinksmall/floorspot WC luxeon MX": {{"min": 1, "max": 4}},
"*MIX 6 monocolor": {{"min": 1, "max": 2}},
"Cedrus quantum": {{"min": 1, "max": 2}},
"*MIX 6 halosphere": {{"min": 1, "max": 2}},
"MIX 13 monocolor": {{"min": 1, "max": 1}},
"MIX 13 halosphere": {{"min": 1, "max": 1}},
"ORBITAL monocolor": {{"min": 1, "max": 1}},
"ORBITAL halosphere": {{"min": 1, "max": 1}},
"BeaufortΒ²": {{"min": 1, "max": 1}},
"Beaufort": {{"min": 1, "max": 1}},
"Haloled": {{"min": 1, "max": 4}},
"B4": {{"min": 1, "max": 4}},
"MIX 26 monocolor": {{"min": 1, "max": 1}},
"*BOA WC": {{"min": 1, "max": 5}}
}},
"size": "160*42*30"
}}
SQL Guidelines (if needed):
- Always use SELECT * and never individual fields
- When current like 350mA is detected, always query the c.type field
- Always refer to fields in SELECT or WHERE clause using c.<field_name>
- Do NOT use LIMIT. Instead use TOP <value> in SELECT statement like SELECT TOP 1 instead of LIMIT 1
- For exact matches use: WHERE c.[field] = value
- For ranges use: WHERE c.[field].min = X AND c.[field].max = Y
- Check for dimmability support by using either != "NOT DIMMABLE" or = "NOT DIMMABLE"
- Do not use subqueries or nested queries
- Do not use AS and cast key names
- For lamp compatibility: Use WHERE IS_DEFINED(c.lamps["lamp_name"]) to check if a specific lamp is supported, or WHERE IS_DEFINED(c.lamps) for any lamp support.
Examples:
- What is the price of 40063 : SELECT * FROM c WHERE c.artnr=40063
- Give me converters with an output voltage range of exactly 2-25 : SELECT * FROM c WHERE c.output_voltage_v.min=2 AND c.output_voltage_v.max=25
- Find converters with an input voltage range of exactly 90-264 : SELECT * FROM c WHERE c.nom_input_voltage_v.min = 90 AND c.nom_input_voltage_v.max = 264
- Find converters that support a specific lamp type (e.g., "B4") : SELECT * FROM c WHERE IS_DEFINED(c.lamps["B4"])
- Find converters that support any lamp (check for lamp compatibility) : SELECT * FROM c WHERE IS_DEFINED(c.lamps)
- Find converters with a specific IP rating (e.g., 67): SELECT * FROM c WHERE c.ip = 67
- List of 350mA converters compatible with Haloled: SELECT * FROM c WHERE IS_DEFINED(c.lamps["Haloled"]) ANlist oD c.type="350mA"
- List 700mA drivers: SELECT * FROM c WHERE c.type="700mA"
- Most efficient ip20 driver: SELECT TOP 1 FROM c WHERE c.ip=20 ORDER BY c.efficiency_full_load DESC
Return ONLY SQL without explanations""")
response = await chat_service.get_chat_message_content(
chat_history=chat_history,
settings=AzureChatPromptExecutionSettings()
)
return str(response)
# Register plugins
kernel.add_plugin(ConverterPlugin(logger=logger), "CosmosDBPlugin")
kernel.add_plugin(ChatMemoryPlugin(logger=logger), "ChatMemoryPlugin")
kernel.add_plugin(NL2SQLPlugin(), "NL2SQLPlugin")
# Updated query handler using function calling
async def handle_query(user_input: str, session_state:str):
settings = AzureChatPromptExecutionSettings(
function_choice_behavior=FunctionChoiceBehavior.Auto(auto_invoke=True)
)
ARTNR_PATTERN = r'\b(?:\d{5}|\d{6})\b'
prompt = f"""
You are a product catalog customer service chatbot for TAL BV. Answer questions about converters, their specifications and lamps. Process this user query:
{user_input}
artnr Pattern: {ARTNR_PATTERN}
artnrs are usually numbers like 40057 or 930565
Available functions:
- generate_sql: Creates SQL queries (use only for complex queries or schema keywords)
- query_converters: Executes SQL queries
- get_compatible_lamps: Simple artnr-based lamp queries
- get_converters_by_lamp_type: Simple lamp type searches
- get_lamp_limits: Simple artnr+lamp combinations
- get_converters_by_dimming: use when question contains dimming types WITHOUT artnr (if query contains mains c, dali, 1-10v, mains)
- get_converters_by_voltage_current: use for questions about input or output voltage
Decision Flow:
1. Identify synonyms :
output voltage = voltage forward = forward voltage = Vf
Driver = ledconverter = converter = power supply = gear
lamps = luminares
ip = Ingress Protection and NOT INPUT VOLTAGE
2. Check for explicit dimming types (dali/1-10V/mains/casambi):
- If found β use get_converters_by_dimming
- Include lamp_type parameter if lamp is mentioned
3. Use simple functions if query matches these patterns:
- "lamps for [artnr]" β get_compatible_lamps
- "converters for [lamp type]" β get_converters_by_lamp_type
- "min/max [lamp] for [artnr]", "most [lamp]/ least [lamp]" β get_lamp_limits
- "drivers on 24V output" β get_converters_by_voltage_current
- "drivers on 350ma" β get_converters_by_voltage_current
4. Use SQL generation ONLY when:
- Query contains schema keywords: price, type, ip, efficiency, size, class, strain relief, lifecycle,
- Avoid using SQL generation for lamp related questions
- Combining multiple conditions (AND/OR/NOT)
- Needs complex filtering/sorting
- Requesting technical specifications for a specific converter like "dimming type of converter [artnr]", "size of [artnr]"
- You CANNOT INSERT DELETE or UPDATE. Return a message saying you cannot help with that immediately.
5. NEVER
- use get_converters_by_dimming when artnr Pattern is detected
- use get_converters_by_lamp_type when dimming type like dali, mains is mentioned
- use "ipXX" as input_voltage parameter in get_converters_by_voltage_current
- interpret "ip" as input voltage (IP = Ingress Protection)
6. For IP ratings:
- Extract using regex: r'ip[\s]?(\d+)'
- Use SQL: SELECT * FROM c WHERE c.ip = X
- NEVER route to voltage-related functions
6. If you cannot identify any relevant keywords, respond with a friendly message clarifying what you are and what they can ask for."
7. If no results are recieved, give an apologetic reason. Never respond with SQL query suggestions.
Examples:
User: "Show IP67 converters under β¬100" β generate_sql
User: "What lamps are compatible with 930560?" β get_compatible_lamps
User: "List of 1p20 drivers for haloled single on track" β get_converters_by_lamp_type(lamp_type="haloled single on track") β inspect returned converters
User: "List 700mA drivers with ip20 rating" β get_converters_by_voltage_current(current = "700mA") β inspect returned converters
User: "List of 350mA drivers" β get_converters_by_voltage_current(current = "350mA")
User: "What converters are compatible with haloled lamps?" β get_converters_by_lamp_type
User: "Voltage range for 930562" β generate_sql
User: "Dimming type of 930581" β generate_sql
User: "List of dali drivers on 24V output?" β get_converters_by_dimming"
User: 'List of 24V drivers for ledline medium power β get_converters_by_dimming(dimming_type=None, lamp_type="ledline medium power",voltage_current="24V")(or) get_converters_by_lamp_type(lamp_type="ledline medium power") β inspect returned converters '
User: 'Which converter supports the most haloled lamps' β get_converters_by_lamp_type(lamp_type="haloled) β get_lamp_limits for each converter returned
"""
try:
result = await kernel.invoke_prompt(
prompt=prompt,
settings=settings
)
metadata = result.model_dump().get("metadata", {})
messages = metadata.get("messages", {})
message_list = messages.get("messages", [])
if len(message_list) > 2 and message_list[2].get("items") and len(message_list[2]["items"]) > 0:
func_name = message_list[2]["items"][0].get("name")
else:
func_name = None
# func_name = result.model_dump()["metadata"]["messages"]["messages"][2]["items"][0]["name"] if result.model_dump()["metadata"]["messages"]["messages"][2]["items"][0]["name"] else None
# print(func_name)
log_func = kernel.get_function("ChatMemoryPlugin", "log_interaction")
await log_func.invoke(
kernel=kernel,
session_id=session_state,
question=user_input,
function_used=func_name,
answer=str(result)
)
return str(result)
except (KeyError, IndexError, AttributeError):
func_name = None
except Exception as e:
# Handle errors properly
error_func = kernel.get_function("ChatMemoryPlugin", "log_interaction")
await error_func.invoke(
kernel=kernel,
session_id=session_state,
question=user_input,
function_used="error",
answer=str(e)
)
raise
import gradio as gr
# Create a custom theme based on your brand colors
custom_theme = gr.themes.Base(
primary_hue="red",
secondary_hue="amber",
font=[gr.themes.GoogleFont('Inter'), 'ui-sans-serif', 'system-ui', 'sans-serif'],
font_mono=[gr.themes.GoogleFont('Roboto Mono'), 'ui-monospace', 'Consolas', 'monospace'],
)
# Minimal CSS for positioning only (avoiding styling)
minimal_css = """
#chatbot-toggle-btn {
position: fixed;
bottom: 30px;
right: 30px;
z-index: 10001;
}
#theme-toggle-btn {
position: fixed !important;
top: 20px;
right: 20px;
z-index: 10002;
border-radius: 50% !important;
width: 50px !important;
height: 50px !important;
min-width: 50px !important;
}
#chatbot-panel {
position: fixed;
bottom: 5vh;
right: 2vw;
z-index: 10000;
width: 95vw;
max-width: 600px;
height: 90vh;
max-height: 700px;
}
#chat-header {
width: calc(100% + 20px);
box-sizing: border-box;
margin: 0 -10px;
margin-bottom: -7px !important;
}
.gr-chatbot {
margin-top: -7px;
width: 100%;
box-sizing: border-box;
}
#chat-header img {
border-radius: 50%;
width: 50px;
height: 50px;
filter: brightness(0) invert(1);
}
#chatbot-toggle-btn {
right: 30px;
bottom: 30px;
width: 48px;
height: 48px;
font-size: 24px;
}
@media (max-width: 600px) {
#chatbot-panel {
width: 100vw;
height: 100vh;
right: 0;
bottom: 0;
}
#theme-toggle-btn {
top: 15px;
right: 15px;
width: 45px !important;
height: 45px !important;
}
"""
def format_faq_question(question):
"""Format FAQ questions with proper capitalization and punctuation"""
# Remove extra whitespace
question = question.strip()
# Capitalize first letter
if question:
question = question[0].upper() + question[1:]
# Handle specific terms that should be capitalized
replacements = {
'ma ': 'mA ', # milliamps
'haloled': 'Haloled',
'boa ': 'BOA ',
'eur': 'EUR',
'v ': 'V ', # volts
'dali': 'DALI',
'ip': 'IP'
}
for old, new in replacements.items():
question = question.replace(old, new)
# Add question mark if it's a question and doesn't end with punctuation
question_words = ['what', 'which', 'how', 'where', 'when', 'why', 'can', 'do', 'does']
if any(question.lower().startswith(word) for word in question_words):
if not question.endswith(('?', '.', '!')):
question += '?'
return question
panel_visible = False
async def get_chatbot_examples():
"""Fetch FAQs and format them as Gradio chatbot examples"""
try:
# Get your chat memory plugin instance
get_faqs_func = kernel.get_function("ChatMemoryPlugin", "get_semantic_faqs")
# Call the function to get FAQs
result = await get_faqs_func.invoke(kernel=kernel, limit=6, threshold=0.1)
faqs = result.value if hasattr(result, 'value') else result
# Format as Gradio examples
examples = []
for faq in faqs:
faq = format_faq_question(faq)
examples.append({
"text": faq,
"display_text": faq
})
return examples
except Exception as e:
logger.error(f"Failed to load FAQ examples: {str(e)}")
return []
def get_examples_sync():
try:
loop = asyncio.get_event_loop()
return loop.run_until_complete(get_chatbot_examples())
except:
# If no event loop, create one
return asyncio.run(get_chatbot_examples())
def toggle_panel():
global panel_visible
panel_visible = not panel_visible
return gr.Column(visible=panel_visible)
# Apply the custom theme to your Blocks
with gr.Blocks(theme=custom_theme, css=minimal_css) as demo:
faqs = gr.State(get_examples_sync())
session_id = gr.State(str(uuid.uuid4()))
# Toggle button
toggle_btn = gr.Button(
"π¬",
elem_id="chatbot-toggle-btn",
variant="primary",
size="sm"
)
theme_toggle = gr.Button(
"π",
elem_id="theme-toggle-btn",
variant="secondary",
scale=0,
min_width=50
)
# Chat panel
chat_panel = gr.Column(visible=panel_visible, elem_id="chatbot-panel")
with chat_panel:
# Header - Remove the gr.Row wrapper and place directly in the column
gr.HTML("""
<div id='chat-header' style='
background-color: var(--button-primary-background-fill);
color: var(--button-primary-text-color);
padding: 30px;
font-weight: bold;
font-size: 30px;
display: flex;
align-items: center;
box-sizing: border-box;
border-radius: var(--radius-md);'>
<img src="https://www.svgrepo.com/download/490283/pixar-lamp.svg"
style="width: 50px; height: 50px; border-radius: 50%; margin-right: 15px; filter: brightness(0) invert(1);" />
Lofty the TAL Bot
</div>
""")
# Chatbot with theme styling
chatbot = gr.Chatbot(
type="messages",
height=400,
show_copy_button=True,
container=False,
resizable=True,
examples=faqs.value
)
# Input with theme styling
with gr.Row():
msg = gr.Textbox(
placeholder="Type your question here...",
container=False,
scale=4
)
send = gr.Button(
"Send",
variant="primary",
scale=1
)
def toggle_theme():
# This uses Gradio's built-in JavaScript functionality
return gr.update(), gr.update()
theme_toggle.click(
fn=None,
js="""
() => {
// Toggle dark mode using Gradio's built-in functionality
const isDark = document.body.classList.contains('dark');
if (isDark) {
document.body.classList.remove('dark');
// Update button text
const buttons = document.querySelectorAll('button');
buttons.forEach(btn => {
if (btn.textContent.trim() === 'βοΈ') {
btn.textContent = 'π';
}
});
localStorage.setItem('gradio-theme', 'light');
} else {
document.body.classList.add('dark');
// Update button text
const buttons = document.querySelectorAll('button');
buttons.forEach(btn => {
if (btn.textContent.trim() === 'π') {
btn.textContent = 'βοΈ';
}
});
localStorage.setItem('gradio-theme', 'dark');
}
}
"""
)
# Initialize theme on load
demo.load(
fn=None,
js="""
() => {
// Check saved theme preference
const savedTheme = localStorage.getItem('gradio-theme');
const prefersDark = window.matchMedia('(prefers-color-scheme: dark)').matches;
if (savedTheme === 'dark' || (!savedTheme && prefersDark)) {
document.body.classList.add('dark');
// Update button text
setTimeout(() => {
const buttons = document.querySelectorAll('button');
buttons.forEach(btn => {
if (btn.textContent.trim() === 'π') {
btn.textContent = 'βοΈ';
}
});
}, 100);
}
}
"""
)
def handle_example_select(evt: gr.SelectData):
"""Handle when user clicks on an example"""
examples = faqs.value
if evt.index < len(examples):
selected_example = examples[evt.index]
return selected_example.get("text", "")
return ""
# Connect the example_select event to populate the textbox
chatbot.example_select(
fn=handle_example_select,
outputs=msg
)
# Your existing event handlers
async def respond(message, chat_history):
response = await handle_query(message, session_id.value)
chat_history.append({"role": "user", "content": message})
chat_history.append({"role": "assistant", "content": response})
return "", chat_history
send.click(respond, [msg, chatbot], [msg, chatbot])
msg.submit(respond, [msg, chatbot], [msg, chatbot])
toggle_btn.click(toggle_panel, outputs=chat_panel)
demo.launch()
|