From 6f34c5fd91dec59d4f45daad8b07d5d3d1b55f42 Mon Sep 17 00:00:00 2001 From: TxCorpi0x <6095314+TxCorpi0x@users.noreply.github.com> Date: Wed, 5 Feb 2025 12:31:38 +0300 Subject: [PATCH] docs: add acolyt to create agent bash --- docs/create_agent.sh | 8 ++++++++ 1 file changed, 8 insertions(+) diff --git a/docs/create_agent.sh b/docs/create_agent.sh index b6184e0..8964c1e 100755 --- a/docs/create_agent.sh +++ b/docs/create_agent.sh @@ -85,6 +85,12 @@ ENSO_CONFIG='{ }' ENSO_SKILLS='["get_tokens"]' +# Acolyt settings (optional) +ACOLYT_CONFIG='{ + "api_key": "" +}' +ACOLYT_SKILLS='["ask_gpt"]' + # Twitter settings (optional) # If you don't need to use the twitter skills, you can remove it in TWITTER_SKILLS TWITTER_ENTRYPOINT_ENABLED=false @@ -135,6 +141,8 @@ JSON_DATA=$(cat << EOF "enso_enabled": $ENSO_ENABLED, "enso_config": $ENSO_CONFIG, "enso_skills": $ENSO_SKILLS, + "acolyt_config": $ACOLYT_CONFIG, + "acolyt_skills": $ACOLYT_SKILLS, "twitter_enabled": $TWITTER_ENTRYPOINT_ENABLED, "twitter_entrypoint_enabled": $TWITTER_ENTRYPOINT_ENABLED, "twitter_config": $TWITTER_CONFIG,