2023-09-03 08:26:26 +00:00
|
|
|
from __future__ import annotations
|
|
|
|
|
2024-03-11 01:41:59 +00:00
|
|
|
import json
|
2024-03-25 20:06:51 +00:00
|
|
|
import requests
|
2024-01-23 22:48:11 +00:00
|
|
|
from aiohttp import ClientSession, BaseConnector
|
2023-08-27 23:43:45 +00:00
|
|
|
|
2024-01-22 02:38:11 +00:00
|
|
|
from ..typing import AsyncResult, Messages
|
2024-04-06 22:01:04 +00:00
|
|
|
from ..requests.raise_for_status import raise_for_status
|
2024-01-23 18:44:48 +00:00
|
|
|
from .base_provider import AsyncGeneratorProvider, ProviderModelMixin
|
2024-03-11 01:41:59 +00:00
|
|
|
from .helper import format_prompt, get_connector
|
2023-08-27 23:43:45 +00:00
|
|
|
|
2024-01-23 18:44:48 +00:00
|
|
|
class HuggingChat(AsyncGeneratorProvider, ProviderModelMixin):
|
2023-09-23 09:42:30 +00:00
|
|
|
url = "https://huggingface.co/chat"
|
2023-08-27 23:43:45 +00:00
|
|
|
working = True
|
2024-01-23 04:02:14 +00:00
|
|
|
default_model = "meta-llama/Llama-2-70b-chat-hf"
|
|
|
|
models = [
|
|
|
|
"mistralai/Mixtral-8x7B-Instruct-v0.1",
|
2024-03-25 20:06:51 +00:00
|
|
|
"google/gemma-7b-it",
|
2024-01-23 04:02:14 +00:00
|
|
|
"meta-llama/Llama-2-70b-chat-hf",
|
|
|
|
"NousResearch/Nous-Hermes-2-Mixtral-8x7B-DPO",
|
|
|
|
"codellama/CodeLlama-34b-Instruct-hf",
|
|
|
|
"mistralai/Mistral-7B-Instruct-v0.2",
|
2024-02-06 06:29:30 +00:00
|
|
|
"openchat/openchat-3.5-0106",
|
2024-01-23 04:02:14 +00:00
|
|
|
]
|
2024-01-23 18:44:48 +00:00
|
|
|
model_aliases = {
|
2024-03-25 20:06:51 +00:00
|
|
|
"openchat/openchat_3.5": "openchat/openchat-3.5-0106",
|
2024-01-23 04:02:14 +00:00
|
|
|
}
|
2023-08-27 23:43:45 +00:00
|
|
|
|
2024-03-25 20:06:51 +00:00
|
|
|
@classmethod
|
|
|
|
def get_models(cls):
|
|
|
|
if not cls.models:
|
|
|
|
url = f"{cls.url}/__data.json"
|
|
|
|
data = requests.get(url).json()["nodes"][0]["data"]
|
|
|
|
models = [data[key]["name"] for key in data[data[0]["models"]]]
|
|
|
|
cls.models = [data[key] for key in models]
|
|
|
|
return cls.models
|
|
|
|
|
2023-08-27 23:43:45 +00:00
|
|
|
@classmethod
|
|
|
|
async def create_async_generator(
|
|
|
|
cls,
|
|
|
|
model: str,
|
2023-10-09 11:33:20 +00:00
|
|
|
messages: Messages,
|
2023-08-27 23:43:45 +00:00
|
|
|
stream: bool = True,
|
|
|
|
proxy: str = None,
|
2024-01-23 22:48:11 +00:00
|
|
|
connector: BaseConnector = None,
|
2023-12-06 08:35:36 +00:00
|
|
|
web_search: bool = False,
|
2023-08-27 23:43:45 +00:00
|
|
|
cookies: dict = None,
|
|
|
|
**kwargs
|
2023-10-09 11:33:20 +00:00
|
|
|
) -> AsyncResult:
|
2024-03-11 01:41:59 +00:00
|
|
|
options = {"model": cls.get_model(model)}
|
|
|
|
system_prompt = "\n".join([message["content"] for message in messages if message["role"] == "system"])
|
|
|
|
if system_prompt:
|
|
|
|
options["preprompt"] = system_prompt
|
|
|
|
messages = [message for message in messages if message["role"] != "system"]
|
2023-08-27 23:43:45 +00:00
|
|
|
headers = {
|
|
|
|
'User-Agent': 'Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/111.0.0.0 Safari/537.36',
|
|
|
|
}
|
|
|
|
async with ClientSession(
|
|
|
|
cookies=cookies,
|
2024-01-23 22:48:11 +00:00
|
|
|
headers=headers,
|
2024-01-23 23:46:35 +00:00
|
|
|
connector=get_connector(connector, proxy)
|
2023-08-27 23:43:45 +00:00
|
|
|
) as session:
|
2024-04-06 22:01:04 +00:00
|
|
|
async with session.post(f"{cls.url}/conversation", json=options) as response:
|
|
|
|
await raise_for_status(response)
|
2023-08-27 23:43:45 +00:00
|
|
|
conversation_id = (await response.json())["conversationId"]
|
2024-03-11 01:41:59 +00:00
|
|
|
async with session.get(f"{cls.url}/conversation/{conversation_id}/__data.json") as response:
|
2024-04-06 22:01:04 +00:00
|
|
|
await raise_for_status(response)
|
2024-03-11 01:41:59 +00:00
|
|
|
data: list = (await response.json())["nodes"][1]["data"]
|
|
|
|
keys: list[int] = data[data[0]["messages"]]
|
|
|
|
message_keys: dict = data[keys[0]]
|
|
|
|
message_id: str = data[message_keys["id"]]
|
|
|
|
options = {
|
|
|
|
"id": message_id,
|
2023-08-27 23:43:45 +00:00
|
|
|
"inputs": format_prompt(messages),
|
2024-03-11 01:41:59 +00:00
|
|
|
"is_continue": False,
|
2023-10-01 04:38:11 +00:00
|
|
|
"is_retry": False,
|
2023-12-06 08:35:36 +00:00
|
|
|
"web_search": web_search
|
2023-08-27 23:43:45 +00:00
|
|
|
}
|
2024-03-11 01:41:59 +00:00
|
|
|
async with session.post(f"{cls.url}/conversation/{conversation_id}", json=options) as response:
|
2023-12-15 22:58:13 +00:00
|
|
|
first_token = True
|
2023-10-01 04:38:11 +00:00
|
|
|
async for line in response.content:
|
2024-04-06 22:01:04 +00:00
|
|
|
await raise_for_status(response)
|
2024-03-11 01:41:59 +00:00
|
|
|
line = json.loads(line)
|
2023-10-01 04:38:11 +00:00
|
|
|
if "type" not in line:
|
|
|
|
raise RuntimeError(f"Response: {line}")
|
|
|
|
elif line["type"] == "stream":
|
2023-12-15 22:58:13 +00:00
|
|
|
token = line["token"]
|
|
|
|
if first_token:
|
|
|
|
token = token.lstrip()
|
|
|
|
first_token = False
|
|
|
|
yield token
|
2023-10-01 04:38:11 +00:00
|
|
|
elif line["type"] == "finalAnswer":
|
|
|
|
break
|
2024-04-06 22:01:04 +00:00
|
|
|
async with session.delete(f"{cls.url}/conversation/{conversation_id}") as response:
|
|
|
|
await raise_for_status(response)
|