rustling-ontology icon indicating copy to clipboard operation
rustling-ontology copied to clipboard

Ontology for rustling

Results 29 rustling-ontology issues
Sort by recently updated
recently updated
newest added

In all languages, review handling of intervals and their resolution. This should be consistent across languages, taking into account various differences between languages such as "since" (en) vs. "depuis" (fr)...

enhancement

# Parsing Error ## Version On the current platform ## Language `en` ## Parser input "in 8 hours" ## Parser output gives `TimeInterval` but the timestamp is `now + 8h...

# Parsing Error ## Version `0.15.2` ## Language `en` ## Not parsed queries - [ ] 1960's - [ ] sixties

enhancement

cf --> https://forum.snips.ai/t/nlu-uses-12h-clock-in-country-with-24h-clock/598

enhancement

I'm new to rust, please forgive me if I'm wrong :-). I got a question regarding the `moment` module, in `lib.rs` why **ONLY** re-export these 3 structs of chrono crate...

check

"next " should return either the actual next or the one after depending on the current **Example:** Date is Tuesday the 12th: * next Wednesday should be the 20th; *...

check

The algo can be improved for these entities: - [ ] am freitag den dreiβigsten juni um mittag (on friday june the thirtieth at noon) - [ ] am sonntag...

check

At the moment, finance is not supported in Chinese. It needs to be added.

onhold

1. ``` b.rule_1_terminal("named-day", b.reg(r#"星期日|星期天|礼拜天|周日|禮拜天|週日|禮拜日"#)?, |_| helpers::day_of_week(Weekday::Sun) ); ``` ``` 周天``` is missing 2. # ``` b.rule_1_terminal("hundred", b.reg(r#"百|仟"#)?, |_| IntegerValue::new_with_grain(100, 2) ); b.rule_1_terminal("thousand", b.reg(r#"千|佰"#)?, |_| IntegerValue::new_with_grain(1000, 3) ); ``` ```百|佰``` hundred...

onhold