Spaces:
Sleeping
Sleeping
File size: 909 Bytes
0b8c1ac a6e5854 a422ab3 0b8c1ac a6e5854 0b8c1ac |
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 |
import gradio as gr
import numpy as np
import voyageai
import pickle
from sklearn.metrics.pairwise import cosine_similarity
def my_pipe(text):
# To load the numpy array
with open('embeddings.pkl', 'rb') as f:
embeddings = pickle.load(f)
with open('all_quotes.pkl', 'rb') as f:
all_quotes = pickle.load(f)
text = [text]
vo = voyageai.Client(api_key="pa-pxjjMtiZrbP6e2gDl4AWHwsPzSTK00Uww0CnTUTW79U")
emb = np.array(vo.embed(text, model="voyage-2", input_type="document").embeddings)
similarities = cosine_similarity(embeddings, emb)
most_similar_indices = np.argsort(similarities, axis=0)[-3:]
return [all_quotes[i] for i in most_similar_indices.flatten()]
def launch(input):
out = my_pipe(input)
return "\n".join(out)
iface = gr.Interface(launch,
inputs="text",
outputs="text")
iface.launch() |