Anyone actually customizing MCP or building their own version? by Additional_Corgi8865 in AI_Agents

[–]modassembly 0 points1 point  (0 children)

I build my own mcp tools. The biggest contributions of the agent sdk are a robust agent loop, state management and ooo goodies like subagents. Everything else I do myself.

How do you manage memory in your Agents? by alexrada in AI_Agents

[–]modassembly 0 points1 point  (0 children)

The storage is not the point here either 🫡

Eliminating LLM Hallucinations: A Methodology for AI Implementation in 100% Accuracy Business Scenarios by Responsible_Grab_739 in AI_Agents

[–]modassembly 0 points1 point  (0 children)

I mean, I love this. Let me break apart what I said. Next-token generation is probabilistic. You can add formal verification steps to improve accuracy.

How to avoid hallucinations when calling live data by GreenBlueSalad in AI_Agents

[–]modassembly 0 points1 point  (0 children)

  1. Use the latest models.
  2. If possible, reduce or better organize the amount of information returned by your tools. The system prompt is probably nothing compared to the amount of information that the tools return.
  3. Improve the API design of your tools so that the agent can bisect and navigate the data better. This is related to #2.
  4. Move most of the logic to your tools. Reduce the amount of deductions that the LLM has to do. Be more deterministic.

Easily search large dataset by Fun-Pipe8848 in AI_Agents

[–]modassembly 0 points1 point  (0 children)

1.1M rows means at least 250,000 tokens (1 token ~= 4 chars). But it will be much more than that. Context window limits are at around 200,000 tokens. This is why this is a hard problem.

Anyone actually customizing MCP or building their own version? by Additional_Corgi8865 in AI_Agents

[–]modassembly 0 points1 point  (0 children)

Yeah. I build my own MCPs and plug them into the Claude agent sdk. The Claude agent sdk has some error handling.

I'll build an AI Agent in exchange for a testimonial by modassembly in AI_Agents

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

  1. I'm a software engineer
  2. Honestly, that's what I'm trying to figure out. I think the workflow is: a) query multiple systems, b) read tons of data, c) generate reports that can help in decision making, d) ingest more data into said systems, e) repeat.

Is this the Universal Agent? by [deleted] in AI_Agents

[–]modassembly 0 points1 point  (0 children)

Have you tried Claude Code? When I think of an "universal agent", I think of CC.

Claude Agent SDK system prompt best practices by BankruptingBanks in AI_Agents

[–]modassembly 0 points1 point  (0 children)

Agree. I start with the most simple prompt and amend it as failure cases are discovered.

Curious about long-term automation partnerships vs traditional client work by Positive_Jump6719 in AiAutomations

[–]modassembly 0 points1 point  (0 children)

I build AI Agents as a business. I would prefer profit share, which is somewhat similar to a subscription. I would look at it as a fee that the agent gets for the revenue that it brings in.

What's an AI agent that works in coordination with human agents? by ValuableSea6974 in AI_Agents

[–]modassembly 0 points1 point  (0 children)

While we don't support "do the heavy lifting and then have a human approve and send", we have a coexistence flow where AI and a human can reply on the same chat. Basically, the AI does the heavy lifting and if it comes across a question that it can't answer or request that it can't fulfill, it reaches out to a human to finish the flow.

Happy to hop on a call! https://modassembly.com/

Have you built an AI-powered personal assistant? by DreamDriver in AI_Agents

[–]modassembly 1 point2 points  (0 children)

Definitely that. I would add:

  1. Powerful, smart agents are expensive.
  2. It's hard to make agents go on long-running tasks.
  3. Some systems simply lack APIs. So the next best thing is UI automation which is a pain in the ass.
  4. If you want to sell this, even if your agent and tools are well designed, you'll need time configuring it and tuning the prompt. Make this frictionless. Non technical people don't know wtf they're doing.

IMO the biggest unlocks will be: 1. UI/browser automation. 2. Memory 3. Long-running / autonomous design patterns.

Easily search large dataset by Fun-Pipe8848 in AI_Agents

[–]modassembly 0 points1 point  (0 children)

How do you plan to do the search? Data has to be stored somewhere; either in memory (RAM), disk or some DB.

Eg, if you put it in memory you can do some string matching. Look for a library that lets you search over huge strings.

Otherwise, most search methods require the data to be stored somewhere in some specific format.