Kenny
Kenny
I get this error as well. Downgrading to 0.1.8 also shows no error. That'll work as a temporary fix for me.
@rlancemartin @eyurtsev
I just noticed -completions. Are those supposed to differentiate the different input/output prices? If they are, there's an issue in what I provided because I put whatever the highest cost...
I'll take this up
Yes, I agree. I think the most "FastAPI" solution would be to keep the entire sync process synchronous as fastapi will automatically run that in the thread pool and will...
I understand that but asynch is very buggy and I (and many others it seems) can't use it in production. This is why it would be helpful to have the...
Sure, after about 30 minutes of running asynch with FastAPI it would just stop working and throw the following errors: `asynch.errors.UnexpectedPacketFromServerError: Code: 102. Unexpected packet from server localhost:9000 (expected Pong,...
> This adapter won't be introducing official support. Please use the OpenNext adapter if you would like to use Next.js 15. The official cloudflare docs mention to use next-on-pages for...
Make a new component called "share-on-social.tsx" and paste the following code: ```tsx // src/components/share-on-social.tsx "use client"; import dynamic from "next/dynamic"; import type React from "react"; const LazyShareOnSocialBase = dynamic(() =>...
I created a PR #229 which will add this usage to the README.md in order to help people find this in the future.