Add Berlin and Koala Provider

This commit is contained in:
Heiner Lohaus 2023-11-12 18:03:04 +01:00
parent 745ea57c63
commit 2fb932220d
5 changed files with 162 additions and 5 deletions

View file

@ -5,7 +5,6 @@ from .Provider import BaseProvider, RetryProvider
from .Provider import (
GptForLove,
ChatgptAi,
GptChatly,
DeepInfra,
ChatgptX,
ChatBase,
@ -13,10 +12,12 @@ from .Provider import (
FakeGpt,
FreeGpt,
NoowAi,
Berlin,
Llama2,
Vercel,
Aichat,
GPTalk,
Koala,
AiAsk,
GptGo,
Phind,
@ -51,10 +52,9 @@ gpt_35_long = Model(
name = 'gpt-3.5-turbo',
base_provider = 'openai',
best_provider = RetryProvider([
AiAsk, Aichat, FreeGpt, You,
GptChatly, GptForLove,
NoowAi, GeekGpt, Phind,
FakeGpt
FreeGpt, You,
GeekGpt, FakeGpt,
Berlin, Koala
])
)