Skip to content
agent2agent
Nora Lin

Nora Lin

Senior AI Research Analyst & Technical Reviewer

Nora Lin is an AI research analyst with a Master's degree in Machine Learning from a leading European university. Her work spans agent evaluation, LLM reasoning benchmarks, and the safety implications of autonomous systems. Before joining agent2agent, Nora contributed to AI research projects examining how language models plan and execute multi-step tasks. She serves as the technical reviewer for agent2agent's guides, stress-testing every claim against current research and real-world deployments.

MSc in Machine LearningAI agent evaluation researcherLLM reasoning and safety analyst

Articles by Nora Lin

Building & Developing Agents

How to Build Your First AI Agent: A Step-by-Step Guide

You can build a working AI agent in an afternoon: install LangGraph, define a state schema, write two nodes (reason and act), attach a real tool like web search, wire the edges, and run the loop. This guide shows every step.

Nora Lin·10 min read
Building & Developing Agents

AI Agent Memory Systems: Short-Term, Long-Term, and Episodic Memory

Memory is the hardest part of agent design. In-context memory fills up fast; vector stores add retrieval latency; episodic logs prevent repeated mistakes. Getting these layers right is the difference between a 5-step demo and a 100-step production agent.

Nora Lin·7 min read
Building & Developing Agents

Tool Use in AI Agents: How Agents Interact with the Real World

Tools are how AI agents escape the text box and act in the world. The LLM reads a tool schema, outputs a structured function call, the runtime executes it, and the result feeds back as an observation. The quality of the schema — not the tool itself — determines whether the agent uses it correctly.

Nora Lin·7 min read
Agent Frameworks & Tools

Best AI Agent Frameworks in 2025: LangGraph, CrewAI, AutoGen Compared

LangGraph wins on control and debuggability. CrewAI wins on team abstractions. AutoGen wins on conversational multi-agent patterns. No single framework is best — the right choice depends on your task structure, team size, and tolerance for complexity.

Nora Lin·10 min read
Agent Frameworks & Tools

LangGraph Tutorial: Build a Stateful Agent in 30 Minutes

LangGraph makes agents explicit: nodes are functions, edges are routing logic, and state is a typed dict that persists across every step. In 30 minutes you can build a stateful research agent that searches the web and synthesizes a summary.

Nora Lin·8 min read
Multi-Agent Systems

How AI Agents Communicate: Protocols, Message Passing, and Shared State

AI agent communication design determines system cost, reliability, and debuggability as much as any individual agent's capability. The two fundamental approaches — message passing and shared state — each have distinct trade-offs, and most production systems use a hybrid.

Nora Lin·6 min read
Real-World Applications

AI Agents in Business Automation: 7 High-Impact Use Cases

AI agents handle the business workflows that RPA can't — the ones where inputs vary, exceptions are common, and judgment is required. The highest-impact use cases in 2025 include customer support triage, lead qualification, document processing, and competitive intelligence, each delivering measurable ROI when implemented with clear scope and human oversight.

Nora Lin·7 min read
Real-World Applications

AI Agent Security Risks: What You Must Know Before Deploying

AI agents introduce a novel attack surface that traditional application security doesn't cover. Prompt injection, privilege escalation through chained tool calls, and data exfiltration via seemingly benign outputs are all live risks in deployed agentic systems. Defense requires least-privilege tool design, human approval gates, and comprehensive audit logging.

Nora Lin·7 min read