Skip to content

ApoAlly Nextcloud Integration#

Configuration#

The AI admin settings are available in Nextcloud under “Artificial Intelligence.” The following options can be configured there:

Enabling Assistant Functions#

  • Enabling assistant functions:

    php occ config:app:set assistant assistant_enabled --value=1
    

  • Enable or disable specific AI functions such as text generation or image generation:

    php occ config:app:set assistant enable_text_generation --value=1
    php occ config:app:set assistant enable_image_generation --value=1
    

Task Processing#

  • List and manage AI tasks:

    php occ taskprocessing:task:list
    

  • Enable or disable specific task types:

    php occ taskprocessing:task-type:set-enabled $TASK_TYPE_ID 1
    

Storage and Management of Generated Content#

  • Set the retention period for generated images:
    php occ config:app:set assistant max_image_generation_idle_time --value=90
    

Chat Configuration#

  • Define user instructions for AI-powered chats: ```bash php occ config:app:set assistant chat_user_instructions –value=”Respond politely and precisely.”