mirror of
https://github.com/Significant-Gravitas/AutoGPT.git
synced 2026-04-08 03:00:28 -04:00
* feat(backend): credential swap * ci: formatting * fix: importing is hard okay * fix: spelln' is hard * feat: better credential provider handling * docs: update the imports locations * fix: test credentials + formatting * feat: drop continuous read mode * fix: lint * feat: fallback credentials * feat: charge for credential useage and have a bad backup mechnism * fix: don't save default credentials + add d_id * fix: formatting * feat: basic encryption/decryption * ref: move files around * ref: sign all blocks out of their credentials * ref: update target to match a new, and encrypted future * wip: llm provider merger * don't delete `credentials` input on nodes * fix llm block ci issues * updated get AICredentials * fix fix * insert migration to move integration credentials from `auth.user` metadata to `platform.User.metadata` * fixed migration * add migration for existing user integration credentials * disabled reddit and email block * fix credential handling in LLM blocks * add other secret fields to credential scrubber migration * add other secret fields to credential scrubber migration (vol. 2) * fix: pr fixes * fix: mock funciton * add encrypted values --------- Co-authored-by: Reinier van der Leer <pwuts@agpt.co> Co-authored-by: SwiftyOS <craigswift13@gmail.com> Co-authored-by: Aarushi <50577581+aarushik93@users.noreply.github.com> Co-authored-by: Aarushi <aarushik93@gmail.com>
86 lines
1.9 KiB
TOML
86 lines
1.9 KiB
TOML
[tool.poetry]
|
|
name = "autogpt-platform-backend"
|
|
version = "0.1.0"
|
|
description = "A platform for building AI-powered agentic workflows"
|
|
authors = ["AutoGPT <info@agpt.co>"]
|
|
readme = "README.md"
|
|
packages = [{ include = "backend" }]
|
|
|
|
|
|
[tool.poetry.dependencies]
|
|
python = "^3.10"
|
|
aio-pika = "^9.4.3"
|
|
anthropic = "^0.25.1"
|
|
apscheduler = "^3.10.4"
|
|
autogpt-libs = { path = "../autogpt_libs", develop = true }
|
|
click = "^8.1.7"
|
|
croniter = "^5.0.1"
|
|
discord-py = "^2.4.0"
|
|
fastapi = "^0.109.0"
|
|
feedparser = "^6.0.11"
|
|
flake8 = "^7.0.0"
|
|
google-api-python-client = "^2.142.0"
|
|
google-auth-oauthlib = "^1.2.1"
|
|
groq = "^0.8.0"
|
|
jinja2 = "^3.1.4"
|
|
jsonref = "^1.1.0"
|
|
jsonschema = "^4.22.0"
|
|
ollama = "^0.3.0"
|
|
openai = "^1.35.7"
|
|
praw = "~7.7.1"
|
|
prisma = "^0.13.1"
|
|
psutil = "^6.1.0"
|
|
pydantic = "^2.7.2"
|
|
pydantic-settings = "^2.3.4"
|
|
pyro5 = "^5.15"
|
|
pytest = "^8.2.1"
|
|
pytest-asyncio = "^0.23.7"
|
|
python-dotenv = "^1.0.1"
|
|
redis = "^5.0.8"
|
|
sentry-sdk = "2.17.0"
|
|
supabase = "^2.7.2"
|
|
tenacity = "^9.0.0"
|
|
uvicorn = { extras = ["standard"], version = "^0.30.1" }
|
|
websockets = "^13.1"
|
|
youtube-transcript-api = "^0.6.2"
|
|
googlemaps = "^4.10.0"
|
|
replicate = "^0.34.1"
|
|
pinecone = "^5.3.1"
|
|
cryptography = "^43.0.3"
|
|
[tool.poetry.group.dev.dependencies]
|
|
poethepoet = "^0.29.0"
|
|
httpx = "^0.27.0"
|
|
pytest-watcher = "^0.4.2"
|
|
requests = "^2.32.3"
|
|
ruff = "^0.7.1"
|
|
pyright = "^1.1.386"
|
|
isort = "^5.13.2"
|
|
black = "^24.10.0"
|
|
aiohappyeyeballs = "^2.4.3"
|
|
|
|
[build-system]
|
|
requires = ["poetry-core"]
|
|
build-backend = "poetry.core.masonry.api"
|
|
|
|
[tool.poetry.scripts]
|
|
app = "backend.app:main"
|
|
rest = "backend.rest:main"
|
|
ws = "backend.ws:main"
|
|
executor = "backend.exec:main"
|
|
cli = "backend.cli:main"
|
|
format = "linter:format"
|
|
lint = "linter:lint"
|
|
test = "run_tests:test"
|
|
|
|
[tool.pytest-watcher]
|
|
now = false
|
|
clear = true
|
|
delay = 0.2
|
|
runner = "pytest"
|
|
runner_args = []
|
|
patterns = ["*.py"]
|
|
ignore_patterns = []
|
|
|
|
[tool.pytest.ini_options]
|
|
asyncio_mode = "auto"
|