Esteban Quezada
Esteban Quezada
@narduin The only solution that is currently working for me is downgrading @nuxt/pwa to 2.6.0. That way it preloads the content within /_nuxt and it becomes accesible even if the...
### Update Actually, disabling image optimization did not solve the issue. What did it was removing the profile picture I set in the app. I did it because I noticed...
@luighifeodrippe, I did it as seen [here](https://github.com/quezadaesteban/chatbot-ui/blob/main/next.config.js) but it did not address the issue After the change, the UI was still triggering calls to the image optimization endpoint. I bring...
I implemented the Anthropic API in a personal project and indeed it is very picky compared to OpenAI. The first message should be of type `user`, but also the last...
> @quezadaesteban can you please provide the sample configuration how you handled the message construction and token usage in Anthropic. Sure, note that they target a specific database schema and...
@Kam205, I wrote an article recently explaining it further [here](https://www.codalas.com/en/2407/how-to-build-a-compliant-payload-for-anthropic-api).
This is still broken on `@nuxtjs/ionic` v.0.8.1. w. Nuxt 3.1.0.
The solution given by @MikeyBeLike worked! In my case, I have something like this in the composable (so it is global). I only had to add the import in the...
I faced a similar issue with the API. User messages work with format `content: [{ type: "text", "text": "prompt" }]`, but assistant messages must use `content: "prompt"` since the API...