2022-08-10 23:13:14 +02:00
|
|
|
# System Packages
|
|
|
|
import sys
|
|
|
|
|
2022-08-06 01:37:52 +02:00
|
|
|
# External Packages
|
|
|
|
import torch
|
2022-08-10 21:30:13 +02:00
|
|
|
import json
|
2022-08-06 01:37:52 +02:00
|
|
|
|
|
|
|
# Internal Packages
|
|
|
|
from src.processor.ledger.beancount_to_jsonl import beancount_to_jsonl
|
|
|
|
from src.processor.markdown.markdown_to_jsonl import markdown_to_jsonl
|
|
|
|
from src.processor.org_mode.org_to_jsonl import org_to_jsonl
|
|
|
|
from src.search_type import image_search, text_search
|
|
|
|
from src.utils.config import SearchType, SearchModels, ProcessorConfigModel, ConversationProcessorConfigModel
|
2022-08-06 02:05:35 +02:00
|
|
|
from src.utils import state
|
2022-08-06 01:37:52 +02:00
|
|
|
from src.utils.helpers import get_absolute_path
|
2022-08-10 21:30:13 +02:00
|
|
|
from src.utils.rawconfig import FullConfig, ProcessorConfig
|
2022-08-06 01:37:52 +02:00
|
|
|
|
|
|
|
|
2022-08-10 23:13:14 +02:00
|
|
|
def configure_server(args, required=False):
|
|
|
|
if args.config is None:
|
|
|
|
if required:
|
|
|
|
print('Exiting as Khoj is not configured. Configure the application to use it.')
|
|
|
|
sys.exit(1)
|
|
|
|
else:
|
|
|
|
return
|
|
|
|
else:
|
|
|
|
state.config = args.config
|
2022-08-06 01:37:52 +02:00
|
|
|
|
|
|
|
# Initialize the search model from Config
|
2022-08-10 23:13:14 +02:00
|
|
|
state.model = configure_search(state.model, state.config, args.regenerate, device=state.device, verbose=state.verbose)
|
2022-08-06 01:37:52 +02:00
|
|
|
|
|
|
|
# Initialize Processor from Config
|
2022-08-10 21:30:13 +02:00
|
|
|
state.processor_config = configure_processor(args.config.processor, verbose=state.verbose)
|
2022-08-06 01:37:52 +02:00
|
|
|
|
|
|
|
|
2022-08-06 02:20:04 +02:00
|
|
|
def configure_search(model: SearchModels, config: FullConfig, regenerate: bool, t: SearchType = None, device=torch.device("cpu"), verbose: int = 0):
|
2022-08-06 01:37:52 +02:00
|
|
|
# Initialize Org Notes Search
|
|
|
|
if (t == SearchType.Org or t == None) and config.content_type.org:
|
|
|
|
# Extract Entries, Generate Notes Embeddings
|
|
|
|
model.orgmode_search = text_search.setup(org_to_jsonl, config.content_type.org, search_config=config.search_type.asymmetric, regenerate=regenerate, device=device, verbose=verbose)
|
|
|
|
|
|
|
|
# Initialize Org Music Search
|
|
|
|
if (t == SearchType.Music or t == None) and config.content_type.music:
|
|
|
|
# Extract Entries, Generate Music Embeddings
|
|
|
|
model.music_search = text_search.setup(org_to_jsonl, config.content_type.music, search_config=config.search_type.asymmetric, regenerate=regenerate, device=device, verbose=verbose)
|
|
|
|
|
|
|
|
# Initialize Markdown Search
|
|
|
|
if (t == SearchType.Markdown or t == None) and config.content_type.markdown:
|
|
|
|
# Extract Entries, Generate Markdown Embeddings
|
|
|
|
model.markdown_search = text_search.setup(markdown_to_jsonl, config.content_type.markdown, search_config=config.search_type.asymmetric, regenerate=regenerate, device=device, verbose=verbose)
|
|
|
|
|
|
|
|
# Initialize Ledger Search
|
|
|
|
if (t == SearchType.Ledger or t == None) and config.content_type.ledger:
|
|
|
|
# Extract Entries, Generate Ledger Embeddings
|
|
|
|
model.ledger_search = text_search.setup(beancount_to_jsonl, config.content_type.ledger, search_config=config.search_type.symmetric, regenerate=regenerate, verbose=verbose)
|
|
|
|
|
|
|
|
# Initialize Image Search
|
|
|
|
if (t == SearchType.Image or t == None) and config.content_type.image:
|
|
|
|
# Extract Entries, Generate Image Embeddings
|
|
|
|
model.image_search = image_search.setup(config.content_type.image, search_config=config.search_type.image, regenerate=regenerate, verbose=verbose)
|
|
|
|
|
|
|
|
return model
|
|
|
|
|
|
|
|
|
2022-08-10 21:30:13 +02:00
|
|
|
def configure_processor(processor_config: ProcessorConfig, verbose: int):
|
|
|
|
if not processor_config:
|
2022-08-06 01:37:52 +02:00
|
|
|
return
|
|
|
|
|
2022-08-10 21:30:13 +02:00
|
|
|
processor = ProcessorConfigModel()
|
2022-08-06 01:37:52 +02:00
|
|
|
|
|
|
|
# Initialize Conversation Processor
|
2022-08-10 21:34:03 +02:00
|
|
|
if processor_config.conversation:
|
|
|
|
processor.conversation = configure_conversation_processor(processor_config.conversation, verbose)
|
2022-08-06 01:37:52 +02:00
|
|
|
|
2022-08-10 21:30:13 +02:00
|
|
|
return processor
|
|
|
|
|
|
|
|
|
|
|
|
def configure_conversation_processor(conversation_processor_config, verbose: int):
|
|
|
|
conversation_processor = ConversationProcessorConfigModel(conversation_processor_config, verbose)
|
|
|
|
|
|
|
|
conversation_logfile = conversation_processor.conversation_logfile
|
|
|
|
if conversation_processor.verbose:
|
2022-08-06 01:37:52 +02:00
|
|
|
print('INFO:\tLoading conversation logs from disk...')
|
|
|
|
|
|
|
|
if conversation_logfile.expanduser().absolute().is_file():
|
|
|
|
# Load Metadata Logs from Conversation Logfile
|
|
|
|
with open(get_absolute_path(conversation_logfile), 'r') as f:
|
2022-08-10 21:30:13 +02:00
|
|
|
conversation_processor.meta_log = json.load(f)
|
2022-08-06 01:37:52 +02:00
|
|
|
|
|
|
|
print('INFO:\tConversation logs loaded from disk.')
|
|
|
|
else:
|
|
|
|
# Initialize Conversation Logs
|
2022-08-10 21:30:13 +02:00
|
|
|
conversation_processor.meta_log = {}
|
|
|
|
conversation_processor.chat_session = ""
|
2022-08-06 01:37:52 +02:00
|
|
|
|
2022-08-10 21:30:13 +02:00
|
|
|
return conversation_processor
|