def is_text_output()

in server/app/utils.py [0:0]


def is_text_output(event):
    return event.type == "raw_response_event" and isinstance(
        event.data, ResponseTextDeltaEvent
    )