P0-1: 删除 docker-compose-override.yml + deploy-server 两份 workers=2→1(预防性修复,服务器根 compose 已是 workers=1)

This commit is contained in:
Simon
2026-07-17 23:16:40 +08:00
parent 3ed86d5fb3
commit 939de70e48
11412 changed files with 2257596 additions and 145 deletions
+14
View File
@@ -0,0 +1,14 @@
import sys, json
d = json.load(sys.stdin)
nodes = d.get('graph', {}).get('nodes', [])
llms = [n for n in nodes if n.get('data', {}).get('type') == 'llm']
print(f'Total LLM nodes: {len(llms)}')
for n in llms:
title = n['data']['title']
sys_prompt = [p for p in n['data'].get('prompt_template', []) if p.get('role') == 'system']
if sys_prompt:
text = sys_prompt[0].get('text', '')
print(f' {title}: sys_prompt_len={len(text)}, contains_json={"JSON" in text or "json" in text}')
else:
print(f' {title}: NO system prompt')