viky
viky
this happens on supabase, i did quick resboot on supabase and it worked. most probable culprit was supabase only allow 15 max connections, and somehow with fastapi (even with lifespan...
> I guess at this point changing the default value would be a breaking change for many users. At the very least, can we add some big bold warnings to...
I see, that makes sense.
found MD_JSON works widely among many models
can you try using instructor.Mode.MD_JSON ?
 The autocompletion is there, just when used model[] won't appear in swagger, only "model" appear But yes that workaround using t.Array(todoSchema) works
https://github.com/user-attachments/assets/46043c7f-4ba4-43bb-84f4-f12856836fa2
poetry run test_db.py script ```from prisma import Prisma def run(): import asyncio asyncio.run(arun()) async def arun(): # await check_mysql_connections() await check_postgresql_connections() async def check_mysql_connections(): prisma = Prisma() await prisma.connect() #...