├── .gitignore ├── LICENSE ├── README.md ├── demo.gif ├── index.css ├── index.html ├── package.json ├── src ├── App.tsx ├── components │ ├── ChatForm.tsx │ ├── ChatMessage.tsx │ └── ChatbotIcon.tsx ├── conpanyinfo.ts ├── main.tsx ├── services │ └── Assistant.ts └── vite-env.d.ts ├── tsconfig.json ├── tsconfig.node.json └── vite.config.js /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiongsi2000/web-embed-chatbot/HEAD/.gitignore -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiongsi2000/web-embed-chatbot/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiongsi2000/web-embed-chatbot/HEAD/README.md -------------------------------------------------------------------------------- /demo.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiongsi2000/web-embed-chatbot/HEAD/demo.gif -------------------------------------------------------------------------------- /index.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiongsi2000/web-embed-chatbot/HEAD/index.css -------------------------------------------------------------------------------- /index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiongsi2000/web-embed-chatbot/HEAD/index.html -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiongsi2000/web-embed-chatbot/HEAD/package.json -------------------------------------------------------------------------------- /src/App.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiongsi2000/web-embed-chatbot/HEAD/src/App.tsx -------------------------------------------------------------------------------- /src/components/ChatForm.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiongsi2000/web-embed-chatbot/HEAD/src/components/ChatForm.tsx -------------------------------------------------------------------------------- /src/components/ChatMessage.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiongsi2000/web-embed-chatbot/HEAD/src/components/ChatMessage.tsx -------------------------------------------------------------------------------- /src/components/ChatbotIcon.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiongsi2000/web-embed-chatbot/HEAD/src/components/ChatbotIcon.tsx -------------------------------------------------------------------------------- /src/conpanyinfo.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiongsi2000/web-embed-chatbot/HEAD/src/conpanyinfo.ts -------------------------------------------------------------------------------- /src/main.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiongsi2000/web-embed-chatbot/HEAD/src/main.tsx -------------------------------------------------------------------------------- /src/services/Assistant.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiongsi2000/web-embed-chatbot/HEAD/src/services/Assistant.ts -------------------------------------------------------------------------------- /src/vite-env.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiongsi2000/web-embed-chatbot/HEAD/src/vite-env.d.ts -------------------------------------------------------------------------------- /tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiongsi2000/web-embed-chatbot/HEAD/tsconfig.json -------------------------------------------------------------------------------- /tsconfig.node.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiongsi2000/web-embed-chatbot/HEAD/tsconfig.node.json -------------------------------------------------------------------------------- /vite.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiongsi2000/web-embed-chatbot/HEAD/vite.config.js --------------------------------------------------------------------------------