Skip to content

Commit

Permalink
Automated formatting changes
Browse files Browse the repository at this point in the history
  • Loading branch information
Elias2660 authored Jul 13, 2024
1 parent 7c2cc19 commit efb31fa
Showing 1 changed file with 3 additions and 1 deletion.
4 changes: 3 additions & 1 deletion cogs/ChatBotPrompts.py
Original file line number Diff line number Diff line change
Expand Up @@ -29,7 +29,9 @@ async def simple_query(
elif "claude" in model:
response = gptFunctions.perform_claude_query(query=message, model=model)
elif "llama" in model or "mixtral" in model:
response = gptFunctions.perform_llama_or_mixtral_query(query=message, model=model)
response = gptFunctions.perform_llama_or_mixtral_query(
query=message, model=model
)

embed = discord.Embed(title="Chatbot Prompt", color=discord.Color.blue())
embed.set_author(
Expand Down

0 comments on commit efb31fa

Please sign in to comment.