Skip to content

Commit f12d40b

Browse files
authored
Update freqai-running.md
Updated the follower section of the docs to include parameters to make the config schema validate on start up for follow_mode
1 parent 283dab6 commit f12d40b

File tree

1 file changed

+6
-2
lines changed

1 file changed

+6
-2
lines changed

docs/freqai-running.md

+6-2
Original file line numberDiff line numberDiff line change
@@ -161,9 +161,13 @@ You can indicate to the bot that it should not train models, but instead should
161161

162162
```json
163163
"freqai": {
164+
"enabled": true,
164165
"follow_mode": true,
165-
"identifier": "example"
166+
"identifier": "example",
167+
"feature_parameters": {
168+
// leader bots feature_parameters inserted here
169+
},
166170
}
167171
```
168172

169-
In this example, the user has a leader bot with the `"identifier": "example"`. The leader bot is already running or is launched simultaneously with the follower. The follower will load models created by the leader and inference them to obtain predictions instead of training its own models.
173+
In this example, the user has a leader bot with the `"identifier": "example"`. The leader bot is already running or is launched simultaneously with the follower. The follower will load models created by the leader and inference them to obtain predictions instead of training its own models. The user will also need to duplicate the `feature_parameters` parameters from from the leaders freqai configuration file into the freqai section of the followers config.

0 commit comments

Comments
 (0)