ckak912 / CodeBuddy_LLM

CodeBuddy: A learning management system for programmers with integrated LLM support
https://codebuddy.byu.edu
MIT License
1 stars 1 forks source link

Refactor code into modular files #11

Open ckak912 opened 1 year ago

ckak912 commented 1 year ago

Currently, all the code related to the modals and feedback functionality exists in a single file, _exercise_functions.html_. This approach can make the codebase harder to maintain and update in the future. It would be beneficial to refactor the code into seperate files, following a more modular approach.

Proposed solution

Related files

_exercise_functions.html_

Note:

Consider backward compatibtility and ensure any neccessary changes to existing code references are addressed during the refactoring process.

Include placeholder data types for the dummy variables, since these will eventually be connected to the backend

ckak912 commented 1 year ago

have decided to leave this until later on, can make our code modular after we have all of the functionality (e.g. API calls, handlers) implemented