| log_dir: '../storage/logs' |
| log_chunk_dir: '../storage/logs/chunks' |
| device: 'cpu' |
|
|
| vectorstore: |
| embedd_files: False |
| data_path: '../storage/data' |
| url_file_path: '../storage/data/urls.txt' |
| expand_urls: True |
| db_option : 'RAGatouille' |
| db_path : '../vectorstores' |
| model : 'sentence-transformers/all-MiniLM-L6-v2' |
| search_top_k : 3 |
| score_threshold : 0.2 |
|
|
| faiss_params: |
| index_path: '../vectorstores/faiss.index' |
| index_type: 'Flat' |
| index_dimension: 384 |
| index_nlist: 100 |
| index_nprobe: 10 |
|
|
| colbert_params: |
| index_name: "new_idx" |
|
|
| llm_params: |
| use_history: True |
| memory_window: 3 |
| llm_loader: 'openai' |
| openai_params: |
| model: 'gpt-3.5-turbo-1106' |
| local_llm_params: |
| model: 'tiny-llama' |
| temperature: 0.7 |
| pdf_reader: 'llama' |
|
|
| chat_logging: |
| log_chat: False |
| platform: 'literalai' |
|
|
| splitter_options: |
| use_splitter: True |
| split_by_token : True |
| remove_leftover_delimiters: True |
| remove_chunks: False |
| chunk_size : 300 |
| chunk_overlap : 30 |
| chunk_separators : ["\n\n", "\n", " ", ""] |
| front_chunks_to_remove : null |
| last_chunks_to_remove : null |
| delimiters_to_remove : ['\t', '\n', ' ', ' '] |