# a2a **Repository Path**: biwow/a2a ## Basic Information - **Project Name**: a2a - **Description**: enio a2a enio a2a - **Primary Language**: Go - **License**: MIT - **Default Branch**: master - **Homepage**: None - **GVP Project**: No ## Statistics - **Stars**: 0 - **Forks**: 0 - **Created**: 2026-07-13 - **Last Updated**: 2026-08-01 ## Categories & Tags **Categories**: Uncategorized **Tags**: None ## README a2a-project/ ├── go.mod # 根go.mod(仅用于统一版本,四个子项目各自独立go.mod) ├── common/ # 公共包:结构体、qdrant封装、http结构体、常量定义、embedding工具、回调通用逻辑 │ ├── config.go │ ├── types.go │ ├── qdrant_store.go │ ├── http_client.go │ └── const.go ├── harness/ │ ├── go.mod │ ├── main.go │ └── config.go ├── agent1-restaurant/ │ ├── go.mod │ ├── main.go │ └── config.go ├── agent2-supplier/ │ ├── go.mod │ ├── main.go │ └── config.go └── llm-proxy-service/ ├── go.mod ├── main.go └── config.go