├── .gitignore ├── LICENSE ├── README.md ├── assets ├── Hyper-RAG.pdf ├── extract.svg ├── fw.svg ├── hg.svg ├── many_llms_all.svg ├── many_llms_sp.svg ├── multi_domain.svg ├── speed_all.svg ├── vis-QA.png └── vis-hg.png ├── config_temp.py ├── evaluate ├── evaluate_by_scoring.py └── evaluate_by_selection.py ├── examples ├── hyperrag_demo.py └── mock_data.txt ├── hyperrag ├── __init__.py ├── base.py ├── hyperrag.py ├── llm.py ├── operate.py ├── prompt.py ├── storage.py └── utils.py ├── reproduce ├── Step_0.py ├── Step_1.py ├── Step_2_extract_question.py └── Step_3_response_question.py ├── requirements.txt └── web-ui ├── .dockerignore ├── .gitignore ├── DOCKER.md ├── README.md ├── assets ├── api.png ├── chat_e.png ├── db1.png ├── db2.png ├── file.png ├── graph.png ├── graph_e.png └── setting.png ├── backend ├── .dockerignore ├── Dockerfile ├── README.md ├── db.py ├── file_manager.py ├── hyperdb │ ├── __init__.py │ ├── _global.py │ ├── base.py │ └── hypergraph.py ├── main.py ├── requirements.txt ├── test_database_name.py ├── test_file_api.py ├── test_hyperrag_api.py └── test_websocket_logs.py ├── docker-compose.yml ├── frontend ├── .commitlintrc.cjs ├── .dockerignore ├── .eslintignore ├── .eslintrc.cjs ├── .prettierignore ├── .prettierrc ├── .stylelintignore ├── .stylelintrc.cjs ├── Dockerfile ├── README.md ├── config │ ├── defaultSettings.ts │ ├── mock │ │ └── user.ts │ ├── proxy.ts │ └── routes │ │ ├── index.tsx │ │ └── routers.jsx ├── index.html ├── package.json ├── postcss.config.js ├── public │ └── logo.png ├── server.js ├── src │ ├── 404.tsx │ ├── App.tsx │ ├── ErrorPage.tsx │ ├── _defaultProps.tsx │ ├── assets │ │ ├── react.svg │ │ └── show.png │ ├── components │ │ ├── DatabaseSelector │ │ │ └── index.tsx │ │ ├── HyperGraph │ │ │ └── index.tsx │ │ ├── LanguageSelector │ │ │ └── index.tsx │ │ ├── NotFound │ │ │ ├── index.tsx │ │ │ └── type.d.ts │ │ ├── RetrievalHyperGraph │ │ │ └── index.tsx │ │ ├── RetrievalInfo │ │ │ └── index.tsx │ │ ├── errorBoundary.jsx │ │ ├── loading │ │ │ ├── index.module.less │ │ │ └── index.tsx │ │ └── ui │ │ │ ├── avatar.tsx │ │ │ ├── button.tsx │ │ │ ├── index.ts │ │ │ ├── input.tsx │ │ │ ├── scroll-area.tsx │ │ │ ├── select.tsx │ │ │ ├── separator.tsx │ │ │ └── textarea.tsx │ ├── i18n │ │ ├── index.ts │ │ └── locales │ │ │ ├── en-US.json │ │ │ └── zh-CN.json │ ├── layout │ │ └── BasicLayout.tsx │ ├── main.tsx │ ├── pages │ │ ├── API │ │ │ └── index.tsx │ │ ├── Home │ │ │ ├── data.js │ │ │ └── index.tsx │ │ ├── Hyper │ │ │ ├── DB │ │ │ │ └── index.tsx │ │ │ ├── Files │ │ │ │ └── index.jsx │ │ │ └── Graph │ │ │ │ ├── data.ts │ │ │ │ └── index.tsx │ │ └── Setting │ │ │ └── index.tsx │ ├── store │ │ └── globalUser.ts │ ├── styles │ │ └── tailwind.css │ ├── utils │ │ └── index.ts │ └── vite-env.d.ts ├── tailwind.config.js ├── tsconfig.json └── vite.config.ts └── nginx.conf /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iMoonLab/Hyper-RAG/HEAD/.gitignore -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iMoonLab/Hyper-RAG/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iMoonLab/Hyper-RAG/HEAD/README.md -------------------------------------------------------------------------------- /assets/Hyper-RAG.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iMoonLab/Hyper-RAG/HEAD/assets/Hyper-RAG.pdf -------------------------------------------------------------------------------- /assets/extract.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iMoonLab/Hyper-RAG/HEAD/assets/extract.svg -------------------------------------------------------------------------------- /assets/fw.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iMoonLab/Hyper-RAG/HEAD/assets/fw.svg -------------------------------------------------------------------------------- /assets/hg.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iMoonLab/Hyper-RAG/HEAD/assets/hg.svg -------------------------------------------------------------------------------- /assets/many_llms_all.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iMoonLab/Hyper-RAG/HEAD/assets/many_llms_all.svg -------------------------------------------------------------------------------- /assets/many_llms_sp.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iMoonLab/Hyper-RAG/HEAD/assets/many_llms_sp.svg -------------------------------------------------------------------------------- /assets/multi_domain.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iMoonLab/Hyper-RAG/HEAD/assets/multi_domain.svg -------------------------------------------------------------------------------- /assets/speed_all.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iMoonLab/Hyper-RAG/HEAD/assets/speed_all.svg -------------------------------------------------------------------------------- /assets/vis-QA.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iMoonLab/Hyper-RAG/HEAD/assets/vis-QA.png -------------------------------------------------------------------------------- /assets/vis-hg.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iMoonLab/Hyper-RAG/HEAD/assets/vis-hg.png -------------------------------------------------------------------------------- /config_temp.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iMoonLab/Hyper-RAG/HEAD/config_temp.py -------------------------------------------------------------------------------- /evaluate/evaluate_by_scoring.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iMoonLab/Hyper-RAG/HEAD/evaluate/evaluate_by_scoring.py -------------------------------------------------------------------------------- /evaluate/evaluate_by_selection.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iMoonLab/Hyper-RAG/HEAD/evaluate/evaluate_by_selection.py -------------------------------------------------------------------------------- /examples/hyperrag_demo.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iMoonLab/Hyper-RAG/HEAD/examples/hyperrag_demo.py -------------------------------------------------------------------------------- /examples/mock_data.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iMoonLab/Hyper-RAG/HEAD/examples/mock_data.txt -------------------------------------------------------------------------------- /hyperrag/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iMoonLab/Hyper-RAG/HEAD/hyperrag/__init__.py -------------------------------------------------------------------------------- /hyperrag/base.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iMoonLab/Hyper-RAG/HEAD/hyperrag/base.py -------------------------------------------------------------------------------- /hyperrag/hyperrag.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iMoonLab/Hyper-RAG/HEAD/hyperrag/hyperrag.py -------------------------------------------------------------------------------- /hyperrag/llm.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iMoonLab/Hyper-RAG/HEAD/hyperrag/llm.py -------------------------------------------------------------------------------- /hyperrag/operate.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iMoonLab/Hyper-RAG/HEAD/hyperrag/operate.py -------------------------------------------------------------------------------- /hyperrag/prompt.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iMoonLab/Hyper-RAG/HEAD/hyperrag/prompt.py -------------------------------------------------------------------------------- /hyperrag/storage.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iMoonLab/Hyper-RAG/HEAD/hyperrag/storage.py -------------------------------------------------------------------------------- /hyperrag/utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iMoonLab/Hyper-RAG/HEAD/hyperrag/utils.py -------------------------------------------------------------------------------- /reproduce/Step_0.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iMoonLab/Hyper-RAG/HEAD/reproduce/Step_0.py -------------------------------------------------------------------------------- /reproduce/Step_1.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iMoonLab/Hyper-RAG/HEAD/reproduce/Step_1.py -------------------------------------------------------------------------------- /reproduce/Step_2_extract_question.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iMoonLab/Hyper-RAG/HEAD/reproduce/Step_2_extract_question.py -------------------------------------------------------------------------------- /reproduce/Step_3_response_question.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iMoonLab/Hyper-RAG/HEAD/reproduce/Step_3_response_question.py -------------------------------------------------------------------------------- /requirements.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iMoonLab/Hyper-RAG/HEAD/requirements.txt -------------------------------------------------------------------------------- /web-ui/.dockerignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iMoonLab/Hyper-RAG/HEAD/web-ui/.dockerignore -------------------------------------------------------------------------------- /web-ui/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iMoonLab/Hyper-RAG/HEAD/web-ui/.gitignore -------------------------------------------------------------------------------- /web-ui/DOCKER.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iMoonLab/Hyper-RAG/HEAD/web-ui/DOCKER.md -------------------------------------------------------------------------------- /web-ui/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iMoonLab/Hyper-RAG/HEAD/web-ui/README.md -------------------------------------------------------------------------------- /web-ui/assets/api.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iMoonLab/Hyper-RAG/HEAD/web-ui/assets/api.png -------------------------------------------------------------------------------- /web-ui/assets/chat_e.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iMoonLab/Hyper-RAG/HEAD/web-ui/assets/chat_e.png -------------------------------------------------------------------------------- /web-ui/assets/db1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iMoonLab/Hyper-RAG/HEAD/web-ui/assets/db1.png -------------------------------------------------------------------------------- /web-ui/assets/db2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iMoonLab/Hyper-RAG/HEAD/web-ui/assets/db2.png -------------------------------------------------------------------------------- /web-ui/assets/file.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iMoonLab/Hyper-RAG/HEAD/web-ui/assets/file.png -------------------------------------------------------------------------------- /web-ui/assets/graph.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iMoonLab/Hyper-RAG/HEAD/web-ui/assets/graph.png -------------------------------------------------------------------------------- /web-ui/assets/graph_e.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iMoonLab/Hyper-RAG/HEAD/web-ui/assets/graph_e.png -------------------------------------------------------------------------------- /web-ui/assets/setting.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iMoonLab/Hyper-RAG/HEAD/web-ui/assets/setting.png -------------------------------------------------------------------------------- /web-ui/backend/.dockerignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iMoonLab/Hyper-RAG/HEAD/web-ui/backend/.dockerignore -------------------------------------------------------------------------------- /web-ui/backend/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iMoonLab/Hyper-RAG/HEAD/web-ui/backend/Dockerfile -------------------------------------------------------------------------------- /web-ui/backend/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iMoonLab/Hyper-RAG/HEAD/web-ui/backend/README.md -------------------------------------------------------------------------------- /web-ui/backend/db.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iMoonLab/Hyper-RAG/HEAD/web-ui/backend/db.py -------------------------------------------------------------------------------- /web-ui/backend/file_manager.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iMoonLab/Hyper-RAG/HEAD/web-ui/backend/file_manager.py -------------------------------------------------------------------------------- /web-ui/backend/hyperdb/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iMoonLab/Hyper-RAG/HEAD/web-ui/backend/hyperdb/__init__.py -------------------------------------------------------------------------------- /web-ui/backend/hyperdb/_global.py: -------------------------------------------------------------------------------- 1 | AUTHOR_EMAIL = "evanfeng97@gmail.com" 2 | -------------------------------------------------------------------------------- /web-ui/backend/hyperdb/base.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iMoonLab/Hyper-RAG/HEAD/web-ui/backend/hyperdb/base.py -------------------------------------------------------------------------------- /web-ui/backend/hyperdb/hypergraph.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iMoonLab/Hyper-RAG/HEAD/web-ui/backend/hyperdb/hypergraph.py -------------------------------------------------------------------------------- /web-ui/backend/main.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iMoonLab/Hyper-RAG/HEAD/web-ui/backend/main.py -------------------------------------------------------------------------------- /web-ui/backend/requirements.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iMoonLab/Hyper-RAG/HEAD/web-ui/backend/requirements.txt -------------------------------------------------------------------------------- /web-ui/backend/test_database_name.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iMoonLab/Hyper-RAG/HEAD/web-ui/backend/test_database_name.py -------------------------------------------------------------------------------- /web-ui/backend/test_file_api.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iMoonLab/Hyper-RAG/HEAD/web-ui/backend/test_file_api.py -------------------------------------------------------------------------------- /web-ui/backend/test_hyperrag_api.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iMoonLab/Hyper-RAG/HEAD/web-ui/backend/test_hyperrag_api.py -------------------------------------------------------------------------------- /web-ui/backend/test_websocket_logs.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iMoonLab/Hyper-RAG/HEAD/web-ui/backend/test_websocket_logs.py -------------------------------------------------------------------------------- /web-ui/docker-compose.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iMoonLab/Hyper-RAG/HEAD/web-ui/docker-compose.yml -------------------------------------------------------------------------------- /web-ui/frontend/.commitlintrc.cjs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iMoonLab/Hyper-RAG/HEAD/web-ui/frontend/.commitlintrc.cjs -------------------------------------------------------------------------------- /web-ui/frontend/.dockerignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iMoonLab/Hyper-RAG/HEAD/web-ui/frontend/.dockerignore -------------------------------------------------------------------------------- /web-ui/frontend/.eslintignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iMoonLab/Hyper-RAG/HEAD/web-ui/frontend/.eslintignore -------------------------------------------------------------------------------- /web-ui/frontend/.eslintrc.cjs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iMoonLab/Hyper-RAG/HEAD/web-ui/frontend/.eslintrc.cjs -------------------------------------------------------------------------------- /web-ui/frontend/.prettierignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iMoonLab/Hyper-RAG/HEAD/web-ui/frontend/.prettierignore -------------------------------------------------------------------------------- /web-ui/frontend/.prettierrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iMoonLab/Hyper-RAG/HEAD/web-ui/frontend/.prettierrc -------------------------------------------------------------------------------- /web-ui/frontend/.stylelintignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iMoonLab/Hyper-RAG/HEAD/web-ui/frontend/.stylelintignore -------------------------------------------------------------------------------- /web-ui/frontend/.stylelintrc.cjs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iMoonLab/Hyper-RAG/HEAD/web-ui/frontend/.stylelintrc.cjs -------------------------------------------------------------------------------- /web-ui/frontend/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iMoonLab/Hyper-RAG/HEAD/web-ui/frontend/Dockerfile -------------------------------------------------------------------------------- /web-ui/frontend/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iMoonLab/Hyper-RAG/HEAD/web-ui/frontend/README.md -------------------------------------------------------------------------------- /web-ui/frontend/config/defaultSettings.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iMoonLab/Hyper-RAG/HEAD/web-ui/frontend/config/defaultSettings.ts -------------------------------------------------------------------------------- /web-ui/frontend/config/mock/user.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iMoonLab/Hyper-RAG/HEAD/web-ui/frontend/config/mock/user.ts -------------------------------------------------------------------------------- /web-ui/frontend/config/proxy.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iMoonLab/Hyper-RAG/HEAD/web-ui/frontend/config/proxy.ts -------------------------------------------------------------------------------- /web-ui/frontend/config/routes/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iMoonLab/Hyper-RAG/HEAD/web-ui/frontend/config/routes/index.tsx -------------------------------------------------------------------------------- /web-ui/frontend/config/routes/routers.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iMoonLab/Hyper-RAG/HEAD/web-ui/frontend/config/routes/routers.jsx -------------------------------------------------------------------------------- /web-ui/frontend/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iMoonLab/Hyper-RAG/HEAD/web-ui/frontend/index.html -------------------------------------------------------------------------------- /web-ui/frontend/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iMoonLab/Hyper-RAG/HEAD/web-ui/frontend/package.json -------------------------------------------------------------------------------- /web-ui/frontend/postcss.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iMoonLab/Hyper-RAG/HEAD/web-ui/frontend/postcss.config.js -------------------------------------------------------------------------------- /web-ui/frontend/public/logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iMoonLab/Hyper-RAG/HEAD/web-ui/frontend/public/logo.png -------------------------------------------------------------------------------- /web-ui/frontend/server.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iMoonLab/Hyper-RAG/HEAD/web-ui/frontend/server.js -------------------------------------------------------------------------------- /web-ui/frontend/src/404.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iMoonLab/Hyper-RAG/HEAD/web-ui/frontend/src/404.tsx -------------------------------------------------------------------------------- /web-ui/frontend/src/App.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iMoonLab/Hyper-RAG/HEAD/web-ui/frontend/src/App.tsx -------------------------------------------------------------------------------- /web-ui/frontend/src/ErrorPage.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iMoonLab/Hyper-RAG/HEAD/web-ui/frontend/src/ErrorPage.tsx -------------------------------------------------------------------------------- /web-ui/frontend/src/_defaultProps.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iMoonLab/Hyper-RAG/HEAD/web-ui/frontend/src/_defaultProps.tsx -------------------------------------------------------------------------------- /web-ui/frontend/src/assets/react.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iMoonLab/Hyper-RAG/HEAD/web-ui/frontend/src/assets/react.svg -------------------------------------------------------------------------------- /web-ui/frontend/src/assets/show.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iMoonLab/Hyper-RAG/HEAD/web-ui/frontend/src/assets/show.png -------------------------------------------------------------------------------- /web-ui/frontend/src/components/DatabaseSelector/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iMoonLab/Hyper-RAG/HEAD/web-ui/frontend/src/components/DatabaseSelector/index.tsx -------------------------------------------------------------------------------- /web-ui/frontend/src/components/HyperGraph/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iMoonLab/Hyper-RAG/HEAD/web-ui/frontend/src/components/HyperGraph/index.tsx -------------------------------------------------------------------------------- /web-ui/frontend/src/components/LanguageSelector/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iMoonLab/Hyper-RAG/HEAD/web-ui/frontend/src/components/LanguageSelector/index.tsx -------------------------------------------------------------------------------- /web-ui/frontend/src/components/NotFound/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iMoonLab/Hyper-RAG/HEAD/web-ui/frontend/src/components/NotFound/index.tsx -------------------------------------------------------------------------------- /web-ui/frontend/src/components/NotFound/type.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iMoonLab/Hyper-RAG/HEAD/web-ui/frontend/src/components/NotFound/type.d.ts -------------------------------------------------------------------------------- /web-ui/frontend/src/components/RetrievalHyperGraph/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iMoonLab/Hyper-RAG/HEAD/web-ui/frontend/src/components/RetrievalHyperGraph/index.tsx -------------------------------------------------------------------------------- /web-ui/frontend/src/components/RetrievalInfo/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iMoonLab/Hyper-RAG/HEAD/web-ui/frontend/src/components/RetrievalInfo/index.tsx -------------------------------------------------------------------------------- /web-ui/frontend/src/components/errorBoundary.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iMoonLab/Hyper-RAG/HEAD/web-ui/frontend/src/components/errorBoundary.jsx -------------------------------------------------------------------------------- /web-ui/frontend/src/components/loading/index.module.less: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iMoonLab/Hyper-RAG/HEAD/web-ui/frontend/src/components/loading/index.module.less -------------------------------------------------------------------------------- /web-ui/frontend/src/components/loading/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iMoonLab/Hyper-RAG/HEAD/web-ui/frontend/src/components/loading/index.tsx -------------------------------------------------------------------------------- /web-ui/frontend/src/components/ui/avatar.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iMoonLab/Hyper-RAG/HEAD/web-ui/frontend/src/components/ui/avatar.tsx -------------------------------------------------------------------------------- /web-ui/frontend/src/components/ui/button.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iMoonLab/Hyper-RAG/HEAD/web-ui/frontend/src/components/ui/button.tsx -------------------------------------------------------------------------------- /web-ui/frontend/src/components/ui/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iMoonLab/Hyper-RAG/HEAD/web-ui/frontend/src/components/ui/index.ts -------------------------------------------------------------------------------- /web-ui/frontend/src/components/ui/input.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iMoonLab/Hyper-RAG/HEAD/web-ui/frontend/src/components/ui/input.tsx -------------------------------------------------------------------------------- /web-ui/frontend/src/components/ui/scroll-area.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iMoonLab/Hyper-RAG/HEAD/web-ui/frontend/src/components/ui/scroll-area.tsx -------------------------------------------------------------------------------- /web-ui/frontend/src/components/ui/select.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iMoonLab/Hyper-RAG/HEAD/web-ui/frontend/src/components/ui/select.tsx -------------------------------------------------------------------------------- /web-ui/frontend/src/components/ui/separator.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iMoonLab/Hyper-RAG/HEAD/web-ui/frontend/src/components/ui/separator.tsx -------------------------------------------------------------------------------- /web-ui/frontend/src/components/ui/textarea.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iMoonLab/Hyper-RAG/HEAD/web-ui/frontend/src/components/ui/textarea.tsx -------------------------------------------------------------------------------- /web-ui/frontend/src/i18n/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iMoonLab/Hyper-RAG/HEAD/web-ui/frontend/src/i18n/index.ts -------------------------------------------------------------------------------- /web-ui/frontend/src/i18n/locales/en-US.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iMoonLab/Hyper-RAG/HEAD/web-ui/frontend/src/i18n/locales/en-US.json -------------------------------------------------------------------------------- /web-ui/frontend/src/i18n/locales/zh-CN.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iMoonLab/Hyper-RAG/HEAD/web-ui/frontend/src/i18n/locales/zh-CN.json -------------------------------------------------------------------------------- /web-ui/frontend/src/layout/BasicLayout.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iMoonLab/Hyper-RAG/HEAD/web-ui/frontend/src/layout/BasicLayout.tsx -------------------------------------------------------------------------------- /web-ui/frontend/src/main.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iMoonLab/Hyper-RAG/HEAD/web-ui/frontend/src/main.tsx -------------------------------------------------------------------------------- /web-ui/frontend/src/pages/API/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iMoonLab/Hyper-RAG/HEAD/web-ui/frontend/src/pages/API/index.tsx -------------------------------------------------------------------------------- /web-ui/frontend/src/pages/Home/data.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iMoonLab/Hyper-RAG/HEAD/web-ui/frontend/src/pages/Home/data.js -------------------------------------------------------------------------------- /web-ui/frontend/src/pages/Home/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iMoonLab/Hyper-RAG/HEAD/web-ui/frontend/src/pages/Home/index.tsx -------------------------------------------------------------------------------- /web-ui/frontend/src/pages/Hyper/DB/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iMoonLab/Hyper-RAG/HEAD/web-ui/frontend/src/pages/Hyper/DB/index.tsx -------------------------------------------------------------------------------- /web-ui/frontend/src/pages/Hyper/Files/index.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iMoonLab/Hyper-RAG/HEAD/web-ui/frontend/src/pages/Hyper/Files/index.jsx -------------------------------------------------------------------------------- /web-ui/frontend/src/pages/Hyper/Graph/data.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iMoonLab/Hyper-RAG/HEAD/web-ui/frontend/src/pages/Hyper/Graph/data.ts -------------------------------------------------------------------------------- /web-ui/frontend/src/pages/Hyper/Graph/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iMoonLab/Hyper-RAG/HEAD/web-ui/frontend/src/pages/Hyper/Graph/index.tsx -------------------------------------------------------------------------------- /web-ui/frontend/src/pages/Setting/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iMoonLab/Hyper-RAG/HEAD/web-ui/frontend/src/pages/Setting/index.tsx -------------------------------------------------------------------------------- /web-ui/frontend/src/store/globalUser.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iMoonLab/Hyper-RAG/HEAD/web-ui/frontend/src/store/globalUser.ts -------------------------------------------------------------------------------- /web-ui/frontend/src/styles/tailwind.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iMoonLab/Hyper-RAG/HEAD/web-ui/frontend/src/styles/tailwind.css -------------------------------------------------------------------------------- /web-ui/frontend/src/utils/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iMoonLab/Hyper-RAG/HEAD/web-ui/frontend/src/utils/index.ts -------------------------------------------------------------------------------- /web-ui/frontend/src/vite-env.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iMoonLab/Hyper-RAG/HEAD/web-ui/frontend/src/vite-env.d.ts -------------------------------------------------------------------------------- /web-ui/frontend/tailwind.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iMoonLab/Hyper-RAG/HEAD/web-ui/frontend/tailwind.config.js -------------------------------------------------------------------------------- /web-ui/frontend/tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iMoonLab/Hyper-RAG/HEAD/web-ui/frontend/tsconfig.json -------------------------------------------------------------------------------- /web-ui/frontend/vite.config.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iMoonLab/Hyper-RAG/HEAD/web-ui/frontend/vite.config.ts -------------------------------------------------------------------------------- /web-ui/nginx.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iMoonLab/Hyper-RAG/HEAD/web-ui/nginx.conf --------------------------------------------------------------------------------