Logo

ZATOR
LANG.

ZATOR MANIFESTO
NEUROSLOP AUTOMATION ✱ KOBOLDCPP & STABLE DIFFUSION ✱ NO PYTHON BOILERPLATE ✱ GENERATIVE AI PIPELINES ✱ KOBOLDCPP & STABLE DIFFUSION ✱
TEXT & IMAGE GENERATION ✱ ZATOR SCRIPTING ✱ AI PIPELINES MADE EASY ✱ TEXT & IMAGE GENERATION ✱ ZATOR SCRIPTING ✱ AI PIPELINES MADE EASY ✱
TEXT & IMAGE GENERATION ✱ ZATOR SCRIPTING ✱ AI PIPELINES MADE EASY ✱ TEXT & IMAGE GENERATION ✱ ZATOR SCRIPTING ✱ AI PIPELINES MADE EASY ✱
GENERATE_TEXT() GENERATE_IMG() SAVE_IMG() OPEN_TXT() F-STRINGS
GENERATE_TEXT() GENERATE_IMG() SAVE_IMG() OPEN_TXT() F-STRINGS
RELEASE 0.0.0 ✱ 2025-10-01
v0.0.0

FIRST VERSION

The first version featuring text and image generation.

var text = generate_text("Hello, world!") var img = generate_img("Beautiful landscape")
RELEASE 0.0.1 ✱ 2025-12-15
v0.0.1

IMAGE PROCESSING

Added image processing support (chroma_key, scale).

var processed = chroma_key(img, "#00FF00") var scaled = scale(processed, 1024, 1024)
RELEASE 0.0.2 ✱ 2026-02-20
v0.0.2

FUNCTIONS & IMPORTS

Functions, function parameters, library imports, HTTP requests, exec_cmd, and execution order fixed.

import http def my_func(param) { exec_cmd("echo " + param) }
RELEASE 0.0.3 ✱ 2026-05-12
v0.0.3

DEBUG MODE & API

Debug mode, custom API endpoints, open_txt/open_img, calling functions without call, unified interpreter, function parameter fixes, string interpolation, text generation timeout, request rework, save_txt/save_img fixes, and context removed.

var txt = open_txt("prompt.txt") var res = generate_text(txt, timeout=30) save_img("out.png", res_img)
RELEASE 0.0.4 ✱ 2026-05-12
v0.0.4

LUAJIT FORK & F-STRINGS

LuaJIT fork with Python-like f-strings support, relative path imports (relative to the executed file), and def which is translated to function.

import "./utils/helpers" def build_prompt(name) return f"Hello, {name}!" end