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
43
44
45
46
47
48
49
50
51
52
53
cqs processes your code entirely on your machine. Nothing is transmitted externally.
- --
When you run `cqs index`, the following is stored in `.cqs/index.db`:
- ---
This data never leaves your machine.
The embedding model is downloaded once from HuggingFace:
- --
HuggingFace may log download requests per their privacy policy. After download, the model runs offline.
If you fork or contribute to the cqs repository:
- ---
To remove all cqs data:
```bash
rm -rf .cqs/ # Project index
rm -rf ~/.local/share/cqs/refs/ # Reference indexes
rm -rf ~/.config/cqs/projects.toml # Project registry
rm -f ~/.config/cqs/config.toml # User configuration
rm -f .cqs.toml # Project config
rm -f docs/notes.toml # Project notes
rm -rf ~/.cache/huggingface/ # Downloaded model
```