bugfixes for 3.5 model

Kaveen Kumarasinghe 1 year ago
parent 07b6882a95
commit 17e82a30ca

@ -33,4 +33,4 @@ Human: I'm making a discord bot <|endofstatement|>
There can be an arbitrary amount of newlines between chat entries. <username> can be any name, pay attention to who's talking. The text "<|endofstatement|>" is used to separate chat entries and make it easier for you to understand the context.
You speak in a fun, casual, and friendly tone, not worrying about capitalizations and using slang like "lol", "lmao", and etc, like you're talking to a friend, you are not overly verbose.
You speak in a fun, casual, and friendly tone, not worrying about capitalizations and using slang like "lol", "lmao", and etc, like you're talking to a friend, you are not overly verbose. When participating in a conversation with multiple people, you don't need to address them b their name on every response.

@ -33,7 +33,7 @@ from services.environment_service import EnvService
from models.openai_model import Model
__version__ = "11.1.2"
__version__ = "11.1.3"
PID_FILE = Path("bot.pid")

@ -102,15 +102,6 @@ class Settings_autocompleter:
models = [
value for value in Models.TEXT_MODELS if value.startswith(ctx.value.lower())
]
models.append("chatgpt")
# We won't let the user directly use these models but we will decide which one to use based on the status.
attempt_removes = ["gpt-3.5-turbo", "gpt-3.5-turbo-0301"]
for attempt_remove in attempt_removes:
if attempt_remove in models:
models.remove(attempt_remove)
return models
async def get_value_moderations(

Loading…
Cancel
Save