DietSense is an AI-powered nutrition analysis service that leverages advanced machine learning techniques and state-of-the-art language models to provide detailed insights into the nutritional content of foods. Users can upload images of their meals, and DietSense will analyze these images to identify the food items and provide a comprehensive breakdown of their nutritional contents, including calories, macronutrients, and micronutrients.
- Image Processing: Upload meal photos and receive detailed nutritional data.
- Nutritional Breakdown: Get insights into calories, macronutrients (proteins, carbs, fats), and micronutrients (vitamins, minerals).
- Easy Integration: Offers an API that can be integrated with other health and nutrition applications.
- Programming Language: Go (Golang)
- Web Framework: Gin
- Database: SQLite (default), with an option for PostgreSQL in production environments
- ORM: GORM
- Authentication: API Key-based
- Rate Limiting: Implemented using go-redis-rate
- Logging: Logrus
- Configuration Management: Viper
- API Documentation: Swagger
- Testing: Go Testing Package and Testify
- Containerization: Docker
These instructions will get you a copy of the project up and running on your local machine for development and testing purposes.
What things you need to install the software and how to install them:
docker
docker-compose
A step by step series of examples that tell you how to get a development environment running:
- Clone the repository
git clone https://github.com/codevalley/dietsense.git
cd dietsense
- Build the Docker image
docker build -t dietsense .
- Run the application using Docker Compose
docker-compose up
This command will start the service on localhost:8080
. You can access the API endpoints using the specified port.
To analyze a food image for nutritional content, send a POST request to the endpoint:
curl -X POST "http://localhost:8080/analyze" -F "image=@path_to_your_food_image"
Please read CONTRIBUTING.md for details on our code of conduct, and the process for submitting pull requests to us.
We use SemVer for versioning. For the versions available, see the tags on this repository.
- Narayan Babu - Initial work - @codevalley
This project is licensed under the MIT License - see the LICENSE.md file for details
- To my wife and kids for allowing me spend my weekends on useless stuff.