paladin-ai 0.4.3

Enterprise AI orchestration framework with multi-agent coordination patterns
Documentation
# Document Processing Configuration - PDF Analysis
# This example shows how to configure a Paladin for processing documents

name: document-processor
system_prompt: |
  You are an AI assistant specialized in document analysis and processing.
  Extract information from documents, summarize content, answer questions
  about the document, and provide insights based on the text.

model: gpt-4
temperature: 0.7
max_loops: 3
timeout_seconds: 300

# Documents for processing (no vision needed for text-only)
documents:
  - /path/to/report.pdf
  - /path/to/notes.txt
  - /path/to/documentation.md

provider:
  type: openai

# Optional: Add memory for multi-document context
garrison:
  type: sqlite
  config:
    path: ./document_memory.db