Problem/Motivation
Currently, the generate()
function in our contributed Drupal module does not allow for the use of custom prompts. It always relies on the prompt stored in the configuration file, which limits its flexibility when other parts of the code need to supply custom AI prompts.
We need to update the function so that it accepts an optional custom_prompt
parameter. When a custom prompt is provided, it should override the configured prompt; otherwise, the module should continue using the prompt defined in the configuration.
Steps to reproduce
- Call the
generate()
function without providing a custom prompt.
- Observe that it uses the prompt from the configuration.
- Attempt to use a custom prompt by passing a new parameter (which is currently not accepted) and notice that the functionality is not supported.
Proposed resolution
Modify the generate()
function to include a new optional parameter $custom_prompt
(defaulting to an empty string). Adjust the prompt rendering logic so that:
- If
$custom_prompt
is provided (non-empty), it is used to generate the $prompt_text
.
- If
$custom_prompt
is empty, the function falls back to the prompt from the configuration.
This change will allow other parts of the code to pass in custom prompts and improve the overall flexibility of the module.
Remaining tasks
- Review and test the modified function to ensure it works correctly with and without the custom prompt.
- Create a patch file containing the changes.
- Apply the patch in the appropriate repository branch.
- Update documentation if necessary to reflect the new parameter and functionality.
User interface changes
No changes to the user interface are expected with this update.
API changes
The function signature of generate()
is updated to include a new parameter:
public function generate(File $file = NULL, $lang_code = 'en', $custom_prompt = '')
This is an API change that should be noted for any integrations relying on this function.
Data model changes
There are no changes to the data model with this update.