    def process(self, inputs: Dict[str, Any]) -> {return_type_hint}:
        """
        Process the inputs and return the output value.

        This method is called by BaseAgent.run() after input extraction.
        IMPLEMENT THIS METHOD with your business logic.

        Args:
            inputs: Processed input dictionary from BaseAgent

        Returns:
            {return_docstring}
        """
        # TODO: IMPLEMENT YOUR AGENT LOGIC HERE
        # Description: {description}
        # Context: {context}

        # Access specific input fields:
{input_field_access}

{process_body}