arcade-mcp/examples/flask/pyproject.toml
Sam Partee 35baaf0dc8
Pass ToolContext and CLI cleanup (#13)
Added
-  `arcade dev` - serves a simple fastapi actor
- `arcade config` - show/edit/change config in `~/.arcade`
- `arcade chat` - chat with LLM without toolcalls

Changed:
- `arcade show`, `arcade run` - can now use all installed toolkits

---------

Co-authored-by: Nate Barbettini <nate@arcade-ai.com>
2024-08-13 15:40:08 -07:00

16 lines
422 B
TOML

[tool.poetry]
name = "arcade_example_flask"
version = "0.1.0"
description = "Flask example app with Arcade"
authors = ["Nate <nate@arcade-ai.com>"]
[tool.poetry.dependencies]
python = "^3.10"
flask = "^3.0.3"
arcade-ai = {path = "../../arcade", develop = true}
arcade-arithmetic = {path = "../../toolkits/math", develop = true}
[build-system]
requires = ["poetry-core>=1.0.0"]
build-backend = "poetry.core.masonry.api"