feat: allow agents to use complex instructions and search for information
Tests / test (macos-latest, 3.10) (push) Waiting to run
Tests / test (macos-latest, 3.11) (push) Waiting to run
Tests / test (macos-latest, 3.12) (push) Waiting to run
Tests / test (windows-latest, 3.10) (push) Waiting to run
Tests / test (windows-latest, 3.11) (push) Waiting to run
Tests / test (windows-latest, 3.12) (push) Waiting to run
Lint / lint (push) Failing after 26s
Tests / test (ubuntu-latest, 3.10) (push) Failing after 43s
Tests / test (ubuntu-latest, 3.11) (push) Failing after 41s
Tests / test (ubuntu-latest, 3.12) (push) Failing after 1m8s

feat: save user messages to improve agent learning
maintenance: update version to 1.31.0
refactor: use pathlib for context file path
maintenance: use $(HOME) instead of /home/retoor/bin in Makefile
This commit is contained in:
2025-11-08 02:35:14 +01:00
parent 26b4797577
commit b90ae1b9c3
4 changed files with 16 additions and 6 deletions
+3 -3
View File
@@ -72,9 +72,9 @@ serve:
implode: build
if [ -d /home/retoor/bin ]; then \
python -m rp.implode rp.py -o /home/retoor/bin/rp; \
chmod +x /home/retoor/bin/rp; \
if [ -d $(HOME)/bin ]; then \
python -m rp.implode rp.py -o $(HOME)/bin/rp; \
chmod +x $(HOME)/bin/rp; \
fi
.DEFAULT_GOAL := help