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,