mirror of
https://github.com/xtekky/gpt4free.git
synced 2024-11-05 00:01:00 +00:00
eee038a73e
* Add GeminiProChat Provider
57 lines
2.0 KiB
Python
57 lines
2.0 KiB
Python
from __future__ import annotations
|
|
|
|
import time
|
|
from hashlib import sha256
|
|
from aiohttp import ClientSession
|
|
|
|
from ..typing import AsyncResult, Messages
|
|
from .base_provider import AsyncGeneratorProvider
|
|
|
|
|
|
class GeminiProChat(AsyncGeneratorProvider):
|
|
url = "https://geminiprochat.com"
|
|
working = True
|
|
supports_gpt_35_turbo = True
|
|
|
|
@classmethod
|
|
async def create_async_generator(
|
|
cls,
|
|
model: str,
|
|
messages: Messages,
|
|
proxy: str = None,
|
|
**kwargs
|
|
) -> AsyncResult:
|
|
headers = {
|
|
"User-Agent": "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:109.0) Gecko/20100101 Firefox/119.0",
|
|
"Accept": "*/*",
|
|
"Accept-Language": "de,en-US;q=0.7,en;q=0.3",
|
|
"Accept-Encoding": "gzip, deflate, br",
|
|
"Content-Type": "text/plain;charset=UTF-8",
|
|
"Referer": "https://geminiprochat.com/",
|
|
"Origin": "https://geminiprochat.com",
|
|
"Sec-Fetch-Dest": "empty",
|
|
"Sec-Fetch-Mode": "cors",
|
|
"Sec-Fetch-Site": "same-origin",
|
|
"Connection": "keep-alive",
|
|
"TE": "trailers",
|
|
}
|
|
async with ClientSession(headers=headers) as session:
|
|
timestamp = int(time.time() * 1e3)
|
|
data = {
|
|
"messages":[{
|
|
"role": "model" if message["role"] == "assistant" else "user",
|
|
"parts": [{"text": message["content"]}]
|
|
} for message in messages],
|
|
"time": timestamp,
|
|
"pass": None,
|
|
"sign": generate_signature(timestamp, messages[-1]["content"]),
|
|
}
|
|
async with session.post(f"{cls.url}/api/generate", json=data, proxy=proxy) as response:
|
|
response.raise_for_status()
|
|
async for chunk in response.content.iter_any():
|
|
yield chunk.decode()
|
|
|
|
def generate_signature(time: int, text: str):
|
|
message = f'{time}:{text}:9C4680FB-A4E1-6BC7-052A-7F68F9F5AD1F';
|
|
return sha256(message.encode()).hexdigest()
|