2023-10-26 22:32:49 +03:00
|
|
|
from __future__ import annotations
|
|
|
|
|
2024-01-23 21:44:48 +03:00
|
|
|
import requests
|
2024-11-06 15:10:19 +03:00
|
|
|
from ...typing import AsyncResult, Messages
|
2024-11-09 10:48:34 +03:00
|
|
|
from .OpenaiAPI import OpenaiAPI
|
2023-10-26 22:32:49 +03:00
|
|
|
|
2024-11-09 10:48:34 +03:00
|
|
|
class DeepInfra(OpenaiAPI):
|
2024-04-12 21:58:40 +03:00
|
|
|
label = "DeepInfra"
|
2024-01-02 01:23:45 +03:00
|
|
|
url = "https://deepinfra.com"
|
|
|
|
working = True
|
2024-05-15 22:07:49 +03:00
|
|
|
needs_auth = True
|
2024-01-02 01:23:45 +03:00
|
|
|
supports_stream = True
|
|
|
|
supports_message_history = True
|
2024-08-29 09:03:32 +03:00
|
|
|
default_model = "meta-llama/Meta-Llama-3.1-70B-Instruct"
|
2024-04-07 11:36:13 +03:00
|
|
|
|
2024-01-26 09:54:13 +03:00
|
|
|
@classmethod
|
|
|
|
def get_models(cls):
|
|
|
|
if not cls.models:
|
|
|
|
url = 'https://api.deepinfra.com/models/featured'
|
2024-01-30 06:15:25 +03:00
|
|
|
models = requests.get(url).json()
|
2024-04-07 11:36:13 +03:00
|
|
|
cls.models = [model['model_name'] for model in models if model["type"] == "text-generation"]
|
2024-01-26 09:54:13 +03:00
|
|
|
return cls.models
|
2024-01-23 21:44:48 +03:00
|
|
|
|
|
|
|
@classmethod
|
2024-04-07 11:36:13 +03:00
|
|
|
def create_async_generator(
|
2024-01-23 21:44:48 +03:00
|
|
|
cls,
|
2024-01-02 01:23:45 +03:00
|
|
|
model: str,
|
|
|
|
messages: Messages,
|
|
|
|
stream: bool,
|
2024-04-07 11:36:13 +03:00
|
|
|
api_base: str = "https://api.deepinfra.com/v1/openai",
|
|
|
|
temperature: float = 0.7,
|
|
|
|
max_tokens: int = 1028,
|
2024-01-02 01:23:45 +03:00
|
|
|
**kwargs
|
|
|
|
) -> AsyncResult:
|
2023-10-26 22:32:49 +03:00
|
|
|
headers = {
|
2024-01-02 01:23:45 +03:00
|
|
|
'Accept-Encoding': 'gzip, deflate, br',
|
|
|
|
'Accept-Language': 'en-US',
|
2023-11-24 17:16:00 +03:00
|
|
|
'Connection': 'keep-alive',
|
|
|
|
'Origin': 'https://deepinfra.com',
|
|
|
|
'Referer': 'https://deepinfra.com/',
|
|
|
|
'Sec-Fetch-Dest': 'empty',
|
|
|
|
'Sec-Fetch-Mode': 'cors',
|
|
|
|
'Sec-Fetch-Site': 'same-site',
|
|
|
|
'User-Agent': 'Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/119.0.0.0 Safari/537.36',
|
|
|
|
'X-Deepinfra-Source': 'web-embed',
|
|
|
|
'sec-ch-ua': '"Google Chrome";v="119", "Chromium";v="119", "Not?A_Brand";v="24"',
|
|
|
|
'sec-ch-ua-mobile': '?0',
|
|
|
|
'sec-ch-ua-platform': '"macOS"',
|
2023-10-26 22:32:49 +03:00
|
|
|
}
|
2024-04-07 11:36:13 +03:00
|
|
|
return super().create_async_generator(
|
|
|
|
model, messages,
|
|
|
|
stream=stream,
|
|
|
|
api_base=api_base,
|
|
|
|
temperature=temperature,
|
|
|
|
max_tokens=max_tokens,
|
|
|
|
headers=headers,
|
|
|
|
**kwargs
|
2024-11-06 15:10:19 +03:00
|
|
|
)
|