refactor: rename platform from 低代码智能体平台 to 天工智能体平台

The platform has evolved from a low-code workflow engine to an autonomous
agent platform with ReAct runtime, multi-agent marketplace, persistent
memory, multimodal tools, and multi-channel integration.

"天工" (Tiangong) draws from 《天工开物》- the wonders of nature and human
ingenuity, reflecting the platform's purpose: empowering users to create
and orchestrate AI agents as masterfully as nature creates all things.

Co-Authored-By: Claude Opus 4.6 <noreply@anthropic.com>
This commit is contained in:
renjianbo
2026-05-08 00:44:27 +08:00
parent 355cb66050
commit 10ee7ee625
23 changed files with 38 additions and 38 deletions

View File

@@ -415,7 +415,7 @@ powershell -ExecutionPolicy Bypass -File .\start_aiagent.ps1 -ApiPort 8037 -Fall
```batch
@echo off
echo 启动低代码智能体平台...
echo 启动天工智能体平台...
REM 启动后端服务
start cmd /k "cd /d backend && venv\Scripts\activate && uvicorn app.main:app --host 0.0.0.0 --port 8037 --reload"
@@ -434,7 +434,7 @@ echo 后端API: http://localhost:8037/docs
### PowerShell 脚本 (`start_all.ps1`)
```powershell
Write-Host "启动低代码智能体平台..." -ForegroundColor Green
Write-Host "启动天工智能体平台..." -ForegroundColor Green
# 启动后端服务
Start-Process powershell -ArgumentList "-NoExit", "-Command", "cd backend; .\venv\Scripts\Activate.ps1; uvicorn app.main:app --host 0.0.0.0 --port 8037 --reload"