2 files changed
+2
-28
src/chat.rs
+1
-1
@@ -394,7 +394,7 @@ fn render_footer(frame: &mut Frame, app: &App, area: ratatui::layout::Rect) {
394
spans.push(Span::styled(
395
format!(" {key} "),
396
Style::default()
397
- .fg(Color::Black)
397
+ .fg(Color::White)
398
.bg(Color::DarkGray)
399
.add_modifier(Modifier::BOLD),
400
));
src/main.rs
+1
-27
@@ -213,36 +213,11 @@ impl Agent for SiGitAgent {
213
}
214
}
215
216
-// ── Banner ───────────────────────────────────────────────────────────────────
217
-
218
-fn print_banner() {
219
- const BANNER: &str = r#"
220
-77777777777777777777777777777777777777777777777777777777777777777777777777777777777777777777
221
-77777777322222222222222222222222222222223777389969902208431358831999699051111177777777777777
222
-1111111125555555555555555555555511113222311159 5002 088 3081771691111111111111
223
-1111111111111111111111111111131136841 1482853332007 05 9043332891 400811111111111
224
-1111111111111111111111111111111201 109 304 40 00 79 100041111111111
225
-333333255555555555555555555552392 102 503 90 7000000005 903 0000023333333333
226
-333333245454545454545454545433381 7600000 302 61 780 109 20009533333333333
227
-3333333333333333333333333333333402 7001 08 761 202 902 90003333333333333
228
-2222255555555555555555555555250899901 49 304 403 08 108 300042222222222222
229
-2222222222222222222222222222269 106 03 901 06 505 402 000052222222222222
230
-2222255555555555555555555555299 708 1002 80 00 90852222222222222
231
-55555555555555555555555555555560953258000866660000051140866908666600008966900065555555555555
232
-88888888888888888888888888888888888888888888888888888888888888888888888888888888888888888888
233
-
234
- siGit Code v%VERSION%
235
-"#;
236
-
237
- let art = BANNER.replace("%VERSION%", env!("CARGO_PKG_VERSION"));
238
- eprintln!("{art}");
239
-}
240
-
216
// ── Interactive mode ─────────────────────────────────────────────────────────
217
218
/// Load the model, then hand off to the ratatui chat TUI.
219
async fn run_interactive() -> anyhow::Result<()> {
245
- println!(" Loading model...");
220
+ println!(" Loading siGit...");
221
222
let engine = ChatEngine::new();
223
let config = GgufModelConfig::platform_default();
@@ -323,7 +298,6 @@ async fn main() -> anyhow::Result<()> {
298
299
if std::io::stdin().is_terminal() {
300
// Interactive mode — full-screen chat TUI.
326
- print_banner();
301
run_interactive().await
302
} else {
303
// Editor spawned us — speak ACP over stdio.