오늘 구현 한 코드들(칼로리 계산기)response = '돈가스'pdf_path = 'C:\\Users\\kevinkim\\Desktop\\Daily Calories\\Daily recommended Calories.pdf' #추후 변경 가능pdf_file = PdfReader(pdf_path)nutrition_file = ''for file in pdf_file.pages: nutrition_file += file.extract_text()def filtered_file(text): text = re.sub(r"\b(오전|오후)\s*\d{1,2}:\d{2}\b", "", text) text = re.sub(r"https?://\S+", "", text) text = re.sub(r..