d84212f780
正式发布 Pretor 平台的首个 alpha 版本。本项目旨在构建一个基于分布式架构的多智能体协同工作流水线。 核心功能实现: 1. 建立基于 BaseIndividual 的动态插件加载机制。 2. 实现三类核心 worker_individual 子个体。 3. 集成 Ray 框架支持分布式集群调度。 4. 基于 PostgreSQL 的全量持久化存储方案。 5. 提供完整的 FastAPI 后端与 React 前端交互界面。
26 lines
1.6 KiB
Python
26 lines
1.6 KiB
Python
from rich.console import Console
|
|
from rich.text import Text
|
|
import yaml
|
|
def print_banner() -> None:
|
|
with open("config/config.yml","r") as config:
|
|
config = yaml.load(config, Loader=yaml.FullLoader)
|
|
version = config.get("version", "unknown")
|
|
pretor_banner = """
|
|
██████╗ ██████╗ ███████╗████████╗ ██████╗ ██████╗
|
|
██╔══██╗██╔══██╗██╔════╝╚══██╔══╝██╔═══██╗██╔══██╗
|
|
██████╔╝██████╔╝█████╗ ██║ ██║ ██║██████╔╝
|
|
██╔═══╝ ██╔══██╗██╔══╝ ██║ ██║ ██║██╔══██╗
|
|
██║ ██║ ██║███████╗ ██║ ╚██████╔╝██║ ██║
|
|
╚═╝ ╚═╝ ╚═╝╚══════╝ ╚═╝ ╚═════╝ ╚═╝ ╚═╝
|
|
"""
|
|
console = Console()
|
|
banner_colored = Text(pretor_banner, style="gold3 bold")
|
|
console.print(banner_colored)
|
|
console.print("=" * 40, style="dim") # dim=灰色,低调
|
|
console.print("🚀 Multi-Agent Orchestration Platform", style="blue")
|
|
console.print(f"📦 Version: {version}", style="green")
|
|
console.print("👤 Author: zhaoxi826", style="yellow")
|
|
console.print("📜 License: Apache 2.0", style="magenta")
|
|
console.print("🐙 github: https://github.com/zhaoxi826/pretor", style="yellow")
|
|
console.print("=" * 40, style="dim")
|