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>
16 lines
422 B
TOML
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"
|