from services.ai_router import ask_ai


def prepare_interview(script):
    prompt = f"""
You are an AI interview coach.

Create a personalized interview preparation guide based on this candidate input:
{script}

Return:
- possible questions
- model answers
- confidence tips
- common mistake corrections
"""
    return ask_ai(prompt)
