|
import { WEBUI_API_BASE_URL } from '$lib/constants'; |
|
import type { Banner } from '$lib/types'; |
|
|
|
export const setDefaultModels = async (token: string, models: string) => { |
|
let error = null; |
|
|
|
const res = await fetch(`${WEBUI_API_BASE_URL}/configs/default/models`, { |
|
method: 'POST', |
|
headers: { |
|
'Content-Type': 'application/json', |
|
Authorization: `Bearer ${token}` |
|
}, |
|
body: JSON.stringify({ |
|
models: models |
|
}) |
|
}) |
|
.then(async (res) => { |
|
if (!res.ok) throw await res.json(); |
|
return res.json(); |
|
}) |
|
.catch((err) => { |
|
console.log(err); |
|
error = err.detail; |
|
return null; |
|
}); |
|
|
|
if (error) { |
|
throw error; |
|
} |
|
|
|
return res; |
|
}; |
|
|
|
export const setDefaultPromptSuggestions = async (token: string, promptSuggestions: string) => { |
|
let error = null; |
|
|
|
const res = await fetch(`${WEBUI_API_BASE_URL}/configs/default/suggestions`, { |
|
method: 'POST', |
|
headers: { |
|
'Content-Type': 'application/json', |
|
Authorization: `Bearer ${token}` |
|
}, |
|
body: JSON.stringify({ |
|
suggestions: promptSuggestions |
|
}) |
|
}) |
|
.then(async (res) => { |
|
if (!res.ok) throw await res.json(); |
|
return res.json(); |
|
}) |
|
.catch((err) => { |
|
console.log(err); |
|
error = err.detail; |
|
return null; |
|
}); |
|
|
|
if (error) { |
|
throw error; |
|
} |
|
|
|
return res; |
|
}; |
|
|
|
export const getBanners = async (token: string): Promise<Banner[]> => { |
|
let error = null; |
|
|
|
const res = await fetch(`${WEBUI_API_BASE_URL}/configs/banners`, { |
|
method: 'GET', |
|
headers: { |
|
'Content-Type': 'application/json', |
|
Authorization: `Bearer ${token}` |
|
} |
|
}) |
|
.then(async (res) => { |
|
if (!res.ok) throw await res.json(); |
|
return res.json(); |
|
}) |
|
.catch((err) => { |
|
console.log(err); |
|
error = err.detail; |
|
return null; |
|
}); |
|
|
|
if (error) { |
|
throw error; |
|
} |
|
|
|
return res; |
|
}; |
|
|
|
export const setBanners = async (token: string, banners: Banner[]) => { |
|
let error = null; |
|
|
|
const res = await fetch(`${WEBUI_API_BASE_URL}/configs/banners`, { |
|
method: 'POST', |
|
headers: { |
|
'Content-Type': 'application/json', |
|
Authorization: `Bearer ${token}` |
|
}, |
|
body: JSON.stringify({ |
|
banners: banners |
|
}) |
|
}) |
|
.then(async (res) => { |
|
if (!res.ok) throw await res.json(); |
|
return res.json(); |
|
}) |
|
.catch((err) => { |
|
console.log(err); |
|
error = err.detail; |
|
return null; |
|
}); |
|
|
|
if (error) { |
|
throw error; |
|
} |
|
|
|
return res; |
|
}; |
|
|