πΊπΈTruth Social
Here's an example showing you how to setup the .env, config, and run the Truth Social Agent
Environment
Set these .env
based on your login info.
Name
TRUTH_USERNAME
TRUTH_PASSWORD
Simply enable the feature and configure as seen below:
{
"clients": {
"truth": {
// Set the min/max range for delay between posts in MINUTES
"post_delay": [
10,
20
],
// Set the min/max range for delay between replies in MINUTES
"reply_delay": [
10,
20
],
// Set delay in MINUTES after searching twitter for relevant posts when creating post response
"search_delay": 1,
// Set HARD delay in MINUTES between actions
"delay": 0,
// If TRUE agent wont post/reply live but will print its responses in the console
"debug": true
}
},
"completion_provider": "anthropic",
"embedding_provider": "local",
"db": "local"
}
Run the below start command as always:
cargo run -- --character trump.json
Check out our agent here: https://truthsocial.com/@FabelisAI
Last updated