Update installer and setup_msi to v2.0, remove bundled LLM model

Co-Authored-By: Claude Opus 4.6 <noreply@anthropic.com>
This commit is contained in:
DigiJ 2026-03-03 01:02:41 -08:00
parent 30fa744697
commit 21d055dc10
2 changed files with 5 additions and 4 deletions

View File

@ -13,8 +13,8 @@
[Setup]
AppName=AUTARCH
AppVersion=1.5.1
AppVerName=AUTARCH 1.5.1
AppVersion=2.0
AppVerName=AUTARCH 2.0
AppPublisher=darkHal Security Group
AppPublisherURL=https://github.com/darkhal
AppSupportURL=https://github.com/darkhal

View File

@ -16,7 +16,6 @@ include_files = [
(str(SRC / 'web' / 'static'), 'web/static'),
(str(SRC / 'data'), 'data'),
(str(SRC / 'modules'), 'modules'),
(str(SRC / 'models' / 'Hal_v2.gguf'), 'models/Hal_v2.gguf'),
(str(SRC / 'autarch_settings.conf'), 'autarch_settings.conf'),
(str(SRC / 'user_manual.md'), 'user_manual.md'),
(str(SRC / 'windows_manual.md'), 'windows_manual.md'),
@ -52,6 +51,8 @@ build_exe_options = {
'web.routes.msf', 'web.routes.chat',
'web.routes.targets', 'web.routes.encmodules',
'web.routes.llm_trainer',
'web.routes.autonomy',
'core.model_router', 'core.rules', 'core.autonomy',
],
'excludes': ['torch', 'transformers',
'tkinter', 'matplotlib', 'numpy',
@ -74,7 +75,7 @@ bdist_msi_options = {
setup(
name='AUTARCH',
version='1.5.1',
version='2.0',
description='AUTARCH — Autonomous Tactical Agent for Reconnaissance, Counterintelligence, and Hacking',
author='darkHal Security Group & Setec Security Labs',
options={