FREE chatgpt4 and chatgpt3.5 [no api key.]

Please let me know your thoughts so far I have been running it for few weeks and its working flawlessly.
Not sure yet tbh. I just started a new site (or let us say restarted a very old one) and it is semi automated since I have to enter the prompt (prepared already for me by the script) manually.

This is where things like this tool could come handy. I will give the tool a try in the next few weeks. We will see. ;)
 
Not sure yet tbh. I just started a new site (or let us say restarted a very old one) and it is semi automated since I have to enter the prompt (prepared already for me by the script) manually.

This is where things like this tool could come handy. I will give the tool a try in the next few weeks. We will see. ;)
exactly running this script on a server and then creating a small api hooking it up to your app, could potential do magic, the sky is the limit at the moment, I'm generating so many automated tools thanks to this free source. As I mentioned before, just make sure you get it setup before is taken down.
 
I believe they someone updated the providers I believe forefront api is now available, that's crazy that's a full chatgpt 4 + models experience...
 
I successfully deployed it, and it seems to be linked to a service from you.com, but the speed is very slow and it cannot understand the context of the question, so when I ask a new question, the previous one is lost.
 
Can you provide more detailed deployment instructions?
 
I successfully deployed it, and it seems to be linked to a service from you.com, but the speed is very slow and it cannot understand the context of the question, so when I ask a new question, the previous one is lost.
You can try using a different reversed API, they have few in the system, I prefer using the one from forefront.
 
Can you provide more detailed deployment instructions?
Well the simplest form of installation is using docker. Install docker on windows or Linux, and then clone the repo using git clone or just download the repository as zip and extract it and goto gpt4free folder and run the below commands.

git clone https://github.com/xtekky/gpt4free

cd gpt4free

1) docker build -t gpt4free:latest .

2) docker run -p 80:8501 gpt4free:latest

If you want it run on a different port than 80, change accordingly. It will display what url you need to use to access after step 2. By default, you.com A.I will be available. It won’t work if you are using a VPN or running it in a server that has datacenter IP. In that case you can try the gpt4free/aiassist one. Yet to try the forefront one.
 
Well the simplest form of installation is using docker. Install docker on windows or Linux, and then clone the repo using git clone or just download the repository as zip and extract it and goto gpt4free folder and run the below commands.

git clone https://github.com/xtekky/gpt4free

cd gpt4free

1) docker build -t gpt4free:latest .

2) docker run -p 80:8501 gpt4free:latest

If you want it run on a different port than 80, change accordingly. It will display what url you need to use to access after step 2. By default, you.com A.I will be available. It won’t work if you are using a VPN or running it in a server that has datacenter IP. In that case you can try the gpt4free/aiassist one. Yet to try the forefront one.
I saw there a docker compose file, which means you don’t even have to build the docker container manually.

Just doing:

docker compose up -d
or (depending on the docker compose installation type)
docker-compose up -d

will do the job as well.
 
you.com works fine, but quora doesn't work, prompt. An error occurred: 'gpt-4'. Please make sure you are using a valid cloudflare clearance token and user agent.

Forefront heard that it is not gpt4 now
 
Amazing, well done, let me know if you have any queries
This is great, thank you for sharing. Python's website has 2 latest versions of the same date, 3.10.11 and 3.11.3. Which one are you using?
 
Well the simplest form of installation is using docker. Install docker on windows or Linux, and then clone the repo using git clone or just download the repository as zip and extract it and goto gpt4free folder and run the below commands.

git clone https://github.com/xtekky/gpt4free

cd gpt4free

1) docker build -t gpt4free:latest .

2) docker run -p 80:8501 gpt4free:latest

If you want it run on a different port than 80, change accordingly. It will display what url you need to use to access after step 2. By default, you.com A.I will be available. It won’t work if you are using a VPN or running it in a server that has datacenter IP. In that case you can try the gpt4free/aiassist one. Yet to try the forefront one.
Follow this.
I saw there a docker compose file, which means you don’t even have to build the docker container manually.

Just doing:

docker compose up -d
or (depending on the docker compose installation type)
docker-compose up -d

will do the job as well.
or this...
amazing thank you ! question is: how long will it last ? :)
it will last for a long time, the guy behind the project is reversing engineering other platforms that use the chatgpt api.
 
I saw there a docker compose file, which means you don’t even have to build the docker container manually.

Just doing:

docker compose up -d
or (depending on the docker compose installation type)
docker-compose up -d

will do the job as well.
I followed your instructions thinking that I can't be so moronic as to fail with simple steps , and instead I am just demented .
It works almost everything but eventually it stops reporting me this error : failed to solve : process "/bin/sh -c pip install --upgrade pip && pip install -r /tmp/requirements.txt && rm /tmp/requirements.txt" did not complete successfully : exit code: 1
Would you care to explain as if I were a two year old child what I need to do to fix the problem with the requirements.tx file ?
I appreciate it very much .
 
I followed your instructions thinking that I can't be so moronic as to fail with simple steps , and instead I am just demented .
It works almost everything but eventually it stops reporting me this error : failed to solve : process "/bin/sh -c pip install --upgrade pip && pip install -r /tmp/requirements.txt && rm /tmp/requirements.txt" did not complete successfully : exit code: 1
Would you care to explain as if I were a two year old child what I need to do to fix the problem with the requirements.tx file ?
I appreciate it very much .
Hmmm probably because of an incompatible processor or something. I am on apple silicon. I tried running the container and it worked without any hassle.
Screenshot 2023-05-24 at 6.30.47 PM.png

What processor are you using? Also what OS? What's your docker and docker-compose version?


ps the whole point of using a dockerfile is to avoid having to install python, and the requirements.txt manually. Your command is correct.
 
Back
Top