This catalog gathers all the AI tools integrated in the AI4OS Marketplace. AI tools are listed as git submodules.
To add a tool to the catalog:
git submodule add https://github.com/ai4os/<tool_name>
If the user has a default branch different from master
(eg. main
),
you should add this parameter in the submodule command:
git submodule add -b main https://github.com/ai4os/<tool_name>
To remove a tool from the catalog:
bash utils/remove-submodule.sh <tool_name>
To update the existing tools:
git pull --recurse-submodules
git submodule update --remote --recursive