mirror of
https://github.com/khoj-ai/khoj.git
synced 2024-11-27 17:35:07 +01:00
Set input-filter to list in khoj_docker.yml and khoj_sample.yml
`input-filter' was converted to a list a while back but the sample khoj configs were not updated to reflect this. This change fixes that
This commit is contained in:
parent
74e779f8d0
commit
8b8e202ab3
2 changed files with 10 additions and 10 deletions
|
@ -4,20 +4,20 @@ content-type:
|
||||||
# If changing, the docker-compose volumes should also be changed to match.
|
# If changing, the docker-compose volumes should also be changed to match.
|
||||||
org:
|
org:
|
||||||
input-files: null
|
input-files: null
|
||||||
input-filter: "/data/org/*.org"
|
input-filter: ["/data/org/*.org"]
|
||||||
compressed-jsonl: "/data/embeddings/notes.jsonl.gz"
|
compressed-jsonl: "/data/embeddings/notes.jsonl.gz"
|
||||||
embeddings-file: "/data/embeddings/note_embeddings.pt"
|
embeddings-file: "/data/embeddings/note_embeddings.pt"
|
||||||
index_heading_entries: false
|
index_heading_entries: false
|
||||||
|
|
||||||
markdown:
|
markdown:
|
||||||
input-files: null
|
input-files: null
|
||||||
input-filter: "/data/markdown/*.md"
|
input-filter: ["/data/markdown/*.md"]
|
||||||
compressed-jsonl: "/data/embeddings/markdown.jsonl.gz"
|
compressed-jsonl: "/data/embeddings/markdown.jsonl.gz"
|
||||||
embeddings-file: "/data/embeddings/markdown_embeddings.pt"
|
embeddings-file: "/data/embeddings/markdown_embeddings.pt"
|
||||||
|
|
||||||
ledger:
|
ledger:
|
||||||
input-files: null
|
input-files: null
|
||||||
input-filter: /data/ledger/*.beancount
|
input-filter: [/data/ledger/*.beancount]
|
||||||
compressed-jsonl: /data/embeddings/transactions.jsonl.gz
|
compressed-jsonl: /data/embeddings/transactions.jsonl.gz
|
||||||
embeddings-file: /data/embeddings/transaction_embeddings.pt
|
embeddings-file: /data/embeddings/transaction_embeddings.pt
|
||||||
|
|
||||||
|
|
|
@ -1,33 +1,33 @@
|
||||||
content-type:
|
content-type:
|
||||||
org:
|
org:
|
||||||
input-files: # ["/path/to/org-file.org"] REQUIRED IF input-filter IS NOT SET OR
|
input-files: # ["/path/to/org-file.org"] REQUIRED IF input-filter IS NOT SET OR
|
||||||
input-filter: # /path/to/org/*.org REQUIRED IF input-files IS NOT SET
|
input-filter: # [/path/to/org/*.org] REQUIRED IF input-files IS NOT SET
|
||||||
compressed-jsonl: "~/.khoj/content/org/org.jsonl.gz"
|
compressed-jsonl: "~/.khoj/content/org/org.jsonl.gz"
|
||||||
embeddings-file: "~/.khoj/content/org/org_embeddings.pt"
|
embeddings-file: "~/.khoj/content/org/org_embeddings.pt"
|
||||||
index_heading_entries: false # Set to true to index entries with empty body
|
index_heading_entries: false # Set to true to index entries with empty body
|
||||||
|
|
||||||
markdown:
|
markdown:
|
||||||
input-files: # ["/path/to/markdown-file.md"] REQUIRED IF input-filter IS NOT SET OR
|
input-files: # ["/path/to/markdown-file.md"] REQUIRED IF input-filter IS NOT SET OR
|
||||||
input-filter: # "/path/to/markdown/*.md" REQUIRED IF input-files IS NOT SET
|
input-filter: # ["/path/to/markdown/*.md"] REQUIRED IF input-files IS NOT SET
|
||||||
compressed-jsonl: "~/.khoj/content/markdown/markdown.jsonl.gz"
|
compressed-jsonl: "~/.khoj/content/markdown/markdown.jsonl.gz"
|
||||||
embeddings-file: "~/.khoj/content/markdown/markdown_embeddings.pt"
|
embeddings-file: "~/.khoj/content/markdown/markdown_embeddings.pt"
|
||||||
|
|
||||||
ledger:
|
ledger:
|
||||||
input-files: # ["/path/to/ledger-file.beancount"] REQUIRED IF input-filter is not set OR
|
input-files: # ["/path/to/ledger-file.beancount"] REQUIRED IF input-filter is not set OR
|
||||||
input-filter: # /path/to/ledger/*.beancount REQUIRED IF input-files is not set
|
input-filter: # [/path/to/ledger/*.beancount] REQUIRED IF input-files is not set
|
||||||
compressed-jsonl: "~/.khoj/content/ledger/ledger.jsonl.gz"
|
compressed-jsonl: "~/.khoj/content/ledger/ledger.jsonl.gz"
|
||||||
embeddings-file: "~/.khoj/content/ledger/ledger_embeddings.pt"
|
embeddings-file: "~/.khoj/content/ledger/ledger_embeddings.pt"
|
||||||
|
|
||||||
image:
|
image:
|
||||||
input-directories: # ["/path/to/images/"] REQUIRED IF input-filter IS NOT SET OR
|
input-directories: # ["/path/to/images/"] REQUIRED IF input-filter IS NOT SET OR
|
||||||
input-filter: # /path/to/images/*.jpg REQUIRED IF input-directories IS NOT SET
|
input-filter: # [/path/to/images/*.jpg] REQUIRED IF input-directories IS NOT SET
|
||||||
embeddings-file: "~/.khoj/content/image/image_embeddings.pt"
|
embeddings-file: "~/.khoj/content/image/image_embeddings.pt"
|
||||||
batch-size: 50
|
batch-size: 50
|
||||||
use-xmp-metadata: false
|
use-xmp-metadata: false
|
||||||
|
|
||||||
music:
|
music:
|
||||||
input-files: # ["/path/to/music-file.org"] REQUIRED IF input-filter IS NOT SET OR
|
input-files: # ["/path/to/music-file.org"] REQUIRED IF input-filter IS NOT SET OR
|
||||||
input-filter: # /path/to/music/*.org REQUIRED IF input-files IS NOT SET
|
input-filter: # [/path/to/music/*.org] REQUIRED IF input-files IS NOT SET
|
||||||
compressed-jsonl: "~/.khoj/content/music/music.jsonl.gz"
|
compressed-jsonl: "~/.khoj/content/music/music.jsonl.gz"
|
||||||
embeddings-file: "~/.khoj/content/music/music_embeddings.pt"
|
embeddings-file: "~/.khoj/content/music/music_embeddings.pt"
|
||||||
|
|
||||||
|
|
Loading…
Reference in a new issue