New: - WeChat Official Account channel (search + read) - Search via miku_ai (Sogou WeChat search) - Read via Camoufox (stealth Firefox, bypasses anti-bot) - 13 channels total Fixed: - Windows encoding: text=True → encoding='utf-8' in all subprocess calls (#64) - Windows .cmd resolution: use shutil.which() paths (#64) Docs: - Clarified agent-reach has no read/search commands (#58, #59) - Fixed xiaohongshu API function names in SKILL.md (#65) - Added CONTRIBUTING.md (#62) - Updated README (zh + en) with WeChat channel Version bumps: pyproject.toml, __init__.py, test_cli.py Co-authored-by: Panniantong <panniantong@users.noreply.github.com>
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.3.0"
|
|
__author__ = "Neo Reid"
|
|
|
|
from agent_reach.core import AgentReach
|
|
|
|
__all__ = ["AgentReach"]
|