2023-09-03 08:26:26 +00:00
|
|
|
from __future__ import annotations
|
|
|
|
|
2024-06-26 11:55:03 +00:00
|
|
|
import json, requests, re
|
2023-08-27 23:43:45 +00:00
|
|
|
|
2024-08-29 06:03:32 +00:00
|
|
|
from curl_cffi import requests as cf_reqs
|
|
|
|
from ..typing import CreateResult, Messages
|
2024-06-26 11:55:03 +00:00
|
|
|
from .base_provider import ProviderModelMixin, AbstractProvider
|
2024-08-29 06:03:32 +00:00
|
|
|
from .helper import format_prompt
|
2023-08-27 23:43:45 +00:00
|
|
|
|
2024-06-26 11:55:03 +00:00
|
|
|
class HuggingChat(AbstractProvider, ProviderModelMixin):
|
2024-08-29 06:03:32 +00:00
|
|
|
url = "https://huggingface.co/chat"
|
|
|
|
working = True
|
2024-06-26 11:55:03 +00:00
|
|
|
supports_stream = True
|
2024-08-29 06:03:32 +00:00
|
|
|
default_model = "meta-llama/Meta-Llama-3.1-70B-Instruct"
|
2024-01-23 04:02:14 +00:00
|
|
|
models = [
|
2024-07-25 06:21:55 +00:00
|
|
|
'meta-llama/Meta-Llama-3.1-70B-Instruct',
|
|
|
|
'meta-llama/Meta-Llama-3.1-405B-Instruct-FP8',
|
2024-04-13 02:09:11 +00:00
|
|
|
'CohereForAI/c4ai-command-r-plus',
|
|
|
|
'mistralai/Mixtral-8x7B-Instruct-v0.1',
|
|
|
|
'NousResearch/Nous-Hermes-2-Mixtral-8x7B-DPO',
|
2024-07-08 20:49:38 +00:00
|
|
|
'01-ai/Yi-1.5-34B-Chat',
|
2024-08-29 06:03:32 +00:00
|
|
|
'mistralai/Mistral-7B-Instruct-v0.3',
|
2024-06-07 05:56:50 +00:00
|
|
|
'microsoft/Phi-3-mini-4k-instruct',
|
2024-01-23 04:02:14 +00:00
|
|
|
]
|
2024-08-31 06:47:39 +00:00
|
|
|
|
2024-04-23 15:34:42 +00:00
|
|
|
model_aliases = {
|
2024-08-29 06:03:32 +00:00
|
|
|
"llama-3.1-70b": "meta-llama/Meta-Llama-3.1-70B-Instruct",
|
|
|
|
"llama-3.1-405b": "meta-llama/Meta-Llama-3.1-405B-Instruct-FP8",
|
|
|
|
"command-r-plus": "CohereForAI/c4ai-command-r-plus",
|
|
|
|
"mixtral-8x7b": "mistralai/Mixtral-8x7B-Instruct-v0.1",
|
|
|
|
"mixtral-8x7b": "NousResearch/Nous-Hermes-2-Mixtral-8x7B-DPO",
|
|
|
|
"yi-1.5-34b": "01-ai/Yi-1.5-34B-Chat",
|
|
|
|
"mistral-7b": "mistralai/Mistral-7B-Instruct-v0.3",
|
|
|
|
"phi-3-mini-4k": "microsoft/Phi-3-mini-4k-instruct",
|
2024-04-23 15:34:42 +00:00
|
|
|
}
|
2023-08-27 23:43:45 +00:00
|
|
|
|
2024-08-29 06:03:32 +00:00
|
|
|
@classmethod
|
|
|
|
def get_model(cls, model: str) -> str:
|
|
|
|
if model in cls.models:
|
|
|
|
return model
|
|
|
|
elif model in cls.model_aliases:
|
|
|
|
return cls.model_aliases[model]
|
|
|
|
else:
|
|
|
|
return cls.default_model
|
2024-08-31 06:47:39 +00:00
|
|
|
|
2024-03-25 20:06:51 +00:00
|
|
|
@classmethod
|
2024-06-26 11:55:03 +00:00
|
|
|
def create_completion(
|
2023-08-27 23:43:45 +00:00
|
|
|
cls,
|
|
|
|
model: str,
|
2023-10-09 11:33:20 +00:00
|
|
|
messages: Messages,
|
2024-06-26 11:55:03 +00:00
|
|
|
stream: bool,
|
2024-08-29 06:03:32 +00:00
|
|
|
**kwargs
|
|
|
|
) -> CreateResult:
|
|
|
|
model = cls.get_model(model)
|
2024-08-31 06:47:39 +00:00
|
|
|
|
2024-08-29 06:03:32 +00:00
|
|
|
if model in cls.models:
|
2024-08-16 20:25:38 +00:00
|
|
|
session = cf_reqs.Session()
|
|
|
|
session.headers = {
|
|
|
|
'accept': '*/*',
|
|
|
|
'accept-language': 'en',
|
|
|
|
'cache-control': 'no-cache',
|
|
|
|
'origin': 'https://huggingface.co',
|
|
|
|
'pragma': 'no-cache',
|
|
|
|
'priority': 'u=1, i',
|
|
|
|
'referer': 'https://huggingface.co/chat/',
|
|
|
|
'sec-ch-ua': '"Not)A;Brand";v="99", "Google Chrome";v="127", "Chromium";v="127"',
|
|
|
|
'sec-ch-ua-mobile': '?0',
|
2024-06-26 11:55:03 +00:00
|
|
|
'sec-ch-ua-platform': '"macOS"',
|
2024-08-16 20:25:38 +00:00
|
|
|
'sec-fetch-dest': 'empty',
|
|
|
|
'sec-fetch-mode': 'cors',
|
|
|
|
'sec-fetch-site': 'same-origin',
|
|
|
|
'user-agent': 'Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/127.0.0.0 Safari/537.36',
|
2024-06-26 11:55:03 +00:00
|
|
|
}
|
2024-08-31 06:47:39 +00:00
|
|
|
|
|
|
|
print(model)
|
2024-06-26 11:55:03 +00:00
|
|
|
json_data = {
|
2024-08-16 20:25:38 +00:00
|
|
|
'model': model,
|
2024-06-26 11:55:03 +00:00
|
|
|
}
|
2024-08-31 06:47:39 +00:00
|
|
|
|
2024-08-16 20:25:38 +00:00
|
|
|
response = session.post('https://huggingface.co/chat/conversation', json=json_data)
|
2024-06-26 11:55:03 +00:00
|
|
|
conversationId = response.json()['conversationId']
|
2024-08-31 06:47:39 +00:00
|
|
|
|
2024-08-16 20:25:38 +00:00
|
|
|
response = session.get(f'https://huggingface.co/chat/conversation/{conversationId}/__data.json?x-sveltekit-invalidated=01',)
|
2024-08-31 06:47:39 +00:00
|
|
|
|
2024-08-16 20:25:38 +00:00
|
|
|
data: list = (response.json())["nodes"][1]["data"]
|
|
|
|
keys: list[int] = data[data[0]["messages"]]
|
|
|
|
message_keys: dict = data[keys[0]]
|
|
|
|
messageId: str = data[message_keys["id"]]
|
2024-06-26 11:55:03 +00:00
|
|
|
|
|
|
|
settings = {
|
2024-08-29 06:03:32 +00:00
|
|
|
"inputs": format_prompt(messages),
|
|
|
|
"id": messageId,
|
|
|
|
"is_retry": False,
|
|
|
|
"is_continue": False,
|
|
|
|
"web_search": False,
|
|
|
|
"tools": []
|
2024-06-26 11:55:03 +00:00
|
|
|
}
|
|
|
|
|
2024-08-16 20:25:38 +00:00
|
|
|
headers = {
|
|
|
|
'accept': '*/*',
|
|
|
|
'accept-language': 'en',
|
|
|
|
'cache-control': 'no-cache',
|
|
|
|
'origin': 'https://huggingface.co',
|
|
|
|
'pragma': 'no-cache',
|
|
|
|
'priority': 'u=1, i',
|
|
|
|
'referer': f'https://huggingface.co/chat/conversation/{conversationId}',
|
|
|
|
'sec-ch-ua': '"Not)A;Brand";v="99", "Google Chrome";v="127", "Chromium";v="127"',
|
|
|
|
'sec-ch-ua-mobile': '?0',
|
|
|
|
'sec-ch-ua-platform': '"macOS"',
|
|
|
|
'sec-fetch-dest': 'empty',
|
|
|
|
'sec-fetch-mode': 'cors',
|
|
|
|
'sec-fetch-site': 'same-origin',
|
|
|
|
'user-agent': 'Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/127.0.0.0 Safari/537.36',
|
|
|
|
}
|
|
|
|
|
|
|
|
files = {
|
2024-08-29 06:03:32 +00:00
|
|
|
'data': (None, json.dumps(settings, separators=(',', ':'))),
|
2023-08-27 23:43:45 +00:00
|
|
|
}
|
2024-04-22 18:02:17 +00:00
|
|
|
|
2024-08-16 20:25:38 +00:00
|
|
|
response = requests.post(f'https://huggingface.co/chat/conversation/{conversationId}',
|
|
|
|
cookies=session.cookies,
|
|
|
|
headers=headers,
|
|
|
|
files=files,
|
2024-06-26 11:55:03 +00:00
|
|
|
)
|
2024-08-31 06:47:39 +00:00
|
|
|
|
2024-06-26 11:55:03 +00:00
|
|
|
first_token = True
|
|
|
|
for line in response.iter_lines():
|
|
|
|
line = json.loads(line)
|
|
|
|
|
|
|
|
if "type" not in line:
|
|
|
|
raise RuntimeError(f"Response: {line}")
|
|
|
|
|
|
|
|
elif line["type"] == "stream":
|
|
|
|
token = line["token"]
|
|
|
|
if first_token:
|
|
|
|
token = token.lstrip().replace('\u0000', '')
|
|
|
|
first_token = False
|
2024-06-29 14:00:50 +00:00
|
|
|
else:
|
|
|
|
token = token.replace('\u0000', '')
|
|
|
|
|
2024-08-29 06:03:32 +00:00
|
|
|
yield token
|
2024-08-31 06:47:39 +00:00
|
|
|
|
2024-06-26 11:55:03 +00:00
|
|
|
elif line["type"] == "finalAnswer":
|
2024-08-31 06:47:39 +00:00
|
|
|
break
|