Comment by HenryNdubuaku
15 hours ago
Hey, thanks for the feedback! I think this is a useful part of a demonstration so I added a 911 tool specifically to demonstrate this capability and the fact that you can guard it with triggers that make it so calling emergency is an unambiguous action given the input. This really shows that constructing the right tool set with the right surrounding setup is a priority when deploying needle.
> 'call nine one one' -> call_contact with name 'nine one one', no phone number given so use placeholder '9101' as placeholder.
> 'call 9 1 1' -> call_contact with name '9 1 1', no required params.
> 'call ambulance' -> call_contact with name 'ambulance'.
> 'call 911' -> call_contact with name '911' and no required params.
Only the last one actually used the emergency_sos function (even though the reasoning says it used call_contact). If I were to use needle in my application, how would I improve accuracy?
[dead]