Spaces:
Running
Running
Update index.html
Browse files- index.html +29 -14
index.html
CHANGED
|
@@ -13,23 +13,38 @@
|
|
| 13 |
<p>Your AI-powered assistant for in-depth research and analysis.</p>
|
| 14 |
</header>
|
| 15 |
|
| 16 |
-
<main>
|
| 17 |
-
<div class="
|
| 18 |
-
<
|
| 19 |
-
|
| 20 |
-
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 21 |
</div>
|
| 22 |
|
| 23 |
-
<div class="
|
| 24 |
-
<
|
| 25 |
-
|
| 26 |
-
|
| 27 |
-
|
|
|
|
|
|
|
|
|
|
|
|
|
| 28 |
|
| 29 |
-
|
| 30 |
-
|
| 31 |
-
|
| 32 |
-
|
|
|
|
| 33 |
</div>
|
| 34 |
</main>
|
| 35 |
|
|
|
|
| 13 |
<p>Your AI-powered assistant for in-depth research and analysis.</p>
|
| 14 |
</header>
|
| 15 |
|
| 16 |
+
<main class="main-content">
|
| 17 |
+
<div class="chat-column">
|
| 18 |
+
<div class="input-section">
|
| 19 |
+
<h2>Submit Your Research Query</h2>
|
| 20 |
+
<textarea id="researchQuery" placeholder="Ask a question based on the available research reports..."></textarea>
|
| 21 |
+
<button id="submitButton">Submit</button>
|
| 22 |
+
</div>
|
| 23 |
+
<div class="output-section">
|
| 24 |
+
<h2>Results</h2>
|
| 25 |
+
<div id="resultDisplay" class="result-container"></div>
|
| 26 |
+
</div>
|
| 27 |
+
<div class="history-section">
|
| 28 |
+
<h2>Recent Research</h2>
|
| 29 |
+
<div id="historyContainer" class="history-container"></div>
|
| 30 |
+
</div>
|
| 31 |
</div>
|
| 32 |
|
| 33 |
+
<div class="docs-column">
|
| 34 |
+
<div class="upload-section">
|
| 35 |
+
<h2>Upload Report</h2>
|
| 36 |
+
<form id="uploadForm">
|
| 37 |
+
<input type="file" id="fileInput" required>
|
| 38 |
+
<button type="submit">Upload File</button>
|
| 39 |
+
</form>
|
| 40 |
+
<div id="uploadStatus"></div>
|
| 41 |
+
</div>
|
| 42 |
|
| 43 |
+
<div class="reports-section">
|
| 44 |
+
<h2>Available Research Reports</h2>
|
| 45 |
+
<div id="reportsList" class="reports-container">
|
| 46 |
+
</div>
|
| 47 |
+
</div>
|
| 48 |
</div>
|
| 49 |
</main>
|
| 50 |
|