import React from 'react'; import { X, Sliders, Moon, Sun, Trash2, ExternalLink } from 'lucide-react'; import { useApp } from '../../context/AppContext'; export const SettingsModal: React.FC = () => { const { state, dispatch, toggleTheme } = useApp(); if (!state.settingsOpen) return null; const handleClose = () => { dispatch({ type: 'TOGGLE_SETTINGS' }); }; return (

Settings

Appearance

API Configuration

API endpoints are configured via environment variables. See the backend .env file for configuration.

Data Management

RAG System v1.0.0 View on GitHub
); };