Create app.py
Browse files
app.py
ADDED
|
@@ -0,0 +1,50 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
# app.py
|
| 2 |
+
import gradio as gr
|
| 3 |
+
from bs4 import BeautifulSoup
|
| 4 |
+
import requests
|
| 5 |
+
from transformers import pipeline
|
| 6 |
+
from sentence_transformers import SentenceTransformer
|
| 7 |
+
import faiss
|
| 8 |
+
import numpy as np
|
| 9 |
+
|
| 10 |
+
# Initialize models and variables
|
| 11 |
+
summarizer = pipeline("summarization", model="sshleifer/distilbart-cnn-12-6")
|
| 12 |
+
embedding_model = SentenceTransformer('all-MiniLM-L6-v2')
|
| 13 |
+
index = None
|
| 14 |
+
bookmarks = []
|
| 15 |
+
fetch_cache = {}
|
| 16 |
+
|
| 17 |
+
# Helper functions as defined above...
|
| 18 |
+
|
| 19 |
+
def parse_bookmarks(file_content):
|
| 20 |
+
# [Code from Step 4.1]
|
| 21 |
+
|
| 22 |
+
def fetch_url_info(bookmark):
|
| 23 |
+
# [Code from Step 4.2]
|
| 24 |
+
|
| 25 |
+
def generate_summary(bookmark):
|
| 26 |
+
# [Code from Step 4.3]
|
| 27 |
+
|
| 28 |
+
def vectorize_and_index(bookmarks):
|
| 29 |
+
# [Code from Step 4.4]
|
| 30 |
+
|
| 31 |
+
def process_uploaded_file(file):
|
| 32 |
+
# [Code from Step 5.1]
|
| 33 |
+
|
| 34 |
+
def chatbot_response(user_query):
|
| 35 |
+
# [Code from Step 5.2]
|
| 36 |
+
|
| 37 |
+
def display_bookmarks():
|
| 38 |
+
# [Code from Step 5.3]
|
| 39 |
+
|
| 40 |
+
def edit_bookmark(index, new_title, new_url):
|
| 41 |
+
# [Code from Step 5.3]
|
| 42 |
+
|
| 43 |
+
def delete_bookmark(index):
|
| 44 |
+
# [Code from Step 5.3]
|
| 45 |
+
|
| 46 |
+
def build_app():
|
| 47 |
+
# [Code from Step 6]
|
| 48 |
+
|
| 49 |
+
if __name__ == "__main__":
|
| 50 |
+
build_app()
|