Agentic AI Stack Flashcards

(25 cards)

1
Q

What is at the top of the Agentic AI stack?

A

The human developer or learner writing and running code.

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
2
Q

What is Google Colab’s role in the stack?

A

It’s the cloud workshop where your code executes and displays results.

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
3
Q

What does Python do in the Agentic AI stack?

A

It’s the programming language that defines the agent’s logic and runs its steps.

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
4
Q

What is LiteLLM’s role in the Agentic AI stack?

A

It acts as a translator between your Python code and the large language model APIs.

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
5
Q

Why is LiteLLM called a “universal translator”?

A

Because it can communicate with many LLMs (OpenAI, Anthropic, Gemini, etc.) using one consistent interface.

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
6
Q

What is OpenAI’s place in the stack?

A

It’s the “brain” layer that performs reasoning, planning, and language generation.

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
7
Q

What is the agent loop’s position in the architecture?

A

It runs across all layers as the system’s heartbeat, coordinating thinking, acting, and adapting.

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
8
Q

What is the flow of information in the Agentic AI stack?

A

Human → Colab → Python → LiteLLM → OpenAI → back to Python → Agent Loop → Human.

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
9
Q

What does each layer depend on?

A

The layer above gives instructions; the layer below provides responses or services.

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
10
Q

What layer handles actual code execution?

A

Google Colab executes Python code in the cloud.

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
11
Q

What layer handles reasoning and planning?

A

OpenAI’s GPT-4o or GPT-4o-mini models.

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
12
Q

What layer handles translation between APIs and models?

A

LiteLLM.

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
13
Q

What layer is responsible for adaptation and iteration?

A

The Agent Loop.

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
14
Q

What connects the reasoning brain (OpenAI) with your code executor (Python)?

A

LiteLLM.

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
15
Q

What is the metaphor for Colab in this stack?

A

A virtual lab or workspace where the AI agent’s body and brain operate.

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
16
Q

What is the metaphor for LiteLLM?

A

A universal translator that lets your AI brain speak any “dialect” of model language.

17
Q

What is the metaphor for Python?

A

The AI’s hands that execute the model’s planned actions.

18
Q

What is the metaphor for OpenAI?

A

The AI’s brain that decides what to do next.

19
Q

What is the metaphor for the Agent Loop?

A

The heartbeat that keeps the AI learning, acting, and responding.

20
Q

Why is the Agent Loop considered the “heartbeat” of agentic systems?

A

Because it continuously cycles through decisions, actions, and feedback until a goal is achieved.

21
Q

In simple terms, how do the stack and loop work together?

A

The stack provides the structure; the loop provides the motion that brings the AI to life.

22
Q

What makes this stack modular?

A

You can swap layers (e.g., different AI models) without rewriting the entire system.

23
Q

What happens if LiteLLM is removed from the stack?

A

You’d have to write custom code for each model API, losing interoperability.

24
Q

What does the “stack” represent conceptually?

A

The layered architecture that connects humans, code, and AI reasoning into one functioning agent.

25
Why is understanding the stack important before coding agents?
It helps you reason about where each part of your AI lives and how data flows through the system.