graph TD
A[Start Chatbot Creation] --> B[UI Builder]
B --> C[Generate HTML]
B --> D[Generate CSS]
B --> E[Generate JS]
C & D & E --> F[Combine UI Components]
G[Config Generator] --> H[Crawl Website]
G --> I[Extract Content]
H & I --> J[Create JSON Config]
K[Backend Processor] --> L[Setup API Endpoint]
K --> M[Implement Query Processing]
K --> N[Define Response Structure]
L & M & N --> O[Deploy Backend]
P[Bundler] --> Q[Merge UI Code]
P --> R[Include Config]
P --> S[Add API References]
Q & R & S --> T[Minify Bundle]
F --> T
J --> T
O --> T
T --> U[Final Embeddable Script]