Files
Open-AutoGLM/phone_agent/__init__.py
2025-12-12 17:58:20 +08:00

13 lines
360 B
Python

"""
Phone Agent - An AI-powered phone automation framework.
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", "IOSPhoneAgent"]