import { base } from '$app/paths'; import { config } from '$lib/stores/settings.svelte'; import type { ApiModelListResponse } from '$lib/types/api'; export class ModelsService { static async list(): Promise { const currentConfig = config(); const apiKey = currentConfig.apiKey?.toString().trim(); const response = await fetch(`${base}/v1/models`, { headers: { ...(apiKey ? { Authorization: `Bearer ${apiKey}` } : {}) } }); if (!response.ok) { throw new Error(`Failed to fetch model list (status ${response.status})`); } return response.json() as Promise; } }