Check if the user's message contains keywords that need the full PREVIEW_GUIDE
(task: &str)
| 1901 | |
| 1902 | /// Check if the user's message contains keywords that need the full PREVIEW_GUIDE |
| 1903 | fn needs_full_preview_guide(task: &str) -> bool { |
| 1904 | let lower = task.to_lowercase(); |
| 1905 | VISUAL_KEYWORDS.iter().any(|kw| lower.contains(kw)) |
| 1906 | } |
| 1907 | |
| 1908 | fn finalize_llm_turn( |
| 1909 | output: String, |
no outgoing calls
no test coverage detected