joyson commited on
Commit
0b8c1ac
·
verified ·
1 Parent(s): 3e125e8

Create app.py

Browse files
Files changed (1) hide show
  1. app.py +31 -0
app.py ADDED
@@ -0,0 +1,31 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ import gradio as gr
2
+ import numpy as np
3
+ import voyageai
4
+ import pickle
5
+ from sklearn.metrics.pairwise import cosine_similarity
6
+
7
+ def my_pipe(text):
8
+ # To load the numpy array
9
+ with open('embeddings.pkl', 'rb') as f:
10
+ embeddings = pickle.load(f)
11
+ with open('all_quotes.pkl', 'rb') as f:
12
+ all_quotes = pickle.load(f)
13
+
14
+ text = [text]
15
+
16
+ vo = voyageai.Client(api_key="pa-pxjjMtiZrbP6e2gDl4AWHwsPzSTK00Uww0CnTUTW79U")
17
+ emb = np.array(vo.embed(text, model="voyage-2", input_type="document").embeddings)
18
+
19
+ similarities = cosine_similarity(embeddings, emb)
20
+ most_similar_index = np.argmax(similarities)
21
+ return all_quotes[most_similar_index]
22
+
23
+ def launch(input):
24
+ out = my_pipe(input)
25
+ return out
26
+
27
+ iface = gr.Interface(launch,
28
+ inputs="text",
29
+ outputs="text")
30
+
31
+ iface.launch()