mirror of
https://github.com/xtekky/gpt4free.git
synced 2025-12-15 14:51:19 -08:00
Fix: Aivvm: KeyError: ''
and TypeError: issubclass() arg 1 must be a class
This commit is contained in:
parent
bf78b4d033
commit
4edd7518de
2 changed files with 10 additions and 4 deletions
|
|
@ -2,7 +2,7 @@ from __future__ import annotations
|
|||
import requests
|
||||
|
||||
from .base_provider import BaseProvider
|
||||
from ..typing import Any, CreateResult
|
||||
from ..typing import CreateResult
|
||||
|
||||
models = {
|
||||
'gpt-3.5-turbo': {'id': 'gpt-3.5-turbo', 'name': 'GPT-3.5'},
|
||||
|
|
@ -26,8 +26,14 @@ class Aivvm(BaseProvider):
|
|||
def create_completion(cls,
|
||||
model: str,
|
||||
messages: list[dict[str, str]],
|
||||
stream: bool, **kwargs: Any) -> CreateResult:
|
||||
|
||||
stream: bool,
|
||||
**kwargs
|
||||
) -> CreateResult:
|
||||
if not model:
|
||||
model = "gpt-3.5-turbo"
|
||||
elif model not in models:
|
||||
raise ValueError(f"Model are not supported: {model}")
|
||||
|
||||
headers = {
|
||||
"authority" : "chat.aivvm.com",
|
||||
"accept" : "*/*",
|
||||
|
|
|
|||
|
|
@ -24,7 +24,7 @@ from .Provider import (
|
|||
class Model:
|
||||
name: str
|
||||
base_provider: str
|
||||
best_provider: Union[type[BaseProvider], tuple[type[BaseProvider]]] = None
|
||||
best_provider: Union[type[BaseProvider], RetryProvider] = None
|
||||
|
||||
# Config for HuggingChat, OpenAssistant
|
||||
# Works for Liaobots, H2o, OpenaiChat, Yqcloud, You
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue