From 845c894ffe67ca845063871d540aebcae5964f1e Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?=D0=A0=D0=B8=D0=BD=D0=B0=D1=80=20=D0=9C=D0=B8=D1=80=D0=B7?= =?UTF-8?q?=D0=B0=D0=B3=D0=B8=D1=82=D0=BE=D0=B2?= Date: Tue, 16 Jun 2026 13:12:34 +0000 Subject: [PATCH] Build ChromaDB + Tavily RAG agent with Ollama embeddings, local/web tools, create_agent routing, and CLI ingest flow.: add documents/langgraph_notes.md --- documents/langgraph_notes.md | 7 +++++++ 1 file changed, 7 insertions(+) create mode 100644 documents/langgraph_notes.md diff --git a/documents/langgraph_notes.md b/documents/langgraph_notes.md new file mode 100644 index 0000000..8c83648 --- /dev/null +++ b/documents/langgraph_notes.md @@ -0,0 +1,7 @@ +# LangGraph notes + +LangGraph is a framework for building stateful AI workflows and agents. + +It is useful when you need explicit control over nodes, edges, checkpoints, retries, and human-in-the-loop steps. + +A graph can route execution between tools, reflection steps, and validation steps.