fix po parse llm

This commit is contained in:
2025-09-06 18:22:10 +08:00
parent ca3cd41c0a
commit 5393c64fee

View File

@@ -604,7 +604,7 @@ impl<'a> PoParser<'a> {
if s.starts_with("NAME:") {
name = Some(s[5..].trim().to_string());
} else if s.starts_with("LLM:") {
llm = Some(s[4..].trim().to_string());
llm = Some(s[4..].trim().replace("\\n", "\n"));
}
}
}