Forum Copilot - Automatic Spam and NSFW Image Detection with OpenAI ChatGPT

Forum Copilot - Automatic Spam and NSFW Image Detection with OpenAI ChatGPT 1.0.1

No permission to download
I am not talking about spam; I would like you to create an add-on that could detect NSFW images and blur the image of attachments or screenshots, profile pictures, and resource icons only. Because everyone can check their own profile settings > Content Blocking,

Choose what type of content you want to block on the forum site.

Adult content:
Yes / No

Show adult content: Yes / No

Blur adult attachment images: Yes / No

Blur adult resource images: Yes / No

Blur adult media images: Yes / No


Yes it's too expensive, if this is not possible then how about include category and resource list to NSFW add-on and user group view permission?
Hey @forumcopilot , it's been 3 months, will you make this add-on as possible?
 
Any SQL to use to calculate monthly price for GPT-4o API?
The price should be fair minimal unless you are running an extremely large forum and scanning every single post. This Add-on only change content for new members up until they made 5 posts.
 
This should be paid add-on with the following features included:
  • select whether to scan all posts or new members' posts until they made X posts
  • enable/disable scanning attachments
  • include/exclude user groups to check
  • include/exclude forums to check
  • customize the prompt
  • remove BB codes from text sent using API
  • remove quoted text from text sent using API
  • improve customer support response time
  • calculate approximate cost for GPT-4o API
If I'm not missing something, based on the fact that 1 token ~= 4 chars and gpt-4o currently costs $2.50 / 1M input tokens, the approximate API cost can be calculated using the following query:
SQL:
SELECT
    SUM(LENGTH(REGEXP_REPLACE(message, '(?is)\\[quote.*\\[\\/quote\\]', '')) / 4) * 2.50 / 1000000 AS price_per_month
FROM
    xf_post
WHERE
    post_date > UNIX_TIMESTAMP(DATE_SUB(NOW(), INTERVAL 30 DAY));
 
Last edited:
I think it is possible to do, but I am not sure if we have enough resources to do it for free. It is something people willing to pay as a paid add-on?
Add blurry for resource icon and xfrm overview, user preference NSFW settings are very easy and without JS needed

I made this on XenForo 2.3.0 and also 2.2.16 works fine, but this isn't finished 100%
1732739792216.webp
 
Back
Top Bottom