forked from AmadeusITGroup/docs2vecs
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathsample-config-file-1.yml
More file actions
42 lines (36 loc) · 981 Bytes
/
sample-config-file-1.yml
File metadata and controls
42 lines (36 loc) · 981 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
definitions:
- skill: &FileScanner
type: file-scanner
name : multi-file-scanner
params:
path: /path/to/files/to/scan/
recursive: false
- skill: &FileReader
type: file-reader
name : multi-file-reader
- skill: &SemanticSplitter
type: splitter
name: semantic-splitter
params:
embedding_model:
endpoint: https://endpoint.openai.azure.com
api_key: env.AZURE_EMBEDDING_KEY
api_version: "api_version_here"
deployment_name: deployment_name_here
- skill: &FastEmbed
type: embedding
name: llama-fastembed
- skill: &ChromaDbVectorStore
type: vector-store
name: chromadb
params:
db_path: /path/to/your/Chroma/db
collection_name: semantic-split
- skillset: &MySkillset
- *FileScanner
- *FileReader
- *SemanticSplitter
- *FastEmbed
- *ChromaDbVectorStore
indexer:
skillset: *MySkillset