Nomploy Nomad Packs

← All packs

big-agi v0.1.0

AI

big-AGI — a feature-rich, multi-model AI chat suite (ChatGPT-style) supporting many providers, personas, beam/branching, image generation and more. Stateless; API keys live in your browser. Deployed as a single host-networked Nomad service.

nomad-pack run big-agi --registry nomploy
…or one line (add registry + run)
curl -fsSL https://packs.nomploy.com/install.sh | sh -s -- big-agi

Needs nomad-pack on PATH. The script only adds the nomploy registry and runs this pack.

1 task http 3000 image ghcr.io/enricoros/big-agi:latest tracks :latest image bumped today
Variables 7
values.hcl

Save as values.hcl, edit, then run:

nomad-pack run big-agi -f values.hcl --registry nomploy
# The name of the Nomad job.
job_name = "big-agi"

# The Nomad namespace to deploy into.
namespace = "default"

# The datacenters to deploy to.
datacenters = ["*"]

# The big-AGI container image. Pin a tag in production.
image = "ghcr.io/enricoros/big-agi:latest"

# Host port for the big-AGI web UI.
port = 3000

# Placement constraints. On a nomploy cluster: attribute = "$${meta.nomploy_control_plane}", operator = "=", value = "true".
constraints = []

# The task resources.
resources = {
    cpu    = 300
    memory = 256
  }
NameTypeDefaultDescription
job_name string
"big-agi"
The name of the Nomad job.
namespace string
"default"
The Nomad namespace to deploy into.
datacenters list
["*"]
The datacenters to deploy to.
image string
"ghcr.io/enricoros/big-agi:latest"
The big-AGI container image. Pin a tag in production.
port number
3000
Host port for the big-AGI web UI.
constraints list
[]
Placement constraints. On a nomploy cluster: attribute = "$${meta.nomploy_control_plane}", operator = "=", value = "true".
resources object
{
    cpu    = 300
    memory = 256
  }
The task resources.
Readme

big-agi

big-AGI — a feature-rich, multi-model AI chat suite. Talk to many providers (OpenAI, Anthropic, Google, Groq, Ollama and more) from one polished UI, with personas, multi-model "beam" comparisons, branching, code execution, image generation, text-to-speech and drawing. A power-user alternative to a single-vendor chat app.

Single stateless host-networked Nomad service (no volume) — your API keys and settings live in your browser.

Deploy

nomad-pack registry add nomploy https://github.com/Nomploy/nomad-packs
nomad-pack run big-agi --registry=nomploy

Configure

Variable Default Description
port 3000 Web UI port.
image ghcr.io/enricoros/big-agi:latest Container image. Pin a tag in production.
resources { cpu = 300, memory = 256 } Task resources.

Add your provider API keys in the UI (Settings), or bake server-side defaults by adding env vars like OPENAI_API_KEY to the task. Point it at a local ollama for fully self-hosted chat. Being stateless, it needs no storage — put it behind an authenticating reverse proxy if it shouldn't be public.