mirror of
https://github.com/xtekky/gpt4free.git
synced 2024-12-25 04:01:52 +03:00
commit
388a54357e
@ -187,6 +187,7 @@ for token in chat_completion:
|
|||||||
| [b.ai-huan.xyz](https://b.ai-huan.xyz) | `g4f.Provider.BingHuan` | ✔️ | ✔️ | ✔️ | ![Inactive](https://img.shields.io/badge/Inactive-red) | ❌ |
|
| [b.ai-huan.xyz](https://b.ai-huan.xyz) | `g4f.Provider.BingHuan` | ✔️ | ✔️ | ✔️ | ![Inactive](https://img.shields.io/badge/Inactive-red) | ❌ |
|
||||||
| [wewordle.org](https://wewordle.org/gptapi/v1/android/turbo) | `g4f.Provider.Wewordle` | ✔️ | ❌ | ❌ | ![Inactive](https://img.shields.io/badge/Inactive-red) | ❌ |
|
| [wewordle.org](https://wewordle.org/gptapi/v1/android/turbo) | `g4f.Provider.Wewordle` | ✔️ | ❌ | ❌ | ![Inactive](https://img.shields.io/badge/Inactive-red) | ❌ |
|
||||||
| [chatgpt.ai](https://chatgpt.ai/gpt-4/) | `g4f.Provider.ChatgptAi` | ❌ | ✔️ | ❌ | ![Active](https://img.shields.io/badge/Active-brightgreen) | ❌ |
|
| [chatgpt.ai](https://chatgpt.ai/gpt-4/) | `g4f.Provider.ChatgptAi` | ❌ | ✔️ | ❌ | ![Active](https://img.shields.io/badge/Active-brightgreen) | ❌ |
|
||||||
|
| [opchatgpts.net](https://opchatgpts.net) | `g4f.Provider.opchatgpts` | ✔️ | ❌ | ❌ | ![Active](https://img.shields.io/badge/Active-brightgreen) | ❌ |
|
||||||
|
|
||||||
|
|
||||||
### Other Models
|
### Other Models
|
||||||
|
42
g4f/Provider/Providers/opchatgpts.py
Normal file
42
g4f/Provider/Providers/opchatgpts.py
Normal file
@ -0,0 +1,42 @@
|
|||||||
|
import os
|
||||||
|
import requests
|
||||||
|
from ...typing import sha256, Dict, get_type_hints
|
||||||
|
|
||||||
|
url = 'https://opchatgpts.net'
|
||||||
|
model = ['gpt-3.5-turbo']
|
||||||
|
supports_stream = False
|
||||||
|
needs_auth = False
|
||||||
|
working = True
|
||||||
|
|
||||||
|
def _create_completion(model: str, messages: list, stream: bool = False, temperature: float = 0.8, max_tokens: int = 1024, system_prompt: str = "Converse as if you were an AI assistant. Be friendly, creative.", **kwargs):
|
||||||
|
|
||||||
|
data = {
|
||||||
|
'env': 'chatbot',
|
||||||
|
'session': 'N/A',
|
||||||
|
'prompt': "\n",
|
||||||
|
'context': system_prompt,
|
||||||
|
'messages': messages,
|
||||||
|
'newMessage': messages[::-1][0]["content"],
|
||||||
|
'userName': '<div class="mwai-name-text">User:</div>',
|
||||||
|
'aiName': '<div class="mwai-name-text">AI:</div>',
|
||||||
|
'model': 'gpt-3.5-turbo',
|
||||||
|
'temperature': temperature,
|
||||||
|
'maxTokens': max_tokens,
|
||||||
|
'maxResults': 1,
|
||||||
|
'apiKey': '',
|
||||||
|
'service': 'openai',
|
||||||
|
'embeddingsIndex': '',
|
||||||
|
'stop': ''
|
||||||
|
}
|
||||||
|
|
||||||
|
response = requests.post('https://opchatgpts.net/wp-json/ai-chatbot/v1/chat', json=data).json()
|
||||||
|
|
||||||
|
if response["success"]:
|
||||||
|
|
||||||
|
return response["reply"] # `yield (response["reply"])` doesn't work
|
||||||
|
|
||||||
|
raise Exception("Request failed: " + response)
|
||||||
|
|
||||||
|
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]])
|
@ -23,6 +23,7 @@ from .Providers import (
|
|||||||
BingHuan,
|
BingHuan,
|
||||||
Wewordle,
|
Wewordle,
|
||||||
ChatgptAi,
|
ChatgptAi,
|
||||||
|
opchatgpts,
|
||||||
)
|
)
|
||||||
|
|
||||||
Palm = Bard
|
Palm = Bard
|
||||||
|
Loading…
Reference in New Issue
Block a user