agentforge-py 0.3.0__tar.gz → 0.3.1__tar.gz
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- agentforge_py-0.3.1/PKG-INFO +158 -0
- {agentforge_py-0.3.0 → agentforge_py-0.3.1}/pyproject.toml +66 -66
- {agentforge_py-0.3.0 → agentforge_py-0.3.1}/src/agentforge/__init__.py +9 -1
- {agentforge_py-0.3.0 → agentforge_py-0.3.1}/src/agentforge/cli/main.py +1 -1
- agentforge_py-0.3.1/tests/unit/test_cli_version.py +39 -0
- agentforge_py-0.3.0/PKG-INFO +0 -158
- {agentforge_py-0.3.0 → agentforge_py-0.3.1}/.gitignore +0 -0
- {agentforge_py-0.3.0 → agentforge_py-0.3.1}/LICENSE +0 -0
- {agentforge_py-0.3.0 → agentforge_py-0.3.1}/README.md +0 -0
- {agentforge_py-0.3.0 → agentforge_py-0.3.1}/src/agentforge/_testing/__init__.py +0 -0
- {agentforge_py-0.3.0 → agentforge_py-0.3.1}/src/agentforge/_testing/fake_llm.py +0 -0
- {agentforge_py-0.3.0 → agentforge_py-0.3.1}/src/agentforge/_testing/fake_tool.py +0 -0
- {agentforge_py-0.3.0 → agentforge_py-0.3.1}/src/agentforge/_tools/__init__.py +0 -0
- {agentforge_py-0.3.0 → agentforge_py-0.3.1}/src/agentforge/_tools/calculator.py +0 -0
- {agentforge_py-0.3.0 → agentforge_py-0.3.1}/src/agentforge/_tools/decorator.py +0 -0
- {agentforge_py-0.3.0 → agentforge_py-0.3.1}/src/agentforge/_tools/file_read.py +0 -0
- {agentforge_py-0.3.0 → agentforge_py-0.3.1}/src/agentforge/_tools/shell.py +0 -0
- {agentforge_py-0.3.0 → agentforge_py-0.3.1}/src/agentforge/_tools/web_search.py +0 -0
- {agentforge_py-0.3.0 → agentforge_py-0.3.1}/src/agentforge/agent.py +0 -0
- {agentforge_py-0.3.0 → agentforge_py-0.3.1}/src/agentforge/auth.py +0 -0
- {agentforge_py-0.3.0 → agentforge_py-0.3.1}/src/agentforge/cli/__init__.py +0 -0
- {agentforge_py-0.3.0 → agentforge_py-0.3.1}/src/agentforge/cli/_build.py +0 -0
- {agentforge_py-0.3.0 → agentforge_py-0.3.1}/src/agentforge/cli/_scaffold_state.py +0 -0
- {agentforge_py-0.3.0 → agentforge_py-0.3.1}/src/agentforge/cli/_shared_scaffold.py +0 -0
- {agentforge_py-0.3.0 → agentforge_py-0.3.1}/src/agentforge/cli/config_cmd.py +0 -0
- {agentforge_py-0.3.0 → agentforge_py-0.3.1}/src/agentforge/cli/db_cmd.py +0 -0
- {agentforge_py-0.3.0 → agentforge_py-0.3.1}/src/agentforge/cli/debug_cmd.py +0 -0
- {agentforge_py-0.3.0 → agentforge_py-0.3.1}/src/agentforge/cli/docs_cmd.py +0 -0
- {agentforge_py-0.3.0 → agentforge_py-0.3.1}/src/agentforge/cli/eval_cmd.py +0 -0
- {agentforge_py-0.3.0 → agentforge_py-0.3.1}/src/agentforge/cli/health_cmd.py +0 -0
- {agentforge_py-0.3.0 → agentforge_py-0.3.1}/src/agentforge/cli/list_modules.py +0 -0
- {agentforge_py-0.3.0 → agentforge_py-0.3.1}/src/agentforge/cli/manifest_apply.py +0 -0
- {agentforge_py-0.3.0 → agentforge_py-0.3.1}/src/agentforge/cli/module_cmd.py +0 -0
- {agentforge_py-0.3.0 → agentforge_py-0.3.1}/src/agentforge/cli/new_cmd.py +0 -0
- {agentforge_py-0.3.0 → agentforge_py-0.3.1}/src/agentforge/cli/run_cmd.py +0 -0
- {agentforge_py-0.3.0 → agentforge_py-0.3.1}/src/agentforge/cli/upgrade_cmd.py +0 -0
- {agentforge_py-0.3.0 → agentforge_py-0.3.1}/src/agentforge/config/__init__.py +0 -0
- {agentforge_py-0.3.0 → agentforge_py-0.3.1}/src/agentforge/eval/__init__.py +0 -0
- {agentforge_py-0.3.0 → agentforge_py-0.3.1}/src/agentforge/eval/consistency.py +0 -0
- {agentforge_py-0.3.0 → agentforge_py-0.3.1}/src/agentforge/eval/coverage.py +0 -0
- {agentforge_py-0.3.0 → agentforge_py-0.3.1}/src/agentforge/eval/format_compliance.py +0 -0
- {agentforge_py-0.3.0 → agentforge_py-0.3.1}/src/agentforge/eval/regression.py +0 -0
- {agentforge_py-0.3.0 → agentforge_py-0.3.1}/src/agentforge/findings.py +0 -0
- {agentforge_py-0.3.0 → agentforge_py-0.3.1}/src/agentforge/guardrails/__init__.py +0 -0
- {agentforge_py-0.3.0 → agentforge_py-0.3.1}/src/agentforge/guardrails/allowlist.py +0 -0
- {agentforge_py-0.3.0 → agentforge_py-0.3.1}/src/agentforge/guardrails/capability_check.py +0 -0
- {agentforge_py-0.3.0 → agentforge_py-0.3.1}/src/agentforge/guardrails/engine.py +0 -0
- {agentforge_py-0.3.0 → agentforge_py-0.3.1}/src/agentforge/guardrails/pii_redact_basic.py +0 -0
- {agentforge_py-0.3.0 → agentforge_py-0.3.1}/src/agentforge/guardrails/prompt_injection_basic.py +0 -0
- {agentforge_py-0.3.0 → agentforge_py-0.3.1}/src/agentforge/memory/__init__.py +0 -0
- {agentforge_py-0.3.0 → agentforge_py-0.3.1}/src/agentforge/memory/in_memory.py +0 -0
- {agentforge_py-0.3.0 → agentforge_py-0.3.1}/src/agentforge/memory/in_memory_graph.py +0 -0
- {agentforge_py-0.3.0 → agentforge_py-0.3.1}/src/agentforge/memory/in_memory_vector.py +0 -0
- {agentforge_py-0.3.0 → agentforge_py-0.3.1}/src/agentforge/pipeline/__init__.py +0 -0
- {agentforge_py-0.3.0 → agentforge_py-0.3.1}/src/agentforge/pipeline/engine.py +0 -0
- {agentforge_py-0.3.0 → agentforge_py-0.3.1}/src/agentforge/pipeline/errors.py +0 -0
- {agentforge_py-0.3.0 → agentforge_py-0.3.1}/src/agentforge/pipeline/tool.py +0 -0
- {agentforge_py-0.3.0 → agentforge_py-0.3.1}/src/agentforge/py.typed +0 -0
- {agentforge_py-0.3.0 → agentforge_py-0.3.1}/src/agentforge/recording.py +0 -0
- {agentforge_py-0.3.0 → agentforge_py-0.3.1}/src/agentforge/renderers/__init__.py +0 -0
- {agentforge_py-0.3.0 → agentforge_py-0.3.1}/src/agentforge/renderers/_defaults.py +0 -0
- {agentforge_py-0.3.0 → agentforge_py-0.3.1}/src/agentforge/renderers/markdown.py +0 -0
- {agentforge_py-0.3.0 → agentforge_py-0.3.1}/src/agentforge/renderers/patch_applier.py +0 -0
- {agentforge_py-0.3.0 → agentforge_py-0.3.1}/src/agentforge/renderers/registry.py +0 -0
- {agentforge_py-0.3.0 → agentforge_py-0.3.1}/src/agentforge/renderers/scorecard.py +0 -0
- {agentforge_py-0.3.0 → agentforge_py-0.3.1}/src/agentforge/renderers/span_table.py +0 -0
- {agentforge_py-0.3.0 → agentforge_py-0.3.1}/src/agentforge/replay.py +0 -0
- {agentforge_py-0.3.0 → agentforge_py-0.3.1}/src/agentforge/resolver_register.py +0 -0
- {agentforge_py-0.3.0 → agentforge_py-0.3.1}/src/agentforge/retrieval.py +0 -0
- {agentforge_py-0.3.0 → agentforge_py-0.3.1}/src/agentforge/runtime.py +0 -0
- {agentforge_py-0.3.0 → agentforge_py-0.3.1}/src/agentforge/strategies/__init__.py +0 -0
- {agentforge_py-0.3.0 → agentforge_py-0.3.1}/src/agentforge/strategies/_base.py +0 -0
- {agentforge_py-0.3.0 → agentforge_py-0.3.1}/src/agentforge/strategies/_plan.py +0 -0
- {agentforge_py-0.3.0 → agentforge_py-0.3.1}/src/agentforge/strategies/multi_agent.py +0 -0
- {agentforge_py-0.3.0 → agentforge_py-0.3.1}/src/agentforge/strategies/plan_execute.py +0 -0
- {agentforge_py-0.3.0 → agentforge_py-0.3.1}/src/agentforge/strategies/react.py +0 -0
- {agentforge_py-0.3.0 → agentforge_py-0.3.1}/src/agentforge/strategies/tot.py +0 -0
- {agentforge_py-0.3.0 → agentforge_py-0.3.1}/src/agentforge/templates/_shared/.cursorrules +0 -0
- {agentforge_py-0.3.0 → agentforge_py-0.3.1}/src/agentforge/templates/_shared/.github/copilot-instructions.md +0 -0
- {agentforge_py-0.3.0 → agentforge_py-0.3.1}/src/agentforge/templates/_shared/.gitkeep +0 -0
- {agentforge_py-0.3.0 → agentforge_py-0.3.1}/src/agentforge/templates/_shared/AGENTS.md.tmpl +0 -0
- {agentforge_py-0.3.0 → agentforge_py-0.3.1}/src/agentforge/templates/_shared/CLAUDE.md +0 -0
- {agentforge_py-0.3.0 → agentforge_py-0.3.1}/src/agentforge/templates/_shared/docs/runbooks/01-set-up-new-agent.md.tmpl +0 -0
- {agentforge_py-0.3.0 → agentforge_py-0.3.1}/src/agentforge/templates/_shared/docs/runbooks/02-add-a-tool.md +0 -0
- {agentforge_py-0.3.0 → agentforge_py-0.3.1}/src/agentforge/templates/_shared/docs/runbooks/03-add-a-pipeline-task.md +0 -0
- {agentforge_py-0.3.0 → agentforge_py-0.3.1}/src/agentforge/templates/_shared/docs/runbooks/04-pick-reasoning-strategy.md +0 -0
- {agentforge_py-0.3.0 → agentforge_py-0.3.1}/src/agentforge/templates/_shared/docs/runbooks/05-write-prompts.md +0 -0
- {agentforge_py-0.3.0 → agentforge_py-0.3.1}/src/agentforge/templates/_shared/docs/runbooks/06-test-your-agent.md +0 -0
- {agentforge_py-0.3.0 → agentforge_py-0.3.1}/src/agentforge/templates/_shared/docs/runbooks/07-debug-a-run.md +0 -0
- {agentforge_py-0.3.0 → agentforge_py-0.3.1}/src/agentforge/templates/_shared/docs/runbooks/08-add-memory.md +0 -0
- {agentforge_py-0.3.0 → agentforge_py-0.3.1}/src/agentforge/templates/_shared/docs/runbooks/09-add-mcp.md +0 -0
- {agentforge_py-0.3.0 → agentforge_py-0.3.1}/src/agentforge/templates/_shared/docs/runbooks/10-add-evaluators.md +0 -0
- {agentforge_py-0.3.0 → agentforge_py-0.3.1}/src/agentforge/templates/_shared/docs/runbooks/11-add-safety-guardrails.md +0 -0
- {agentforge_py-0.3.0 → agentforge_py-0.3.1}/src/agentforge/templates/_shared/docs/runbooks/12-add-observability.md +0 -0
- {agentforge_py-0.3.0 → agentforge_py-0.3.1}/src/agentforge/templates/_shared/docs/runbooks/13-configure-multi-provider.md +0 -0
- {agentforge_py-0.3.0 → agentforge_py-0.3.1}/src/agentforge/templates/_shared/docs/runbooks/14-deploy-your-agent.md +0 -0
- {agentforge_py-0.3.0 → agentforge_py-0.3.1}/src/agentforge/templates/_shared/docs/runbooks/15-upgrade-your-agent.md +0 -0
- {agentforge_py-0.3.0 → agentforge_py-0.3.1}/src/agentforge/templates/_shared/docs/runbooks/16-configuration-reference.md +0 -0
- {agentforge_py-0.3.0 → agentforge_py-0.3.1}/src/agentforge/templates/_shared/docs/runbooks/17-add-reranker.md +0 -0
- {agentforge_py-0.3.0 → agentforge_py-0.3.1}/src/agentforge/templates/_shared/docs/runbooks/18-add-hybrid-search.md +0 -0
- {agentforge_py-0.3.0 → agentforge_py-0.3.1}/src/agentforge/templates/_shared/docs/runbooks/19-add-graphrag.md +0 -0
- {agentforge_py-0.3.0 → agentforge_py-0.3.1}/src/agentforge/templates/_shared/docs/runbooks/20-apply-schema-migrations.md +0 -0
- {agentforge_py-0.3.0 → agentforge_py-0.3.1}/src/agentforge/templates/_shared/docs/runbooks/21-use-streaming-guardrails.md +0 -0
- {agentforge_py-0.3.0 → agentforge_py-0.3.1}/src/agentforge/templates/_shared/docs/runbooks/README.md.tmpl +0 -0
- {agentforge_py-0.3.0 → agentforge_py-0.3.1}/src/agentforge/templates/code-reviewer/.env.example +0 -0
- {agentforge_py-0.3.0 → agentforge_py-0.3.1}/src/agentforge/templates/code-reviewer/.gitignore +0 -0
- {agentforge_py-0.3.0 → agentforge_py-0.3.1}/src/agentforge/templates/code-reviewer/README.md +0 -0
- {agentforge_py-0.3.0 → agentforge_py-0.3.1}/src/agentforge/templates/code-reviewer/agentforge.yaml +0 -0
- {agentforge_py-0.3.0 → agentforge_py-0.3.1}/src/agentforge/templates/code-reviewer/copier.yml +0 -0
- {agentforge_py-0.3.0 → agentforge_py-0.3.1}/src/agentforge/templates/code-reviewer/pyproject.toml +0 -0
- {agentforge_py-0.3.0 → agentforge_py-0.3.1}/src/agentforge/templates/code-reviewer/src/{{project_slug.replace('-', '_')}}/__init__.py +0 -0
- {agentforge_py-0.3.0 → agentforge_py-0.3.1}/src/agentforge/templates/code-reviewer/src/{{project_slug.replace('-', '_')}}/main.py +0 -0
- {agentforge_py-0.3.0 → agentforge_py-0.3.1}/src/agentforge/templates/docs-qa/.env.example +0 -0
- {agentforge_py-0.3.0 → agentforge_py-0.3.1}/src/agentforge/templates/docs-qa/.gitignore +0 -0
- {agentforge_py-0.3.0 → agentforge_py-0.3.1}/src/agentforge/templates/docs-qa/README.md +0 -0
- {agentforge_py-0.3.0 → agentforge_py-0.3.1}/src/agentforge/templates/docs-qa/agentforge.yaml +0 -0
- {agentforge_py-0.3.0 → agentforge_py-0.3.1}/src/agentforge/templates/docs-qa/copier.yml +0 -0
- {agentforge_py-0.3.0 → agentforge_py-0.3.1}/src/agentforge/templates/docs-qa/pyproject.toml +0 -0
- {agentforge_py-0.3.0 → agentforge_py-0.3.1}/src/agentforge/templates/docs-qa/src/{{project_slug.replace('-', '_')}}/__init__.py +0 -0
- {agentforge_py-0.3.0 → agentforge_py-0.3.1}/src/agentforge/templates/docs-qa/src/{{project_slug.replace('-', '_')}}/main.py +0 -0
- {agentforge_py-0.3.0 → agentforge_py-0.3.1}/src/agentforge/templates/minimal/.env.example +0 -0
- {agentforge_py-0.3.0 → agentforge_py-0.3.1}/src/agentforge/templates/minimal/.gitignore +0 -0
- {agentforge_py-0.3.0 → agentforge_py-0.3.1}/src/agentforge/templates/minimal/README.md +0 -0
- {agentforge_py-0.3.0 → agentforge_py-0.3.1}/src/agentforge/templates/minimal/agentforge.yaml +0 -0
- {agentforge_py-0.3.0 → agentforge_py-0.3.1}/src/agentforge/templates/minimal/copier.yml +0 -0
- {agentforge_py-0.3.0 → agentforge_py-0.3.1}/src/agentforge/templates/minimal/pyproject.toml +0 -0
- {agentforge_py-0.3.0 → agentforge_py-0.3.1}/src/agentforge/templates/minimal/src/{{project_slug.replace('-', '_')}}/__init__.py +0 -0
- {agentforge_py-0.3.0 → agentforge_py-0.3.1}/src/agentforge/templates/minimal/src/{{project_slug.replace('-', '_')}}/main.py +0 -0
- {agentforge_py-0.3.0 → agentforge_py-0.3.1}/src/agentforge/templates/patch-bot/.env.example +0 -0
- {agentforge_py-0.3.0 → agentforge_py-0.3.1}/src/agentforge/templates/patch-bot/.gitignore +0 -0
- {agentforge_py-0.3.0 → agentforge_py-0.3.1}/src/agentforge/templates/patch-bot/README.md +0 -0
- {agentforge_py-0.3.0 → agentforge_py-0.3.1}/src/agentforge/templates/patch-bot/agentforge.yaml +0 -0
- {agentforge_py-0.3.0 → agentforge_py-0.3.1}/src/agentforge/templates/patch-bot/copier.yml +0 -0
- {agentforge_py-0.3.0 → agentforge_py-0.3.1}/src/agentforge/templates/patch-bot/pyproject.toml +0 -0
- {agentforge_py-0.3.0 → agentforge_py-0.3.1}/src/agentforge/templates/patch-bot/src/{{project_slug.replace('-', '_')}}/__init__.py +0 -0
- {agentforge_py-0.3.0 → agentforge_py-0.3.1}/src/agentforge/templates/patch-bot/src/{{project_slug.replace('-', '_')}}/main.py +0 -0
- {agentforge_py-0.3.0 → agentforge_py-0.3.1}/src/agentforge/templates/research/.env.example +0 -0
- {agentforge_py-0.3.0 → agentforge_py-0.3.1}/src/agentforge/templates/research/.gitignore +0 -0
- {agentforge_py-0.3.0 → agentforge_py-0.3.1}/src/agentforge/templates/research/README.md +0 -0
- {agentforge_py-0.3.0 → agentforge_py-0.3.1}/src/agentforge/templates/research/agentforge.yaml +0 -0
- {agentforge_py-0.3.0 → agentforge_py-0.3.1}/src/agentforge/templates/research/copier.yml +0 -0
- {agentforge_py-0.3.0 → agentforge_py-0.3.1}/src/agentforge/templates/research/pyproject.toml +0 -0
- {agentforge_py-0.3.0 → agentforge_py-0.3.1}/src/agentforge/templates/research/src/{{project_slug.replace('-', '_')}}/__init__.py +0 -0
- {agentforge_py-0.3.0 → agentforge_py-0.3.1}/src/agentforge/templates/research/src/{{project_slug.replace('-', '_')}}/main.py +0 -0
- {agentforge_py-0.3.0 → agentforge_py-0.3.1}/src/agentforge/templates/triage/.env.example +0 -0
- {agentforge_py-0.3.0 → agentforge_py-0.3.1}/src/agentforge/templates/triage/.gitignore +0 -0
- {agentforge_py-0.3.0 → agentforge_py-0.3.1}/src/agentforge/templates/triage/README.md +0 -0
- {agentforge_py-0.3.0 → agentforge_py-0.3.1}/src/agentforge/templates/triage/agentforge.yaml +0 -0
- {agentforge_py-0.3.0 → agentforge_py-0.3.1}/src/agentforge/templates/triage/copier.yml +0 -0
- {agentforge_py-0.3.0 → agentforge_py-0.3.1}/src/agentforge/templates/triage/pyproject.toml +0 -0
- {agentforge_py-0.3.0 → agentforge_py-0.3.1}/src/agentforge/templates/triage/src/{{project_slug.replace('-', '_')}}/__init__.py +0 -0
- {agentforge_py-0.3.0 → agentforge_py-0.3.1}/src/agentforge/templates/triage/src/{{project_slug.replace('-', '_')}}/main.py +0 -0
- {agentforge_py-0.3.0 → agentforge_py-0.3.1}/src/agentforge/testing/__init__.py +0 -0
- {agentforge_py-0.3.0 → agentforge_py-0.3.1}/src/agentforge/testing/conformance.py +0 -0
- {agentforge_py-0.3.0 → agentforge_py-0.3.1}/src/agentforge/testing/factory.py +0 -0
- {agentforge_py-0.3.0 → agentforge_py-0.3.1}/src/agentforge/testing/fixtures.py +0 -0
- {agentforge_py-0.3.0 → agentforge_py-0.3.1}/src/agentforge/testing/llm.py +0 -0
- {agentforge_py-0.3.0 → agentforge_py-0.3.1}/src/agentforge/testing/recording.py +0 -0
- {agentforge_py-0.3.0 → agentforge_py-0.3.1}/src/agentforge/tools/__init__.py +0 -0
- {agentforge_py-0.3.0 → agentforge_py-0.3.1}/tests/conftest.py +0 -0
- {agentforge_py-0.3.0 → agentforge_py-0.3.1}/tests/integration/test_add_module_uv_live.py +0 -0
- {agentforge_py-0.3.0 → agentforge_py-0.3.1}/tests/integration/test_configured_runtime_e2e.py +0 -0
- {agentforge_py-0.3.0 → agentforge_py-0.3.1}/tests/integration/test_web_search_live.py +0 -0
- {agentforge_py-0.3.0 → agentforge_py-0.3.1}/tests/unit/.gitkeep +0 -0
- {agentforge_py-0.3.0 → agentforge_py-0.3.1}/tests/unit/test_agent.py +0 -0
- {agentforge_py-0.3.0 → agentforge_py-0.3.1}/tests/unit/test_agent_evaluators.py +0 -0
- {agentforge_py-0.3.0 → agentforge_py-0.3.1}/tests/unit/test_agent_fallback_chain.py +0 -0
- {agentforge_py-0.3.0 → agentforge_py-0.3.1}/tests/unit/test_agent_graph_store.py +0 -0
- {agentforge_py-0.3.0 → agentforge_py-0.3.1}/tests/unit/test_agent_hooks.py +0 -0
- {agentforge_py-0.3.0 → agentforge_py-0.3.1}/tests/unit/test_agent_pipeline.py +0 -0
- {agentforge_py-0.3.0 → agentforge_py-0.3.1}/tests/unit/test_agent_retriever.py +0 -0
- {agentforge_py-0.3.0 → agentforge_py-0.3.1}/tests/unit/test_build_retriever.py +0 -0
- {agentforge_py-0.3.0 → agentforge_py-0.3.1}/tests/unit/test_cli_build.py +0 -0
- {agentforge_py-0.3.0 → agentforge_py-0.3.1}/tests/unit/test_cli_build_pipeline.py +0 -0
- {agentforge_py-0.3.0 → agentforge_py-0.3.1}/tests/unit/test_cli_config.py +0 -0
- {agentforge_py-0.3.0 → agentforge_py-0.3.1}/tests/unit/test_cli_db.py +0 -0
- {agentforge_py-0.3.0 → agentforge_py-0.3.1}/tests/unit/test_cli_debug.py +0 -0
- {agentforge_py-0.3.0 → agentforge_py-0.3.1}/tests/unit/test_cli_docs.py +0 -0
- {agentforge_py-0.3.0 → agentforge_py-0.3.1}/tests/unit/test_cli_eval.py +0 -0
- {agentforge_py-0.3.0 → agentforge_py-0.3.1}/tests/unit/test_cli_health.py +0 -0
- {agentforge_py-0.3.0 → agentforge_py-0.3.1}/tests/unit/test_cli_list_modules.py +0 -0
- {agentforge_py-0.3.0 → agentforge_py-0.3.1}/tests/unit/test_cli_run.py +0 -0
- {agentforge_py-0.3.0 → agentforge_py-0.3.1}/tests/unit/test_config.py +0 -0
- {agentforge_py-0.3.0 → agentforge_py-0.3.1}/tests/unit/test_env_bearer_auth.py +0 -0
- {agentforge_py-0.3.0 → agentforge_py-0.3.1}/tests/unit/test_eval_consistency.py +0 -0
- {agentforge_py-0.3.0 → agentforge_py-0.3.1}/tests/unit/test_eval_coverage.py +0 -0
- {agentforge_py-0.3.0 → agentforge_py-0.3.1}/tests/unit/test_eval_format_compliance.py +0 -0
- {agentforge_py-0.3.0 → agentforge_py-0.3.1}/tests/unit/test_eval_regression.py +0 -0
- {agentforge_py-0.3.0 → agentforge_py-0.3.1}/tests/unit/test_example_swap_smoke.py +0 -0
- {agentforge_py-0.3.0 → agentforge_py-0.3.1}/tests/unit/test_extras_chain.py +0 -0
- {agentforge_py-0.3.0 → agentforge_py-0.3.1}/tests/unit/test_fake_tool.py +0 -0
- {agentforge_py-0.3.0 → agentforge_py-0.3.1}/tests/unit/test_findings.py +0 -0
- {agentforge_py-0.3.0 → agentforge_py-0.3.1}/tests/unit/test_graph_store_properties.py +0 -0
- {agentforge_py-0.3.0 → agentforge_py-0.3.1}/tests/unit/test_guardrails_builtins.py +0 -0
- {agentforge_py-0.3.0 → agentforge_py-0.3.1}/tests/unit/test_guardrails_conformance.py +0 -0
- {agentforge_py-0.3.0 → agentforge_py-0.3.1}/tests/unit/test_guardrails_engine.py +0 -0
- {agentforge_py-0.3.0 → agentforge_py-0.3.1}/tests/unit/test_in_memory_graph_store.py +0 -0
- {agentforge_py-0.3.0 → agentforge_py-0.3.1}/tests/unit/test_in_memory_store.py +0 -0
- {agentforge_py-0.3.0 → agentforge_py-0.3.1}/tests/unit/test_in_memory_vector_store.py +0 -0
- {agentforge_py-0.3.0 → agentforge_py-0.3.1}/tests/unit/test_manifest_apply.py +0 -0
- {agentforge_py-0.3.0 → agentforge_py-0.3.1}/tests/unit/test_module_cmd.py +0 -0
- {agentforge_py-0.3.0 → agentforge_py-0.3.1}/tests/unit/test_multi_agent_stream.py +0 -0
- {agentforge_py-0.3.0 → agentforge_py-0.3.1}/tests/unit/test_new_cmd.py +0 -0
- {agentforge_py-0.3.0 → agentforge_py-0.3.1}/tests/unit/test_pipeline_engine.py +0 -0
- {agentforge_py-0.3.0 → agentforge_py-0.3.1}/tests/unit/test_plan.py +0 -0
- {agentforge_py-0.3.0 → agentforge_py-0.3.1}/tests/unit/test_plan_execute_stream.py +0 -0
- {agentforge_py-0.3.0 → agentforge_py-0.3.1}/tests/unit/test_react_stream.py +0 -0
- {agentforge_py-0.3.0 → agentforge_py-0.3.1}/tests/unit/test_recording.py +0 -0
- {agentforge_py-0.3.0 → agentforge_py-0.3.1}/tests/unit/test_renderer_pipeline_findings.py +0 -0
- {agentforge_py-0.3.0 → agentforge_py-0.3.1}/tests/unit/test_renderer_registry.py +0 -0
- {agentforge_py-0.3.0 → agentforge_py-0.3.1}/tests/unit/test_renderers_builtin.py +0 -0
- {agentforge_py-0.3.0 → agentforge_py-0.3.1}/tests/unit/test_replay.py +0 -0
- {agentforge_py-0.3.0 → agentforge_py-0.3.1}/tests/unit/test_retrieval.py +0 -0
- {agentforge_py-0.3.0 → agentforge_py-0.3.1}/tests/unit/test_retrieval_rerank.py +0 -0
- {agentforge_py-0.3.0 → agentforge_py-0.3.1}/tests/unit/test_retriever_graphrag.py +0 -0
- {agentforge_py-0.3.0 → agentforge_py-0.3.1}/tests/unit/test_retriever_hybrid.py +0 -0
- {agentforge_py-0.3.0 → agentforge_py-0.3.1}/tests/unit/test_runtime.py +0 -0
- {agentforge_py-0.3.0 → agentforge_py-0.3.1}/tests/unit/test_scaffold_state.py +0 -0
- {agentforge_py-0.3.0 → agentforge_py-0.3.1}/tests/unit/test_shared_scaffold.py +0 -0
- {agentforge_py-0.3.0 → agentforge_py-0.3.1}/tests/unit/test_strategies_base.py +0 -0
- {agentforge_py-0.3.0 → agentforge_py-0.3.1}/tests/unit/test_strategies_budget_properties.py +0 -0
- {agentforge_py-0.3.0 → agentforge_py-0.3.1}/tests/unit/test_strategies_dispatch_tool.py +0 -0
- {agentforge_py-0.3.0 → agentforge_py-0.3.1}/tests/unit/test_strategies_multi_agent.py +0 -0
- {agentforge_py-0.3.0 → agentforge_py-0.3.1}/tests/unit/test_strategies_plan_execute.py +0 -0
- {agentforge_py-0.3.0 → agentforge_py-0.3.1}/tests/unit/test_strategies_react.py +0 -0
- {agentforge_py-0.3.0 → agentforge_py-0.3.1}/tests/unit/test_strategies_tot.py +0 -0
- {agentforge_py-0.3.0 → agentforge_py-0.3.1}/tests/unit/test_testing_factory.py +0 -0
- {agentforge_py-0.3.0 → agentforge_py-0.3.1}/tests/unit/test_testing_fake_llm.py +0 -0
- {agentforge_py-0.3.0 → agentforge_py-0.3.1}/tests/unit/test_testing_mock_llm.py +0 -0
- {agentforge_py-0.3.0 → agentforge_py-0.3.1}/tests/unit/test_testing_recording.py +0 -0
- {agentforge_py-0.3.0 → agentforge_py-0.3.1}/tests/unit/test_three_section_format.py +0 -0
- {agentforge_py-0.3.0 → agentforge_py-0.3.1}/tests/unit/test_tool_decorator.py +0 -0
- {agentforge_py-0.3.0 → agentforge_py-0.3.1}/tests/unit/test_tools_calculator.py +0 -0
- {agentforge_py-0.3.0 → agentforge_py-0.3.1}/tests/unit/test_tools_file_read.py +0 -0
- {agentforge_py-0.3.0 → agentforge_py-0.3.1}/tests/unit/test_tools_shell.py +0 -0
- {agentforge_py-0.3.0 → agentforge_py-0.3.1}/tests/unit/test_tools_web_search.py +0 -0
- {agentforge_py-0.3.0 → agentforge_py-0.3.1}/tests/unit/test_tot_stream.py +0 -0
- {agentforge_py-0.3.0 → agentforge_py-0.3.1}/tests/unit/test_vector_store_properties.py +0 -0
|
@@ -0,0 +1,158 @@
|
|
|
1
|
+
Metadata-Version: 2.4
|
|
2
|
+
Name: agentforge-py
|
|
3
|
+
Version: 0.3.1
|
|
4
|
+
Summary: AgentForge — open-source plug-and-play framework for production AI agents
|
|
5
|
+
Project-URL: Homepage, https://github.com/Scaffoldic/agentforge-py
|
|
6
|
+
Project-URL: Repository, https://github.com/Scaffoldic/agentforge-py
|
|
7
|
+
Project-URL: Documentation, https://github.com/Scaffoldic/agentforge-py
|
|
8
|
+
Project-URL: Changelog, https://github.com/Scaffoldic/agentforge-py/blob/main/CHANGELOG.md
|
|
9
|
+
Project-URL: Issues, https://github.com/Scaffoldic/agentforge-py/issues
|
|
10
|
+
Author: The AgentForge Authors
|
|
11
|
+
License-Expression: Apache-2.0
|
|
12
|
+
License-File: LICENSE
|
|
13
|
+
Keywords: agent,agentic,ai,framework,llm,react,tools
|
|
14
|
+
Classifier: Development Status :: 2 - Pre-Alpha
|
|
15
|
+
Classifier: Intended Audience :: Developers
|
|
16
|
+
Classifier: License :: OSI Approved :: Apache Software License
|
|
17
|
+
Classifier: Programming Language :: Python :: 3
|
|
18
|
+
Classifier: Programming Language :: Python :: 3.13
|
|
19
|
+
Classifier: Topic :: Scientific/Engineering :: Artificial Intelligence
|
|
20
|
+
Classifier: Topic :: Software Development :: Libraries :: Python Modules
|
|
21
|
+
Classifier: Typing :: Typed
|
|
22
|
+
Requires-Python: >=3.13
|
|
23
|
+
Requires-Dist: agentforge-core~=0.3.1
|
|
24
|
+
Requires-Dist: copier>=9.4
|
|
25
|
+
Requires-Dist: pydantic>=2.10
|
|
26
|
+
Requires-Dist: pyyaml>=6.0
|
|
27
|
+
Requires-Dist: typer>=0.15
|
|
28
|
+
Provides-Extra: a2a
|
|
29
|
+
Requires-Dist: agentforge-a2a~=0.3.1; extra == 'a2a'
|
|
30
|
+
Provides-Extra: all
|
|
31
|
+
Requires-Dist: agentforge-a2a~=0.3.1; extra == 'all'
|
|
32
|
+
Requires-Dist: agentforge-anthropic[anthropic]~=0.3.1; extra == 'all'
|
|
33
|
+
Requires-Dist: agentforge-bedrock~=0.3.1; extra == 'all'
|
|
34
|
+
Requires-Dist: agentforge-chat-history-postgres~=0.3.1; extra == 'all'
|
|
35
|
+
Requires-Dist: agentforge-chat-history-redis~=0.3.1; extra == 'all'
|
|
36
|
+
Requires-Dist: agentforge-chat-http~=0.3.1; extra == 'all'
|
|
37
|
+
Requires-Dist: agentforge-chat-slack~=0.3.1; extra == 'all'
|
|
38
|
+
Requires-Dist: agentforge-chat~=0.3.1; extra == 'all'
|
|
39
|
+
Requires-Dist: agentforge-eval-geval~=0.3.1; extra == 'all'
|
|
40
|
+
Requires-Dist: agentforge-evidently[evidently]~=0.3.1; extra == 'all'
|
|
41
|
+
Requires-Dist: agentforge-guard-llamaguard~=0.3.1; extra == 'all'
|
|
42
|
+
Requires-Dist: agentforge-guard-llmguard~=0.3.1; extra == 'all'
|
|
43
|
+
Requires-Dist: agentforge-guard-nemo~=0.3.1; extra == 'all'
|
|
44
|
+
Requires-Dist: agentforge-guard-presidio~=0.3.1; extra == 'all'
|
|
45
|
+
Requires-Dist: agentforge-langfuse[langfuse]~=0.3.1; extra == 'all'
|
|
46
|
+
Requires-Dist: agentforge-litellm[litellm]~=0.3.1; extra == 'all'
|
|
47
|
+
Requires-Dist: agentforge-mcp[mcp]~=0.3.1; extra == 'all'
|
|
48
|
+
Requires-Dist: agentforge-memory-neo4j~=0.3.1; extra == 'all'
|
|
49
|
+
Requires-Dist: agentforge-memory-postgres~=0.3.1; extra == 'all'
|
|
50
|
+
Requires-Dist: agentforge-memory-sqlite~=0.3.1; extra == 'all'
|
|
51
|
+
Requires-Dist: agentforge-memory-surrealdb~=0.3.1; extra == 'all'
|
|
52
|
+
Requires-Dist: agentforge-ollama[ollama]~=0.3.1; extra == 'all'
|
|
53
|
+
Requires-Dist: agentforge-openai[openai]~=0.3.1; extra == 'all'
|
|
54
|
+
Requires-Dist: agentforge-otel~=0.3.1; extra == 'all'
|
|
55
|
+
Requires-Dist: agentforge-phoenix[phoenix]~=0.3.1; extra == 'all'
|
|
56
|
+
Requires-Dist: agentforge-reranker-cohere[cohere]~=0.3.1; extra == 'all'
|
|
57
|
+
Requires-Dist: agentforge-reranker-mixedbread[mixedbread]~=0.3.1; extra == 'all'
|
|
58
|
+
Requires-Dist: agentforge-reranker-sentence-transformers[sentence-transformers]~=0.3.1; extra == 'all'
|
|
59
|
+
Requires-Dist: agentforge-reranker-voyage[voyage]~=0.3.1; extra == 'all'
|
|
60
|
+
Requires-Dist: agentforge-statsd[statsd]~=0.3.1; extra == 'all'
|
|
61
|
+
Requires-Dist: agentforge-testing~=0.3.1; extra == 'all'
|
|
62
|
+
Requires-Dist: agentforge-voyage[voyage]~=0.3.1; extra == 'all'
|
|
63
|
+
Provides-Extra: anthropic
|
|
64
|
+
Requires-Dist: agentforge-anthropic[anthropic]~=0.3.1; extra == 'anthropic'
|
|
65
|
+
Provides-Extra: bedrock
|
|
66
|
+
Requires-Dist: agentforge-bedrock~=0.3.1; extra == 'bedrock'
|
|
67
|
+
Provides-Extra: chat
|
|
68
|
+
Requires-Dist: agentforge-chat~=0.3.1; extra == 'chat'
|
|
69
|
+
Provides-Extra: chat-history-postgres
|
|
70
|
+
Requires-Dist: agentforge-chat-history-postgres~=0.3.1; extra == 'chat-history-postgres'
|
|
71
|
+
Provides-Extra: chat-history-redis
|
|
72
|
+
Requires-Dist: agentforge-chat-history-redis~=0.3.1; extra == 'chat-history-redis'
|
|
73
|
+
Provides-Extra: chat-http
|
|
74
|
+
Requires-Dist: agentforge-chat-http~=0.3.1; extra == 'chat-http'
|
|
75
|
+
Provides-Extra: chat-slack
|
|
76
|
+
Requires-Dist: agentforge-chat-slack~=0.3.1; extra == 'chat-slack'
|
|
77
|
+
Provides-Extra: eval
|
|
78
|
+
Requires-Dist: agentforge-eval-geval~=0.3.1; extra == 'eval'
|
|
79
|
+
Provides-Extra: evidently
|
|
80
|
+
Requires-Dist: agentforge-evidently[evidently]~=0.3.1; extra == 'evidently'
|
|
81
|
+
Provides-Extra: guard-llamaguard
|
|
82
|
+
Requires-Dist: agentforge-guard-llamaguard~=0.3.1; extra == 'guard-llamaguard'
|
|
83
|
+
Provides-Extra: guard-llmguard
|
|
84
|
+
Requires-Dist: agentforge-guard-llmguard~=0.3.1; extra == 'guard-llmguard'
|
|
85
|
+
Provides-Extra: guard-nemo
|
|
86
|
+
Requires-Dist: agentforge-guard-nemo~=0.3.1; extra == 'guard-nemo'
|
|
87
|
+
Provides-Extra: guard-presidio
|
|
88
|
+
Requires-Dist: agentforge-guard-presidio~=0.3.1; extra == 'guard-presidio'
|
|
89
|
+
Provides-Extra: langfuse
|
|
90
|
+
Requires-Dist: agentforge-langfuse[langfuse]~=0.3.1; extra == 'langfuse'
|
|
91
|
+
Provides-Extra: litellm
|
|
92
|
+
Requires-Dist: agentforge-litellm[litellm]~=0.3.1; extra == 'litellm'
|
|
93
|
+
Provides-Extra: mcp
|
|
94
|
+
Requires-Dist: agentforge-mcp[mcp]~=0.3.1; extra == 'mcp'
|
|
95
|
+
Provides-Extra: memory-neo4j
|
|
96
|
+
Requires-Dist: agentforge-memory-neo4j~=0.3.1; extra == 'memory-neo4j'
|
|
97
|
+
Provides-Extra: memory-postgres
|
|
98
|
+
Requires-Dist: agentforge-memory-postgres~=0.3.1; extra == 'memory-postgres'
|
|
99
|
+
Provides-Extra: memory-sqlite
|
|
100
|
+
Requires-Dist: agentforge-memory-sqlite~=0.3.1; extra == 'memory-sqlite'
|
|
101
|
+
Provides-Extra: memory-surrealdb
|
|
102
|
+
Requires-Dist: agentforge-memory-surrealdb~=0.3.1; extra == 'memory-surrealdb'
|
|
103
|
+
Provides-Extra: ollama
|
|
104
|
+
Requires-Dist: agentforge-ollama[ollama]~=0.3.1; extra == 'ollama'
|
|
105
|
+
Provides-Extra: openai
|
|
106
|
+
Requires-Dist: agentforge-openai[openai]~=0.3.1; extra == 'openai'
|
|
107
|
+
Provides-Extra: otel
|
|
108
|
+
Requires-Dist: agentforge-otel~=0.3.1; extra == 'otel'
|
|
109
|
+
Provides-Extra: phoenix
|
|
110
|
+
Requires-Dist: agentforge-phoenix[phoenix]~=0.3.1; extra == 'phoenix'
|
|
111
|
+
Provides-Extra: reranker-cohere
|
|
112
|
+
Requires-Dist: agentforge-reranker-cohere[cohere]~=0.3.1; extra == 'reranker-cohere'
|
|
113
|
+
Provides-Extra: reranker-mixedbread
|
|
114
|
+
Requires-Dist: agentforge-reranker-mixedbread[mixedbread]~=0.3.1; extra == 'reranker-mixedbread'
|
|
115
|
+
Provides-Extra: reranker-sentence-transformers
|
|
116
|
+
Requires-Dist: agentforge-reranker-sentence-transformers[sentence-transformers]~=0.3.1; extra == 'reranker-sentence-transformers'
|
|
117
|
+
Provides-Extra: reranker-voyage
|
|
118
|
+
Requires-Dist: agentforge-reranker-voyage[voyage]~=0.3.1; extra == 'reranker-voyage'
|
|
119
|
+
Provides-Extra: statsd
|
|
120
|
+
Requires-Dist: agentforge-statsd[statsd]~=0.3.1; extra == 'statsd'
|
|
121
|
+
Provides-Extra: testing
|
|
122
|
+
Requires-Dist: agentforge-testing~=0.3.1; extra == 'testing'
|
|
123
|
+
Provides-Extra: voyage
|
|
124
|
+
Requires-Dist: agentforge-voyage[voyage]~=0.3.1; extra == 'voyage'
|
|
125
|
+
Description-Content-Type: text/markdown
|
|
126
|
+
|
|
127
|
+
# agentforge
|
|
128
|
+
|
|
129
|
+
The default runtime for the AgentForge framework — `Agent`, `ReActLoop`,
|
|
130
|
+
default tools, `SimpleFinding`, in-memory store, basic safety defaults,
|
|
131
|
+
`BudgetPolicy`. Most users install this package and add module extras
|
|
132
|
+
as needed.
|
|
133
|
+
|
|
134
|
+
## Three-line agent (once feat-001 lands)
|
|
135
|
+
|
|
136
|
+
```python
|
|
137
|
+
from agentforge import Agent
|
|
138
|
+
|
|
139
|
+
agent = Agent(model="anthropic:claude-sonnet-4.7")
|
|
140
|
+
result = await agent.run("Say hello in three words.")
|
|
141
|
+
```
|
|
142
|
+
|
|
143
|
+
## Install
|
|
144
|
+
|
|
145
|
+
```bash
|
|
146
|
+
pip install agentforge-py # core runtime
|
|
147
|
+
pip install "agentforge-py[anthropic]" # + Anthropic provider
|
|
148
|
+
pip install "agentforge-py[anthropic,memory-postgres]" # + persistence
|
|
149
|
+
```
|
|
150
|
+
|
|
151
|
+
## Status
|
|
152
|
+
|
|
153
|
+
v0.0 — pre-alpha. Repo bootstrapped; feat-001 (Core contracts &
|
|
154
|
+
`Agent` orchestrator) is the next milestone.
|
|
155
|
+
|
|
156
|
+
## License
|
|
157
|
+
|
|
158
|
+
Apache 2.0.
|
|
@@ -14,7 +14,7 @@
|
|
|
14
14
|
|
|
15
15
|
[project]
|
|
16
16
|
name = "agentforge-py"
|
|
17
|
-
version = "0.3.
|
|
17
|
+
version = "0.3.1"
|
|
18
18
|
description = "AgentForge — open-source plug-and-play framework for production AI agents"
|
|
19
19
|
readme = "README.md"
|
|
20
20
|
requires-python = ">=3.13"
|
|
@@ -36,7 +36,7 @@ classifiers = [
|
|
|
36
36
|
]
|
|
37
37
|
|
|
38
38
|
dependencies = [
|
|
39
|
-
"agentforge-core ~= 0.3.
|
|
39
|
+
"agentforge-core ~= 0.3.1",
|
|
40
40
|
"pydantic>=2.10",
|
|
41
41
|
"pyyaml>=6.0",
|
|
42
42
|
"typer>=0.15",
|
|
@@ -61,94 +61,94 @@ dependencies = [
|
|
|
61
61
|
# installs the wrapper but not the SDK and the first call raises a
|
|
62
62
|
# ModuleError (bug-015). bedrock hard-deps its SDK (aioboto3/botocore),
|
|
63
63
|
# so it requests no extra — and must NOT request a phantom `[bedrock]`.
|
|
64
|
-
anthropic = ["agentforge-anthropic[anthropic] ~= 0.3.
|
|
65
|
-
openai = ["agentforge-openai[openai] ~= 0.3.
|
|
66
|
-
bedrock = ["agentforge-bedrock ~= 0.3.
|
|
67
|
-
ollama = ["agentforge-ollama[ollama] ~= 0.3.
|
|
68
|
-
litellm = ["agentforge-litellm[litellm] ~= 0.3.
|
|
64
|
+
anthropic = ["agentforge-anthropic[anthropic] ~= 0.3.1"]
|
|
65
|
+
openai = ["agentforge-openai[openai] ~= 0.3.1"]
|
|
66
|
+
bedrock = ["agentforge-bedrock ~= 0.3.1"]
|
|
67
|
+
ollama = ["agentforge-ollama[ollama] ~= 0.3.1"]
|
|
68
|
+
litellm = ["agentforge-litellm[litellm] ~= 0.3.1"]
|
|
69
69
|
|
|
70
70
|
# Embeddings
|
|
71
|
-
voyage = ["agentforge-voyage[voyage] ~= 0.3.
|
|
71
|
+
voyage = ["agentforge-voyage[voyage] ~= 0.3.1"]
|
|
72
72
|
|
|
73
73
|
# Memory backends (each hard-deps its driver SDK — no extra to chain)
|
|
74
|
-
memory-sqlite = ["agentforge-memory-sqlite ~= 0.3.
|
|
75
|
-
memory-postgres = ["agentforge-memory-postgres ~= 0.3.
|
|
76
|
-
memory-neo4j = ["agentforge-memory-neo4j ~= 0.3.
|
|
77
|
-
memory-surrealdb = ["agentforge-memory-surrealdb ~= 0.3.
|
|
74
|
+
memory-sqlite = ["agentforge-memory-sqlite ~= 0.3.1"]
|
|
75
|
+
memory-postgres = ["agentforge-memory-postgres ~= 0.3.1"]
|
|
76
|
+
memory-neo4j = ["agentforge-memory-neo4j ~= 0.3.1"]
|
|
77
|
+
memory-surrealdb = ["agentforge-memory-surrealdb ~= 0.3.1"]
|
|
78
78
|
|
|
79
79
|
# Chat surface (chat hard-deps aiosqlite; history backends hard-dep their SDK)
|
|
80
|
-
chat = ["agentforge-chat ~= 0.3.
|
|
81
|
-
chat-http = ["agentforge-chat-http ~= 0.3.
|
|
82
|
-
chat-slack = ["agentforge-chat-slack ~= 0.3.
|
|
83
|
-
chat-history-postgres = ["agentforge-chat-history-postgres ~= 0.3.
|
|
84
|
-
chat-history-redis = ["agentforge-chat-history-redis ~= 0.3.
|
|
80
|
+
chat = ["agentforge-chat ~= 0.3.1"]
|
|
81
|
+
chat-http = ["agentforge-chat-http ~= 0.3.1"]
|
|
82
|
+
chat-slack = ["agentforge-chat-slack ~= 0.3.1"]
|
|
83
|
+
chat-history-postgres = ["agentforge-chat-history-postgres ~= 0.3.1"]
|
|
84
|
+
chat-history-redis = ["agentforge-chat-history-redis ~= 0.3.1"]
|
|
85
85
|
|
|
86
86
|
# Rerankers
|
|
87
|
-
reranker-cohere = ["agentforge-reranker-cohere[cohere] ~= 0.3.
|
|
88
|
-
reranker-voyage = ["agentforge-reranker-voyage[voyage] ~= 0.3.
|
|
89
|
-
reranker-mixedbread = ["agentforge-reranker-mixedbread[mixedbread] ~= 0.3.
|
|
90
|
-
reranker-sentence-transformers = ["agentforge-reranker-sentence-transformers[sentence-transformers] ~= 0.3.
|
|
87
|
+
reranker-cohere = ["agentforge-reranker-cohere[cohere] ~= 0.3.1"]
|
|
88
|
+
reranker-voyage = ["agentforge-reranker-voyage[voyage] ~= 0.3.1"]
|
|
89
|
+
reranker-mixedbread = ["agentforge-reranker-mixedbread[mixedbread] ~= 0.3.1"]
|
|
90
|
+
reranker-sentence-transformers = ["agentforge-reranker-sentence-transformers[sentence-transformers] ~= 0.3.1"]
|
|
91
91
|
|
|
92
92
|
# Guardrails (each hard-deps its SDK — no extra to chain)
|
|
93
|
-
guard-llmguard = ["agentforge-guard-llmguard ~= 0.3.
|
|
94
|
-
guard-presidio = ["agentforge-guard-presidio ~= 0.3.
|
|
95
|
-
guard-nemo = ["agentforge-guard-nemo ~= 0.3.
|
|
96
|
-
guard-llamaguard = ["agentforge-guard-llamaguard ~= 0.3.
|
|
93
|
+
guard-llmguard = ["agentforge-guard-llmguard ~= 0.3.1"]
|
|
94
|
+
guard-presidio = ["agentforge-guard-presidio ~= 0.3.1"]
|
|
95
|
+
guard-nemo = ["agentforge-guard-nemo ~= 0.3.1"]
|
|
96
|
+
guard-llamaguard = ["agentforge-guard-llamaguard ~= 0.3.1"]
|
|
97
97
|
|
|
98
98
|
# Observability
|
|
99
|
-
langfuse = ["agentforge-langfuse[langfuse] ~= 0.3.
|
|
100
|
-
phoenix = ["agentforge-phoenix[phoenix] ~= 0.3.
|
|
101
|
-
otel = ["agentforge-otel ~= 0.3.
|
|
102
|
-
statsd = ["agentforge-statsd[statsd] ~= 0.3.
|
|
103
|
-
evidently = ["agentforge-evidently[evidently] ~= 0.3.
|
|
99
|
+
langfuse = ["agentforge-langfuse[langfuse] ~= 0.3.1"]
|
|
100
|
+
phoenix = ["agentforge-phoenix[phoenix] ~= 0.3.1"]
|
|
101
|
+
otel = ["agentforge-otel ~= 0.3.1"]
|
|
102
|
+
statsd = ["agentforge-statsd[statsd] ~= 0.3.1"]
|
|
103
|
+
evidently = ["agentforge-evidently[evidently] ~= 0.3.1"]
|
|
104
104
|
|
|
105
105
|
# Protocols
|
|
106
|
-
mcp = ["agentforge-mcp[mcp] ~= 0.3.
|
|
107
|
-
a2a = ["agentforge-a2a ~= 0.3.
|
|
106
|
+
mcp = ["agentforge-mcp[mcp] ~= 0.3.1"]
|
|
107
|
+
a2a = ["agentforge-a2a ~= 0.3.1"]
|
|
108
108
|
|
|
109
109
|
# Eval
|
|
110
|
-
eval = ["agentforge-eval-geval ~= 0.3.
|
|
110
|
+
eval = ["agentforge-eval-geval ~= 0.3.1"]
|
|
111
111
|
|
|
112
112
|
# Testing
|
|
113
|
-
testing = ["agentforge-testing ~= 0.3.
|
|
113
|
+
testing = ["agentforge-testing ~= 0.3.1"]
|
|
114
114
|
|
|
115
115
|
# Everything (development / docs / smoke-test convenience — not
|
|
116
116
|
# recommended for production deploys; pick the actual integrations
|
|
117
117
|
# you use to keep the dependency tree small). Vendor-SDK extras are
|
|
118
118
|
# chained here too so `[all]` actually installs every SDK.
|
|
119
119
|
all = [
|
|
120
|
-
"agentforge-anthropic[anthropic] ~= 0.3.
|
|
121
|
-
"agentforge-openai[openai] ~= 0.3.
|
|
122
|
-
"agentforge-bedrock ~= 0.3.
|
|
123
|
-
"agentforge-ollama[ollama] ~= 0.3.
|
|
124
|
-
"agentforge-litellm[litellm] ~= 0.3.
|
|
125
|
-
"agentforge-voyage[voyage] ~= 0.3.
|
|
126
|
-
"agentforge-memory-sqlite ~= 0.3.
|
|
127
|
-
"agentforge-memory-postgres ~= 0.3.
|
|
128
|
-
"agentforge-memory-neo4j ~= 0.3.
|
|
129
|
-
"agentforge-memory-surrealdb ~= 0.3.
|
|
130
|
-
"agentforge-chat ~= 0.3.
|
|
131
|
-
"agentforge-chat-http ~= 0.3.
|
|
132
|
-
"agentforge-chat-slack ~= 0.3.
|
|
133
|
-
"agentforge-chat-history-postgres ~= 0.3.
|
|
134
|
-
"agentforge-chat-history-redis ~= 0.3.
|
|
135
|
-
"agentforge-reranker-cohere[cohere] ~= 0.3.
|
|
136
|
-
"agentforge-reranker-voyage[voyage] ~= 0.3.
|
|
137
|
-
"agentforge-reranker-mixedbread[mixedbread] ~= 0.3.
|
|
138
|
-
"agentforge-reranker-sentence-transformers[sentence-transformers] ~= 0.3.
|
|
139
|
-
"agentforge-guard-llmguard ~= 0.3.
|
|
140
|
-
"agentforge-guard-presidio ~= 0.3.
|
|
141
|
-
"agentforge-guard-nemo ~= 0.3.
|
|
142
|
-
"agentforge-guard-llamaguard ~= 0.3.
|
|
143
|
-
"agentforge-langfuse[langfuse] ~= 0.3.
|
|
144
|
-
"agentforge-phoenix[phoenix] ~= 0.3.
|
|
145
|
-
"agentforge-otel ~= 0.3.
|
|
146
|
-
"agentforge-statsd[statsd] ~= 0.3.
|
|
147
|
-
"agentforge-evidently[evidently] ~= 0.3.
|
|
148
|
-
"agentforge-mcp[mcp] ~= 0.3.
|
|
149
|
-
"agentforge-a2a ~= 0.3.
|
|
150
|
-
"agentforge-eval-geval ~= 0.3.
|
|
151
|
-
"agentforge-testing ~= 0.3.
|
|
120
|
+
"agentforge-anthropic[anthropic] ~= 0.3.1",
|
|
121
|
+
"agentforge-openai[openai] ~= 0.3.1",
|
|
122
|
+
"agentforge-bedrock ~= 0.3.1",
|
|
123
|
+
"agentforge-ollama[ollama] ~= 0.3.1",
|
|
124
|
+
"agentforge-litellm[litellm] ~= 0.3.1",
|
|
125
|
+
"agentforge-voyage[voyage] ~= 0.3.1",
|
|
126
|
+
"agentforge-memory-sqlite ~= 0.3.1",
|
|
127
|
+
"agentforge-memory-postgres ~= 0.3.1",
|
|
128
|
+
"agentforge-memory-neo4j ~= 0.3.1",
|
|
129
|
+
"agentforge-memory-surrealdb ~= 0.3.1",
|
|
130
|
+
"agentforge-chat ~= 0.3.1",
|
|
131
|
+
"agentforge-chat-http ~= 0.3.1",
|
|
132
|
+
"agentforge-chat-slack ~= 0.3.1",
|
|
133
|
+
"agentforge-chat-history-postgres ~= 0.3.1",
|
|
134
|
+
"agentforge-chat-history-redis ~= 0.3.1",
|
|
135
|
+
"agentforge-reranker-cohere[cohere] ~= 0.3.1",
|
|
136
|
+
"agentforge-reranker-voyage[voyage] ~= 0.3.1",
|
|
137
|
+
"agentforge-reranker-mixedbread[mixedbread] ~= 0.3.1",
|
|
138
|
+
"agentforge-reranker-sentence-transformers[sentence-transformers] ~= 0.3.1",
|
|
139
|
+
"agentforge-guard-llmguard ~= 0.3.1",
|
|
140
|
+
"agentforge-guard-presidio ~= 0.3.1",
|
|
141
|
+
"agentforge-guard-nemo ~= 0.3.1",
|
|
142
|
+
"agentforge-guard-llamaguard ~= 0.3.1",
|
|
143
|
+
"agentforge-langfuse[langfuse] ~= 0.3.1",
|
|
144
|
+
"agentforge-phoenix[phoenix] ~= 0.3.1",
|
|
145
|
+
"agentforge-otel ~= 0.3.1",
|
|
146
|
+
"agentforge-statsd[statsd] ~= 0.3.1",
|
|
147
|
+
"agentforge-evidently[evidently] ~= 0.3.1",
|
|
148
|
+
"agentforge-mcp[mcp] ~= 0.3.1",
|
|
149
|
+
"agentforge-a2a ~= 0.3.1",
|
|
150
|
+
"agentforge-eval-geval ~= 0.3.1",
|
|
151
|
+
"agentforge-testing ~= 0.3.1",
|
|
152
152
|
]
|
|
153
153
|
|
|
154
154
|
[project.scripts]
|
|
@@ -19,6 +19,11 @@ the per-feature specs under `docs/features/`.
|
|
|
19
19
|
|
|
20
20
|
from __future__ import annotations
|
|
21
21
|
|
|
22
|
+
# Version is sourced from the installed distribution metadata so it can
|
|
23
|
+
# never drift from pyproject.toml (bug-024).
|
|
24
|
+
from importlib.metadata import PackageNotFoundError as _PkgNotFound
|
|
25
|
+
from importlib.metadata import version as _dist_version
|
|
26
|
+
|
|
22
27
|
from agentforge_core import FallbackChain
|
|
23
28
|
|
|
24
29
|
# feat-018: importing `agentforge.guardrails` here triggers the
|
|
@@ -69,7 +74,10 @@ from agentforge.strategies import (
|
|
|
69
74
|
get_runtime,
|
|
70
75
|
)
|
|
71
76
|
|
|
72
|
-
|
|
77
|
+
try:
|
|
78
|
+
__version__ = _dist_version("agentforge-py")
|
|
79
|
+
except _PkgNotFound: # pragma: no cover - source tree without installed metadata
|
|
80
|
+
__version__ = "0.0.0+unknown"
|
|
73
81
|
|
|
74
82
|
__all__ = [
|
|
75
83
|
"RUNTIME_KEY",
|
|
@@ -72,7 +72,7 @@ def main(argv: Sequence[str] | None = None) -> int:
|
|
|
72
72
|
def _resolve_version() -> str:
|
|
73
73
|
"""Return the installed `agentforge` distribution's version."""
|
|
74
74
|
try:
|
|
75
|
-
return version("agentforge")
|
|
75
|
+
return version("agentforge-py")
|
|
76
76
|
except PackageNotFoundError: # pragma: no cover - unusual at runtime
|
|
77
77
|
return "0.0.0+unknown"
|
|
78
78
|
|
|
@@ -0,0 +1,39 @@
|
|
|
1
|
+
"""Regression for bug-024 — version reporting.
|
|
2
|
+
|
|
3
|
+
`agentforge --version` reported `0.0.0+unknown` (it looked up the wrong
|
|
4
|
+
distribution name, `agentforge` instead of `agentforge-py`), and every
|
|
5
|
+
package's `__version__` was a hardcoded string that drifted from
|
|
6
|
+
`pyproject.toml`. Both are now sourced from the installed distribution
|
|
7
|
+
metadata.
|
|
8
|
+
"""
|
|
9
|
+
|
|
10
|
+
from __future__ import annotations
|
|
11
|
+
|
|
12
|
+
from importlib.metadata import version
|
|
13
|
+
|
|
14
|
+
import agentforge
|
|
15
|
+
import pytest
|
|
16
|
+
from agentforge.cli.main import _resolve_version, main
|
|
17
|
+
|
|
18
|
+
|
|
19
|
+
def test_resolve_version_matches_distribution_metadata() -> None:
|
|
20
|
+
"""`--version` reports the real installed version, not the fallback."""
|
|
21
|
+
resolved = _resolve_version()
|
|
22
|
+
assert resolved == version("agentforge-py")
|
|
23
|
+
assert resolved != "0.0.0+unknown"
|
|
24
|
+
|
|
25
|
+
|
|
26
|
+
def test_module_dunder_version_is_dynamic_and_current() -> None:
|
|
27
|
+
"""`agentforge.__version__` tracks the installed distribution (no longer
|
|
28
|
+
a stale hardcoded literal like the pre-fix `0.2.3`)."""
|
|
29
|
+
assert agentforge.__version__ == version("agentforge-py")
|
|
30
|
+
|
|
31
|
+
|
|
32
|
+
def test_cli_version_flag_prints_real_version(capsys: pytest.CaptureFixture[str]) -> None:
|
|
33
|
+
"""`agentforge --version` exits 0 and prints the real version."""
|
|
34
|
+
with pytest.raises(SystemExit) as exc:
|
|
35
|
+
main(["--version"])
|
|
36
|
+
assert exc.value.code == 0
|
|
37
|
+
out = capsys.readouterr().out.strip()
|
|
38
|
+
assert out == version("agentforge-py")
|
|
39
|
+
assert "0.0.0+unknown" not in out
|
agentforge_py-0.3.0/PKG-INFO
DELETED
|
@@ -1,158 +0,0 @@
|
|
|
1
|
-
Metadata-Version: 2.4
|
|
2
|
-
Name: agentforge-py
|
|
3
|
-
Version: 0.3.0
|
|
4
|
-
Summary: AgentForge — open-source plug-and-play framework for production AI agents
|
|
5
|
-
Project-URL: Homepage, https://github.com/Scaffoldic/agentforge-py
|
|
6
|
-
Project-URL: Repository, https://github.com/Scaffoldic/agentforge-py
|
|
7
|
-
Project-URL: Documentation, https://github.com/Scaffoldic/agentforge-py
|
|
8
|
-
Project-URL: Changelog, https://github.com/Scaffoldic/agentforge-py/blob/main/CHANGELOG.md
|
|
9
|
-
Project-URL: Issues, https://github.com/Scaffoldic/agentforge-py/issues
|
|
10
|
-
Author: The AgentForge Authors
|
|
11
|
-
License-Expression: Apache-2.0
|
|
12
|
-
License-File: LICENSE
|
|
13
|
-
Keywords: agent,agentic,ai,framework,llm,react,tools
|
|
14
|
-
Classifier: Development Status :: 2 - Pre-Alpha
|
|
15
|
-
Classifier: Intended Audience :: Developers
|
|
16
|
-
Classifier: License :: OSI Approved :: Apache Software License
|
|
17
|
-
Classifier: Programming Language :: Python :: 3
|
|
18
|
-
Classifier: Programming Language :: Python :: 3.13
|
|
19
|
-
Classifier: Topic :: Scientific/Engineering :: Artificial Intelligence
|
|
20
|
-
Classifier: Topic :: Software Development :: Libraries :: Python Modules
|
|
21
|
-
Classifier: Typing :: Typed
|
|
22
|
-
Requires-Python: >=3.13
|
|
23
|
-
Requires-Dist: agentforge-core~=0.3.0
|
|
24
|
-
Requires-Dist: copier>=9.4
|
|
25
|
-
Requires-Dist: pydantic>=2.10
|
|
26
|
-
Requires-Dist: pyyaml>=6.0
|
|
27
|
-
Requires-Dist: typer>=0.15
|
|
28
|
-
Provides-Extra: a2a
|
|
29
|
-
Requires-Dist: agentforge-a2a~=0.3.0; extra == 'a2a'
|
|
30
|
-
Provides-Extra: all
|
|
31
|
-
Requires-Dist: agentforge-a2a~=0.3.0; extra == 'all'
|
|
32
|
-
Requires-Dist: agentforge-anthropic[anthropic]~=0.3.0; extra == 'all'
|
|
33
|
-
Requires-Dist: agentforge-bedrock~=0.3.0; extra == 'all'
|
|
34
|
-
Requires-Dist: agentforge-chat-history-postgres~=0.3.0; extra == 'all'
|
|
35
|
-
Requires-Dist: agentforge-chat-history-redis~=0.3.0; extra == 'all'
|
|
36
|
-
Requires-Dist: agentforge-chat-http~=0.3.0; extra == 'all'
|
|
37
|
-
Requires-Dist: agentforge-chat-slack~=0.3.0; extra == 'all'
|
|
38
|
-
Requires-Dist: agentforge-chat~=0.3.0; extra == 'all'
|
|
39
|
-
Requires-Dist: agentforge-eval-geval~=0.3.0; extra == 'all'
|
|
40
|
-
Requires-Dist: agentforge-evidently[evidently]~=0.3.0; extra == 'all'
|
|
41
|
-
Requires-Dist: agentforge-guard-llamaguard~=0.3.0; extra == 'all'
|
|
42
|
-
Requires-Dist: agentforge-guard-llmguard~=0.3.0; extra == 'all'
|
|
43
|
-
Requires-Dist: agentforge-guard-nemo~=0.3.0; extra == 'all'
|
|
44
|
-
Requires-Dist: agentforge-guard-presidio~=0.3.0; extra == 'all'
|
|
45
|
-
Requires-Dist: agentforge-langfuse[langfuse]~=0.3.0; extra == 'all'
|
|
46
|
-
Requires-Dist: agentforge-litellm[litellm]~=0.3.0; extra == 'all'
|
|
47
|
-
Requires-Dist: agentforge-mcp[mcp]~=0.3.0; extra == 'all'
|
|
48
|
-
Requires-Dist: agentforge-memory-neo4j~=0.3.0; extra == 'all'
|
|
49
|
-
Requires-Dist: agentforge-memory-postgres~=0.3.0; extra == 'all'
|
|
50
|
-
Requires-Dist: agentforge-memory-sqlite~=0.3.0; extra == 'all'
|
|
51
|
-
Requires-Dist: agentforge-memory-surrealdb~=0.3.0; extra == 'all'
|
|
52
|
-
Requires-Dist: agentforge-ollama[ollama]~=0.3.0; extra == 'all'
|
|
53
|
-
Requires-Dist: agentforge-openai[openai]~=0.3.0; extra == 'all'
|
|
54
|
-
Requires-Dist: agentforge-otel~=0.3.0; extra == 'all'
|
|
55
|
-
Requires-Dist: agentforge-phoenix[phoenix]~=0.3.0; extra == 'all'
|
|
56
|
-
Requires-Dist: agentforge-reranker-cohere[cohere]~=0.3.0; extra == 'all'
|
|
57
|
-
Requires-Dist: agentforge-reranker-mixedbread[mixedbread]~=0.3.0; extra == 'all'
|
|
58
|
-
Requires-Dist: agentforge-reranker-sentence-transformers[sentence-transformers]~=0.3.0; extra == 'all'
|
|
59
|
-
Requires-Dist: agentforge-reranker-voyage[voyage]~=0.3.0; extra == 'all'
|
|
60
|
-
Requires-Dist: agentforge-statsd[statsd]~=0.3.0; extra == 'all'
|
|
61
|
-
Requires-Dist: agentforge-testing~=0.3.0; extra == 'all'
|
|
62
|
-
Requires-Dist: agentforge-voyage[voyage]~=0.3.0; extra == 'all'
|
|
63
|
-
Provides-Extra: anthropic
|
|
64
|
-
Requires-Dist: agentforge-anthropic[anthropic]~=0.3.0; extra == 'anthropic'
|
|
65
|
-
Provides-Extra: bedrock
|
|
66
|
-
Requires-Dist: agentforge-bedrock~=0.3.0; extra == 'bedrock'
|
|
67
|
-
Provides-Extra: chat
|
|
68
|
-
Requires-Dist: agentforge-chat~=0.3.0; extra == 'chat'
|
|
69
|
-
Provides-Extra: chat-history-postgres
|
|
70
|
-
Requires-Dist: agentforge-chat-history-postgres~=0.3.0; extra == 'chat-history-postgres'
|
|
71
|
-
Provides-Extra: chat-history-redis
|
|
72
|
-
Requires-Dist: agentforge-chat-history-redis~=0.3.0; extra == 'chat-history-redis'
|
|
73
|
-
Provides-Extra: chat-http
|
|
74
|
-
Requires-Dist: agentforge-chat-http~=0.3.0; extra == 'chat-http'
|
|
75
|
-
Provides-Extra: chat-slack
|
|
76
|
-
Requires-Dist: agentforge-chat-slack~=0.3.0; extra == 'chat-slack'
|
|
77
|
-
Provides-Extra: eval
|
|
78
|
-
Requires-Dist: agentforge-eval-geval~=0.3.0; extra == 'eval'
|
|
79
|
-
Provides-Extra: evidently
|
|
80
|
-
Requires-Dist: agentforge-evidently[evidently]~=0.3.0; extra == 'evidently'
|
|
81
|
-
Provides-Extra: guard-llamaguard
|
|
82
|
-
Requires-Dist: agentforge-guard-llamaguard~=0.3.0; extra == 'guard-llamaguard'
|
|
83
|
-
Provides-Extra: guard-llmguard
|
|
84
|
-
Requires-Dist: agentforge-guard-llmguard~=0.3.0; extra == 'guard-llmguard'
|
|
85
|
-
Provides-Extra: guard-nemo
|
|
86
|
-
Requires-Dist: agentforge-guard-nemo~=0.3.0; extra == 'guard-nemo'
|
|
87
|
-
Provides-Extra: guard-presidio
|
|
88
|
-
Requires-Dist: agentforge-guard-presidio~=0.3.0; extra == 'guard-presidio'
|
|
89
|
-
Provides-Extra: langfuse
|
|
90
|
-
Requires-Dist: agentforge-langfuse[langfuse]~=0.3.0; extra == 'langfuse'
|
|
91
|
-
Provides-Extra: litellm
|
|
92
|
-
Requires-Dist: agentforge-litellm[litellm]~=0.3.0; extra == 'litellm'
|
|
93
|
-
Provides-Extra: mcp
|
|
94
|
-
Requires-Dist: agentforge-mcp[mcp]~=0.3.0; extra == 'mcp'
|
|
95
|
-
Provides-Extra: memory-neo4j
|
|
96
|
-
Requires-Dist: agentforge-memory-neo4j~=0.3.0; extra == 'memory-neo4j'
|
|
97
|
-
Provides-Extra: memory-postgres
|
|
98
|
-
Requires-Dist: agentforge-memory-postgres~=0.3.0; extra == 'memory-postgres'
|
|
99
|
-
Provides-Extra: memory-sqlite
|
|
100
|
-
Requires-Dist: agentforge-memory-sqlite~=0.3.0; extra == 'memory-sqlite'
|
|
101
|
-
Provides-Extra: memory-surrealdb
|
|
102
|
-
Requires-Dist: agentforge-memory-surrealdb~=0.3.0; extra == 'memory-surrealdb'
|
|
103
|
-
Provides-Extra: ollama
|
|
104
|
-
Requires-Dist: agentforge-ollama[ollama]~=0.3.0; extra == 'ollama'
|
|
105
|
-
Provides-Extra: openai
|
|
106
|
-
Requires-Dist: agentforge-openai[openai]~=0.3.0; extra == 'openai'
|
|
107
|
-
Provides-Extra: otel
|
|
108
|
-
Requires-Dist: agentforge-otel~=0.3.0; extra == 'otel'
|
|
109
|
-
Provides-Extra: phoenix
|
|
110
|
-
Requires-Dist: agentforge-phoenix[phoenix]~=0.3.0; extra == 'phoenix'
|
|
111
|
-
Provides-Extra: reranker-cohere
|
|
112
|
-
Requires-Dist: agentforge-reranker-cohere[cohere]~=0.3.0; extra == 'reranker-cohere'
|
|
113
|
-
Provides-Extra: reranker-mixedbread
|
|
114
|
-
Requires-Dist: agentforge-reranker-mixedbread[mixedbread]~=0.3.0; extra == 'reranker-mixedbread'
|
|
115
|
-
Provides-Extra: reranker-sentence-transformers
|
|
116
|
-
Requires-Dist: agentforge-reranker-sentence-transformers[sentence-transformers]~=0.3.0; extra == 'reranker-sentence-transformers'
|
|
117
|
-
Provides-Extra: reranker-voyage
|
|
118
|
-
Requires-Dist: agentforge-reranker-voyage[voyage]~=0.3.0; extra == 'reranker-voyage'
|
|
119
|
-
Provides-Extra: statsd
|
|
120
|
-
Requires-Dist: agentforge-statsd[statsd]~=0.3.0; extra == 'statsd'
|
|
121
|
-
Provides-Extra: testing
|
|
122
|
-
Requires-Dist: agentforge-testing~=0.3.0; extra == 'testing'
|
|
123
|
-
Provides-Extra: voyage
|
|
124
|
-
Requires-Dist: agentforge-voyage[voyage]~=0.3.0; extra == 'voyage'
|
|
125
|
-
Description-Content-Type: text/markdown
|
|
126
|
-
|
|
127
|
-
# agentforge
|
|
128
|
-
|
|
129
|
-
The default runtime for the AgentForge framework — `Agent`, `ReActLoop`,
|
|
130
|
-
default tools, `SimpleFinding`, in-memory store, basic safety defaults,
|
|
131
|
-
`BudgetPolicy`. Most users install this package and add module extras
|
|
132
|
-
as needed.
|
|
133
|
-
|
|
134
|
-
## Three-line agent (once feat-001 lands)
|
|
135
|
-
|
|
136
|
-
```python
|
|
137
|
-
from agentforge import Agent
|
|
138
|
-
|
|
139
|
-
agent = Agent(model="anthropic:claude-sonnet-4.7")
|
|
140
|
-
result = await agent.run("Say hello in three words.")
|
|
141
|
-
```
|
|
142
|
-
|
|
143
|
-
## Install
|
|
144
|
-
|
|
145
|
-
```bash
|
|
146
|
-
pip install agentforge-py # core runtime
|
|
147
|
-
pip install "agentforge-py[anthropic]" # + Anthropic provider
|
|
148
|
-
pip install "agentforge-py[anthropic,memory-postgres]" # + persistence
|
|
149
|
-
```
|
|
150
|
-
|
|
151
|
-
## Status
|
|
152
|
-
|
|
153
|
-
v0.0 — pre-alpha. Repo bootstrapped; feat-001 (Core contracts &
|
|
154
|
-
`Agent` orchestrator) is the next milestone.
|
|
155
|
-
|
|
156
|
-
## License
|
|
157
|
-
|
|
158
|
-
Apache 2.0.
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|