Use YAML file to allow user to configure application. Add tests

- YAML Config
  - Can specify all params[1] earlier being passed via cmd args in config YAML
  - Can now also configure sentence-transformer models to use etc for search
    - [1] Config params
       - org files
       - compressed entries file config path
       - embeddings file config path

  - Include sample_config.yaml
  - Include sample .org file from this repos readmes

- CLI
  - Configuration Priority: Config via cmd > Config via YAML > Default Config
  - Test CLI, include test config.yml for the tests

- Set default type to None unless set via query param to API
  Run notes search if search_enabled, also if type is None (default)
  Prepares for running queries on all search types unless type
  specified in API query param

- Update Readme
This commit is contained in:
Debanjum Singh Solanky
2021-08-21 18:47:55 -07:00
parent bafc86d583
commit 78a1f4ebb4
6 changed files with 141 additions and 32 deletions

View File

@@ -18,7 +18,7 @@
Load ML model, generate embeddings and expose API to query specified org-mode files
#+begin_src shell
python3 src/main.py --input-files ~/Notes/Schedule.org ~/Notes/Incoming.org --verbose
python3 src/main.py --org-files ~/Notes/Schedule.org ~/Notes/Incoming.org -c sample_config.yml --verbose
#+end_src
** Use