1
0
Fork 0
GPT4FREE/README.md

143 lines
3.1 KiB
Markdown
Raw Normal View History

2023-04-01 20:52:38 +00:00
# Free LLM Api's
2023-04-01 12:53:30 +00:00
2023-04-01 20:52:38 +00:00
**Important:** If you come across any website offering free language models, please create an issue or submit a pull request with the details. We will reverse engineer it and add it to this repository.
2023-04-01 12:55:00 +00:00
2023-04-01 20:52:38 +00:00
This repository contains reverse engineered language models from various sources. Some of these models are already available in the repo, while others are currently being worked on.
2023-04-01 12:55:00 +00:00
2023-04-01 20:52:38 +00:00
### Current Sites (No Authentication / Easy Account Creation)
2023-04-01 12:53:30 +00:00
2023-04-01 20:52:38 +00:00
- [ora.sh](https://ora.sh) (GPT-3.5)
- [nat.dev](https://nat.dev) (Paid now, looking for bypass) (GPT-4/3.5)
- [poe.com](https://poe.com) (GPT-4/3.5)
- [writesonic.com](https://writesonic.com) (GPT-3.5 / Internet)
- [t3nsor.com](https://t3nsor.com) (GPT-3.5)
2023-04-01 12:53:30 +00:00
2023-04-01 20:52:38 +00:00
### Sites with Authentication (Will Reverse Engineer but Need Account Access)
2023-04-01 12:53:30 +00:00
2023-04-01 20:52:38 +00:00
- [chat.openai.com/chat](https://chat.openai.com/chat)
- [bard.google.com](https://bard.google.com)
- [bing.com/chat](https://bing.com/chat)
2023-03-29 19:00:39 +00:00
2023-03-29 20:12:12 +00:00
### `poe` (use like openai pypi package) - gpt-4
2023-03-29 20:10:42 +00:00
Import poe:
```python
import poe
# poe.Account.create
# poe.Completion.create
# poe.StreamCompletion.create
```
Create Token (3-6s)
```python
token = poe.Account.create(logging = True)
print('token', token)
```
Streaming Response
```python
for response in poe.StreamingCompletion.create(model = 'gpt-4',
prompt = 'hello world',
token = token):
print(response.completion.choices[0].text, end="", flush=True)
```
Normal Response:
```python
response = poe.Completion.create(model = 'gpt-4',
prompt = 'hello world',
token = token)
2023-03-29 20:12:12 +00:00
print(response.completion.choices[0].text)
```
2023-03-29 20:10:42 +00:00
2023-03-29 20:12:12 +00:00
### `t3nsor` (use like openai pypi package)
2023-03-29 19:00:39 +00:00
Import t3nsor:
```python
import t3nsor
# t3nsor.Completion.create
# t3nsor.StreamCompletion.create
```
Example Chatbot
```python
messages = []
while True:
user = input('you: ')
t3nsor_cmpl = t3nsor.Completion.create(
prompt = user,
messages = messages
)
print('gpt:', t3nsor_cmpl.completion.choices[0].text)
messages.extend([
{'role': 'user', 'content': user },
{'role': 'assistant', 'content': t3nsor_cmpl.completion.choices[0].text}
])
```
Streaming Response:
```python
for response in t3nsor.StreamCompletion.create(
prompt = 'write python code to reverse a string',
messages = []):
print(response.completion.choices[0].text)
2023-04-01 12:53:30 +00:00
```
2023-04-01 13:06:46 +00:00
### `ora` (use like openai pypi package)
example:
2023-04-01 13:07:17 +00:00
```python
2023-04-01 13:06:46 +00:00
# inport ora
import ora
# create model
model = ora.CompletionModel.create(
system_prompt = 'You are ChatGPT, a large language model trained by OpenAI. Answer as concisely as possible',
description = 'ChatGPT Openai Language Model',
name = 'gpt-3.5')
# init conversation (will give you a conversationId)
init = ora.Completion.create(
model = model,
prompt = 'hello world')
print(init.completion.choices[0].text)
while True:
# pass in conversationId to continue conversation
prompt = input('>>> ')
response = ora.Completion.create(
model = model,
prompt = prompt,
conversationId = init.id)
print(response.completion.choices[0].text)
```