Skip to main content

Lightweight multi-agent orchestration with prompt-planning workflows

Project description

simagents

simagents is a lightweight Python framework for building multi-agent workflows with:

  • Linear, parallel, and loop orchestration modes
  • Agent-level model configuration
  • Prompt-planning friendly task chaining
  • Safe decision logs (reasoning summaries)
  • Retry/backoff + run artifact persistence

Why simagents (vs broader frameworks)

  • Workflow-first: orchestration mode is a first-class setting (linear, parallel, loop)
  • Prompt-planning native: easy to build research → prompt-plan → execution flows
  • Simple API: define agents + tasks + workflow, then run
  • Production-lite defaults: retries, logs, artifact folders, decision logs

Install (local)

From the simagents/ folder:

pip install -e .

For tests/dev:

pip install -e ".[dev]"

Environment variables

simagents supports multiple provider adapters via the OpenAI SDK-compatible interface:

  • OpenAIProvider
  • OllamaProvider
  • GroqProvider
  • TogetherProvider
  • OpenRouterProvider
  • AnthropicProvider (Claude)
  • OpenAICompatibleProvider (custom base URL)

Base env vars:

SIMAGENTS_API_KEY=your_key
SIMAGENTS_BASE_URL=https://api.openai.com/v1

Fallback key env var:

  • OPENAI_API_KEY

Provider-specific common keys:

  • OLLAMA_API_KEY, OLLAMA_BASE_URL
  • GROQ_API_KEY
  • TOGETHER_API_KEY
  • OPENROUTER_API_KEY
  • ANTHROPIC_API_KEY

Claude model examples:

  • claude-3-5-sonnet-latest
  • claude-3-7-sonnet-latest

Quickstart

from simagents import AgentSpec, EasyOrchestrator, RunConfig, TaskSpec, WorkflowSpec
from simagents.core.models import WorkflowMode
from simagents.llm import AnthropicProvider, OpenAIProvider

agents = [
    AgentSpec(name="researcher", role="Research specialist", model="gpt-4o-mini"),
    AgentSpec(name="writer", role="Technical writer", model="gpt-4o-mini"),
]

tasks = [
    TaskSpec(name="research", agent_name="researcher", prompt_template="Research: {input}"),
    TaskSpec(name="final", agent_name="writer", prompt_template="Write post using: {research}"),
]

workflow = WorkflowSpec(mode=WorkflowMode.LINEAR)
run_config = RunConfig(output_dir="runs", save_artifacts=True)

orch = EasyOrchestrator(
    agents=agents,
    tasks=tasks,
    workflow=workflow,
    run_config=run_config,
    provider=OpenAIProvider(),
)
result = orch.run(input_text="How AI is changing bioinformatics")
print(result.final_output)
print(result.decision_log)

# Claude usage (swap provider)
# orch = EasyOrchestrator(
#     agents=agents,
#     tasks=tasks,
#     workflow=workflow,
#     run_config=run_config,
#     provider=AnthropicProvider(),
# )

Orchestration modes

  • WorkflowMode.LINEAR: run tasks one by one
  • WorkflowMode.PARALLEL: run tasks concurrently
  • WorkflowMode.LOOP: rerun full task chain until stop keyword appears or max iterations reached

In PARALLEL mode, TaskSpec.depends_on is respected as a dependency graph.

Loop controls:

  • WorkflowSpec.max_iterations
  • WorkflowSpec.stop_condition_keyword

Flagship example: research + prompt planning

Run:

python examples/research_prompt_plan.py

This example demonstrates:

  1. Research agent gathers structured topic context
  2. Planner agent turns research into a high-quality prompt blueprint
  3. Writer agent executes using that prompt plan

Output artifacts

When save_artifacts=True, each run creates:

  • runs/run-<timestamp>/decision_log.md
  • runs/run-<timestamp>/final_output.md
  • one markdown file per task name

Lifecycle hooks

You can attach optional hooks for observability/instrumentation:

  • on_step_start(step_name)
  • on_step_end(step_name, output)
  • on_error(step_name, exception)

Testing

pytest -q

Project details


Download files

Download the file for your platform. If you're not sure which to choose, learn more about installing packages.

Source Distribution

simagents-0.1.0.tar.gz (11.1 kB view details)

Uploaded Source

Built Distribution

If you're not sure about the file name format, learn more about wheel file names.

simagents-0.1.0-py3-none-any.whl (10.8 kB view details)

Uploaded Python 3

File details

Details for the file simagents-0.1.0.tar.gz.

File metadata

  • Download URL: simagents-0.1.0.tar.gz
  • Upload date:
  • Size: 11.1 kB
  • Tags: Source
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/6.2.0 CPython/3.11.12

File hashes

Hashes for simagents-0.1.0.tar.gz
Algorithm Hash digest
SHA256 8c1c93fd550ce868d9e6cd12e0cf237dbe9a75fc5a57d85e06e7ddfbcbb10818
MD5 560403f3c3491cf99a14333ea8cd9cdb
BLAKE2b-256 84fb50d65c874238c5a56e3e7f097449e6383b28fdf4c1502d577b93f2f88934

See more details on using hashes here.

File details

Details for the file simagents-0.1.0-py3-none-any.whl.

File metadata

  • Download URL: simagents-0.1.0-py3-none-any.whl
  • Upload date:
  • Size: 10.8 kB
  • Tags: Python 3
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/6.2.0 CPython/3.11.12

File hashes

Hashes for simagents-0.1.0-py3-none-any.whl
Algorithm Hash digest
SHA256 59c2eff51e0802606565f9f51843eb83ee20a152f76df608baa01419171d912a
MD5 17b077461a2769efa638c5ccc9984987
BLAKE2b-256 92cc263aec1caaf57150870680d0d36c17ee6072e62d04304efd4df365d25199

See more details on using hashes here.

Supported by

AWS Cloud computing and Security Sponsor Datadog Monitoring Depot Continuous Integration Fastly CDN Google Download Analytics Pingdom Monitoring Sentry Error logging StatusPage Status page