switchplane 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.
- {switchplane-0.3.0 → switchplane-0.3.1}/PKG-INFO +1 -1
- {switchplane-0.3.0 → switchplane-0.3.1}/pyproject.toml +1 -1
- {switchplane-0.3.0 → switchplane-0.3.1}/src/switchplane/agent_runtime.py +1 -0
- {switchplane-0.3.0 → switchplane-0.3.1}/.github/labeler.yml +0 -0
- {switchplane-0.3.0 → switchplane-0.3.1}/.github/release.yml +0 -0
- {switchplane-0.3.0 → switchplane-0.3.1}/.github/workflows/ci.yml +0 -0
- {switchplane-0.3.0 → switchplane-0.3.1}/.github/workflows/labeler.yml +0 -0
- {switchplane-0.3.0 → switchplane-0.3.1}/.github/workflows/publish.yml +0 -0
- {switchplane-0.3.0 → switchplane-0.3.1}/.gitignore +0 -0
- {switchplane-0.3.0 → switchplane-0.3.1}/CLAUDE.md +0 -0
- {switchplane-0.3.0 → switchplane-0.3.1}/CODEOWNERS +0 -0
- {switchplane-0.3.0 → switchplane-0.3.1}/CODE_OF_CONDUCT.md +0 -0
- {switchplane-0.3.0 → switchplane-0.3.1}/CONTRIBUTING.md +0 -0
- {switchplane-0.3.0 → switchplane-0.3.1}/LICENSE +0 -0
- {switchplane-0.3.0 → switchplane-0.3.1}/Makefile +0 -0
- {switchplane-0.3.0 → switchplane-0.3.1}/README.md +0 -0
- {switchplane-0.3.0 → switchplane-0.3.1}/SECURITY.md +0 -0
- {switchplane-0.3.0 → switchplane-0.3.1}/TODO.md +0 -0
- {switchplane-0.3.0 → switchplane-0.3.1}/examples/chatbot/chatbot/__init__.py +0 -0
- {switchplane-0.3.0 → switchplane-0.3.1}/examples/chatbot/chatbot/agents/__init__.py +0 -0
- {switchplane-0.3.0 → switchplane-0.3.1}/examples/chatbot/chatbot/agents/bot/__init__.py +0 -0
- {switchplane-0.3.0 → switchplane-0.3.1}/examples/chatbot/chatbot/agents/bot/agent.py +0 -0
- {switchplane-0.3.0 → switchplane-0.3.1}/examples/chatbot/chatbot/agents/bot/tasks/__init__.py +0 -0
- {switchplane-0.3.0 → switchplane-0.3.1}/examples/chatbot/chatbot/agents/bot/tasks/chat.py +0 -0
- {switchplane-0.3.0 → switchplane-0.3.1}/examples/chatbot/chatbot/app.py +0 -0
- {switchplane-0.3.0 → switchplane-0.3.1}/examples/chatbot/chatbot/config.toml +0 -0
- {switchplane-0.3.0 → switchplane-0.3.1}/examples/chatbot/pyproject.toml +0 -0
- {switchplane-0.3.0 → switchplane-0.3.1}/examples/devops/devops/__init__.py +0 -0
- {switchplane-0.3.0 → switchplane-0.3.1}/examples/devops/devops/agents/__init__.py +0 -0
- {switchplane-0.3.0 → switchplane-0.3.1}/examples/devops/devops/agents/sre/__init__.py +0 -0
- {switchplane-0.3.0 → switchplane-0.3.1}/examples/devops/devops/agents/sre/agent.py +0 -0
- {switchplane-0.3.0 → switchplane-0.3.1}/examples/devops/devops/agents/sre/tasks/__init__.py +0 -0
- {switchplane-0.3.0 → switchplane-0.3.1}/examples/devops/devops/agents/sre/tasks/review.py +0 -0
- {switchplane-0.3.0 → switchplane-0.3.1}/examples/devops/devops/app.py +0 -0
- {switchplane-0.3.0 → switchplane-0.3.1}/examples/devops/devops/config.toml +0 -0
- {switchplane-0.3.0 → switchplane-0.3.1}/examples/devops/pyproject.toml +0 -0
- {switchplane-0.3.0 → switchplane-0.3.1}/examples/hello/hello/__init__.py +0 -0
- {switchplane-0.3.0 → switchplane-0.3.1}/examples/hello/hello/agents/__init__.py +0 -0
- {switchplane-0.3.0 → switchplane-0.3.1}/examples/hello/hello/agents/example/__init__.py +0 -0
- {switchplane-0.3.0 → switchplane-0.3.1}/examples/hello/hello/agents/example/agent.py +0 -0
- {switchplane-0.3.0 → switchplane-0.3.1}/examples/hello/hello/agents/example/tasks/__init__.py +0 -0
- {switchplane-0.3.0 → switchplane-0.3.1}/examples/hello/hello/agents/example/tasks/hello.py +0 -0
- {switchplane-0.3.0 → switchplane-0.3.1}/examples/hello/hello/app.py +0 -0
- {switchplane-0.3.0 → switchplane-0.3.1}/examples/hello/pyproject.toml +0 -0
- {switchplane-0.3.0 → switchplane-0.3.1}/examples/weather/pyproject.toml +0 -0
- {switchplane-0.3.0 → switchplane-0.3.1}/examples/weather/weather/__init__.py +0 -0
- {switchplane-0.3.0 → switchplane-0.3.1}/examples/weather/weather/agents/__init__.py +0 -0
- {switchplane-0.3.0 → switchplane-0.3.1}/examples/weather/weather/agents/weather/__init__.py +0 -0
- {switchplane-0.3.0 → switchplane-0.3.1}/examples/weather/weather/agents/weather/agent.py +0 -0
- {switchplane-0.3.0 → switchplane-0.3.1}/examples/weather/weather/agents/weather/tasks/__init__.py +0 -0
- {switchplane-0.3.0 → switchplane-0.3.1}/examples/weather/weather/agents/weather/tasks/watch.py +0 -0
- {switchplane-0.3.0 → switchplane-0.3.1}/examples/weather/weather/app.py +0 -0
- {switchplane-0.3.0 → switchplane-0.3.1}/src/switchplane/__init__.py +0 -0
- {switchplane-0.3.0 → switchplane-0.3.1}/src/switchplane/__main__.py +0 -0
- {switchplane-0.3.0 → switchplane-0.3.1}/src/switchplane/_util.py +0 -0
- {switchplane-0.3.0 → switchplane-0.3.1}/src/switchplane/agent.py +0 -0
- {switchplane-0.3.0 → switchplane-0.3.1}/src/switchplane/app.py +0 -0
- {switchplane-0.3.0 → switchplane-0.3.1}/src/switchplane/checkpoint.py +0 -0
- {switchplane-0.3.0 → switchplane-0.3.1}/src/switchplane/cli.py +0 -0
- {switchplane-0.3.0 → switchplane-0.3.1}/src/switchplane/config.py +0 -0
- {switchplane-0.3.0 → switchplane-0.3.1}/src/switchplane/control_plane.py +0 -0
- {switchplane-0.3.0 → switchplane-0.3.1}/src/switchplane/daemon.py +0 -0
- {switchplane-0.3.0 → switchplane-0.3.1}/src/switchplane/discovery.py +0 -0
- {switchplane-0.3.0 → switchplane-0.3.1}/src/switchplane/fmt.py +0 -0
- {switchplane-0.3.0 → switchplane-0.3.1}/src/switchplane/llm.py +0 -0
- {switchplane-0.3.0 → switchplane-0.3.1}/src/switchplane/logging.py +0 -0
- {switchplane-0.3.0 → switchplane-0.3.1}/src/switchplane/mcp.py +0 -0
- {switchplane-0.3.0 → switchplane-0.3.1}/src/switchplane/oauth.py +0 -0
- {switchplane-0.3.0 → switchplane-0.3.1}/src/switchplane/persistence.py +0 -0
- {switchplane-0.3.0 → switchplane-0.3.1}/src/switchplane/protocol.py +0 -0
- {switchplane-0.3.0 → switchplane-0.3.1}/src/switchplane/scaffold.py +0 -0
- {switchplane-0.3.0 → switchplane-0.3.1}/src/switchplane/shell.py +0 -0
- {switchplane-0.3.0 → switchplane-0.3.1}/src/switchplane/subprocess_manager.py +0 -0
- {switchplane-0.3.0 → switchplane-0.3.1}/src/switchplane/task.py +0 -0
- {switchplane-0.3.0 → switchplane-0.3.1}/src/switchplane/transport.py +0 -0
- {switchplane-0.3.0 → switchplane-0.3.1}/src/switchplane/tui.py +0 -0
- {switchplane-0.3.0 → switchplane-0.3.1}/tests/__init__.py +0 -0
- {switchplane-0.3.0 → switchplane-0.3.1}/tests/conftest.py +0 -0
- {switchplane-0.3.0 → switchplane-0.3.1}/tests/test_agent.py +0 -0
- {switchplane-0.3.0 → switchplane-0.3.1}/tests/test_agent_runtime.py +0 -0
- {switchplane-0.3.0 → switchplane-0.3.1}/tests/test_app.py +0 -0
- {switchplane-0.3.0 → switchplane-0.3.1}/tests/test_checkpoint.py +0 -0
- {switchplane-0.3.0 → switchplane-0.3.1}/tests/test_cli.py +0 -0
- {switchplane-0.3.0 → switchplane-0.3.1}/tests/test_config.py +0 -0
- {switchplane-0.3.0 → switchplane-0.3.1}/tests/test_control_plane.py +0 -0
- {switchplane-0.3.0 → switchplane-0.3.1}/tests/test_daemon.py +0 -0
- {switchplane-0.3.0 → switchplane-0.3.1}/tests/test_discovery.py +0 -0
- {switchplane-0.3.0 → switchplane-0.3.1}/tests/test_inter_task.py +0 -0
- {switchplane-0.3.0 → switchplane-0.3.1}/tests/test_llm.py +0 -0
- {switchplane-0.3.0 → switchplane-0.3.1}/tests/test_mcp.py +0 -0
- {switchplane-0.3.0 → switchplane-0.3.1}/tests/test_persistence.py +0 -0
- {switchplane-0.3.0 → switchplane-0.3.1}/tests/test_protocol.py +0 -0
- {switchplane-0.3.0 → switchplane-0.3.1}/tests/test_shell.py +0 -0
- {switchplane-0.3.0 → switchplane-0.3.1}/tests/test_subprocess_manager.py +0 -0
- {switchplane-0.3.0 → switchplane-0.3.1}/tests/test_task.py +0 -0
- {switchplane-0.3.0 → switchplane-0.3.1}/tests/test_transport.py +0 -0
- {switchplane-0.3.0 → switchplane-0.3.1}/tests/test_tui.py +0 -0
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
Metadata-Version: 2.4
|
|
2
2
|
Name: switchplane
|
|
3
|
-
Version: 0.3.
|
|
3
|
+
Version: 0.3.1
|
|
4
4
|
Summary: Python runtime control plane for agent-based task execution, LangGraph-native
|
|
5
5
|
Project-URL: Homepage, https://github.com/salesforce-misc/switchplane
|
|
6
6
|
Project-URL: Repository, https://github.com/salesforce-misc/switchplane
|
|
@@ -501,6 +501,7 @@ async def _start_checkpointer(ctx: AgentContext) -> None:
|
|
|
501
501
|
ctx._db_conn = await aiosqlite.connect(ctx._db_path)
|
|
502
502
|
ctx._db_conn.row_factory = aiosqlite.Row
|
|
503
503
|
await ctx._db_conn.execute("PRAGMA journal_mode=WAL")
|
|
504
|
+
await ctx._db_conn.execute("PRAGMA busy_timeout=5000")
|
|
504
505
|
saver = SqliteCheckpointSaver(ctx._db_conn)
|
|
505
506
|
await saver.setup()
|
|
506
507
|
ctx._checkpointer = saver
|
|
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
|
{switchplane-0.3.0 → switchplane-0.3.1}/examples/chatbot/chatbot/agents/bot/tasks/__init__.py
RENAMED
|
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
|
{switchplane-0.3.0 → switchplane-0.3.1}/examples/hello/hello/agents/example/tasks/__init__.py
RENAMED
|
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
|
{switchplane-0.3.0 → switchplane-0.3.1}/examples/weather/weather/agents/weather/tasks/__init__.py
RENAMED
|
File without changes
|
{switchplane-0.3.0 → switchplane-0.3.1}/examples/weather/weather/agents/weather/tasks/watch.py
RENAMED
|
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
|
|
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
|