Files
NeuroDock/settings.gradle
Zacharias f6610777ae
build / build (push) Has been cancelled
refactor: redesign plugin system and enhance message handling
- Move plugin and tool-related classes to a dedicated `Plugin-API` module.
- Introduce a new plugin lifecycle (`onInit`, `onEnable`, `onDisable`) and a more robust `Tool` API.
- Refactor `Core` to use `PrintAdvanceMessageHandler` for improved handling of assistant messages, tool responses, and errors.
- Rename `PluginLoader` to `Loader` and migrate it to `me.zacharias.chat.plugin.loader`.
- Update build configurations and Java toolchains across modules.
- Clean up obsolete plugin annotations and interfaces in the `Core` module.
2026-05-26 16:28:02 +02:00

16 lines
504 B
Groovy

rootProject.name = 'neurodock'
include 'API', 'Core', 'Display', 'launcher'
include 'MALAPITool'
/**
* LEGAL WARNING:
* This module contains code that scrapes lyrics from Genius.com, which is against Genius API's Terms of Service.
*
* If you wish to avoid any potential legal issues, comment out or remove the line below and ensure no modules depend on this.
* The core NeuroDock system will still function without this module.
*/
include 'GeniusAPI'
include 'WikipediaTool'
include 'Plugin-API'