Spaces:
Running
Running
Update index.html
Browse files- index.html +35 -1
index.html
CHANGED
@@ -136,7 +136,41 @@
|
|
136 |
<div class="carousel-inner">
|
137 |
<div class="carousel-item active">
|
138 |
<!-- Image Generation Model Preview -->
|
139 |
-
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
140 |
</div>
|
141 |
<div class="carousel-item">
|
142 |
<!-- Text Generation Model Preview -->
|
|
|
136 |
<div class="carousel-inner">
|
137 |
<div class="carousel-item active">
|
138 |
<!-- Image Generation Model Preview -->
|
139 |
+
<div class="container-fluid">
|
140 |
+
<!-- Carousel and Jumbotron section -->
|
141 |
+
|
142 |
+
<!-- Slider and Chatbot Modal -->
|
143 |
+
<div class="modal fade" id="sliderModal" tabindex="-1" aria-labelledby="sliderModalLabel" aria-hidden="true">
|
144 |
+
<div class="modal-dialog modal-lg">
|
145 |
+
<div class="modal-content">
|
146 |
+
<div class="modal-header">
|
147 |
+
<h5 class="modal-title" id="sliderModalLabel">Model Settings Chatbot</h5>
|
148 |
+
<button type="button" class="btn-close" data-bs-dismiss="modal" aria-label="Close"></button>
|
149 |
+
</div>
|
150 |
+
<div class="modal-body">
|
151 |
+
<!-- Chatbot UI goes here -->
|
152 |
+
<div class="chatbot-container">
|
153 |
+
<!-- Chatbot display area -->
|
154 |
+
<div class="chatbot-display"></div>
|
155 |
+
<!-- User input area -->
|
156 |
+
<div class="user-input">
|
157 |
+
<textarea class="form-control" rows="3" placeholder="Type your message..."></textarea>
|
158 |
+
<button class="btn btn-primary mt-2">Send</button>
|
159 |
+
</div>
|
160 |
+
</div>
|
161 |
+
</div>
|
162 |
+
</div>
|
163 |
+
</div>
|
164 |
+
</div>
|
165 |
+
|
166 |
+
<!-- JavaScript to trigger modal -->
|
167 |
+
<script>
|
168 |
+
function openChatbotModal() {
|
169 |
+
var myModal = new bootstrap.Modal(document.getElementById('sliderModal'));
|
170 |
+
myModal.show();
|
171 |
+
}
|
172 |
+
</script>
|
173 |
+
</div>
|
174 |
</div>
|
175 |
<div class="carousel-item">
|
176 |
<!-- Text Generation Model Preview -->
|