Skip to content

Configuration

sarr-io edited this page Jun 13, 2026 · 20 revisions

Configuration

Zinc reads workspace .zinc/config.yaml and global ~/.zinc/config.yaml.

packages:
  responses: openai-responses@0.1.8

runtime:
  parallel: true
  max_parallel: 2

models:
  default: local-llama

  local-llama:
    adapter: responses.adapter
    params:
      endpoint: http://127.0.0.1:30000
      endpoint_kind: chat_completions
      model: local-gemma-4-e4b-it
      temperature: 0.2

max_parallel: 0 uses the host CPU count.

A Circuitry document can include zinc.runtime for sparse run-specific overrides. Package inclusions stay with the document when the document needs package assets.

A model preset names an adapter asset and passes params to it. The adapter receives the part name, params, instructions, typed inputs, and expected outputs.

Clone this wiki locally