import { WEBUI_BASE_URL } from '$lib/constants'; export const getBackendConfig = async () => { let error = null; const res = await fetch(`${WEBUI_BASE_URL}/api/config`, { method: 'GET', headers: { 'Content-Type': 'application/json' } }) .then(async (res) => { if (!res.ok) throw await res.json(); return res.json(); }) .catch((err) => { console.log(err); error = err; return null; }); if (error) { throw error; } return res; }; export const getChangelog = async () => { let error = null; const res = await fetch(`${WEBUI_BASE_URL}/api/changelog`, { method: 'GET', headers: { 'Content-Type': 'application/json' } }) .then(async (res) => { if (!res.ok) throw await res.json(); return res.json(); }) .catch((err) => { console.log(err); error = err; return null; }); if (error) { throw error; } return res; }; export const getVersionUpdates = async () => { let error = null; const res = await fetch(`${WEBUI_BASE_URL}/api/version/updates`, { method: 'GET', headers: { 'Content-Type': 'application/json' } }) .then(async (res) => { if (!res.ok) throw await res.json(); return res.json(); }) .catch((err) => { console.log(err); error = err; return null; }); if (error) { throw error; } return res; }; export const getModelFilterConfig = async (token: string) => { let error = null; const res = await fetch(`${WEBUI_BASE_URL}/api/config/model/filter`, { 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; return null; }); if (error) { throw error; } return res; }; export const updateModelFilterConfig = async ( token: string, enabled: boolean, models: string[] ) => { let error = null; const res = await fetch(`${WEBUI_BASE_URL}/api/config/model/filter`, { method: 'POST', headers: { 'Content-Type': 'application/json', Authorization: `Bearer ${token}` }, body: JSON.stringify({ enabled: enabled, models: models }) }) .then(async (res) => { if (!res.ok) throw await res.json(); return res.json(); }) .catch((err) => { console.log(err); error = err; return null; }); if (error) { throw error; } return res; }; export const getWebhookUrl = async (token: string) => { let error = null; const res = await fetch(`${WEBUI_BASE_URL}/api/webhook`, { 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; return null; }); if (error) { throw error; } return res.url; }; export const updateWebhookUrl = async (token: string, url: string) => { let error = null; const res = await fetch(`${WEBUI_BASE_URL}/api/webhook`, { method: 'POST', headers: { 'Content-Type': 'application/json', Authorization: `Bearer ${token}` }, body: JSON.stringify({ url: url }) }) .then(async (res) => { if (!res.ok) throw await res.json(); return res.json(); }) .catch((err) => { console.log(err); error = err; return null; }); if (error) { throw error; } return res.url; }; export const getModelConfig = async (token: string): Promise => { let error = null; const res = await fetch(`${WEBUI_BASE_URL}/api/config/models`, { 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; return null; }); if (error) { throw error; } return res.models; }; export interface ModelConfig { id: string; name?: string; description?: string; vision_capable?: boolean; } export interface GlobalModelConfig { ollama: ModelConfig[]; litellm: ModelConfig[]; openai: ModelConfig[]; } export const updateModelConfig = async (token: string, config: GlobalModelConfig) => { let error = null; const res = await fetch(`${WEBUI_BASE_URL}/api/config/models`, { method: 'POST', headers: { 'Content-Type': 'application/json', Authorization: `Bearer ${token}` }, body: JSON.stringify(config) }) .then(async (res) => { if (!res.ok) throw await res.json(); return res.json(); }) .catch((err) => { console.log(err); error = err; return null; }); if (error) { throw error; } return res; };