forked from xtekky/gpt4free
-
Notifications
You must be signed in to change notification settings - Fork 1
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
14 changed files
with
230 additions
and
136 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,65 @@ | ||
from __future__ import annotations | ||
|
||
import requests | ||
from aiohttp import ClientSession | ||
|
||
from .OpenaiAPI import OpenaiAPI | ||
from ...typing import AsyncResult, Messages, Cookies | ||
from ...requests.raise_for_status import raise_for_status | ||
from ...cookies import get_cookies | ||
|
||
class Cerebras(OpenaiAPI): | ||
label = "Cerebras Inference" | ||
url = "https://inference.cerebras.ai/" | ||
working = True | ||
default_model = "llama3.1-70b" | ||
fallback_models = [ | ||
"llama3.1-70b", | ||
"llama3.1-8b", | ||
] | ||
model_aliases = {"llama-3.1-70b": "llama3.1-70b", "llama-3.1-8b": "llama3.1-8b"} | ||
|
||
@classmethod | ||
def get_models(cls, api_key: str = None): | ||
if not cls.models: | ||
try: | ||
headers = {} | ||
if api_key: | ||
headers["authorization"] = f"Bearer ${api_key}" | ||
response = requests.get(f"https://api.cerebras.ai/v1/models", headers=headers) | ||
raise_for_status(response) | ||
data = response.json() | ||
cls.models = [model.get("model") for model in data.get("models")] | ||
except Exception: | ||
cls.models = cls.fallback_models | ||
return cls.models | ||
|
||
@classmethod | ||
async def create_async_generator( | ||
cls, | ||
model: str, | ||
messages: Messages, | ||
api_base: str = "https://api.cerebras.ai/v1", | ||
api_key: str = None, | ||
cookies: Cookies = None, | ||
**kwargs | ||
) -> AsyncResult: | ||
if api_key is None and cookies is None: | ||
cookies = get_cookies(".cerebras.ai") | ||
async with ClientSession(cookies=cookies) as session: | ||
async with session.get("https://inference.cerebras.ai/api/auth/session") as response: | ||
raise_for_status(response) | ||
data = await response.json() | ||
if data: | ||
api_key = data.get("user", {}).get("demoApiKey") | ||
async for chunk in super().create_async_generator( | ||
model, messages, | ||
api_base=api_base, | ||
impersonate="chrome", | ||
api_key=api_key, | ||
headers={ | ||
"User-Agent": "ex/JS 1.5.0", | ||
}, | ||
**kwargs | ||
): | ||
yield chunk |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,9 +1,12 @@ | ||
from __future__ import annotations | ||
|
||
from ..base_provider import ProviderModelMixin | ||
from ..Copilot import Copilot | ||
|
||
class CopilotAccount(Copilot): | ||
class CopilotAccount(Copilot, ProviderModelMixin): | ||
needs_auth = True | ||
parent = "Copilot" | ||
default_model = "Copilot" | ||
default_vision_model = default_model | ||
default_vision_model = default_model | ||
models = [default_model] | ||
image_models = models |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,28 @@ | ||
from __future__ import annotations | ||
|
||
from .OpenaiAPI import OpenaiAPI | ||
from ..HuggingChat import HuggingChat | ||
from ...typing import AsyncResult, Messages | ||
|
||
class HuggingFace2(OpenaiAPI): | ||
label = "HuggingFace (Inference API)" | ||
url = "https://huggingface.co" | ||
working = True | ||
default_model = "meta-llama/Llama-3.2-11B-Vision-Instruct" | ||
default_vision_model = default_model | ||
models = [ | ||
*HuggingChat.models | ||
] | ||
|
||
@classmethod | ||
def create_async_generator( | ||
cls, | ||
model: str, | ||
messages: Messages, | ||
api_base: str = "https://api-inference.huggingface.co/v1", | ||
max_tokens: int = 500, | ||
**kwargs | ||
) -> AsyncResult: | ||
return super().create_async_generator( | ||
model, messages, api_base=api_base, max_tokens=max_tokens, **kwargs | ||
) |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.