MCPcopy Create free account
hub / github.com/enowdev/enowX-Coder / needs_full_preview_guide

Function needs_full_preview_guide

src-tauri/src/agents/runner.rs:1903–1906  ·  view source on GitHub ↗

Check if the user's message contains keywords that need the full PREVIEW_GUIDE

(task: &str)

Source from the content-addressed store, hash-verified

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

Callers 2

execute_agentMethod · 0.85
execute_agent_leafMethod · 0.85

Calls

no outgoing calls

Tested by

no test coverage detected