---------------------------------------------------------------------- This is the API documentation for the gdtest_sec_navbar_after library. ---------------------------------------------------------------------- ## Functions Public functions prepare(ingredient: str) -> dict Prepare an ingredient for cooking. Parameters ---------- ingredient : str The ingredient to prepare. Returns ------- dict A dictionary with the prepared ingredient details. Examples -------- >>> prepare("tomato") {'ingredient': 'tomato', 'status': 'prepared'} serve(dish: dict) -> str Serve a prepared dish. Parameters ---------- dish : dict A dictionary representing the dish to serve. Returns ------- str A message indicating the dish has been served. Examples -------- >>> serve({"name": "pasta"}) 'Serving pasta'