| FazBrowse GitHub Viewer | Trending | | Home |
| Tools: [Download Repo ZIP] [Original HTTPS Page] |
| Name | Name | Last commit date | ||
|---|---|---|---|---|
A WordPress plugin that integrates an AI-powered bot into bbPress forums.
This plugin uses WordPress core's AI stack (Abilities + wordpress/wp-ai-client) and supports agentic tool calling for search.
Requirements:
Install Plugin:
# Via WordPress admin
Plugins > Add New > Upload Plugin > Select ai-bot-for-bbpress.zip
# Via WordPress CLI
wp plugin install ai-bot-for-bbpress.zip --activateConfigure AI Credentials:
Configure Bot:
update_option( 'ai_bot_user_id', 2 );
update_option( 'ai_bot_trigger_keywords', 'help,question,support' );update_option( 'ai_bot_forum_restriction', 'selected' );
update_option( 'ai_bot_allowed_forums', array( 12, 15, 18 ) );update_option( 'ai_bot_local_search_limit', 5 );update_option(
'ai_bot_system_prompt',
'You are a helpful WordPress expert specializing in bbPress forums. Provide clear, actionable advice.'
);
update_option(
'ai_bot_custom_prompt',
'Always answer in HTML.'
);update_option( 'ai_bot_temperature', 0.7 );AiBot\\Core\\AiBot
AiBot\\Core\\Bot_Trigger_Service
AiBot\\Core\\Generate_Bot_Response
AiBot\\Core\\System_Prompt_Builder
AiBot\\Core\\Ai_Bot_Abilities
AiBot\\Tools\\Local_Search_Tool
AiBot\\Context\\Content_Interaction_Service
AiBot\\Context\\Database_AgentGPLv2 or later - https://www.gnu.org/licenses/gpl-2.0.html
| Back | FazBrowse Home | New Git URL |