| 35 | export type GpuVendor = 'nvidia' | 'amd' | 'intel' | 'apple' | 'unknown'; |
| 36 | |
| 37 | export interface GpuInfo { |
| 38 | name: string; |
| 39 | vendor: GpuVendor; |
| 40 | } |
| 41 | |
| 42 | /** |
| 43 | * 实际加载的 whisper 后端 |
nothing calls this directly
no outgoing calls
no test coverage detected