Ray Chen
Ray Chen
seems like the load_model function can only handle single int as device_index, but the fasterWhisper object handle int list when the fasterWhisper model being defined.
in transcribe.py I modified these lines, seems like it worked, doing more verification. 26: parser.add_argument("--device_index", default=0, type=Union[int, List[int]], help="device index to use for FasterWhisper inference") 86: device_index: Union[int, List[int]] =...
Thanks @kyleboddy, based on my investigation I do not think the model will process a single audio file with multiple GPUs concurrently.
Really appreciate the great work to have Microphone voice input capability with Chainlit. I have set it up by following the example [audio-assistant](https://github.com/Chainlit/cookbook/tree/main/audio-assistant), it works well on the laptop I...
Thanks so much! It worked, when having `return_timestamps=True` the timestamp is included in the result['chunks']
If Chainlit can have this feature, that would be great!
I got exact same issue "AttributeError: 'Client' object has no attribute '_api_client'" when I used Vertex AI, when I added the enviornment variable `export VERTEXAI_LOCATION="global"`, it got fixed and the...