kodit 0.3.15__py3-none-any.whl → 0.3.17__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 +2 -2
- kodit/app.py +11 -2
- kodit/application/services/auto_indexing_service.py +16 -7
- kodit/application/services/code_indexing_application_service.py +22 -11
- kodit/application/services/indexing_worker_service.py +154 -0
- kodit/application/services/queue_service.py +52 -0
- kodit/application/services/sync_scheduler.py +10 -48
- kodit/cli.py +407 -148
- kodit/cli_utils.py +74 -0
- kodit/config.py +41 -3
- kodit/domain/entities.py +48 -1
- kodit/domain/protocols.py +29 -2
- kodit/domain/value_objects.py +13 -0
- kodit/infrastructure/api/client/__init__.py +14 -0
- kodit/infrastructure/api/client/base.py +100 -0
- kodit/infrastructure/api/client/exceptions.py +21 -0
- kodit/infrastructure/api/client/generated_endpoints.py +27 -0
- kodit/infrastructure/api/client/index_client.py +57 -0
- kodit/infrastructure/api/client/search_client.py +86 -0
- kodit/infrastructure/api/v1/dependencies.py +13 -0
- kodit/infrastructure/api/v1/routers/indexes.py +9 -4
- kodit/infrastructure/embedding/embedding_factory.py +5 -7
- kodit/infrastructure/embedding/embedding_providers/openai_embedding_provider.py +75 -13
- kodit/infrastructure/enrichment/enrichment_factory.py +5 -8
- kodit/infrastructure/enrichment/local_enrichment_provider.py +4 -1
- kodit/infrastructure/enrichment/openai_enrichment_provider.py +84 -16
- kodit/infrastructure/enrichment/utils.py +30 -0
- kodit/infrastructure/mappers/task_mapper.py +81 -0
- kodit/infrastructure/sqlalchemy/entities.py +35 -0
- kodit/infrastructure/sqlalchemy/index_repository.py +4 -4
- kodit/infrastructure/sqlalchemy/task_repository.py +81 -0
- kodit/middleware.py +1 -0
- kodit/migrations/versions/9cf0e87de578_add_queue.py +47 -0
- kodit/utils/generate_api_paths.py +135 -0
- {kodit-0.3.15.dist-info → kodit-0.3.17.dist-info}/METADATA +1 -1
- {kodit-0.3.15.dist-info → kodit-0.3.17.dist-info}/RECORD +39 -25
- {kodit-0.3.15.dist-info → kodit-0.3.17.dist-info}/WHEEL +0 -0
- {kodit-0.3.15.dist-info → kodit-0.3.17.dist-info}/entry_points.txt +0 -0
- {kodit-0.3.15.dist-info → kodit-0.3.17.dist-info}/licenses/LICENSE +0 -0
|
@@ -0,0 +1,135 @@
|
|
|
1
|
+
#!/usr/bin/env python3
|
|
2
|
+
"""Generate API path constants from OpenAPI specification."""
|
|
3
|
+
|
|
4
|
+
import argparse
|
|
5
|
+
import json
|
|
6
|
+
from pathlib import Path
|
|
7
|
+
|
|
8
|
+
|
|
9
|
+
def to_python_constant(path: str) -> str:
|
|
10
|
+
"""Convert API path to Python constant name.
|
|
11
|
+
|
|
12
|
+
Args:
|
|
13
|
+
path: API path like '/api/v1/indexes' or '/api/v1/indexes/{index_id}'
|
|
14
|
+
|
|
15
|
+
Returns:
|
|
16
|
+
Python constant name like 'API_V1_INDEXES' or 'API_V1_INDEXES_INDEX_ID'
|
|
17
|
+
|
|
18
|
+
"""
|
|
19
|
+
import re
|
|
20
|
+
|
|
21
|
+
# Replace any non-alphanumeric characters with underscores and convert to uppercase
|
|
22
|
+
clean_path = re.sub(r"[^a-zA-Z0-9]", "_", path)
|
|
23
|
+
clean_path = clean_path.strip("_").upper()
|
|
24
|
+
|
|
25
|
+
# Remove consecutive underscores
|
|
26
|
+
clean_path = re.sub(r"_+", "_", clean_path)
|
|
27
|
+
|
|
28
|
+
return clean_path or "ROOT"
|
|
29
|
+
|
|
30
|
+
|
|
31
|
+
def generate_api_paths_file(openapi_spec_path: Path, output_path: Path) -> None:
|
|
32
|
+
"""Generate Python file with API path constants from OpenAPI spec.
|
|
33
|
+
|
|
34
|
+
Args:
|
|
35
|
+
openapi_spec_path: Path to the OpenAPI JSON specification
|
|
36
|
+
output_path: Path where to write the generated Python file
|
|
37
|
+
|
|
38
|
+
"""
|
|
39
|
+
with openapi_spec_path.open() as f:
|
|
40
|
+
spec = json.load(f)
|
|
41
|
+
|
|
42
|
+
paths = spec.get("paths", {})
|
|
43
|
+
|
|
44
|
+
# Sort paths for consistent output
|
|
45
|
+
sorted_paths = sorted(paths.keys())
|
|
46
|
+
|
|
47
|
+
# Generate Python constants
|
|
48
|
+
constants = []
|
|
49
|
+
for path in sorted_paths:
|
|
50
|
+
constant_name = to_python_constant(path)
|
|
51
|
+
constants.append((constant_name, path))
|
|
52
|
+
|
|
53
|
+
# Generate the Python file content
|
|
54
|
+
content = generate_python_file_content(constants, openapi_spec_path)
|
|
55
|
+
|
|
56
|
+
# Write the file
|
|
57
|
+
output_path.parent.mkdir(parents=True, exist_ok=True)
|
|
58
|
+
with output_path.open("w") as f:
|
|
59
|
+
f.write(content)
|
|
60
|
+
|
|
61
|
+
|
|
62
|
+
|
|
63
|
+
def generate_python_file_content(
|
|
64
|
+
constants: list[tuple[str, str]], spec_path: Path
|
|
65
|
+
) -> str:
|
|
66
|
+
"""Generate the content of the Python API paths file.
|
|
67
|
+
|
|
68
|
+
Args:
|
|
69
|
+
constants: List of (constant_name, path_value) tuples
|
|
70
|
+
spec_path: Path to the OpenAPI spec (for documentation)
|
|
71
|
+
|
|
72
|
+
Returns:
|
|
73
|
+
Generated Python file content
|
|
74
|
+
|
|
75
|
+
"""
|
|
76
|
+
# Header
|
|
77
|
+
content = '''"""API endpoint constants generated from OpenAPI specification.
|
|
78
|
+
|
|
79
|
+
This file is auto-generated. Do not edit manually.
|
|
80
|
+
Run `make generate-api-paths` to regenerate.
|
|
81
|
+
"""
|
|
82
|
+
|
|
83
|
+
from typing import Final
|
|
84
|
+
|
|
85
|
+
|
|
86
|
+
class APIEndpoints:
|
|
87
|
+
"""API endpoint constants extracted from OpenAPI specification."""
|
|
88
|
+
|
|
89
|
+
'''
|
|
90
|
+
|
|
91
|
+
# Add constants with comments
|
|
92
|
+
for constant_name, path_value in constants:
|
|
93
|
+
# Add a comment describing the endpoint
|
|
94
|
+
comment = f" # {path_value}"
|
|
95
|
+
constant = f' {constant_name}: Final[str] = "{path_value}"'
|
|
96
|
+
|
|
97
|
+
content += f"{comment}\n{constant}\n\n"
|
|
98
|
+
|
|
99
|
+
# Add footer comment
|
|
100
|
+
content += f"""
|
|
101
|
+
# Generated from: {spec_path.name}
|
|
102
|
+
# Total endpoints: {len(constants)}
|
|
103
|
+
"""
|
|
104
|
+
|
|
105
|
+
return content
|
|
106
|
+
|
|
107
|
+
|
|
108
|
+
def main() -> None:
|
|
109
|
+
"""Generate API path constants from OpenAPI specification."""
|
|
110
|
+
parser = argparse.ArgumentParser(
|
|
111
|
+
description="Generate API path constants from OpenAPI specification"
|
|
112
|
+
)
|
|
113
|
+
parser.add_argument(
|
|
114
|
+
"--openapi-spec",
|
|
115
|
+
type=Path,
|
|
116
|
+
default=Path("docs/reference/api/openapi.json"),
|
|
117
|
+
help="Path to OpenAPI JSON specification file"
|
|
118
|
+
)
|
|
119
|
+
parser.add_argument(
|
|
120
|
+
"--output",
|
|
121
|
+
type=Path,
|
|
122
|
+
default=Path("src/kodit/infrastructure/api/client/generated_endpoints.py"),
|
|
123
|
+
help="Output path for generated Python file"
|
|
124
|
+
)
|
|
125
|
+
|
|
126
|
+
args = parser.parse_args()
|
|
127
|
+
|
|
128
|
+
if not args.openapi_spec.exists():
|
|
129
|
+
return
|
|
130
|
+
|
|
131
|
+
generate_api_paths_file(args.openapi_spec, args.output)
|
|
132
|
+
|
|
133
|
+
|
|
134
|
+
if __name__ == "__main__":
|
|
135
|
+
main()
|
|
@@ -1,27 +1,30 @@
|
|
|
1
1
|
kodit/.gitignore,sha256=ztkjgRwL9Uud1OEi36hGQeDGk3OLK1NfDEO8YqGYy8o,11
|
|
2
2
|
kodit/__init__.py,sha256=aEKHYninUq1yh6jaNfvJBYg-6fenpN132nJt1UU6Jxs,59
|
|
3
|
-
kodit/_version.py,sha256=
|
|
4
|
-
kodit/app.py,sha256=
|
|
5
|
-
kodit/cli.py,sha256=
|
|
6
|
-
kodit/
|
|
3
|
+
kodit/_version.py,sha256=cGWA93r_16rR-tkjWO67nlhhjy0fPwiHpKtUFrImZgo,513
|
|
4
|
+
kodit/app.py,sha256=r0w0JJsOacrQ5aAQ1yf-BK1CrYZPrvtUoH1LACd9FaA,4262
|
|
5
|
+
kodit/cli.py,sha256=VUZD4cPRgAnrKEWUl2PbS-nOA0FkDVqmJ2SR0g1yJsk,28202
|
|
6
|
+
kodit/cli_utils.py,sha256=bW4rIm-elrsyM_pSGHh30zV0_oX7V-64pL3YSaBcOt0,2810
|
|
7
|
+
kodit/config.py,sha256=YYo36lBi3auCssyCVrpw3Z3ZXSzXKTDo45nIsUjkzfs,10305
|
|
7
8
|
kodit/database.py,sha256=kI9yBm4uunsgV4-QeVoCBL0wLzU4kYmYv5qZilGnbPE,1740
|
|
8
9
|
kodit/log.py,sha256=XyuseZk90gUBj1B7np2UO2EW9eE_ApayIpPRvI19KCE,8651
|
|
9
10
|
kodit/mcp.py,sha256=aEcPc8dQiZaR0AswCZZNxcm_rhhUZNsEBimYti0ibSI,7221
|
|
10
|
-
kodit/middleware.py,sha256=
|
|
11
|
+
kodit/middleware.py,sha256=TiwebNpaEmiP7QRuZrfZcCL51IUefQyNLSPuzVyk8UM,2813
|
|
11
12
|
kodit/reporting.py,sha256=icce1ZyiADsA_Qz-mSjgn2H4SSqKuGfLKnw-yrl9nsg,2722
|
|
12
13
|
kodit/application/__init__.py,sha256=mH50wTpgP9dhbKztFsL8Dda9Hi18TSnMVxXtpp4aGOA,35
|
|
13
14
|
kodit/application/factories/__init__.py,sha256=bU5CvEnaBePZ7JbkCOp1MGTNP752bnU2uEqmfy5FdRk,37
|
|
14
15
|
kodit/application/factories/code_indexing_factory.py,sha256=R9f0wsj4-3NJFS5SEt_-OIGR_s_01gJXaL3PkZd8MlU,5911
|
|
15
16
|
kodit/application/services/__init__.py,sha256=p5UQNw-H5sxQvs5Etfte93B3cJ1kKW6DNxK34uFvU1E,38
|
|
16
|
-
kodit/application/services/auto_indexing_service.py,sha256=
|
|
17
|
-
kodit/application/services/code_indexing_application_service.py,sha256=
|
|
18
|
-
kodit/application/services/
|
|
17
|
+
kodit/application/services/auto_indexing_service.py,sha256=O5BNR5HypgghzUFG4ykIWMl9mxHCUExnBmJuITIhECk,3457
|
|
18
|
+
kodit/application/services/code_indexing_application_service.py,sha256=nrnd_Md-D0AfNKku7Aqt3YHDbXsBV9f44Z6XsjhiF3E,15877
|
|
19
|
+
kodit/application/services/indexing_worker_service.py,sha256=Un4PytnWJU4uwROcxOMUFkt4cD7nmPezaBLsEHrMN6U,5185
|
|
20
|
+
kodit/application/services/queue_service.py,sha256=GaixRoCUaDhLYfwZLVED8C3w_NPiy_QbuVp_jhwP4GI,1727
|
|
21
|
+
kodit/application/services/sync_scheduler.py,sha256=aLpEczZdTM8ubfAEY0Ajdh3MLfDcB9s-0ILZJrtIuZs,3504
|
|
19
22
|
kodit/domain/__init__.py,sha256=TCpg4Xx-oF4mKV91lo4iXqMEfBT1OoRSYnbG-zVWolA,66
|
|
20
|
-
kodit/domain/entities.py,sha256=
|
|
23
|
+
kodit/domain/entities.py,sha256=QsCzKXT7gF9jTPAjJo5lqjFGRsIklAFC2qRy_Gt3RbA,10377
|
|
21
24
|
kodit/domain/errors.py,sha256=yIsgCjM_yOFIg8l7l-t7jM8pgeAX4cfPq0owf7iz3DA,106
|
|
22
25
|
kodit/domain/interfaces.py,sha256=Jkd0Ob4qSvhZHI9jRPFQ1n5Cv0SvU-y3Z-HCw2ikc4I,742
|
|
23
|
-
kodit/domain/protocols.py,sha256=
|
|
24
|
-
kodit/domain/value_objects.py,sha256=
|
|
26
|
+
kodit/domain/protocols.py,sha256=GA0CCvmhvQ3F4MseeQUVw3NeIgUoaV7V_7TdAaU70Is,2587
|
|
27
|
+
kodit/domain/value_objects.py,sha256=dkfbg99PSCrfj6nJ7tZ2UzDG3QUgNa_Cpj2gLakDM5k,17512
|
|
25
28
|
kodit/domain/services/__init__.py,sha256=Q1GhCK_PqKHYwYE4tkwDz5BIyXkJngLBBOHhzvX8nzo,42
|
|
26
29
|
kodit/domain/services/bm25_service.py,sha256=nsfTan3XtDwXuuAu1LUv-6Jukm6qFKVqqCVymjyepZQ,3625
|
|
27
30
|
kodit/domain/services/embedding_service.py,sha256=7drYRC2kjg0WJmo06a2E9N0vDnwInUlBB96twjz2BT8,4526
|
|
@@ -30,12 +33,18 @@ kodit/domain/services/index_query_service.py,sha256=cDQkgpJ3JbyeZ3z3GTIqH1JzhhKE
|
|
|
30
33
|
kodit/domain/services/index_service.py,sha256=uVwDUEQWfZ5yJRvcjaWW7P9gCZttmnlkI51IHz52eew,11554
|
|
31
34
|
kodit/infrastructure/__init__.py,sha256=HzEYIjoXnkz_i_MHO2e0sIVYweUcRnl2RpyBiTbMObU,28
|
|
32
35
|
kodit/infrastructure/api/__init__.py,sha256=U0TSMPpHrlj1zbAtleuZjU3nXGwudyMe-veNBgvODwM,34
|
|
36
|
+
kodit/infrastructure/api/client/__init__.py,sha256=6RSYqeuxjDe_zTUq48D0F-VfBBUvDmTkO3K3vD61q3I,349
|
|
37
|
+
kodit/infrastructure/api/client/base.py,sha256=CIx0Cth8u845T1_6Q71Nj8BkXnh9m_v6d7OlJsZQsyQ,3105
|
|
38
|
+
kodit/infrastructure/api/client/exceptions.py,sha256=wK1OGiImIbNW-fz1juOExd5pKmkKK-xDhI_YFj4Q5Ic,401
|
|
39
|
+
kodit/infrastructure/api/client/generated_endpoints.py,sha256=8qhAg_gDuHsH_nKqGLialZCmEEuDDjLtSnEr-za82XU,641
|
|
40
|
+
kodit/infrastructure/api/client/index_client.py,sha256=OxsakDQBEulwmqZVzwOSSI0Lk6T6SLhfw6WquGoTFqY,1864
|
|
41
|
+
kodit/infrastructure/api/client/search_client.py,sha256=f4mM5ZJpAuR7w-i9yASbh4SYMxOq7_f4hXgaQesGquI,2614
|
|
33
42
|
kodit/infrastructure/api/middleware/__init__.py,sha256=6m7eE5k5buboJbuzyX5E9-Tf99yNwFaeJF0f_6HwLyM,30
|
|
34
43
|
kodit/infrastructure/api/middleware/auth.py,sha256=QSnMcMLWvfumqN1iG4ePj2vEZb2Dlsgr-WHptkEkkhE,1064
|
|
35
44
|
kodit/infrastructure/api/v1/__init__.py,sha256=XYv4_9Z6fo69oMvC2mEbtD6DaMqHth29KHUOelmQFwM,121
|
|
36
|
-
kodit/infrastructure/api/v1/dependencies.py,sha256=
|
|
45
|
+
kodit/infrastructure/api/v1/dependencies.py,sha256=jaM000IfSnvU8uzwnC1cBZsfsMC-19jWFjObHfqBYuM,2475
|
|
37
46
|
kodit/infrastructure/api/v1/routers/__init__.py,sha256=L8hT_SkDzmCXIiWrFQWCkZXQ3UDy_ZMxPr8AIhjSWK0,160
|
|
38
|
-
kodit/infrastructure/api/v1/routers/indexes.py,sha256=
|
|
47
|
+
kodit/infrastructure/api/v1/routers/indexes.py,sha256=_lUir1M0SW6kPHeGqjiPjtSa50rY4PN2es5TZEpSHYE,3442
|
|
39
48
|
kodit/infrastructure/api/v1/routers/search.py,sha256=da9YTR6VTzU85_6X3aaZemdTHGCEvcPNeKuMFBgmT_A,2452
|
|
40
49
|
kodit/infrastructure/api/v1/schemas/__init__.py,sha256=_5BVqv4EUi_vvWlAQOE_VfRulUDAF21ZQ7z27y7YOdw,498
|
|
41
50
|
kodit/infrastructure/api/v1/schemas/context.py,sha256=NlsIn9j1R3se7JkGZivS_CUN4gGP5NYaAtkRe3QH6dk,214
|
|
@@ -50,19 +59,20 @@ kodit/infrastructure/cloning/metadata.py,sha256=GD2UnCC1oR82RD0SVUqk9CJOqzXPxhOA
|
|
|
50
59
|
kodit/infrastructure/cloning/git/__init__.py,sha256=20ePcp0qE6BuLsjsv4KYB1DzKhMIMsPXwEqIEZtjTJs,34
|
|
51
60
|
kodit/infrastructure/cloning/git/working_copy.py,sha256=qYcrR5qP1rhWZiYGMT1p-1Alavi_YvQLXx4MgIV7eXs,2611
|
|
52
61
|
kodit/infrastructure/embedding/__init__.py,sha256=F-8nLlWAerYJ0MOIA4tbXHLan8bW5rRR84vzxx6tRKI,39
|
|
53
|
-
kodit/infrastructure/embedding/embedding_factory.py,sha256=
|
|
62
|
+
kodit/infrastructure/embedding/embedding_factory.py,sha256=8LC2jKf2vx-P-TCh8ZanxwF3hT5PSjWA3vuSR6ggcXk,3731
|
|
54
63
|
kodit/infrastructure/embedding/local_vector_search_repository.py,sha256=ExweyNEL5cP-g3eDhGqZSih7zhdOrop2WdFPPJL-tB4,3505
|
|
55
64
|
kodit/infrastructure/embedding/vectorchord_vector_search_repository.py,sha256=PIoU0HsDlaoXDXnGjOR0LAkAcW4JiE3ymJy_SBhEopc,8030
|
|
56
65
|
kodit/infrastructure/embedding/embedding_providers/__init__.py,sha256=qeZ-oAIAxMl5QqebGtO1lq-tHjl_ucAwOXePklcwwGk,34
|
|
57
66
|
kodit/infrastructure/embedding/embedding_providers/batching.py,sha256=a8CL9PX2VLmbeg616fc_lQzfC4BWTVn32m4SEhXpHxc,3279
|
|
58
67
|
kodit/infrastructure/embedding/embedding_providers/hash_embedding_provider.py,sha256=V6OdCuWyQQOvo3OJGRi-gBKDApIcrELydFg7T696P5s,2257
|
|
59
68
|
kodit/infrastructure/embedding/embedding_providers/local_embedding_provider.py,sha256=9aLV1Zg4KMhYWlGRwgAUtswW4aIabNqbsipWhAn64RI,4133
|
|
60
|
-
kodit/infrastructure/embedding/embedding_providers/openai_embedding_provider.py,sha256=
|
|
69
|
+
kodit/infrastructure/embedding/embedding_providers/openai_embedding_provider.py,sha256=CE86s8IicieUjIDWn2xzswteHXCzmw1Qz6Kp4GBIcus,6316
|
|
61
70
|
kodit/infrastructure/enrichment/__init__.py,sha256=8acZKNzql8Fs0lceFu9U3KoUrOptRBtVIxr_Iw6lz3Y,40
|
|
62
|
-
kodit/infrastructure/enrichment/enrichment_factory.py,sha256=
|
|
63
|
-
kodit/infrastructure/enrichment/local_enrichment_provider.py,sha256=
|
|
71
|
+
kodit/infrastructure/enrichment/enrichment_factory.py,sha256=jZWGgAvFjEuRUc1oW3iGhgipvX-EnVJZpw6ybzp9NGM,2016
|
|
72
|
+
kodit/infrastructure/enrichment/local_enrichment_provider.py,sha256=aVU3_kbLJ0BihwGIwvJ00DBe0voHkiKdFSjPxxkVfVA,4150
|
|
64
73
|
kodit/infrastructure/enrichment/null_enrichment_provider.py,sha256=DhZkJBnkvXg_XSAs-oKiFnKqYFPnmTl3ikdxrqeEfbc,713
|
|
65
|
-
kodit/infrastructure/enrichment/openai_enrichment_provider.py,sha256=
|
|
74
|
+
kodit/infrastructure/enrichment/openai_enrichment_provider.py,sha256=C0y0NEPu1GpFr22TGi1voxYGsYTV0ZITYuDzvRJ5vW4,5573
|
|
75
|
+
kodit/infrastructure/enrichment/utils.py,sha256=FE9UCuxxzSdoHrmAC8Si2b5D6Nf6kVqgM1yjUVyCvW0,930
|
|
66
76
|
kodit/infrastructure/git/__init__.py,sha256=0iMosFzudj4_xNIMe2SRbV6l5bWqkjnUsZoFsoZFuM8,33
|
|
67
77
|
kodit/infrastructure/git/git_utils.py,sha256=KERwmhWDR4ooMQKS-nSPxjvdCzoWF9NS6nhdeXyzdtY,571
|
|
68
78
|
kodit/infrastructure/ignore/__init__.py,sha256=VzFv8XOzHmsu0MEGnWVSF6KsgqLBmvHlRqAkT1Xb1MY,36
|
|
@@ -71,13 +81,15 @@ kodit/infrastructure/indexing/__init__.py,sha256=7UPRa2jwCAsa0Orsp6PqXSF8iIXJVzX
|
|
|
71
81
|
kodit/infrastructure/indexing/fusion_service.py,sha256=2B0guBsuKz19uWcs18sIJpUJPzXoRvULgl7UNWQGysA,1809
|
|
72
82
|
kodit/infrastructure/mappers/__init__.py,sha256=QPHOjNreXmBPPovZ6elnYFS0vD-IsmrGl4TT01FCKro,77
|
|
73
83
|
kodit/infrastructure/mappers/index_mapper.py,sha256=ZSfu8kjTaa8_UY0nTqr4b02NS3VrjqZYkduCN71AL2g,12743
|
|
84
|
+
kodit/infrastructure/mappers/task_mapper.py,sha256=QW7uL8rji6QJ7RRdHwbvkWqmwDcUDGTYPLwbwiKlViY,2919
|
|
74
85
|
kodit/infrastructure/slicing/__init__.py,sha256=x7cjvHA9Ay2weUYE_dpdAaPaStp20M-4U2b5MLgT5KM,37
|
|
75
86
|
kodit/infrastructure/slicing/language_detection_service.py,sha256=JGJXrq9bLyfnisWJXeP7y1jbZMmKAISdPBlRBCosUcE,684
|
|
76
87
|
kodit/infrastructure/slicing/slicer.py,sha256=GOqJykd00waOTO1WJHyE5KUgJ2RLx2rOQ7M7T_u5LLg,35600
|
|
77
88
|
kodit/infrastructure/sqlalchemy/__init__.py,sha256=UXPMSF_hgWaqr86cawRVqM8XdVNumQyyK5B8B97GnlA,33
|
|
78
89
|
kodit/infrastructure/sqlalchemy/embedding_repository.py,sha256=dC2Wzj_zQiWExwfScE1LAGiiyxPyg0YepwyLOgDwcs4,7905
|
|
79
|
-
kodit/infrastructure/sqlalchemy/entities.py,sha256=
|
|
80
|
-
kodit/infrastructure/sqlalchemy/index_repository.py,sha256=
|
|
90
|
+
kodit/infrastructure/sqlalchemy/entities.py,sha256=2iG_2NoKS26rJXimLFL8whRqFsUvKNGFAXCkQYK5GtE,6951
|
|
91
|
+
kodit/infrastructure/sqlalchemy/index_repository.py,sha256=QQNsyLBI09YLUPLguB9qvqPZMxtg1p2twpm7sO_gNlo,23598
|
|
92
|
+
kodit/infrastructure/sqlalchemy/task_repository.py,sha256=yazMO6Kw0Pb2b3L8wlGKOFA0QuMFcWBUXYFGZdtZo0w,2874
|
|
81
93
|
kodit/infrastructure/ui/__init__.py,sha256=CzbLOBwIZ6B6iAHEd1L8cIBydCj-n_kobxJAhz2I9_Y,32
|
|
82
94
|
kodit/infrastructure/ui/progress.py,sha256=SHEUoQA_x36z4nqHrQduVrrWIvFfX6QxAawC7zQ50pw,6433
|
|
83
95
|
kodit/infrastructure/ui/spinner.py,sha256=GcP115qtR0VEnGfMEtsGoAUpRzVGUSfiUXfoJJERngA,2357
|
|
@@ -89,14 +101,16 @@ kodit/migrations/versions/4073b33f9436_add_file_processing_flag.py,sha256=c8dMcK
|
|
|
89
101
|
kodit/migrations/versions/4552eb3f23ce_add_summary.py,sha256=WjyBQzFK8IXuvta15YBE23yaTMM1rZCXvPxW98MStng,870
|
|
90
102
|
kodit/migrations/versions/7c3bbc2ab32b_add_embeddings_table.py,sha256=JL6lxaYtGbXolrkNEujg5SWj3_aQBWReYP3I4vcibdo,1755
|
|
91
103
|
kodit/migrations/versions/85155663351e_initial.py,sha256=h8DWmSxVwTtWlmWNH8-S4AxfEIbCm_iWtR6Kg5psPnk,3605
|
|
104
|
+
kodit/migrations/versions/9cf0e87de578_add_queue.py,sha256=FYrco38f3_-1ZRfGOU617bgR1Ta0YTwwz3QDQMw_NKY,1600
|
|
92
105
|
kodit/migrations/versions/9e53ea8bb3b0_add_authors.py,sha256=a32Zm8KUQyiiLkjKNPYdaJDgjW6VsV-GhaLnPnK_fpI,3884
|
|
93
106
|
kodit/migrations/versions/__init__.py,sha256=9-lHzptItTzq_fomdIRBegQNm4Znx6pVjwD4MiqRIdo,36
|
|
94
107
|
kodit/migrations/versions/c3f5137d30f5_index_all_the_things.py,sha256=r7ukmJ_axXLAWewYx-F1fEmZ4JbtFd37i7cSb0tq3y0,1722
|
|
95
108
|
kodit/utils/__init__.py,sha256=DPEB1i8evnLF4Ns3huuAYg-0pKBFKUFuiDzOKG9r-sw,33
|
|
96
109
|
kodit/utils/dump_openapi.py,sha256=29VdjHpNSaGAg7RjQw0meq1OLhljCx1ElgBlTC8xoF4,1247
|
|
110
|
+
kodit/utils/generate_api_paths.py,sha256=TMtx9v55podDfUmiWaHgJHLtEWLV2sLL-5ejGFMPzAo,3569
|
|
97
111
|
kodit/utils/path_utils.py,sha256=thK6YGGNvQThdBaCYCCeCvS1L8x-lwl3AoGht2jnjGw,1645
|
|
98
|
-
kodit-0.3.
|
|
99
|
-
kodit-0.3.
|
|
100
|
-
kodit-0.3.
|
|
101
|
-
kodit-0.3.
|
|
102
|
-
kodit-0.3.
|
|
112
|
+
kodit-0.3.17.dist-info/METADATA,sha256=xxyRRv2pL9aSP6MYMRPDsVNLR0gdFNg5CJ4UbbLwOAU,7672
|
|
113
|
+
kodit-0.3.17.dist-info/WHEEL,sha256=qtCwoSJWgHk21S1Kb4ihdzI2rlJ1ZKaIurTj_ngOhyQ,87
|
|
114
|
+
kodit-0.3.17.dist-info/entry_points.txt,sha256=hoTn-1aKyTItjnY91fnO-rV5uaWQLQ-Vi7V5et2IbHY,40
|
|
115
|
+
kodit-0.3.17.dist-info/licenses/LICENSE,sha256=xx0jnfkXJvxRnG63LTGOxlggYnIysveWIZ6H3PNdCrQ,11357
|
|
116
|
+
kodit-0.3.17.dist-info/RECORD,,
|
|
File without changes
|
|
File without changes
|
|
File without changes
|