viky

Results 39 comments of 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.

can you try using instructor.Mode.MD_JSON ?

![Image](https://github.com/user-attachments/assets/6f819f25-85b3-488a-b670-81604f37a7c0) 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() #...