Spaces:
Running
on
Zero
Running
on
Zero
cutechicken
commited on
Commit
โข
0126cba
1
Parent(s):
7773cb1
Update app.py
Browse files
app.py
CHANGED
@@ -580,19 +580,19 @@ def create_demo():
|
|
580 |
label="๋ฐ๋ณต ์ต์ ๐"
|
581 |
)
|
582 |
|
583 |
-
|
584 |
-
|
585 |
-
|
586 |
-
|
587 |
-
|
588 |
-
|
589 |
-
|
590 |
-
|
591 |
-
|
592 |
-
|
593 |
-
|
594 |
-
|
595 |
-
|
596 |
|
597 |
# ์ด๋ฒคํธ ๋ฐ์ธ๋ฉ
|
598 |
msg.submit(
|
|
|
580 |
label="๋ฐ๋ณต ์ต์ ๐"
|
581 |
)
|
582 |
|
583 |
+
# Examples ์์น ์์
|
584 |
+
gr.Examples(
|
585 |
+
examples=[
|
586 |
+
["๋ค์ ์ฝ๋์ ๋ฌธ์ ์ ์ ์ฐพ์๋ด๊ณ ๊ฐ์ ๋ ๋ฒ์ ์ ์ ์ํด์ฃผ์ธ์:\ndef fibonacci(n):\n if n <= 1: return n\n return fibonacci(n-1) + fibonacci(n-2)"],
|
587 |
+
["๋ค์ ์์ด ๋ฌธ์ฅ์ ํ๊ตญ์ด๋ก ๋ฒ์ญํ๊ณ , ์ดํ์ ๋ฌธ๋ฒ์ ํน์ง์ ์ค๋ช
ํด์ฃผ์ธ์: 'The implementation of artificial intelligence in healthcare has revolutionized patient care, yet it raises ethical concerns regarding privacy and decision-making autonomy.'"],
|
588 |
+
["์ฃผ์ด์ง ๋ฐ์ดํฐ๋ฅผ ๋ถ์ํ๊ณ ์ธ์ฌ์ดํธ๋ฅผ ๋์ถํด์ฃผ์ธ์:\n์ฐ๋๋ณ ๋งค์ถ์ก(์ต์)\n2019: 1200\n2020: 980\n2021: 1450\n2022: 2100\n2023: 1890"],
|
589 |
+
["๋ค์ ์๋๋ฆฌ์ค์ ๋ํ SWOT ๋ถ์์ ํด์ฃผ์ธ์: '์ ํต์ ์ธ ์คํ๋ผ์ธ ์์ ์ด ์จ๋ผ์ธ ํ๋ซํผ์ผ๋ก์ ์ ํ์ ๊ณ ๋ ค์ค์
๋๋ค. ๋
์๋ค์ ๋์งํธ ์ฝํ
์ธ ์๋น๊ฐ ์ฆ๊ฐํ๋ ์ํฉ์์ ๊ฒฝ์๋ ฅ์ ์ ์งํ๋ฉด์ ๊ธฐ์กด ๊ณ ๊ฐ์ธต๋ ์งํค๊ณ ์ถ์ต๋๋ค.'"],
|
590 |
+
["๋ค์ ์ํ ๋ฌธ์ ๋ฅผ ๋จ๊ณ๋ณ๋ก ์์ธํ ํ์ดํด์ฃผ์ธ์: 'ํ ์์ ๋์ด๊ฐ ๊ทธ ์์ ๋ด์ ํ๋ ์ ์ฌ๊ฐํ ๋์ด์ 2๋ฐฐ์ผ ๋, ์์ ๋ฐ์ง๋ฆ๊ณผ ์ ์ฌ๊ฐํ์ ํ ๋ณ์ ๊ธธ์ด์ ๊ด๊ณ๋ฅผ ๊ตฌํ์์ค.'"],
|
591 |
+
["๋ค์ SQL ์ฟผ๋ฆฌ๋ฅผ ์ต์ ํํ๊ณ ๊ฐ์ ์ ์ ์ค๋ช
ํด์ฃผ์ธ์:\nSELECT * FROM orders o\nLEFT JOIN customers c ON o.customer_id = c.id\nWHERE YEAR(o.order_date) = 2023\nAND c.country = 'Korea'\nORDER BY o.order_date DESC;"],
|
592 |
+
["๋ค์ ๋ง์ผํ
์บ ํ์ธ์ ROI๋ฅผ ๋ถ์ํ๊ณ ๊ฐ์ ๋ฐฉ์์ ์ ์ํด์ฃผ์ธ์:\n์ด ๋น์ฉ: 5000๋ง์\n๋๋ฌ์ ์: 100๋ง๋ช
\nํด๋ฆญ๋ฅ : 2.3%\n์ ํ์จ: 0.8%\nํ๊ท ๊ตฌ๋งค์ก: 35,000์"],
|
593 |
+
],
|
594 |
+
inputs=msg
|
595 |
+
)
|
596 |
|
597 |
# ์ด๋ฒคํธ ๋ฐ์ธ๋ฉ
|
598 |
msg.submit(
|