Projects.

01

CuraVie Healthcare

An AI-powered platform for migrant workers. Features automated medical report generation and multilingual support to bridge the healthcare gap.

Python Flask SQLAlchemy GenAI API
@app.route('/analyze', methods=['POST'])
def analyze_report():
    img = request.files['report']
    # AI processing pipeline
    data = ai_model.extract(img)
    return jsonify(data)
02

Ai House Price Predictor

An Ai based web app that can predict the Price of a house based on its physical Features such as floors , year built , no of rooms etc. It uses an AI model trained on dataset taken from keggle.

Python Machine Learning Flask AI model
@Transactional
public Ticket bookTicket(User user) {
  // Handling concurrency
  synchronized(this) {
    if(seatsAvailable > 0) {
       return repository.save(ticket);
    }
  }
}