2021-08-17 12:59:58 +02:00
|
|
|
# Standard Packages
|
|
|
|
import sys
|
|
|
|
import pathlib
|
2021-08-16 02:50:08 +02:00
|
|
|
from typing import Optional
|
2021-08-17 12:59:58 +02:00
|
|
|
|
|
|
|
# External Packages
|
|
|
|
import uvicorn
|
2021-08-16 02:50:08 +02:00
|
|
|
from fastapi import FastAPI
|
2021-08-17 12:59:58 +02:00
|
|
|
|
|
|
|
# Internal Packages
|
2021-08-23 06:00:54 +02:00
|
|
|
from search_type import asymmetric, symmetric_ledger, image_search
|
2021-08-22 04:21:38 +02:00
|
|
|
from utils.helpers import get_from_dict
|
|
|
|
from utils.cli import cli
|
2021-08-17 12:59:58 +02:00
|
|
|
|
2021-08-16 02:50:08 +02:00
|
|
|
|
|
|
|
app = FastAPI()
|
|
|
|
|
|
|
|
|
|
|
|
@app.get('/search')
|
2021-08-17 13:36:48 +02:00
|
|
|
def search(q: str, n: Optional[int] = 5, t: Optional[str] = None):
|
2021-08-16 02:50:08 +02:00
|
|
|
if q is None or q == '':
|
|
|
|
print(f'No query param (q) passed in API call to initiate search')
|
|
|
|
return {}
|
|
|
|
|
|
|
|
user_query = q
|
|
|
|
results_count = n
|
|
|
|
|
2021-08-22 03:47:55 +02:00
|
|
|
if (t == 'notes' or t == None) and notes_search_enabled:
|
2021-08-16 02:50:08 +02:00
|
|
|
# query notes
|
2021-08-17 01:52:48 +02:00
|
|
|
hits = asymmetric.query_notes(
|
2021-08-17 03:52:38 +02:00
|
|
|
user_query,
|
2021-08-17 01:52:48 +02:00
|
|
|
corpus_embeddings,
|
|
|
|
entries,
|
|
|
|
bi_encoder,
|
|
|
|
cross_encoder,
|
|
|
|
top_k)
|
2021-08-16 02:50:08 +02:00
|
|
|
|
|
|
|
# collate and return results
|
2021-08-16 04:09:50 +02:00
|
|
|
return asymmetric.collate_results(hits, entries, results_count)
|
2021-08-16 02:50:08 +02:00
|
|
|
|
2021-08-29 12:07:36 +02:00
|
|
|
if (t == 'music' or t == None) and music_search_enabled:
|
|
|
|
# query music library
|
|
|
|
hits = asymmetric.query_notes(
|
|
|
|
user_query,
|
|
|
|
song_embeddings,
|
|
|
|
songs,
|
|
|
|
song_encoder,
|
|
|
|
song_cross_encoder,
|
|
|
|
song_top_k)
|
|
|
|
|
|
|
|
# collate and return results
|
|
|
|
return asymmetric.collate_results(hits, songs, results_count)
|
|
|
|
|
2021-08-22 12:16:57 +02:00
|
|
|
if (t == 'ledger' or t == None) and ledger_search_enabled:
|
|
|
|
# query transactions
|
|
|
|
hits = symmetric_ledger.query_transactions(
|
|
|
|
user_query,
|
|
|
|
transaction_embeddings,
|
|
|
|
transactions,
|
|
|
|
symmetric_encoder,
|
|
|
|
symmetric_cross_encoder)
|
|
|
|
|
|
|
|
# collate and return results
|
|
|
|
return symmetric_ledger.collate_results(hits, transactions, results_count)
|
|
|
|
|
2021-08-23 06:00:54 +02:00
|
|
|
if (t == 'image' or t == None) and image_search_enabled:
|
|
|
|
# query transactions
|
|
|
|
hits = image_search.query_images(
|
|
|
|
user_query,
|
|
|
|
image_embeddings,
|
2021-09-16 07:54:03 +02:00
|
|
|
image_metadata_embeddings,
|
2021-08-23 06:00:54 +02:00
|
|
|
image_encoder,
|
|
|
|
results_count,
|
|
|
|
args.verbose)
|
|
|
|
|
|
|
|
# collate and return results
|
|
|
|
return image_search.collate_results(
|
|
|
|
hits,
|
|
|
|
image_names,
|
|
|
|
image_config['input-directory'],
|
|
|
|
results_count)
|
|
|
|
|
2021-08-16 02:50:08 +02:00
|
|
|
else:
|
|
|
|
return {}
|
|
|
|
|
|
|
|
|
2021-08-17 03:52:38 +02:00
|
|
|
@app.get('/regenerate')
|
2021-08-17 13:36:48 +02:00
|
|
|
def regenerate(t: Optional[str] = None):
|
2021-08-22 03:47:55 +02:00
|
|
|
if (t == 'notes' or t == None) and notes_search_enabled:
|
2021-08-17 13:36:48 +02:00
|
|
|
# Extract Entries, Generate Embeddings
|
|
|
|
global corpus_embeddings
|
|
|
|
global entries
|
2021-08-22 03:47:55 +02:00
|
|
|
entries, corpus_embeddings, _, _, _ = asymmetric.setup(
|
|
|
|
org_config['input-files'],
|
|
|
|
org_config['input-filter'],
|
|
|
|
pathlib.Path(org_config['compressed-jsonl']),
|
|
|
|
pathlib.Path(org_config['embeddings-file']),
|
|
|
|
regenerate=True,
|
|
|
|
verbose=args.verbose)
|
|
|
|
|
2021-08-29 12:07:36 +02:00
|
|
|
if (t == 'music' or t == None) and music_search_enabled:
|
|
|
|
# Extract Entries, Generate Song Embeddings
|
|
|
|
global song_embeddings
|
|
|
|
global songs
|
|
|
|
songs, song_embeddings, _, _, _ = asymmetric.setup(
|
|
|
|
song_config['input-files'],
|
|
|
|
song_config['input-filter'],
|
|
|
|
pathlib.Path(song_config['compressed-jsonl']),
|
|
|
|
pathlib.Path(song_config['embeddings-file']),
|
|
|
|
regenerate=True,
|
|
|
|
verbose=args.verbose)
|
|
|
|
|
2021-08-22 12:16:57 +02:00
|
|
|
if (t == 'ledger' or t == None) and ledger_search_enabled:
|
|
|
|
# Extract Entries, Generate Embeddings
|
|
|
|
global transaction_embeddings
|
|
|
|
global transactions
|
|
|
|
transactions, transaction_embeddings, _, _, _ = symmetric_ledger.setup(
|
|
|
|
ledger_config['input-files'],
|
|
|
|
ledger_config['input-filter'],
|
|
|
|
pathlib.Path(ledger_config['compressed-jsonl']),
|
|
|
|
pathlib.Path(ledger_config['embeddings-file']),
|
|
|
|
regenerate=True,
|
|
|
|
verbose=args.verbose)
|
2021-08-17 08:47:33 +02:00
|
|
|
|
2021-08-23 06:00:54 +02:00
|
|
|
if (t == 'image' or t == None) and image_search_enabled:
|
|
|
|
# Extract Images, Generate Embeddings
|
|
|
|
global image_embeddings
|
2021-09-16 07:54:03 +02:00
|
|
|
global image_metadata_embeddings
|
2021-08-23 06:00:54 +02:00
|
|
|
global image_names
|
2021-09-16 07:54:03 +02:00
|
|
|
|
|
|
|
image_names, image_embeddings, image_metadata_embeddings, _ = image_search.setup(
|
2021-08-23 06:00:54 +02:00
|
|
|
pathlib.Path(image_config['input-directory']),
|
|
|
|
pathlib.Path(image_config['embeddings-file']),
|
|
|
|
regenerate=True,
|
|
|
|
verbose=args.verbose)
|
|
|
|
|
2021-08-17 08:47:33 +02:00
|
|
|
return {'status': 'ok', 'message': 'regeneration completed'}
|
2021-08-17 03:52:38 +02:00
|
|
|
|
|
|
|
|
2021-08-17 13:00:45 +02:00
|
|
|
if __name__ == '__main__':
|
2021-08-22 04:21:38 +02:00
|
|
|
args = cli(sys.argv[1:])
|
2021-08-22 03:47:55 +02:00
|
|
|
|
2021-08-22 12:16:57 +02:00
|
|
|
# Initialize Org Notes Search
|
|
|
|
org_config = get_from_dict(args.config, 'content-type', 'org')
|
2021-08-22 03:47:55 +02:00
|
|
|
notes_search_enabled = False
|
2021-08-22 12:16:57 +02:00
|
|
|
if org_config and ('input-files' in org_config or 'input-filter' in org_config):
|
2021-08-22 03:47:55 +02:00
|
|
|
notes_search_enabled = True
|
|
|
|
entries, corpus_embeddings, bi_encoder, cross_encoder, top_k = asymmetric.setup(
|
|
|
|
org_config['input-files'],
|
|
|
|
org_config['input-filter'],
|
|
|
|
pathlib.Path(org_config['compressed-jsonl']),
|
|
|
|
pathlib.Path(org_config['embeddings-file']),
|
|
|
|
args.regenerate,
|
|
|
|
args.verbose)
|
2021-08-16 02:50:08 +02:00
|
|
|
|
2021-08-29 12:07:36 +02:00
|
|
|
# Initialize Org Music Search
|
|
|
|
song_config = get_from_dict(args.config, 'content-type', 'music')
|
|
|
|
music_search_enabled = False
|
|
|
|
if song_config and ('input-files' in song_config or 'input-filter' in song_config):
|
|
|
|
music_search_enabled = True
|
|
|
|
songs, song_embeddings, song_encoder, song_cross_encoder, song_top_k = asymmetric.setup(
|
|
|
|
song_config['input-files'],
|
|
|
|
song_config['input-filter'],
|
|
|
|
pathlib.Path(song_config['compressed-jsonl']),
|
|
|
|
pathlib.Path(song_config['embeddings-file']),
|
|
|
|
args.regenerate,
|
|
|
|
args.verbose)
|
|
|
|
|
2021-08-22 12:16:57 +02:00
|
|
|
# Initialize Ledger Search
|
|
|
|
ledger_config = get_from_dict(args.config, 'content-type', 'ledger')
|
|
|
|
ledger_search_enabled = False
|
|
|
|
if ledger_config and ('input-files' in ledger_config or 'input-filter' in ledger_config):
|
|
|
|
ledger_search_enabled = True
|
|
|
|
transactions, transaction_embeddings, symmetric_encoder, symmetric_cross_encoder, _ = symmetric_ledger.setup(
|
|
|
|
ledger_config['input-files'],
|
|
|
|
ledger_config['input-filter'],
|
|
|
|
pathlib.Path(ledger_config['compressed-jsonl']),
|
|
|
|
pathlib.Path(ledger_config['embeddings-file']),
|
|
|
|
args.regenerate,
|
|
|
|
args.verbose)
|
2021-08-16 02:50:08 +02:00
|
|
|
|
2021-08-23 06:00:54 +02:00
|
|
|
# Initialize Image Search
|
|
|
|
image_config = get_from_dict(args.config, 'content-type', 'image')
|
|
|
|
image_search_enabled = False
|
|
|
|
if image_config and 'input-directory' in image_config:
|
|
|
|
image_search_enabled = True
|
2021-09-16 07:54:03 +02:00
|
|
|
image_names, image_embeddings, image_metadata_embeddings, image_encoder = image_search.setup(
|
2021-08-23 06:00:54 +02:00
|
|
|
pathlib.Path(image_config['input-directory']),
|
|
|
|
pathlib.Path(image_config['embeddings-file']),
|
2021-09-16 19:51:39 +02:00
|
|
|
batch_size=image_config['batch-size'],
|
|
|
|
regenerate=args.regenerate,
|
2021-09-16 21:01:05 +02:00
|
|
|
use_xmp_metadata={'yes': True, 'no': False}[image_config['use-xmp-metadata']],
|
2021-09-16 19:51:39 +02:00
|
|
|
verbose=args.verbose)
|
2021-08-23 06:00:54 +02:00
|
|
|
|
2021-08-16 02:50:08 +02:00
|
|
|
# Start Application Server
|
|
|
|
uvicorn.run(app)
|