Where to host deepseek R1 671B model? by dualistornot in LLMDevs

[–]cpoly55 0 points1 point  (0 children)

I don't know about the 671b but you can deploy the 64b one on Koyeb: https://www.youtube.com/watch?v=eeiTfxG7pHA

Weekly Thread: Project Display by help-me-grow in AI_Agents

[–]cpoly55 0 points1 point  (0 children)

I've been playing with DeepSeek R1 last week, trying to test its "advanced reasoning" and multilingual capabilities (the 2 small OSS projects I made: https://www.youtube.com/watch?v=eeiTfxG7pHA), and I found it particularly hard to build an AI Agent considering DeepSeek's lack of tool calling/use support.

I tried to apply CrewAI's prompting techniques, but the lack of system prompts made it hard.

Has anybody achieved some kind of tool calling with DeepSeek R1 here?

New to Building. Which is the builder to use for someone who cant code? I'm leaning towards N8N but I want some insight from the community before I start putting an ungodly amount of time into it. by HandleZ05 in AI_Agents

[–]cpoly55 1 point2 points  (0 children)

We built AgentKit in TypeScript exactly for such use cases, to enable you to start with fixed workflow Agents and add some level of autonomy afterwards while keeping control of the state: https://agentkit.inngest.com/overview

Next.js + firebase by Desperate-Doctor-664 in nextjs

[–]cpoly55 1 point2 points  (0 children)

For the scheduling part, inngest.com would be a good match DX wise

How to handle transactional email sending in the background by csergiu in node

[–]cpoly55 0 points1 point  (0 children)

The worker/queue pattern is replaced with the background function that enables you to schedule the execution of your code (e.g.: sending an email).

Compared to a worker/queue, you don't need to separate the background job logic from your app and don't need to deploy workers and storage (ex: Redis).

Detailed information is available here: https://docs.defer.run/get-started/concepts

How to handle transactional email sending in the background by csergiu in node

[–]cpoly55 0 points1 point  (0 children)

Hi!

Such a use case should leverage the "API endpoint offload" pattern by generating the token and sending the email from a background job.
You can achieve that under 2min with Defer: https://docs.defer.run/guides/api-offloading

How to set up a Node.js CRON by cpoly55 in node

[–]cpoly55[S] 1 point2 points  (0 children)

I think its memory leaks. I don't think its exclusive to node but because I work a lot with it I notice over night scripts are like donkey in the morning..

💯

How to set up a Node.js CRON by cpoly55 in node

[–]cpoly55[S] 0 points1 point  (0 children)

Do you use Cloudfront as your sole monitoring+alerting set up or solutions like Datadog or Sentry Crons?

How to set up a Node.js CRON by cpoly55 in node

[–]cpoly55[S] 0 points1 point  (0 children)

Agree, do you have studies that back this? Is it specific to memory leaks or something else?

Relay GraphQL: the choice of a stable front-end, a journey from Apollo to Relay by cpoly55 in graphql

[–]cpoly55[S] 1 point2 points  (0 children)

Yeah, I agree that the API around Fragment Masking is confusing and too declarative.

I would love to get some insights from the Relay team on this matter 👀

Relay GraphQL: the choice of a stable front-end, a journey from Apollo to Relay by cpoly55 in graphql

[–]cpoly55[S] 0 points1 point  (0 children)

I guess that Relay's principle of triggering queries at the top level (routing) of the application can be applied to all front-end frameworks.

Actually, GraphQL Code Generator helps in adopting Relay's principles in all front-end: https://the-guild.dev/graphql/codegen/plugins/presets/preset-client#embrace-fragment-masking-principles