What was the goal of the Base64 exercise?
To control the LLM’s output format by instructing it to respond only in Base64, not natural language.
What is Base64?
A text encoding method that converts data into ASCII characters for safe storage or transmission.
Why does Base64 matter for Agentic AI?
It trains you to enforce strict format rules for LLM outputs — critical for structured actions in agent loops.
What message role should set the formatting rules?
The “system” message.
What message role gives the instruction or question?
The “user” message.
What library function sends prompts to the LLM?
completion() from the LiteLLM library.
How can you verify that a response is Base64?
Decode it using Python’s base64.b64decode() function.
What does decoding the Base64 string reveal?
The original English message encoded by the AI.
Why is this exercise important?
It builds confidence in controlling AI behavior using clear, rule-based prompting.
What concept does this practice connect to in Agentic AI?
Reliable communication between reasoning (LLM) and execution (Python) layers.