feat(g4f/Provider/Liaobots.py): add support for GPT-3.5-Turbo model

This commit is contained in:
kqlio67 2024-10-03 00:44:59 +03:00
parent 6cd599b1c6
commit 11d3076fd7

View File

@ -9,6 +9,15 @@ from .helper import get_connector
from ..requests import raise_for_status
models = {
"gpt-3.5-turbo": {
"id": "gpt-3.5-turbo",
"name": "GPT-3.5-Turbo",
"model": "ChatGPT",
"provider": "OpenAI",
"maxLength": 48000,
"tokenLimit": 14000,
"context": "16K",
},
"gpt-4o-mini-free": {
"id": "gpt-4o-mini-free",
"name": "GPT-4o-Mini-Free",