diff --git a/lightrag/api/static/index.html b/lightrag/api/static/index.html index 56a70ad7..60900c03 100644 --- a/lightrag/api/static/index.html +++ b/lightrag/api/static/index.html @@ -98,358 +98,7 @@ - - // Utility functions - const showToast = (message, duration = 3000) => { - const toast = document.getElementById('toast'); - toast.querySelector('div').textContent = message; - toast.classList.remove('hidden'); - setTimeout(() => toast.classList.add('hidden'), duration); - }; - - const fetchWithAuth = async (url, options = {}) => { - const headers = { - ...(options.headers || {}), - ...(state.apiKey ? { 'Authorization': `Bearer ${state.apiKey}` } : {}) - }; - return fetch(url, { ...options, headers }); - }; - - // Page renderers - const pages = { - 'file-manager': () => ` -
0 files processed
-Knowledge graph visualization will be available in a future update.
-Working Directory: ${data.working_directory}
-Input Directory: ${data.input_directory}
-Indexed Files: ${data.indexed_files_count}
-