mirror of
https://github.com/xtekky/gpt4free.git
synced 2024-12-25 04:01:52 +03:00
ff66df1486
Add get_models to OpenaiAPI, HuggingFace and Groq Add xAI provider
69 lines
2.5 KiB
Python
69 lines
2.5 KiB
Python
from __future__ import annotations
|
|
|
|
import json
|
|
from aiohttp import ClientSession
|
|
|
|
from ..typing import AsyncResult, Messages
|
|
from ..requests.raise_for_status import raise_for_status
|
|
from .base_provider import AsyncGeneratorProvider, ProviderModelMixin
|
|
from .helper import format_prompt
|
|
|
|
class DarkAI(AsyncGeneratorProvider, ProviderModelMixin):
|
|
url = "https://darkai.foundation/chat"
|
|
api_endpoint = "https://darkai.foundation/chat"
|
|
working = True
|
|
supports_stream = True
|
|
|
|
default_model = 'llama-3-70b'
|
|
models = [
|
|
'gpt-4o', # Uncensored
|
|
'gpt-3.5-turbo', # Uncensored
|
|
default_model,
|
|
]
|
|
model_aliases = {
|
|
"llama-3.1-70b": "llama-3-70b",
|
|
}
|
|
|
|
@classmethod
|
|
async def create_async_generator(
|
|
cls,
|
|
model: str,
|
|
messages: Messages,
|
|
proxy: str = None,
|
|
**kwargs
|
|
) -> AsyncResult:
|
|
model = cls.get_model(model)
|
|
|
|
headers = {
|
|
"accept": "text/event-stream",
|
|
"content-type": "application/json",
|
|
"user-agent": "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/127.0.0.0 Safari/537.36"
|
|
}
|
|
async with ClientSession(headers=headers) as session:
|
|
prompt = format_prompt(messages)
|
|
data = {
|
|
"query": prompt,
|
|
"model": model,
|
|
}
|
|
async with session.post(cls.api_endpoint, json=data, proxy=proxy) as response:
|
|
await raise_for_status(response)
|
|
first = True
|
|
async for line in response.content:
|
|
if line:
|
|
try:
|
|
line_str = line.decode().strip()
|
|
if line_str.startswith('data: '):
|
|
chunk_data = json.loads(line_str[6:])
|
|
if chunk_data['event'] == 'text-chunk':
|
|
chunk = chunk_data['data']['text']
|
|
if first:
|
|
chunk = chunk.lstrip()
|
|
if chunk:
|
|
first = False
|
|
yield chunk
|
|
elif chunk_data['event'] == 'stream-end':
|
|
return
|
|
except json.JSONDecodeError:
|
|
pass
|
|
except Exception:
|
|
pass |