Jarvy Jarvison

Results 29 comments of Jarvy Jarvison

I could try out [OpenTTS](https://github.com/synesthesiam/opentts) and then select reasonable defaults based on language, architecture, speed, and auto-configure via the API. But that might be a project for another month.

Yeah, that's a tough one. On one hand, I want folks to have a nice install experience without having to configure things in multiple places, and on the other I...

Maybe with this allow the user to see what entities have been pulled in. It's a bit of a mystery from the user's sense.

Not yet. Originally I didn't really want to add this as auto-pulling in all entities and making all attributes would likely result in a lot of system confusion when you...

maybe also pylint, isort, and `black` line length checks. Possibly also mypy, but i think more type annotations are still needed for that one.

We should be able to create a custom number slot dictionary: ``` @intents.dictionary_slots def number(self): return { "one": "1", "two": "2", "three": "3", } ``` and then in the sentences...

Ah, right now, we can't do "repeatable" slots... so instead of one slot defining all the numbers and then reusing for hours/minutes/seconds. It has to be effectively the same slot...

I did create a new branch (#234) that has a `repeatable_dictionary_slots` in the intent, which should allow for the above to work. I'll write up some docs on it and...

Yes, it would be inside the de.py class. I think technically it would have to be `timer_number` for it to be named properly. So you'd have something like this (but...

and I ended up merging the `repeatable_dictionary_slots` into main for now!