Spaces:
Running
Running
File size: 2,608 Bytes
79278ec |
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 |
import { query } from '@/shared/api/query';
import { LLMConfig } from './types';
export const fetchLLMConfigs = async (): Promise<LLMConfig[]> => {
const response = await query<LLMConfig[]>({
url: '/llm_config/',
method: 'get',
});
if ('error' in response) {
throw new Error(`Ошибка получения конфигураций: ${response.error.status}`);
}
return response.data;
};
export const fetchLLMConfigById = async (id: number): Promise<LLMConfig> => {
const response = await query<LLMConfig>({
url: `/llm_config/${id}`,
method: 'get',
});
if ('error' in response) {
throw new Error(`Ошибка получения конфигурации: ${response.error.status}`);
}
return response.data;
};
export const createLLMConfig = async (config: Omit<LLMConfig, 'id' | 'created_at'>): Promise<LLMConfig> => {
const response = await query<LLMConfig>({
url: '/llm_config/',
method: 'post',
data: config,
});
if ('error' in response) {
throw new Error(`Ошибка создания конфигурации: ${response.error.status}`);
}
return response.data;
};
export const updateLLMConfig = async (config: LLMConfig): Promise<void> => {
const response = await query<void>({
url: `/llm_config/${config.id}`,
method: 'put',
data: config,
});
if ('error' in response) {
throw new Error(`Ошибка обновления конфигурации: ${response.error.status}`);
}
};
export const setDefaultLLMConfig = async (id: number): Promise<void> => {
const response = await query<void>({
url: `/llm_config/default/${id}`,
method: 'put',
});
if ('error' in response) {
throw new Error(`Ошибка установки конфигурации по умолчанию: ${response.error.status}`);
}
};
export const deleteLLMConfig = async (id: number): Promise<void> => {
const response = await query<void>({
url: `/llm_config/${id}`,
method: 'delete',
});
if ('error' in response) {
throw new Error(`Ошибка удаления конфигурации: ${response.error.status}`);
}
};
export const fetchDefaultLLMConfig = async (): Promise<LLMConfig | null> => {
const response = await query<LLMConfig>({
url: '/llm_config/default',
method: 'get',
});
if ('error' in response) {
if (response.error.status === 404) return null; // Если дефолтной записи нет
throw new Error(`Ошибка получения дефолтной конфигурации: ${response.error.status}`);
}
return response.data;
}; |