Skip to content

Commit 24f8a76

Browse files
committed
docs: pip install + git clone use the reflective branch (#120)
The default branch is main, but reflective is where new work lands first. Users following the README from a fresh clone of main got an older Nous than what's actively being developed. Also documents the optional [sdk] extra for --agent sdk users.
1 parent 322f851 commit 24f8a76

1 file changed

Lines changed: 10 additions & 2 deletions

File tree

README.md

Lines changed: 10 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -80,17 +80,25 @@ If you're using Anthropic directly via a LiteLLM proxy, point both vars at the p
8080
### 1. Install Nous
8181

8282
```bash
83-
pip install "git+https://github.com/AI-native-Systems-Research/agentic-strategy-evolution.git"
83+
pip install "git+https://github.com/AI-native-Systems-Research/agentic-strategy-evolution.git@reflective"
8484
```
8585

86+
`reflective` is the active integration branch — that's where new work lands first. `main` lags slightly behind. To pin to a release, replace `@reflective` with a tag (`@v0.2.0`).
87+
8688
For development (editable install with test dependencies):
8789

8890
```bash
89-
git clone https://github.com/AI-native-Systems-Research/agentic-strategy-evolution.git
91+
git clone -b reflective https://github.com/AI-native-Systems-Research/agentic-strategy-evolution.git
9092
cd agentic-strategy-evolution
9193
pip install -e ".[dev]"
9294
```
9395

96+
For the SDK-based dispatcher (`--agent sdk`, see `docs/architecture.md`), also install the optional `[sdk]` extra:
97+
98+
```bash
99+
pip install -e ".[dev,sdk]"
100+
```
101+
94102
### 2. Configure models
95103

96104
Two LLM calls per iteration, both via `claude -p`:

0 commit comments

Comments
 (0)