feat: add Dockerfile, deploy pipeline, Ollama infra job, weekly cron
CI / check (push) Successful in 13m8s
CI / test (push) Successful in 13m23s
CI / clippy (push) Successful in 12m46s
CI / deploy-infra (push) Has been skipped
CI / deploy (push) Has been skipped

This commit is contained in:
2026-04-25 19:22:51 +02:00
parent b6a5618f78
commit 72affaa0d8
5 changed files with 160 additions and 7 deletions
+1 -1
View File
@@ -250,7 +250,7 @@ fn split_message(text: &str) -> Vec<String> {
.unwrap_or(safe_max);
chunks.push(remaining[..cut].trim().to_string());
remaining = &remaining[cut..].trim_start();
remaining = remaining[cut..].trim_start();
}
if !remaining.is_empty() {