theb.ai
This commit is contained in:
@@ -38,8 +38,13 @@ Please note the following:
|
||||
| **Copyright** | Copyright information | [](#copyright) | - |
|
||||
| **Star History** | Star History | [](#star-history) | - |
|
||||
| **Usage Examples** | | | |
|
||||
|
||||
| `theb` | Example usage for theb (gpt-3.5) | [](./theb/README.md) |  | | |
|
||||
|
||||
| `forefront` | Example usage for forefront (gpt-4) | [](./forefront/README.md) |  | | |
|
||||
|
||||
| `quora (poe)` | Example usage for quora | [](./quora/README.md) |  | |
|
||||
|
||||
| `you` | Example usage for you | [](./you/README.md) |  |
|
||||
| **Try it Out** | | | |
|
||||
| Google Colab Jupyter Notebook | Example usage for gpt4free | [](https://colab.research.google.com/github/DanielShemesh/gpt4free-colab/blob/main/gpt4free.ipynb) | - |
|
||||
|
||||
11
theb/README.md
Normal file
11
theb/README.md
Normal file
@@ -0,0 +1,11 @@
|
||||
### Example: `theb` (use like openai pypi package) <a name="example-theb"></a>
|
||||
|
||||
|
||||
```python
|
||||
# import library
|
||||
import theb
|
||||
|
||||
# simple streaming completion
|
||||
for token in theb.Completion.create('hello world'):
|
||||
print(token, end='', flush=True)
|
||||
```
|
||||
@@ -1,11 +1,9 @@
|
||||
from re import findall
|
||||
from json import loads
|
||||
from queue import Queue, Empty
|
||||
from re import findall
|
||||
from threading import Thread
|
||||
|
||||
from curl_cffi import requests
|
||||
|
||||
|
||||
class Completion:
|
||||
# experimental
|
||||
part1 = '{"role":"assistant","id":"chatcmpl'
|
||||
@@ -16,7 +14,7 @@ class Completion:
|
||||
message_queue = Queue()
|
||||
stream_completed = False
|
||||
|
||||
def request():
|
||||
def request(prompt: str):
|
||||
headers = {
|
||||
'authority': 'chatbot.theb.ai',
|
||||
'content-type': 'application/json',
|
||||
@@ -25,9 +23,9 @@ class Completion:
|
||||
}
|
||||
|
||||
requests.post('https://chatbot.theb.ai/api/chat-process', headers=headers,
|
||||
content_callback=Completion.handle_stream_response,
|
||||
json={
|
||||
'prompt': 'hello world',
|
||||
content_callback = Completion.handle_stream_response,
|
||||
json = {
|
||||
'prompt': prompt,
|
||||
'options': {}
|
||||
}
|
||||
)
|
||||
@@ -35,14 +33,14 @@ class Completion:
|
||||
Completion.stream_completed = True
|
||||
|
||||
@staticmethod
|
||||
def create():
|
||||
Thread(target=Completion.request).start()
|
||||
def create(prompt: str):
|
||||
Thread(target=Completion.request, args=[prompt]).start()
|
||||
|
||||
while Completion.stream_completed != True or not Completion.message_queue.empty():
|
||||
try:
|
||||
message = Completion.message_queue.get(timeout=0.01)
|
||||
for message in findall(Completion.regex, message):
|
||||
yield loads(Completion.part1 + message + Completion.part2)
|
||||
yield loads(Completion.part1 + message + Completion.part2)['delta']
|
||||
|
||||
except Empty:
|
||||
pass
|
||||
@@ -50,13 +48,3 @@ class Completion:
|
||||
@staticmethod
|
||||
def handle_stream_response(response):
|
||||
Completion.message_queue.put(response.decode())
|
||||
|
||||
|
||||
def start():
|
||||
for message in Completion.create():
|
||||
yield message['delta']
|
||||
|
||||
|
||||
if __name__ == '__main__':
|
||||
for message in start():
|
||||
print(message)
|
||||
4
theb/theb_test.py
Normal file
4
theb/theb_test.py
Normal file
@@ -0,0 +1,4 @@
|
||||
import theb
|
||||
|
||||
for token in theb.Completion.create('hello world'):
|
||||
print(token, end='', flush=True)
|
||||
@@ -1,3 +0,0 @@
|
||||
https://chatbot.theb.ai/
|
||||
to do:
|
||||
- code refractoring
|
||||
Reference in New Issue
Block a user