# genaipy **Repository Path**: mirrors_maruel/genaipy ## Basic Information - **Project Name**: genaipy - **Description**: Local python backend implementations for github.com/maruel/genai - **Primary Language**: Unknown - **License**: Apache-2.0 - **Default Branch**: main - **Homepage**: None - **GVP Project**: No ## Statistics - **Stars**: 0 - **Forks**: 0 - **Created**: 2025-08-04 - **Last Updated**: 2026-09-05 ## Categories & Tags **Categories**: Uncategorized **Tags**: None ## README # genaipy Local backend python implementations for [github.com/maruel/genai](https://github.com/maruel/genai). ## Manual testing the python servers These scripts are embedded in the main executable and are run when model `"python"` is requested. These scripts can be run stand alone, e.g. to run the Stable Diffusion image generator on a separate machine, or to customize the image generation. ### Image Generation #### macOS or linux ``` ./setup.sh source venv/bin/activate ./image_gen.py --host 0.0.0.0 --port 8032 ``` #### Windows ``` setup.bat venv\Scripts\activate python image_gen.py --host 0.0.0.0 --port 8032 ``` ### LLM #### macOS or linux ``` ./setup.sh source venv/bin/activate ./llm.py --host 0.0.0.0 --port 8031 ``` #### Windows ``` setup.bat venv\Scripts\activate python llm.py --host 0.0.0.0 --port 8031 ```