├── .env.example ├── .eslintrc.json ├── .github └── ISSUE_TEMPLATE │ ├── ✨-feature-request.md │ ├── 🐛-bug-report.md │ ├── 📜-documentation.md │ ├── 🔧-improvement.md │ └── 🙋-question.md ├── .gitignore ├── .npmrc ├── .vscode ├── extensions.json └── settings.json ├── README.md ├── app ├── chat-context.tsx └── i18n.ts ├── client └── api │ ├── index.ts │ ├── request.ts │ └── tools │ ├── index.ts │ └── interceptors.ts ├── components ├── agent │ ├── market-plugins.tsx │ └── my-plugins.tsx ├── app │ ├── agent-panel.tsx │ ├── app-card.tsx │ ├── app-modal.tsx │ ├── dag-layout.tsx │ └── resource-card.tsx ├── chart │ ├── autoChart │ │ ├── advisor │ │ │ ├── pipeline.ts │ │ │ ├── rule.ts │ │ │ └── utils.ts │ │ ├── charts │ │ │ ├── index.ts │ │ │ ├── multi-line-chart.ts │ │ │ ├── multi-measure-column-chart.ts │ │ │ ├── multi-measure-line-chart.ts │ │ │ └── util.ts │ │ ├── helpers │ │ │ └── index.ts │ │ ├── index.tsx │ │ └── types.ts │ ├── bar-chart.tsx │ ├── index.tsx │ ├── line-chart.tsx │ └── table-chart.tsx ├── chat │ ├── agent-content.tsx │ ├── chat-container.tsx │ ├── chat-content │ │ ├── agent-messages.tsx │ │ ├── agent-plans.tsx │ │ ├── chart-view.tsx │ │ ├── code-preview.tsx │ │ ├── config.tsx │ │ ├── index.tsx │ │ ├── vis-chart.tsx │ │ ├── vis-code.tsx │ │ ├── vis-convert-error.tsx │ │ ├── vis-dashboard.tsx │ │ └── vis-plugin.tsx │ ├── chat-feedback.tsx │ ├── completion.tsx │ ├── db-editor.tsx │ ├── doc-list.tsx │ ├── doc-upload.tsx │ ├── header │ │ ├── agent-selector.tsx │ │ ├── chat-excel.tsx │ │ ├── db-selector.tsx │ │ ├── excel-upload.tsx │ │ ├── index.tsx │ │ └── model-selector.tsx │ ├── mode-tab │ │ ├── index.css │ │ └── index.tsx │ └── monaco-editor.tsx ├── common │ ├── FileStatusIcon.tsx │ ├── MyEmpty.tsx │ ├── chat-dialog.tsx │ ├── completion-input.tsx │ ├── db-icon.tsx │ ├── gpt-card.tsx │ ├── icon-wrapper.tsx │ ├── loading.tsx │ └── prompt-bot.tsx ├── database │ └── form-dialog.tsx ├── flow │ ├── add-nodes.tsx │ ├── button-edge.tsx │ ├── canvas-node.tsx │ ├── flow-card.tsx │ ├── node-handler.tsx │ ├── node-param-handler.tsx │ ├── preview-flow.tsx │ ├── required-icon.tsx │ └── static-nodes.tsx ├── icons │ ├── add-icon.tsx │ ├── collect.tsx │ ├── collected.tsx │ ├── colorful-chat.tsx │ ├── colorful-dashboard.tsx │ ├── colorful-data.tsx │ ├── colorful-db.tsx │ ├── colorful-doc.tsx │ ├── colorful-excel.tsx │ ├── colorful-plugin.tsx │ ├── dark-svg.tsx │ ├── db-svg.tsx │ ├── done-icon.tsx │ ├── file-done.tsx │ ├── file-error.tsx │ ├── file-sync.tsx │ ├── index.tsx │ ├── knowledge.tsx │ ├── model-svg.tsx │ ├── pending-icon.tsx │ ├── stars-svg.tsx │ ├── sunny-svg.tsx │ └── sync-icon.tsx ├── knowledge │ ├── arguments-modal.tsx │ ├── doc-icon.tsx │ ├── doc-panel.tsx │ ├── doc-type-form.tsx │ ├── doc-upload-form.tsx │ ├── segmentation.tsx │ ├── space-card.tsx │ ├── space-form.tsx │ └── strategy-form.tsx ├── layout │ ├── side-bar.tsx │ └── top-progress-bar.tsx ├── model │ ├── model-card.tsx │ ├── model-form.tsx │ └── model-params.tsx └── prompt │ └── prompt-form.tsx ├── defaultTheme.ts ├── genAntdCss.ts ├── global.d.ts ├── hooks ├── use-chat.ts └── use-summary.ts ├── next.config.js ├── nprogress.css ├── package.json ├── pages ├── _app.tsx ├── _document.tsx ├── agent │ └── index.tsx ├── app │ └── index.tsx ├── chat │ └── index.tsx ├── database │ └── index.tsx ├── flow │ ├── canvas │ │ └── index.tsx │ └── index.tsx ├── index.tsx ├── knowledge │ ├── chunk │ │ └── index.tsx │ └── index.tsx ├── models │ └── index.tsx └── prompt │ └── index.tsx ├── postcss.config.js ├── public ├── LOGO.png ├── LOGO_1.png ├── LOGO_SMALL.png ├── WHITE_LOGO.png ├── empty.png ├── favicon.ico ├── huggingface_logo.svg ├── icons │ ├── access.png │ ├── cassandra.png │ ├── clickhouse.png │ ├── couchbase.png │ ├── db.png │ ├── db2.png │ ├── doris.png │ ├── duckdb.png │ ├── hbase.png │ ├── hive.png │ ├── knowledge.png │ ├── mongodb.png │ ├── mssql.png │ ├── mysql.png │ ├── node │ │ ├── default_node_icon.svg │ │ ├── http_trigger.svg │ │ ├── llm_operator.svg │ │ ├── openai_llm_client.svg │ │ └── vis.png │ ├── oracle.png │ ├── postgresql.png │ ├── redis.png │ ├── spark.png │ ├── sqlite.png │ └── starrocks.png ├── images │ └── fallback.png └── models │ ├── baichuan.png │ ├── bard.gif │ ├── chatglm.png │ ├── chatgpt.png │ ├── chroma-logo.png │ ├── claude.png │ ├── falcon.jpeg │ ├── google.png │ ├── gorilla.png │ ├── huggingface.svg │ ├── internlm.png │ ├── knowledge-default.jpg │ ├── llama-cpp.png │ ├── llama.jpg │ ├── qwen2.png │ ├── salesforce.jpeg │ ├── solar_logo.png │ ├── vicuna.jpeg │ ├── vllm.png │ ├── wizardlm.png │ └── zhipu.png ├── screenshots ├── agent.gif ├── chatexcel.gif ├── fastchat.gif ├── knowledge.gif ├── models.gif └── vllm.gif ├── styles └── globals.css ├── tailwind.config.js ├── tsconfig.json ├── types ├── agent.ts ├── app.ts ├── chat.ts ├── db.ts ├── editor.ts ├── flow.ts ├── knowledge.ts ├── model.ts └── prompt.ts └── utils ├── constants.ts ├── ctx-axios.ts ├── flow.ts ├── index.ts ├── request.ts └── storage.ts /.env.example: -------------------------------------------------------------------------------- 1 | API_BASE_URL=http://127.0.0.1:5000 -------------------------------------------------------------------------------- /.eslintrc.json: -------------------------------------------------------------------------------- 1 | { 2 | "extends": "next/core-web-vitals" 3 | } 4 | -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/✨-feature-request.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eosphoros-ai/DB-GPT-Web/HEAD/.github/ISSUE_TEMPLATE/✨-feature-request.md -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/🐛-bug-report.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eosphoros-ai/DB-GPT-Web/HEAD/.github/ISSUE_TEMPLATE/🐛-bug-report.md -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/📜-documentation.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eosphoros-ai/DB-GPT-Web/HEAD/.github/ISSUE_TEMPLATE/📜-documentation.md -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/🔧-improvement.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eosphoros-ai/DB-GPT-Web/HEAD/.github/ISSUE_TEMPLATE/🔧-improvement.md -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/🙋-question.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eosphoros-ai/DB-GPT-Web/HEAD/.github/ISSUE_TEMPLATE/🙋-question.md -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eosphoros-ai/DB-GPT-Web/HEAD/.gitignore -------------------------------------------------------------------------------- /.npmrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eosphoros-ai/DB-GPT-Web/HEAD/.npmrc -------------------------------------------------------------------------------- /.vscode/extensions.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eosphoros-ai/DB-GPT-Web/HEAD/.vscode/extensions.json -------------------------------------------------------------------------------- /.vscode/settings.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eosphoros-ai/DB-GPT-Web/HEAD/.vscode/settings.json -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eosphoros-ai/DB-GPT-Web/HEAD/README.md -------------------------------------------------------------------------------- /app/chat-context.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eosphoros-ai/DB-GPT-Web/HEAD/app/chat-context.tsx -------------------------------------------------------------------------------- /app/i18n.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eosphoros-ai/DB-GPT-Web/HEAD/app/i18n.ts -------------------------------------------------------------------------------- /client/api/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eosphoros-ai/DB-GPT-Web/HEAD/client/api/index.ts -------------------------------------------------------------------------------- /client/api/request.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eosphoros-ai/DB-GPT-Web/HEAD/client/api/request.ts -------------------------------------------------------------------------------- /client/api/tools/index.ts: -------------------------------------------------------------------------------- 1 | export * from './interceptors'; 2 | -------------------------------------------------------------------------------- /client/api/tools/interceptors.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eosphoros-ai/DB-GPT-Web/HEAD/client/api/tools/interceptors.ts -------------------------------------------------------------------------------- /components/agent/market-plugins.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eosphoros-ai/DB-GPT-Web/HEAD/components/agent/market-plugins.tsx -------------------------------------------------------------------------------- /components/agent/my-plugins.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eosphoros-ai/DB-GPT-Web/HEAD/components/agent/my-plugins.tsx -------------------------------------------------------------------------------- /components/app/agent-panel.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eosphoros-ai/DB-GPT-Web/HEAD/components/app/agent-panel.tsx -------------------------------------------------------------------------------- /components/app/app-card.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eosphoros-ai/DB-GPT-Web/HEAD/components/app/app-card.tsx -------------------------------------------------------------------------------- /components/app/app-modal.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eosphoros-ai/DB-GPT-Web/HEAD/components/app/app-modal.tsx -------------------------------------------------------------------------------- /components/app/dag-layout.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eosphoros-ai/DB-GPT-Web/HEAD/components/app/dag-layout.tsx -------------------------------------------------------------------------------- /components/app/resource-card.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eosphoros-ai/DB-GPT-Web/HEAD/components/app/resource-card.tsx -------------------------------------------------------------------------------- /components/chart/autoChart/advisor/pipeline.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eosphoros-ai/DB-GPT-Web/HEAD/components/chart/autoChart/advisor/pipeline.ts -------------------------------------------------------------------------------- /components/chart/autoChart/advisor/rule.ts: -------------------------------------------------------------------------------- 1 | export const customRuleCfg = {}; 2 | -------------------------------------------------------------------------------- /components/chart/autoChart/advisor/utils.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eosphoros-ai/DB-GPT-Web/HEAD/components/chart/autoChart/advisor/utils.ts -------------------------------------------------------------------------------- /components/chart/autoChart/charts/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eosphoros-ai/DB-GPT-Web/HEAD/components/chart/autoChart/charts/index.ts -------------------------------------------------------------------------------- /components/chart/autoChart/charts/multi-line-chart.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eosphoros-ai/DB-GPT-Web/HEAD/components/chart/autoChart/charts/multi-line-chart.ts -------------------------------------------------------------------------------- /components/chart/autoChart/charts/multi-measure-column-chart.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eosphoros-ai/DB-GPT-Web/HEAD/components/chart/autoChart/charts/multi-measure-column-chart.ts -------------------------------------------------------------------------------- /components/chart/autoChart/charts/multi-measure-line-chart.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eosphoros-ai/DB-GPT-Web/HEAD/components/chart/autoChart/charts/multi-measure-line-chart.ts -------------------------------------------------------------------------------- /components/chart/autoChart/charts/util.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eosphoros-ai/DB-GPT-Web/HEAD/components/chart/autoChart/charts/util.ts -------------------------------------------------------------------------------- /components/chart/autoChart/helpers/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eosphoros-ai/DB-GPT-Web/HEAD/components/chart/autoChart/helpers/index.ts -------------------------------------------------------------------------------- /components/chart/autoChart/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eosphoros-ai/DB-GPT-Web/HEAD/components/chart/autoChart/index.tsx -------------------------------------------------------------------------------- /components/chart/autoChart/types.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eosphoros-ai/DB-GPT-Web/HEAD/components/chart/autoChart/types.ts -------------------------------------------------------------------------------- /components/chart/bar-chart.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eosphoros-ai/DB-GPT-Web/HEAD/components/chart/bar-chart.tsx -------------------------------------------------------------------------------- /components/chart/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eosphoros-ai/DB-GPT-Web/HEAD/components/chart/index.tsx -------------------------------------------------------------------------------- /components/chart/line-chart.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eosphoros-ai/DB-GPT-Web/HEAD/components/chart/line-chart.tsx -------------------------------------------------------------------------------- /components/chart/table-chart.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eosphoros-ai/DB-GPT-Web/HEAD/components/chart/table-chart.tsx -------------------------------------------------------------------------------- /components/chat/agent-content.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eosphoros-ai/DB-GPT-Web/HEAD/components/chat/agent-content.tsx -------------------------------------------------------------------------------- /components/chat/chat-container.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eosphoros-ai/DB-GPT-Web/HEAD/components/chat/chat-container.tsx -------------------------------------------------------------------------------- /components/chat/chat-content/agent-messages.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eosphoros-ai/DB-GPT-Web/HEAD/components/chat/chat-content/agent-messages.tsx -------------------------------------------------------------------------------- /components/chat/chat-content/agent-plans.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eosphoros-ai/DB-GPT-Web/HEAD/components/chat/chat-content/agent-plans.tsx -------------------------------------------------------------------------------- /components/chat/chat-content/chart-view.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eosphoros-ai/DB-GPT-Web/HEAD/components/chat/chat-content/chart-view.tsx -------------------------------------------------------------------------------- /components/chat/chat-content/code-preview.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eosphoros-ai/DB-GPT-Web/HEAD/components/chat/chat-content/code-preview.tsx -------------------------------------------------------------------------------- /components/chat/chat-content/config.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eosphoros-ai/DB-GPT-Web/HEAD/components/chat/chat-content/config.tsx -------------------------------------------------------------------------------- /components/chat/chat-content/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eosphoros-ai/DB-GPT-Web/HEAD/components/chat/chat-content/index.tsx -------------------------------------------------------------------------------- /components/chat/chat-content/vis-chart.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eosphoros-ai/DB-GPT-Web/HEAD/components/chat/chat-content/vis-chart.tsx -------------------------------------------------------------------------------- /components/chat/chat-content/vis-code.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eosphoros-ai/DB-GPT-Web/HEAD/components/chat/chat-content/vis-code.tsx -------------------------------------------------------------------------------- /components/chat/chat-content/vis-convert-error.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eosphoros-ai/DB-GPT-Web/HEAD/components/chat/chat-content/vis-convert-error.tsx -------------------------------------------------------------------------------- /components/chat/chat-content/vis-dashboard.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eosphoros-ai/DB-GPT-Web/HEAD/components/chat/chat-content/vis-dashboard.tsx -------------------------------------------------------------------------------- /components/chat/chat-content/vis-plugin.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eosphoros-ai/DB-GPT-Web/HEAD/components/chat/chat-content/vis-plugin.tsx -------------------------------------------------------------------------------- /components/chat/chat-feedback.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eosphoros-ai/DB-GPT-Web/HEAD/components/chat/chat-feedback.tsx -------------------------------------------------------------------------------- /components/chat/completion.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eosphoros-ai/DB-GPT-Web/HEAD/components/chat/completion.tsx -------------------------------------------------------------------------------- /components/chat/db-editor.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eosphoros-ai/DB-GPT-Web/HEAD/components/chat/db-editor.tsx -------------------------------------------------------------------------------- /components/chat/doc-list.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eosphoros-ai/DB-GPT-Web/HEAD/components/chat/doc-list.tsx -------------------------------------------------------------------------------- /components/chat/doc-upload.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eosphoros-ai/DB-GPT-Web/HEAD/components/chat/doc-upload.tsx -------------------------------------------------------------------------------- /components/chat/header/agent-selector.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eosphoros-ai/DB-GPT-Web/HEAD/components/chat/header/agent-selector.tsx -------------------------------------------------------------------------------- /components/chat/header/chat-excel.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eosphoros-ai/DB-GPT-Web/HEAD/components/chat/header/chat-excel.tsx -------------------------------------------------------------------------------- /components/chat/header/db-selector.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eosphoros-ai/DB-GPT-Web/HEAD/components/chat/header/db-selector.tsx -------------------------------------------------------------------------------- /components/chat/header/excel-upload.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eosphoros-ai/DB-GPT-Web/HEAD/components/chat/header/excel-upload.tsx -------------------------------------------------------------------------------- /components/chat/header/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eosphoros-ai/DB-GPT-Web/HEAD/components/chat/header/index.tsx -------------------------------------------------------------------------------- /components/chat/header/model-selector.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eosphoros-ai/DB-GPT-Web/HEAD/components/chat/header/model-selector.tsx -------------------------------------------------------------------------------- /components/chat/mode-tab/index.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eosphoros-ai/DB-GPT-Web/HEAD/components/chat/mode-tab/index.css -------------------------------------------------------------------------------- /components/chat/mode-tab/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eosphoros-ai/DB-GPT-Web/HEAD/components/chat/mode-tab/index.tsx -------------------------------------------------------------------------------- /components/chat/monaco-editor.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eosphoros-ai/DB-GPT-Web/HEAD/components/chat/monaco-editor.tsx -------------------------------------------------------------------------------- /components/common/FileStatusIcon.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eosphoros-ai/DB-GPT-Web/HEAD/components/common/FileStatusIcon.tsx -------------------------------------------------------------------------------- /components/common/MyEmpty.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eosphoros-ai/DB-GPT-Web/HEAD/components/common/MyEmpty.tsx -------------------------------------------------------------------------------- /components/common/chat-dialog.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eosphoros-ai/DB-GPT-Web/HEAD/components/common/chat-dialog.tsx -------------------------------------------------------------------------------- /components/common/completion-input.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eosphoros-ai/DB-GPT-Web/HEAD/components/common/completion-input.tsx -------------------------------------------------------------------------------- /components/common/db-icon.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eosphoros-ai/DB-GPT-Web/HEAD/components/common/db-icon.tsx -------------------------------------------------------------------------------- /components/common/gpt-card.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eosphoros-ai/DB-GPT-Web/HEAD/components/common/gpt-card.tsx -------------------------------------------------------------------------------- /components/common/icon-wrapper.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eosphoros-ai/DB-GPT-Web/HEAD/components/common/icon-wrapper.tsx -------------------------------------------------------------------------------- /components/common/loading.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eosphoros-ai/DB-GPT-Web/HEAD/components/common/loading.tsx -------------------------------------------------------------------------------- /components/common/prompt-bot.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eosphoros-ai/DB-GPT-Web/HEAD/components/common/prompt-bot.tsx -------------------------------------------------------------------------------- /components/database/form-dialog.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eosphoros-ai/DB-GPT-Web/HEAD/components/database/form-dialog.tsx -------------------------------------------------------------------------------- /components/flow/add-nodes.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eosphoros-ai/DB-GPT-Web/HEAD/components/flow/add-nodes.tsx -------------------------------------------------------------------------------- /components/flow/button-edge.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eosphoros-ai/DB-GPT-Web/HEAD/components/flow/button-edge.tsx -------------------------------------------------------------------------------- /components/flow/canvas-node.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eosphoros-ai/DB-GPT-Web/HEAD/components/flow/canvas-node.tsx -------------------------------------------------------------------------------- /components/flow/flow-card.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eosphoros-ai/DB-GPT-Web/HEAD/components/flow/flow-card.tsx -------------------------------------------------------------------------------- /components/flow/node-handler.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eosphoros-ai/DB-GPT-Web/HEAD/components/flow/node-handler.tsx -------------------------------------------------------------------------------- /components/flow/node-param-handler.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eosphoros-ai/DB-GPT-Web/HEAD/components/flow/node-param-handler.tsx -------------------------------------------------------------------------------- /components/flow/preview-flow.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eosphoros-ai/DB-GPT-Web/HEAD/components/flow/preview-flow.tsx -------------------------------------------------------------------------------- /components/flow/required-icon.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eosphoros-ai/DB-GPT-Web/HEAD/components/flow/required-icon.tsx -------------------------------------------------------------------------------- /components/flow/static-nodes.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eosphoros-ai/DB-GPT-Web/HEAD/components/flow/static-nodes.tsx -------------------------------------------------------------------------------- /components/icons/add-icon.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eosphoros-ai/DB-GPT-Web/HEAD/components/icons/add-icon.tsx -------------------------------------------------------------------------------- /components/icons/collect.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eosphoros-ai/DB-GPT-Web/HEAD/components/icons/collect.tsx -------------------------------------------------------------------------------- /components/icons/collected.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eosphoros-ai/DB-GPT-Web/HEAD/components/icons/collected.tsx -------------------------------------------------------------------------------- /components/icons/colorful-chat.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eosphoros-ai/DB-GPT-Web/HEAD/components/icons/colorful-chat.tsx -------------------------------------------------------------------------------- /components/icons/colorful-dashboard.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eosphoros-ai/DB-GPT-Web/HEAD/components/icons/colorful-dashboard.tsx -------------------------------------------------------------------------------- /components/icons/colorful-data.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eosphoros-ai/DB-GPT-Web/HEAD/components/icons/colorful-data.tsx -------------------------------------------------------------------------------- /components/icons/colorful-db.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eosphoros-ai/DB-GPT-Web/HEAD/components/icons/colorful-db.tsx -------------------------------------------------------------------------------- /components/icons/colorful-doc.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eosphoros-ai/DB-GPT-Web/HEAD/components/icons/colorful-doc.tsx -------------------------------------------------------------------------------- /components/icons/colorful-excel.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eosphoros-ai/DB-GPT-Web/HEAD/components/icons/colorful-excel.tsx -------------------------------------------------------------------------------- /components/icons/colorful-plugin.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eosphoros-ai/DB-GPT-Web/HEAD/components/icons/colorful-plugin.tsx -------------------------------------------------------------------------------- /components/icons/dark-svg.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eosphoros-ai/DB-GPT-Web/HEAD/components/icons/dark-svg.tsx -------------------------------------------------------------------------------- /components/icons/db-svg.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eosphoros-ai/DB-GPT-Web/HEAD/components/icons/db-svg.tsx -------------------------------------------------------------------------------- /components/icons/done-icon.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eosphoros-ai/DB-GPT-Web/HEAD/components/icons/done-icon.tsx -------------------------------------------------------------------------------- /components/icons/file-done.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eosphoros-ai/DB-GPT-Web/HEAD/components/icons/file-done.tsx -------------------------------------------------------------------------------- /components/icons/file-error.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eosphoros-ai/DB-GPT-Web/HEAD/components/icons/file-error.tsx -------------------------------------------------------------------------------- /components/icons/file-sync.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eosphoros-ai/DB-GPT-Web/HEAD/components/icons/file-sync.tsx -------------------------------------------------------------------------------- /components/icons/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eosphoros-ai/DB-GPT-Web/HEAD/components/icons/index.tsx -------------------------------------------------------------------------------- /components/icons/knowledge.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eosphoros-ai/DB-GPT-Web/HEAD/components/icons/knowledge.tsx -------------------------------------------------------------------------------- /components/icons/model-svg.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eosphoros-ai/DB-GPT-Web/HEAD/components/icons/model-svg.tsx -------------------------------------------------------------------------------- /components/icons/pending-icon.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eosphoros-ai/DB-GPT-Web/HEAD/components/icons/pending-icon.tsx -------------------------------------------------------------------------------- /components/icons/stars-svg.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eosphoros-ai/DB-GPT-Web/HEAD/components/icons/stars-svg.tsx -------------------------------------------------------------------------------- /components/icons/sunny-svg.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eosphoros-ai/DB-GPT-Web/HEAD/components/icons/sunny-svg.tsx -------------------------------------------------------------------------------- /components/icons/sync-icon.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eosphoros-ai/DB-GPT-Web/HEAD/components/icons/sync-icon.tsx -------------------------------------------------------------------------------- /components/knowledge/arguments-modal.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eosphoros-ai/DB-GPT-Web/HEAD/components/knowledge/arguments-modal.tsx -------------------------------------------------------------------------------- /components/knowledge/doc-icon.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eosphoros-ai/DB-GPT-Web/HEAD/components/knowledge/doc-icon.tsx -------------------------------------------------------------------------------- /components/knowledge/doc-panel.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eosphoros-ai/DB-GPT-Web/HEAD/components/knowledge/doc-panel.tsx -------------------------------------------------------------------------------- /components/knowledge/doc-type-form.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eosphoros-ai/DB-GPT-Web/HEAD/components/knowledge/doc-type-form.tsx -------------------------------------------------------------------------------- /components/knowledge/doc-upload-form.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eosphoros-ai/DB-GPT-Web/HEAD/components/knowledge/doc-upload-form.tsx -------------------------------------------------------------------------------- /components/knowledge/segmentation.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eosphoros-ai/DB-GPT-Web/HEAD/components/knowledge/segmentation.tsx -------------------------------------------------------------------------------- /components/knowledge/space-card.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eosphoros-ai/DB-GPT-Web/HEAD/components/knowledge/space-card.tsx -------------------------------------------------------------------------------- /components/knowledge/space-form.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eosphoros-ai/DB-GPT-Web/HEAD/components/knowledge/space-form.tsx -------------------------------------------------------------------------------- /components/knowledge/strategy-form.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eosphoros-ai/DB-GPT-Web/HEAD/components/knowledge/strategy-form.tsx -------------------------------------------------------------------------------- /components/layout/side-bar.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eosphoros-ai/DB-GPT-Web/HEAD/components/layout/side-bar.tsx -------------------------------------------------------------------------------- /components/layout/top-progress-bar.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eosphoros-ai/DB-GPT-Web/HEAD/components/layout/top-progress-bar.tsx -------------------------------------------------------------------------------- /components/model/model-card.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eosphoros-ai/DB-GPT-Web/HEAD/components/model/model-card.tsx -------------------------------------------------------------------------------- /components/model/model-form.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eosphoros-ai/DB-GPT-Web/HEAD/components/model/model-form.tsx -------------------------------------------------------------------------------- /components/model/model-params.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eosphoros-ai/DB-GPT-Web/HEAD/components/model/model-params.tsx -------------------------------------------------------------------------------- /components/prompt/prompt-form.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eosphoros-ai/DB-GPT-Web/HEAD/components/prompt/prompt-form.tsx -------------------------------------------------------------------------------- /defaultTheme.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eosphoros-ai/DB-GPT-Web/HEAD/defaultTheme.ts -------------------------------------------------------------------------------- /genAntdCss.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eosphoros-ai/DB-GPT-Web/HEAD/genAntdCss.ts -------------------------------------------------------------------------------- /global.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eosphoros-ai/DB-GPT-Web/HEAD/global.d.ts -------------------------------------------------------------------------------- /hooks/use-chat.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eosphoros-ai/DB-GPT-Web/HEAD/hooks/use-chat.ts -------------------------------------------------------------------------------- /hooks/use-summary.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eosphoros-ai/DB-GPT-Web/HEAD/hooks/use-summary.ts -------------------------------------------------------------------------------- /next.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eosphoros-ai/DB-GPT-Web/HEAD/next.config.js -------------------------------------------------------------------------------- /nprogress.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eosphoros-ai/DB-GPT-Web/HEAD/nprogress.css -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eosphoros-ai/DB-GPT-Web/HEAD/package.json -------------------------------------------------------------------------------- /pages/_app.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eosphoros-ai/DB-GPT-Web/HEAD/pages/_app.tsx -------------------------------------------------------------------------------- /pages/_document.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eosphoros-ai/DB-GPT-Web/HEAD/pages/_document.tsx -------------------------------------------------------------------------------- /pages/agent/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eosphoros-ai/DB-GPT-Web/HEAD/pages/agent/index.tsx -------------------------------------------------------------------------------- /pages/app/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eosphoros-ai/DB-GPT-Web/HEAD/pages/app/index.tsx -------------------------------------------------------------------------------- /pages/chat/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eosphoros-ai/DB-GPT-Web/HEAD/pages/chat/index.tsx -------------------------------------------------------------------------------- /pages/database/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eosphoros-ai/DB-GPT-Web/HEAD/pages/database/index.tsx -------------------------------------------------------------------------------- /pages/flow/canvas/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eosphoros-ai/DB-GPT-Web/HEAD/pages/flow/canvas/index.tsx -------------------------------------------------------------------------------- /pages/flow/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eosphoros-ai/DB-GPT-Web/HEAD/pages/flow/index.tsx -------------------------------------------------------------------------------- /pages/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eosphoros-ai/DB-GPT-Web/HEAD/pages/index.tsx -------------------------------------------------------------------------------- /pages/knowledge/chunk/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eosphoros-ai/DB-GPT-Web/HEAD/pages/knowledge/chunk/index.tsx -------------------------------------------------------------------------------- /pages/knowledge/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eosphoros-ai/DB-GPT-Web/HEAD/pages/knowledge/index.tsx -------------------------------------------------------------------------------- /pages/models/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eosphoros-ai/DB-GPT-Web/HEAD/pages/models/index.tsx -------------------------------------------------------------------------------- /pages/prompt/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eosphoros-ai/DB-GPT-Web/HEAD/pages/prompt/index.tsx -------------------------------------------------------------------------------- /postcss.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eosphoros-ai/DB-GPT-Web/HEAD/postcss.config.js -------------------------------------------------------------------------------- /public/LOGO.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eosphoros-ai/DB-GPT-Web/HEAD/public/LOGO.png -------------------------------------------------------------------------------- /public/LOGO_1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eosphoros-ai/DB-GPT-Web/HEAD/public/LOGO_1.png -------------------------------------------------------------------------------- /public/LOGO_SMALL.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eosphoros-ai/DB-GPT-Web/HEAD/public/LOGO_SMALL.png -------------------------------------------------------------------------------- /public/WHITE_LOGO.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eosphoros-ai/DB-GPT-Web/HEAD/public/WHITE_LOGO.png -------------------------------------------------------------------------------- /public/empty.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eosphoros-ai/DB-GPT-Web/HEAD/public/empty.png -------------------------------------------------------------------------------- /public/favicon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eosphoros-ai/DB-GPT-Web/HEAD/public/favicon.ico -------------------------------------------------------------------------------- /public/huggingface_logo.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eosphoros-ai/DB-GPT-Web/HEAD/public/huggingface_logo.svg -------------------------------------------------------------------------------- /public/icons/access.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eosphoros-ai/DB-GPT-Web/HEAD/public/icons/access.png -------------------------------------------------------------------------------- /public/icons/cassandra.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eosphoros-ai/DB-GPT-Web/HEAD/public/icons/cassandra.png -------------------------------------------------------------------------------- /public/icons/clickhouse.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eosphoros-ai/DB-GPT-Web/HEAD/public/icons/clickhouse.png -------------------------------------------------------------------------------- /public/icons/couchbase.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eosphoros-ai/DB-GPT-Web/HEAD/public/icons/couchbase.png -------------------------------------------------------------------------------- /public/icons/db.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eosphoros-ai/DB-GPT-Web/HEAD/public/icons/db.png -------------------------------------------------------------------------------- /public/icons/db2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eosphoros-ai/DB-GPT-Web/HEAD/public/icons/db2.png -------------------------------------------------------------------------------- /public/icons/doris.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eosphoros-ai/DB-GPT-Web/HEAD/public/icons/doris.png -------------------------------------------------------------------------------- /public/icons/duckdb.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eosphoros-ai/DB-GPT-Web/HEAD/public/icons/duckdb.png -------------------------------------------------------------------------------- /public/icons/hbase.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eosphoros-ai/DB-GPT-Web/HEAD/public/icons/hbase.png -------------------------------------------------------------------------------- /public/icons/hive.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eosphoros-ai/DB-GPT-Web/HEAD/public/icons/hive.png -------------------------------------------------------------------------------- /public/icons/knowledge.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eosphoros-ai/DB-GPT-Web/HEAD/public/icons/knowledge.png -------------------------------------------------------------------------------- /public/icons/mongodb.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eosphoros-ai/DB-GPT-Web/HEAD/public/icons/mongodb.png -------------------------------------------------------------------------------- /public/icons/mssql.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eosphoros-ai/DB-GPT-Web/HEAD/public/icons/mssql.png -------------------------------------------------------------------------------- /public/icons/mysql.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eosphoros-ai/DB-GPT-Web/HEAD/public/icons/mysql.png -------------------------------------------------------------------------------- /public/icons/node/default_node_icon.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eosphoros-ai/DB-GPT-Web/HEAD/public/icons/node/default_node_icon.svg -------------------------------------------------------------------------------- /public/icons/node/http_trigger.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eosphoros-ai/DB-GPT-Web/HEAD/public/icons/node/http_trigger.svg -------------------------------------------------------------------------------- /public/icons/node/llm_operator.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eosphoros-ai/DB-GPT-Web/HEAD/public/icons/node/llm_operator.svg -------------------------------------------------------------------------------- /public/icons/node/openai_llm_client.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eosphoros-ai/DB-GPT-Web/HEAD/public/icons/node/openai_llm_client.svg -------------------------------------------------------------------------------- /public/icons/node/vis.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eosphoros-ai/DB-GPT-Web/HEAD/public/icons/node/vis.png -------------------------------------------------------------------------------- /public/icons/oracle.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eosphoros-ai/DB-GPT-Web/HEAD/public/icons/oracle.png -------------------------------------------------------------------------------- /public/icons/postgresql.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eosphoros-ai/DB-GPT-Web/HEAD/public/icons/postgresql.png -------------------------------------------------------------------------------- /public/icons/redis.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eosphoros-ai/DB-GPT-Web/HEAD/public/icons/redis.png -------------------------------------------------------------------------------- /public/icons/spark.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eosphoros-ai/DB-GPT-Web/HEAD/public/icons/spark.png -------------------------------------------------------------------------------- /public/icons/sqlite.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eosphoros-ai/DB-GPT-Web/HEAD/public/icons/sqlite.png -------------------------------------------------------------------------------- /public/icons/starrocks.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eosphoros-ai/DB-GPT-Web/HEAD/public/icons/starrocks.png -------------------------------------------------------------------------------- /public/images/fallback.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eosphoros-ai/DB-GPT-Web/HEAD/public/images/fallback.png -------------------------------------------------------------------------------- /public/models/baichuan.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eosphoros-ai/DB-GPT-Web/HEAD/public/models/baichuan.png -------------------------------------------------------------------------------- /public/models/bard.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eosphoros-ai/DB-GPT-Web/HEAD/public/models/bard.gif -------------------------------------------------------------------------------- /public/models/chatglm.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eosphoros-ai/DB-GPT-Web/HEAD/public/models/chatglm.png -------------------------------------------------------------------------------- /public/models/chatgpt.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eosphoros-ai/DB-GPT-Web/HEAD/public/models/chatgpt.png -------------------------------------------------------------------------------- /public/models/chroma-logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eosphoros-ai/DB-GPT-Web/HEAD/public/models/chroma-logo.png -------------------------------------------------------------------------------- /public/models/claude.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eosphoros-ai/DB-GPT-Web/HEAD/public/models/claude.png -------------------------------------------------------------------------------- /public/models/falcon.jpeg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eosphoros-ai/DB-GPT-Web/HEAD/public/models/falcon.jpeg -------------------------------------------------------------------------------- /public/models/google.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eosphoros-ai/DB-GPT-Web/HEAD/public/models/google.png -------------------------------------------------------------------------------- /public/models/gorilla.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eosphoros-ai/DB-GPT-Web/HEAD/public/models/gorilla.png -------------------------------------------------------------------------------- /public/models/huggingface.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eosphoros-ai/DB-GPT-Web/HEAD/public/models/huggingface.svg -------------------------------------------------------------------------------- /public/models/internlm.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eosphoros-ai/DB-GPT-Web/HEAD/public/models/internlm.png -------------------------------------------------------------------------------- /public/models/knowledge-default.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eosphoros-ai/DB-GPT-Web/HEAD/public/models/knowledge-default.jpg -------------------------------------------------------------------------------- /public/models/llama-cpp.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eosphoros-ai/DB-GPT-Web/HEAD/public/models/llama-cpp.png -------------------------------------------------------------------------------- /public/models/llama.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eosphoros-ai/DB-GPT-Web/HEAD/public/models/llama.jpg -------------------------------------------------------------------------------- /public/models/qwen2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eosphoros-ai/DB-GPT-Web/HEAD/public/models/qwen2.png -------------------------------------------------------------------------------- /public/models/salesforce.jpeg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eosphoros-ai/DB-GPT-Web/HEAD/public/models/salesforce.jpeg -------------------------------------------------------------------------------- /public/models/solar_logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eosphoros-ai/DB-GPT-Web/HEAD/public/models/solar_logo.png -------------------------------------------------------------------------------- /public/models/vicuna.jpeg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eosphoros-ai/DB-GPT-Web/HEAD/public/models/vicuna.jpeg -------------------------------------------------------------------------------- /public/models/vllm.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eosphoros-ai/DB-GPT-Web/HEAD/public/models/vllm.png -------------------------------------------------------------------------------- /public/models/wizardlm.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eosphoros-ai/DB-GPT-Web/HEAD/public/models/wizardlm.png -------------------------------------------------------------------------------- /public/models/zhipu.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eosphoros-ai/DB-GPT-Web/HEAD/public/models/zhipu.png -------------------------------------------------------------------------------- /screenshots/agent.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eosphoros-ai/DB-GPT-Web/HEAD/screenshots/agent.gif -------------------------------------------------------------------------------- /screenshots/chatexcel.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eosphoros-ai/DB-GPT-Web/HEAD/screenshots/chatexcel.gif -------------------------------------------------------------------------------- /screenshots/fastchat.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eosphoros-ai/DB-GPT-Web/HEAD/screenshots/fastchat.gif -------------------------------------------------------------------------------- /screenshots/knowledge.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eosphoros-ai/DB-GPT-Web/HEAD/screenshots/knowledge.gif -------------------------------------------------------------------------------- /screenshots/models.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eosphoros-ai/DB-GPT-Web/HEAD/screenshots/models.gif -------------------------------------------------------------------------------- /screenshots/vllm.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eosphoros-ai/DB-GPT-Web/HEAD/screenshots/vllm.gif -------------------------------------------------------------------------------- /styles/globals.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eosphoros-ai/DB-GPT-Web/HEAD/styles/globals.css -------------------------------------------------------------------------------- /tailwind.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eosphoros-ai/DB-GPT-Web/HEAD/tailwind.config.js -------------------------------------------------------------------------------- /tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eosphoros-ai/DB-GPT-Web/HEAD/tsconfig.json -------------------------------------------------------------------------------- /types/agent.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eosphoros-ai/DB-GPT-Web/HEAD/types/agent.ts -------------------------------------------------------------------------------- /types/app.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eosphoros-ai/DB-GPT-Web/HEAD/types/app.ts -------------------------------------------------------------------------------- /types/chat.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eosphoros-ai/DB-GPT-Web/HEAD/types/chat.ts -------------------------------------------------------------------------------- /types/db.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eosphoros-ai/DB-GPT-Web/HEAD/types/db.ts -------------------------------------------------------------------------------- /types/editor.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eosphoros-ai/DB-GPT-Web/HEAD/types/editor.ts -------------------------------------------------------------------------------- /types/flow.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eosphoros-ai/DB-GPT-Web/HEAD/types/flow.ts -------------------------------------------------------------------------------- /types/knowledge.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eosphoros-ai/DB-GPT-Web/HEAD/types/knowledge.ts -------------------------------------------------------------------------------- /types/model.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eosphoros-ai/DB-GPT-Web/HEAD/types/model.ts -------------------------------------------------------------------------------- /types/prompt.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eosphoros-ai/DB-GPT-Web/HEAD/types/prompt.ts -------------------------------------------------------------------------------- /utils/constants.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eosphoros-ai/DB-GPT-Web/HEAD/utils/constants.ts -------------------------------------------------------------------------------- /utils/ctx-axios.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eosphoros-ai/DB-GPT-Web/HEAD/utils/ctx-axios.ts -------------------------------------------------------------------------------- /utils/flow.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eosphoros-ai/DB-GPT-Web/HEAD/utils/flow.ts -------------------------------------------------------------------------------- /utils/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eosphoros-ai/DB-GPT-Web/HEAD/utils/index.ts -------------------------------------------------------------------------------- /utils/request.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eosphoros-ai/DB-GPT-Web/HEAD/utils/request.ts -------------------------------------------------------------------------------- /utils/storage.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eosphoros-ai/DB-GPT-Web/HEAD/utils/storage.ts --------------------------------------------------------------------------------