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

Implement Python Handler for Step Extraction and Storage #13

Closed ckak912 closed 1 year ago

ckak912 commented 1 year ago

CodeBuddy will need to extract each step from the API response and store them sequentially in a JSON object for further processing. This issue aims to implement a Python handler to handle this step extraction and storage process.

Steps to implement

  1. Create a Python handler to make an API call to the pre-trained model.
  2. Implement regex to extract each step from the API response.
  3. Store the extracted steps sequentially in a JSON object.
  4. Update the database by storing the JSON object in the exercise_details[steps] field.

Acceptance Criteria