This commit is contained in:
yumoqing 2026-04-21 14:25:48 +08:00
parent 1262164f49
commit faad6e40b1
2 changed files with 7 additions and 6 deletions

View File

@ -24,9 +24,9 @@ from checklang.init import load_checklang
# from skillagent.init import load_skillagent # from skillagent.init import load_skillagent
# from dagflow.init import load_dagflow # from dagflow.init import load_dagflow
from discount.init import load_discount from discount.init import load_discount
from harnessed_agent.init import load_harnessed_agent # from harnessed_agent.init import load_harnessed_agent
from harnessed_reasoning.init import load_harnessed_reasoning # from harnessed_reasoning.init import load_harnessed_reasoning
from hermes_web_cli.init import load_hermes_web_cli
from global_func import set_globalvariable from global_func import set_globalvariable
from unipay.init import load_unipay from unipay.init import load_unipay
from platformbiz.init import load_platformbiz from platformbiz.init import load_platformbiz
@ -83,9 +83,10 @@ def init():
load_checklang() load_checklang()
# load_skillagent() # load_skillagent()
# load_dagflow() # load_dagflow()
load_harnessed_agent() # load_harnessed_agent()
load_harnessed_reasoning() # load_harnessed_reasoning()
load_discount() load_discount()
load_hermes_web_cli()
# load_woa() # load_woa()
load_smssend() load_smssend()
add_cleanupctx(run_zmq_proxy) add_cleanupctx(run_zmq_proxy)

View File

@ -26,7 +26,7 @@ do
cd $m cd $m
$cdir/py3/bin/pip install . $cdir/py3/bin/pip install .
done done
for m in appbase rbac accounting llmage platformbiz msp cpcc unipay filemgr dapi uapi rag charge pricing discount harnessed_agent harnessed_reasoning for m in appbase rbac accounting llmage platformbiz msp cpcc unipay filemgr dapi uapi rag charge pricing discount hermes-web-cli
do do
echo "install $m module..." echo "install $m module..."
cd $cdir/pkgs cd $cdir/pkgs