---
Recommended by @Sid:
---
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.
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:
---
- Offers all current Claude models
- Referral program available
- Create multiple accounts for more daily creations
- Use Opus model with caution (limited capacity)
- 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
- Currently in beta
- Free premium available
- Features Claude v2
- Recently updated, referral trick no longer works
- Offers GPT-4 for free, unlimited use
- Requires asking for English responses
- Limited Claude access
- Small business model
- Bans users referring with temporary emails
- Recently introduced referral system
- Limited usefulness unless referring 10+ per day
---
Recommended by @easportsguy:
---
Llama 3 free
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
Free GPT-4, ask it to reply in English
Free command-r-plus and shitty models
https://docs.double.bot/introduction
Free premium model code assistant, prompt amount limited
Old versions of GPT 3.5 free, others need API
Low quality models free, "best models" need to pay
Open source models free
30 free prompts altogether with premium models per day
Claude Haiku free, other models earned by reward system
GPT-4 and Claude 2 free
GPT-4 free
GPT-4 and GPT-4 Turbo free with plugins
(Multiple premium models)
https://taskade.com/?via=al4bm
(1000 tokens free GPT-4)
GPT-4 free, prompt length limited
https://huggingface.co/spaces/yuntian-deng/ChatGPT4
GPT-4 free
Free GPT-4
20 free prompts GPT-4
https://www.phind.com/search?home=true
10 free prompts GPT-4
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})