kodit 0.3.5__py3-none-any.whl → 0.3.6__py3-none-any.whl

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.

Potentially problematic release.


This version of kodit might be problematic. Click here for more details.

kodit/_version.py CHANGED
@@ -17,5 +17,5 @@ __version__: str
17
17
  __version_tuple__: VERSION_TUPLE
18
18
  version_tuple: VERSION_TUPLE
19
19
 
20
- __version__ = version = '0.3.5'
21
- __version_tuple__ = version_tuple = (0, 3, 5)
20
+ __version__ = version = '0.3.6'
21
+ __version_tuple__ = version_tuple = (0, 3, 6)
kodit/app.py CHANGED
@@ -33,13 +33,13 @@ async def app_lifespan(_: FastAPI) -> AsyncIterator[None]:
33
33
  await _auto_indexing_service.start_background_indexing()
34
34
 
35
35
  # Start sync scheduler service
36
- if app_context.sync.enabled:
36
+ if app_context.periodic_sync.enabled:
37
37
  _sync_scheduler_service = SyncSchedulerService(
38
38
  app_context=app_context,
39
39
  session_factory=db.session_factory,
40
40
  )
41
41
  _sync_scheduler_service.start_periodic_sync(
42
- interval_seconds=app_context.sync.interval_seconds
42
+ interval_seconds=app_context.periodic_sync.interval_seconds
43
43
  )
44
44
 
45
45
  yield
@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 2.4
2
2
  Name: kodit
3
- Version: 0.3.5
3
+ Version: 0.3.6
4
4
  Summary: Code indexing for better AI code generation
5
5
  Project-URL: Homepage, https://docs.helixml.tech/kodit/
6
6
  Project-URL: Documentation, https://docs.helixml.tech/kodit/
@@ -1,7 +1,7 @@
1
1
  kodit/.gitignore,sha256=ztkjgRwL9Uud1OEi36hGQeDGk3OLK1NfDEO8YqGYy8o,11
2
2
  kodit/__init__.py,sha256=aEKHYninUq1yh6jaNfvJBYg-6fenpN132nJt1UU6Jxs,59
3
- kodit/_version.py,sha256=qmTn4w-xTKk8dVv-032b430C-ilxMTkr9Q0HieU18N8,511
4
- kodit/app.py,sha256=DtgvTfqbSSZMgtANknHLHWgRJgtYKK0Zt7TBNBrrAbc,2720
3
+ kodit/_version.py,sha256=5ZRqa3YWFznn7rzKg8d9Vi2wEKohJwIFxhrpOUL3pYQ,511
4
+ kodit/app.py,sha256=Q6M9XcMY4s-srHiWjvaPrrkzUveYBRGMOgnlomoIDRo,2738
5
5
  kodit/cli.py,sha256=7iP1rHVoObnKosNJD87a_JBdidFJtIxo_1fpkELb_jc,18894
6
6
  kodit/config.py,sha256=Dh1ybowJyOqZIoQnvF3DykaX2ze1MC0Rjs9oK1iZ7cs,8060
7
7
  kodit/database.py,sha256=kI9yBm4uunsgV4-QeVoCBL0wLzU4kYmYv5qZilGnbPE,1740
@@ -83,8 +83,8 @@ kodit/migrations/versions/__init__.py,sha256=9-lHzptItTzq_fomdIRBegQNm4Znx6pVjwD
83
83
  kodit/migrations/versions/c3f5137d30f5_index_all_the_things.py,sha256=r7ukmJ_axXLAWewYx-F1fEmZ4JbtFd37i7cSb0tq3y0,1722
84
84
  kodit/utils/__init__.py,sha256=DPEB1i8evnLF4Ns3huuAYg-0pKBFKUFuiDzOKG9r-sw,33
85
85
  kodit/utils/path_utils.py,sha256=thK6YGGNvQThdBaCYCCeCvS1L8x-lwl3AoGht2jnjGw,1645
86
- kodit-0.3.5.dist-info/METADATA,sha256=QkpcXiLLkwtVx1WPiXhbmNGkn2BUePzq0hXewzUymuI,6940
87
- kodit-0.3.5.dist-info/WHEEL,sha256=qtCwoSJWgHk21S1Kb4ihdzI2rlJ1ZKaIurTj_ngOhyQ,87
88
- kodit-0.3.5.dist-info/entry_points.txt,sha256=hoTn-1aKyTItjnY91fnO-rV5uaWQLQ-Vi7V5et2IbHY,40
89
- kodit-0.3.5.dist-info/licenses/LICENSE,sha256=xx0jnfkXJvxRnG63LTGOxlggYnIysveWIZ6H3PNdCrQ,11357
90
- kodit-0.3.5.dist-info/RECORD,,
86
+ kodit-0.3.6.dist-info/METADATA,sha256=-niGc2LDxpWdJXSNSFCu9Xwp0nu6O96Be-Cb1RTTwSA,6940
87
+ kodit-0.3.6.dist-info/WHEEL,sha256=qtCwoSJWgHk21S1Kb4ihdzI2rlJ1ZKaIurTj_ngOhyQ,87
88
+ kodit-0.3.6.dist-info/entry_points.txt,sha256=hoTn-1aKyTItjnY91fnO-rV5uaWQLQ-Vi7V5et2IbHY,40
89
+ kodit-0.3.6.dist-info/licenses/LICENSE,sha256=xx0jnfkXJvxRnG63LTGOxlggYnIysveWIZ6H3PNdCrQ,11357
90
+ kodit-0.3.6.dist-info/RECORD,,
File without changes