### Build and Start Docker Containers Source: https://github.com/westlake-agi-lab/appagentx/blob/main/backend/README.md Use these commands to build the Docker images and start the services. The second command runs them in the background. ```bash # Build and start containers docker-compose up --build # Run in background docker-compose up -d --build ``` -------------------------------- ### Launch Gradio Demo Source: https://github.com/westlake-agi-lab/appagentx/blob/main/README.md Use one of these commands to launch the AppAgentX demo using Gradio. Ensure your device or emulator is set up before running. ```sh python demo.py ``` ```sh gradio demo.py ``` -------------------------------- ### View Docker Service Logs Source: https://github.com/westlake-agi-lab/appagentx/blob/main/backend/README.md Commands to view logs from Docker services. You can view all logs or follow logs for a specific service. ```bash # View logs from all services docker-compose logs # View logs from a specific service with follow option docker-compose logs -f omniparser ``` -------------------------------- ### Check Docker Container Status Source: https://github.com/westlake-agi-lab/appagentx/blob/main/backend/README.md Command to view the status of running Docker containers managed by Docker Compose. ```bash docker-compose ps ``` -------------------------------- ### Screen Parsing Service API Source: https://github.com/westlake-agi-lab/appagentx/blob/main/backend/README.md Provides an endpoint to process an image and return parsing results using the Screen Parsing Service. ```APIDOC ## POST /process_image/ ### Description Process an image and return the parsing results. ### Method POST ### Endpoint /process_image/ ``` -------------------------------- ### Shut Down Docker Services Source: https://github.com/westlake-agi-lab/appagentx/blob/main/backend/README.md Commands to stop and remove Docker containers and associated resources. Choose the command based on whether you need to keep containers, networks, or volumes. ```bash # Standard way to stop services and remove containers docker-compose down # Stop services but keep containers docker-compose stop # Stop services and remove containers, networks, and volumes docker-compose down -v # If you want to stop and remove everything including images docker-compose down --rmi all -v ``` -------------------------------- ### AppAgentX BibTeX Citation Source: https://github.com/westlake-agi-lab/appagentx/blob/main/README.md BibTeX entry for citing the AppAgentX paper. Include this in your LaTeX documents if you find the repository helpful. ```bibtex @misc{jiang2025appagentxevolvingguiagents, title={AppAgentX: Evolving GUI Agents as Proficient Smartphone Users}, author={Wenjia Jiang and Yangyang Zhuang and Chenxi Song and Xu Yang and Chi Zhang}, year={2025}, eprint={2503.02268}, archivePrefix={arXiv}, primaryClass={cs.AI}, url={https://arxiv.org/abs/2503.02268}, } ``` -------------------------------- ### Image Feature Extraction Service API Source: https://github.com/westlake-agi-lab/appagentx/blob/main/backend/README.md Provides endpoints for managing models, extracting image features, and benchmarking the Image Feature Extraction Service. ```APIDOC ## GET /available_models ### Description Get a list of available models for image feature extraction. ### Method GET ### Endpoint /available_models ## POST /set_model ### Description Set the model to be used for image feature extraction. ### Method POST ### Endpoint /set_model ## POST /extract_single/ ### Description Extract features from a single image. ### Method POST ### Endpoint /extract_single/ ## POST /extract_batch/ ### Description Batch extract features from multiple images. ### Method POST ### Endpoint /extract_batch/ ## GET /model_info ### Description Get information about the currently set model. ### Method GET ### Endpoint /model_info ## GET /benchmark/ ### Description Run performance tests for the image feature extraction service. ### Method GET ### Endpoint /benchmark/ ``` === COMPLETE CONTENT === This response contains all available snippets from this library. No additional content exists. Do not make further requests.