Skip to content

dspy.inspect_history

dspy.inspect_history(n: int = 1)

The global history shared across all LMs.

Source code in dspy/clients/base_lm.py
def inspect_history(n: int = 1):
    """The global history shared across all LMs."""
    return _inspect_history(GLOBAL_HISTORY, n)