Compare commits
1 Commits
master
...
dependabot
Author | SHA1 | Date |
---|---|---|
![]() |
1ef083c632 |
|
@ -176,4 +176,3 @@ To maintain a uniform standard and ensure seamless compatibility with many curre
|
|||
<a href="https://github.com/Significant-Gravitas/AutoGPT/graphs/contributors" alt="View Contributors">
|
||||
<img src="https://contrib.rocks/image?repo=Significant-Gravitas/AutoGPT&max=1000&columns=10" alt="Contributors" />
|
||||
</a>
|
||||
|
||||
|
|
|
@ -6,14 +6,9 @@
|
|||
- AITextGeneratorBlock
|
||||
- AIStructuredResponseGeneratorBlock
|
||||
with a double brace format.
|
||||
- This migration can be slow for a large updated AgentNode tables.
|
||||
*/
|
||||
BEGIN;
|
||||
SET LOCAL statement_timeout = '10min';
|
||||
|
||||
WITH to_update AS (
|
||||
SELECT
|
||||
"id",
|
||||
"agentBlockId",
|
||||
"constantInput"::jsonb AS j
|
||||
FROM "AgentNode"
|
||||
|
@ -32,7 +27,6 @@ WITH to_update AS (
|
|||
),
|
||||
updated_rows AS (
|
||||
SELECT
|
||||
"id",
|
||||
"agentBlockId",
|
||||
(
|
||||
j
|
||||
|
@ -81,6 +75,4 @@ updated_rows AS (
|
|||
UPDATE "AgentNode" AS an
|
||||
SET "constantInput" = ur."newConstantInput"
|
||||
FROM updated_rows ur
|
||||
WHERE an."id" = ur."id";
|
||||
|
||||
COMMIT;
|
||||
WHERE an."agentBlockId" = ur."agentBlockId";
|
||||
|
|
File diff suppressed because it is too large
Load Diff
|
@ -10,33 +10,33 @@ packages = [{ include = "backend", format = "sdist" }]
|
|||
[tool.poetry.dependencies]
|
||||
python = ">=3.10,<3.13"
|
||||
aio-pika = "^9.5.4"
|
||||
anthropic = "^0.40.0"
|
||||
anthropic = "^0.42.0"
|
||||
apscheduler = "^3.11.0"
|
||||
autogpt-libs = { path = "../autogpt_libs", develop = true }
|
||||
click = "^8.1.7"
|
||||
click = "^8.1.8"
|
||||
discord-py = "^2.4.0"
|
||||
e2b-code-interpreter = "^1.0.1"
|
||||
fastapi = "^0.115.5"
|
||||
e2b-code-interpreter = "^1.0.3"
|
||||
fastapi = "^0.115.6"
|
||||
feedparser = "^6.0.11"
|
||||
flake8 = "^7.0.0"
|
||||
google-api-python-client = "^2.154.0"
|
||||
google-api-python-client = "^2.157.0"
|
||||
google-auth-oauthlib = "^1.2.1"
|
||||
groq = "^0.13.1"
|
||||
jinja2 = "^3.1.4"
|
||||
groq = "^0.14.0"
|
||||
jinja2 = "^3.1.5"
|
||||
jsonref = "^1.1.0"
|
||||
jsonschema = "^4.22.0"
|
||||
ollama = "^0.4.1"
|
||||
openai = "^1.57.4"
|
||||
ollama = "^0.4.5"
|
||||
openai = "^1.59.5"
|
||||
praw = "~7.8.1"
|
||||
prisma = "^0.15.0"
|
||||
psutil = "^6.1.0"
|
||||
pydantic = "^2.9.2"
|
||||
pydantic-settings = "^2.3.4"
|
||||
psutil = "^6.1.1"
|
||||
pydantic = "^2.10.5"
|
||||
pydantic-settings = "^2.7.1"
|
||||
pyro5 = "^5.15"
|
||||
pytest = "^8.2.1"
|
||||
pytest-asyncio = "^0.25.0"
|
||||
pytest = "^8.3.4"
|
||||
pytest-asyncio = "^0.25.2"
|
||||
python-dotenv = "^1.0.1"
|
||||
redis = "^5.2.0"
|
||||
redis = "^5.2.1"
|
||||
sentry-sdk = "2.19.2"
|
||||
strenum = "^0.4.9"
|
||||
supabase = "2.11.0"
|
||||
|
@ -53,7 +53,7 @@ python-multipart = "^0.0.20"
|
|||
sqlalchemy = "^2.0.36"
|
||||
psycopg2-binary = "^2.9.10"
|
||||
google-cloud-storage = "^2.18.2"
|
||||
launchdarkly-server-sdk = "^9.8.0"
|
||||
launchdarkly-server-sdk = "^9.9.0"
|
||||
|
||||
[tool.poetry.group.dev.dependencies]
|
||||
poethepoet = "^0.31.0"
|
||||
|
|
Loading…
Reference in New Issue