Robert Washbourne
                                            Robert Washbourne
                                        
                                    @arpitjindal97 I have not
@mattn yes, but can I bundle one in my app?
@arnavsinghvi11 I think without the cache modifications caching for different models would be broken (e.g. same prompt on gpt3.5 could pull in cached responses from gp4). Would gladly take any...
Is it possible to draw a control/widget in an area? I'm trying to make a simple text editor using ProtonMail's fork.
https://github.com/hwchase17/langchainjs/pull/413
@homanp Do you mind giving some snippets of how you got that to work? I tried a route handler and I was getting a ton of module errors when calling...
@nfcampos Thank you for the link. I've isolated the error to loading pinecone, which fails with ``` error - node:fs/promises Module build failed: UnhandledSchemeError: Reading from "node:fs/promises" is not handled...
@nfcampos Thank you for the tip, that fixes the langchain related import errors. Unrelated but I'll leave a comment in case someone else has the same issue. Looks like I...
@aseem2625 Here is a snippet ```typescript // pages/api/vectordbqa.ts export const config = { runtime: "edge", }; export default async function handler(req: NextRequest) { // … // connect to pinecone const...
> I've got a working workaround here https://github.com/andaag/chattergpt/blob/e199ccc99b7d8476275f4ed5720b268d506490c1/shared.py#L41 - it's a bit ugly as it accesses internal classes, but should work fine until something is implemented. Thanks for the link,...