Chef-Claude is your AI-powered kitchen assistant. Just tell it what ingredients you have, and it will suggest a delicious recipe you can make! Whether you're short on ideas or just want to try something new, Chef-Claude has you covered.
- 🔍 Enter at least 4 ingredients to generate a recipe.
- 🤖 AI-generated recipes using Google Gemini API.
- 🧾 Clean markdown-formatted instructions for easy reading.
- ⚡ Built with React and Axios for a fast, responsive experience.
- React – Frontend UI
- Axios – API requests
- Google Gemini API – AI recipe generation
- Vite – Build tool for lightning-fast development
git clone https://github.com/Sksingh0007/chef-claude.git
cd chef-claudenpm installCreate a .env file in the root of your project and add your Gemini API configuration:
VITE_GEMINI_API_KEY=your_google_gemini_api_key
VITE_GEMINI_API_URL=https://generativelanguage.googleapis.com/v1beta/models/gemini-pro:generateContentnpm run devVisit http://localhost:5173 in your browser.
- Users input ingredients (minimum of 4).
- Ingredients are sent to the Gemini AI model.
- AI generates a complete recipe using those ingredients, plus a few optional extras.
- Recipe is displayed in a markdown-rendered view.
Input:
eggs, milk, bread, cheese
Output:
## Cheesy Egg Toast
**Ingredients:**
- Eggs
- Milk
- Bread
- Cheese
- Butter
- Salt and pepper
**Instructions:**
1. Beat the eggs with milk, salt, and pepper.
2. Dip bread slices into the egg mixture.
3. Heat butter in a pan and toast the bread on both sides.
4. Sprinkle cheese on top and cover until melted.
5. Serve hot and enjoy!
Contributions are welcome! Whether it's a bug fix, a feature idea, or UI enhancements — feel free to fork the project and submit a pull request.
MIT License – use it freely for personal or commercial projects.
