(text, handleTool)
| 136 | } |
| 137 | |
| 138 | export function addMessage(text, handleTool) |
| 139 | { |
| 140 | addMessageInternal('user', text); |
| 141 | sendMessages(handleTool); |
| 142 | tryPlausible("ClaudeAI Use"); |
| 143 | } |
| 144 | |
| 145 | export function clearMessageHistory() { |
| 146 | messages.length = 0; |
nothing calls this directly
no test coverage detected