openfree commited on
Commit
8458849
ยท
verified ยท
1 Parent(s): 9407149

Update app.py

Browse files
Files changed (1) hide show
  1. app.py +93 -13
app.py CHANGED
@@ -258,7 +258,7 @@ class Demo:
258
 
259
  async def generation_code(self, query: Optional[str], _setting: Dict[str, str], _history: Optional[History]):
260
  if not query or query.strip() == '':
261
- query = random.choice(DEMO_LIST)['description']
262
 
263
  if _history is None:
264
  _history = []
@@ -281,8 +281,9 @@ class Demo:
281
  openai_messages.append({"role": "user", "content": query})
282
 
283
  try:
 
284
  yield [
285
- "Generating code...",
286
  _history,
287
  None,
288
  gr.update(active_key="loading"),
@@ -294,28 +295,28 @@ class Demo:
294
  try:
295
  async for content in try_claude_api(system_message, claude_messages):
296
  yield [
297
- content,
298
  _history,
299
  None,
300
  gr.update(active_key="loading"),
301
  gr.update(open=True)
302
  ]
303
  await asyncio.sleep(0)
304
- collected_content = content
305
-
306
  except Exception as claude_error:
307
  print(f"Falling back to OpenAI API due to Claude error: {str(claude_error)}")
308
 
309
  async for content in try_openai_api(openai_messages):
310
  yield [
311
- content,
312
  _history,
313
  None,
314
  gr.update(active_key="loading"),
315
  gr.update(open=True)
316
  ]
317
  await asyncio.sleep(0)
318
- collected_content = content
319
 
320
  if collected_content:
321
  _history = messages_to_history([
@@ -325,13 +326,13 @@ class Demo:
325
  'content': collected_content
326
  }])
327
 
328
- # code_drawer๋ฅผ ๋‹ซ๋„๋ก ์ˆ˜์ •
329
  yield [
330
  collected_content,
331
  _history,
332
  send_to_sandbox(remove_code_block(collected_content)),
333
  gr.update(active_key="render"),
334
- gr.update(open=False) # code_drawer๋ฅผ ๋‹ซ์Œ
335
  ]
336
 
337
  else:
@@ -483,9 +484,7 @@ def create_main_interface():
483
 
484
  with demo:
485
  with gr.Tabs(elem_classes="main-tabs") as tabs:
486
- # MOUSE ํƒญ
487
  with gr.Tab("Visual AI Assistant", elem_id="mouse-tab", elem_classes="mouse-tab"):
488
-
489
  history = gr.State([])
490
  setting = gr.State({
491
  "system": SystemPrompt,
@@ -494,8 +493,89 @@ def create_main_interface():
494
  with ms.Application() as app:
495
  with antd.ConfigProvider():
496
  # Drawer ์ปดํฌ๋„ŒํŠธ๋“ค
497
- with antd.Drawer(open=False, title="Thinking", placement="left", width="750px") as code_drawer:
498
- code_output = legacy.Markdown()
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
499
 
500
  with antd.Drawer(open=False, title="history", placement="left", width="900px") as history_drawer:
501
  history_output = legacy.Chatbot(show_label=False, flushing=False, height=960, elem_classes="history_chatbot")
 
258
 
259
  async def generation_code(self, query: Optional[str], _setting: Dict[str, str], _history: Optional[History]):
260
  if not query or query.strip() == '':
261
+ query = get_random_placeholder()
262
 
263
  if _history is None:
264
  _history = []
 
281
  openai_messages.append({"role": "user", "content": query})
282
 
283
  try:
284
+ # ๋กœ๋”ฉ ์‹œ์ž‘
285
  yield [
286
+ "", # ๋นˆ ๋ฌธ์ž์—ด๋กœ ๋ณ€๊ฒฝ (์ฝ”๋“œ ์ถœ๋ ฅํ•˜์ง€ ์•Š์Œ)
287
  _history,
288
  None,
289
  gr.update(active_key="loading"),
 
295
  try:
296
  async for content in try_claude_api(system_message, claude_messages):
297
  yield [
298
+ "", # ๋นˆ ๋ฌธ์ž์—ด๋กœ ๋ณ€๊ฒฝ (์ฝ”๋“œ ์ถœ๋ ฅํ•˜์ง€ ์•Š์Œ)
299
  _history,
300
  None,
301
  gr.update(active_key="loading"),
302
  gr.update(open=True)
303
  ]
304
  await asyncio.sleep(0)
305
+ collected_content = content
306
+
307
  except Exception as claude_error:
308
  print(f"Falling back to OpenAI API due to Claude error: {str(claude_error)}")
309
 
310
  async for content in try_openai_api(openai_messages):
311
  yield [
312
+ "", # ๋นˆ ๋ฌธ์ž์—ด๋กœ ๋ณ€๊ฒฝ (์ฝ”๋“œ ์ถœ๋ ฅํ•˜์ง€ ์•Š์Œ)
313
  _history,
314
  None,
315
  gr.update(active_key="loading"),
316
  gr.update(open=True)
317
  ]
318
  await asyncio.sleep(0)
319
+ collected_content = content
320
 
321
  if collected_content:
322
  _history = messages_to_history([
 
326
  'content': collected_content
327
  }])
328
 
329
+ # ์ตœ์ข… ๊ฒฐ๊ณผ๋งŒ ํ‘œ์‹œ
330
  yield [
331
  collected_content,
332
  _history,
333
  send_to_sandbox(remove_code_block(collected_content)),
334
  gr.update(active_key="render"),
335
+ gr.update(open=False)
336
  ]
337
 
338
  else:
 
484
 
485
  with demo:
486
  with gr.Tabs(elem_classes="main-tabs") as tabs:
 
487
  with gr.Tab("Visual AI Assistant", elem_id="mouse-tab", elem_classes="mouse-tab"):
 
488
  history = gr.State([])
489
  setting = gr.State({
490
  "system": SystemPrompt,
 
493
  with ms.Application() as app:
494
  with antd.ConfigProvider():
495
  # Drawer ์ปดํฌ๋„ŒํŠธ๋“ค
496
+ with antd.Drawer(open=False, title="AI is Creating...", placement="left", width="750px") as code_drawer:
497
+ gr.HTML("""
498
+ <div class="thinking-container">
499
+ <div class="thinking-animation">
500
+ <lottie-player
501
+ src="https://assets2.lottiefiles.com/packages/lf20_szviypry.json"
502
+ background="transparent"
503
+ speed="1"
504
+ style="width: 300px; height: 300px;"
505
+ loop
506
+ autoplay>
507
+ </lottie-player>
508
+ </div>
509
+
510
+ <div class="thinking-tips" id="thinkingTips">
511
+ <h3>Did you know?</h3>
512
+ <div class="tip-content"></div>
513
+ </div>
514
+
515
+ <style>
516
+ .thinking-container {
517
+ text-align: center;
518
+ padding: 20px;
519
+ font-family: 'Arial', sans-serif;
520
+ }
521
+
522
+ .thinking-animation {
523
+ margin-bottom: 30px;
524
+ }
525
+
526
+ .thinking-tips {
527
+ background: #f5f5f5;
528
+ padding: 20px;
529
+ border-radius: 10px;
530
+ margin-top: 20px;
531
+ }
532
+
533
+ .thinking-tips h3 {
534
+ color: #1890ff;
535
+ margin-bottom: 15px;
536
+ }
537
+
538
+ .tip-content {
539
+ font-size: 16px;
540
+ line-height: 1.6;
541
+ color: #333;
542
+ }
543
+ </style>
544
+
545
+ <script src="https://unpkg.com/@lottiefiles/lottie-player@latest/dist/lottie-player.js"></script>
546
+ <script>
547
+ const tips = [
548
+ "MOUSE-I can create interactive visualizations using Chart.js and D3.js! ๐Ÿ“Š",
549
+ "Our AI understands and implements modern design principles for better user experience. ๐ŸŽจ",
550
+ "Every visualization is responsive and works on all devices! ๐Ÿ“ฑ",
551
+ "We use advanced animations to make your data come alive! โœจ",
552
+ "MOUSE-I can create beautiful presentations in multiple styles! ๐ŸŽฏ",
553
+ "Your visualization is being crafted with attention to every detail! ๐Ÿ”",
554
+ "We're adding interactive elements to make your content engaging! ๐ŸŽฎ",
555
+ "MOUSE-I is optimizing the layout for the best visual experience! ๐ŸŽช"
556
+ ];
557
+
558
+ function updateTip() {
559
+ const tipElement = document.querySelector('.tip-content');
560
+ if (tipElement) {
561
+ const randomTip = tips[Math.floor(Math.random() * tips.length)];
562
+ tipElement.innerHTML = randomTip;
563
+ }
564
+ }
565
+
566
+ // ์ดˆ๊ธฐ ํŒ ์„ค์ •
567
+ updateTip();
568
+
569
+ // 3์ดˆ๋งˆ๋‹ค ํŒ ์—…๋ฐ์ดํŠธ
570
+ setInterval(updateTip, 3000);
571
+ </script>
572
+ </div>
573
+ """)
574
+ code_output = legacy.Markdown(visible=False) # ์ฝ”๋“œ ์ถœ๋ ฅ์€ ์ˆจ๊น€ ์ฒ˜๋ฆฌ
575
+
576
+ with antd.Drawer(open=False, title="history", placement="left", width="900px") as history_drawer:
577
+ history_output = legacy.Chatbot(show_label=False, flushing=False, height=960, elem_classes="history_chatbot")
578
+
579
 
580
  with antd.Drawer(open=False, title="history", placement="left", width="900px") as history_drawer:
581
  history_output = legacy.Chatbot(show_label=False, flushing=False, height=960, elem_classes="history_chatbot")