You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Added:
- PyPI distribution: `pip install quorum-cli && quorum` works out of the box
- GitHub Actions workflow for automated PyPI publishing (Trusted Publishing)
- Frontend bundled into wheel automatically
Fixed:
- Startup spinner now shows immediately on all platforms
- /help and /status modals can be closed with ESC key
Changed:
- Simplified launcher scripts with signal file coordination
- Frontend signals readiness for seamless spinner-to-UI transition
Copy file name to clipboardExpand all lines: README.md
+18-3Lines changed: 18 additions & 3 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -19,15 +19,30 @@
19
19
20
20
Multi-agent AI discussion system for structured debates. Ask multiple AI models (Claude, GPT, Gemini, Grok, and local models via Ollama) a question and let them debate, brainstorm, or deliberate using seven different methods.
21
21
22
-
## Requirements
22
+
## Quick Install (pip)
23
+
24
+
```bash
25
+
pip install quorum-cli
26
+
quorum
27
+
```
28
+
29
+
That's it! Configure your API keys on first run or create a `.env` file.
30
+
31
+
**Requirements:** Python 3.11+, Node.js 18+
32
+
33
+
---
34
+
35
+
## Development Installation
36
+
37
+
For contributors or those who want the latest changes:
38
+
39
+
### Requirements
23
40
24
41
- Python 3.11 or higher
25
42
- Node.js 18 or higher
26
43
- npm
27
44
-[uv](https://github.com/astral-sh/uv) (auto-installed if missing)
0 commit comments