diff --git a/openrecall/app.py b/openrecall/app.py index defd1e7..b13fe73 100644 --- a/openrecall/app.py +++ b/openrecall/app.py @@ -4,14 +4,11 @@ import numpy as np from flask import Flask, render_template_string, request, send_from_directory from jinja2 import BaseLoader -from openrecall.config import screenshots_path, appdata_folder +from openrecall.config import appdata_folder, screenshots_path from openrecall.database import create_db, get_all_entries, get_timestamps +from openrecall.nlp import cosine_similarity, get_embedding from openrecall.screenshot import record_screenshots_thread -from openrecall.utils import ( - human_readable_time, - timestamp_to_human_readable, -) -from openrecall.nlp import get_embedding, cosine_similarity +from openrecall.utils import human_readable_time, timestamp_to_human_readable app = Flask(__name__)