summaryrefslogtreecommitdiffstats
path: root/README.md
blob: 1ae8a389d36d40f34d1825b1cc8e0e49abaad651 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
# Free LLM Api's

**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.

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.

### Current Sites (No Authentication / Easy Account Creation)

- [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)

### Sites with Authentication (Will Reverse Engineer but Need Account Access)

- [chat.openai.com/chat](https://chat.openai.com/chat)
- [bard.google.com](https://bard.google.com)
- [bing.com/chat](https://bing.com/chat)

### `poe` (use like openai pypi package) - gpt-4

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)

print(response.completion.choices[0].text)    
```     






### `t3nsor` (use like openai pypi package)   

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)
```

### `ora` (use like openai pypi package)   

example: 
```python
# 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)
```