Sets the path for retriever configuration files. # Arguments `retrievers_path` - Directory where retriever TOML configs are stored
(mut self, retrievers_path: &Path)
| 439 | /// |
| 440 | /// * `retrievers_path` - Directory where retriever TOML configs are stored |
| 441 | pub fn with_retrievers_path(mut self, retrievers_path: &Path) -> Self { |
| 442 | self.retrievers_path = retrievers_path.to_path_buf(); |
| 443 | self |
| 444 | } |
| 445 | |
| 446 | /// Sets the path for paper document storage. |
| 447 | /// |
no outgoing calls