Code2Prompt

Project Path: my_recipes

Source Tree:

```txt
my_recipes
├── pantry
│   └── my_ingredients.txt
└── recipes
    ├── pasta.txt
    ├── pizza.txt
    ├── salad.txt
    └── soup.txt
```

`my_recipes/pantry/my_ingredients.txt`:

```txt
Available: pasta, tomato sauce, cheese
```

`my_recipes/recipes/pasta.txt`:

```txt
Ingredients: pasta, tomato sauce, garlic, basil
Instructions: Boil pasta, heat sauce, mix, serve.
```

`my_recipes/recipes/pizza.txt`:

```txt
Ingredients: flour, tomato sauce, cheese, oregano
Instructions: Make dough, add toppings, bake.
```

`my_recipes/recipes/salad.txt`:

```txt
Ingredients: lettuce, tomato, cucumber, olive oil
Instructions: Chop ingredients, mix, drizzle oil.
```

`my_recipes/recipes/soup.txt`:

```txt
Ingredients: carrots, potatoes, chicken broth, onions
Instructions: Boil broth, add vegetables, simmer.
```