Neural Mastery
← Practice
#185. Agentic RAG Plannereasy

#185. Agentic RAG Planner

easyRAG Fundamentals⏱ 10–15 min
Libraries allowed · Pure Python earns +10 bonus XP
🎯 Mission
Implement #185. Agentic RAG Planner to master core AI engineering concepts in RAG Fundamentals.

Task

Implement `agentic_rag_planner` in Python. Test cases verify edge cases and functional requirements.

Function Signature

agentic_rag_planner(*args, **kwargs)

Examples

Example 1: Basic Execution
Input: {}
Output: true
Explanation: Verifies core execution for #185. Agentic RAG Planner.

Constraints

  • Libraries (NumPy, PyTorch, SciPy) are allowed and accepted normally.
  • Pure Python (no external libraries) earns +10 Bonus XP!
  • Must handle edge cases cleanly.
Python3Saved ✓
def agentic_rag_planner(*args, **kwargs):
"""
RAG Fundamentals - Problem #185: Agentic RAG Planner
Implement solution for Agentic RAG Planner in the Neural Mastery AI Engineering curriculum.
"""
# Implement core solution logic here
pass

Case 1: Basic Execution
Input: {}
Expected: true