Generations run on one shared GPU, so at busy times you wait in a queue. If that's too slow, you can run your tier's AI model locally on your own machine - instant, private, and no queue. It still counts toward your plan's weekly limit, so it stays fair. This page checks what your computer can handle.
Don't want to touch a terminal? Download AGenO Local - a little app that installs ComfyUI + the models, starts everything with the right settings, and gives you a dashboard with Install / Start buttons. You're signed in automatically.
python ageno-local.py (Windows: double-click, or py ageno-local.py). A dashboard opens in your browser → click Install everything, then Start. Prefer to do it by hand? The exact commands are still below.ageno-local.py isn't a compiled black box - open it in any text editor before running and you can see exactly what it does. Every command is right there.Ctrl+Shift+Esc → Performance (GPU + Memory). Mac: Apple menu → About This Mac.Each AGenO tier maps to one model - to use AGenO's models locally you run your tier's model, not a random one. ✅ runs great · ⚠️ runs but slow · ❌ won't fit.
| Your tier | Model | Needs ~VRAM | On your PC |
|---|
AGenO runs local models through Ollama (free). It takes about 5 minutes once.
Win + R, type cmd, Enter. Mac: Cmd + Space, type Terminal, Enter.ollama pull hermes3
Windows: setx OLLAMA_ORIGINS "https://agenoai.com" Mac: launchctl setenv OLLAMA_ORIGINS "https://agenoai.com" Linux: export OLLAMA_ORIGINS="https://agenoai.com" (add to ~/.bashrc)
localhost:11434 - your own machine.OLLAMA_ORIGINS step and restarted Ollama, and you pulled the model. Local mode also needs you to be signed in (so it can meter against your plan).Running locally, you're not limited to your tier's size - if your GPU is strong you can bring a higher-parameter model (e.g. a 32B or 72B) for even better answers. That's a separate “bring-your-own-model” option so the website knows it's an intentional upgrade, not a random mismatch.
See the bring-your-own-model add-on →Images, video and music run through ComfyUI (free, open-source); voice uses a TTS engine. Good news - local image, video and music generation are now wired into the AGenO site (beta): set up ComfyUI once, flip the 💻 toggle on the page, and press Generate. Image uses a built-in workflow; for video & music you paste your own ComfyUI workflow once (so it matches your exact models). Copy-paste each block below into a terminal.
git clone https://github.com/comfyanonymous/ComfyUI cd ComfyUI python -m venv venv # activate it - Windows: venv\Scripts\activate # …or Mac/Linux: source venv/bin/activate # PyTorch (NVIDIA CUDA 12.4 build) + ComfyUI deps: pip install torch torchvision torchaudio --index-url https://download.pytorch.org/whl/cu124 pip install -r requirements.txt
python main.py --enable-cors-header "https://agenoai.com"Leave that window running. ComfyUI is now live on
localhost:8188. (One-click app? Add --enable-cors-header "https://agenoai.com" to its launch arguments.)pip install -U "huggingface_hub[cli]" huggingface-cli download stabilityai/sdxl-turbo sd_xl_turbo_1.0_fp16.safetensors --local-dir ComfyUI/models/checkpointsThat's it. Open the image generator, click the 💻 button (turns green), type a prompt, hit Generate → it renders on your GPU, no queue. (Still counts toward your weekly image limit.)
huggingface-cli download Lightricks/LTX-Video ltx-video-2b-v0.9.5.safetensors --local-dir ComfyUI/models/checkpointsThen open the video page, flip 💻, type a prompt and press Generate - no workflow needed. (If your model file has a different name, click “Load default” in the panel and edit
ckpt_name, or paste your own Save-(API-Format) workflow.)cd ComfyUI/custom_nodes git clone https://github.com/ace-step/ComfyUI_ACE-Step cd .. # restart ComfyUI, then load the ACE-Step workflowEasier alternative: ComfyUI Manager → search “ACE-Step” → Install. Then Save (API Format) your ACE-Step workflow and paste it into the 💻 panel on the music page (use
%PROMPT% for your tags) to generate locally through the site.
huggingface-cli download Kim2091/UltraSharp 4x-UltraSharp.pth --local-dir ComfyUI/models/upscale_models✅ Now one-click on the site (beta): with ComfyUI running + the SDXL-Turbo model, open the photo editor, upload a photo, flip 💻, describe your edit and press Edit - it runs img2img on your machine. (For big upscales add the model above and use a workflow with an Upscale Image (using Model) node.)
/tts and /stt on localhost:8123 with CORS enabled.
pip install chatterbox-tts faster-whisperStart the server (it must allow cross-origin requests - add
Access-Control-Allow-Origin: *), then on the voice page click 💻. Now your speech-to-text (Whisper), the reply (your Ollama model) and the spoken voice (Chatterbox) all run locally - no queue, fully private. Each piece falls back to the cloud automatically if its local service isn't up.ollama pull steps above. The Quest game and Learn helper will reuse the very same model.