2023-09-03 08:26:26 +00:00
|
|
|
from __future__ import annotations
|
|
|
|
|
2023-10-01 04:38:11 +00:00
|
|
|
import json, uuid
|
2023-09-03 08:26:26 +00:00
|
|
|
|
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-01-23 18:44:48 +00:00
|
|
|
from .base_provider import AsyncGeneratorProvider, ProviderModelMixin
|
2024-01-23 23:46:35 +00:00
|
|
|
from .helper import format_prompt, get_cookies, 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",
|
|
|
|
"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",
|
|
|
|
"openchat/openchat-3.5-0106"
|
|
|
|
]
|
2024-01-23 18:44:48 +00:00
|
|
|
model_aliases = {
|
2024-01-23 04:02:14 +00:00
|
|
|
"openchat/openchat_3.5": "openchat/openchat-3.5-1210",
|
|
|
|
"mistralai/Mixtral-8x7B-Instruct-v0.1": "mistralai/Mistral-7B-Instruct-v0.2"
|
|
|
|
}
|
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:
|
2023-09-20 04:12:34 +00:00
|
|
|
if not cookies:
|
2024-01-26 06:54:13 +00:00
|
|
|
cookies = get_cookies(".huggingface.co", False)
|
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-01-23 18:44:48 +00:00
|
|
|
async with session.post(f"{cls.url}/conversation", json={"model": cls.get_model(model)}, proxy=proxy) as response:
|
2023-08-27 23:43:45 +00:00
|
|
|
conversation_id = (await response.json())["conversationId"]
|
|
|
|
|
|
|
|
send = {
|
2023-10-01 04:38:11 +00:00
|
|
|
"id": str(uuid.uuid4()),
|
2023-08-27 23:43:45 +00:00
|
|
|
"inputs": format_prompt(messages),
|
2023-10-01 04:38:11 +00:00
|
|
|
"is_retry": False,
|
|
|
|
"response_id": str(uuid.uuid4()),
|
2023-12-06 08:35:36 +00:00
|
|
|
"web_search": web_search
|
2023-08-27 23:43:45 +00:00
|
|
|
}
|
2023-10-01 04:38:11 +00:00
|
|
|
async with session.post(f"{cls.url}/conversation/{conversation_id}", json=send, proxy=proxy) 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:
|
|
|
|
line = json.loads(line[:-1])
|
|
|
|
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
|
2023-08-27 23:43:45 +00:00
|
|
|
|
2023-09-20 04:12:34 +00:00
|
|
|
async with session.delete(f"{cls.url}/conversation/{conversation_id}", proxy=proxy) as response:
|
2023-12-15 22:58:13 +00:00
|
|
|
response.raise_for_status()
|