Spaces:
Paused
Paused
| import { client } from './client'; | |
| import type { ListModelResponse, ListTTSModelResponse } from './types'; | |
| export const modelApi = { | |
| list: (provider: string) => client.get<ListModelResponse>('/model/', { provider }), | |
| }; | |
| export const ttsModelApi = { | |
| list: (provider: string) => client.get<ListTTSModelResponse>('/tts-model/', { provider }), | |
| }; | |