aiecs 1.0.7__py3-none-any.whl → 1.1.0__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 aiecs might be problematic. Click here for more details.
- aiecs/__init__.py +1 -1
- aiecs/aiecs_client.py +159 -1
- aiecs/config/config.py +4 -0
- aiecs/domain/context/__init__.py +24 -0
- aiecs/infrastructure/persistence/context_engine_client.py +9 -5
- aiecs/main.py +20 -2
- aiecs/scripts/dependance_check/__init__.py +18 -0
- aiecs/scripts/{download_nlp_data.py → dependance_check/download_nlp_data.py} +50 -8
- aiecs/scripts/dependance_patch/__init__.py +8 -0
- aiecs/scripts/dependance_patch/fix_weasel/__init__.py +12 -0
- aiecs/scripts/tools_develop/README.md +340 -0
- aiecs/scripts/tools_develop/__init__.py +16 -0
- aiecs/scripts/tools_develop/check_type_annotations.py +263 -0
- aiecs/scripts/tools_develop/validate_tool_schemas.py +346 -0
- aiecs/tools/__init__.py +33 -14
- aiecs/tools/docs/__init__.py +103 -0
- aiecs/tools/docs/ai_document_orchestrator.py +543 -0
- aiecs/tools/docs/ai_document_writer_orchestrator.py +2199 -0
- aiecs/tools/docs/content_insertion_tool.py +1214 -0
- aiecs/tools/docs/document_creator_tool.py +1161 -0
- aiecs/tools/docs/document_layout_tool.py +1090 -0
- aiecs/tools/docs/document_parser_tool.py +904 -0
- aiecs/tools/docs/document_writer_tool.py +1583 -0
- aiecs/tools/langchain_adapter.py +102 -51
- aiecs/tools/schema_generator.py +265 -0
- aiecs/tools/task_tools/image_tool.py +1 -1
- aiecs/tools/task_tools/office_tool.py +9 -0
- aiecs/tools/task_tools/scraper_tool.py +1 -1
- {aiecs-1.0.7.dist-info → aiecs-1.1.0.dist-info}/METADATA +1 -1
- {aiecs-1.0.7.dist-info → aiecs-1.1.0.dist-info}/RECORD +45 -29
- aiecs-1.1.0.dist-info/entry_points.txt +9 -0
- aiecs-1.0.7.dist-info/entry_points.txt +0 -7
- /aiecs/scripts/{DEPENDENCY_SYSTEM_SUMMARY.md → dependance_check/DEPENDENCY_SYSTEM_SUMMARY.md} +0 -0
- /aiecs/scripts/{README_DEPENDENCY_CHECKER.md → dependance_check/README_DEPENDENCY_CHECKER.md} +0 -0
- /aiecs/scripts/{dependency_checker.py → dependance_check/dependency_checker.py} +0 -0
- /aiecs/scripts/{dependency_fixer.py → dependance_check/dependency_fixer.py} +0 -0
- /aiecs/scripts/{quick_dependency_check.py → dependance_check/quick_dependency_check.py} +0 -0
- /aiecs/scripts/{setup_nlp_data.sh → dependance_check/setup_nlp_data.sh} +0 -0
- /aiecs/scripts/{README_WEASEL_PATCH.md → dependance_patch/fix_weasel/README_WEASEL_PATCH.md} +0 -0
- /aiecs/scripts/{fix_weasel_validator.py → dependance_patch/fix_weasel/fix_weasel_validator.py} +0 -0
- /aiecs/scripts/{fix_weasel_validator.sh → dependance_patch/fix_weasel/fix_weasel_validator.sh} +0 -0
- /aiecs/scripts/{patch_weasel_library.sh → dependance_patch/fix_weasel/patch_weasel_library.sh} +0 -0
- /aiecs/scripts/{run_weasel_patch.sh → dependance_patch/fix_weasel/run_weasel_patch.sh} +0 -0
- {aiecs-1.0.7.dist-info → aiecs-1.1.0.dist-info}/WHEEL +0 -0
- {aiecs-1.0.7.dist-info → aiecs-1.1.0.dist-info}/licenses/LICENSE +0 -0
- {aiecs-1.0.7.dist-info → aiecs-1.1.0.dist-info}/top_level.txt +0 -0
|
@@ -1,12 +1,12 @@
|
|
|
1
|
-
aiecs/__init__.py,sha256=
|
|
1
|
+
aiecs/__init__.py,sha256=IF2d9k4xYh1zAvMqZuB872kIwBOowjZn73ZS5Bu9S90,1859
|
|
2
2
|
aiecs/__main__.py,sha256=AfQpzy3SgwWuP4DuymYcm4MISMuzqwhxxGSYo53PBvY,1035
|
|
3
|
-
aiecs/aiecs_client.py,sha256=
|
|
4
|
-
aiecs/main.py,sha256=
|
|
3
|
+
aiecs/aiecs_client.py,sha256=2wzc_XVZvBaTABL2INLFiU_a1uf1xJ9NrL1GTcHOv7Y,17268
|
|
4
|
+
aiecs/main.py,sha256=POcFo8ADGbJqb5Ek3gCm4PYMqfr8EepLQ5671unMykY,9911
|
|
5
5
|
aiecs/application/__init__.py,sha256=NkmrUH1DqxJ3vaVC8QwscNdlWqHfC7ZagL4k3nZ_qz4,192
|
|
6
6
|
aiecs/application/executors/__init__.py,sha256=WIl7L9HBsEhNfbNtJdvBvFUJXzESvNZVaiAA6tdtJcs,191
|
|
7
7
|
aiecs/application/executors/operation_executor.py,sha256=-7mFo1hUnWdehVPg0fnSiRhW3LACpIiyLSH-iu7bX4U,13818
|
|
8
8
|
aiecs/config/__init__.py,sha256=HykU6FgZrUx0w8V1_kAjP9NpXZTddZ9M3xo0fmBwMU8,336
|
|
9
|
-
aiecs/config/config.py,sha256=
|
|
9
|
+
aiecs/config/config.py,sha256=LxFeqfrz_oKrf4vS63jZj7PNYUwiCv1uCdoWHVq-MuA,5211
|
|
10
10
|
aiecs/config/registry.py,sha256=5CPJcjeMu3FLc_keuCtJT60DtUxF6w-I68uIoxpcdq8,637
|
|
11
11
|
aiecs/core/__init__.py,sha256=H0ZIk96q0KHKivcobnUCVJdJZmewucVJ9MKhRgUxmk0,1037
|
|
12
12
|
aiecs/core/interface/__init__.py,sha256=soI7zdoN3eQynVb9uiwmgXkM5E75JYffTILktHb48x8,688
|
|
@@ -19,7 +19,7 @@ aiecs/domain/community/community_manager.py,sha256=D-HrQTXO-uu9MK6Utr9aCVlQug0UA
|
|
|
19
19
|
aiecs/domain/community/decision_engine.py,sha256=QZnSo0KxHk8HclUiB2sTYUI-H26ZI48StYXVIssO5kA,13389
|
|
20
20
|
aiecs/domain/community/resource_manager.py,sha256=REWe6dSzxzWIxW-Xu07k3n8wSGfTw4frPWSfEW50t70,15912
|
|
21
21
|
aiecs/domain/community/models/community_models.py,sha256=75h8lb1LmOVfpAw5Eh4_2djbSZkcvccKT_Ke1Xx573E,10094
|
|
22
|
-
aiecs/domain/context/__init__.py,sha256=
|
|
22
|
+
aiecs/domain/context/__init__.py,sha256=Pah3fYH6q7OfRCVpMEfq_CzgZR0l0HUcXFzUEKy_1l0,1751
|
|
23
23
|
aiecs/domain/context/context_engine.py,sha256=HiUMAsUYx9ts242JzPZ0nJ9YjOYNpTnBY2lFI5RQ2FI,36439
|
|
24
24
|
aiecs/domain/context/conversation_models.py,sha256=GgHEZTnHs6U-ecfAJ-0GJUXF48AdXCw0O8Lb8BzQ3oU,13005
|
|
25
25
|
aiecs/domain/execution/__init__.py,sha256=usXYgPcS-j0CFBN5K1v1WuxQUHsgap3tsaZnDCcKVXs,216
|
|
@@ -37,7 +37,7 @@ aiecs/infrastructure/monitoring/executor_metrics.py,sha256=z8KJpq6tfCOEArfR-YJ4U
|
|
|
37
37
|
aiecs/infrastructure/monitoring/structured_logger.py,sha256=iI895YHmPoaLdXjxHxd952PeTfGw6sh-yUDCnF8R7NY,1657
|
|
38
38
|
aiecs/infrastructure/monitoring/tracing_manager.py,sha256=g4u6paNCZCYdGDEMZiv4bYv_GTG0s8oug-BJgFmkDp0,13449
|
|
39
39
|
aiecs/infrastructure/persistence/__init__.py,sha256=yoog7fEHmhgY50vGdgDNqiZCPUUL2-xnJrdhT5PrPWU,570
|
|
40
|
-
aiecs/infrastructure/persistence/context_engine_client.py,sha256=
|
|
40
|
+
aiecs/infrastructure/persistence/context_engine_client.py,sha256=KIzreimtg6WbuBYI4U0JTiRmNddpdpKHnGvuHVh86Hs,6051
|
|
41
41
|
aiecs/infrastructure/persistence/database_manager.py,sha256=MRkMTALeeybzAfnfuJrOXbEchBCrMAgsz8YYyEUVMjI,12592
|
|
42
42
|
aiecs/infrastructure/persistence/file_storage.py,sha256=d3tcV7Wg_-TGsbw3PY9ttNANntR5rIo7mBgE0CGXKZQ,23321
|
|
43
43
|
aiecs/infrastructure/persistence/redis_client.py,sha256=CqPtYFP8-KHl3cJG9VHun9YFFSp3kCc3ZaZbW7GlqUU,5791
|
|
@@ -49,34 +49,50 @@ aiecs/llm/googleai_client.py,sha256=4cJuhdzzn-svM7NLnYASYsnV2P758EeD5_ljVZu_XFc,
|
|
|
49
49
|
aiecs/llm/openai_client.py,sha256=T3-LMDV-bzv0fwyDCw6h9D2XbNbWd0dt-QmjKg-wkd0,4397
|
|
50
50
|
aiecs/llm/vertex_client.py,sha256=DSKyTwlhpOVTXfCTgTD7NholVFtVm7F5qmHk8p8X1Po,10823
|
|
51
51
|
aiecs/llm/xai_client.py,sha256=VYfBGD8ns6NHscT68DDmAmvwBMEVykLQufH8kFNf_L8,6809
|
|
52
|
-
aiecs/scripts/DEPENDENCY_SYSTEM_SUMMARY.md,sha256=u2OLwmXaRGuTwEfj3jQ_yzAO_Z49P1CBC1pV3iULuoE,5866
|
|
53
|
-
aiecs/scripts/README_DEPENDENCY_CHECKER.md,sha256=7sAyeiMN7I-RsTOudo_JO2CTbC5ObEV0z_YyGtjiMcI,6003
|
|
54
|
-
aiecs/scripts/README_WEASEL_PATCH.md,sha256=h0e3Xy6FArLgjika3pRZRhZRbyuj6iLzTU-AhHkWE7M,3581
|
|
55
52
|
aiecs/scripts/__init__.py,sha256=cVxQ5iqym520eDQSpV7B6hWolndCLMOVdvhC_D280PE,66
|
|
56
|
-
aiecs/scripts/
|
|
57
|
-
aiecs/scripts/
|
|
58
|
-
aiecs/scripts/
|
|
59
|
-
aiecs/scripts/
|
|
60
|
-
aiecs/scripts/
|
|
61
|
-
aiecs/scripts/
|
|
62
|
-
aiecs/scripts/quick_dependency_check.py,sha256=KUDhwuPocaH2jYPCBfNVF0o1dtINAVf__UcQV-ZYswQ,9828
|
|
63
|
-
aiecs/scripts/
|
|
64
|
-
aiecs/scripts/
|
|
53
|
+
aiecs/scripts/dependance_check/DEPENDENCY_SYSTEM_SUMMARY.md,sha256=u2OLwmXaRGuTwEfj3jQ_yzAO_Z49P1CBC1pV3iULuoE,5866
|
|
54
|
+
aiecs/scripts/dependance_check/README_DEPENDENCY_CHECKER.md,sha256=7sAyeiMN7I-RsTOudo_JO2CTbC5ObEV0z_YyGtjiMcI,6003
|
|
55
|
+
aiecs/scripts/dependance_check/__init__.py,sha256=7pKdYHifao3HnihRr73QJbouoVIMA8cY1n6eu9r7uB0,510
|
|
56
|
+
aiecs/scripts/dependance_check/dependency_checker.py,sha256=XVBQQrPPyif7mfq4P7vs0IkmtiAddb9aSTtJCxyI_18,33837
|
|
57
|
+
aiecs/scripts/dependance_check/dependency_fixer.py,sha256=yXp5uj2elXGUrEco8_42nsD9VlUGSsyaG-qiMoF5Ab0,13962
|
|
58
|
+
aiecs/scripts/dependance_check/download_nlp_data.py,sha256=ggUJdWMlEq4_p8LAEkn79oo8-9uJDQxn721T-8KWkJE,12112
|
|
59
|
+
aiecs/scripts/dependance_check/quick_dependency_check.py,sha256=KUDhwuPocaH2jYPCBfNVF0o1dtINAVf__UcQV-ZYswQ,9828
|
|
60
|
+
aiecs/scripts/dependance_check/setup_nlp_data.sh,sha256=CqO-bLVc_mLhNpsSoXZjvJKhtLUbA_gYBqfp3nzUuRI,5843
|
|
61
|
+
aiecs/scripts/dependance_patch/__init__.py,sha256=DH0TzNwguzHDQJxz7Ijq5_g04vW1u1yZGrnacN4QsiM,89
|
|
62
|
+
aiecs/scripts/dependance_patch/fix_weasel/README_WEASEL_PATCH.md,sha256=h0e3Xy6FArLgjika3pRZRhZRbyuj6iLzTU-AhHkWE7M,3581
|
|
63
|
+
aiecs/scripts/dependance_patch/fix_weasel/__init__.py,sha256=BhOw-8hAZ7dIDj7K0mf8TOSjEMJJi714VPeLAgPbInY,189
|
|
64
|
+
aiecs/scripts/dependance_patch/fix_weasel/fix_weasel_validator.py,sha256=w_s2VTIAgWPi-3VUXlrINBkLm9765QHdRf4g5RzBUug,4073
|
|
65
|
+
aiecs/scripts/dependance_patch/fix_weasel/fix_weasel_validator.sh,sha256=XqV3Yx1wi23dWXDbofFK6_SU0BVLr9E1HaIudIuem7Q,2736
|
|
66
|
+
aiecs/scripts/dependance_patch/fix_weasel/patch_weasel_library.sh,sha256=6OcbuJWLv8DDeKPgVrV4wG9UIm5ppN-y-OQPSBD9pSg,5491
|
|
67
|
+
aiecs/scripts/dependance_patch/fix_weasel/run_weasel_patch.sh,sha256=bwyFyeaITwDmG2_3HsTd7PHeexahh6MhEZwUuAC_85c,1233
|
|
68
|
+
aiecs/scripts/tools_develop/README.md,sha256=X32w4F71ztiYxjSnZ3WHhTWYSverghT2DeCV6Mu8MRI,8861
|
|
69
|
+
aiecs/scripts/tools_develop/__init__.py,sha256=caq5QUxj6mECXr3pqaS3eHJ56pS_fXyEteP__C9PEVE,389
|
|
70
|
+
aiecs/scripts/tools_develop/check_type_annotations.py,sha256=jPCS_D9wKLtE41gXSHR6V8sRdHsSHCUIDuxWK4Q6m6I,8131
|
|
71
|
+
aiecs/scripts/tools_develop/validate_tool_schemas.py,sha256=k-Kz_6b4CBTHQ7OAvUxKl4ek8jQ6Trr2cbLk0egC0m8,11753
|
|
65
72
|
aiecs/tasks/__init__.py,sha256=__xkKqXWQ24FkySb8xtsCCJYLKnqmHKbAnojxeELEiE,90
|
|
66
73
|
aiecs/tasks/worker.py,sha256=5cBeP2IyvwDe6tIhkiv6LfyQz41IFZ1S3Fr6IdNKP6Q,4298
|
|
67
|
-
aiecs/tools/__init__.py,sha256=
|
|
74
|
+
aiecs/tools/__init__.py,sha256=muStwe6EzwigQa-4ayo6QBcPSaHjZQhRbxeIOw505uc,7075
|
|
68
75
|
aiecs/tools/base_tool.py,sha256=1dndT1M5PAU3Cw-gE9vAIKACiq6na6CAUPIefAeALc4,6901
|
|
69
|
-
aiecs/tools/langchain_adapter.py,sha256=
|
|
76
|
+
aiecs/tools/langchain_adapter.py,sha256=HYCSPnn6Q8cdBjCGcdUSa8jgUoaOqvYpAIlPcugaq-U,15647
|
|
77
|
+
aiecs/tools/schema_generator.py,sha256=s9xvvVZLltOdmUY4IgtFNiy5kuhBRMpKmnX3FtzOwAU,8315
|
|
70
78
|
aiecs/tools/temp_file_manager.py,sha256=_ipPCMKT5twYjtLJucOnhIyqtKEtSquKqx-xasKu_ks,4679
|
|
79
|
+
aiecs/tools/docs/__init__.py,sha256=Y0m7tJJeamKLfVe0qGQF-7JK9pxFmNt8iIzRBnTJGfc,3615
|
|
80
|
+
aiecs/tools/docs/ai_document_orchestrator.py,sha256=jb35XU6VARqyy3H4uhrGWVlPRL49pC2DM02c3thsEl0,24441
|
|
81
|
+
aiecs/tools/docs/ai_document_writer_orchestrator.py,sha256=oIEpz-SlskJnhzV69O1mBJ3hERoqOgYxWVx1zt05Ufk,96710
|
|
82
|
+
aiecs/tools/docs/content_insertion_tool.py,sha256=shrRLYkHcgxHTMHp428D6rZrWJ84ZFLCq-ICfYf277w,48716
|
|
83
|
+
aiecs/tools/docs/document_creator_tool.py,sha256=LOsMdZsUBxKDzcjSK4Jk21r2kkOgY5qwhnUsv1YCegA,38930
|
|
84
|
+
aiecs/tools/docs/document_layout_tool.py,sha256=rTHyTdpA0wbBNa9Xcs8m-Sm4Rp0tim4lpWE1CZMGHpE,44782
|
|
85
|
+
aiecs/tools/docs/document_parser_tool.py,sha256=rali82_rq1ixuRC6RH67j6WfgrkbwcJh_HlgZ1hX4FQ,37808
|
|
86
|
+
aiecs/tools/docs/document_writer_tool.py,sha256=9LV06JZC56F-wj3hyxmk3vbshqoQPC_OKkNb6SDLj34,67572
|
|
71
87
|
aiecs/tools/task_tools/__init__.py,sha256=hzsGoRmqX_gZcutXKynCLi6esBPXCx--cRkZVxaXAIA,2693
|
|
72
88
|
aiecs/tools/task_tools/chart_tool.py,sha256=C7fM8WvBkyQgNCg5xGndXUF6nNfY7lQjYj8l9DnPAq0,26442
|
|
73
89
|
aiecs/tools/task_tools/classfire_tool.py,sha256=UKlnRD3KjbU3ZhWuplP6BTuv6wcjt-7XBftlGZF6hcE,31950
|
|
74
|
-
aiecs/tools/task_tools/image_tool.py,sha256=
|
|
75
|
-
aiecs/tools/task_tools/office_tool.py,sha256=
|
|
90
|
+
aiecs/tools/task_tools/image_tool.py,sha256=clK872RDX_JD_5gsRo2gpQ33ZCFOpnLoblV-qq81S7c,15032
|
|
91
|
+
aiecs/tools/task_tools/office_tool.py,sha256=wtRDdU2bWwmTl-w5DKlme7X06NslzHDOZikuoN1_ES0,23514
|
|
76
92
|
aiecs/tools/task_tools/pandas_tool.py,sha256=762Nz-2s3l5sdDXFRriK2F22I_k_nkELaX1sDAtCpwk,24892
|
|
77
93
|
aiecs/tools/task_tools/report_tool.py,sha256=ZoETHFpO3UOD_JH7LBZZlyZY8A7DHHgSbYY8QPT95Wk,23567
|
|
78
94
|
aiecs/tools/task_tools/research_tool.py,sha256=JXPmC5Gg2SbZWG56e3fkZo-lYgG3h_XfYJUjEtXOceQ,15557
|
|
79
|
-
aiecs/tools/task_tools/scraper_tool.py,sha256=
|
|
95
|
+
aiecs/tools/task_tools/scraper_tool.py,sha256=7FCbYc1Tk75RC6MozJxXm1l4vD1PeVoCYnzmDxzpfcE,24709
|
|
80
96
|
aiecs/tools/task_tools/search_api.py,sha256=NIqZE5jaEKUIGTjSToxYzVfTB4xMmFX4yYNgp5tOm_w,217
|
|
81
97
|
aiecs/tools/task_tools/stats_tool.py,sha256=IUAhs5wUi1dknEha8twCT_m3MF4ZTqod3TDAFslfaF8,24300
|
|
82
98
|
aiecs/tools/tool_executor/__init__.py,sha256=gxuujSlQFj8DQ9ejCisO_cYqk5GQkJnwv0sJERd80CM,711
|
|
@@ -90,9 +106,9 @@ aiecs/utils/prompt_loader.py,sha256=cBS2bZXpYQOWSiOGkhwIzyy3_bETqwIblRi_9qQT9iQ,
|
|
|
90
106
|
aiecs/utils/token_usage_repository.py,sha256=1xjenLYwC0YT6lKZFEGO4scRCXLuWdec2MWjzih5SZY,10210
|
|
91
107
|
aiecs/ws/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
92
108
|
aiecs/ws/socket_server.py,sha256=j_9idVY_rWlTsF51FgmuhWCWFVt7_gAHL8vNg3IxV5g,1476
|
|
93
|
-
aiecs-1.0.
|
|
94
|
-
aiecs-1.0.
|
|
95
|
-
aiecs-1.0.
|
|
96
|
-
aiecs-1.0.
|
|
97
|
-
aiecs-1.0.
|
|
98
|
-
aiecs-1.0.
|
|
109
|
+
aiecs-1.1.0.dist-info/licenses/LICENSE,sha256=_1YRaIS0eZu1pv6xfz245UkU0i1Va2B841hv3OWRwqg,12494
|
|
110
|
+
aiecs-1.1.0.dist-info/METADATA,sha256=H9OPynjlpLw0RriGFoMwrmh7zJzsEuAcyMvcI-Lj0Jc,16437
|
|
111
|
+
aiecs-1.1.0.dist-info/WHEEL,sha256=_zCd3N1l69ArxyTb8rzEoP9TpbYXkqRFSNOD5OuxnTs,91
|
|
112
|
+
aiecs-1.1.0.dist-info/entry_points.txt,sha256=gJeXxqFhs326tZPCw1YfHRRS530qwbIyybpVF4Tfwvs,612
|
|
113
|
+
aiecs-1.1.0.dist-info/top_level.txt,sha256=22IlUlOqh9Ni3jXlQNMNUqzbW8dcxXPeR_EQ-BJVcV8,6
|
|
114
|
+
aiecs-1.1.0.dist-info/RECORD,,
|
|
@@ -0,0 +1,9 @@
|
|
|
1
|
+
[console_scripts]
|
|
2
|
+
aiecs = aiecs.__main__:main
|
|
3
|
+
aiecs-check-deps = aiecs.scripts.dependance_check.dependency_checker:main
|
|
4
|
+
aiecs-download-nlp-data = aiecs.scripts.dependance_check.download_nlp_data:main
|
|
5
|
+
aiecs-fix-deps = aiecs.scripts.dependance_check.dependency_fixer:main
|
|
6
|
+
aiecs-patch-weasel = aiecs.scripts.dependance_patch.fix_weasel.fix_weasel_validator:main
|
|
7
|
+
aiecs-quick-check = aiecs.scripts.dependance_check.quick_dependency_check:main
|
|
8
|
+
aiecs-tools-check-annotations = aiecs.scripts.tools_develop.check_type_annotations:main
|
|
9
|
+
aiecs-tools-validate-schemas = aiecs.scripts.tools_develop.validate_tool_schemas:main
|
|
@@ -1,7 +0,0 @@
|
|
|
1
|
-
[console_scripts]
|
|
2
|
-
aiecs = aiecs.__main__:main
|
|
3
|
-
aiecs-check-deps = aiecs.scripts.dependency_checker:main
|
|
4
|
-
aiecs-download-nlp-data = aiecs.scripts.download_nlp_data:main
|
|
5
|
-
aiecs-fix-deps = aiecs.scripts.dependency_fixer:main
|
|
6
|
-
aiecs-patch-weasel = aiecs.scripts.fix_weasel_validator:main
|
|
7
|
-
aiecs-quick-check = aiecs.scripts.quick_dependency_check:main
|
/aiecs/scripts/{DEPENDENCY_SYSTEM_SUMMARY.md → dependance_check/DEPENDENCY_SYSTEM_SUMMARY.md}
RENAMED
|
File without changes
|
/aiecs/scripts/{README_DEPENDENCY_CHECKER.md → dependance_check/README_DEPENDENCY_CHECKER.md}
RENAMED
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
/aiecs/scripts/{README_WEASEL_PATCH.md → dependance_patch/fix_weasel/README_WEASEL_PATCH.md}
RENAMED
|
File without changes
|
/aiecs/scripts/{fix_weasel_validator.py → dependance_patch/fix_weasel/fix_weasel_validator.py}
RENAMED
|
File without changes
|
/aiecs/scripts/{fix_weasel_validator.sh → dependance_patch/fix_weasel/fix_weasel_validator.sh}
RENAMED
|
File without changes
|
/aiecs/scripts/{patch_weasel_library.sh → dependance_patch/fix_weasel/patch_weasel_library.sh}
RENAMED
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|