Tag: 에이전트
All the articles with the tag "에이전트".
-
LangGraph Study Log #2 — Extending State + Dynamic System Prompts + Chatbot (and the Truth Behind 'AI Remembers')
I extended State beyond just messages to include user name, tool call count, and session start time, then used that State to dynamically build the system prompt. Along the way, building a chatbot led me to the real revelation of the day: what 'memory' actually is.
-
LangGraph Study Log #1 — My First Graph + Why State Confused Me
Starting LangGraph, one of the study candidates I had noted down. Building nodes, edges, conditional branches, and loops with StateGraph was more intuitive than expected, but the term 'State' didn't click for a while. I finally settled on it by comparing it to a game character's inventory and HP.
-
Giving LLMs Tools — Claude Tool Use and the Agent Loop
LLMs don't know large-number arithmetic or today's weather. I tried out Tool Use, which patches that weakness with external function calls. Message flow, automatic multi-tool selection, and the agent loop.
-
Managing AI Sessions in Vibe Coding — How to Split Common vs. Specialized Instructions
A problem I ran into managing multiple Claude Code sessions like company departments: instruction management. I worked out how much should live in the common CLAUDE.md, and where the line is for splitting off specialized CLAUDE.md files in each working folder.