rising3월 15일· 2 sources
I gave an LLM 248 tools and accuracy dropped to 12%. Here's what fixed it.
LLM에 248개 도구를 제공했더니 정확도가 12%로 떨어졌다 — 해결 방법은 이것이었다
Why it matters
When exposing 248 Kubernetes API endpoints as tools to an LLM agent, accuracy dropped to 12% due to context overflow. Vector search failed because it finds individual tools but misses multi-step workflows. The author built graph-tool-call, a zero-dependency Python library that models tool relationships as a directed graph and uses weighted Reciprocal Rank Fusion to retrieve complete tool chains, restoring high accuracy and cutting token usage by 64–91%.
2
Sources
+0
24h
—
Growth
190d
Active
bm25graph-based searchgraph-tool-callkubernetesllm agentsmcpreciprocal rank fusiontool retrievalvector search