Theme editor

  • New XenForo Released Full Nulled 2.3.10 is available for download now. -> HERE
    New XenForo Released Upgrade Nulled 2.3.10 is available for download now. -> HERE
    XenForo Enhanced Search (XFES) 2.3.10 is available for download now. -> HERE
    XenForo Resource Manager (XFRM) 2.3.10 is available for download now. -> HERE
    XenForo Media Gallery (XFMG) 2.3.10 is available for download now. -> HERE

[021] ChatGPT Framework

| XF 2.3 Add-ons (Free) [021] ChatGPT Framework 2.2.0

No permission to download
Q: I am getting ChatGPT response error: Empty response error. How to fix?

A: Your server is probably blocking outgoing requests to the ChatGPT API.
You can check this by running the following command on the server:
(Paste your OpenAI API token here before run)
curl --head --silent -H "Authorization: Bearer YOUR_API_TOKEN" https://api.openai.com/v1/engines

A successful response will look like this:
Code:
Expand Collapse Copy
HTTP/2 200
date: Thu, 27 Apr 2023 13:59:40 GMT
content-type: application/json
content-length: 8682
openai-version: 2020-10-01
x-request-id: aa777aadfdsaae22c1e867e01111dds1
openai-processing-ms: 67
access-control-allow-origin: *
strict-transport-security: max-age=15724800; includeSubDomains
cf-cache-status: DYNAMIC
server: cloudflare
cf-ray: 2713tfh12316a-AKL
alt-svc: h3=":443"; ma=86400, h3-29=":443"; ma=86400

An unsuccessful one will return nothing or will return an error.
If this is your case, you need to contact the server's system administrator to remove this restriction.
Back
Top