Spaces:
Runtime error
Runtime error
KvrParaskevi
commited on
Update app.py
Browse files
app.py
CHANGED
@@ -62,7 +62,7 @@ AI:"""
|
|
62 |
prompt = PromptTemplate(template=template, input_variables=["history", "input"])
|
63 |
|
64 |
memory = ConversationBufferMemory(memory_key="history", llm = llm)
|
65 |
-
llm_chain = ConversationChain(
|
66 |
|
67 |
with gr.Blocks() as demo:
|
68 |
gr.Markdown("Hotel Booking Assistant Chat 🤗")
|
|
|
62 |
prompt = PromptTemplate(template=template, input_variables=["history", "input"])
|
63 |
|
64 |
memory = ConversationBufferMemory(memory_key="history", llm = llm)
|
65 |
+
llm_chain = ConversationChain(llm=llm, memory = memory)
|
66 |
|
67 |
with gr.Blocks() as demo:
|
68 |
gr.Markdown("Hotel Booking Assistant Chat 🤗")
|