9148c358d0
Topic_Agent/Topic_Blog/Topics/Topics_Biz/Topics_Meeting/Topics_Rag의 마크다운 지식 문서를 Topic_General/Topic_Programming/Topic_Graphic/Topic_Business 4개 카테고리로 재분류. - 중복 제거: frontmatter의 status:duplicate/merged + duplicate_of/redirect_to 필드로 자기 자신을 중복으로 선언한 리다이렉트 stub 1032개 제거, 완전 동일 내용 파일 472개 제거, 동일 파일명·다른 내용 충돌 시 더 큰(완전한) 버전만 유지(162개 제거) — 총 1639개 중복 제거. - 분류: 폴더 단위로 명확한 항목(AI_and_ML/Coding/Architecture 등 → Programming, Comfyui/Visual_Effects → Graphic, Topics_Biz/Topics_Meeting/사업 등 → Business, Poetic_Blog_Writing/창의성/Game_Design 등 → General)은 폴더 우선순위로, 나머지 혼재 폴더(Topic_Agent/Topic_Blog/Topics 루트/Thinking & Reasoning/Other/UI_UX_Assets)는 title/tags 키워드 스코어링으로 파일 단위 분류(불명확한 경우 General로 폴백). 원본 폴더명은 "From_*" 서브폴더로 보존해 추적 가능성 유지. - 최종 배치: Programming 2784 / General 1608 / Graphic 285 / Business 249 = 4926개 문서. - 에이전트 운영 상태(.astra/.agent/.obsidian/sessions/memory/_company/docs/lessons/_shared/src)는 지식 콘텐츠가 아니므로 재분류 대상에서 제외하고 원위치 유지. - Topics/Topic_email(상위 보호 폴더 Topic_email과 파일명 100% 중복) 삭제 — 보호 폴더 자체는 미변경. - 완전히 비게 된 Topic_Agent/Topic_Blog/Topics_Biz/Topics_Rag 폴더 제거.
6.3 KiB
6.3 KiB
id, title, category, status, canonical_id, aliases, duplicate_of, source_trust_level, confidence_score, verification_status, tags, raw_sources, last_reinforced, github_commit, tech_stack
| id | title | category | status | canonical_id | aliases | duplicate_of | source_trust_level | confidence_score | verification_status | tags | raw_sources | last_reinforced | github_commit | tech_stack | |||||||||||
|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|
| wiki-2026-0508-tool-usage-optimization | Tool Usage Optimization | 10_Wiki/Topics | verified | self |
|
none | A | 0.9 | applied |
|
2026-05-10 | pending |
|
Tool Usage Optimization
매 한 줄
"매 LLM의 외부 capability 의 invoke". Tool use (function calling) 매 LLM 이 external API/code/DB 의 structured call 하는 패러다임. 2023 OpenAI function calling → 2024 parallel tools → 2025 MCP standard → 2026 매 every agent 의 backbone. 매 quality 매 tool 정의의 crisp / parallel call / error handling / cache strategy 에 의해 결정.
매 핵심
매 핵심 mechanics
- Schema — 매 JSON Schema 로 tool input 정의 — 매 model 이 fill.
- Choice —
auto/tool(forced) /none. - Parallel — 매 single turn 에 multiple tool calls (Claude / GPT-4o+).
- Iterative loop — 매 tool result 의 feed back → continue → repeat.
매 design principles
- Crisp descriptions — 매 tool description 매 "use this when X, not when Y" 명시.
- Few well-named tools > 매 many overlapping — 매 selection error rate 의 reduce.
- Idempotent / safe — 매 retry-safe — 매 LLM 매 retry 함.
- Structured errors — 매 tool error 매 LLM 이 recover 할 수 있게 actionable.
매 modern (2025-2026)
- MCP (Model Context Protocol) — 매 Anthropic 이 2024-11 release. 매 client/server tool sharing standard. 매 Claude Desktop, Cursor, Windsurf 모두 support.
- Tool result caching — 매 expensive tool (DB query, web fetch) 매 cache + hash check.
- Tool budget — 매 agent 의 max-call limit 의 prevent runaway.
매 응용
- Code agents (file ops, shell, search).
- Customer support (ticket, KB, account API).
- Data analysis (SQL, plot, fetch).
💻 패턴
Anthropic tool definition
tools = [{
"name": "get_weather",
"description": "Get current weather. Use ONLY for weather; do not use for forecasts beyond 24h.",
"input_schema": {
"type": "object",
"properties": {
"location": {"type": "string", "description": "City, country (e.g. 'Seoul, KR')"},
"unit": {"type": "string", "enum": ["c", "f"], "default": "c"},
},
"required": ["location"],
},
}]
resp = client.messages.create(
model="claude-opus-4-7",
max_tokens=2000,
tools=tools,
messages=[{"role": "user", "content": "Weather in Seoul?"}],
)
Parallel tool execution
import asyncio
async def run_tool(call):
return await TOOLS[call.name](**call.input)
# 매 LLM이 매 multiple tool_use blocks 의 emit
calls = [b for b in resp.content if b.type == "tool_use"]
results = await asyncio.gather(*(run_tool(c) for c in calls))
# 매 모든 result 의 single user message 로 feed back
Tool loop (agentic)
messages = [{"role": "user", "content": user_query}]
for _ in range(MAX_TURNS):
resp = client.messages.create(model="claude-opus-4-7", tools=tools, messages=messages)
messages.append({"role": "assistant", "content": resp.content})
if resp.stop_reason != "tool_use":
break
tool_results = [
{"type": "tool_result", "tool_use_id": b.id,
"content": str(TOOLS[b.name](**b.input))}
for b in resp.content if b.type == "tool_use"
]
messages.append({"role": "user", "content": tool_results})
Structured error
def search_db(query: str):
try:
return {"ok": True, "rows": db.execute(query).fetchall()}
except SQLError as e:
return {"ok": False, "error": str(e),
"hint": "Check column names; use `\\d table` to inspect."}
Result caching
import hashlib, json, functools
@functools.lru_cache(maxsize=1024)
def _cached_fetch(url_hash: str, url: str):
return requests.get(url, timeout=10).text
def web_fetch(url: str):
return _cached_fetch(hashlib.sha256(url.encode()).hexdigest(), url)
Prompt cache + tools (Anthropic)
resp = client.messages.create(
model="claude-opus-4-7",
tools=tools, # 매 tools 의 cacheable
system=[{"type": "text", "text": SYSTEM, "cache_control": {"type": "ephemeral"}}],
messages=messages,
)
MCP server (Python)
from mcp.server.fastmcp import FastMCP
mcp = FastMCP("my-tools")
@mcp.tool()
def query_orders(customer_id: str) -> list[dict]:
"""Return recent orders for a customer."""
return db.fetch_orders(customer_id)
if __name__ == "__main__":
mcp.run()
매 결정 기준
| 상황 | Approach |
|---|---|
| Few tools, in-app | Direct SDK tools |
| Many shared tools across apps | MCP server |
| Latency-critical | Pre-fetch / parallel tools |
| Expensive tools | Cache by input hash |
| Untrusted LLM output | Validate + sandbox tool exec |
| Long agent loop | Tool budget + checkpoint |
기본값: 매 5-15 well-named tools, parallel calling enabled, structured errors, prompt caching on system + tool definitions.
🔗 Graph
- 변형: Function-Calling · MCP · ReAct
- 응용: Code-Agent
- Adjacent: RAG · Structured-Output
🤖 LLM 활용
언제: 매 external state / capability 의 필요한 모든 LLM app — search, DB, email, code exec, API call. 언제 X: 매 pure text generation (summary, translate) — 매 tool 매 unnecessary.
❌ 안티패턴
- Vague tool names:
"do_thing"— 매 LLM 매 selection 의 fail. - Too many tools: 매 30+ tool 매 confuse — 매 group / route.
- No retry on transient error: 매 502 / timeout 매 transient — 매 retry-safe + LLM 의 hint.
- Streaming tool output to user mid-call: 매 tool result 매 internal — final assistant text 만 user 에.
- No max-turn limit: 매 infinite loop 의 risk.
🧪 검증 / 중복
- Verified (Anthropic tool use docs, OpenAI function calling, MCP spec 2024-11, parallel tool calling).
- 신뢰도 A.
🕓 Changelog
| 날짜 | 변경 |
|---|---|
| 2026-05-08 | Phase 1 |
| 2026-05-10 | Manual cleanup — modern tool use + MCP + caching patterns |