HackerTrans
トップ新着トレンドコメント過去質問紹介求人

mathis-l

22 カルマ登録 3 年前

投稿

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

blueguardrails.com
1 ポイント·投稿者 mathis-l·4 日前·1 コメント

Improving knowledge graph creation in life sciences through agent steering

blueguardrails.com
3 ポイント·投稿者 mathis-l·先月·0 コメント

PlaceboBench: An LLM hallucination benchmark for pharma

blueguardrails.com
1 ポイント·投稿者 mathis-l·5 か月前·0 コメント

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

timdettmers.com
2 ポイント·投稿者 mathis-l·6 か月前·0 コメント

コメント

mathis-l
·3 か月前·議論
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
·4 か月前·議論
Dspy handling it openly https://github.com/stanfordnlp/dspy/issues/9500
mathis-l
·4 か月前·議論
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
·6 か月前·議論
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.