Compare commits
1 Commits
master
...
dependabot
Author | SHA1 | Date |
---|---|---|
![]() |
437f09e665 |
|
@ -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
|
@ -56,17 +56,17 @@ google-cloud-storage = "^2.18.2"
|
|||
launchdarkly-server-sdk = "^9.8.0"
|
||||
|
||||
[tool.poetry.group.dev.dependencies]
|
||||
poethepoet = "^0.31.0"
|
||||
poethepoet = "^0.32.0"
|
||||
httpx = "^0.27.0"
|
||||
pytest-watcher = "^0.4.2"
|
||||
requests = "^2.32.3"
|
||||
ruff = "^0.8.0"
|
||||
pyright = "^1.1.389"
|
||||
ruff = "^0.9.0"
|
||||
pyright = "^1.1.391"
|
||||
isort = "^5.13.2"
|
||||
black = "^24.10.0"
|
||||
aiohappyeyeballs = "^2.4.3"
|
||||
aiohappyeyeballs = "^2.4.4"
|
||||
pytest-mock = "^3.14.0"
|
||||
faker = "^33.1.0"
|
||||
faker = "^33.3.0"
|
||||
|
||||
[build-system]
|
||||
requires = ["poetry-core"]
|
||||
|
|
Loading…
Reference in New Issue