Fix ArrowDown import

This commit is contained in:
2026-06-15 13:41:44 -07:00
parent ba00e143cc
commit d2d487eb97
2 changed files with 124 additions and 2 deletions

View File

@@ -71,6 +71,7 @@ function classifyTurnIntent(message: string): TurnIntent {
// High-agency directives
if (
/^(yes|yep|yeah|yup|sure|ok|okay|kk|k|please|fix it)\b/.test(m) ||
/(keep going|continue|build it|do it|go ahead|proceed|autonomous)/.test(m)
)
return "autonomous";
@@ -134,7 +135,7 @@ function classifyTurnIntent(message: string): TurnIntent {
m,
) ||
// Acknowledgements / pleasantries
/^(thanks|thank you|ty|ok|okay|kk|k|yes|yep|yeah|yup|no|nope|nah|sure|cool|nice|great|awesome|perfect|got it|sounds good|will do|nvm|never mind)\b/.test(
/^(thanks|thank you|ty|no|nope|nah|cool|nice|great|awesome|perfect|got it|sounds good|will do|nvm|never mind)\b/.test(
m,
) ||
/(what'?s up|how are you|how'?s it going|good to see you)/.test(m) ||