Commit 61329ce
committed
refactor: Remove stopwords_interaction_guide.md references and fix comment
Two improvements:
1. Remove all references to docs/stopwords_interaction_guide.md
- Removed from docs/api/query.rst (HybridQuery and TextQuery notes)
- Removed from docs/api/schema.rst (replaced with reference to user guide)
- Removed from redisvl/query/query.py (TextQuery docstring)
- Removed from redisvl/query/aggregate.py (AggregateHybridQuery docstring)
- Removed from redisvl/index/index.py (warning message)
- Removed from docs/user_guide/11_advanced_queries.ipynb
- The notebook already has comprehensive stopwords documentation
2. Fix inaccurate comment about stopwords=None
- Updated comment in redisvl/index/index.py to clarify that ANY falsy
value (None, False, '', 0, [], etc.) results in an empty set, not just None
- This matches the actual implementation in _set_stopwords() which uses
'if not stopwords:' check
- Updated warning message to mention 'stopwords=None (or any falsy value)'1 parent e07376d commit 61329ce
File tree
6 files changed
+126
-148
lines changed- docs
- api
- user_guide
- redisvl
- index
- query
6 files changed
+126
-148
lines changed| Original file line number | Diff line number | Diff line change | |
|---|---|---|---|
| |||
51 | 51 | | |
52 | 52 | | |
53 | 53 | | |
54 | | - | |
55 | 54 | | |
56 | 55 | | |
57 | 56 | | |
| |||
71 | 70 | | |
72 | 71 | | |
73 | 72 | | |
74 | | - | |
75 | 73 | | |
76 | 74 | | |
77 | 75 | | |
| |||
| Original file line number | Diff line number | Diff line change | |
|---|---|---|---|
| |||
65 | 65 | | |
66 | 66 | | |
67 | 67 | | |
68 | | - | |
| 68 | + | |
69 | 69 | | |
70 | 70 | | |
71 | 71 | | |
72 | | - | |
| 72 | + | |
73 | 73 | | |
74 | 74 | | |
75 | 75 | | |
| |||
0 commit comments