Merge branch 'main' into gpt-index

Kaveen Kumarasinghe 2 years ago
commit 33e68588ee

@ -222,7 +222,6 @@ class ModerationsService(discord.Cog, name="ModerationsService"):
) )
async def build_moderation_settings_embed(self, category, mod_set): async def build_moderation_settings_embed(self, category, mod_set):
embed = discord.Embed( embed = discord.Embed(
title="Moderation Settings", title="Moderation Settings",
description="The moderation settings for this guild for the type: " description="The moderation settings for this guild for the type: "

@ -4,6 +4,7 @@ import traceback
import discord import discord
from sqlitedict import SqliteDict from sqlitedict import SqliteDict
from models.openai_model import Override
from services.environment_service import EnvService from services.environment_service import EnvService
from models.user_model import RedoUser from models.user_model import RedoUser
from services.image_service import ImageService from services.image_service import ImageService
@ -85,7 +86,7 @@ class ImgPromptOptimizer(discord.Cog, name="ImgPromptOptimizer"):
top_p_override=1.0, top_p_override=1.0,
temp_override=0.9, temp_override=0.9,
presence_penalty_override=0.5, presence_penalty_override=0.5,
best_of_override=2, best_of_override=1,
max_tokens_override=80, max_tokens_override=80,
custom_api_key=user_api_key, custom_api_key=user_api_key,
) )
@ -188,7 +189,6 @@ class DrawButton(discord.ui.Button["OptimizeView"]):
self.custom_api_key = custom_api_key self.custom_api_key = custom_api_key
async def callback(self, interaction: discord.Interaction): async def callback(self, interaction: discord.Interaction):
user_id = interaction.user.id user_id = interaction.user.id
interaction_id = interaction.message.id interaction_id = interaction.message.id
@ -260,10 +260,12 @@ class RedoButton(discord.ui.Button["OptimizeView"]):
await interaction.response.send_message( await interaction.response.send_message(
"Redoing your original request...", ephemeral=True, delete_after=20 "Redoing your original request...", ephemeral=True, delete_after=20
) )
overrides = Override(1.0, 0.9, 0.5)
await TextService.encapsulated_send( await TextService.encapsulated_send(
self.converser_cog, self.converser_cog,
id=user_id, id=user_id,
prompt=prompt, prompt=prompt,
overrides=overrides,
ctx=ctx, ctx=ctx,
response_message=response_message, response_message=response_message,
custom_api_key=self.custom_api_key, custom_api_key=self.custom_api_key,

@ -31,7 +31,7 @@ from services.environment_service import EnvService
from models.openai_model import Model from models.openai_model import Model
__version__ = "9.0.2" __version__ = "9.0.4"
PID_FILE = Path("bot.pid") PID_FILE = Path("bot.pid")

@ -139,6 +139,6 @@ replace [3] with a list of detailed descriptions about the environment of the sc
replace [4] with a list of detailed descriptions about the mood/feelings and atmosphere of the scene replace [4] with a list of detailed descriptions about the mood/feelings and atmosphere of the scene
replace [5] with a list of detailed descriptions about the technical basis like render engine/camera model and details replace [5] with a list of detailed descriptions about the technical basis like render engine/camera model and details
The outcome depends on the coherency of the prompt. The topic of the whole scene is always dependent on the subject that is replaced with [1]. There is not always a need to add lighting information, decide as neccessary. Do not use more than 50 words under any circumstance. The outcome depends on the coherency of the prompt. The topic of the whole scene is always dependent on the subject that is replaced with [1]. There is not always a need to add lighting information, decide as neccessary. Do not use more than 40 words under any circumstance. Be concise but descriptive.
Input Prompt: Input Prompt:

@ -639,7 +639,6 @@ class Model:
codex=False, codex=False,
custom_api_key=None, custom_api_key=None,
): ):
# Validate that all the parameters are in a good state before we send the request # Validate that all the parameters are in a good state before we send the request
if len(instruction) < self.prompt_min_length: if len(instruction) < self.prompt_min_length:
raise ValueError( raise ValueError(
@ -769,7 +768,6 @@ class Model:
) -> ( ) -> (
Tuple[dict, bool] Tuple[dict, bool]
): # The response, and a boolean indicating whether or not the context limit was reached. ): # The response, and a boolean indicating whether or not the context limit was reached.
# Validate that all the parameters are in a good state before we send the request # Validate that all the parameters are in a good state before we send the request
if len(prompt) < self.prompt_min_length: if len(prompt) < self.prompt_min_length:
raise ValueError( raise ValueError(
@ -815,7 +813,6 @@ class Model:
@staticmethod @staticmethod
async def send_test_request(api_key): async def send_test_request(api_key):
async with aiohttp.ClientSession() as session: async with aiohttp.ClientSession() as session:
payload = { payload = {
"model": Models.LOW_USAGE_MODEL, "model": Models.LOW_USAGE_MODEL,

@ -155,7 +155,6 @@ class Moderation:
@staticmethod @staticmethod
def determine_moderation_result(text, response, warn_set, delete_set): def determine_moderation_result(text, response, warn_set, delete_set):
warn_result, flagged_warn = warn_set.moderate(text, response) warn_result, flagged_warn = warn_set.moderate(text, response)
delete_result, flagged_delete = delete_set.moderate(text, response) delete_result, flagged_delete = delete_set.moderate(text, response)
@ -330,7 +329,6 @@ class ApproveMessageButton(discord.ui.Button["ModerationAdminView"]):
self.current_num = current_num self.current_num = current_num
async def callback(self, interaction: discord.Interaction): async def callback(self, interaction: discord.Interaction):
# Remove reactions on the message, delete the moderation message # Remove reactions on the message, delete the moderation message
await self.message.clear_reactions() await self.message.clear_reactions()
await self.moderation_message[0].delete() await self.moderation_message[0].delete()
@ -344,7 +342,6 @@ class DeleteMessageButton(discord.ui.Button["ModerationAdminView"]):
self.current_num = current_num self.current_num = current_num
async def callback(self, interaction: discord.Interaction): async def callback(self, interaction: discord.Interaction):
# Get the user # Get the user
await self.message.delete() await self.message.delete()
await interaction.response.send_message( await interaction.response.send_message(

@ -217,7 +217,6 @@ class TextService:
and not from_edit_command and not from_edit_command
and not converser_cog.pinecone_service # This should only happen if we are not doing summarizations. and not converser_cog.pinecone_service # This should only happen if we are not doing summarizations.
): ):
# We don't need to worry about the differences between interactions and messages in this block, # We don't need to worry about the differences between interactions and messages in this block,
# because if we are in this block, we can only be using a message object for ctx # because if we are in this block, we can only be using a message object for ctx
if converser_cog.model.summarize_conversations: if converser_cog.model.summarize_conversations:
@ -545,7 +544,6 @@ class TextService:
# If the user is in a conversation thread # If the user is in a conversation thread
if message.channel.id in converser_cog.conversation_threads: if message.channel.id in converser_cog.conversation_threads:
# Since this is async, we don't want to allow the user to send another prompt while a conversation # Since this is async, we don't want to allow the user to send another prompt while a conversation
# prompt is processing, that'll mess up the conversation history! # prompt is processing, that'll mess up the conversation history!
if message.author.id in converser_cog.awaiting_responses: if message.author.id in converser_cog.awaiting_responses:
@ -632,6 +630,14 @@ class TextService:
conversation_overrides["presence_penalty"], conversation_overrides["presence_penalty"],
) )
# Send an embed that tells the user that the bot is thinking
thinking_embed = discord.Embed(
title=f"🤖💬 Thinking...",
color=0x808080,
)
thinking_embed.set_footer(text="This may take a few seconds.")
thinking_message = await message.reply(embed=thinking_embed)
await TextService.encapsulated_send( await TextService.encapsulated_send(
converser_cog, converser_cog,
message.channel.id, message.channel.id,
@ -641,6 +647,10 @@ class TextService:
model=converser_cog.conversation_threads[message.channel.id].model, model=converser_cog.conversation_threads[message.channel.id].model,
custom_api_key=user_api_key, custom_api_key=user_api_key,
) )
# Delete the thinking embed
await thinking_message.delete()
return True return True
@staticmethod @staticmethod
@ -780,7 +790,6 @@ class EndConvoButton(discord.ui.Button["ConversationView"]):
self.converser_cog = converser_cog self.converser_cog = converser_cog
async def callback(self, interaction: discord.Interaction): async def callback(self, interaction: discord.Interaction):
# Get the user # Get the user
user_id = interaction.user.id user_id = interaction.user.id
if ( if (
@ -820,7 +829,6 @@ class RedoButton(discord.ui.Button["ConversationView"]):
self.custom_api_key = custom_api_key self.custom_api_key = custom_api_key
async def callback(self, interaction: discord.Interaction): async def callback(self, interaction: discord.Interaction):
# Get the user # Get the user
user_id = interaction.user.id user_id = interaction.user.id
if user_id in self.converser_cog.redo_users and self.converser_cog.redo_users[ if user_id in self.converser_cog.redo_users and self.converser_cog.redo_users[

Loading…
Cancel
Save