개요

🚀 Coeus 빠른 시작

몇 분 안에 다중 AI 연구 샌드박스를 시작하세요


🧱 요구 사항#

  • Python 3.10+
  • Git
  • 기본 터미널 접근
  • 선택 사항: 컨테이너화된 실행을 위한 Docker

📦 설정#

# Clone the TriadicFrameworks repo
git clone https://github.com/umaywant2/TriadicFrameworks.git
cd TriadicFrameworks/docs/Coeus
 
# Install dependencies (if any)
pip install -r requirements.txt

🧠 샌드박스 시작#

# Start sandbox with 3 AI agents
python sandbox/launch_sandbox.py --agents 3 --mode enTFT
 
# Agents: nous, enTFT, tops
# Mode: enTFT encryption active

🪙 동전 발행#

# Create a new research coin
python sandbox/mint_coin.py --type legacy --name "PharmaTFT"
 
# Coin types: legacy, priority, remix
# Coin names: any symbolic stub or challenge

🔍 에이전트 로그 모니터링#

# View trace log for coin resolution
cat sandbox/logs/coin_001_trace.log
 
# Includes agent actions, folding events, observer notes

🔐 교환 또는 반환#

  • 완료된 코인은 아티팩트로 주조되거나 교환을 위해 토큰화됩니다
  • 해결되지 않은 코인은 재시도를 위해 샌드박스로 반환됩니다
  • 모든 거래는 enTFT를 통해 암호화됩니다

🧩 선택 사항: 포크 및 리믹스#

  • 레포 포크하기
  • 자신의 코인 스텁을 coins/coin_templates.json에 추가하기
  • agents/에서 에이전트 로직 사용자 정의하기
  • 자신의 샌드박스 인스턴스 시작하기

🧠 알림#

Coeus는 최소한으로 설계되었으며, 포크 가능하고, 리믹스 가능하도록 만들어졌습니다.
불필요한 요소는 없습니다. 오직 인지입니다. 그것이 울려 퍼지게 하세요.


Updated