Suggests ideas about what should be made for the dinner given a list of ingredients we have.
Text Generation
English
Cooking-Pair
Dish suggestor
You can get started directly by fetching the base url given below + the model name you want to use and your query ex: ?q="Bread, cheese, tomato's, cucumber", Base URL: https://freeaiapi.vercel.app/api/
However, if you want to see your API history and get optimized server response while traffic you can sign in to get a APIKEY and pass it as a last parameter (key).URL : BASEURL + ChefGPT + ?query="Bread, cheese, tomato's, cucumber"&key="KEY(optional)"
const fetchData = async () => {
const URL = Your URL;
const response = await fetch(url);
const data = await response.json();
return data;
};