autocoder-nano 0.1.25__py3-none-any.whl → 0.1.27__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.
- autocoder_nano/agent/agent_base.py +376 -63
- autocoder_nano/auto_coder_nano.py +147 -1842
- autocoder_nano/edit/__init__.py +20 -0
- autocoder_nano/edit/actions.py +136 -0
- autocoder_nano/edit/code/__init__.py +0 -0
- autocoder_nano/edit/code/generate_editblock.py +403 -0
- autocoder_nano/edit/code/merge_editblock.py +418 -0
- autocoder_nano/edit/code/modification_ranker.py +90 -0
- autocoder_nano/edit/text.py +38 -0
- autocoder_nano/index/__init__.py +0 -0
- autocoder_nano/index/entry.py +166 -0
- autocoder_nano/index/index_manager.py +410 -0
- autocoder_nano/index/symbols_utils.py +43 -0
- autocoder_nano/llm_types.py +12 -8
- autocoder_nano/version.py +1 -1
- {autocoder_nano-0.1.25.dist-info → autocoder_nano-0.1.27.dist-info}/METADATA +1 -1
- {autocoder_nano-0.1.25.dist-info → autocoder_nano-0.1.27.dist-info}/RECORD +21 -10
- {autocoder_nano-0.1.25.dist-info → autocoder_nano-0.1.27.dist-info}/LICENSE +0 -0
- {autocoder_nano-0.1.25.dist-info → autocoder_nano-0.1.27.dist-info}/WHEEL +0 -0
- {autocoder_nano-0.1.25.dist-info → autocoder_nano-0.1.27.dist-info}/entry_points.txt +0 -0
- {autocoder_nano-0.1.25.dist-info → autocoder_nano-0.1.27.dist-info}/top_level.txt +0 -0
@@ -1,5 +1,5 @@
|
|
1
1
|
autocoder_nano/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
2
|
-
autocoder_nano/auto_coder_nano.py,sha256=
|
2
|
+
autocoder_nano/auto_coder_nano.py,sha256=CP-GLCzcYgsMjFhk1FrZzC-HOea0nXazz39zhJjP4EY,100949
|
3
3
|
autocoder_nano/auto_coder_nano_rag.py,sha256=9BtNZ6nC5D5SPTIuziXZOfouCBLOMNzvJMTdDPQEgO8,10436
|
4
4
|
autocoder_nano/auto_coder_nano_ui.py,sha256=ZBskcIJMeTJY7_JipGJaee58G9fUJaOv3LV4hptLc6c,12669
|
5
5
|
autocoder_nano/file_utils.py,sha256=iGbkbQ191nKL4aNufdexYYYQSDM1XrDC9Uxp_PIbawY,661
|
@@ -7,12 +7,12 @@ autocoder_nano/git_utils.py,sha256=sq81FCdB7kUIYPb-7zRNcnjUHDLU1ObgyVT9PvXXnA0,2
|
|
7
7
|
autocoder_nano/helper.py,sha256=LbieDBKp408x9g4GHCvcujUgMgxDTV9owGHIBYpT1ww,6643
|
8
8
|
autocoder_nano/llm_client.py,sha256=D0p6EcnmM5jeoWvPxyxe7ZYUObOASF9fXEKJga4mdOE,3941
|
9
9
|
autocoder_nano/llm_prompt.py,sha256=ViWUfCZp0gDESAAPHBhZc2WhHiFUHIxK6a2xbFu0sjU,10864
|
10
|
-
autocoder_nano/llm_types.py,sha256=
|
10
|
+
autocoder_nano/llm_types.py,sha256=Utnmx_aMBUNi-3Jm3alNrHIro21O0bQ4RA3TqTCYYhA,9465
|
11
11
|
autocoder_nano/sys_utils.py,sha256=Sn6kr5diaEkVWbYDBrtenr9zw32jVIWvsAReY7_uEd0,1638
|
12
12
|
autocoder_nano/templates.py,sha256=Sv61fSy8V7YsM_bSqDLFMX5tinleSZ6Z2hetCDXl6g8,4270
|
13
|
-
autocoder_nano/version.py,sha256=
|
13
|
+
autocoder_nano/version.py,sha256=VE3VDFkGvMInuRsCwt5QRDqQHm82RUBM_NaJYHXdFCo,79
|
14
14
|
autocoder_nano/agent/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
15
|
-
autocoder_nano/agent/agent_base.py,sha256
|
15
|
+
autocoder_nano/agent/agent_base.py,sha256=aic_Od5owZEu-VJhyAfQiz9R4btfvgPLJGwtxH3WBno,16369
|
16
16
|
autocoder_nano/agent/new/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
17
17
|
autocoder_nano/agent/new/auto_new_project.py,sha256=JNGhcF9CgMLQn-5UbRMmjBpeiwr0Jp5oKjun5aawNrI,11589
|
18
18
|
autocoder_nano/app/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
@@ -36,6 +36,17 @@ autocoder_nano/app/templates/partials/header.html,sha256=txCMUmFFWSEDz5xxQwt8oBk
|
|
36
36
|
autocoder_nano/app/templates/partials/input.html,sha256=8CY3JcHaA4nPZ2Vu4ragdYZzzodvF0isQiOGHtdQs6k,1956
|
37
37
|
autocoder_nano/app/templates/partials/message.html,sha256=HWEh_j_yJAbP7zFs6jt88BDzkP7dG6VgPUbS2MT5Ax4,1548
|
38
38
|
autocoder_nano/data/tokenizer.json,sha256=7Lb5_DaYlDRvBRH0B0ynXO5c1fOwbQLxujX805-OEh0,7847602
|
39
|
+
autocoder_nano/edit/__init__.py,sha256=QPMuW7tBTUe0Q00gUPJEmdxWqvunqko9_dsim0ncr7c,623
|
40
|
+
autocoder_nano/edit/actions.py,sha256=fRIp2VSIIgdjYLQ1dZt5kykTXkYzx7GX5CVc5BJhPQM,6205
|
41
|
+
autocoder_nano/edit/text.py,sha256=nC7VkQYHCDdT3ULpy0DIjkFwB9suhjIxK39AEzXqbno,1150
|
42
|
+
autocoder_nano/edit/code/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
43
|
+
autocoder_nano/edit/code/generate_editblock.py,sha256=s-VTZK0G1OhjEyZXqyjj4sY48fOo02EvHhaxTIw4ytY,13110
|
44
|
+
autocoder_nano/edit/code/merge_editblock.py,sha256=xgHl364BTX8vtnzqI49gupUCnMkhrJ4IqNO0PDaN3kk,17657
|
45
|
+
autocoder_nano/edit/code/modification_ranker.py,sha256=hnF1acqAzPYKm9hEFxobJHfGGDdM-GclZLxvtt83lGA,3431
|
46
|
+
autocoder_nano/index/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
47
|
+
autocoder_nano/index/entry.py,sha256=L_xoV-GDEzzwS6zP4M1-ZGQ6l6mh2R-ez8quZdhlhg0,7785
|
48
|
+
autocoder_nano/index/index_manager.py,sha256=G5oD0uI78Yo07WtM8RaWpvqEUvkl6Uph2Pi-ZfIUuZg,15258
|
49
|
+
autocoder_nano/index/symbols_utils.py,sha256=z_16X6BozTfmric1uU-r2GqzDabJ5ChfAOB4lo7i-_8,1450
|
39
50
|
autocoder_nano/project/__init__.py,sha256=8R90zhCcRTHWScAOYw20lkcHI4IhSm-ywCLcfezn0Oc,227
|
40
51
|
autocoder_nano/project/pyproject.py,sha256=PRGfODvurZskNmHg6wF2tfXCL6hXhVVG-tVHTjcT8QM,4473
|
41
52
|
autocoder_nano/project/suffixproject.py,sha256=97P2hRvVk2cvDOe8EwoVhfXY7HHTxkGK5Uz7YlMX4CE,4712
|
@@ -58,9 +69,9 @@ autocoder_nano/ss/__init__.py,sha256=jp9Az7c0uafZcC6qfxjyZnSnVLtgA_4UdakSOcp8osE
|
|
58
69
|
autocoder_nano/ss/search_engine.py,sha256=4_RcxF1almJX5XlLWB7d9UXM92YDK2bOqoCrkuGg5Mc,3720
|
59
70
|
autocoder_nano/tools/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
60
71
|
autocoder_nano/tools/http_tools.py,sha256=04Tmg8BTwfsw7_-fKBDHv787XU4yQ5UtQSDj0zJBIUc,3189
|
61
|
-
autocoder_nano-0.1.
|
62
|
-
autocoder_nano-0.1.
|
63
|
-
autocoder_nano-0.1.
|
64
|
-
autocoder_nano-0.1.
|
65
|
-
autocoder_nano-0.1.
|
66
|
-
autocoder_nano-0.1.
|
72
|
+
autocoder_nano-0.1.27.dist-info/LICENSE,sha256=xx0jnfkXJvxRnG63LTGOxlggYnIysveWIZ6H3PNdCrQ,11357
|
73
|
+
autocoder_nano-0.1.27.dist-info/METADATA,sha256=6KRwjUE7-KfE1Smg0iQL0i61rShyJVRRgfA_cqCubnA,20469
|
74
|
+
autocoder_nano-0.1.27.dist-info/WHEEL,sha256=In9FTNxeP60KnTkGw7wk6mJPYd_dQSjEZmXdBdMCI-8,91
|
75
|
+
autocoder_nano-0.1.27.dist-info/entry_points.txt,sha256=Dj8gGZ_AgLy8ANqr2do_DJjpsR3JMh-ztsrUXo4Vn5Q,194
|
76
|
+
autocoder_nano-0.1.27.dist-info/top_level.txt,sha256=D7s34cwIs1F4EAjRRDvO_zTHtUz1Z7UVccFUNlJn7HI,15
|
77
|
+
autocoder_nano-0.1.27.dist-info/RECORD,,
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|