├── API.txt ├── Custom Bot ├── README.md ├── index.html ├── main.js └── style.css /API.txt: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Custom Bot: -------------------------------------------------------------------------------- 1 | 57 | -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- 1 | # Chat Assistant 2 | 3 | A simple web-based chat assistant built with HTML, CSS, and JavaScript. This application allows users to interact with an AI assistant, send messages, and receive responses in real-time. The assistant can handle both text and image generation requests through a backend API. 4 | 5 | ## Features 6 | 7 | - **User Interface**: 8 | - A clean and modern design using Material Design principles. 9 | - Responsive layout that adjusts to different screen sizes. 10 | - Dark and light mode styling for better user experience. 11 | 12 | - **Chat Functionality**: 13 | - Users can type messages in an input field and send them using the "Send" button. 14 | - Messages from the user and the assistant are visually differentiated with distinct styles. 15 | - The chatbox scrolls automatically to show the latest messages. 16 | 17 | - **Typing Indicator**: 18 | - A visual typing indicator appears when the assistant is generating a response, simulating a real-time chat experience. 19 | 20 | - **API Integration**: 21 | - The application sends user messages to a backend API for processing. 22 | - Supports text and image generation requests based on user input. 23 | 24 | ## Technologies Used 25 | 26 | - HTML5: Markup language for structuring the application. 27 | - CSS3: Styling the application for a modern look and feel. 28 | - JavaScript: Adding interactivity and handling API requests. 29 | - Font Awesome: Icons for the user interface. 30 | - Material Design Lite: A CSS framework for consistent styling. 31 | 32 | ## Getting Started 33 | 34 | To run this application locally, follow these steps: 35 | 36 | 1. Help & Business (Telegram): https://t.me/You_B_Tech_Coding 37 | 2. Help & Business (Instagram): https://instagram.com/you_b_tech 38 | 39 | Follow & Chat with us: 40 | - Telegram Channel → https://t.me/You_B_Tech 41 | - YouTube → https://youtube.com/@You_B_Tech 42 | - Instagram → https://instagram.com/you_b_tech 43 | - Wedsite → https://youbtech.xyz 44 | -------------------------------------------------------------------------------- /index.html: -------------------------------------------------------------------------------- 1 | 2 | 3 |
4 | 5 | 6 | 7 | 8 | 9 |