Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -100,7 +100,7 @@ assets/copilot_proxy.pyw
*.ffs_db

# GA_viewer — 独立工具集,不上传
GA_viewer/
GA_tools/

# Config templates
.env.template
6 changes: 3 additions & 3 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@
GenericAgent_mqtt/
├── Part 1: 智能体核心 ← 你日常交互的部分
├── Part 2: MQTT 基础设施 ← 放 VPS 上运行的服务
└── Part 3: GA_viewer ← 独立查看/格式转换工具
└── Part 3: GA_tools ← 独立查看/格式转换工具
```

---
Expand Down Expand Up @@ -85,12 +85,12 @@ rmqtt start
python -m mqtt_bbs.board_service

# 3. 或使用 Rust 版(高性能)
cd GA_viewer && ./md_server_rs/target/release/board_service_rs
cd GA_tools && ./md_server_rs/target/release/board_service_rs
```

---

## Part 3: GA_viewer(独立工具集)
## Part 3: GA_tools(独立工具集)

与智能体无关的独立查看/格式转换工具。

Expand Down
6 changes: 3 additions & 3 deletions README_EN.md
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@ Core change: replaces file-based agent communication with an MQTT message bus fo
GenericAgent_mqtt/
├── Part 1: Agent Core ← What you interact with daily
├── Part 2: MQTT Infrastructure ← Services to run on a VPS
└── Part 3: GA_viewer ← Standalone viewer/converter tools
└── Part 3: GA_tools ← Standalone viewer/converter tools
```

---
Expand Down Expand Up @@ -85,12 +85,12 @@ rmqtt start
python -m mqtt_bbs.board_service

# 3. Or use Rust version (high performance)
cd GA_viewer && ./md_server_rs/target/release/board_service_rs
cd GA_tools && ./md_server_rs/target/release/board_service_rs
```

---

## Part 3: GA_viewer (Standalone Tools)
## Part 3: GA_tools (Standalone Tools)

Independent viewer/conversion tools, usable separately from the agent.

Expand Down
Loading