vortexa 0.3.2__tar.gz → 0.3.3__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.
Files changed (36) hide show
  1. {vortexa-0.3.2 → vortexa-0.3.3}/PKG-INFO +1 -1
  2. {vortexa-0.3.2 → vortexa-0.3.3}/pyproject.toml +1 -1
  3. {vortexa-0.3.2 → vortexa-0.3.3}/src/vortexa/core/indexer.py +1 -1
  4. {vortexa-0.3.2 → vortexa-0.3.3}/src/vortexa.egg-info/PKG-INFO +1 -1
  5. {vortexa-0.3.2 → vortexa-0.3.3}/LICENSE +0 -0
  6. {vortexa-0.3.2 → vortexa-0.3.3}/README.md +0 -0
  7. {vortexa-0.3.2 → vortexa-0.3.3}/setup.cfg +0 -0
  8. {vortexa-0.3.2 → vortexa-0.3.3}/src/vortexa/__init__.py +0 -0
  9. {vortexa-0.3.2 → vortexa-0.3.3}/src/vortexa/core/__init__.py +0 -0
  10. {vortexa-0.3.2 → vortexa-0.3.3}/src/vortexa/core/chunking.py +0 -0
  11. {vortexa-0.3.2 → vortexa-0.3.3}/src/vortexa/core/context_engine.py +0 -0
  12. {vortexa-0.3.2 → vortexa-0.3.3}/src/vortexa/core/embedding.py +0 -0
  13. {vortexa-0.3.2 → vortexa-0.3.3}/src/vortexa/core/graph.py +0 -0
  14. {vortexa-0.3.2 → vortexa-0.3.3}/src/vortexa/core/inference.py +0 -0
  15. {vortexa-0.3.2 → vortexa-0.3.3}/src/vortexa/core/language.py +0 -0
  16. {vortexa-0.3.2 → vortexa-0.3.3}/src/vortexa/core/lf4_v4_model.py +0 -0
  17. {vortexa-0.3.2 → vortexa-0.3.3}/src/vortexa/core/types.py +0 -0
  18. {vortexa-0.3.2 → vortexa-0.3.3}/src/vortexa/core/v4_embedder.py +0 -0
  19. {vortexa-0.3.2 → vortexa-0.3.3}/src/vortexa/core/vortex_score.py +0 -0
  20. {vortexa-0.3.2 → vortexa-0.3.3}/src/vortexa/interfaces/__init__.py +0 -0
  21. {vortexa-0.3.2 → vortexa-0.3.3}/src/vortexa/interfaces/cli.py +0 -0
  22. {vortexa-0.3.2 → vortexa-0.3.3}/src/vortexa/interfaces/mcp_server.py +0 -0
  23. {vortexa-0.3.2 → vortexa-0.3.3}/src/vortexa/interfaces/watcher.py +0 -0
  24. {vortexa-0.3.2 → vortexa-0.3.3}/src/vortexa/search/__init__.py +0 -0
  25. {vortexa-0.3.2 → vortexa-0.3.3}/src/vortexa/search/ranking.py +0 -0
  26. {vortexa-0.3.2 → vortexa-0.3.3}/src/vortexa/search/search.py +0 -0
  27. {vortexa-0.3.2 → vortexa-0.3.3}/src/vortexa/search/tokens.py +0 -0
  28. {vortexa-0.3.2 → vortexa-0.3.3}/src/vortexa/storage/__init__.py +0 -0
  29. {vortexa-0.3.2 → vortexa-0.3.3}/src/vortexa/storage/bm25.py +0 -0
  30. {vortexa-0.3.2 → vortexa-0.3.3}/src/vortexa/storage/vector_store.py +0 -0
  31. {vortexa-0.3.2 → vortexa-0.3.3}/src/vortexa/storage/walker.py +0 -0
  32. {vortexa-0.3.2 → vortexa-0.3.3}/src/vortexa.egg-info/SOURCES.txt +0 -0
  33. {vortexa-0.3.2 → vortexa-0.3.3}/src/vortexa.egg-info/dependency_links.txt +0 -0
  34. {vortexa-0.3.2 → vortexa-0.3.3}/src/vortexa.egg-info/entry_points.txt +0 -0
  35. {vortexa-0.3.2 → vortexa-0.3.3}/src/vortexa.egg-info/requires.txt +0 -0
  36. {vortexa-0.3.2 → vortexa-0.3.3}/src/vortexa.egg-info/top_level.txt +0 -0
@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 2.4
2
2
  Name: vortexa
3
- Version: 0.3.2
3
+ Version: 0.3.3
4
4
  Summary: Codebase indexing and semantic search engine
5
5
  Author-email: VortexAI <koulabhay25@gmail.com>
6
6
  License-Expression: Apache-2.0
@@ -4,7 +4,7 @@ build-backend = "setuptools.build_meta"
4
4
 
5
5
  [project]
6
6
  name = "vortexa"
7
- version = "0.3.2"
7
+ version = "0.3.3"
8
8
  description = "Codebase indexing and semantic search engine"
9
9
  readme = "README.md"
10
10
  requires-python = ">=3.10"
@@ -110,7 +110,7 @@ class CodebaseIndexer:
110
110
  self._model = model
111
111
  else:
112
112
  from vortexa.core.v4_embedder import VortexEmbedderV4
113
- self._embedder = VortexEmbedderV4(model_id)
113
+ self._embedder = VortexEmbedderV4(model_id or "VTXAI/vtx-embed-7M")
114
114
  self._model = self._embedder
115
115
 
116
116
  # In-memory state
@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 2.4
2
2
  Name: vortexa
3
- Version: 0.3.2
3
+ Version: 0.3.3
4
4
  Summary: Codebase indexing and semantic search engine
5
5
  Author-email: VortexAI <koulabhay25@gmail.com>
6
6
  License-Expression: Apache-2.0
File without changes
File without changes
File without changes
File without changes