├── .gitignore ├── README.md ├── index.html ├── package.json ├── script.js ├── src ├── App.vue ├── assets │ └── style.css ├── components │ ├── ChatContainer.vue │ ├── MessageItem.vue │ └── Sidebar.vue └── main.js ├── style.css └── vite.config.js /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lfglfg11/gemini-assistant/HEAD/.gitignore -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lfglfg11/gemini-assistant/HEAD/README.md -------------------------------------------------------------------------------- /index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lfglfg11/gemini-assistant/HEAD/index.html -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lfglfg11/gemini-assistant/HEAD/package.json -------------------------------------------------------------------------------- /script.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lfglfg11/gemini-assistant/HEAD/script.js -------------------------------------------------------------------------------- /src/App.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lfglfg11/gemini-assistant/HEAD/src/App.vue -------------------------------------------------------------------------------- /src/assets/style.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lfglfg11/gemini-assistant/HEAD/src/assets/style.css -------------------------------------------------------------------------------- /src/components/ChatContainer.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lfglfg11/gemini-assistant/HEAD/src/components/ChatContainer.vue -------------------------------------------------------------------------------- /src/components/MessageItem.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lfglfg11/gemini-assistant/HEAD/src/components/MessageItem.vue -------------------------------------------------------------------------------- /src/components/Sidebar.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lfglfg11/gemini-assistant/HEAD/src/components/Sidebar.vue -------------------------------------------------------------------------------- /src/main.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lfglfg11/gemini-assistant/HEAD/src/main.js -------------------------------------------------------------------------------- /style.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lfglfg11/gemini-assistant/HEAD/style.css -------------------------------------------------------------------------------- /vite.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lfglfg11/gemini-assistant/HEAD/vite.config.js --------------------------------------------------------------------------------