├── .env ├── .env.template ├── .eslintrc.json ├── .gitignore ├── .prettierrc ├── CODEOWNERS ├── README.md ├── README_CN.md ├── app ├── Sidebar │ ├── index.css │ └── index.tsx ├── actions │ └── publish.ts ├── api │ ├── chat-o1 │ │ └── route.ts │ ├── chat │ │ └── route.ts │ └── sandbox │ │ └── route.ts ├── favicon.ico ├── globals.css ├── layout.tsx ├── page.tsx └── providers.tsx ├── components.json ├── components ├── DeleteConfirmation │ ├── index.css │ └── index.tsx ├── Dialog │ ├── Add │ │ ├── index.css │ │ └── index.tsx │ ├── img │ │ └── config_s.svg │ ├── index.css │ └── index.tsx ├── auth-dialog.tsx ├── auth-form.tsx ├── chat-input.tsx ├── chat-picker.tsx ├── chat-settings.tsx ├── chat.css ├── chat.tsx ├── code-theme.css ├── code-view.tsx ├── deploy-dialog.tsx ├── fragment-code.tsx ├── fragment-interpreter.tsx ├── fragment-preview.tsx ├── fragment-web.tsx ├── logo.tsx ├── navbar.tsx ├── preview.tsx └── ui │ ├── alert.tsx │ ├── avatar.tsx │ ├── button.tsx │ ├── card.tsx │ ├── copy-button.tsx │ ├── dialog.tsx │ ├── dropdown-menu.tsx │ ├── input.tsx │ ├── label.tsx │ ├── select.tsx │ ├── separator.tsx │ ├── skeleton.tsx │ ├── tabs.tsx │ ├── textarea.tsx │ ├── theme-toggle.tsx │ ├── toast.tsx │ ├── toaster.tsx │ ├── tooltip.tsx │ └── use-toast.ts ├── docs ├── docs │ ├── assets │ │ ├── add-mcp-server.png │ │ ├── code-login.gif │ │ ├── fast-mcp-weather.gif │ │ ├── fast-mcp-weather.png │ │ ├── favicon.ico │ │ ├── image-to-UI-preview.png │ │ ├── image-to-UI.gif │ │ ├── image-to-UI.png │ │ ├── landing-page.png │ │ ├── logo.svg │ │ ├── mcp-server.gif │ │ ├── text-to-UI-preview.png │ │ ├── text-to-UI.gif │ │ └── text-to-UI.png │ ├── en │ │ ├── contribute.md │ │ ├── generate-code.md │ │ ├── get-started.md │ │ ├── index.md │ │ └── work-with-mcp.md │ ├── javascripts │ │ └── feedback.js │ ├── overrides │ │ └── main.html │ └── zh │ │ ├── contribute.md │ │ ├── generate-code.md │ │ ├── get-started.md │ │ ├── index.md │ │ └── work-with-mcp.md └── mkdocs.yml ├── lib ├── api.ts ├── auth.ts ├── duration.ts ├── messages.ts ├── models copy.json ├── models.json ├── models.ts ├── prompt.ts ├── ratelimit.ts ├── request.ts ├── schema.ts ├── supabase.ts ├── templates.json ├── templates.ts ├── types.ts └── utils.ts ├── middleware.ts ├── next.config.mjs ├── package.json ├── postcss.config.mjs ├── preview.png ├── public └── thirdparty │ ├── logo.png │ ├── logo.svg │ ├── logo2.png │ ├── logos │ ├── anthropic.svg │ ├── azure.svg │ ├── fireworks.svg │ ├── fireworksai.svg │ ├── google.svg │ ├── groq.svg │ ├── mistral.svg │ ├── ollama.svg │ ├── openai.svg │ ├── togetherai.svg │ ├── vertex.svg │ └── xai.svg │ └── templates │ ├── code-interpreter-v1.svg │ ├── gradio-developer.svg │ ├── nextjs-developer.svg │ ├── streamlit-developer.svg │ └── vue-developer.svg ├── sandbox-templates ├── gradio-developer │ ├── app.py │ ├── e2b.Dockerfile │ └── e2b.toml ├── nextjs-developer │ ├── _app.tsx │ ├── compile_page.sh │ ├── e2b.Dockerfile │ └── e2b.toml ├── streamlit-developer │ ├── app.py │ ├── e2b.Dockerfile │ └── e2b.toml └── vue-developer │ ├── e2b.Dockerfile │ ├── e2b.toml │ └── nuxt.config.ts ├── tailwind.config.ts └── tsconfig.json /.env: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/isoftstone-data-intelligence-ai/efflux-frontend/HEAD/.env -------------------------------------------------------------------------------- /.env.template: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/isoftstone-data-intelligence-ai/efflux-frontend/HEAD/.env.template -------------------------------------------------------------------------------- /.eslintrc.json: -------------------------------------------------------------------------------- 1 | { 2 | "extends": "next/core-web-vitals" 3 | } 4 | -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/isoftstone-data-intelligence-ai/efflux-frontend/HEAD/.gitignore -------------------------------------------------------------------------------- /.prettierrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/isoftstone-data-intelligence-ai/efflux-frontend/HEAD/.prettierrc -------------------------------------------------------------------------------- /CODEOWNERS: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/isoftstone-data-intelligence-ai/efflux-frontend/HEAD/CODEOWNERS -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/isoftstone-data-intelligence-ai/efflux-frontend/HEAD/README.md -------------------------------------------------------------------------------- /README_CN.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/isoftstone-data-intelligence-ai/efflux-frontend/HEAD/README_CN.md -------------------------------------------------------------------------------- /app/Sidebar/index.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/isoftstone-data-intelligence-ai/efflux-frontend/HEAD/app/Sidebar/index.css -------------------------------------------------------------------------------- /app/Sidebar/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/isoftstone-data-intelligence-ai/efflux-frontend/HEAD/app/Sidebar/index.tsx -------------------------------------------------------------------------------- /app/actions/publish.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/isoftstone-data-intelligence-ai/efflux-frontend/HEAD/app/actions/publish.ts -------------------------------------------------------------------------------- /app/api/chat-o1/route.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/isoftstone-data-intelligence-ai/efflux-frontend/HEAD/app/api/chat-o1/route.ts -------------------------------------------------------------------------------- /app/api/chat/route.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/isoftstone-data-intelligence-ai/efflux-frontend/HEAD/app/api/chat/route.ts -------------------------------------------------------------------------------- /app/api/sandbox/route.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/isoftstone-data-intelligence-ai/efflux-frontend/HEAD/app/api/sandbox/route.ts -------------------------------------------------------------------------------- /app/favicon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/isoftstone-data-intelligence-ai/efflux-frontend/HEAD/app/favicon.ico -------------------------------------------------------------------------------- /app/globals.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/isoftstone-data-intelligence-ai/efflux-frontend/HEAD/app/globals.css -------------------------------------------------------------------------------- /app/layout.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/isoftstone-data-intelligence-ai/efflux-frontend/HEAD/app/layout.tsx -------------------------------------------------------------------------------- /app/page.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/isoftstone-data-intelligence-ai/efflux-frontend/HEAD/app/page.tsx -------------------------------------------------------------------------------- /app/providers.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/isoftstone-data-intelligence-ai/efflux-frontend/HEAD/app/providers.tsx -------------------------------------------------------------------------------- /components.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/isoftstone-data-intelligence-ai/efflux-frontend/HEAD/components.json -------------------------------------------------------------------------------- /components/DeleteConfirmation/index.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/isoftstone-data-intelligence-ai/efflux-frontend/HEAD/components/DeleteConfirmation/index.css -------------------------------------------------------------------------------- /components/DeleteConfirmation/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/isoftstone-data-intelligence-ai/efflux-frontend/HEAD/components/DeleteConfirmation/index.tsx -------------------------------------------------------------------------------- /components/Dialog/Add/index.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/isoftstone-data-intelligence-ai/efflux-frontend/HEAD/components/Dialog/Add/index.css -------------------------------------------------------------------------------- /components/Dialog/Add/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/isoftstone-data-intelligence-ai/efflux-frontend/HEAD/components/Dialog/Add/index.tsx -------------------------------------------------------------------------------- /components/Dialog/img/config_s.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/isoftstone-data-intelligence-ai/efflux-frontend/HEAD/components/Dialog/img/config_s.svg -------------------------------------------------------------------------------- /components/Dialog/index.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/isoftstone-data-intelligence-ai/efflux-frontend/HEAD/components/Dialog/index.css -------------------------------------------------------------------------------- /components/Dialog/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/isoftstone-data-intelligence-ai/efflux-frontend/HEAD/components/Dialog/index.tsx -------------------------------------------------------------------------------- /components/auth-dialog.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/isoftstone-data-intelligence-ai/efflux-frontend/HEAD/components/auth-dialog.tsx -------------------------------------------------------------------------------- /components/auth-form.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/isoftstone-data-intelligence-ai/efflux-frontend/HEAD/components/auth-form.tsx -------------------------------------------------------------------------------- /components/chat-input.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/isoftstone-data-intelligence-ai/efflux-frontend/HEAD/components/chat-input.tsx -------------------------------------------------------------------------------- /components/chat-picker.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/isoftstone-data-intelligence-ai/efflux-frontend/HEAD/components/chat-picker.tsx -------------------------------------------------------------------------------- /components/chat-settings.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/isoftstone-data-intelligence-ai/efflux-frontend/HEAD/components/chat-settings.tsx -------------------------------------------------------------------------------- /components/chat.css: -------------------------------------------------------------------------------- 1 | .msgByUse{ 2 | align-self: flex-end; 3 | } -------------------------------------------------------------------------------- /components/chat.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/isoftstone-data-intelligence-ai/efflux-frontend/HEAD/components/chat.tsx -------------------------------------------------------------------------------- /components/code-theme.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/isoftstone-data-intelligence-ai/efflux-frontend/HEAD/components/code-theme.css -------------------------------------------------------------------------------- /components/code-view.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/isoftstone-data-intelligence-ai/efflux-frontend/HEAD/components/code-view.tsx -------------------------------------------------------------------------------- /components/deploy-dialog.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/isoftstone-data-intelligence-ai/efflux-frontend/HEAD/components/deploy-dialog.tsx -------------------------------------------------------------------------------- /components/fragment-code.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/isoftstone-data-intelligence-ai/efflux-frontend/HEAD/components/fragment-code.tsx -------------------------------------------------------------------------------- /components/fragment-interpreter.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/isoftstone-data-intelligence-ai/efflux-frontend/HEAD/components/fragment-interpreter.tsx -------------------------------------------------------------------------------- /components/fragment-preview.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/isoftstone-data-intelligence-ai/efflux-frontend/HEAD/components/fragment-preview.tsx -------------------------------------------------------------------------------- /components/fragment-web.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/isoftstone-data-intelligence-ai/efflux-frontend/HEAD/components/fragment-web.tsx -------------------------------------------------------------------------------- /components/logo.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/isoftstone-data-intelligence-ai/efflux-frontend/HEAD/components/logo.tsx -------------------------------------------------------------------------------- /components/navbar.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/isoftstone-data-intelligence-ai/efflux-frontend/HEAD/components/navbar.tsx -------------------------------------------------------------------------------- /components/preview.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/isoftstone-data-intelligence-ai/efflux-frontend/HEAD/components/preview.tsx -------------------------------------------------------------------------------- /components/ui/alert.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/isoftstone-data-intelligence-ai/efflux-frontend/HEAD/components/ui/alert.tsx -------------------------------------------------------------------------------- /components/ui/avatar.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/isoftstone-data-intelligence-ai/efflux-frontend/HEAD/components/ui/avatar.tsx -------------------------------------------------------------------------------- /components/ui/button.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/isoftstone-data-intelligence-ai/efflux-frontend/HEAD/components/ui/button.tsx -------------------------------------------------------------------------------- /components/ui/card.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/isoftstone-data-intelligence-ai/efflux-frontend/HEAD/components/ui/card.tsx -------------------------------------------------------------------------------- /components/ui/copy-button.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/isoftstone-data-intelligence-ai/efflux-frontend/HEAD/components/ui/copy-button.tsx -------------------------------------------------------------------------------- /components/ui/dialog.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/isoftstone-data-intelligence-ai/efflux-frontend/HEAD/components/ui/dialog.tsx -------------------------------------------------------------------------------- /components/ui/dropdown-menu.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/isoftstone-data-intelligence-ai/efflux-frontend/HEAD/components/ui/dropdown-menu.tsx -------------------------------------------------------------------------------- /components/ui/input.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/isoftstone-data-intelligence-ai/efflux-frontend/HEAD/components/ui/input.tsx -------------------------------------------------------------------------------- /components/ui/label.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/isoftstone-data-intelligence-ai/efflux-frontend/HEAD/components/ui/label.tsx -------------------------------------------------------------------------------- /components/ui/select.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/isoftstone-data-intelligence-ai/efflux-frontend/HEAD/components/ui/select.tsx -------------------------------------------------------------------------------- /components/ui/separator.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/isoftstone-data-intelligence-ai/efflux-frontend/HEAD/components/ui/separator.tsx -------------------------------------------------------------------------------- /components/ui/skeleton.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/isoftstone-data-intelligence-ai/efflux-frontend/HEAD/components/ui/skeleton.tsx -------------------------------------------------------------------------------- /components/ui/tabs.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/isoftstone-data-intelligence-ai/efflux-frontend/HEAD/components/ui/tabs.tsx -------------------------------------------------------------------------------- /components/ui/textarea.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/isoftstone-data-intelligence-ai/efflux-frontend/HEAD/components/ui/textarea.tsx -------------------------------------------------------------------------------- /components/ui/theme-toggle.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/isoftstone-data-intelligence-ai/efflux-frontend/HEAD/components/ui/theme-toggle.tsx -------------------------------------------------------------------------------- /components/ui/toast.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/isoftstone-data-intelligence-ai/efflux-frontend/HEAD/components/ui/toast.tsx -------------------------------------------------------------------------------- /components/ui/toaster.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/isoftstone-data-intelligence-ai/efflux-frontend/HEAD/components/ui/toaster.tsx -------------------------------------------------------------------------------- /components/ui/tooltip.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/isoftstone-data-intelligence-ai/efflux-frontend/HEAD/components/ui/tooltip.tsx -------------------------------------------------------------------------------- /components/ui/use-toast.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/isoftstone-data-intelligence-ai/efflux-frontend/HEAD/components/ui/use-toast.ts -------------------------------------------------------------------------------- /docs/docs/assets/add-mcp-server.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/isoftstone-data-intelligence-ai/efflux-frontend/HEAD/docs/docs/assets/add-mcp-server.png -------------------------------------------------------------------------------- /docs/docs/assets/code-login.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/isoftstone-data-intelligence-ai/efflux-frontend/HEAD/docs/docs/assets/code-login.gif -------------------------------------------------------------------------------- /docs/docs/assets/fast-mcp-weather.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/isoftstone-data-intelligence-ai/efflux-frontend/HEAD/docs/docs/assets/fast-mcp-weather.gif -------------------------------------------------------------------------------- /docs/docs/assets/fast-mcp-weather.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/isoftstone-data-intelligence-ai/efflux-frontend/HEAD/docs/docs/assets/fast-mcp-weather.png -------------------------------------------------------------------------------- /docs/docs/assets/favicon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/isoftstone-data-intelligence-ai/efflux-frontend/HEAD/docs/docs/assets/favicon.ico -------------------------------------------------------------------------------- /docs/docs/assets/image-to-UI-preview.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/isoftstone-data-intelligence-ai/efflux-frontend/HEAD/docs/docs/assets/image-to-UI-preview.png -------------------------------------------------------------------------------- /docs/docs/assets/image-to-UI.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/isoftstone-data-intelligence-ai/efflux-frontend/HEAD/docs/docs/assets/image-to-UI.gif -------------------------------------------------------------------------------- /docs/docs/assets/image-to-UI.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/isoftstone-data-intelligence-ai/efflux-frontend/HEAD/docs/docs/assets/image-to-UI.png -------------------------------------------------------------------------------- /docs/docs/assets/landing-page.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/isoftstone-data-intelligence-ai/efflux-frontend/HEAD/docs/docs/assets/landing-page.png -------------------------------------------------------------------------------- /docs/docs/assets/logo.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/isoftstone-data-intelligence-ai/efflux-frontend/HEAD/docs/docs/assets/logo.svg -------------------------------------------------------------------------------- /docs/docs/assets/mcp-server.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/isoftstone-data-intelligence-ai/efflux-frontend/HEAD/docs/docs/assets/mcp-server.gif -------------------------------------------------------------------------------- /docs/docs/assets/text-to-UI-preview.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/isoftstone-data-intelligence-ai/efflux-frontend/HEAD/docs/docs/assets/text-to-UI-preview.png -------------------------------------------------------------------------------- /docs/docs/assets/text-to-UI.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/isoftstone-data-intelligence-ai/efflux-frontend/HEAD/docs/docs/assets/text-to-UI.gif -------------------------------------------------------------------------------- /docs/docs/assets/text-to-UI.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/isoftstone-data-intelligence-ai/efflux-frontend/HEAD/docs/docs/assets/text-to-UI.png -------------------------------------------------------------------------------- /docs/docs/en/contribute.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/isoftstone-data-intelligence-ai/efflux-frontend/HEAD/docs/docs/en/contribute.md -------------------------------------------------------------------------------- /docs/docs/en/generate-code.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/isoftstone-data-intelligence-ai/efflux-frontend/HEAD/docs/docs/en/generate-code.md -------------------------------------------------------------------------------- /docs/docs/en/get-started.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/isoftstone-data-intelligence-ai/efflux-frontend/HEAD/docs/docs/en/get-started.md -------------------------------------------------------------------------------- /docs/docs/en/index.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/isoftstone-data-intelligence-ai/efflux-frontend/HEAD/docs/docs/en/index.md -------------------------------------------------------------------------------- /docs/docs/en/work-with-mcp.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/isoftstone-data-intelligence-ai/efflux-frontend/HEAD/docs/docs/en/work-with-mcp.md -------------------------------------------------------------------------------- /docs/docs/javascripts/feedback.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/isoftstone-data-intelligence-ai/efflux-frontend/HEAD/docs/docs/javascripts/feedback.js -------------------------------------------------------------------------------- /docs/docs/overrides/main.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/isoftstone-data-intelligence-ai/efflux-frontend/HEAD/docs/docs/overrides/main.html -------------------------------------------------------------------------------- /docs/docs/zh/contribute.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/isoftstone-data-intelligence-ai/efflux-frontend/HEAD/docs/docs/zh/contribute.md -------------------------------------------------------------------------------- /docs/docs/zh/generate-code.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/isoftstone-data-intelligence-ai/efflux-frontend/HEAD/docs/docs/zh/generate-code.md -------------------------------------------------------------------------------- /docs/docs/zh/get-started.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/isoftstone-data-intelligence-ai/efflux-frontend/HEAD/docs/docs/zh/get-started.md -------------------------------------------------------------------------------- /docs/docs/zh/index.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/isoftstone-data-intelligence-ai/efflux-frontend/HEAD/docs/docs/zh/index.md -------------------------------------------------------------------------------- /docs/docs/zh/work-with-mcp.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/isoftstone-data-intelligence-ai/efflux-frontend/HEAD/docs/docs/zh/work-with-mcp.md -------------------------------------------------------------------------------- /docs/mkdocs.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/isoftstone-data-intelligence-ai/efflux-frontend/HEAD/docs/mkdocs.yml -------------------------------------------------------------------------------- /lib/api.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/isoftstone-data-intelligence-ai/efflux-frontend/HEAD/lib/api.ts -------------------------------------------------------------------------------- /lib/auth.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/isoftstone-data-intelligence-ai/efflux-frontend/HEAD/lib/auth.ts -------------------------------------------------------------------------------- /lib/duration.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/isoftstone-data-intelligence-ai/efflux-frontend/HEAD/lib/duration.ts -------------------------------------------------------------------------------- /lib/messages.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/isoftstone-data-intelligence-ai/efflux-frontend/HEAD/lib/messages.ts -------------------------------------------------------------------------------- /lib/models copy.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/isoftstone-data-intelligence-ai/efflux-frontend/HEAD/lib/models copy.json -------------------------------------------------------------------------------- /lib/models.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/isoftstone-data-intelligence-ai/efflux-frontend/HEAD/lib/models.json -------------------------------------------------------------------------------- /lib/models.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/isoftstone-data-intelligence-ai/efflux-frontend/HEAD/lib/models.ts -------------------------------------------------------------------------------- /lib/prompt.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/isoftstone-data-intelligence-ai/efflux-frontend/HEAD/lib/prompt.ts -------------------------------------------------------------------------------- /lib/ratelimit.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/isoftstone-data-intelligence-ai/efflux-frontend/HEAD/lib/ratelimit.ts -------------------------------------------------------------------------------- /lib/request.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/isoftstone-data-intelligence-ai/efflux-frontend/HEAD/lib/request.ts -------------------------------------------------------------------------------- /lib/schema.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/isoftstone-data-intelligence-ai/efflux-frontend/HEAD/lib/schema.ts -------------------------------------------------------------------------------- /lib/supabase.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/isoftstone-data-intelligence-ai/efflux-frontend/HEAD/lib/supabase.ts -------------------------------------------------------------------------------- /lib/templates.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/isoftstone-data-intelligence-ai/efflux-frontend/HEAD/lib/templates.json -------------------------------------------------------------------------------- /lib/templates.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/isoftstone-data-intelligence-ai/efflux-frontend/HEAD/lib/templates.ts -------------------------------------------------------------------------------- /lib/types.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/isoftstone-data-intelligence-ai/efflux-frontend/HEAD/lib/types.ts -------------------------------------------------------------------------------- /lib/utils.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/isoftstone-data-intelligence-ai/efflux-frontend/HEAD/lib/utils.ts -------------------------------------------------------------------------------- /middleware.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/isoftstone-data-intelligence-ai/efflux-frontend/HEAD/middleware.ts -------------------------------------------------------------------------------- /next.config.mjs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/isoftstone-data-intelligence-ai/efflux-frontend/HEAD/next.config.mjs -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/isoftstone-data-intelligence-ai/efflux-frontend/HEAD/package.json -------------------------------------------------------------------------------- /postcss.config.mjs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/isoftstone-data-intelligence-ai/efflux-frontend/HEAD/postcss.config.mjs -------------------------------------------------------------------------------- /preview.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/isoftstone-data-intelligence-ai/efflux-frontend/HEAD/preview.png -------------------------------------------------------------------------------- /public/thirdparty/logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/isoftstone-data-intelligence-ai/efflux-frontend/HEAD/public/thirdparty/logo.png -------------------------------------------------------------------------------- /public/thirdparty/logo.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/isoftstone-data-intelligence-ai/efflux-frontend/HEAD/public/thirdparty/logo.svg -------------------------------------------------------------------------------- /public/thirdparty/logo2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/isoftstone-data-intelligence-ai/efflux-frontend/HEAD/public/thirdparty/logo2.png -------------------------------------------------------------------------------- /public/thirdparty/logos/anthropic.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/isoftstone-data-intelligence-ai/efflux-frontend/HEAD/public/thirdparty/logos/anthropic.svg -------------------------------------------------------------------------------- /public/thirdparty/logos/azure.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/isoftstone-data-intelligence-ai/efflux-frontend/HEAD/public/thirdparty/logos/azure.svg -------------------------------------------------------------------------------- /public/thirdparty/logos/fireworks.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/isoftstone-data-intelligence-ai/efflux-frontend/HEAD/public/thirdparty/logos/fireworks.svg -------------------------------------------------------------------------------- /public/thirdparty/logos/fireworksai.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/isoftstone-data-intelligence-ai/efflux-frontend/HEAD/public/thirdparty/logos/fireworksai.svg -------------------------------------------------------------------------------- /public/thirdparty/logos/google.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/isoftstone-data-intelligence-ai/efflux-frontend/HEAD/public/thirdparty/logos/google.svg -------------------------------------------------------------------------------- /public/thirdparty/logos/groq.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/isoftstone-data-intelligence-ai/efflux-frontend/HEAD/public/thirdparty/logos/groq.svg -------------------------------------------------------------------------------- /public/thirdparty/logos/mistral.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/isoftstone-data-intelligence-ai/efflux-frontend/HEAD/public/thirdparty/logos/mistral.svg -------------------------------------------------------------------------------- /public/thirdparty/logos/ollama.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/isoftstone-data-intelligence-ai/efflux-frontend/HEAD/public/thirdparty/logos/ollama.svg -------------------------------------------------------------------------------- /public/thirdparty/logos/openai.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/isoftstone-data-intelligence-ai/efflux-frontend/HEAD/public/thirdparty/logos/openai.svg -------------------------------------------------------------------------------- /public/thirdparty/logos/togetherai.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/isoftstone-data-intelligence-ai/efflux-frontend/HEAD/public/thirdparty/logos/togetherai.svg -------------------------------------------------------------------------------- /public/thirdparty/logos/vertex.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/isoftstone-data-intelligence-ai/efflux-frontend/HEAD/public/thirdparty/logos/vertex.svg -------------------------------------------------------------------------------- /public/thirdparty/logos/xai.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/isoftstone-data-intelligence-ai/efflux-frontend/HEAD/public/thirdparty/logos/xai.svg -------------------------------------------------------------------------------- /public/thirdparty/templates/code-interpreter-v1.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/isoftstone-data-intelligence-ai/efflux-frontend/HEAD/public/thirdparty/templates/code-interpreter-v1.svg -------------------------------------------------------------------------------- /public/thirdparty/templates/gradio-developer.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/isoftstone-data-intelligence-ai/efflux-frontend/HEAD/public/thirdparty/templates/gradio-developer.svg -------------------------------------------------------------------------------- /public/thirdparty/templates/nextjs-developer.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/isoftstone-data-intelligence-ai/efflux-frontend/HEAD/public/thirdparty/templates/nextjs-developer.svg -------------------------------------------------------------------------------- /public/thirdparty/templates/streamlit-developer.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/isoftstone-data-intelligence-ai/efflux-frontend/HEAD/public/thirdparty/templates/streamlit-developer.svg -------------------------------------------------------------------------------- /public/thirdparty/templates/vue-developer.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/isoftstone-data-intelligence-ai/efflux-frontend/HEAD/public/thirdparty/templates/vue-developer.svg -------------------------------------------------------------------------------- /sandbox-templates/gradio-developer/app.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/isoftstone-data-intelligence-ai/efflux-frontend/HEAD/sandbox-templates/gradio-developer/app.py -------------------------------------------------------------------------------- /sandbox-templates/gradio-developer/e2b.Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/isoftstone-data-intelligence-ai/efflux-frontend/HEAD/sandbox-templates/gradio-developer/e2b.Dockerfile -------------------------------------------------------------------------------- /sandbox-templates/gradio-developer/e2b.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/isoftstone-data-intelligence-ai/efflux-frontend/HEAD/sandbox-templates/gradio-developer/e2b.toml -------------------------------------------------------------------------------- /sandbox-templates/nextjs-developer/_app.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/isoftstone-data-intelligence-ai/efflux-frontend/HEAD/sandbox-templates/nextjs-developer/_app.tsx -------------------------------------------------------------------------------- /sandbox-templates/nextjs-developer/compile_page.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/isoftstone-data-intelligence-ai/efflux-frontend/HEAD/sandbox-templates/nextjs-developer/compile_page.sh -------------------------------------------------------------------------------- /sandbox-templates/nextjs-developer/e2b.Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/isoftstone-data-intelligence-ai/efflux-frontend/HEAD/sandbox-templates/nextjs-developer/e2b.Dockerfile -------------------------------------------------------------------------------- /sandbox-templates/nextjs-developer/e2b.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/isoftstone-data-intelligence-ai/efflux-frontend/HEAD/sandbox-templates/nextjs-developer/e2b.toml -------------------------------------------------------------------------------- /sandbox-templates/streamlit-developer/app.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/isoftstone-data-intelligence-ai/efflux-frontend/HEAD/sandbox-templates/streamlit-developer/app.py -------------------------------------------------------------------------------- /sandbox-templates/streamlit-developer/e2b.Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/isoftstone-data-intelligence-ai/efflux-frontend/HEAD/sandbox-templates/streamlit-developer/e2b.Dockerfile -------------------------------------------------------------------------------- /sandbox-templates/streamlit-developer/e2b.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/isoftstone-data-intelligence-ai/efflux-frontend/HEAD/sandbox-templates/streamlit-developer/e2b.toml -------------------------------------------------------------------------------- /sandbox-templates/vue-developer/e2b.Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/isoftstone-data-intelligence-ai/efflux-frontend/HEAD/sandbox-templates/vue-developer/e2b.Dockerfile -------------------------------------------------------------------------------- /sandbox-templates/vue-developer/e2b.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/isoftstone-data-intelligence-ai/efflux-frontend/HEAD/sandbox-templates/vue-developer/e2b.toml -------------------------------------------------------------------------------- /sandbox-templates/vue-developer/nuxt.config.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/isoftstone-data-intelligence-ai/efflux-frontend/HEAD/sandbox-templates/vue-developer/nuxt.config.ts -------------------------------------------------------------------------------- /tailwind.config.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/isoftstone-data-intelligence-ai/efflux-frontend/HEAD/tailwind.config.ts -------------------------------------------------------------------------------- /tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/isoftstone-data-intelligence-ai/efflux-frontend/HEAD/tsconfig.json --------------------------------------------------------------------------------