stanford-oval / thingpedia-common-devices

Thingpedia interface code for commonly used devices
Other
38 stars 28 forks source link

Accuracy/correctness of SmartNews commands is bad #324

Open gcampax opened 3 years ago

gcampax commented 3 years ago

"get news about coronavirus" parses to @com.smartnews.article() filter source =~ "coronavirus"; (wrong)

"get news from yesterday" parses to @com.smartnews.article() filter date == $start_of(day) - 1day; (kind of wrong), then returns no results

"get news in the last 3 hours" parses to @com.smartnews.article() filter date <= $now - 3h (wrong)

"get news from the san francisco chronicel" parses to @com.smartnews.article() filter source =~ "san francisco chronicle"; and returns no results

gcampax commented 3 years ago

"get cat news" parses to cat api (wrong)