from services.ai_router import ask_ai


def evaluate_vocabulary(text):
    prompt = f"""
You are an English vocabulary analyst.

Analyze this text and provide:
- vocabulary strength
- lexical resource score
- advanced vocabulary suggestions
- word choice improvements
- collocations and idiom recommendations

Text:
{text}
"""
    return ask_ai(prompt)
