Vector DB explorer fatal error

Created on 27 November 2024, 4 months ago

Problem/Motivation

This is a continuation of https://www.drupal.org/project/ai/issues/3481121 πŸ› Fatal error in AI API Explorer module Active

Steps to reproduce

Visit admin/config/ai/explorers/vector-db-search when you don't have the requirements like the AI search module.

Proposed resolution

Since the code appears to be a moving target, this is the change I made to the try/catch block in VectorDbGenerationForm::buildForm. Patch or MR on request.

    try {
      foreach ($this->entityTypeManager->getStorage('search_api_index')->loadMultiple() as $index) {
        $options[$index->id()] = $index->label() . ' (' . $index->id() . ')';
      };
      // Show a warning if empty.
      if (empty($options)) {
        $form = [
          'markup' => [
            '#markup' => $this->t('You need to create a search api index before you can use this Explorer.'),
          ],
        ];

        return $form;
      }
    }
    catch (\Exception $e) {
        $this->getLogger('ai_api_explorer')->error('VectorDb could not be initialized: @error', ['@error' => $e->getMessage()]);

        $form = [
          'markup' => [
            '#markup' => $this->t('You need to install the AI Search module and setup a vector database provider and create an index before you can use this Explorer.'),
          ],
        ];

        return $form;
    }
πŸ› Bug report
Status

Active

Version

1.0

Component

Other Submodules

Created by

πŸ‡ΊπŸ‡ΈUnited States TolstoyDotCom L.A.

Live updates comments and jobs are added and updated live.
Sign in to follow issues

Comments & Activities

Production build 0.71.5 2024