Max Bachmann
Max Bachmann
I am honestly confused by this. This is something we pull in from CPython: ``` /* Py_ssize_t is a signed integral type such that sizeof(Py_ssize_t) == * sizeof(size_t). C99 doesn't...
I like this idea. Using something standardised like gettext as you proposed, since it is supported by most translation systems without any extra effort. So it would be possible to...
One thing to keep in mind with this is that it should only retrain when there was a change (either to the files or some other settings like e.g. the...
I think it would be hard to compare them to the trained ones, since this would require generating them aswell. Reasons to retrain from the top of my head: -...
Shouldn't this already be possible using the standard mqtt topics with this decorator aswell (I did not test it)? I would expect ```python @app.on_intent("megaApp/+") ``` to receive all messages one...
Another option would be to completely abstract this namespace away everywhere. So this namespace would simply always be the skill name. -> in the sentences.ini the user would write the...
Hm maybe make the decorator ```python on_intent(intent="#", namespace=skill_name) ``` and then have a logic along the lines ```python intent = f"{namespace}/{intent}" if namespace else intent ``` this way the simple...
Oh the documentation is simply outdated. In the past I did use two implementations since I didn't have a way to make the implementation for long needles reasonably fast. However...
Yes I will probably fix the docs at some point this week
strange nothing really changed between these two versions that should affect the C++ version. Can you provide some context: - what is the CPU you are using? - what is...