summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorBagus Indrayana <bagusindrayanaindo@gmail.com>2023-08-17 15:09:35 +0200
committerBagus Indrayana <bagusindrayanaindo@gmail.com>2023-08-17 15:09:35 +0200
commitcbaad15bc29132ea076a3e3fa7bb6298ae69c628 (patch)
tree0b38a898d056d0182cec309a02cee8ad83707a5a
parent~ | small fixes & new pypi version | v-0.0.1.9 (diff)
downloadgpt4free-cbaad15bc29132ea076a3e3fa7bb6298ae69c628.tar
gpt4free-cbaad15bc29132ea076a3e3fa7bb6298ae69c628.tar.gz
gpt4free-cbaad15bc29132ea076a3e3fa7bb6298ae69c628.tar.bz2
gpt4free-cbaad15bc29132ea076a3e3fa7bb6298ae69c628.tar.lz
gpt4free-cbaad15bc29132ea076a3e3fa7bb6298ae69c628.tar.xz
gpt4free-cbaad15bc29132ea076a3e3fa7bb6298ae69c628.tar.zst
gpt4free-cbaad15bc29132ea076a3e3fa7bb6298ae69c628.zip
-rw-r--r--.vscode/settings.json6
-rw-r--r--g4f/Provider/Providers/V50.py43
-rw-r--r--g4f/Provider/__init__.py1
3 files changed, 50 insertions, 0 deletions
diff --git a/.vscode/settings.json b/.vscode/settings.json
new file mode 100644
index 00000000..d99f2f30
--- /dev/null
+++ b/.vscode/settings.json
@@ -0,0 +1,6 @@
+{
+ "[python]": {
+ "editor.defaultFormatter": "ms-python.black-formatter"
+ },
+ "python.formatting.provider": "none"
+} \ No newline at end of file
diff --git a/g4f/Provider/Providers/V50.py b/g4f/Provider/Providers/V50.py
new file mode 100644
index 00000000..17b26be9
--- /dev/null
+++ b/g4f/Provider/Providers/V50.py
@@ -0,0 +1,43 @@
+import os, uuid, requests
+from ...typing import get_type_hints
+url = 'https://p5.v50.ltd'
+model = ['gpt-3.5-turbo','gpt-3.5-turbo-16k']
+supports_stream = False
+needs_auth = False
+working = True
+
+def _create_completion(model: str, messages: list, stream: bool, temperature: float = 0.7, **kwargs):
+
+ conversation = ''
+ for message in messages:
+ conversation += '%s: %s\n' % (message['role'], message['content'])
+
+ conversation += 'assistant: '
+ payload = {
+ "prompt": conversation,
+ "options": {},
+ "systemMessage": ".",
+ "temperature": temperature,
+ "top_p": 1,
+ "model": model,
+ "user": str(uuid.uuid4())
+ }
+ headers = {
+ 'authority': 'p5.v50.ltd',
+ 'accept': 'application/json, text/plain, */*',
+ 'accept-language': 'id-ID,id;q=0.9,en-US;q=0.8,en;q=0.7',
+ 'content-type': 'application/json',
+ 'origin': 'https://p5.v50.ltd',
+ 'referer': 'https://p5.v50.ltd/',
+ 'sec-ch-ua-platform': '"Windows"',
+ 'sec-fetch-dest': 'empty',
+ 'sec-fetch-mode': 'cors',
+ 'sec-fetch-site': 'same-origin',
+ 'user-agent': 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/116.0.0.0 Safari/537.36'
+ }
+ response = requests.post("https://p5.v50.ltd/api/chat-process",
+ json=payload, headers=headers, stream=True)
+ yield response.text
+
+params = f'g4f.Providers.{os.path.basename(__file__)[:-3]} supports: ' + \
+ '(%s)' % ', '.join([f"{name}: {get_type_hints(_create_completion)[name].__name__}" for name in _create_completion.__code__.co_varnames[:_create_completion.__code__.co_argcount]]) \ No newline at end of file
diff --git a/g4f/Provider/__init__.py b/g4f/Provider/__init__.py
index 9d0442d0..9f1d65f3 100644
--- a/g4f/Provider/__init__.py
+++ b/g4f/Provider/__init__.py
@@ -25,6 +25,7 @@ from .Providers import (
ChatgptAi,
opchatgpts,
Raycast,
+ V50,
)
Palm = Bard