mirror of
https://github.com/khoj-ai/khoj.git
synced 2024-11-23 15:38:55 +01:00
Clean up docker_sample_config.yml
- Uncomment other search types - Explain the file prefixes behavior and how it interfaces with the docker image
This commit is contained in:
parent
9802023c79
commit
9fb410fc25
1 changed files with 15 additions and 12 deletions
|
@ -1,4 +1,7 @@
|
|||
content-type:
|
||||
# The /data/folder/ prefix to the folders is here because this is
|
||||
# the directory to which the local files are copied in the docker-compose.
|
||||
# If changing, the docker-compose volumes should also be changed to match.
|
||||
org:
|
||||
input-files: null
|
||||
input-filter: "/data/notes/*.org"
|
||||
|
@ -6,22 +9,22 @@ content-type:
|
|||
embeddings-file: "/data/generated/.note_embeddings.pt"
|
||||
|
||||
ledger:
|
||||
# input-files: null
|
||||
# input-filter: /data/ledger/*.beancount
|
||||
# compressed-jsonl: /data/generated/.transactions.jsonl.gz
|
||||
# embeddings-file: /data/generated/.transaction_embeddings.pt
|
||||
input-files: null
|
||||
input-filter: /data/ledger/*.beancount
|
||||
compressed-jsonl: /data/generated/.transactions.jsonl.gz
|
||||
embeddings-file: /data/generated/.transaction_embeddings.pt
|
||||
|
||||
image:
|
||||
# input-directory: "/data/images/"
|
||||
# embeddings-file: "/data/generated/.image_embeddings.pt"
|
||||
# batch-size: 50
|
||||
# use-xmp-metadata: "no"
|
||||
input-directory: "/data/images/"
|
||||
embeddings-file: "/data/generated/.image_embeddings.pt"
|
||||
batch-size: 50
|
||||
use-xmp-metadata: "no"
|
||||
|
||||
music:
|
||||
# input-files: null
|
||||
# input-filter: "/data/music/*.org"
|
||||
# compressed-jsonl: "/data/generated/.songs.jsonl.gz"
|
||||
# embeddings-file: "/data/generated/.song_embeddings.pt"
|
||||
input-files: null
|
||||
input-filter: "/data/music/*.org"
|
||||
compressed-jsonl: "/data/generated/.songs.jsonl.gz"
|
||||
embeddings-file: "/data/generated/.song_embeddings.pt"
|
||||
|
||||
search-type:
|
||||
symmetric:
|
||||
|
|
Loading…
Reference in a new issue