Agentic

Agentic

249 bookmarks
Newest
Security planning for LLM-based applications
Security planning for LLM-based applications
This article discusses the Security planning for the sample Retail-mart application. It shows the architecture and data flow diagram of the example application.
·learn.microsoft.com·
Security planning for LLM-based applications
Local LangGraph Agents with Llama 3.1 + Ollama
Local LangGraph Agents with Llama 3.1 + Ollama
LangGraph is one of the most versatile Python libraries for building AI agents. We can combine LangChain's LangGraph with Ollama and Llama 3.1 to build highl...
·youtube.com·
Local LangGraph Agents with Llama 3.1 + Ollama
Memory for agents
Memory for agents
At Sequoia’s AI Ascent conference in March, I talked about three limitations for agents: planning, UX, and memory. Check out that talk here. In this post I will dive more into memory. See the previous post on planning here, and the previous posts on UX here, here, and here.
·blog.langchain.dev·
Memory for agents
🧠I wrote some thoughts on memory for agents!
🧠I wrote some thoughts on memory for agents!
We released a bunch of new functionality for memory in LangGraph, and in doing so we thought hard about what memory actually means, and was is useful today Some highlights 👇 🛃Memory is application specific The best memory today… — Harrison Chase (@hwchase17)
·x.com·
🧠I wrote some thoughts on memory for agents!
Floneum
Floneum
Floneum is a graph editor for local LLM workflows.
·floneum.com·
Floneum
Roadmaps
Roadmaps
Community driven roadmaps, articles and guides for developers to grow in their career.
·roadmap.sh·
Roadmaps
NirDiamant/GenAI_Agents: This repository provides tutorials and implementations for various Generative AI Agent techniques, from basic to advanced. It serves as a comprehensive guide for building intelligent, interactive AI systems.
NirDiamant/GenAI_Agents: This repository provides tutorials and implementations for various Generative AI Agent techniques, from basic to advanced. It serves as a comprehensive guide for building intelligent, interactive AI systems.
This repository provides tutorials and implementations for various Generative AI Agent techniques, from basic to advanced. It serves as a comprehensive guide for building intelligent, interactive A...
·github.com·
NirDiamant/GenAI_Agents: This repository provides tutorials and implementations for various Generative AI Agent techniques, from basic to advanced. It serves as a comprehensive guide for building intelligent, interactive AI systems.
Patterns for Building LLM-based Systems & Products
Patterns for Building LLM-based Systems & Products
Evals, RAG, fine-tuning, caching, guardrails, defensive UX, and collecting user feedback.
There are seven key patterns.
We can group metrics into two categories: context-dependent or context-free.
First, there’s poor correlation between these metrics and human judgments.
Second, these metrics often have poor adaptability to a wider variety of tasks.
Third, these metrics have poor reproducibility.
Building solid evals should be the starting point for any LLM-based system or product
we can start by collecting a set of task-specific evals
These evals will then guide prompt engineering, model selection, fine-tuning, and so on.
Eval Driven Development (EDD)
Rather than asking an LLM for a direct evaluation (via giving a score), try giving it a reference and asking for a comparison. This helps with reducing noise.
Dense vector retrieval serves as the non-parametric component while a pre-trained LLM acts as the parametric component.
When evaluating an ANN index, some factors to consider include:
Some popular techniques include:
To retrieve documents with low latency at scale, we use approximate nearest neighbors (ANN).
·eugeneyan.com·
Patterns for Building LLM-based Systems & Products