Spaces:
Sleeping
Sleeping
| """์ก์ ์์ดํ Feature Plugin. | |
| API: /api/v1/action-items | |
| ADR-018 Phase 2: DB ์ํ๊ด๋ฆฌ | |
| ๋ ๋ฆฝ ํธ๋ฆฌ๊ฑฐ ๋ถ์: ๋ฆฌํฌํธ ์์ด ์ง์ ํธ๋ฆฌ๊ฑฐ ํ๊ฐ โ ์ ์ฅ | |
| """ | |
| import streamlit as st | |
| from . import overview | |
| FEATURE_CONFIG = { | |
| "key": "action_items", | |
| "name": "์ก์ ์์ดํ ", | |
| "icon": "โ ", | |
| "description": "ํธ๋ฆฌ๊ฑฐ ๋ถ์ + ์ก์ ์์ดํ ๊ด๋ฆฌ (์ํ ์ถ์ , ๋ด๋น์ ๋ฐฐ์ )", | |
| "api_base": "/api/v1/action-items", | |
| "order": 4, | |
| } | |
| def render(base_ctx): | |
| """์ก์ ์์ดํ feature ๋ ๋๋ง.""" | |
| st.caption("14๊ฐ ํธ๋ฆฌ๊ฑฐ ๊ท์น์ผ๋ก ์ ํธ๋ฅผ ํ์งํ๊ณ ์ก์ ์์ดํ ์ผ๋ก ๊ด๋ฆฌํฉ๋๋ค") | |
| overview.render(base_ctx) | |