File tree 3 files changed +3
-3
lines changed
3 files changed +3
-3
lines changed Original file line number Diff line number Diff line change @@ -45,7 +45,7 @@ openai = "openai.cli:main"
45
45
[project .optional-dependencies ]
46
46
realtime = [" websockets >= 13, < 15" ]
47
47
datalib = [" numpy >= 1" , " pandas >= 1.2.3" , " pandas-stubs >= 1.1.0.11" ]
48
- audio = [" sounddevice>=0.5.1" , " numpy>=2.0.2" ]
48
+ voice_helpers = [" sounddevice>=0.5.1" , " numpy>=2.0.2" ]
49
49
50
50
[tool .rye ]
51
51
managed = true
Original file line number Diff line number Diff line change 10
10
import numpy as numpy
11
11
12
12
13
- NUMPY_INSTRUCTIONS = format_instructions (library = "numpy" , extra = "audio " )
13
+ NUMPY_INSTRUCTIONS = format_instructions (library = "numpy" , extra = "voice_helpers " )
14
14
15
15
16
16
class NumpyProxy (LazyProxy [Any ]):
Original file line number Diff line number Diff line change 10
10
import sounddevice as sounddevice # type: ignore
11
11
12
12
13
- SOUNDDEVICE_INSTRUCTIONS = format_instructions (library = "sounddevice" , extra = "audio " )
13
+ SOUNDDEVICE_INSTRUCTIONS = format_instructions (library = "sounddevice" , extra = "voice_helpers " )
14
14
15
15
16
16
class SounddeviceProxy (LazyProxy [Any ]):
You can’t perform that action at this time.
0 commit comments