Chrono / bot /__init__.py
fikriazain's picture
git init
45c30cf
raw
history blame contribute delete
180 Bytes
from bot.chrono import ChronoBot
from langchain.memory import ConversationBufferMemory
memory = ConversationBufferMemory(memory_key="chat_history")
llm = ChronoBot(memory=memory)