File size: 554 Bytes
f5af141
 
 
 
 
 
 
 
 
 
 
 
 
 
1
2
3
4
5
6
7
8
9
10
11
12
13
14
from pathlib import Path

# ✨ Gradio 4 : 클래슀 속성(js_path / css_path)만 μ§€μ •ν•˜λ©΄ 끝!
from .workflowbuilder import WorkflowBuilder, WorkflowAnalyzer

COMP_DIR = Path(__file__).parent / "templates" / "component"

# β–Ά ν”„λŸ°νŠΈμ—”λ“œ λ²ˆλ“€ 경둜 등둝
WorkflowBuilder.js_path  = str(COMP_DIR / "index.js")
# (μŠ€νƒ€μΌ 파일λͺ…을 μ“°λŠ” κ²½μš°μ—λ§Œ) 
WorkflowBuilder.css_path = str(COMP_DIR / "styles.css")   # μ—†μœΌλ©΄ 이 쀄 μ‚­μ œ

# μ™ΈλΆ€μ—μ„œ import ν•  수 μžˆλ„λ‘ λ…ΈμΆœ
__all__ = ["WorkflowBuilder", "WorkflowAnalyzer"]