from services.ai_router import ask_ai


def match_university(profile):
    prompt = f"""
You are an AI university recommendation expert.

Recommend the best study abroad programs and universities for this student profile:
{profile}

Return:
- top 5 university matches
- recommended courses
- scholarship eligibility insights
- application strengths
"""
    return ask_ai(prompt)
