This commit is contained in:
Dustin 2023-12-17 01:00:32 -05:00
parent 7819f07ec0
commit 52837bd024

View File

@ -51,7 +51,6 @@ class ollamarama:
# add messages to the history dictionary # add messages to the history dictionary
async def add_history(self, role, channel, sender, message): async def add_history(self, role, channel, sender, message):
#check if channel is in the history yet #check if channel is in the history yet
if channel in self.messages: if channel in self.messages:
#check if user is in channel history #check if user is in channel history
@ -76,7 +75,6 @@ class ollamarama:
# create GPT response # create GPT response
async def respond(self, channel, sender, message, sender2=None): async def respond(self, channel, sender, message, sender2=None):
try: try:
#Generate response #Generate response
response = completion( response = completion(
@ -169,7 +167,7 @@ class ollamarama:
if len(m) > 1: if len(m) > 1:
disp_name = m[0] disp_name = m[0]
name_id = "" name_id = ""
m = m[1] m = m[1] + " [your response must be one paragraph or less]"
if room_id in self.messages: if room_id in self.messages:
for user in self.messages[room_id]: for user in self.messages[room_id]:
try: try: