Add missing comma

This commit is contained in:
Nexus 2024-01-12 15:55:31 +00:00
parent 930d86920a
commit f6d9d765a9

View file

@ -76,7 +76,7 @@ class ChatHistory:
key = os.urandom(3).hex() key = os.urandom(3).hex()
self._internal[key] = { self._internal[key] = {
"member": member, "member": member,
"seed": round(time.time()) "seed": round(time.time()),
"messages": [] "messages": []
} }
with open("./assets/ollama-prompt.txt") as file: with open("./assets/ollama-prompt.txt") as file: