Update app.py
Browse files
app.py
CHANGED
@@ -20,6 +20,17 @@ import transformers
|
|
20 |
# https://huggingface.co/spaces/joyson072/LLm-Langchain/blob/main/app.py
|
21 |
from langchain.llms import HuggingFaceHub
|
22 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
23 |
|
24 |
# for the chain and prompt
|
25 |
from langchain.prompts import PromptTemplate
|
@@ -235,7 +246,7 @@ def func (message):
|
|
235 |
print(result)
|
236 |
return tokenizer.decode(result[0])
|
237 |
|
238 |
-
|
239 |
|
240 |
app = gr.Interface(
|
241 |
fn=func,
|
|
|
20 |
# https://huggingface.co/spaces/joyson072/LLm-Langchain/blob/main/app.py
|
21 |
from langchain.llms import HuggingFaceHub
|
22 |
|
23 |
+
# https://cobusgreyling.medium.com/langchain-creating-large-language-model-llm-applications-via-huggingface-192423883a74
|
24 |
+
from langchain.chains import ConversationChain
|
25 |
+
from langchain.chains.conversation.memory import ConversationBufferMemory
|
26 |
+
#conversation = ConversationChain(
|
27 |
+
# llm=llm,
|
28 |
+
# verbose=True,
|
29 |
+
# memory=ConversationBufferMemory()
|
30 |
+
#)
|
31 |
+
|
32 |
+
#conversation.predict(input="Hi there!")
|
33 |
+
|
34 |
|
35 |
# for the chain and prompt
|
36 |
from langchain.prompts import PromptTemplate
|
|
|
246 |
print(result)
|
247 |
return tokenizer.decode(result[0])
|
248 |
|
249 |
+
title="Conversation Bota"
|
250 |
|
251 |
app = gr.Interface(
|
252 |
fn=func,
|