File tree Expand file tree Collapse file tree 2 files changed +26
-1
lines changed
Expand file tree Collapse file tree 2 files changed +26
-1
lines changed Original file line number Diff line number Diff line change @@ -135,6 +135,15 @@ <h3>EXPLORER</h3>
135135 < span class ="material-symbols-outlined "> code</ span >
136136 < strong id ="languagesList "> -</ strong >
137137 </ span >
138+ < span class ="separator "> •</ span >
139+ < span class ="info-item ">
140+ < span class ="material-symbols-outlined "> smart_toy</ span >
141+ < select id ="modelSelector " title ="AI Model Template ">
142+ < option value ="gpt "> GPT-4</ option >
143+ < option value ="claude "> Claude</ option >
144+ < option value ="gemini "> Gemini</ option >
145+ </ select >
146+ </ span >
138147 </ div >
139148 < div class ="editor-actions ">
140149 < button class ="btn-action " id ="copyBtn " title ="Copy to Clipboard ">
@@ -173,7 +182,7 @@ <h3>EXPLORER</h3>
173182 <!-- LOADING OVERLAY -->
174183 < div class ="loading-overlay " id ="loadingOverlay ">
175184 < div class ="spinner "> </ div >
176- < p > Processing files...</ p >
185+ < p id =" loadingText " > Processing files...</ p >
177186 </ div >
178187
179188 <!-- TOAST NOTIFICATIONS -->
Original file line number Diff line number Diff line change 1+ /* Model selector styling */
2+ # modelSelector {
3+ background : # 232323 ;
4+ color : # e8e8e8 ;
5+ border : 1px solid # 444 ;
6+ border-radius : 4px ;
7+ padding : 2px 8px ;
8+ font-size : 1em ;
9+ margin-left : 4px ;
10+ margin-right : 2px ;
11+ outline : none;
12+ transition : border 0.15s ;
13+ }
14+ # modelSelector : focus {
15+ border-color : # fbbf24 ;
16+ }
117/* Only sidebar main action icons (Select Directory, Create Context) black and small */
218.sidebar-btn-icon {
319 width : 20px ;
You can’t perform that action at this time.
0 commit comments