Neural Mastery
← Practice
#117. Tool Call Deduplicatorhard

#117. Tool Call Deduplicator

hardAgent Loop Engineering⏱ 25–30 min
Libraries allowed · Pure Python earns +10 bonus XP
🎯 Mission
Implement #117. Tool Call Deduplicator to master core AI engineering concepts in Agent Loop Engineering.

Task

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

Function Signature

tool_call_deduplicator(*args, **kwargs)

Examples

Example 1: Basic Execution
Input: {}
Output: true
Explanation: Verifies core execution for #117. Tool Call Deduplicator.

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 tool_call_deduplicator(*args, **kwargs):
"""
Agent Loop Engineering - Problem #117: Tool Call Deduplicator
Implement solution for Tool Call Deduplicator in the Neural Mastery AI Engineering curriculum.
"""
# Implement core solution logic here
pass

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