You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: prompting/prompt-engineering-guide.mdx
+29-34Lines changed: 29 additions & 34 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -11,52 +11,47 @@ Different AI models are good at different things. The key is to be clear about w
11
11
12
12
---
13
13
14
-
## Technology stack specification for AI code generation
14
+
## Tell the AI What Tools to Use
15
15
16
-
### Be explicit about technologies for better LLM results
16
+
### Be Specific About Your Tools
17
17
18
-
AI models (LLMs) work best when you clearly specify your preferred technology stack for code generation. This ensures the AI-generated code uses the right frameworks, libraries, and architectural patterns from the start for optimal AI-powered development.
18
+
The AI works better when you tell it exactly what tools and technologies you want to use. It's like telling a chef what ingredients to cook with.
19
19
20
-
**Clear stack specification for AI prompting:**
20
+
**Good example:**
21
21
22
22
```
23
-
Build a modern e-commerce dashboard using AI code generation with:
24
-
- React with TypeScript for the frontend
25
-
- Supabase for backend and database
26
-
- Tailwind CSS for styling
27
-
- React Query for data fetching
28
-
- React Router for navigation
23
+
Build an online store dashboard with:
24
+
- React for the website
25
+
- Supabase for saving data
26
+
- Tailwind CSS to make it look nice
27
+
- React Router to move between pages
29
28
```
30
29
31
-
### Recommended Technology Combinations
30
+
### Popular Tool Combinations
32
31
33
-
| Category | Primary Choice | Alternatives | Use Case |
0 commit comments