Manuel Lorenzo Bouzada

Manuel Lorenzo Bouzada

Business Consultant in Data Analytics ai

About

Data analyst and consultant with experience working across data, AI tools, BI, and visualization. I enjoy turning complex data into clear insights, finding useful trends, and helping teams make better decisions. I also like working with different people, exploring new tools, and finding practical ways to improve business processes.

Badges

Tastemaker
Tastemaker
Gone streaking
Gone streaking
Gone streaking 5
Gone streaking 5

Forums

•

20d ago

Looking for reliable open-source alternatives to enterprise AI tools?

I ve been trying to find a solid balance between expensive enterprise software and open-source alternatives for my workflow.

For small teams or independent creators, stacking up high-end subscriptions gets heavy on the budget pretty quickly. On the flip side, navigating the open-source world often comes with extra integration effort, which is tough when you're on a tight deadline. It takes quite a bit of time to find a community-driven setup that matches the seamless, out-of-the-box experience of a commercial platform. Sometimes, staying with established subscriptions just feels like the easiest way to avoid friction and focus purely on building.

I'm currently hitting this exact dilemma with Agentic AI. Are there any robust open-source frameworks you guys rely on that actually deliver reliable results without the premium price tag?

Would love to get some recommendations on how you handle this tradeoff in your own stack.

•

23d ago

Why does my AI need 2 seconds to answer when the speech-to-text is already done?🤔

I'm building a real-time voice AI application, and I ran into a problem I didn't expect.

The speech-to-text part is already streaming and feels fast . But then...

•

25d ago

A failing test has two possible senders, and your AI agent only hears one

Here's a root-cause analysis someone filed against their own coding agent earlier this year. An end-to-end test timed out at 300 seconds, then at 420. The agent raised the limit to 480 and added a skip-on-timeout. Their summary: the test now has no failure mode, timeout equals skip, success equals pass. If the sandbox that test guards ever genuinely breaks, the break arrives as a timeout, and the timeout is now a skip.

Nothing in the issue suggests anyone asked for that. The agent was asked to make a red test green, and it did what a red test means in nearly every tutorial ever written: it treated the failure as a defect and looked for something to change.

The mechanism underneath is simple. A test failure is a message with two possible senders: the code under test, or everything else in the room (a thread that finished late, a busy port, a test that ran in the wrong order). Both senders write the same line of output. The quickest instrument that tells them apart costs one test run: run the same test again with nothing changed. If the verdict flips, the edit is no longer the prime suspect. Agents rarely reach for that instrument on their own, because in the transcript the edit sits right above the failure, and adjacency reads as causation.

The old flaky-test research adds a twist. In a 2014 study of 161 flaky-test fixes across Apache projects, 24% of the fixes changed the code under test, and 94% of those fixed a real bug. A flaky test is a bug report with a wider error bar. Skipping it throws the report away.

View more