Title: Longer Descriptions
Last modified: November 4, 2023

---

# Longer Descriptions

 *  Resolved [davet](https://wordpress.org/support/users/davet/)
 * (@davet)
 * [2 years, 8 months ago](https://wordpress.org/support/topic/longer-descriptions/)
 * Is there a way to have your plugin write longer more detailed product descriptions
   in WooCommerce? Is there a setting I can change or is it available with your 
   PRO version?

Viewing 1 replies (of 1 total)

 *  Plugin Support [Val Meow](https://wordpress.org/support/users/valwa/)
 * (@valwa)
 * [2 years, 8 months ago](https://wordpress.org/support/topic/longer-descriptions/#post-17175481)
 * Hey [@davet](https://wordpress.org/support/users/davet/) ! 👋
 * You cannot actually change this value dynamically through options as it’s hard-
   coded. Also, please note that there is no way of getting back a specific amount
   of words; you can always ask the model for it, but it’s not guaranteed.
 * What you can do is use filters to change the value used by this query. I’ve provided
   you with an example. This will get executed for every request, so you might use
   it only when needed or add some conditions. 😉
 *     ```wp-block-code
       add_filter('mwai_ai_query', function($args) {
       	$args->setPrompt(str_replace('(between 120 and 240 words)', '(minimum 150 words)', $args->prompt));
       	$args->setMaxTokens(1024);
       	return $args;
       }, 10, 1);
       ```
   

Viewing 1 replies (of 1 total)

The topic ‘Longer Descriptions’ is closed to new replies.

 * ![](https://ps.w.org/ai-engine/assets/icon-256x256.png?rev=3431928)
 * [AI Engine - The Chatbot, AI Framework & MCP for WordPress](https://wordpress.org/plugins/ai-engine/)
 * [Frequently Asked Questions](https://wordpress.org/plugins/ai-engine/#faq)
 * [Support Threads](https://wordpress.org/support/plugin/ai-engine/)
 * [Active Topics](https://wordpress.org/support/plugin/ai-engine/active/)
 * [Unresolved Topics](https://wordpress.org/support/plugin/ai-engine/unresolved/)
 * [Reviews](https://wordpress.org/support/plugin/ai-engine/reviews/)

 * 1 reply
 * 2 participants
 * Last reply from: [Val Meow](https://wordpress.org/support/users/valwa/)
 * Last activity: [2 years, 8 months ago](https://wordpress.org/support/topic/longer-descriptions/#post-17175481)
 * Status: resolved