HackerTrans
TopNewTrendsCommentsPastAskShowJobs

mathis-l

22 karmajoined vor 3 Jahren

Submissions

Open source OCR with vision language models: High throughput and low cost

blueguardrails.com
1 points·by mathis-l·vor 4 Tagen·1 comments

Improving knowledge graph creation in life sciences through agent steering

blueguardrails.com
3 points·by mathis-l·letzten Monat·0 comments

PlaceboBench: An LLM hallucination benchmark for pharma

blueguardrails.com
1 points·by mathis-l·vor 5 Monaten·0 comments

Use Agents or Be Left Behind? A Personal Guide to Automating Your Own Work

timdettmers.com
2 points·by mathis-l·vor 6 Monaten·0 comments

comments

mathis-l
·vor 3 Monaten·discuss
At least when working with local MCP servers I solved this problem by wrapping the mcp tools inside an in-memory cache/store. Each tool output gets stored under a unique id and the id is returned with the tool output. The agent can then invoke other tools by passing the id instead of generating all the input. Adding attribute access made this pretty powerful (e.g. pass content under tool_return_xyz.some.data to tool A as parameter b). This saves token costs and is a lot faster. Granted, it only works for passing values between tools but I could imagine an additional tool to pipe stuff into the storage layer would solve this.
mathis-l
·vor 4 Monaten·discuss
Dspy handling it openly https://github.com/stanfordnlp/dspy/issues/9500
mathis-l
·vor 4 Monaten·discuss
CrewAI (uses litellm) pinned it to 1.82.6 (last good version) 5 hours ago but the commit message does not say anything about a potential compromise. This seems weird. Is it a coincidence? Shouldn’t users be warned about a potential compromise?

https://github.com/crewAIInc/crewAI/commit/8d1edd5d65c462c3d...
mathis-l
·vor 6 Monaten·discuss
I’ve worked on a code base that was about 15 years old and had gone through many team changes. It was a tricky domain with lots of complicated business logic. When making changes to the code, the commit history was often the only way to figure out if certain behavior was intended and why it was implemented this way. Documentation about how the product should behave often lacked the level of detail. I was certainly always thankful when a dev that was long gone from the team had written commit messages that communicated the intent behind a change.