help@rskworld.in +91 93305 39277
RSK World
  • Home
  • Development
    • Web Development
    • Mobile Apps
    • Software
    • Games
    • Project
  • Technologies
    • Data Science
    • AI Development
    • Cloud Development
    • Blockchain
    • Cyber Security
    • Dev Tools
    • Testing Tools
  • Blog
  • About
  • Contact

Theme Settings

Color Scheme
Display Options
Font Size
100%
Back to Project
RSK World
recipe-assistant-bot
RSK World
recipe-assistant-bot
Recipe Assistant Bot - Python + Flask + AI Chatbot + Recipe Suggestions + Cooking Tips + Meal Planning
recipe-assistant-bot
  • __pycache__
  • app
  • config
  • data
  • static
  • templates
  • tests
  • .env.example679 B
  • .gitignore716 B
  • ADVANCED_FEATURES.md8.8 KB
  • ERROR_CHECK_REPORT.md4.4 KB
  • GITHUB_RELEASE_NOTES.md2.9 KB
  • LICENSE2.8 KB
  • README.md7.2 KB
  • RELEASE_NOTES.md7.8 KB
  • config.py4.6 KB
  • requirements.txt1.1 KB
  • run.py2.3 KB
index.html
templates/index.html
Raw Download
Find: Go to:
<!DOCTYPE html>
<html lang="en">
<head>
    <!--
    Recipe Assistant Bot - Main Interface
    Author: RSK World (https://rskworld.in)
    Founder: Molla Samser
    Designer & Tester: Rima Khatun
    Contact: help@rskworld.in, +91 93305 39277
    Year: 2026
    -->
    <meta charset="UTF-8">
    <meta name="viewport" content="width=device-width, initial-scale=1.0">
    <title>Recipe Assistant Bot - RSK World</title>
    <link href="https://cdn.jsdelivr.net/npm/bootstrap@5.1.3/dist/css/bootstrap.min.css" rel="stylesheet">
    <link href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/6.0.0/css/all.min.css" rel="stylesheet">
    <link href="{{ url_for('static', filename='css/style.css') }}" rel="stylesheet">
</head>
<body>
    <header class="bg-primary text-white py-3">
        <div class="container">
            <div class="row align-items-center">
                <div class="col-md-8">
                    <h1><i class="fas fa-utensils me-2"></i>Recipe Assistant Bot</h1>
                    <p class="mb-0">Your AI-powered cooking companion for recipes, substitutions, and cooking tips</p>
                </div>
                <div class="col-md-4 text-end">
                    <small class="d-block">© 2026 RSK World</small>
                    <small>Developed by Molla Samser & Rima Khatun</small>
                </div>
            </div>
        </div>
    </header>

    <main class="container my-4">
        <div class="row">
            <!-- Chat Section -->
            <div class="col-lg-8">
                <div class="card">
                    <div class="card-header bg-success text-white">
                        <h5 class="mb-0"><i class="fas fa-comments me-2"></i>Chat with Recipe Assistant</h5>
                    </div>
                    <div class="card-body">
                        <div id="chatMessages" class="chat-container mb-3">
                            <div class="message bot-message">
                                <div class="message-content">
                                    <strong>Recipe Bot:</strong> Hello! I'm your recipe assistant. I can help you with:
                                    <ul class="mt-2">
                                        <li>Recipe suggestions</li>
                                        <li>Ingredient substitutions</li>
                                        <li>Cooking tips and techniques</li>
                                        <li>Dietary restriction options</li>
                                    </ul>
                                    What would you like to know today?
                                </div>
                            </div>
                        </div>
                        <div class="input-group">
                            <input type="text" id="messageInput" class="form-control" placeholder="Ask about recipes, ingredients, or cooking tips..." maxlength="500">
                            <button class="btn btn-success" id="sendButton">
                                <i class="fas fa-paper-plane"></i> Send
                            </button>
                        </div>
                        <div class="mt-2">
                            <small class="text-muted">Quick suggestions:</small>
                            <div class="quick-suggestions mt-1">
                                <button class="btn btn-sm btn-outline-secondary me-1 mb-1 quick-suggestion" data-message="Give me a chicken recipe">Chicken Recipe</button>
                                <button class="btn btn-sm btn-outline-secondary me-1 mb-1 quick-suggestion" data-message="What can I substitute for eggs?">Egg Substitutes</button>
                                <button class="btn btn-sm btn-outline-secondary me-1 mb-1 quick-suggestion" data-message="Give me some baking tips">Baking Tips</button>
                                <button class="btn btn-sm btn-outline-secondary me-1 mb-1 quick-suggestion" data-message="Vegetarian recipes">Vegetarian</button>
                                <button class="btn btn-sm btn-outline-primary me-1 mb-1 quick-suggestion" data-message="Create a 7-day meal plan">Meal Plan</button>
                                <button class="btn btn-sm btn-outline-info me-1 mb-1 quick-suggestion" data-message="What's the nutrition for spaghetti carbonara?">Nutrition Info</button>
                                <button class="btn btn-sm btn-outline-success me-1 mb-1 quick-suggestion" data-message="How much does chicken stir fry cost?">Cost Info</button>
                                <button class="btn btn-sm btn-outline-warning me-1 mb-1 quick-suggestion" data-message="Generate a shopping list">Shopping List</button>
                                <button class="btn btn-sm btn-outline-danger me-1 mb-1 quick-suggestion" data-message="Set timer for 15 minutes">Timer</button>
                            </div>
                        </div>
                    </div>
                </div>
            </div>

            <!-- Features Section -->
            <div class="col-lg-4">
                <div class="card mb-3">
                    <div class="card-header bg-warning">
                        <h6 class="mb-0"><i class="fas fa-star me-2"></i>Features</h6>
                    </div>
                    <div class="card-body">
                        <ul class="list-unstyled">
                            <li class="mb-2"><i class="fas fa-check text-success me-2"></i>Recipe suggestions</li>
                            <li class="mb-2"><i class="fas fa-check text-success me-2"></i>Ingredient substitutions</li>
                            <li class="mb-2"><i class="fas fa-check text-success me-2"></i>Cooking tips</li>
                            <li class="mb-2"><i class="fas fa-check text-success me-2"></i>Meal planning</li>
                            <li class="mb-2"><i class="fas fa-check text-success me-2"></i>Dietary restrictions</li>
                            <li class="mb-2"><i class="fas fa-check text-info me-2"></i>Nutritional information</li>
                            <li class="mb-2"><i class="fas fa-check text-info me-2"></i>Cost calculator</li>
                            <li class="mb-2"><i class="fas fa-check text-info me-2"></i>Shopping lists</li>
                            <li class="mb-2"><i class="fas fa-check text-info me-2"></i>Recipe ratings</li>
                            <li class="mb-2"><i class="fas fa-check text-info me-2"></i>Favorites & bookmarks</li>
                            <li class="mb-2"><i class="fas fa-check text-warning me-2"></i>Cooking timer</li>
                            <li class="mb-2"><i class="fas fa-check text-warning me-2"></i>Recipe sharing</li>
                        </ul>
                    </div>
                </div>

                <div class="card mb-3">
                    <div class="card-header bg-info text-white">
                        <h6 class="mb-0"><i class="fas fa-info-circle me-2"></i>About</h6>
                    </div>
                    <div class="card-body">
                        <p class="small">This chatbot helps with cooking by providing recipes, ingredient substitutions, cooking tips, and meal planning. Perfect for food apps and cooking platforms.</p>
                        <hr>
                        <p class="small mb-1"><strong>Technologies:</strong></p>
                        <div class="mb-2">
                            <span class="badge bg-primary me-1">Python</span>
                            <span class="badge bg-primary me-1">Flask</span>
                            <span class="badge bg-primary me-1">Recipe APIs</span>
                            <span class="badge bg-primary me-1">OpenAI API</span>
                        </div>
                        <p class="small mb-1"><strong>Difficulty:</strong> <span class="badge bg-success">Beginner</span></p>
                    </div>
                </div>

                <div class="card">
                    <div class="card-header bg-secondary text-white">
                        <h6 class="mb-0"><i class="fas fa-phone me-2"></i>Contact</h6>
                    </div>
                    <div class="card-body">
                        <p class="small mb-1"><strong>RSK World</strong></p>
                        <p class="small mb-1">Founder: Molla Samser</p>
                        <p class="small mb-1">Designer & Tester: Rima Khatun</p>
                        <p class="small mb-1">Email: <a href="mailto:help@rskworld.in">help@rskworld.in</a></p>
                        <p class="small mb-1">Phone: <a href="tel:+919330539277">+91 93305 39277</a></p>
                        <p class="small mb-0">Website: <a href="https://rskworld.in" target="_blank">rskworld.in</a></p>
                    </div>
                </div>
            </div>
        </div>
    </main>

    <footer class="bg-dark text-white py-3 mt-5">
        <div class="container">
            <div class="row">
                <div class="col-md-6">
                    <p class="mb-0">© 2026 RSK World. All rights reserved.</p>
                    <p class="mb-0">Nutanhat, Mongolkote, Purba Burdwan, West Bengal, India - 713147</p>
                </div>
                <div class="col-md-6 text-end">
                    <p class="mb-0">Developed by Molla Samser & Rima Khatun</p>
                    <p class="mb-0">Educational Purpose Project</p>
                </div>
            </div>
        </div>
    </footer>

    <script src="https://cdn.jsdelivr.net/npm/bootstrap@5.1.3/dist/js/bootstrap.bundle.min.js"></script>
    <script src="{{ url_for('static', filename='js/chat.js') }}"></script>
</body>
</html>
160 lines•9.6 KB
markup

About RSK World

Founded by Molla Samser, with Designer & Tester Rima Khatun, RSK World is your one-stop destination for free programming resources, source code, and development tools.

Founder: Molla Samser
Designer & Tester: Rima Khatun

Development

  • Game Development
  • Web Development
  • Mobile Development
  • AI Development
  • Development Tools

Legal

  • Terms & Conditions
  • Privacy Policy
  • Disclaimer

Contact Info

Nutanhat, Mongolkote
Purba Burdwan, West Bengal
India, 713147

+91 93305 39277

hello@rskworld.in
support@rskworld.in

© 2026 RSK World. All rights reserved.

Content used for educational purposes only. View Disclaimer