2024-10-26 19:00:31 +03:00
|
|
|
from __future__ import annotations
|
|
|
|
|
|
|
|
from aiohttp import ClientSession
|
|
|
|
|
|
|
|
from ..typing import AsyncResult, Messages
|
|
|
|
from .base_provider import AsyncGeneratorProvider, ProviderModelMixin
|
|
|
|
from .helper import format_prompt
|
|
|
|
|
2024-11-04 16:37:04 +03:00
|
|
|
|
2024-10-26 19:00:31 +03:00
|
|
|
class GizAI(AsyncGeneratorProvider, ProviderModelMixin):
|
2024-11-04 16:37:04 +03:00
|
|
|
url = "https://app.giz.ai"
|
2024-10-26 19:00:31 +03:00
|
|
|
api_endpoint = "https://app.giz.ai/api/data/users/inferenceServer.infer"
|
|
|
|
working = True
|
2024-11-04 16:37:04 +03:00
|
|
|
supports_stream = False
|
2024-10-26 19:00:31 +03:00
|
|
|
supports_system_message = True
|
|
|
|
supports_message_history = True
|
|
|
|
|
|
|
|
default_model = 'chat-gemini-flash'
|
2024-11-04 16:37:04 +03:00
|
|
|
models = [default_model]
|
2024-10-26 19:00:31 +03:00
|
|
|
|
2024-11-04 16:37:04 +03:00
|
|
|
model_aliases = {"gemini-flash": "chat-gemini-flash",}
|
2024-10-26 19:00:31 +03: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
|
|
|
|
|
|
|
|
@classmethod
|
|
|
|
async def create_async_generator(
|
|
|
|
cls,
|
|
|
|
model: str,
|
|
|
|
messages: Messages,
|
|
|
|
proxy: str = None,
|
|
|
|
**kwargs
|
|
|
|
) -> AsyncResult:
|
|
|
|
model = cls.get_model(model)
|
|
|
|
|
|
|
|
headers = {
|
|
|
|
'Accept': 'application/json, text/plain, */*',
|
|
|
|
'Accept-Language': 'en-US,en;q=0.9',
|
|
|
|
'Cache-Control': 'no-cache',
|
|
|
|
'Connection': 'keep-alive',
|
|
|
|
'Content-Type': 'application/json',
|
2024-11-04 16:37:04 +03:00
|
|
|
'DNT': '1',
|
|
|
|
'Origin': cls.url,
|
2024-10-26 19:00:31 +03:00
|
|
|
'Pragma': 'no-cache',
|
|
|
|
'Sec-Fetch-Dest': 'empty',
|
|
|
|
'Sec-Fetch-Mode': 'cors',
|
|
|
|
'Sec-Fetch-Site': 'same-origin',
|
|
|
|
'User-Agent': 'Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/130.0.0.0 Safari/537.36',
|
|
|
|
'sec-ch-ua': '"Not?A_Brand";v="99", "Chromium";v="130"',
|
|
|
|
'sec-ch-ua-mobile': '?0',
|
|
|
|
'sec-ch-ua-platform': '"Linux"'
|
|
|
|
}
|
2024-11-04 16:37:04 +03:00
|
|
|
async with ClientSession(headers=headers) as session:
|
|
|
|
data = {
|
|
|
|
"model": model,
|
|
|
|
"input": {
|
|
|
|
"messages": messages,
|
|
|
|
"mode": "plan"
|
|
|
|
},
|
|
|
|
"noStream": True
|
|
|
|
}
|
|
|
|
async with session.post(cls.api_endpoint, json=data, proxy=proxy) as response:
|
|
|
|
response.raise_for_status()
|
|
|
|
result = await response.json()
|
|
|
|
yield result['output'].strip()
|