- Issue created by @scott_euser
- 🇬🇧United Kingdom scott_euser
Getting there; now there is a form element you can just change #textarea to #ai_prompt_tableselect, was thinking two steps needed as a result:
- Update hook to convert whatever user has created as textarea value already; this can be a pretty simple helper class to let devs easily update to this element. Documentation can be very straightforward for this.
- Allow setting a unique prompt usage ID as an attribute so it auto-creates a default/recommended prompt (and maybe event prompt type) that gets deletion protected/edit protected (ie, controlled in code by the module)
E.g.
$form['my_prompt'] = [ '#title' => $this->t('Choose a prompt to run'), '#type' => 'ai_prompt_tableselect', // This is the custom form element to do the heavy lifting. '#prompt_types' => ['test_type'], // These are the allowed types. // Optionally control a default prompt in code. '#default_prompt' => [ 'prompt' => 'My prompt here: {INPUT}', 'id' => 'default_prompt_for_my_prompt', 'type' => 'default_prompt_for_my_prompt_type', ], // Optionally manage new type in code. '#default_type' => [ 'id' => 'default_prompt_for_my_prompt_type', 'variables' => ..., 'tokens' => ..., ], ];
If a developer wants to change default id or type they'd be responsible for cleaning up old auto-created ones.
If they just change the default prompt, as long as the ID remains the same, everything else can be auto-updated. - 🇬🇧United Kingdom scott_euser
Screenshot of implementation example can be found in AI Content Suggestions sub-module (one prompt changed, one not):
Lots of todo's still e.g. around update hooks, plus I am sure many follow-ups like:
- Use @mention style editor?
- Inline form creation of prompt rather than new window and return on save (its fine, but ajax create would be more slick)
- Helpers to insert suggested variables/tokens into the prompt edit form
- Token browser? Not sure... it could be misleading showing plenty of things not available... maybe opt-in for a prompt type
- Views for the list of prompt types + prompts rather than list builder so exposed filters can be added?)
- 🇩🇪Germany marcus_johansson
This is awesome @scott_euser!
I don't have that much to add, the things I can think off, but they are also part of possible future todos (and not that thought through yet):
- Some places will have a lot of prompts, so we might need an ajax pager on the table select.
- Allowing twig (with wrapper around tokens). There are places where conditionals or traversing of the variables in prompt is really nice to have.
- Minor and I might even be wrong that its needed - but if its not working with ECA, have a simpler fallback form element that works in BPMN.io, so it works at least with selecting inside ECA.
- Mention style editor would be awesome as you mention - when working with technical writers/editors etc, they always found tokens to hard to work with.
If you need help with the editor or something else, let me know.
There is another discussion to be had here I think, and that is that we are now adding configurable agents in AI Agents, which is basically a system prompt, some metadata and (optional) tools. You can see the entity here: https://git.drupalcode.org/project/ai_agents/-/blob/configurable-agents/....
The question is if it makes sense to merge efforts here, or just have the agents extend this entity type.
- 🇬🇧United Kingdom scott_euser
Thanks for the feedback! In general status update: I'm working on the inline adding (similar to inline entity form), hopefully will get that in here later this week.
Some places will have a lot of prompts, so we might need an ajax pager on the table select.
Good shout thanks
Allowing twig (with wrapper around tokens). There are places where conditionals or traversing of the variables in prompt is really nice to have.
Sure, do you have an example where you have used twig approach?Minor and I might even be wrong that its needed - but if its not working with ECA, have a simpler fallback form element that works in BPMN.io, so it works at least with selecting inside ECA.
How might I test if it works with ECA? I imagine it should work anywhere given its ultimately just a form element like any other.
Mention style editor would be awesome as you mention - when working with technical writers/editors etc, they always found tokens to hard to work with.
If you need help with the editor or something else, let me know.
Thanks! Maybe the mentions bit could be really helpful once this draft is ready.
we are now adding configurable agents in AI Agents
I think it makes sense to just swap out the textarea in AI Agents with the prompt once this one lands?
- 🇩🇪Germany marcus_johansson
Sure, do you have an example where you have used twig approach?
I have from earlier companies I worked with the Automators, I can't expose there exact prompts, but something like:
Could you write an explanation for each of these rating categories and description of this tweet, how well it aligns with the company statement for {{ company_name }} given below. {% if image %} An image was also given in the tweet, make sure to look at before you take your decision. {% endif %} The following rating categories are important for this content: {% for category in categories %} * {{ category.name }} - {{ category.description }} {% endfor %} The company statement is: {{ company_statements[company_id] }}
How might I test if it works with ECA? I imagine it should work anywhere given its ultimately just a form element like any other.
BPMN.io has limited forms that works currently, specifically around ajax functionality. Autocomplete won't work for instance when I was testing integration with the Automators. And since BPMN.io is the main tool being used for controlling ECA, we should test or set it up so it works. You can see an discussion here for instance: https://drupal.slack.com/archives/C0287U62CSG/p1740848222472139?thread_t...
- 🇬🇧United Kingdom scott_euser
I suppose on the twig side of things, given its just a textarea, the provider of that AI Prompt can decide to render it as twig. Optionally we could add helpers to help them render as twig, like part of prompt manager service.
Its a bit dangerous as evaluating as twig needs to be properly sandboxed I think... unless its maybe an option in the tableselect like 'Use the twig template for this type' (if the AI Prompt Type has opted into that), and if so, the twig template provided by the given module is used + the user can copy that twig template into their theme or own module to override.