Update models.py

This commit is contained in:
Hexye 2023-10-04 22:59:09 +02:00 committed by GitHub
parent 0bd5730bcd
commit 3077671470
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -25,6 +25,7 @@ from .Provider import (
Aibn, Aibn,
Bing, Bing,
H2o, H2o,
Cromicle,
) )
@dataclass(unsafe_hash=True) @dataclass(unsafe_hash=True)
@ -54,7 +55,7 @@ gpt_35_turbo = Model(
name = 'gpt-3.5-turbo', name = 'gpt-3.5-turbo',
base_provider = 'openai', base_provider = 'openai',
best_provider = RetryProvider([ best_provider = RetryProvider([
DeepAi, ChatgptLogin, ChatgptAi, Aivvm, GptGo, AItianhu, Aichat, AItianhuSpace, Myshell, Aibn, ChatForAi, FreeGpt, Ylokh, DeepAi, ChatgptLogin, ChatgptAi, Aivvm, GptGo, AItianhu, Aichat, AItianhuSpace, Myshell, Aibn, ChatForAi, FreeGpt, Ylokh, Cromicle
]) ])
) )