vexor 0.21.0__tar.gz → 0.22.0__tar.gz
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- {vexor-0.21.0 → vexor-0.22.0}/PKG-INFO +14 -1
- {vexor-0.21.0 → vexor-0.22.0}/README.md +13 -0
- {vexor-0.21.0 → vexor-0.22.0}/plugins/vexor/.claude-plugin/plugin.json +1 -1
- {vexor-0.21.0 → vexor-0.22.0}/vexor/__init__.py +17 -2
- vexor-0.22.0/vexor/api.py +1076 -0
- {vexor-0.21.0 → vexor-0.22.0}/vexor/cache.py +158 -23
- {vexor-0.21.0 → vexor-0.22.0}/vexor/config.py +47 -6
- {vexor-0.21.0 → vexor-0.22.0}/vexor/services/content_extract_service.py +6 -0
- {vexor-0.21.0 → vexor-0.22.0}/vexor/services/search_service.py +42 -24
- vexor-0.21.0/vexor/api.py +0 -366
- {vexor-0.21.0 → vexor-0.22.0}/.gitignore +0 -0
- {vexor-0.21.0 → vexor-0.22.0}/LICENSE +0 -0
- {vexor-0.21.0 → vexor-0.22.0}/gui/README.md +0 -0
- {vexor-0.21.0 → vexor-0.22.0}/plugins/vexor/README.md +0 -0
- {vexor-0.21.0 → vexor-0.22.0}/plugins/vexor/skills/vexor-cli/SKILL.md +0 -0
- {vexor-0.21.0 → vexor-0.22.0}/plugins/vexor/skills/vexor-cli/references/install-vexor.md +0 -0
- {vexor-0.21.0 → vexor-0.22.0}/pyproject.toml +0 -0
- {vexor-0.21.0 → vexor-0.22.0}/vexor/__main__.py +0 -0
- {vexor-0.21.0 → vexor-0.22.0}/vexor/cli.py +0 -0
- {vexor-0.21.0 → vexor-0.22.0}/vexor/modes.py +0 -0
- {vexor-0.21.0 → vexor-0.22.0}/vexor/output.py +0 -0
- {vexor-0.21.0 → vexor-0.22.0}/vexor/providers/__init__.py +0 -0
- {vexor-0.21.0 → vexor-0.22.0}/vexor/providers/gemini.py +0 -0
- {vexor-0.21.0 → vexor-0.22.0}/vexor/providers/local.py +0 -0
- {vexor-0.21.0 → vexor-0.22.0}/vexor/providers/openai.py +0 -0
- {vexor-0.21.0 → vexor-0.22.0}/vexor/search.py +0 -0
- {vexor-0.21.0 → vexor-0.22.0}/vexor/services/__init__.py +0 -0
- {vexor-0.21.0 → vexor-0.22.0}/vexor/services/cache_service.py +0 -0
- {vexor-0.21.0 → vexor-0.22.0}/vexor/services/config_service.py +0 -0
- {vexor-0.21.0 → vexor-0.22.0}/vexor/services/index_service.py +0 -0
- {vexor-0.21.0 → vexor-0.22.0}/vexor/services/init_service.py +0 -0
- {vexor-0.21.0 → vexor-0.22.0}/vexor/services/js_parser.py +0 -0
- {vexor-0.21.0 → vexor-0.22.0}/vexor/services/keyword_service.py +0 -0
- {vexor-0.21.0 → vexor-0.22.0}/vexor/services/skill_service.py +0 -0
- {vexor-0.21.0 → vexor-0.22.0}/vexor/services/system_service.py +0 -0
- {vexor-0.21.0 → vexor-0.22.0}/vexor/text.py +0 -0
- {vexor-0.21.0 → vexor-0.22.0}/vexor/utils.py +0 -0
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
Metadata-Version: 2.4
|
|
2
2
|
Name: vexor
|
|
3
|
-
Version: 0.
|
|
3
|
+
Version: 0.22.0
|
|
4
4
|
Summary: A vector-powered CLI for semantic search over files.
|
|
5
5
|
Project-URL: Repository, https://github.com/scarletkc/vexor
|
|
6
6
|
Author: scarletkc
|
|
@@ -76,6 +76,13 @@ It supports configurable embedding and reranking providers, and exposes the same
|
|
|
76
76
|
Vexor Demo Video
|
|
77
77
|
</video>
|
|
78
78
|
|
|
79
|
+
## Featured In
|
|
80
|
+
|
|
81
|
+
Vexor has been recognized and featured by the community:
|
|
82
|
+
|
|
83
|
+
- **[Ruan Yifeng's Weekly (Issue #379)](https://github.com/ruanyf/weekly/blob/master/docs/issue-379.md#ai-%E7%9B%B8%E5%85%B3)** - A leading tech newsletter in the Chinese developer community.
|
|
84
|
+
- **[Awesome Claude Skills](https://github.com/VoltAgent/awesome-claude-skills?tab=readme-ov-file#development-and-testing)** - Curated list of best-in-class skills for AI agents.
|
|
85
|
+
|
|
79
86
|
## Why Vexor?
|
|
80
87
|
|
|
81
88
|
When you remember what a file *does* but forget its name or location, Vexor finds it instantly—no grep patterns or directory traversal needed.
|
|
@@ -315,8 +322,14 @@ Porcelain output fields: `rank`, `similarity`, `path`, `chunk_index`, `start_lin
|
|
|
315
322
|
|
|
316
323
|
See [docs](https://github.com/scarletkc/vexor/tree/main/docs) for more details.
|
|
317
324
|
|
|
325
|
+
## Contributing
|
|
326
|
+
|
|
318
327
|
Contributions, issues, and PRs welcome! Star if you find it helpful.
|
|
319
328
|
|
|
329
|
+
## Star History
|
|
330
|
+
|
|
331
|
+
[](https://www.star-history.com/#scarletkc/vexor&type=date&legend=top-left)
|
|
332
|
+
|
|
320
333
|
## License
|
|
321
334
|
|
|
322
335
|
[MIT](http://github.com/scarletkc/vexor/blob/main/LICENSE)
|
|
@@ -21,6 +21,13 @@ It supports configurable embedding and reranking providers, and exposes the same
|
|
|
21
21
|
Vexor Demo Video
|
|
22
22
|
</video>
|
|
23
23
|
|
|
24
|
+
## Featured In
|
|
25
|
+
|
|
26
|
+
Vexor has been recognized and featured by the community:
|
|
27
|
+
|
|
28
|
+
- **[Ruan Yifeng's Weekly (Issue #379)](https://github.com/ruanyf/weekly/blob/master/docs/issue-379.md#ai-%E7%9B%B8%E5%85%B3)** - A leading tech newsletter in the Chinese developer community.
|
|
29
|
+
- **[Awesome Claude Skills](https://github.com/VoltAgent/awesome-claude-skills?tab=readme-ov-file#development-and-testing)** - Curated list of best-in-class skills for AI agents.
|
|
30
|
+
|
|
24
31
|
## Why Vexor?
|
|
25
32
|
|
|
26
33
|
When you remember what a file *does* but forget its name or location, Vexor finds it instantly—no grep patterns or directory traversal needed.
|
|
@@ -260,8 +267,14 @@ Porcelain output fields: `rank`, `similarity`, `path`, `chunk_index`, `start_lin
|
|
|
260
267
|
|
|
261
268
|
See [docs](https://github.com/scarletkc/vexor/tree/main/docs) for more details.
|
|
262
269
|
|
|
270
|
+
## Contributing
|
|
271
|
+
|
|
263
272
|
Contributions, issues, and PRs welcome! Star if you find it helpful.
|
|
264
273
|
|
|
274
|
+
## Star History
|
|
275
|
+
|
|
276
|
+
[](https://www.star-history.com/#scarletkc/vexor&type=date&legend=top-left)
|
|
277
|
+
|
|
265
278
|
## License
|
|
266
279
|
|
|
267
280
|
[MIT](http://github.com/scarletkc/vexor/blob/main/LICENSE)
|
|
@@ -2,20 +2,35 @@
|
|
|
2
2
|
|
|
3
3
|
from __future__ import annotations
|
|
4
4
|
|
|
5
|
-
from .api import
|
|
5
|
+
from .api import (
|
|
6
|
+
InMemoryIndex,
|
|
7
|
+
VexorClient,
|
|
8
|
+
VexorError,
|
|
9
|
+
clear_index,
|
|
10
|
+
config_context,
|
|
11
|
+
index,
|
|
12
|
+
index_in_memory,
|
|
13
|
+
search,
|
|
14
|
+
set_config_json,
|
|
15
|
+
set_data_dir,
|
|
16
|
+
)
|
|
6
17
|
|
|
7
18
|
__all__ = [
|
|
8
19
|
"__version__",
|
|
20
|
+
"InMemoryIndex",
|
|
21
|
+
"VexorClient",
|
|
9
22
|
"VexorError",
|
|
10
23
|
"clear_index",
|
|
24
|
+
"config_context",
|
|
11
25
|
"get_version",
|
|
12
26
|
"index",
|
|
27
|
+
"index_in_memory",
|
|
13
28
|
"search",
|
|
14
29
|
"set_config_json",
|
|
15
30
|
"set_data_dir",
|
|
16
31
|
]
|
|
17
32
|
|
|
18
|
-
__version__ = "0.
|
|
33
|
+
__version__ = "0.22.0"
|
|
19
34
|
|
|
20
35
|
|
|
21
36
|
def get_version() -> str:
|