File size: 2,266 Bytes
6575706
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
<!DOCTYPE html>
<html lang="ko">
<head>
    <meta charset="UTF-8">
    <meta name="viewport" content="width=device-width, initial-scale=1.0">
    <meta http-equiv="refresh" content="5">  <!-- 5μ΄ˆλ§ˆλ‹€ μƒˆλ‘œκ³ μΉ¨ -->
    <title>RAG 검색 챗봇 - μ΄ˆκΈ°ν™” 쀑</title>
    <style>
        body {
            font-family: 'Pretendard', 'Apple SD Gothic Neo', 'Noto Sans KR', sans-serif;
            line-height: 1.6;
            color: #333;
            background-color: #f8f9fa;
            text-align: center;
            padding-top: 100px;
            margin: 0;
        }
        .container {
            max-width: 800px;
            margin: 0 auto;
            padding: 20px;
        }
        h1 {
            color: #4a6da7;
            margin-bottom: 30px;
        }
        .loader {
            border: 16px solid #f3f3f3;
            border-top: 16px solid #4a6da7;
            border-radius: 50%;
            width: 80px;
            height: 80px;
            animation: spin 2s linear infinite;
            margin: 0 auto 30px;
        }
        @keyframes spin {
            0% { transform: rotate(0deg); }
            100% { transform: rotate(360deg); }
        }
        p {
            font-size: 18px;
            margin-bottom: 20px;
        }
        .info {
            background-color: #e7f0ff;
            border-radius: 8px;
            padding: 20px;
            margin-top: 30px;
            text-align: left;
        }
        .info h2 {
            color: #4a6da7;
            margin-top: 0;
        }
    </style>
</head>
<body>
    <div class="container">
        <h1>RAG 검색 챗봇 μ΄ˆκΈ°ν™” 쀑...</h1>
        <div class="loader"></div>
        <p>첫 μ‹€ν–‰ μ‹œ 데이터 쀀비에 μ‹œκ°„μ΄ μ†Œμš”λ©λ‹ˆλ‹€. μž μ‹œλ§Œ κΈ°λ‹€λ €μ£Όμ„Έμš”.</p>
        <p>νŽ˜μ΄μ§€λŠ” 5μ΄ˆλ§ˆλ‹€ μžλ™μœΌλ‘œ μƒˆλ‘œκ³ μΉ¨λ©λ‹ˆλ‹€.</p>
        
        <div class="info">
            <h2>μ΄ˆκΈ°ν™” μž‘μ—…</h2>
            <ul>
                <li>벑터 인덱슀 생성 쀑...</li>
                <li>λ¬Έμ„œ 처리 및 μž„λ² λ”© 생성 쀑...</li>
                <li>검색 μ—”μ§„ μ€€λΉ„ 쀑...</li>
            </ul>
            <p>이 과정은 μ΅œλŒ€ 1-2뢄이 μ†Œμš”λ  수 μžˆμŠ΅λ‹ˆλ‹€.</p>
        </div>
    </div>
</body>
</html>