全局重命名: - 包名: agent_eyes → agent_reach - CLI: agent-eyes → agent-reach - 类名: AgentEyes → AgentReach - 显示名: Agent Eyes → Agent Reach - GitHub: Panniantong/agent-eyes → Panniantong/Agent-Reach 所有 36 个测试通过,CLI/doctor/read/search 全部正常。
9 lines
212 B
Python
9 lines
212 B
Python
# -*- coding: utf-8 -*-
|
|
"""Agent Reach — Give your AI Agent eyes to see the entire internet."""
|
|
|
|
__version__ = "1.0.0"
|
|
__author__ = "Neo Reid"
|
|
|
|
from agent_reach.core import AgentReach
|
|
|
|
__all__ = ["AgentReach"]
|