| |
| """FinGraph UI Templates and Styling Assets. |
| This module houses all custom CSS and HTML templates used by the main Gradio |
| application to keep the main app.py clean and readable. |
| """ |
|
|
| from typing import Any, Dict |
|
|
| |
| |
| |
|
|
| |
| CUSTOM_CSS: str = """ |
| /* ββ Google Fonts λ‘λ ββ */ |
| @import url('https://fonts.googleapis.com/css2?family=Sora:wght@400;600;700;800&family=JetBrains+Mono:wght@400;500&family=Inter:wght@400;600&display=swap'); |
| |
| /* ββ μ 체 λ°°κ²½ / κΈ°λ³Έ ν°νΈ / νλ©΄ λλΉ νλ ββ */ |
| body, .gradio-container { |
| background-color: #F6F5FA !important; |
| font-family: 'Sora', 'Inter', -apple-system, BlinkMacSystemFont, sans-serif !important; |
| color: #1e3a5f !important; |
| } |
| .gradio-container { |
| max-width: 1400px !important; |
| width: 95% !important; |
| margin: 0 auto !important; |
| } |
| |
| /* ββ Ambient glow ββ */ |
| .ambient-glow { |
| position: fixed; |
| top: 0; left: 0; right: 0; bottom: 0; |
| background: |
| radial-gradient(circle at 80% 10%, rgba(124,58,237,0.05) 0%, transparent 40%), |
| radial-gradient(circle at 20% 90%, rgba(12,217,247,0.05) 0%, transparent 40%); |
| z-index: -1; |
| pointer-events: none; |
| } |
| |
| /* ββ μ¬μ΄λλ° μ 체 컨ν
μ΄λ ββ */ |
| .sidebar-container { |
| border: 1px solid #e2e8f0 !important; |
| border-radius: 12px !important; |
| padding: 16px 16px !important; |
| background: #ffffff !important; |
| min-height: 700px !important; |
| height: 100% !important; |
| box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.04) !important; |
| display: flex !important; |
| flex-direction: column !important; |
| justify-content: flex-start !important; |
| gap: 8px !important; |
| } |
| |
| /* ββ ꡬλΆμ ββ */ |
| .divider { |
| border: none; |
| border-top: 1px solid #e2e8f0; |
| margin: 6px 0 !important; |
| } |
| |
| /* ββ ν¨λ λΌλ²¨ (μΉμ
μ λͺ©) ββ */ |
| .panel-label { |
| font-size: 12.5px !important; |
| font-weight: 700; |
| color: #64748b; |
| text-transform: uppercase; |
| letter-spacing: 0.07em; |
| margin-bottom: 4px !important; |
| margin-top: 2px !important; |
| } |
| |
| /* ββ μλ¨ 2 μΉ΄λ (κ°λ‘ λ°°μΉ) ββ */ |
| .top-cards { |
| display: grid; |
| grid-template-columns: repeat(2, 1fr); |
| gap: 10px; |
| margin-bottom: 4px !important; |
| } |
| .top-card { |
| background: #f8fafc !important; |
| border: 1px solid #e2e8f0 !important; |
| border-radius: 10px !important; |
| padding: 14px 14px 12px !important; |
| } |
| .top-card-lbl { |
| font-size: 11px; |
| font-weight: 600; |
| color: #64748b; |
| margin-bottom: 5px; |
| } |
| .top-card-val { |
| font-size: 22px; |
| font-weight: 800; |
| color: #1e293b; |
| line-height: 1.1; |
| } |
| .top-card-sub { |
| font-size: 10px; |
| color: #94a3b8; |
| margin-top: 3px; |
| } |
| |
| /* ββ μΈμ¬μ΄νΈ ν ββ */ |
| .insight-row { |
| display: grid; |
| grid-template-columns: repeat(2, 1fr); |
| gap: 10px; |
| margin-bottom: 16px; |
| } |
| .insight-card { |
| background: #f0f4ff !important; |
| border: 1px solid #c7d2fe !important; |
| border-radius: 9px !important; |
| padding: 10px 12px !important; |
| } |
| .insight-lbl { |
| font-size: 10px; |
| font-weight: 700; |
| color: #6366f1; |
| text-transform: uppercase; |
| letter-spacing: 0.05em; |
| margin-bottom: 4px; |
| } |
| .insight-val { |
| font-size: 13px; |
| font-weight: 700; |
| color: #1e293b; |
| white-space: nowrap; |
| overflow: hidden; |
| text-overflow: ellipsis; |
| } |
| |
| /* ββ μ£Όμ κΈ°μ ν€μλ λ°°μ§ (λ°°κ²½μ μμ, μ°ν λ³΄λΌ ν
μ€νΈ κ°νΈ) ββ */ |
| .keyword-container { |
| display: flex; |
| flex-wrap: wrap; |
| gap: 6px; |
| margin-bottom: 4px !important; |
| } |
| .keyword-badge { |
| display: inline-block; |
| background: transparent !important; |
| border: 1px solid #ddd6fe !important; |
| border-radius: 9999px !important; |
| padding: 4px 12px !important; |
| font-size: 12.5px !important; |
| font-weight: 600 !important; |
| color: #8b5cf6 !important; |
| } |
| .keyword-badge-first { |
| background: transparent !important; |
| color: #8b5cf6 !important; |
| border: 1px solid #ddd6fe !important; |
| } |
| |
| /* ββ νμ¬ ν€μλ λ°°μ§ (ν€μλ λ°°μ§μ λμΌν μ, ν¬κΈ°, λ°°κ²½μμΌλ‘ ν΅μΌ) ββ */ |
| .company-badge-container { |
| display: flex; |
| flex-wrap: wrap; |
| gap: 6px; |
| margin-bottom: 4px !important; |
| } |
| .company-badge { |
| display: inline-block; |
| background: transparent !important; |
| border: 1px solid #ddd6fe !important; |
| border-radius: 9999px !important; |
| padding: 4px 12px !important; |
| font-size: 12.5px !important; |
| font-weight: 600 !important; |
| color: #8b5cf6 !important; |
| } |
| .company-badge-first { |
| background: transparent !important; |
| color: #8b5cf6 !important; |
| border: 1px solid #ddd6fe !important; |
| } |
| |
| /* ββ μ΅μ λ΄μ€ νΌλ ββ */ |
| .news-feed-container { |
| flex-grow: 1 !important; |
| max-height: 250px !important; |
| overflow-y: auto !important; |
| } |
| .news-feed-container::-webkit-scrollbar { width: 3px; } |
| .news-feed-container::-webkit-scrollbar-track { background: transparent; } |
| .news-feed-container::-webkit-scrollbar-thumb { |
| background: #cbd5e1; |
| border-radius: 2px; |
| } |
| .news-item-link { |
| text-decoration: none; |
| display: block; |
| margin-bottom: 8px; |
| } |
| .news-item-link:last-child { margin-bottom: 0; } |
| .news-item { |
| border-left: 3px solid #6366f1 !important; |
| padding: 10px 12px !important; |
| background: #f8fafc !important; |
| border-radius: 0 8px 8px 0 !important; |
| transition: all 0.18s ease !important; |
| } |
| .news-item-link:hover .news-item { |
| background: #ffffff !important; |
| border-left-color: #06b6d4 !important; |
| transform: translateX(3px) !important; |
| box-shadow: 0 2px 8px rgba(0,0,0,0.06) !important; |
| } |
| .news-title { |
| font-size: 13px !important; |
| font-weight: 600 !important; |
| color: #1e293b !important; |
| line-height: 1.45 !important; |
| white-space: normal; |
| display: -webkit-box; |
| -webkit-line-clamp: 2; |
| -webkit-box-orient: vertical; |
| overflow: hidden; |
| } |
| .news-meta { |
| font-size: 11px !important; |
| color: #94a3b8 !important; |
| margin-top: 4px; |
| } |
| |
| /* ββ μ±λ΄ 컨ν
μ΄λ ν
λ리 μ κ±° ββ */ |
| div[data-testid="chatbot"], .chatbot-container, .chatbot { |
| border: none !important; |
| } |
| |
| /* ββ μ±λ΄ μμ λλΉ νλ λ° μ€μ μ λ ¬ ββ */ |
| #chat-column { |
| display: flex !important; |
| flex-direction: column !important; |
| align-items: center !important; |
| width: 100% !important; |
| } |
| #chat-column > div, |
| #chat-column > .form { |
| width: 96% !important; |
| max-width: 100% !important; |
| margin: 0 auto !important; |
| display: flex !important; |
| flex-direction: column !important; |
| gap: 6px !important; /* μ»΄ν¬λνΈ κ° μμλ κ°κ²© μΆμ */ |
| } |
| |
| /* ββ μ±λ΄ λ΄λΆ Placeholder(μκ°κΈ μμ) ββ */ |
| .placeholder, [class*="placeholder"] { |
| padding: 0 !important; |
| overflow: auto !important; |
| margin: 0 auto !important; |
| width: 100% !important; |
| max-width: 100% !important; |
| } |
| |
| /* ββ μκ°κΈ(Prose) μ°μ»΄ 보λ (λ
립μ μΈ ν리미μ λΌμ΄λ μΉ΄λ ꡬ쑰) ββ */ |
| .placeholder .prose { |
| background: #f8fafc !important; |
| border: 1px solid #e2e8f0 !important; |
| border-radius: 12px !important; |
| padding: 10px 14px !important; /* ν¨λ© μΆμ */ |
| max-width: 100% !important; |
| width: 100% !important; |
| margin: 0 auto !important; |
| display: block !important; |
| position: relative !important; |
| z-index: 2 !important; |
| box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.05) !important; |
| } |
| .placeholder h3, [class*="placeholder"] h3 { |
| color: #334155 !important; |
| font-weight: 800 !important; |
| font-size: 15px !important; /* ν°νΈ μ΄μ§ μΆμ */ |
| margin-top: 0 !important; |
| margin-bottom: 6px !important; |
| } |
| .placeholder .prose ul { |
| list-style-type: none !important; |
| padding-left: 0 !important; |
| margin-bottom: 6px !important; |
| } |
| .placeholder .prose li { |
| margin-bottom: 2px !important; /* κ°κ²© μΆμ */ |
| color: #475569 !important; |
| font-size: 13px !important; |
| line-height: 1.4 !important; |
| } |
| .placeholder .prose p { |
| font-size: 13px !important; |
| line-height: 1.4 !important; |
| margin-bottom: 4px !important; |
| } |
| .placeholder .prose p:last-child { |
| font-size: 12.5px !important; |
| font-weight: 700 !important; |
| color: #4c1d95 !important; |
| background: #f3e8ff !important; |
| padding: 4px 10px !important; /* ν¨λ© μΆμ */ |
| border-radius: 6px !important; |
| display: inline-block !important; |
| margin-bottom: 0 !important; |
| } |
| |
| /* ββ μμ μ§λ¬Έ 컨ν
μ΄λ (μμͺ½ 보λμ λμΌ λλΉλ‘ μ λ ¬λ λ
립 λΌμ΄λ μΉ΄λ) ββ */ |
| [class*="examples"], .gr-samples-wrapper, .examples-container { |
| display: grid !important; |
| grid-template-columns: repeat(2, 1fr) !important; |
| gap: 6px !important; /* κ° μΆμ */ |
| width: 100% !important; |
| max-width: 100% !important; |
| margin: 4px auto 6px auto !important; /* λ§μ§ μΆμ */ |
| background: #f8fafc !important; |
| border: 1px solid #e2e8f0 !important; |
| border-radius: 12px !important; |
| padding: 10px 14px !important; /* ν¨λ© μΆμ */ |
| box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.05) !important; |
| position: relative !important; |
| z-index: 1 !important; |
| } |
| |
| /* κ°λ³ λ²νΌ λμμΈ (μ°λ³΄λΌμ ν
λ§ & κ°λ ₯ν μ€μ μ λ ¬) */ |
| .examples-container button, div[data-testid="chatbot"] button.example, button.example, .example-btn { |
| border-radius: 8px !important; |
| padding: 10px 12px !important; |
| text-align: center !important; |
| font-size: 13px !important; |
| font-weight: 600 !important; |
| color: #4c1d95 !important; |
| background: #f5f3ff !important; |
| background-color: #f5f3ff !important; |
| border: 1px solid #e9d5ff !important; |
| box-shadow: 0 1px 2px rgba(0, 0, 0, 0.05) !important; |
| transition: all 0.2s ease-in-out !important; |
| display: flex !important; |
| align-items: center !important; |
| justify-content: center !important; |
| min-height: 52px !important; |
| width: 100% !important; |
| white-space: normal !important; |
| } |
| |
| .examples-container button:hover, div[data-testid="chatbot"] button.example:hover, button.example:hover, .example-btn:hover { |
| border-color: #a855f7 !important; |
| background: #f3e8ff !important; |
| background-color: #f3e8ff !important; |
| transform: translateY(-2px) !important; |
| box-shadow: 0 4px 6px rgba(0, 0, 0, 0.08) !important; |
| color: #7c3aed !important; |
| } |
| |
| /* ββ μ μ‘ λ²νΌ: λλΉ λκ³ λμ΄ μ
λ ₯μ°½μ λ§μΆ€ ββ */ |
| button[class*="submit-btn"], #submit-btn, button[id*="submit"], button.submit-button { |
| background: linear-gradient(135deg, #1e3a5f 0%, #7c3aed 100%) !important; |
| color: white !important; |
| font-weight: 700 !important; |
| font-size: 13px !important; |
| border: none !important; |
| border-radius: 8px !important; |
| box-shadow: 0 2px 10px rgba(30,58,95,0.18) !important; |
| transition: all 0.16s ease !important; |
| cursor: pointer !important; |
| height: 46px !important; |
| min-width: 68px !important; |
| max-width: 88px !important; |
| padding: 0 16px !important; |
| display: flex !important; |
| align-items: center !important; |
| justify-content: center !important; |
| box-sizing: border-box !important; |
| opacity: 1 !important; |
| visibility: visible !important; |
| } |
| button[class*="submit-btn"]:hover, |
| [data-testid="submit-button"]:hover { |
| background: linear-gradient(135deg, #2a4f82 0%, #8b47ff 100%) !important; |
| box-shadow: 0 4px 16px rgba(124,58,237,0.24) !important; |
| transform: translateY(-1px) !important; |
| } |
| |
| /* ββ μ
λ ₯μ°½ ββ */ |
| textarea, |
| [class*="input-container"] textarea, |
| [data-testid="textbox"] textarea { |
| height: 46px !important; |
| min-height: 46px !important; |
| max-height: 46px !important; |
| font-size: 13px !important; |
| padding: 14px 14px !important; |
| line-height: 1.5 !important; |
| border-radius: 8px !important; |
| border: 1px solid rgba(30,58,95,0.15) !important; |
| background: rgba(255,255,255,0.80) !important; |
| color: #1e3a5f !important; |
| resize: none !important; |
| overflow-y: hidden !important; |
| box-sizing: border-box !important; |
| } |
| textarea:focus { |
| border-color: #7c3aed !important; |
| background: rgba(255,255,255,0.97) !important; |
| box-shadow: 0 0 0 3px rgba(124,58,237,0.09) !important; |
| outline: none !important; |
| } |
| div:has(> button[class*="submit-btn"]), |
| div:has(> [data-testid="submit-button"]), |
| .input-container, [class*="input-container"] { |
| gap: 6px !important; /* κ° μΆμ */ |
| align-items: center !important; |
| max-width: 100% !important; |
| width: 100% !important; |
| margin-left: 0 !important; |
| margin-right: 0 !important; |
| margin-top: 4px !important; /* μμλ κ°κ²© μ΅μ ν */ |
| } |
| |
| /* ββ μ±λ΄ ν/λΌλ²¨ μ¨κΉ ββ */ |
| .chatbot-label, div[class*="chatbot"] .label, |
| [data-testid="chatbot"] .label, .chatbot-header, |
| .gr-panel-title, .gr-chatbot-label, |
| [data-testid="chatbot"] > label, |
| div[class*="chatbot"] > label, |
| label.svelte-1ipelgc, span.svelte-1ipelgc { |
| display: none !important; |
| } |
| |
| /* ββ λ©μμ§ λ²λΈ κΈ°λ³Έ ν¬κΈ° μΆμ (μ¬μ©μ/λ΄ κ³΅ν΅ μΈλ‘ λμ΄ μ΅μ ν & 100% λΆλͺ¨ λλΉ μ±μ) ββ */ |
| .message-wrap, .message-container, div[data-testid="chatbot"] .wrapper { |
| max-width: 100% !important; |
| width: 100% !important; |
| margin-left: 0 !important; |
| margin-right: 0 !important; |
| } |
| .message, |
| .message-wrap .message, |
| [data-testid="user-message"], |
| [data-testid="bot-message"] { |
| padding: 10px 14px !important; |
| min-height: auto !important; |
| } |
| |
| /* ββ μ¬μ©μ λ²λΈ (λ€ν¬κ·Έλ μ΄ ν리미μ ν
λ§) ββ */ |
| .message.user, |
| .message.user-message, |
| [data-testid="user-message"] { |
| background-color: #111827 !important; |
| border-radius: 12px 12px 0 12px !important; |
| padding: 10px 14px !important; |
| margin: 2px 0 !important; |
| border: none !important; |
| box-shadow: 0 2px 5px rgba(0, 0, 0, 0.08) !important; |
| color: #ffffff !important; |
| } |
| .message.user *, |
| .message.user-message *, |
| [data-testid="user-message"] * { |
| color: #ffffff !important; |
| line-height: 1.4 !important; |
| margin: 0 !important; |
| background: transparent !important; |
| } |
| |
| /* ββ λ΄ λ²λΈ (νμ΄νΈ & κ·Έλ μ΄ κ²½κ³μ ν
λ§) ββ */ |
| .message.bot, |
| .message.bot-message, |
| [data-testid="bot-message"] { |
| background-color: #ffffff !important; |
| color: #1f2937 !important; |
| border: 1px solid #e5e7eb !important; |
| border-radius: 12px 12px 12px 0 !important; |
| padding: 16px 20px !important; |
| box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.05) !important; |
| } |
| .message.bot *, |
| .message.bot-message *, |
| [data-testid="bot-message"] * { |
| color: #1e3a5f !important; |
| background: transparent !important; |
| } |
| |
| /* ββ λ©μμ§ λ΄λΆ μ¬λ°± μμ μ μ΄ ββ */ |
| .message p, .message li, |
| [class*="message"] p, [class*="message"] li { |
| line-height: 1.55 !important; |
| margin: 0 !important; |
| margin-bottom: 6px !important; |
| padding: 0 !important; |
| border: none !important; |
| border-left: none !important; |
| box-shadow: none !important; |
| background: transparent !important; |
| color: #1e3a5f !important; |
| } |
| .message p:last-child, .message li:last-child { |
| margin-bottom: 0 !important; |
| } |
| .message blockquote, [class*="message"] blockquote { |
| border: none !important; |
| border-left: none !important; |
| padding: 0 !important; |
| margin: 0 !important; |
| background: transparent !important; |
| } |
| .message h3, [class*="message"] h3 { |
| margin-top: 14px !important; |
| margin-bottom: 6px !important; |
| font-weight: 800 !important; |
| color: #1e3a5f !important; |
| } |
| |
| /* ββ μ μ λ§ν¬ / CSS λ³μ ββ */ |
| :root { |
| --color-accent: #7c3aed !important; |
| --primary-500: #7c3aed !important; |
| --primary-600: #6d28d9 !important; |
| } |
| a { color: #7c3aed !important; } |
| |
| /* ββ secondary λ²νΌ ββ */ |
| button.secondary, button.lg.secondary, button.sm.secondary, |
| button.wrap, button.variant-secondary, .secondary-btn { |
| background-color: rgba(255,255,255,0.75) !important; |
| color: #1e3a5f !important; |
| border: 1px solid rgba(30,58,95,0.13) !important; |
| font-weight: 600 !important; |
| transition: all 0.16s ease !important; |
| } |
| button.secondary:hover, button.variant-secondary:hover { |
| background-color: rgba(255,255,255,0.97) !important; |
| border-color: rgba(124,58,237,0.24) !important; |
| } |
| |
| /* ββ λ©μΈ λ μ΄μμ μ»¬λΌ λμ΄ λκΈ°ν ββ */ |
| #main-row { align-items: stretch !important; } |
| #main-row > div[class*="column"] { |
| display: flex !important; |
| flex-direction: column !important; |
| } |
| |
| /* ββ μΌμͺ½ ν¨λ λλΉ μ€λ²νλ‘μ° μμ μ°¨λ¨ ββ */ |
| .sidebar-container * { |
| max-width: 100% !important; |
| box-sizing: border-box !important; |
| word-break: break-word !important; |
| overflow-wrap: break-word !important; |
| } |
| |
| /* ββ μμ§ νΌλλ°± λ²νΌ μ¨κΉ ββ */ |
| .feedback-area, |
| [data-testid="like-dislike"], |
| .like-dislike-area, |
| .message-buttons, |
| .chatbot-action-buttons, |
| button[aria-label="Good response"], |
| button[aria-label="Bad response"], |
| button[aria-label="thumbs up"], |
| button[aria-label="thumbs down"], |
| .bot + div > div > button, |
| .svelte-1ed2p3z { display: none !important; } |
| |
| /* ββ Gradio 6.x Chatbot λ΄λΆ μ€λ²νλ‘μ° λ° μ€ν¬λ‘€λ° μ΅μ ν ββ */ |
| div[data-testid="chatbot"] .message-wrap, |
| div[data-testid="chatbot"] .message-container, |
| div[data-testid="chatbot"] > div.wrapper, |
| div[data-testid="chatbot"] > div.scrollbar { |
| overflow-y: auto !important; |
| max-height: 600px !important; |
| } |
| |
| /* ββ λͺ¨λ°μΌ νλ©΄ λμ: 800px μ΄νμμλ 100% λλΉ ββ */ |
| @media (max-width: 800px) { |
| #chat-column > div, |
| #chat-column > .form { |
| width: 100% !important; |
| max-width: 100% !important; |
| } |
| [class*="examples"], .gr-samples-wrapper, .examples-container { |
| grid-template-columns: 1fr !important; |
| padding: 10px !important; |
| } |
| } |
| """ |
|
|
|
|
| def build_stats_html(stats: Dict[str, Any]) -> str: |
| """μΌμͺ½ μ¬μ΄λλ° μ 체 HTML μμ±. |
| |
| ꡬμ±: |
| - μλ¨ 2 μΉ΄λ (λΆμ λͺ¨λΈ / κΈ°μ΅μ) |
| - ꡬλΆμ |
| - νμ¬ ν€μλ λ°°μ§ (5κ°) |
| - ꡬλΆμ |
| - λ΄μ€ ν€μλ λ°°μ§ |
| - ꡬλΆμ |
| - μ΅μ λ΄μ€ νΌλ |
| """ |
| |
| company_html = "" |
| for idx, c in enumerate(stats.get("companies_list", [])): |
| css = "company-badge company-badge-first" if idx == 0 else "company-badge" |
| company_html += f'<span class="{css}"># {c["name"]}</span>\n' |
| if not company_html: |
| company_html = '<span style="font-size:10px;color:#6b8ab0;">λ±λ‘λ νμ¬ μμ</span>' |
|
|
| |
| keyword_html = "" |
| for idx, t in enumerate(stats.get("techs_list", [])): |
| css = "keyword-badge keyword-badge-first" if idx == 0 else "keyword-badge" |
| keyword_html += f'<span class="{css}"># {t["name"]}</span>\n' |
| if not keyword_html: |
| keyword_html = '<span style="font-size:10px;color:#6b8ab0;">ν€μλ μμ</span>' |
|
|
| |
| news_html = "" |
| for a in stats.get("recent_articles", []): |
| title = a["title"] or "" |
| url = a["url"] if a["url"] and str(a["url"]).lower() != "nan" else "#" |
| target = 'target="_blank"' if url != "#" else "" |
| date_str = str(a["date"])[:10] if a["date"] else "" |
| news_html += f""" |
| <a class="news-item-link" href="{url}" {target}> |
| <div class="news-item"> |
| <div class="news-title">{title}</div> |
| <div class="news-meta">{date_str}</div> |
| </div> |
| </a>""" |
| if not news_html: |
| news_html = '<div style="font-size:10px;color:#6b8ab0;">κΈ°μ¬λ₯Ό λΆλ¬μ€λ μ€...</div>' |
|
|
| return f""" |
| <div class="sidebar-container"> |
| |
| <!-- μλ¨ 2 μΉ΄λ --> |
| <div class="top-cards"> |
| <div class="top-card"> |
| <div class="top-card-lbl">π€ λΆμ λͺ¨λΈ</div> |
| <div class="top-card-val">GPT-4o</div> |
| <div class="top-card-sub">μ΄κ±°λ AI μμ§</div> |
| </div> |
| <div class="top-card"> |
| <div class="top-card-lbl">π’ λμ κΈ°μ
</div> |
| <div class="top-card-val">{stats["companies"]}κ³³</div> |
| <div class="top-card-sub">κ·Έλν λ΄ κΈ°μ
</div> |
| </div> |
| </div> |
| |
| <hr class="divider"> |
| |
| <!-- νμ¬ ν€μλ --> |
| <div class="panel-label">π’ μ£Όμ λμ κΈ°μ
</div> |
| <div class="company-badge-container"> |
| {company_html} |
| </div> |
| |
| <hr class="divider"> |
| |
| <!-- λ΄μ€ ν€μλ --> |
| <div class="panel-label">π·οΈ μ£Όμ κΈ°μ ν€μλ</div> |
| <div class="keyword-container"> |
| {keyword_html} |
| </div> |
| |
| <hr class="divider"> |
| |
| <!-- μ΅μ λ΄μ€ νΌλ --> |
| <div class="panel-label">π‘ μ΅μ λ΄μ€</div> |
| <div class="news-feed-container"> |
| {news_html} |
| </div> |
| </div> |
| """ |