fix(backend): fix missing agent object requirement (#9380)

zamilmajdy/hotfix-doubly-reported-output autogpt-platform-beta-v0.4.6
Nicholas Tindle 2025-02-03 07:42:54 -06:00 committed by GitHub
parent f1bc9d1581
commit 53aea8908a
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194
1 changed files with 1 additions and 1 deletions

View File

@ -809,7 +809,7 @@ async def get_agent(
try:
store_listing_version = (
await prisma.models.StoreListingVersion.prisma().find_unique(
where={"id": store_listing_version_id}
where={"id": store_listing_version_id}, include={"Agent": True}
)
)