Lawrence Chen
Lawrence Chen
I have a working (but untested) version that implements everything. https://gist.github.com/lawrencecchen/67c55529c1a832a787bc3758b2d1f8b6 Would love to to this repo once I figure out how to add tests.
I'm currently using prisma for the database schema. Currently, the adapter's table names aren't configurable, and I allow a higher order function to generate ids. Any thoughts?
@mwojtul yours looks great, will definitely switch to it! Some questions: - is it necessary to use pgcrypto? afaik, gen_random_uuid() is built in since postgres 14, and next-auth doesn't do...
> Would [Kysely's CamelCasePlugin](https://koskimas.github.io/kysely/classes/CamelCasePlugin.html) be able to handle this, or do we still need something more configurable? I think this is a good idea. One option is to define every...
Any preferences? Some options I can think of: - Nextra - Docusaurus - VitePress Next looks pretty cool too: https://twitter.com/KiaKing85/status/1527274250733862915 - notion as cms (not open source)
> Most people consume this SDK from their backend Just to clarify, I'm using nango from my cloudflare workers backend which is missing some node builtins. But understand that bandwidth...
```ts const result = await chat.generate(text, (progress, currentMessage) => { console.log(progress, currentMessage); }); ``` Generate callback has a second parameter