Alexandre Sajus

Results 37 comments of Alexandre Sajus

Sure! You can change the voice in `main.py` at [line 116](https://github.com/AlexandreSajus/JARVIS/blob/main/main.py#L116C45-L116C45). There is a voice and a model parameter you can change: ```python audio = elevenlabs.generate(text=response, voice="Adam", model="eleven_monolingual_v1") ``` You...

Ah my bad, I did not get your issue indeed. I'll try to use a custom voice if I have time and report back to you. Concerning the second issue,...

Sorry, I don't have the bandwidth currently to work on this. Let me know if you make progress. I'd love to see what you are making with this.

Sure, I'll ask her and schedule a meeting

Closing this issue to separate it into 3 separate issues: #744 #745 #746

We have been getting many complaints on this, switching priority to critical. Also there might be the same issue on the slider visual element

Sometimes, even with continuous disabled, the app does not have enough resources to keep up and will lag the slider. Maybe that's another issue

Yeah I'm also not sure how we could fix this outside of doing a lot of renaming. You can close as non-planned

I agree with this issue. We should align with the Python standards. For example, in NumPy, np.arange uses `min`, `max` and `step` with step defaulting to 1. This allows you...

Another issue we found is this: ```python from taipy.gui import Gui x_range = range(1, 6) data = {"X": x_range, "Y": [x * x for x in x_range]} page = """...