draft init

This commit is contained in:
zRzRzRzRzRzRzR
2025-12-08 23:54:29 +08:00
commit 7e1785e08e
31 changed files with 3639 additions and 0 deletions

11
phone_agent/__init__.py Normal file
View File

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