Feedstack Architecture
Purpose
This document outlines the architectural foundation of Feedstack, detailing its key components, data flow, and system interactions. The primary objective is to establish a robust and maintainable framework that supports real-time feedback generation while ensuring future scalability.
A core feature of Feedstack is its structured feedback system, facilitated through the use of "Chapters." These Chapters categorize insights based on visual design principles, offering a clear and organized way to analyze and improve design elements. Feedback is presented through a peripheral side panel, allowing users to view critiques in context with their design files. This structured approach ensures that design principles remain at the forefront of the evaluation process, helping users make informed adjustments that align with usability best practices.
By emphasizing the role of Chapters, Feedstack not only provides feedback but also educates users on fundamental design principles, fostering a deeper understanding of effective design techniques. The platform's architecture is designed to support real-time processing and iterative refinements, ensuring that users receive actionable insights throughout the design process.
System Overview and Architecture
Feedstack's architecture is divided into three primary areas:
- Client Application (Frontend): The user-facing web interface where designs are uploaded, feedback is reviewed, and interactive features enhance the user experience.
- Backend Services: The core processing layer that handles file uploads, communicates with external analysis tools, and categorizes the feedback.
- External Services: Integrations with OpenAI’s GPT-4 Vision API for design analysis and Firebase for secure storage.
System Components and Interfaces
Client Application (Frontend - React)
The frontend provides a streamlined interface where users can interact with the system efficiently.
-
Interfaces:
- REST API endpoints for uploading designs and retrieving feedback.
- WebSockets for handling real-time updates.
- State management via Redux or Zustand for optimal application performance.
-
Core Functionalities:
- Design Upload: Users can upload and preview design files.
- Feedback Display: AI-generated feedback is structured into categorized sections.
- Interactive Chat: Users can request additional clarification or insights.
- Keyword Highlighting: Key design terms are identified for better readability.
-
Components
ParticipantLogin/
- Handles user authenticationDesignUpload/
- Upload interface for design files- Feedback/ - Displays AI-generated feedback
ImageViewer/
- Renders uploaded designsChatInterface/
- AI-powered chatbot for feedback queriesThemeAccordion/
- Categorized design feedback
-
Assets/
Sounds/
- UI feedback sounds for accessibility
-
Styles/ - Global styling for consistency
-
Firebase Integration/ - Authentication and data storage
Backend Services (Django)
The backend is responsible for handling user requests, processing design files, and managing feedback generation.
-
Interfaces:
- REST API to manage frontend communication.
- Integration with external analysis services to evaluate design files.
- PostgreSQL database for storing user data and feedback.
-
Core Components:
- Design Processor: Handles file validation, storage, and analysis requests.
- Feedback Generator: Collects and refines AI-generated feedback.
- User Management: Manages authentication and session handling.
- Theme Categorizer: Sorts feedback into predefined design categories.
-
feedback_app/
views.py
- API endpoints for feedback and chat interactionsmodels.py
- Database models for user uploads and feedbackurls.py
- URL routing for backend servicesserializers.py
- Data serialization for API responses
-
feedstack_project/
settings.py
- Configuration for database, authentication, and APIsurls.py
- Main backend routing
-
media/
uploads/
- Secure storage for design files
External Services
Feedstack integrates external tools to enhance its functionality.
-
OpenAI API: Evaluates design files and returns structured feedback.
-
Database: Stores user-uploaded designs and processed feedback securely.
-
Python Libraries/
Django
djangorestframework
djangorestframework-simplejwt
django-cors-headers
openai
pillow
python-dotenv
scikit-learn
nltk
seaborn
matplotlib
Use Case: Uploading a Design for Feedback
- Visualizes how the user can upload their design into Feedstack. In this scenario, the user begins from the login screen and works their way into the file upload destination that's housed in the dashboard. This diagram also shows how the file uploading errors will be handled.
Use Case: Navigating Feedback Using Bookmarks
- Shows how a user can navigate to the feedback of their uploaded document. This diagram skips over the login and file upload processes, and begins right after the system returns it's intial feedback.