| <!DOCTYPE html> |
| <html lang="ko"> |
| <head> |
| <meta charset="UTF-8"> |
| <meta name="viewport" content="width=device-width, initial-scale=1.0"> |
| <title>RAG ์ฑ๋ด - ๋ก๋ฉ ์ค</title> |
| <link rel="stylesheet" href="/static/css/style.css"> |
| |
| <link href="https://cdn.jsdelivr.net/npm/bootstrap@5.3.0-alpha1/dist/css/bootstrap.min.css" rel="stylesheet"> |
| |
| <link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/6.0.0/css/all.min.css"> |
| <style> |
| .loading-container { |
| height: 100vh; |
| display: flex; |
| flex-direction: column; |
| justify-content: center; |
| align-items: center; |
| } |
| |
| .loader { |
| margin-bottom: 2rem; |
| } |
| |
| .progress { |
| width: 300px; |
| } |
| </style> |
| <meta http-equiv="refresh" content="3;url=/" /> |
| </head> |
| <body class="bg-light"> |
| <div class="loading-container"> |
| <div class="loader"> |
| <div class="spinner-border text-primary" style="width: 5rem; height: 5rem;" role="status"> |
| <span class="visually-hidden">Loading...</span> |
| </div> |
| </div> |
| |
| <h3 class="mb-4 text-center"> |
| <i class="fas fa-robot me-2"></i>RAG ์ฑ๋ด์ ์ด๊ธฐํํ๋ ์ค์
๋๋ค |
| </h3> |
| |
| <div class="progress mb-3"> |
| <div class="progress-bar progress-bar-striped progress-bar-animated" style="width: 100%"></div> |
| </div> |
| |
| <p class="text-muted">์ ์๋ง ๊ธฐ๋ค๋ ค์ฃผ์ธ์. ๊ณง ์๋์ผ๋ก ๋ฆฌ๋๋ ์
๋ฉ๋๋ค.</p> |
| </div> |
| </body> |
| </html> |
|
|