feat: Created the raw_markdown configuration flag

This commit is contained in:
2026-07-22 11:03:27 -06:00
parent 393ed16963
commit ed7ad36475
7 changed files with 33 additions and 1 deletions
+3
View File
@@ -367,6 +367,9 @@ async fn run(
if cli.no_stream {
update_app_config(&mut ctx, |app| app.stream = false);
}
if cli.raw_markdown {
update_app_config(&mut ctx, |app| app.raw_markdown = true);
}
if cli.no_memory {
update_app_config(&mut ctx, |app| app.memory = Some(false));
}