We typically work with a 3rd party security firm each year, but now I'm wondering if there are more efficient and more AI-native options that people are using? It seems like a clear use-case for agents. Does anyone have experience working with a product/vendor in the space?
Direct DB queries will take a tens of milliseconds while queries through Supavisor will take a minimum of 200ms and up to 5s.
This is phenomena independent of the underlying query even `SELECT 1` through Supavisor can take up to 5s.
Has anyone else experience this before? Is this a known failure mode of Supabase's Supavisor?
I'm curious if you were told you could have decent internal documentation automatically generated for you that were good enough, but not competitive w/ human maintained docs.
Would you still take the effort to write your own documentation?
We use MyPy to ensure type-safety across our entire codebase, but we do not have coverage on Jinja template variables.
We want to know if someone either
(a) forgets to pass a required template variable to a Jinja template (b) passes a name of a template variable that doesn't exist
We already get these errors at runtime with Jinja, but want to know if there is a way to statically check for this.
I'm curious if anyone has run into this before or has suggestions for type-safe templating in Python.
Thanks!