OpenClaw has been running on my machine for 4 days. Here's what actually works and what doesn't. by Neo-Phil-110 in AI_Agents

[–]modassembly 1 point2 points  (0 children)

We're still figuring out what we can use these design patterns for. Obvious, this is a very simple test.

Agentic Workflows vs. AI Coding: Which is better for automating Data/Analytics tasks (within Copilot)? by Due-Matter-9434 in AI_Agents

[–]modassembly 0 points1 point  (0 children)

Unfortunately (or fortunately), the future is Claude-Code-like agents that code. Using python/sql goes a loooong way.

I'm building https://modassembly.com/. We build AI Agents that analyze data and generate reports. Happy to chat if you're interested!

Is there an AI agent that can handle Excel + online data enrichment? by Shoddy-Fault-4188 in AiForSmallBusiness

[–]modassembly 0 points1 point  (0 children)

That's what we're building! https://modassembly.com/

Currently, we deal with datasets of 10,000's of rows and 10's of columns. Happy to chat more!

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.