From 88d2cbff099df00944ed6dfb6c73b1b5e8dfc7f9 Mon Sep 17 00:00:00 2001 From: Heiner Lohaus Date: Thu, 5 Oct 2023 05:13:37 +0200 Subject: Add AiAsk, Chatgpt4Online, ChatgptDemo and ChatgptX Provider Fix Bing, Liaobots and ChatgptAi Provider Add "gpt_35_long" model and custom timeout --- g4f/Provider/DeepAi.py | 11 +++++++++++ 1 file changed, 11 insertions(+) (limited to 'g4f/Provider/DeepAi.py') diff --git a/g4f/Provider/DeepAi.py b/g4f/Provider/DeepAi.py index 7239f6ac..bac3e3fe 100644 --- a/g4f/Provider/DeepAi.py +++ b/g4f/Provider/DeepAi.py @@ -2,6 +2,8 @@ from __future__ import annotations import json import js2py +import random +import hashlib from aiohttp import ClientSession from ..typing import AsyncGenerator @@ -64,3 +66,12 @@ f = function () { async for stream in response.content.iter_any(): if stream: yield stream.decode() + + +def get_api_key(user_agent: str): + e = str(round(1E11 * random.random())) + + def hash(data: str): + return hashlib.md5(data.encode()).hexdigest()[::-1] + + return f"tryit-{e}-" + hash(user_agent + hash(user_agent + hash(user_agent + e + "x"))) \ No newline at end of file -- cgit v1.2.3