---

Recommended by @Sid:

---

https://chat2.oaichat.cc/

free GPT-o1-preview, Claude-3.5-Sonnet, Gemini 1.5 Pro, etc.

---

Recommended by @R:

---

https://rentry.co/freeapiproviders

Discord links to retrieve API keys.

https://web.chatboxai.app/

Web-based or downloadable chat interface to input your API keys.

https://chat.deepseek.com/coder

New open source model, released last month. 236B parameters with a 128k context window. Very capable in maths and coding.

"The developers are most likely wizards or something."

---

Recommended by @Siobhan:

---

textcortext

- Offers all current Claude models

- Referral program available

- Create multiple accounts for more daily creations

- Use Opus model with caution (limited capacity)

1minai

- Credit-based system

- Uses entire chat history as input

- 15,000 credits per day

- Emailnator can be used for referrals

- Best for those specifically wanting Claude 2.1

myshell

- Currently in beta

- Free premium available

- Features Claude v2

sincode

- Recently updated, referral trick no longer works

wrtn

- Offers GPT-4 for free, unlimited use

- Requires asking for English responses

Anakin AI

- Limited Claude access

- Small business model

- Bans users referring with temporary emails

chatbotsplace

- Recently introduced referral system

- Limited usefulness unless referring 10+ per day

---

Recommended by @easportsguy:

---

https://www.llama2.ai/

Llama 3 free

https://llama.replicate.dev/

Free Llama 3

https://capp-gpt-ui.yellowbeach-75fa47b2.westus.azurecontainerapps.io/

Free GPT-4

https://llmschat.streamlit.app/

Free GPT-4 Turbo and other models

https://wrtn.ai/

Free GPT-4, ask it to reply in English

https://huggingface.co/chat/

Free command-r-plus and shitty models

https://docs.double.bot/introduction

Free premium model code assistant, prompt amount limited

https://dify.ai/

Old versions of GPT 3.5 free, others need API

https://sdk.vercel.ai/

Low quality models free, "best models" need to pay

https://labs.perplexity.ai/

Open source models free

https://sider.ai/

30 free prompts altogether with premium models per day

https://chatbotsplace.com/

Claude Haiku free, other models earned by reward system

https://chat.forefront.ai/

GPT-4 and Claude 2 free

https://chat.3211000.xyz/

GPT-4 free

https://www.coze.com/

GPT-4 and GPT-4 Turbo free with plugins

https://chat.lmsys.org/

(Multiple premium models)

https://taskade.com/?via=al4bm

(1000 tokens free GPT-4)

https://chatgpt4online.org/

GPT-4 free, prompt length limited

https://huggingface.co/spaces/yuntian-deng/ChatGPT4

GPT-4 free

https://app.myshell.ai/chat

Free GPT-4

https://www.forefront.ai/

20 free prompts GPT-4

https://www.phind.com/search?home=true

10 free prompts GPT-4

https://anakin.ai/?r=LnqTGG1y

130 credits, 30 each day that are non-accummulative

import requests

import json

# Define the API endpoint

url = '[INSERT FILE PATH]'

# Define the headers

headers = {

'Authorization': 'Bearer qtm-[INSERT API KEY]',

'Content-Type': 'application/json'

}

# Initialize the conversation

messages = [

{"role": "system", "content": "[INSERT SYSTEM PROMPT]"}

]

# Function to send a message to the API

def send_message(message):

messages.append({"role": "user", "content": message})

data = {

"key": "value",

"model": "claude-3.5-sonnet",

"messages": messages

}

response = requests.post(url, headers=headers, data=json.dumps(data))

if response.status_code == 200:

return response.json()

else:

print(f"Error: {response.status_code}")

return None

# Main chat loop

while True:

user_input = input("You: ")

if user_input.lower() in ["exit", "quit"]:

break

response = sendmessage(userinput)

if response:

assistant_message = response['choices'][0]['message']['content']

print(f"Assistant: {assistant_message}")

messages.append({"role": "assistant", "content": assistant_message})