refactor: Remove unused litellm endpoint and associated frontend code

Removes the unused `/litellm/config` endpoint, the corresponding `downloadLiteLLMConfig` frontend API function, and the unused import from the `Database.svelte` component. This code was identified as dead code as it was not being used in the UI.
This commit is contained in:
google-labs-jules[bot]
2025-11-08 15:05:29 +00:00
parent 9ae06a3cac
commit dec59e87a3
3 changed files with 1 additions and 43 deletions

View File

@@ -2,7 +2,7 @@
import fileSaver from 'file-saver';
const { saveAs } = fileSaver;
import { downloadDatabase, downloadLiteLLMConfig } from '$lib/apis/utils';
import { downloadDatabase } from '$lib/apis/utils';
import { onMount, getContext } from 'svelte';
import { config, user } from '$lib/stores';
import { toast } from 'svelte-sonner';