feat(knowledge): add pipeline support and build mode selection

refactor(configuration): reorganize naive config form with pipeline selector
feat(form): add RadioFormField component for build mode selection
docs: add ahooks usage guide for common patterns
style: update app title and favicon
chore: clean up unused agent interfaces
This commit is contained in:
2025-11-06 23:06:23 +08:00
parent e325beea4b
commit d24b371929
16 changed files with 550 additions and 60 deletions

View File

@@ -5,6 +5,7 @@ import AppRoutes from './routes';
import SnackbarProvider from './components/Provider/SnackbarProvider';
import DialogProvider from './components/Provider/DialogProvider';
import AuthGuard from './components/AuthGuard';
import { useTitle } from 'ahooks';
import './locales';
import './utils/request'
@@ -40,6 +41,8 @@ function MaterialUIApp() {
}
function App() {
useTitle('RAG Empowerment System');
return (
<MaterialUIApp />
);