← Back to Blog

Levels of Prompt Engineering: Level 1 - Basic Prompting

March 15, 2025By Jasdeep
Share:
<- Read the Levels of Prompting Overview

Level 1: Basic Prompting

Level 2: Structured Prompting

Level 3: Adaptive Prompting

Level 4: Conversational Prompting

Level 5: Attention Engineering

Coming Soon!
Level 6:
Cognitive Framework Engineering


Level 1: Basic Prompting - Transactional Exchanges

When we first encounter AI systems, our mental model is strikingly simple: AI is a question-answering machine, a tool at our disposal. We approach it with the same mindset we might use with a search engine or calculator—expecting direct, immediate responses to our queries.

What's the capital of France?

Paris.

Write me a cover letter for this engineering role.

I am writing to express my interest in the engineering position at your company...

Explain quantum computing.

Quantum computing uses quantum mechanics principles such as superposition and entanglement to perform computations...

At this level, success feels binary—either you got what you wanted, or you didn't. When the response misses the mark, the natural reaction is often frustration: "Why didn't it understand what I meant?"

Parallel Examples from Different Domains

DomainLevel 1: Basic Prompting Parallel
Ping PongHolding a paddle and learning to hit the ball. You don't really know how you should hold it, or how to swing, you're just hitting in any way you can. If you get it over and the other person misses? You feel like you did it right.
Cognitive DevelopmentA child's first questions—"What's that?"—seeking nouns, naming, and labels—simple answers about the world. Children cannot quite connect the words together yet, no sentences, just directness, mama, dada, cat, dog, apple.
CookingLike your first piece of toast, "What number do you set it at?"" You take the bread, put in toaster, ding, it's toasted, is it burnt? is it too light? Is it the toaster's fault?
ProgrammingWriting straightforward functions that perform specific tasks—a function that adds two numbers, or displays "Hello World." The code either works or it doesn't, with little middle ground. It's not dynamic, it just outputs Hello World. Maybe you start learning classes or functions, but don't quite understand why they exist yet.

Attention Mechanisms & The Semantic Vector Space at Level 1

At the basic prompting level, you're navigating the default probability landscape of the AI's training. All the nuance that may emerge is the training data + a random element (called sampling).

Your simple queries activate standard response patterns without reshaping how the AI processes information. You can ask the same question in 10 chats and you'll get different but similar answers, which should make you start wondering, Why?

How the AI is Thinking

Basic Prompt: "Write code to sort a list in Python."

AI's Default Thought Process: User wants a sorting function. The most common implementation is using the built-in sorted() function.

Result: The AI provides a basic sorting function:

def sort_list(my_list):
    return sorted(my_list)

This response is correct and functional, but generic—it doesn't consider the user's specific context, requirements, or coding style. The AI is simply retrieving the most probable response to the query.

The Aha Moment: Basic prompting's breakthrough moment comes when you first successfully retrieve exactly what you need. "Wow, it actually gave me useful information!" This early success establishes your foundational relationship with AI systems. This is when you might start wondering and seeing why you got what you wanted.

Looking Ahead: Moving Beyond Basic Prompting

While Basic Prompting is incredibly useful for straightforward questions and simple tasks, you'll eventually notice its limitations. Sometimes the AI gives you exactly what you want, and other times it completely misses the mark.

In Level 2: Structured Prompting, we'll explore how the way you phrase your prompts can dramatically improve the quality and relevance of AI responses.

Happy Prompting!

Series Navigation

Level 1: Basic Prompting

Level 2: Structured Prompting

Level 3: Adaptive Prompting

Level 4: Conversational Prompting

Level 5: Attention Engineering

Coming Soon!
Level 6:
Cognitive Framework Engineering

Tags:

prompt-engineeringcognitive-frameworksai-interactionbasic-promptingstructured-promptingadaptive-promptinglearn-prompt-engineeringimprove-prompt-engineeringadvanced-prompt-engineering