mirror of
https://github.com/xtekky/gpt4free.git
synced 2024-12-25 04:01:52 +03:00
update huggingface provider
This commit is contained in:
parent
ec34df390e
commit
8ef5207a17
@ -33,80 +33,78 @@ class HuggingChat(AbstractProvider, ProviderModelMixin):
|
|||||||
model: str,
|
model: str,
|
||||||
messages: Messages,
|
messages: Messages,
|
||||||
stream: bool,
|
stream: bool,
|
||||||
**kwargs
|
**kwargs) -> CreateResult:
|
||||||
) -> CreateResult:
|
|
||||||
|
|
||||||
if (model in cls.models) :
|
if (model in cls.models) :
|
||||||
|
|
||||||
session = requests.Session()
|
session = cf_reqs.Session()
|
||||||
headers = {
|
session.headers = {
|
||||||
'accept' : '*/*',
|
'accept': '*/*',
|
||||||
'accept-language' : 'en,fr-FR;q=0.9,fr;q=0.8,es-ES;q=0.7,es;q=0.6,en-US;q=0.5,am;q=0.4,de;q=0.3',
|
'accept-language': 'en',
|
||||||
'cache-control' : 'no-cache',
|
'cache-control': 'no-cache',
|
||||||
'origin' : 'https://huggingface.co',
|
'origin': 'https://huggingface.co',
|
||||||
'pragma' : 'no-cache',
|
'pragma': 'no-cache',
|
||||||
'priority' : 'u=1, i',
|
'priority': 'u=1, i',
|
||||||
'referer' : 'https://huggingface.co/chat/',
|
'referer': 'https://huggingface.co/chat/',
|
||||||
'sec-ch-ua' : '"Not/A)Brand";v="8", "Chromium";v="126", "Google Chrome";v="126"',
|
'sec-ch-ua': '"Not)A;Brand";v="99", "Google Chrome";v="127", "Chromium";v="127"',
|
||||||
'sec-ch-ua-mobile' : '?0',
|
'sec-ch-ua-mobile': '?0',
|
||||||
'sec-ch-ua-platform': '"macOS"',
|
'sec-ch-ua-platform': '"macOS"',
|
||||||
'sec-fetch-dest' : 'empty',
|
'sec-fetch-dest': 'empty',
|
||||||
'sec-fetch-mode' : 'cors',
|
'sec-fetch-mode': 'cors',
|
||||||
'sec-fetch-site' : 'same-origin',
|
'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/126.0.0.0 Safari/537.36',
|
'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',
|
||||||
}
|
}
|
||||||
|
|
||||||
|
print(model)
|
||||||
json_data = {
|
json_data = {
|
||||||
'searchEnabled' : True,
|
'model': model,
|
||||||
'activeModel' : 'CohereForAI/c4ai-command-r-plus', # doesn't matter
|
|
||||||
'hideEmojiOnSidebar': False,
|
|
||||||
'customPrompts' : {},
|
|
||||||
'assistants' : [],
|
|
||||||
'tools' : {},
|
|
||||||
'disableStream' : False,
|
|
||||||
'recentlySaved' : False,
|
|
||||||
'ethicsModalAccepted' : True,
|
|
||||||
'ethicsModalAcceptedAt' : None,
|
|
||||||
'shareConversationsWithModelAuthors': False,
|
|
||||||
}
|
}
|
||||||
|
|
||||||
response = cf_reqs.post('https://huggingface.co/chat/settings', headers=headers, json=json_data)
|
response = session.post('https://huggingface.co/chat/conversation', json=json_data)
|
||||||
session.cookies.update(response.cookies)
|
|
||||||
|
|
||||||
response = session.post('https://huggingface.co/chat/conversation',
|
|
||||||
headers=headers, json={'model': model})
|
|
||||||
|
|
||||||
conversationId = response.json()['conversationId']
|
conversationId = response.json()['conversationId']
|
||||||
response = session.get(f'https://huggingface.co/chat/conversation/{conversationId}/__data.json?x-sveltekit-invalidated=11',
|
|
||||||
headers=headers,
|
|
||||||
)
|
|
||||||
|
|
||||||
messageId = extract_id(response.json())
|
response = session.get(f'https://huggingface.co/chat/conversation/{conversationId}/__data.json?x-sveltekit-invalidated=01',)
|
||||||
|
|
||||||
|
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"]]
|
||||||
|
|
||||||
settings = {
|
settings = {
|
||||||
"inputs" : format_prompt(messages),
|
"inputs":format_prompt(messages),
|
||||||
"id" : messageId,
|
"id":messageId,
|
||||||
"is_retry" : False,
|
"is_retry":False,
|
||||||
"is_continue" : False,
|
"is_continue":False,
|
||||||
"web_search" : False,
|
"web_search":False,
|
||||||
|
"tools":[]
|
||||||
# TODO // add feature to enable/disable tools
|
|
||||||
"tools": {
|
|
||||||
"websearch" : True,
|
|
||||||
"document_parser" : False,
|
|
||||||
"query_calculator" : False,
|
|
||||||
"image_generation" : False,
|
|
||||||
"image_editing" : False,
|
|
||||||
"fetch_url" : False,
|
|
||||||
}
|
|
||||||
}
|
}
|
||||||
|
|
||||||
payload = {
|
headers = {
|
||||||
"data": json.dumps(settings),
|
'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',
|
||||||
}
|
}
|
||||||
|
|
||||||
response = session.post(f"https://huggingface.co/chat/conversation/{conversationId}",
|
|
||||||
headers=headers, data=payload, stream=True,
|
files = {
|
||||||
|
'data': (None, json.dumps(settings, separators=(',', ':'))),
|
||||||
|
}
|
||||||
|
|
||||||
|
response = requests.post(f'https://huggingface.co/chat/conversation/{conversationId}',
|
||||||
|
cookies=session.cookies,
|
||||||
|
headers=headers,
|
||||||
|
files=files,
|
||||||
)
|
)
|
||||||
|
|
||||||
first_token = True
|
first_token = True
|
||||||
@ -125,18 +123,7 @@ class HuggingChat(AbstractProvider, ProviderModelMixin):
|
|||||||
else:
|
else:
|
||||||
token = token.replace('\u0000', '')
|
token = token.replace('\u0000', '')
|
||||||
|
|
||||||
yield token
|
yield (token)
|
||||||
|
|
||||||
elif line["type"] == "finalAnswer":
|
elif line["type"] == "finalAnswer":
|
||||||
break
|
break
|
||||||
|
|
||||||
def extract_id(response: dict) -> str:
|
|
||||||
data = response["nodes"][1]["data"]
|
|
||||||
uuid_pattern = re.compile(
|
|
||||||
r"^[\da-f]{8}-[\da-f]{4}-[\da-f]{4}-[\da-f]{4}-[\da-f]{12}$"
|
|
||||||
)
|
|
||||||
for item in data:
|
|
||||||
if type(item) == str and uuid_pattern.match(item):
|
|
||||||
return item
|
|
||||||
|
|
||||||
return None
|
|
@ -508,6 +508,9 @@ class ModelUtils:
|
|||||||
'llama-3-70b-instruct': llama_3_70b_instruct,
|
'llama-3-70b-instruct': llama_3_70b_instruct,
|
||||||
'llama-3-70b-chat': llama_3_70b_chat_hf,
|
'llama-3-70b-chat': llama_3_70b_chat_hf,
|
||||||
'llama-3-70b-instruct': llama_3_70b_instruct,
|
'llama-3-70b-instruct': llama_3_70b_instruct,
|
||||||
|
|
||||||
|
'llama-3.1-70b': llama_3_1_70b_instruct,
|
||||||
|
'llama-3.1-405b': llama_3_1_405b_instruct_FP8,
|
||||||
'llama-3.1-70b-instruct': llama_3_1_70b_instruct,
|
'llama-3.1-70b-instruct': llama_3_1_70b_instruct,
|
||||||
'llama-3.1-405b-instruct': llama_3_1_405b_instruct_FP8,
|
'llama-3.1-405b-instruct': llama_3_1_405b_instruct_FP8,
|
||||||
|
|
||||||
|
Loading…
Reference in New Issue
Block a user