galdor

module
v0.15.1 Latest Latest
Warning

This package is not in the latest version of its module.

Go to latest
Published: Jun 12, 2026 License: Apache-2.0

README

galdor

galdor (n., Old English, c. 9th century): incantation, spell, a chanted word that bends reality.

A Go-native framework for building, orchestrating and observing AI agents. Native OpenTelemetry. Embedded dashboard. One binary. No external SaaS. Apache 2.0.

Go Reference Go Version


Why galdor

The table below was last verified against each project's repo, releases and official docs in May 2026. Sources are linked under the table; PRs welcome when something drifts.

galdor LangChain Python + LangSmith LangChainGo Eino Genkit Go
Latest release pre-alpha, v0.x langchain-core v1.4.0 (May 2026) v0.1.14 (Oct 2025) v0.8.13 stable, v0.9.0-alpha active (May 2026) — pre-1.0 mcp plugin v1.8.0 GA (May 2026)
Language / runtime Go Python Go Go Go
Observability story OTel-native, with an embedded SQLite trace store + dashboard served from the same binary LangSmith (closed-source SaaS) callbacks only, no OTel callbacks; the shipped tracing target is Langfuse, not OTel OTel-native; Genkit Monitoring (the hosted dashboard) is Google-Cloud only
End-to-end self-hostable (incl. dashboard) yes no — self-hosted LangSmith requires the paid Enterprise plan yes (BYO observability stack) yes (Apache framework + self-hosted Langfuse) partial — OTel exporters point anywhere, but the polished Genkit Monitoring dashboard is GCP-only
Dependency footprint core module pulls 6 direct + 13 indirect (the OTel + SQLite stack) n/a monolithic module; go.sum is 1,523 lines (≈200+ unique upstream modules) core + per-component modules under eino-ext per-plugin Go packages under firebase/genkit/go/plugins/*
MCP (Anthropic spec) client + server; stdio, SSE, Streamable HTTP client + tool-as-server, first-party client only, via 3rd-party adapters (e.g. i2y/langchaingo-mcp-adapter) client only, first-party client + server, first-party (stdio / SSE / StreamableHTTP)
A2A (Google spec) client + server not first-party no no no — even though Google authored A2A, its Go support lives in the separate a2aproject/a2a-go SDK and in ADK Go, not in Genkit
Multi-agent built in Supervisor + Swarm in pkg/council LangGraph: supervisor, hierarchy, swarm agents package (ReAct, conversational); no supervisor/swarm/hierarchy DeepAgent (supervisor + sub-agent delegation) + graph orchestration Flows + tool-calling agents; supervisor/swarm not first-class
Replay (record real run → deterministic re-run) yes (record-to-fixture, replay anywhere) LangSmith dataset replay (in the SaaS) no (mock + conformance suite, not record/replay) no no documented offline fixture replay
Eval framework yes, in-tree langchain.evaluation + LangSmith eval UI none none yes, evaluators plugin
License Apache 2.0 LangChain MIT; LangSmith proprietary MIT Apache 2.0 Apache 2.0

galdor's distinctive position: OTel-native + a single-binary self-hosted dashboard + first-party MCP server + first-party A2A server, all in Go. None of the other four projects ship all of those today.

If your stack runs Python comfortably and you're happy paying for LangSmith, LangChain is the most mature option. If you need broad Go provider coverage today (more adapters than galdor's four), Eino is further along — at the cost of no OTel and no A2A. If you need Go and MCP server-side exposure and A2A interop in one place, galdor is currently the only framework that ships both first-party.

Sources (verified May 2026): langchain-ai/langchain, LangSmith self-host docs, tmc/langchaingo, cloudwego/eino + eino-ext, firebase/genkit/go/plugins/mcp, firebase/genkit/go/plugins, a2aproject/a2a-go.


Status

v0.15.1 tagged. Looking for early integrators.

The 10-phase roadmap is functionally complete: provider abstraction (Anthropic, OpenAI/MiniMax/Groq/Together/DeepSeek/vLLM/Ollama via BaseURL or providerset, Google Gemini, AWS Bedrock) · type-safe tools with reflection-derived JSON schemas · directed graph runtime with checkpoints, interrupt/resume and branch-map conditional edges · ReAct and Plan-and-Execute agent helpers · native OTel observability with embedded SQLite trace store, auto-WAL-checkpointing exporter, auto-stamped run ids, and an orphan-span warning banner · embedded web dashboard with live SSE, per-run DAG, time-travel · short-term memory windows + long-term memory backends (in-mem, SQLite/BM25, pgvector, qdrant) · provider-backed and HTTP/TEI embedders · Council multi-agent patterns (Supervisor, Swarm) · MCP client + server over stdio, SSE, and Streamable HTTP · A2A protocol (Google) · inline eval framework with LLM-as-judge · schema-bound structured output (a Go struct in, a decoded value out) · deterministic replay with prompt fingerprinting · per-provider retry/backoff, run/node timeouts, panic recovery, structured logging, goroutine leak gates, capability-aware validation · thinking-block strip middleware for OpenAI-compat thinking models.

What's next: real-world integration feedback. If you're shipping agents in Go and the table at the top resonates, try galdor on your stack and open an issue — the framework has covered the surface; the remaining edges only show up in actual deployments. The pragma-galdor retro is one such report, and it shaped most of v0.1.0; more would be welcome.

Between v0.1.0 and v1.0.0, minor versions may still introduce breaking changes — pin a specific tag in your go.mod if you need reproducibility. See ROADMAP.md for full phase tracking.


Install

go get github.com/YasserCR/galdor@v0.15.1
# plus the provider(s) you need:
go get github.com/YasserCR/galdor/providers/anthropic@v0.15.1
go get github.com/YasserCR/galdor/providers/openai@v0.15.1
# or pick a provider at runtime via env var:
go get github.com/YasserCR/galdor/providerset@v0.15.1

The core module pulls only what it needs — providers, memory backends and protocol adapters live in their own Go modules so your dependency tree stays tight.

For the CLI + dashboard:

go install github.com/YasserCR/galdor/cmd/galdor@v0.15.1
galdor ui --db ./traces.db   # open http://127.0.0.1:7777

Quickstart

A complete ReAct agent in 20 lines:

package main

import (
	"context"
	"fmt"
	"log"
	"os"

	"github.com/YasserCR/galdor/pkg/agent"
	anthropic "github.com/YasserCR/galdor/providers/anthropic"
)

func main() {
	p, err := anthropic.New(anthropic.Config{APIKey: os.Getenv("ANTHROPIC_API_KEY")})
	if err != nil {
		log.Fatal(err)
	}

	answer, err := agent.Run(context.Background(), agent.Config{
		Provider: p,
		Model:    "claude-haiku-4-5",
	}, "What is the capital of Ecuador?")
	if err != nil {
		log.Fatal(err)
	}
	fmt.Println(answer)
}

Swap anthropic for openai (works with MiniMax / Groq / Together / Mistral via BaseURL), google (Gemini), or bedrock and nothing else changes.


Highlights

Type-safe tools (generics + reflection-derived JSON Schema)
import (
	"context"
	"github.com/YasserCR/galdor/pkg/tool"
)

type weatherIn struct {
	City string `json:"city" jsonschema:"required, city to look up"`
}
type weatherOut struct {
	Temp float64 `json:"temp_c"`
	Sky  string  `json:"sky"`
}

weather := tool.MustNewTool("weather", "Look up the weather for a city",
	func(ctx context.Context, in weatherIn) (weatherOut, error) {
		return weatherOut{Temp: 18.5, Sky: "clear"}, nil
	})

reg, _ := tool.NewRegistry(weather)

answer, _ := agent.Run(ctx, agent.Config{
	Provider: p, Tools: reg, Model: "claude-haiku-4-5",
}, "How's the weather in Quito?")

In and Out are real Go types — the JSON schema published to the LLM is derived from In's reflection metadata. No magic strings, no interface{}.

Native OpenTelemetry — built in, not bolted on
import (
	sdktrace "go.opentelemetry.io/otel/sdk/trace"
	"github.com/YasserCR/galdor/pkg/observability"
)

exporter, _ := observability.NewSQLiteExporter("./traces.db")
tp := sdktrace.NewTracerProvider(sdktrace.WithBatcher(exporter))
tracer := tp.Tracer("my-agent")

// Wrap your provider — every LLM call now produces a span.
p = observability.InstrumentProvider(p, tracer,
	observability.WithCaptureContent(true))

Every LLM call, tool invocation, and graph node becomes an OTel span following the GenAI semantic conventions. Inspect them with galdor ui or pipe them to your existing Datadog / Honeycomb / Grafana stack — same data, your choice of consumer.

Multi-agent: Supervisor and Swarm built in
import "github.com/YasserCR/galdor/pkg/council"

supervisor, _ := council.NewSupervisor(council.SupervisorConfig{
	Provider: p, Model: "claude-haiku-4-5",
	Workers: []council.Worker{
		{Name: "billing", Description: "handles invoices, refunds",
			Run: billingWorker},
		{Name: "technical", Description: "diagnoses bugs, outages",
			Run: technicalWorker},
	},
})

final, _ := supervisor.Invoke(ctx, council.SupervisorState{Input: userMessage})

A scripted-LLM routing supervisor that delegates each turn to specialists. See the full example: examples/integration-support-bot.

Human-in-the-loop with InterruptBefore
g := graph.New[TransferState]().
	AddNode("validate", validate).
	AddNode("execute", execute).
	AddEdge(graph.START, "validate").
	AddEdge("validate", "execute").
	InterruptBefore("execute")  // ← pause for human approval

r, _ := g.Compile()
ckpt := graph.NewMemoryCheckpointer[TransferState]()

// Phase 1: run until the gate. Returns ErrInterrupted.
_, err := r.InvokeWith(ctx, init, graph.RunOptions[TransferState]{
	RunID: runID, Checkpointer: ckpt,
})

// Phase 2: human reviews and edits state.
ck, _, _ := ckpt.Load(ctx, runID)
decision := promptHuman(ck.State)  // your UI / Slack bot / etc.

// Phase 3: resume with the decision injected.
final, _ := r.Resume(ctx, graph.RunOptions[TransferState]{
	RunID: runID, Checkpointer: ckpt, OverrideState: &decision,
})

Auditable, safe-by-construction approval flows. See examples/integration-approval-gate.

Replay: paid-API → fixture → deterministic test
// One-time: record a real run with prompt/completion capture on,
// then export the recording.
//
//   galdor scry replay <run-id> -o fixture.json

// Forever after: replay the run for free in CI.
rec, _ := replay.LoadFromFile("fixture.json")
mock := replay.NewProvider(rec.Calls, replay.ModeStrict)

r, _ := agent.NewReAct(agent.Config{Provider: mock, Model: "...", Tools: reg})
final, _ := r.Invoke(ctx, state)
// If your prompts drifted, ErrPromptMismatch tells you exactly which call.

Regression tests for prompts and agents that don't hit the network and don't burn tokens. See examples/integration-cost-tracked for the complementary budget-enforcement pattern.

MCP server: expose your tools to Claude Desktop in 20 lines
import (
	"github.com/YasserCR/galdor/pkg/mcp"
	"github.com/YasserCR/galdor/pkg/tool/builtins"
)

func main() {
	now, _ := builtins.NewTimeTool()
	math, _ := builtins.NewMathTool()
	reg, _ := tool.NewRegistry(now, math, yourCustomTool)

	srv := mcp.NewServer(reg, mcp.ServerInfo{Name: "my-tools", Version: "0.1"})
	transport := mcp.NewStdioTransport(os.Stdin, os.Stdout)
	_ = srv.Serve(context.Background(), transport)
}

Build the binary, point Claude Desktop's claude_desktop_config.json at it, restart Claude Desktop. Your tools appear in the picker. Full instructions in examples/integration-mcp-server.

For long-lived daemons that many clients share, swap the transport — SSE for IDE-compatibility today, Streamable HTTP for the post-2024-11-05 spec:

// pre-2024-11-05 spec (the SSE transport Cursor/Claude Desktop still default to)
transport := mcp.NewSSETransport(":4000")
// 2024-11-05 spec (single endpoint, session id via Mcp-Session-Id header)
transport := mcp.NewStreamableHTTPTransport(":4000")
Pick a provider at runtime
import "github.com/YasserCR/galdor/providerset"

// Reads LLM_PROVIDER, LLM_API_KEY, LLM_BASE_URL, LLM_HTTP_TIMEOUT.
// Supports anthropic, openai, google, bedrock + 7 OpenAI-compatible
// aliases: groq, together, mistral, minimax, deepseek, vllm, ollama.
p, err := providerset.FromEnv()

The equivalent of LiteLLM for Go: one switch, every supported provider, no per-app boilerplate. Lives in its own module so the core stays lean. See docs/concepts/providerset.md.

Self-hosted embeddings via HTTP
import "github.com/YasserCR/galdor/pkg/embedder"

// Works against HuggingFace TEI, Infinity, vLLM-embeddings, or any
// OpenAI-compatible /embeddings endpoint. Stdlib-only, no CGO.
emb, _ := embedder.NewHTTPEmbedder(embedder.HTTPConfig{
    URL:   "http://localhost:8080",
    Shape: embedder.ShapeTEI,
})

Plugs into memory.Retriever directly; satisfies memory.Embedder. See docs/concepts/embedder.md.

Thinking-model output, sanitized
import "github.com/YasserCR/galdor/pkg/provider"

// Opt-in middleware that strips <think>...</think> blocks emitted
// inline by OpenAI-compat thinking models (MiniMax, DeepSeek, Qwen).
// Handles closing tags split across stream deltas.
p = provider.StripThinkingBlocks(p)
Production hardening (Phase 10)
import "github.com/YasserCR/galdor/pkg/provider"

// Automatic retry with exponential backoff + jitter; respects the
// server's Retry-After header; never retries auth/invalid-request.
p = provider.Retry(p, provider.RetryConfig{
	MaxAttempts: 5,
	OnRetry: func(n int, d time.Duration, err error) {
		slog.Warn("retrying", "attempt", n, "delay", d, "err", err)
	},
})

// Per-run and per-node timeouts; panic recovery in nodes, tools,
// and hooks; structured logging via slog.
final, err := r.InvokeWith(ctx, state, graph.RunOptions[State]{
	Timeout:     2 * time.Minute,
	NodeTimeout: 30 * time.Second,
	Logger:      slog.New(slog.NewJSONHandler(os.Stdout, nil)),
})

Architecture (at a glance)

┌─────────────────────────────────────────────────────────────┐
│  CLI (galdor scry/ui)    Web dashboard with SSE + per-run DAG│
├─────────────────────────────────────────────────────────────┤
│  Eval Framework  │  Replay Engine  │  Time-travel UI        │
├─────────────────────────────────────────────────────────────┤
│  Agent Runtime (graph executor over goroutines + channels)  │
├─────────────────────────────────────────────────────────────┤
│  Tools  │  Memory  │  Embedder  │  Council  │  MCP  │  A2A  │
├─────────────────────────────────────────────────────────────┤
│  Provider Abstraction + Providerset (env-driven selection)  │
├─────────────────────────────────────────────────────────────┤
│  Observability Core (OTel-native, embedded SQLite backend)  │
└─────────────────────────────────────────────────────────────┘

See ARCHITECTURE.md for the full module map and docs/adr/ for design decisions.


Complete examples

Each one is a runnable end-to-end demo with its own README.

Example What it shows
integration-support-bot Supervisor + 3 specialist ReAct sub-agents with separate tool registries (billing, technical, general).
integration-approval-gate InterruptBefore + MemoryCheckpointer + Resume. Banking-style transfers with low/high/over-cap scenarios.
integration-mcp-server Wraps a tool.Registry as an MCP server over stdio, connectable from Claude Desktop.
integration-cost-tracked BudgetProvider middleware enforcing a token cap with $-denominated reporting.
integration-http-interpret A complete HTTP service wrapping an agent: structured output, tracing, health endpoint, graceful shutdown.

Smaller, feature-focused examples live alongside:

Example What it shows
agent-react Minimum ReAct loop with tools
tools-loop LLM ↔ tools dispatch cycle
graph-counter Counting nodes in a graph
graph-interrupt The InterruptBefore primitive on its own
memory-rag Chunk → embed → SQLite → Retriever
observability-trace Wiring the trace exporter
scry-store Working with the SQLite trace store
provider-interface Implementing a custom Provider
eval-suite eval.Config + scorers + RunAndExit
structured-output GenerateStructured[T]: a Go struct in, a decoded value out
trial-suite A galdor trial eval suite in YAML — the CI gate, no Go
cast-agent A galdor cast agent in YAML, with --trace into the dashboard
council-team A galdor council supervisor/swarm topology in YAML
spellbook Versioned prompt templates managed with galdor spellbook

Provider matrix

Provider Module path Streaming Tools Vision Notes
Anthropic providers/anthropic yes yes yes reference adapter; prompt caching honored
OpenAI providers/openai yes yes yes also works against Mistral, MiniMax, Together, Groq, vLLM via BaseURL
Google Gemini providers/google yes yes yes AI Studio surface; Vertex AI via custom HTTPClient
AWS Bedrock providers/bedrock yes yes yes Converse API; SigV4 via AWS SDK Go v2

For runtime selection across all of the above plus seven OpenAI-compatible aliases (groq, together, mistral, minimax, deepseek, vllm, ollama), pick a provider via env var with providerset.FromEnv() instead of importing each adapter directly.

Embedders ship in the same provider modules: openai.NewEmbedder (covers OpenAI-compatible endpoints) and google.NewEmbedder. For self-hosted embeddings (TEI, Infinity, vLLM-embeddings, or any OpenAI-compatible /embeddings endpoint), use pkg/embedder.HTTPEmbedder.


Memory backends

Backend Module path Best for
in-memory pkg/memory (InMemoryStore) tests, getting-started
SQLite + BM25 memory/sqlite single-process production, embedded apps
pgvector memory/pgvector Postgres-centric stacks
qdrant memory/qdrant dedicated vector DB

All four implement the same memory.Store interface, so you swap by changing one constructor. A few semantics differ by design, so check these when porting:

in-memory SQLite + BM25 pgvector qdrant
Empty Chunk.ID on Add auto-assigned (UUID) rejected rejected rejected
Query mode lexical + vector lexical (BM25) + vector vector-only vector-only
Chunks without an embedding allowed allowed (lexical) rejected rejected

The persistent backends require caller-stable IDs so re-ingesting the same chunk is an idempotent upsert (a random ID would create duplicates) — that's why they reject an empty ID rather than minting one. The vector-only backends need an embedding on every chunk and every query.


Use galdor when…

  • You're shipping into infrastructure that can't reach an external SaaS (compliance, data residency, air-gap).
  • You want a single binary you can drop into a container, no Python runtime, no GCP or LangSmith dependency.
  • You care about audit trails — the SQLite store + replay engine make every run reconstructable from disk.
  • You're already invested in OTel — galdor's spans drop into your existing pipeline (Datadog, Honeycomb, Grafana, Tempo) without glue code.
  • Your team is more comfortable in Go than in Python.

Don't use galdor when…

  • You need the broadest possible ecosystem of pre-built tools, vector stores, and document loaders — LangChain Python still wins on raw integration count.
  • You need broader Go provider coverage today than the four galdor ships — Eino currently has more provider components in eino-ext.
  • You need very specific provider features galdor hasn't surfaced yet (audio, file uploads, certain vision modes). Check the provider matrix above.
  • You're an early-stage prototyper who wants a rich hosted GUI to poke at — galdor's dashboard is intentionally lean.

CLI

# Observability
galdor ui              --db ./traces.db
galdor scry list       --db ./traces.db
galdor scry show       <run-id> --db ./traces.db
galdor scry stats      --db ./traces.db [--by overall|provider|model]
galdor scry tail       --db ./traces.db [--interval 1s]
galdor scry replay     <run-id> --db ./traces.db [-o fixture.json]
galdor weave           <run-id> --db ./traces.db [-o graph.svg | --check]

# Config-driven agents (YAML in, no Go required)
galdor cast            agent.yaml "your input"  [--trace]
galdor council         topology.yaml "your input"
galdor trial           suite.yaml               # eval gate for CI (exit 0/1/2)

# Tooling
galdor mcp serve       [--http ADDR] [--base-dir DIR] [--allow-host H]
galdor mcp ls|call     <URL> | -- <command>
galdor spellbook       list|show|diff|render [--dir DIR]
galdor doctor          # check your environment for setup problems

scry is the introspection family (Old English: to perceive, to discern). Every trace-reading command honors $GALDOR_DB and ~/.galdor/traces.db as fallback paths.


Documentation

Start at docs/ — the index covers quickstart, one conceptual guide per package, applied patterns, migration guides from langchaingo / Eino / Genkit Go / LangChain Python, and the ops guide.

  • docs/quickstart.md — install → first ReAct agent → first tool → first traced run, in 15 minutes
  • docs/concepts/ — one page per package (provider, schema, tool, graph, agent, memory, observability, council, mcp, a2a, eval, replay, spellbook)
  • docs/patterns/ — RAG, multi-agent, human-in-the-loop, cost tracking, MCP server, replay-driven tests
  • docs/migration/ — coming from another framework? side-by-side translations
  • docs/ops.md — deployment shapes, trace store retention, exporting to your OTel pipeline
  • docs/benchmarks.md — runtime overhead, throughput numbers, sizing guidance
  • docs/security.md — automated tooling, accepted findings, OWASP LLM Top 10 self-assessment
  • docs/adr/ — architectural decision records
  • ARCHITECTURE.md — module map and design invariants
  • ROADMAP.md — phase-by-phase delivery tracker
  • GOVERNANCE.md — how decisions get made
  • CONTRIBUTING.md — how to send patches
  • godoc reference — API surface

Contributing

galdor uses the Developer Certificate of Origin (DCO) — every commit must be signed off:

git commit -s -m "..."

PRs welcome. We don't require a CLA. See CONTRIBUTING.md for the dev loop.


Governance

galdor is currently maintained by a single BDFL with an explicit plan to transition to a multi-maintainer model once three contributors with sustained activity exist. See GOVERNANCE.md.


License

galdor is licensed under the Apache License 2.0 — permissive, with an explicit patent grant, widely accepted by enterprise legal review.

Apache 2.0 is the contract; this README is a description. The code in this repository today is published under Apache 2.0 and any version released under that license stays available under it forever — that's what Apache 2.0 means. Forks are welcome.


"The incantation framework for Go agents."

Directories

Path Synopsis
cmd
galdor module
examples module
internal
jsonschema
Package jsonschema generates JSON Schema documents from Go struct types via reflection.
Package jsonschema generates JSON Schema documents from Go struct types via reflection.
store
Package store is galdor's embedded persistence layer.
Package store is galdor's embedded persistence layer.
ui
Package ui serves galdor's embedded observability dashboard.
Package ui serves galdor's embedded observability dashboard.
memory
pgvector module
qdrant module
sqlite module
pkg
a2a
Package a2a implements Google's Agent-to-Agent (A2A) protocol for interoperability between independently-developed agents.
Package a2a implements Google's Agent-to-Agent (A2A) protocol for interoperability between independently-developed agents.
agent
Package agent ships high-level agent helpers built on pkg/graph, pkg/provider and pkg/tool.
Package agent ships high-level agent helpers built on pkg/graph, pkg/provider and pkg/tool.
council
Package council provides high-level multi-agent orchestration primitives.
Package council provides high-level multi-agent orchestration primitives.
embedder
Package embedder provides a generic HTTP client for self-hosted embedding services.
Package embedder provides a generic HTTP client for self-hosted embedding services.
eval
Package eval ships the inline regression framework for prompts and agents.
Package eval ships the inline regression framework for prompts and agents.
graph
Package graph is galdor's generic graph runtime.
Package graph is galdor's generic graph runtime.
mcp
Package mcp implements client and server sides of the Model Context Protocol (MCP) — Anthropic's spec for connecting LLM applications to external tools and data sources.
Package mcp implements client and server sides of the Model Context Protocol (MCP) — Anthropic's spec for connecting LLM applications to external tools and data sources.
memory
Package memory defines short-term and long-term memory primitives.
Package memory defines short-term and long-term memory primitives.
memory/chunk
Package chunk splits Documents into Chunks suitable for embedding and retrieval.
Package chunk splits Documents into Chunks suitable for embedding and retrieval.
observability
Package observability is galdor's native instrumentation layer.
Package observability is galdor's native instrumentation layer.
provider
Package provider defines the abstraction over LLM backends used by galdor.
Package provider defines the abstraction over LLM backends used by galdor.
replay
Package replay reproduces a past agent run from its recorded trace.
Package replay reproduces a past agent run from its recorded trace.
schema
Package schema defines the shared types used across galdor: Role, Message, ContentPart, ToolCall, ToolDef, Usage, StopReason and CacheControl.
Package schema defines the shared types used across galdor: Role, Message, ContentPart, ToolCall, ToolDef, Usage, StopReason and CacheControl.
spellbook
Package spellbook is galdor's prompt registry: versioned prompt templates with a diff-friendly storage format, retrievable by name and version from agents and the CLI.
Package spellbook is galdor's prompt registry: versioned prompt templates with a diff-friendly storage format, retrievable by name and version from agents and the CLI.
testprovider
Package testprovider provides an in-process provider.Provider implementation for unit-testing code that depends on an LLM call without hitting a real network or burning quota.
Package testprovider provides an in-process provider.Provider implementation for unit-testing code that depends on an LLM call without hitting a real network or burning quota.
tool
Package tool provides galdor's type-safe tool system.
Package tool provides galdor's type-safe tool system.
tool/builtins
Package builtins ships a small set of out-of-the-box tools that agents commonly want: time, math, HTTP GET, and file read.
Package builtins ships a small set of out-of-the-box tools that agents commonly want: time, math, HTTP GET, and file read.
providers
anthropic module
bedrock module
google module
openai module
providerset module

Jump to

Keyboard shortcuts

? : This menu
/ : Search site
f or F : Jump to
y or Y : Canonical URL