Keyboard shortcuts

Press or to navigate between chapters

Press S or / to search in the book

Press ? to show this help

Press Esc to hide this help

Getting Help

When debugging and documentation are not enough, here is how to get assistance with Batuta and the Sovereign AI Stack.

Self-Service Resources

Before reaching out, check these resources in order:

ResourceURL / CommandBest For
This bookmake book-serveConcepts, architecture, examples
API documentationcargo doc --no-deps --openFunction signatures, type details
Oracle modebatuta oracle "your question"Natural language queries about the stack
Oracle RAGbatuta oracle --rag "topic"Searching indexed documentation
Error codesAppendix ESpecific error code explanations
CLI helpbatuta --help, batuta <cmd> --helpCommand flags and options

Diagnostic Self-Check

Run these commands and include the output in any help request:

# Environment info
rustc --version
cargo --version
batuta --version

# Tool availability
batuta analyze --check-tools

# Stack health
batuta stack check

# Pipeline state (if relevant)
batuta status --verbose

Escalation Path

┌────────────────────┐
│ 1. Read the docs   │  This book, cargo doc, oracle mode
├────────────────────┤
│ 2. Search issues   │  GitHub issues (existing solutions)
├────────────────────┤
│ 3. File an issue   │  See Issue Reporting chapter
├────────────────────┤
│ 4. Community help  │  See Community Resources chapter
└────────────────────┘

Common Resolution Paths

Problem TypeFirst Step
Build failurecargo build 2>&1 – read the compiler error carefully
Test failurecargo test -- --nocapture test_name – see the full output
Pipeline failurebatuta status --verbose – check which phase failed
Performance issuecargo bench – measure before diagnosing
Transpilation errorRUST_LOG=debug batuta transpile – check the logs

Stack Component Documentation

Each component in the Sovereign AI Stack has its own documentation:

Componentdocs.rsSource
truenodocs.rs/truenoSIMD/GPU compute
aprenderdocs.rs/aprenderML algorithms
realizardocs.rs/realizarInference engine
repartirdocs.rs/repartirDistributed compute
renacerdocs.rs/renacerSyscall tracing

See Issue Reporting for how to file effective bug reports, and Community Resources for additional support channels.


Navigate: Table of Contents