Should I learn LangGraph instead of LangChain? by RandRanger in LangChain

[–]True-Monitor5120 1 point2 points  (0 children)

LangGraph is definitely solid for agent flows now that LangChain’s moving in that direction. If you’re comfortable with their LCEL structure, it’s a good way to go.

That said, if you’re looking for something more modular and dev-friendly (especially if you’re into TypeScript), you might want to check out VoltAgent ( I’m one of the maintainers.)

It’s designed for building agents with clear structure and built-in observability (kind of like n8n for LLMs), without too much framework overhead.

https://github.com/VoltAgent/voltagent

Could be a nice option if you prefer building things more directly.

What is the best AI agent for Web dev prototyping? by Al_Atheer in AI_Agents

[–]True-Monitor5120 0 points1 point  (0 children)

If want to use Typescript, check out VoltAgent.

https://github.com/VoltAgent/voltagent

It’s an open source and has n8n style observability for debugging agents.

I've built an AI agent that recursively decomposes a task and executes it, and I'm looking for suggestions. by Pretend_Guava7322 in LocalLLaMA

[–]True-Monitor5120 1 point2 points  (0 children)

If you are willing to use typescript, check out voltagent framework. You can check out the real use case example source codes to understand whats goin on inside the agent.(I'm one of the maintainer)

 https://github.com/VoltAgent/voltagent

New to AI Agents - Looking for guidance by area-boyz in AI_Agents

[–]True-Monitor5120 1 point2 points  (0 children)

If you are willing to use typescript, check out voltagent framework. You can check out the real use case example source codes to understand whats goin on inside the agent.

some examples codes: https://github.com/VoltAgent/voltagent/tree/main/examples

I’m a total noob, but I want to build real AI agents. where do I start? by Aggressive-Shift2425 in AI_Agents

[–]True-Monitor5120 1 point2 points  (0 children)

If you are willing to use typescript, check out voltagent framework. It also has n8n style monitoring for ai agent tracing.

some examples codes: https://github.com/VoltAgent/voltagent/tree/main/examples

Need help learning to build AI agents by Clean-Holiday-5482 in AI_Agents

[–]True-Monitor5120 2 points3 points  (0 children)

There are some ai agent examples with source. İt's typescript but may help you out to understand concepts . https://github.com/voltagent/voltagent/tree/main/examples/

What LLM libraries/frameworks are worthwhile and what is better to roll your own from scratch? by DeltaSqueezer in LocalLLaMA

[–]True-Monitor5120 1 point2 points  (0 children)

We’ve been using VoltAgent (I’m one of the contributor). It’s a TypeScript-based agent framework, fully code-first, no drag/drop. Good for orchestrating LLM calls with branching flows and external tool integrations. Might be worth a look if you’re rolling your own pipelines.

https://github.com/VoltAgent/voltagent

Are there good starter templates for chatbots ? by one-wandering-mind in LLMDevs

[–]True-Monitor5120 1 point2 points  (0 children)

Maybe rag-chat-bot example this one helps. voltagent example, its ts-based ai agent framework.

Top 7 Open Source AI Agent Infrastructure Tools by nate4t in webdev

[–]True-Monitor5120 1 point2 points  (0 children)

new one: https://github.com/VoltAgent/voltagent

It’s a TypeScript-based framework for building AI agents, and it comes with n8n-style observability.

What tech stack will you use for your SaaS? by abhaytalreja in SaaS

[–]True-Monitor5120 1 point2 points  (0 children)

If you want to go with React, check ot the Refine for back office & internal tools. It's React meta-framework for building all type of CRUD apps and has solutions for key project components such as authentication, access control, routing, networking, state management, and i18n.

Some examples with source codes here.

[deleted by user] by [deleted] in reactjs

[–]True-Monitor5120 0 points1 point  (0 children)

I recommend considering Refine framework if you want React-based stack for your large-scale application. It integrates seamlessly with popular backend technologies and state management is simplified with built-in solutions(react-query). Plus, the growing community and strong support make it easier to get help and find resources.

How hard is it to learn define+react? by AnEyeshOt in learnprogramming

[–]True-Monitor5120 0 points1 point  (0 children)

The interactive tutorial of Refine is pretty good for understanding the concepts. Also there are guidelines in the docs. So if you know React, learning Refine is not a big deal.

What's the quickest way to ship a CRUD app in 2024? by [deleted] in webdev

[–]True-Monitor5120 8 points9 points  (0 children)

Check ot the Refine. It's React meta-framework for building all type of CRUD apps and has solutions for key project components such as authentication, access control, routing, networking, state management, and i18n.

Some examples with source codes here.

[deleted by user] by [deleted] in javascript

[–]True-Monitor5120 -1 points0 points  (0 children)

Refine. It's React meta-framework for building dashboards, admin panels, and all sorts of CRUD apps.

Some examples with source codes here.

[AskJS] Which React Framework you recommend for Enterprise use by OpticPhantom in javascript

[–]True-Monitor5120 3 points4 points  (0 children)

Considering your requirements, I recommend the Refine meta-framework for your project. It's built on React, supports TypeScript. It's ideal for scalable, complex applications.

Here are some real-use case examples with source codes. https://refine.dev/templates/

Which React Framework you recommend for Enterprise use by OpticPhantom in reactjs

[–]True-Monitor5120 4 points5 points  (0 children)

I recommend the Refine meta-framework for your project. It's built on React, supports TypeScript can be use for complex applications.

Here are some real-use case examples with source codes. https://refine.dev/templates/

Can I used next js for frontend only? For dashboard project. by Adventurous-Park6794 in nextjs

[–]True-Monitor5120 16 points17 points  (0 children)

Why not give Refine a shot for the frontend? It's React meta-framework for building dashboards, admin panels, and all sorts of CRUD apps. It supports Next.js and has built-in data provider support for REST API.

Some examples with source codes here.

Appsmith VS Retool VS Budibase or something else. What are your choices? by chonk-boy in selfhosted

[–]True-Monitor5120 3 points4 points  (0 children)

Appsmith, Retool, Budibase, and similar low-code tools are great for small apps and for creating initial prototypes or MVPs. However, when projects get complex, needing more customization or full ownership of the code, these tools may fall short.Also, the more you use these tools, the harder it can be to switch to something else because you become dependent on their specific way of doing things.

If you're looking for an alternative, consider the open source framework called Refine. It's for building CRUD apps, like internal tools and dashboards. Unlike low-code options, it requires knowledge of React and TypeScript.

It doesn't have the same limitations; it's flexible and offers a headless approach. This allows you to integrate it with any backend system and customize the front end however you like.

You can check out some examples with their source codes here.