Fixing memory of Conjurer

This commit is contained in:
2024-04-28 12:27:29 +02:00
parent 217533c91f
commit 032cc41c9b
2 changed files with 51 additions and 11 deletions
+18 -11
View File
@@ -1021,26 +1021,33 @@ async def handle_response(
logger.info(result)
temp = {"role": "assistant", "content": result}
history.append(temp)
if request_type:
with open(MEMORY_FIVE_MUZYKA, "r+", encoding=ENCODING) as file:
if request_type == "MUSIC":
with open(MEMORY_FIVE_MUZYKA, "r+", encoding=ENCODING) as file_music_memory:
# First we load existing data into a dict.
file_data = json.load(file)
file_data = json.load(file_music_memory)
# Join new_data with file_data inside emp_details
file_data.append(temp)
# Sets file's current position at offset.
file.seek(0)
file_music_memory.seek(0)
# convert back to json.
json.dump(file_data, file, indent=4)
json.dump(file_data, file_music_memory, indent=4)
elif request_type == "RANDOM":
with open(MEMORY_FIVE_SIARA, "r+", encoding=ENCODING) as file_memory:
# First we load existing data into a dict.
file_data = json.load(file_memory)
# Join new_data with file_data inside emp_details
file_data.append(temp)
file_memory.seek(0)
# convert back to json.
json.dump(file_data, file_memory, indent=4)
else:
with open(MEMORY_FIVE_SIARA, "r+", encoding=ENCODING) as file:
with open(MEMORY_FIVE_SIARA, "r+", encoding=ENCODING) as file_memory:
# First we load existing data into a dict.
file_data = json.load(file)
file_data = json.load(file_memory)
# Join new_data with file_data inside emp_details
file_data.append(temp)
# Sets file's current position at offset.
file.seek(0)
file_memory.seek(0)
# convert back to json.
json.dump(file_data, file, indent=4)
json.dump(file_data, file_memory, indent=4)
return result, MESSAGE_TABLE