
Run the Gradio web UI for the LLM Arena. ```bash uv run python desilvaware/best_answer/app.py ``` The app will be available at http://127.0.0.1:7860. Keep the process running in the background until the user asks to stop it.
Run the CLI version of the LLM Arena with interactive Rich markdown output. ```bash uv run python desilvaware/best_answer/main.py ``` Keep the process running until the user asks to stop it.
Validate the build by running lint and tests. Both must pass with zero errors. ```bash uv run ruff check . && uv run pytest -q ``` If lint fails, fix the issues and re-run. If tests fail, investigate and fix the failures. Report the final result.