We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 0f23b55 commit 290060eCopy full SHA for 290060e
README.md
@@ -102,4 +102,16 @@ CRLLM is designed to be easy to use right from your terminal. Below are some exa
102
To perform a code review for a file or GIT repository run:
103
```sh
104
crllm path/to/your/codefile.py
105
+```
106
+
107
+## Enabling RAG Support
108
109
+To enhance code reviews with source context, enable RAG (Retrieval-Augmented Generation) in `crllm_config.toml`:
110
111
+```toml
112
+[rag]
113
+enabled = true
114
+embedding_model = "all-minilm" # Specify the embedding model
115
+src_path = "./" # Define the root path of your source code
116
+src_glob = "**/*.py" # Use glob patterns to match source files (e.g., Python files)
117
```
0 commit comments