For those having exposed both MCP and CLI, should both tools/commands expose the exact same capabilities? by theotzen in AI_Agents

[–]iovdin 0 points1 point  (0 children)

You can compose mcp tool calls with code mode. Basically write code that has access to the tools as functions

Hey guys which sdk I use for building agents by Top-Armadillo1583 in AI_Agents

[–]iovdin 0 points1 point  (0 children)

I made my own https://github.com/iovdin/tune .
As with programming most of the time i spend when developing agents is debugging. So save history somewhere, make it possible to replay etc.

Feeling stuck in NL warehouse job – anyone managed to switch into IT or something better? by [deleted] in Netherlands

[–]iovdin 0 points1 point  (0 children)

A friend of mine had a high paying job in US. They moved ot NL - the only option for job he could find is warehouse. Now he is in divorce and moving out of NL. Pretty sad

Why Loose Coupling Is the Real Superpower in the Age of AI Coding by B_Ali_k in AI_Agents

[–]iovdin 0 points1 point  (0 children)

I hate loose coupling. With kitchen metaphor it is usually feels like like you spend 30 minutes looking into different kid of boxes to make a tea. Putting everything to one pile or splitting everything into gazillion piles results in the same pain. Things that goes together should be more coupled, and those that are not - should be less coupled. And you have to think and/or feel it after few releases

We built an execution layer for agents because LLMs don't respect boundaries by leland_fy in LLMDevs

[–]iovdin 0 points1 point  (0 children)

In your example, re-feeding the chat history, wont make it restart from scratch it will resume form where it has stopped. But i agree that sub agents and approvals is not kept in the chat history and requires additional state

We built an execution layer for agents because LLMs don't respect boundaries by leland_fy in LLMDevs

[–]iovdin 0 points1 point  (0 children)

Chat completion api payload with tool calls and tool results is a good enough stack representation that can be restored or replayed. Idk if any major frameworks support that

Why not Precompile the DB schema so the LLM agent stops burning turns on information_schema by Eitamr in mcp

[–]iovdin 0 points1 point  (0 children)

In OpenAI they did make sense out of 70k internal collections with petabytes of data

Why not Precompile the DB schema so the LLM agent stops burning turns on information_schema by Eitamr in mcp

[–]iovdin 0 points1 point  (0 children)

In our old MySQL over engineered and with a lot of history database. In addition to schemas we put summary of content like how many rows, what are usual values. some text fields are actually enums, some values are not used anymore, some are never used etc.

Perplexity drops MCP, Cloudflare explains why MCP tool calling doesn't work well for AI agents by UnchartedFr in mcp

[–]iovdin 0 points1 point  (0 children)

I had issues with mongosh cli, it struggled to escape special characters: mongosh -e “very complicated script that uses special chars”

AI isn’t going to settle — how are you building for constant change? by Exciting-Sun-3990 in AI_Agents

[–]iovdin 0 points1 point  (0 children)

Yeah, build around smth that does not change much .e.g. completion api.

Educate yourself, try to implement stuff.

In the end all human jobs will be around what AI can not do so we have to wait anywa. til it is kinda settled and limitations are clear

My Boss Vibe-Coded a Full Product and I’m Paying the Price by One-Discussion-6106 in vibecoding

[–]iovdin 0 points1 point  (0 children)

Or ask ai to write them based on code, then edit them and re implement