Andrew Homeyer

Results 6 comments of Andrew Homeyer

Probably just needs to be updated to the latest version. Want to open a PR?

You might have better luck with this: https://github.com/nearinfinity/node-oracle

Same problem - following the quickstart tutorial on a mac (osx 13.1) didn't work by default, ran into this issue: https://github.com/localstack/serverless-localstack/issues/125 I had to change the quickstart serverless config to...

The default serverless host is using `localhost`, which on a mac is going to resolve to the IPv6 version instead of IPv4 127.0.0.1. Serverless is expecting the IPv4 address. In...

Here's a model wrapper I'm using to implement this, using the `wrapLanguageModel` provided by `ai`. Use it like: ``` streamText({ model: wrapWithRetryAfter(anthropic('claude-4-sonnet-20250514')), ... }) ``` ```wrapWithRetryAfter.ts import { wrapLanguageModel, type...