Spaces:
Sleeping
Sleeping
Update app.py
Browse files
app.py
CHANGED
@@ -1,7 +1,6 @@
|
|
1 |
-
from
|
2 |
-
from
|
3 |
-
from
|
4 |
-
from langchain_community.llms import Ollama
|
5 |
import streamlit as st
|
6 |
import os
|
7 |
from dotenv import load_dotenv
|
@@ -16,22 +15,26 @@ os.environ["LANGCHAIN_API_KEY"] = os.getenv("LANGCHAIN_API_KEY")
|
|
16 |
# Prompt Template
|
17 |
prompt = ChatPromptTemplate.from_messages(
|
18 |
[
|
19 |
-
("system", "You are a helpful assistant. Please respond to the user queries"),
|
20 |
("user", "Question: {question}")
|
21 |
]
|
22 |
)
|
23 |
|
24 |
-
#
|
25 |
-
|
26 |
-
|
27 |
-
# User input
|
28 |
-
input_text = st.text_input("Search the topic you want")
|
29 |
|
30 |
-
#
|
31 |
-
llm = Ollama(model="llama2")
|
32 |
output_parser = StrOutputParser()
|
|
|
|
|
33 |
chain = prompt | llm | output_parser
|
34 |
|
|
|
|
|
|
|
|
|
|
|
|
|
35 |
# Display result when user inputs text
|
36 |
if input_text:
|
37 |
try:
|
|
|
1 |
+
from langchain.llms import Ollama # Corrected import
|
2 |
+
from langchain.prompts import ChatPromptTemplate # Corrected import
|
3 |
+
from langchain.output_parsers import StrOutputParser # Corrected import
|
|
|
4 |
import streamlit as st
|
5 |
import os
|
6 |
from dotenv import load_dotenv
|
|
|
15 |
# Prompt Template
|
16 |
prompt = ChatPromptTemplate.from_messages(
|
17 |
[
|
18 |
+
("system", "You are a helpful assistant. Please respond to the user queries."),
|
19 |
("user", "Question: {question}")
|
20 |
]
|
21 |
)
|
22 |
|
23 |
+
# Initialize the LLM
|
24 |
+
llm = Ollama(model="llama2") # Ensure "llama2" is the correct model name
|
|
|
|
|
|
|
25 |
|
26 |
+
# Output Parser
|
|
|
27 |
output_parser = StrOutputParser()
|
28 |
+
|
29 |
+
# Chain setup
|
30 |
chain = prompt | llm | output_parser
|
31 |
|
32 |
+
# Streamlit app setup
|
33 |
+
st.title('LangChain Demo with LLaMA2 API')
|
34 |
+
|
35 |
+
# User input
|
36 |
+
input_text = st.text_input("Enter the topic you want to search:")
|
37 |
+
|
38 |
# Display result when user inputs text
|
39 |
if input_text:
|
40 |
try:
|