OpenGPT / g4f /models.py
AchyuthGamer's picture
Update g4f/models.py
914c1ca
raw history blame
No virus
618 Bytes
from g4f import Provider
class Model:
class model:
name: str
base_provider: str
best_provider: str
class gpt_35_turbo:
name: str = 'gpt-3.5-turbo'
base_provider: str = 'Achyuth'
best_provider: Provider.Provider = Provider.Wewordle
class gpt_35_turbo_0301:
name: str = 'gpt-3.5-turbo-0301'
base_provider: str = 'openai'
best_provider: Provider.Provider = Provider.Wewordle
class ModelUtils:
convert: dict = {
'gpt-3.5-turbo': Model.gpt_35_turbo,
'gpt-3.5-turbo-0301': Model.gpt_35_turbo_0301,
}