Vazgen

Results 8 comments of Vazgen

Same problem when i tried connect with this button https://vazgen.space/s/d64dc3a975.png

Unfortunately, voice access only supports English, so I can't speak with my native language on my windows computer. Also voice access available only on windows 11.

I think it may be implemented using openai's stt servise and it uses same openai api key as chatpgt https://platform.openai.com/docs/api-reference/audio

> The application I was making a few weeks ago had a dependency on the AutoHotKey Python library, and that library has a `window.hide()` method that can hide arbitrary windows...

I'm having the same problem. I'm using the Pylance extension from VsCode, which uses pyright under the hood. ![image](https://github.com/user-attachments/assets/c38be182-6a11-493c-9685-0a80f2d951f2)

As @lashawn said, the stubs work fine. The only problem is the warning. That's all. Perhaps the problem is on the pyright side.

Yes, i use venv. Here's my setup: ![image](https://github.com/user-attachments/assets/831ea24f-1b63-481b-b548-4ae74c3c822f) I use [rye](https://rye.astral.sh/) for project management.

I solved this issue by adding following rule to `pyproject.toml`, corresponding to [pyright documentation](https://microsoft.github.io/pyright/#/configuration?id=type-check-rule-overrides). ```toml [tool.pyright] reportMissingModuleSource = false ```