23 lines
636 B
TypeScript
23 lines
636 B
TypeScript
|
|
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<ApiModelListResponse> {
|
||
|
|
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<ApiModelListResponse>;
|
||
|
|
}
|
||
|
|
}
|