Hi everyone, I'm currently working with the Cloudflare-hosted BAAI model (@cf/baai/bge-base-en-v1.5)
Hi everyone,
I'm currently working with the Cloudflare-hosted BAAI model (@cf/baai/bge-base-en-v1.5) for generating vector embeddings in a Hono application. However, I'm encountering an issue where the AI service throws an 3001: Unknown internal error.
Here's a brief overview of what I'm doing:
I send a request to the AI model with a text array containing a single string.
const { data } = await c.env.AI.run('@cf/baai/bge-base-en-v1.5', { text: [text] });
The error occurs at this point, and the response from the AI service contains the 3001 with the message "Unknown internal error."
I've double-checked the input data, and everything seems to be in order. However, I'm still unsure what's causing this issue.
Has anyone else encountered this error, or does anyone have insights into what might be causing it? Any guidance on how to resolve this would be greatly appreciated.
PS: This error seems to occur infrequently and intermittently. Most of requests to the embedding model successfully complete.
I'm currently working with the Cloudflare-hosted BAAI model (@cf/baai/bge-base-en-v1.5) for generating vector embeddings in a Hono application. However, I'm encountering an issue where the AI service throws an 3001: Unknown internal error.
Here's a brief overview of what I'm doing:
I send a request to the AI model with a text array containing a single string.
const { data } = await c.env.AI.run('@cf/baai/bge-base-en-v1.5', { text: [text] });
The error occurs at this point, and the response from the AI service contains the 3001 with the message "Unknown internal error."
I've double-checked the input data, and everything seems to be in order. However, I'm still unsure what's causing this issue.
Has anyone else encountered this error, or does anyone have insights into what might be causing it? Any guidance on how to resolve this would be greatly appreciated.
PS: This error seems to occur infrequently and intermittently. Most of requests to the embedding model successfully complete.


