drupal / amazeeio_umami_search
Adds Amazee.io AI search to the Umami demo.
1.0.0-beta2
2025-03-25 13:50 UTC
Requires
- drupal/ai_provider_amazeeio: ^1.0.0-beta5
- drupal/core: >=10.4
- drupal/search_api: ^1.38
- league/commonmark: ^2.4
This package is auto-updated.
Last update: 2025-03-25 13:51:29 UTC
README
This recipe will add an AI powered search to the Umami demo to demonstrate the capabilities of AI search.
How to use
Compare the search results between the traditional search (header) and the AI search (sidebar).
Adding to an existing project
Requirements
- An Unami installation.
- The amazee.io AI provider configured.
Installation
The database name can be retreived from the amazee.io AI provider configuration page.
composer require drupal/amazeeio_umami_search
drush recipe ../recipes/amazeeio_umami_search \
--input amazeeio_umami_search.postgres_db_default_database={database}
drush cr
Quick start project with the amazee.io AI provider
composer create-project drupal/recommended-project:^11
composer config minimum-stability dev
composer require drupal/ai_provider_amazeeio drupal/amazeeio_umami_search
drush site:install demo_umami
drush en ai_provider_amazeeio
# Configure the provider via the UI and note the database name.
drush recipe ../recipes/amazeeio_umami_search \
--input amazeeio_umami_search.postgres_db_default_database={database}
drush cr