Spaces:
Running
Running
Update index.html
Browse files- index.html +46 -1
index.html
CHANGED
@@ -128,7 +128,52 @@
|
|
128 |
|
129 |
<!-- Main content -->
|
130 |
<div class="main-content">
|
131 |
-
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
132 |
</div>
|
133 |
|
134 |
<!-- Footer -->
|
|
|
128 |
|
129 |
<!-- Main content -->
|
130 |
<div class="main-content">
|
131 |
+
<div class="container-fluid">
|
132 |
+
<!-- Carousel Preview -->
|
133 |
+
<div id="carouselExampleSlidesOnly" class="carousel slide" data-bs-ride="carousel">
|
134 |
+
<div class="carousel-inner">
|
135 |
+
<div class="carousel-item active">
|
136 |
+
<!-- Image Generation Model Preview -->
|
137 |
+
<img src="image_generation_preview.jpg" class="d-block w-100" alt="Image Generation Model Preview">
|
138 |
+
</div>
|
139 |
+
<div class="carousel-item">
|
140 |
+
<!-- Text Generation Model Preview -->
|
141 |
+
<img src="text_generation_preview.jpg" class="d-block w-100" alt="Text Generation Model Preview">
|
142 |
+
</div>
|
143 |
+
<div class="carousel-item">
|
144 |
+
<!-- Code Generation Model Preview -->
|
145 |
+
<img src="code_generation_preview.jpg" class="d-block w-100" alt="Code Generation Model Preview">
|
146 |
+
</div>
|
147 |
+
</div>
|
148 |
+
</div>
|
149 |
+
|
150 |
+
<!-- Jumbotron Display -->
|
151 |
+
<div class="jumbotron">
|
152 |
+
<div class="row">
|
153 |
+
<div class="col-md-8">
|
154 |
+
<!-- Textarea Inputs and File Upload -->
|
155 |
+
<textarea class="form-control" rows="5"></textarea>
|
156 |
+
<input type="file" class="form-control-file mt-3">
|
157 |
+
<button type="submit" class="btn btn-primary mt-3">Submit</button>
|
158 |
+
</div>
|
159 |
+
<div class="col-md-4">
|
160 |
+
<!-- Sign-up/Sign-in Options -->
|
161 |
+
<input type="text" class="form-control mb-2" placeholder="Username">
|
162 |
+
<input type="password" class="form-control mb-2" placeholder="Password">
|
163 |
+
<button type="button" class="btn btn-primary btn-block mb-2">Sign Up</button>
|
164 |
+
<button type="button" class="btn btn-secondary btn-block">Sign In</button>
|
165 |
+
|
166 |
+
<!-- Sliders and Input Boxes for Model Settings -->
|
167 |
+
<input type="range" class="form-range mt-3" min="0.01" max="1.0" step="0.01" value="0.5">
|
168 |
+
<input type="text" class="form-control mt-3" placeholder="Temperature">
|
169 |
+
<input type="range" class="form-range mt-3" min="0.01" max="1.0" step="0.01" value="0.5">
|
170 |
+
<input type="text" class="form-control mt-3" placeholder="Top P">
|
171 |
+
<!-- Add more sliders and input boxes for other model settings -->
|
172 |
+
</div>
|
173 |
+
</div>
|
174 |
+
</div>
|
175 |
+
</div>
|
176 |
+
<!-- Main content content -->
|
177 |
</div>
|
178 |
|
179 |
<!-- Footer -->
|