# modules/nlp/schemas.py from pydantic import BaseModel from typing import List class ProcessCommandRequest(BaseModel): user_input: str class ProcessCommandResponse(BaseModel): responses: List[str] # Optional: Keep details if needed for specific frontend logic beyond display # details: dict | None = None