---------------------------------------------------------------------- This is the API documentation for the gdtest_sec_recipes library. ---------------------------------------------------------------------- ## Functions Public functions cook(recipe: str) -> dict Cook a dish from the given recipe. Parameters ---------- recipe : str The name of the recipe to cook. Returns ------- dict A dictionary describing the cooked dish. Examples -------- >>> cook("pasta") {'dish': 'pasta', 'status': 'cooked'} serve(dish: dict) -> str Serve a cooked dish. Parameters ---------- dish : dict A dictionary describing the dish to serve. Returns ------- str A message confirming the dish was served. Examples -------- >>> serve({"dish": "pasta", "status": "cooked"}) 'Serving pasta'