feat: Added iOS support

This commit is contained in:
xhguo
2025-12-12 17:58:20 +08:00
parent b2e985a790
commit 7c23ca549b
16 changed files with 2884 additions and 3 deletions

View File

@@ -1,11 +1,12 @@
"""
Phone Agent - An AI-powered phone automation framework.
This package provides tools for automating Android phone interactions
This package provides tools for automating Android and iOS phone interactions
using AI models for visual understanding and decision making.
"""
from phone_agent.agent import PhoneAgent
from phone_agent.agent_ios import IOSPhoneAgent
__version__ = "0.1.0"
__all__ = ["PhoneAgent"]
__all__ = ["PhoneAgent", "IOSPhoneAgent"]