Merge pull request #784 from kggn/main

Add opchatgpts.net support
This commit is contained in:
xtekky 2023-08-07 13:21:30 +02:00 committed by GitHub
commit 388a54357e
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
3 changed files with 44 additions and 0 deletions

View File

@ -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

View 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]])

View File

@ -23,6 +23,7 @@ from .Providers import (
BingHuan, BingHuan,
Wewordle, Wewordle,
ChatgptAi, ChatgptAi,
opchatgpts,
) )
Palm = Bard Palm = Bard