from services.ai_router import ask_ai


def draft_sop(application_details):
    prompt = f"""
You are an AI statement of purpose writer.

Draft or improve a strong SOP for the following application:
{application_details}

Return:
- polished SOP text
- structure recommendations
- strength highlights
- scholarship fit messaging
"""
    return ask_ai(prompt)
