Skip to content
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
11 changes: 5 additions & 6 deletions packages/angular/cli/src/commands/mcp/resources/ai-tutor.md
Original file line number Diff line number Diff line change
Expand Up @@ -660,7 +660,7 @@ touch src/app/mock-recipes.ts
id: 1,
name: 'Spaghetti Carbonara',
description: 'A classic Italian pasta dish.',
imgUrl: '[https://via.placeholder.com/300x200.png?text=Spaghetti+Carbonara](https://via.placeholder.com/300x200.png?text=Spaghetti+Carbonara)',
imgUrl: 'INSERT_IMAGE_URL',
Comment thread
devchas marked this conversation as resolved.
ingredients: [
{ name: 'Spaghetti', quantity: 200, unit: 'g' },
{ name: 'Guanciale', quantity: 100, unit: 'g' },
Expand All @@ -673,7 +673,7 @@ touch src/app/mock-recipes.ts
id: 2,
name: 'Caprese Salad',
description: 'A simple and refreshing Italian salad.',
imgUrl: '[https://via.placeholder.com/300x200.png?text=Caprese+Salad](https://via.placeholder.com/300x200.png?text=Caprese+Salad)',
imgUrl: 'INSERT_IMAGE_URL',
Comment thread
devchas marked this conversation as resolved.
ingredients: [
{ name: 'Tomatoes', quantity: 4, unit: 'each' },
{ name: 'Fresh Mozzarella', quantity: 200, unit: 'g' },
Expand Down Expand Up @@ -717,7 +717,7 @@ touch src/app/mock-recipes.ts
id: 1,
name: 'Spaghetti Carbonara',
description: 'A classic Italian pasta dish.',
imgUrl: '[https://via.placeholder.com/300x200.png?text=Spaghetti+Carbonara](https://via.placeholder.com/300x200.png?text=Spaghetti+Carbonara)',
imgUrl: 'INSERT_IMAGE_URL',
Comment thread
devchas marked this conversation as resolved.
isFavorite: true,
ingredients: [
{ name: 'Spaghetti', quantity: 200, unit: 'g' },
Expand All @@ -731,7 +731,7 @@ touch src/app/mock-recipes.ts
id: 2,
name: 'Caprese Salad',
description: 'A simple and refreshing Italian salad.',
imgUrl: '[https://via.placeholder.com/300x200.png?text=Caprese+Salad](https://via.placeholder.com/300x200.png?text=Caprese+Salad)',
imgUrl: 'INSERT_IMAGE_URL',
Comment thread
devchas marked this conversation as resolved.
isFavorite: false,
ingredients: [
{ name: 'Tomatoes', quantity: 4, unit: 'each' },
Expand Down Expand Up @@ -786,8 +786,7 @@ touch src/app/mock-recipes.ts
name: 'Spaghetti Carbonara',
description: 'A classic Italian pasta dish.',
authorEmail: 'mario@italy.com', // Add this
imgUrl:
'[https://via.placeholder.com/300x200.png?text=Spaghetti+Carbonara](https://via.placeholder.com/300x200.png?text=Spaghetti+Carbonara)',
imgUrl: 'INSERT_IMAGE_URL',
Comment thread
devchas marked this conversation as resolved.
isFavorite: true,
ingredients: [
{ name: 'Spaghetti', quantity: 200, unit: 'g' },
Expand Down
Loading