Skip to content
This repository was archived by the owner on May 29, 2025. It is now read-only.

Commit d8fb740

Browse files
Merge pull request #67 from valory-xyz/chore/missing-details
Add missing details
2 parents fe9190c + 0effb54 commit d8fb740

File tree

3 files changed

+4
-3
lines changed

3 files changed

+4
-3
lines changed

README.md

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -163,10 +163,12 @@ It can easily be done, by removing this method call,
163163
[here](https://github.com/valory-xyz/trader-quickstart/blob/0f093ebbf0857b8484a017912c3992f00fbe1a29/run_service.sh#L698),
164164
in order to set your own custom warm start.
165165
Setting your own custom weights can be done by editing the corresponding files in `.trader_runner`.
166-
Moreover, you may store your current policy as a backup before editing those files, using the following command:
166+
Moreover, you may store your current policy as a backup before editing those files, using the following set of commands:
167167

168168
```shell
169169
cp ".trader_runner/available_tools_store.json" ".trader_runner/available_tools_store_$(date +"%d-%m-%Y")".json
170+
cp ".trader_runner/policy_store.json" ".trader_runner/policy_store_$(date +"%d-%m-%Y")".json
171+
cp ".trader_runner/utilized_tools.json" ".trader_runner/utilized_tools_$(date +"%d-%m-%Y")".json
170172
```
171173

172174
##### Tool selection

run_service.sh

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -651,7 +651,6 @@ export BET_AMOUNT_PER_THRESHOLD_090=80000000000000000
651651
export BET_AMOUNT_PER_THRESHOLD_100=100000000000000000
652652
export BET_THRESHOLD=5000000000000000
653653
export PROMPT_TEMPLATE="Please take over the role of a Data Scientist to evaluate the given question. With the given question \"@{question}\" and the \`yes\` option represented by \`@{yes}\` and the \`no\` option represented by \`@{no}\`, what are the respective probabilities of \`p_yes\` and \`p_no\` occurring?"
654-
export REDEEM_MARGIN_DAYS=24
655654

656655
service_dir="trader_service"
657656
build_dir="abci_build"

scripts/fix_interrupted_service_update.sh

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -228,7 +228,7 @@ fi
228228
directory="trader"
229229
# This is a tested version that works well.
230230
# Feel free to replace this with a different version of the repo, but be careful as there might be breaking changes
231-
service_version="v0.8.0"
231+
service_version="v0.8.1"
232232
service_repo=https://github.com/valory-xyz/$directory.git
233233
echo "Cloning the $directory repo..."
234234
git clone --depth 1 --branch $service_version $service_repo

0 commit comments

Comments
 (0)