File Structure
bashCopyEditxio/
├── backend/ # Core logic, file processing, embeddings, vector storage
│ ├── services/ # LLM, embeddings, and integrations
│ ├── routes/ # Logic for handling chat, file parsing, and workspace actions
│ └── utils/ # Helpers for chunking, cleaning, formatting
├── frontend/ # React-based UI for chat, workspace management, uploads
│ ├── components/ # Reusable UI elements
│ ├── pages/ # Page-level views (chat, workspace, settings)
│ └── styles/ # Tailwind and global styles
├── docker-compose.yml
├── .env
└── README.mdLast updated