You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
swarms/.replit

39 lines
795 B

modules = ["python-3.10", "bash"]
[nix]
channel = "stable-24_05"
packages = ["libxcrypt"]
[workflows]
runButton = "Run MCP Demo"
[[workflows.workflow]]
name = "Run Tests"
author = 13983571
mode = "sequential"
[[workflows.workflow.tasks]]
task = "shell.exec"
args = "python -m unittest tests/test_basic_example.py -v"
[[workflows.workflow.tasks]]
task = "shell.exec"
args = "python -m unittest tests/tools/test_mcp_integration.py -v"
[[workflows.workflow]]
name = "Run MCP Demo"
author = 13983571
mode = "parallel"
[[workflows.workflow.tasks]]
task = "shell.exec"
args = "python examples/mcp_example/mock_math_server.py"
[[workflows.workflow.tasks]]
task = "shell.exec"
args = "sleep 2"
[[workflows.workflow.tasks]]
task = "shell.exec"
args = "python examples/mcp_example/mcp_client.py"