{% extends "base.html" %} {% block scripts %} {% endblock %} {% block title %} account {% endblock %} {% block heading %}

Hey {{ session.username }} 👋

{% endblock %} {% block content %}

Remember that index.cooking does not store any personal information such as email addresses, so you are responsible for keeping access to your account at all times, be sure to keep your username and password safe!

If you have lost account access and you need the URLs of all the recipes you previously addedd, then contact me here.

Are you sure you want to delete your account? This will erase all your data including your recipes.

AI mode

{% if session.isAiSubscriber %}

Thanks for actvating AI mode. You can check your quota of AI requests remaining below

{% else %}

The HTML markup for recipe websites differs greatly. Therefore, it's hard to extract all the HTML from all websites. You may find there are certain websites that we cannot extract recipe data from. To get around this, you have the option to use AI mode.

AI mode works by running the page's HTML through an LLM to extract the relevant recipe information.

As this process is not cheap, you can buy credits that will allow you to perform these extraction operations. $5 will get you 1,000 AI operations. Probably more than you will ever need

We will always try and extract website data using normal metadata before using AI, so it's unlikely you will get close to 1,000 operations.

Are you sure you want to delete your account? This will erase all your data including your recipes.

{% endif %} {% endblock %}