Spaces:
Sleeping
Sleeping
File size: 18,123 Bytes
59f2666 d38b9e7 59f2666 d38b9e7 59f2666 d38b9e7 59f2666 d38b9e7 59f2666 d38b9e7 59f2666 d38b9e7 59f2666 | 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 331 332 333 334 335 336 337 338 339 340 341 342 343 344 345 346 347 348 349 350 351 352 353 354 355 356 357 358 359 360 361 362 363 364 365 366 367 368 369 370 371 372 373 374 375 376 377 378 379 380 381 382 383 384 385 386 387 388 389 390 391 392 393 394 395 396 397 398 399 400 401 402 403 404 405 406 407 408 409 410 411 412 413 414 415 416 417 418 419 420 421 422 423 424 425 426 427 428 429 430 | import os
import logging
import base64
import json
import sqlite3
from datetime import datetime, timedelta
from flask import Flask, request, jsonify, send_file
from groq import Groq
import csv
import mimetypes
from reportlab.lib.pagesizes import letter
from reportlab.platypus import SimpleDocTemplate, Paragraph, Spacer
from reportlab.lib.styles import getSampleStyleSheet
# Set up logging
logging.basicConfig(level=logging.INFO, format='%(asctime)s - %(levelname)s - %(message)s')
app = Flask(__name__)
# Initialize Groq client with environment variable
try:
client = Groq(api_key=os.getenv('GROQ_API_KEY'))
if not client.api_key:
raise ValueError("GROQ_API_KEY environment variable not set")
logging.info("Groq client initialized successfully")
except Exception as e:
logging.error(f"Failed to initialize Groq client: {str(e)}")
raise
# Global variables
image_path = None
csv_path = 'data.csv'
log_csv_path = 'logs/refined_text_log.csv'
intake_log_path = 'logs/intake_log.json'
# Flask setup
UPLOAD_FOLDER = 'static/uploads'
app.config['UPLOAD_FOLDER'] = UPLOAD_FOLDER
app.config['MAX_CONTENT_LENGTH'] = 16 * 1024 * 1024
# Ensure directories exist
os.makedirs(UPLOAD_FOLDER, exist_ok=True)
os.makedirs('logs', exist_ok=True)
os.makedirs('data', exist_ok=True) # Added for database
logging.info(f"Upload folder created/verified: {UPLOAD_FOLDER}")
logging.info(f"Logs folder created/verified: logs")
logging.info(f"Data folder created/verified: data")
# Database setup for ingredients
def init_db():
conn = sqlite3.connect("data/ingredients.db") # Updated path
cursor = conn.cursor()
cursor.execute("""
CREATE TABLE IF NOT EXISTS ingredients (
id INTEGER PRIMARY KEY AUTOINCREMENT,
name TEXT NOT NULL UNIQUE
)
""")
conn.commit()
conn.close()
# Add ingredient to database
def add_ingredient(ingredient):
try:
conn = sqlite3.connect("data/ingredients.db") # Updated path
cursor = conn.cursor()
cursor.execute("INSERT OR IGNORE INTO ingredients (name) VALUES (?)", (ingredient.lower(),))
conn.commit()
conn.close()
return True
except sqlite3.Error as e:
logging.error(f"Database error: {e}")
return False
# Fetch all ingredients from database
def get_ingredients():
try:
conn = sqlite3.connect("data/ingredients.db") # Updated path
cursor = conn.cursor()
cursor.execute("SELECT name FROM ingredients")
ingredients = [row[0] for row in cursor.fetchall()]
conn.close()
return ingredients
except sqlite3.Error as e:
logging.error(f"Database error: {e}")
return []
# Original logic functions
def log_refined_text(refined_text):
try:
with open(log_csv_path, mode='a', newline='') as file:
writer = csv.writer(file)
writer.writerow([refined_text])
logging.debug(f"Logged refined text to {log_csv_path}")
except Exception as e:
logging.error(f"Error logging refined text: {str(e)}")
raise
def process_image_and_csv(image_path, csv_path):
if not image_path:
logging.error("No image path provided")
return "Error: No image path provided!", "", ""
try:
mime_type, _ = mimetypes.guess_type(image_path)
if not mime_type or not mime_type.startswith('image/'):
mime_type = 'image/jpeg'
logging.debug(f"Detected MIME type: {mime_type}")
try:
with open(image_path, "rb") as image_file:
base64_image = base64.b64encode(image_file.read()).decode('utf-8')
except IOError as e:
logging.error(f"Failed to read image file: {str(e)}")
raise ValueError(f"Cannot read image file: {str(e)}")
image_data_url = f"data:{mime_type};base64,{base64_image}"
logging.debug("Image encoded as base64 for Groq")
response = client.chat.completions.create(
model="llama-3.2-90b-vision-preview",
messages=[
{
"role": "user",
"content": [
{
"type": "text",
"text": "Extract the Nutritional information from this Food pack label. Return the nutritional facts from the table, ingredients, and food name \n\nNutritional Facts:\n[Fact 1]\n[Fact 2]\n...\nFood Name: [Name]\nDo not include any explanations other than the Nutritional facts and Ingredients"
},
{
"type": "image_url",
"image_url": {"url": image_data_url}
}
]
}
],
temperature=1,
max_tokens=1024,
top_p=1,
stream=False,
stop=None
)
logging.debug(f"Groq response: {response}")
refined_text = response.choices[0].message.content
log_refined_text(refined_text)
return refined_text, "", ""
except Exception as e:
logging.error(f"Error in process_image_and_csv: {str(e)}")
return f"Error occurred: {str(e)}", "", ""
@app.route('/upload_nutritional', methods=['POST'])
def upload_nutritional():
global image_path
if 'file' not in request.files:
logging.error("No file part in request")
return jsonify({"error": "No file uploaded"}), 400
file = request.files['file']
if file.filename == '':
logging.error("No file selected")
return jsonify({"error": "No file selected"}), 400
try:
filepath = os.path.join(app.config['UPLOAD_FOLDER'], file.filename)
logging.debug(f"Saving file to: {filepath}")
file.save(filepath)
if not os.path.exists(filepath):
logging.error("File save failed")
return jsonify({"error": "Failed to save the uploaded file"}), 500
image_path = f"/{filepath}"
refined_text, _, _ = process_image_and_csv(filepath, csv_path)
if refined_text.startswith("Error occurred:"):
logging.error(f"Processing failed: {refined_text}")
return jsonify({"error": refined_text}), 500
logging.info("Nutritional image processed successfully")
return jsonify({"refined_text": refined_text, "image_url": image_path})
except Exception as e:
logging.error(f"Upload nutritional error: {str(e)}")
return jsonify({"error": f"Server error: {str(e)}"}), 500
@app.route('/upload_medical', methods=['POST'])
def upload_medical():
if 'file' not in request.files:
logging.error("No file part in request")
return jsonify({"error": "No file uploaded"}), 400
file = request.files['file']
if file.filename == '':
logging.error("No file selected")
return jsonify({"error": "No file selected"}), 400
try:
filepath = os.path.join(app.config['UPLOAD_FOLDER'], file.filename)
logging.debug(f"Saving file to: {filepath}")
file.save(filepath)
if not os.path.exists(filepath):
logging.error("File save failed")
return jsonify({"error": "Failed to save the uploaded file"}), 500
mime_type, _ = mimetypes.guess_type(filepath)
if not mime_type or not mime_type.startswith('image/'):
mime_type = 'image/jpeg'
logging.debug(f"Detected MIME type: {mime_type}")
try:
with open(filepath, "rb") as image_file:
base64_image = base64.b64encode(image_file.read()).decode('utf-8')
except IOError as e:
logging.error(f"Failed to read image file: {str(e)}")
raise ValueError(f"Cannot read image file: {str(e)}")
image_data_url = f"data:{mime_type};base64,{base64_image}"
logging.debug("Image encoded as base64 for Groq")
response = client.chat.completions.create(
model="llama-3.2-90b-vision-preview",
messages=[
{
"role": "user",
"content": [
{
"type": "text",
"text": "Extract the important information from this medical report. Return only the important medical details and diagnosis (if available) in the following format:\n\nMedical Details:\n[Detail 1]\n[Detail 2]\n...\n\nDiagnosis: [Diagnosis]\n\nIf no diagnosis is present, omit the Diagnosis section. Do not include any explanations, steps, or additional text beyond this format."
},
{
"type": "image_url",
"image_url": {"url": image_data_url}
}
]
}
],
temperature=0.7,
max_tokens=300,
top_p=1,
stream=False,
stop=None
)
logging.debug(f"Groq response: {response}")
refined_text = response.choices[0].message.content
logging.info("Medical report processed successfully")
return jsonify({"refined_text": refined_text})
except Exception as e:
logging.error(f"Upload medical error: {str(e)}")
return jsonify({"error": f"Server error: {str(e)}"}), 500
@app.route('/evaluate_combined', methods=['POST'])
def evaluate_combined():
data = request.json
nutritional_text = data.get('nutritional_text', '').strip()
medical_text = data.get('medical_text', '').strip()
selected_model = data.get('model', 'llama-3.3-70b-versatile')
selected_language = data.get('language', 'English')
if not nutritional_text:
logging.error("No nutritional text provided")
return jsonify({"error": "Please analyze nutritional data first"}), 400
if not medical_text:
logging.error("No medical text provided")
return jsonify({"error": "Please process medical report first"}), 400
try:
next_prompt = f"""
Dear User,
Based on the extracted text from your food pack labels: {nutritional_text},
and the details from your medical report: {medical_text},
please evaluate the ingredients for safety.
Provide a short recommendation on whether the food is safe to consume,
including the safe quantity for intake if applicable.
If the food is not recommended, briefly explain why it should be avoided.
Please provide the response in the following format:
1. First, a short and clear recommendation in **English**.
2. After that, a short and clear recommendation in **{selected_language}** that corresponds to the English response.
"""
final_response = client.chat.completions.create(
model=selected_model,
messages=[{"role": "system", "content": "You are a professional medical advisor."},
{"role": "user", "content": next_prompt}],
temperature=0.7,
max_tokens=400,
top_p=1,
stream=False
)
logging.info("Combined evaluation completed successfully")
return jsonify({"result": final_response.choices[0].message.content})
except Exception as e:
logging.error(f"Evaluate combined error: {str(e)}")
return jsonify({"error": f"Server error: {str(e)}"}), 500
@app.route('/export_pdf', methods=['POST'])
def export_pdf():
data = request.json
result = data.get('result', '').strip()
if not result:
logging.error("No result provided for PDF export")
return jsonify({"error": "No evaluation result to export"}), 400
try:
pdf_path = os.path.join(app.config['UPLOAD_FOLDER'], f"report_{datetime.now().strftime('%Y%m%d_%H%M%S')}.pdf")
doc = SimpleDocTemplate(pdf_path, pagesize=letter)
styles = getSampleStyleSheet()
story = []
story.append(Paragraph("Health and Nutrition Report", styles['Title']))
story.append(Spacer(1, 12))
for line in result.split('\n'):
story.append(Paragraph(line, styles['Normal']))
story.append(Spacer(1, 6))
doc.build(story)
logging.info(f"PDF generated: {pdf_path}")
return send_file(pdf_path, as_attachment=True)
except Exception as e:
logging.error(f"PDF export error: {str(e)}")
return jsonify({"error": f"Failed to generate PDF: {str(e)}"}), 500
@app.route('/confirm_intake', methods=['POST'])
def confirm_intake():
data = request.json
nutritional_text = data.get('nutritional_text', '').strip()
if not nutritional_text:
logging.error("No nutritional text provided for intake confirmation")
return jsonify({"error": "No nutritional data to confirm"}), 400
try:
nutrients = {}
for line in nutritional_text.split('\n'):
if 'Carbohydrates' in line:
nutrients['carbs'] = float(line.split()[-2]) if line.split()[-2].replace('.', '').isdigit() else 0
elif 'Sugars' in line:
nutrients['sugars'] = float(line.split()[-2]) if line.split()[-2].replace('.', '').isdigit() else 0
elif 'Sodium' in line:
nutrients['sodium'] = float(line.split()[-2]) if line.split()[-2].replace('.', '').isdigit() else 0
intake_entry = {
'date': datetime.now().strftime('%Y-%m-%d %H:%M:%S'),
'nutrients': nutrients
}
if os.path.exists(intake_log_path):
with open(intake_log_path, 'r') as f:
intake_log = json.load(f)
else:
intake_log = []
intake_log.append(intake_entry)
with open(intake_log_path, 'w') as f:
json.dump(intake_log, f, indent=2)
logging.info("Food intake confirmed and logged")
return jsonify({"message": "Intake confirmed and logged"})
except Exception as e:
logging.error(f"Intake confirmation error: {str(e)}")
return jsonify({"error": f"Failed to log intake: {str(e)}"}), 500
@app.route('/dashboard', methods=['GET'])
def dashboard():
try:
if not os.path.exists(intake_log_path):
return jsonify({"daily": {}, "weekly": {}})
with open(intake_log_path, 'r') as f:
intake_log = json.load(f)
today = datetime.now().strftime('%Y-%m-%d')
week_start = (datetime.now() - timedelta(days=datetime.now().weekday())).strftime('%Y-%m-%d')
daily_totals = {'carbs': 0, 'sugars': 0, 'sodium': 0}
weekly_totals = {'carbs': 0, 'sugars': 0, 'sodium': 0}
for entry in intake_log:
entry_date = entry['date'].split()[0]
nutrients = entry['nutrients']
if entry_date == today:
for nutrient in daily_totals:
daily_totals[nutrient] += nutrients.get(nutrient, 0)
if entry_date >= week_start:
for nutrient in weekly_totals:
weekly_totals[nutrient] += nutrients.get(nutrient, 0)
logging.info("Dashboard data calculated")
return jsonify({"daily": daily_totals, "weekly": weekly_totals})
except Exception as e:
logging.error(f"Dashboard error: {str(e)}")
return jsonify({"error": f"Failed to load dashboard: {str(e)}"}), 500
@app.route('/add_ingredient', methods=['POST'])
def add_ingredient_endpoint():
data = request.json
ingredient = data.get('ingredient', '').strip()
if not ingredient:
logging.error("No ingredient provided")
return jsonify({"error": "Please provide an ingredient"}), 400
if add_ingredient(ingredient):
logging.info(f"Ingredient '{ingredient}' added successfully")
return jsonify({"message": f"Added '{ingredient}' to the database"})
else:
logging.error("Failed to add ingredient")
return jsonify({"error": "Failed to add ingredient"}), 500
@app.route('/get_ingredients', methods=['GET'])
def get_ingredients_endpoint():
ingredients = get_ingredients()
return jsonify({"ingredients": ingredients})
@app.route('/meal_plan', methods=['POST'])
def meal_plan():
data = request.json
medical_text = data.get('medical_text', '').strip()
ingredients = data.get('ingredients', [])
meal_plan_type = data.get('meal_plan_type', 'recipe') # 'recipe' or 'weekly'
if not ingredients:
logging.error("No ingredients provided for meal plan")
return jsonify({"error": "Please add some ingredients first"}), 400
try:
if not medical_text:
prompt = (
f"I have the following ingredients: {', '.join(ingredients)}. "
f"Suggest a {'weekly meal plan' if meal_plan_type == 'weekly' else 'recipe'} based on these ingredients."
)
else:
prompt = (
f"Based on the following health conditions from a medical report: {medical_text}, "
f"and the ingredients I have: {', '.join(ingredients)}, "
f"suggest a {'weekly meal plan' if meal_plan_type == 'weekly' else 'recipe'} "
f"that is safe and suitable for my health condition."
)
response = client.chat.completions.create(
model="llama-3.3-70b-versatile",
messages=[{"role": "user", "content": prompt}],
temperature=1,
max_tokens=1024,
top_p=1,
stream=False,
stop=None
)
suggestion = response.choices[0].message.content.strip()
logging.info("Meal plan generated successfully")
return jsonify({"suggestion": suggestion})
except Exception as e:
logging.error(f"Meal plan error: {str(e)}")
return jsonify({"error": f"Failed to generate meal plan: {str(e)}"}), 500
# Initialize database on startup
init_db()
if __name__ == "__main__":
port = int(os.getenv("PORT", 7860)) # Default to 7860 for Hugging Face Spaces
app.run(host="0.0.0.0", port=port) |