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>
10 lines
174 B
Bash
10 lines
174 B
Bash
#!/bin/bash
|
|
|
|
# 天工智能体平台停止脚本
|
|
|
|
echo "🛑 停止天工智能体平台服务..."
|
|
|
|
docker-compose -f docker-compose.dev.yml down
|
|
|
|
echo "✅ 服务已停止"
|