priyam169 commited on
Commit
fb58d38
·
verified ·
1 Parent(s): 049f30f

Create app.py

Browse files
Files changed (1) hide show
  1. app.py +50 -0
app.py ADDED
@@ -0,0 +1,50 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+
2
+ import streamlit as st
3
+ import os
4
+ from langchain_openai import OpenAIEmbeddings
5
+
6
+ from langchain_community.vectorstores import FAISS
7
+
8
+ from dotenv import load_dotenv
9
+
10
+ load_dotenv()
11
+
12
+ #customize the appearance of then Streamlit application's web page
13
+ st.set_page_config(page_title="Educate Kids", page_icon=":robot:")
14
+ st.header("Hey, Ask me something & I will give out similar things")
15
+
16
+ #Initialize the OpenAIEmbeddings object
17
+ embeddings = OpenAIEmbeddings()
18
+
19
+ # import CSV file data
20
+ from langchain.document_loaders.csv_loader import CSVLoader
21
+ loader = CSVLoader(file_path='myData.csv', csv_args={
22
+ 'delimiter': ',',
23
+ 'quotechar': '"',
24
+ 'fieldnames': ['Words']
25
+ })
26
+
27
+ data = loader.load()
28
+
29
+ #Display the data
30
+ print(data)
31
+
32
+ db = FAISS.from_documents(data, embeddings)
33
+
34
+ #Function to receive input from user
35
+ def get_text():
36
+ input_text = st.text_input("You: ", key= input)
37
+ return input_text
38
+
39
+
40
+ user_input=get_text()
41
+ submit = st.button('Find similar Things')
42
+
43
+ if submit:
44
+
45
+ #fetch the similar text
46
+ docs = db.similarity_search(user_input)
47
+ print(docs)
48
+ st.subheader("Top Matches:")
49
+ st.text(docs[0].page_content)
50
+ st.text(docs[1].page_content)