Crew AI Token Usage

def run():
    """
    Run the crew.
    """
    inputs = {
        'topic': 'AI LLMs',
        'current_year': str(datetime.now().year)
    }
    
    try:
        result = Manju().crew().kickoff(inputs=inputs)
    except Exception as e:
        raise Exception(f"An error occurred while running the crew: {e}")
    
    print(f"\nCrew Output:\n{result.raw}\n")
    print(f"\nToken Usage:\n{result.token_usage}\n")