from services.ai_router import ask_ai


def create_study_plan(profile, goals):
    prompt = f"""
You are an AI study planner.

Create a study abroad and exam preparation plan for the following student profile:
{profile}

Goals:
{goals}

Return:
- weekly study plan
- exam recommendation
- practice milestones
- university preparation checklist
"""
    return ask_ai(prompt)
