We need to replace a fairly small model within our function with a transformer model that is about 800MB in size, and we're trying to decide the best way to host it. Can we keep it bundled in our appwrite function, or should we host the model on a separate server of our own and only use the "helpers" part within the appwrite function? We're considering this because we want to be mindful of resource usage and avoid putting unnecessary strain on Appwrite servers (still on a free plan as of now, since we're still in the dev phase).
Recommended threads
- Update User Error
```ts const { users, databases } = await createAdminClient(); const session = await getLoggedInUser(); const user = await users.get(session.$id); if (!use...
- Our Appwrite organization is suspended
Please give support regarding this , no app is working now , please solve my issue and give support , no one is replying in message section or email.
- How to Avoid Double Requests in function...
I'm currently using Appwrite's `functions.createExecution` in my project. I want to avoid double requests when multiple actions (like searching or pagination) a...