AI Stack Generator

Generate, download, and manage AI development stacks based on your machine capability and workflow intent.

Latest Result

Analysis History

0 saved

No saved scans

Complete a hardware scan on the Analysis page to populate recent entries.

Most recent machine scanNone yet

Recent Entries

No previous scans
Older analysis entries will appear here after additional scans.

Configuration

Summary

Selected entry: Entry 4/10

AI Build: General

Application Intent: AI Coding Lab

Hardware Profile: low

Analysis Constraints: Lightweight Local AI Stack

Components

  • Ollama runtime with local model support
  • Docker services
  • VS Code integration disabled for this stack

Actions

Build Output

Ready to create, export, or install this stack configuration.

Stack Files

Output controls below reflect the currently selected history entry.

Installer

Active output: Lightweight Local AI Stack

Generated Pack: AI Coding Lab

Selected history item: Entry 4/10

Selected preset: coding

Hardware profile: Low Spec

Options: Ollama Off, Docker On, Vector DB Off, VS Code Off

How to Use This Stack

How to use this stack

  1. 1. Copy or download the generated files.
  2. 2. Save `docker-compose.yml` in your project folder.
  3. 3. Save `install.ps1` alongside it.
  4. 4. Run the install script in the appropriate shell.
  5. 5. Start the stack with Docker after setup is complete.

docker-compose.yml

version: "3.8"

# Generated by CogentQAI for Low Spec. Edit images, ports, volumes, and env vars as needed.
services:
  app:
    image: python:3.11-slim
    container_name: cogentqai-app
    working_dir: /workspace
    command: bash -lc "pip install -r requirements.txt && python app.py"
    volumes:
      - ./:/workspace
    ports:
      - "8000:8000"

  redis:
    image: redis:7
    container_name: cogentqai-redis
    ports:
      - "6379:6379"

install.ps1

Write-Host "Installing CogentQAI stack..."
docker compose pull
docker compose up -d
Write-Host "Stack ready."