✕ Clear all filters
28 articles
▶ Videos →

📰 Dev.to · Syeed Talha

28 articles · Updated every 3 hours · View all reads

All Articles 179,646Blog Posts 165,056Tech Tutorials 48,001Research Papers 35,680News 22,475 ⚡ AI Lessons
Build a Thread-Scoped AI Data Science Sandbox with Daytona and Deep Agents
Dev.to · Syeed Talha 💻 AI-Assisted Coding ⚡ AI Lesson 1mo ago
Build a Thread-Scoped AI Data Science Sandbox with Daytona and Deep Agents
AI coding agents can write files, install Python packages, run scripts, and create charts. But where...
Deep Agents Filesystem Permissions: A Beginner-Friendly Guide with 3 Python Examples
Dev.to · Syeed Talha 🤖 AI Agents & Automation ⚡ AI Lesson 1mo ago
Deep Agents Filesystem Permissions: A Beginner-Friendly Guide with 3 Python Examples
Learn how to limit a Deep Agents filesystem access with allow, deny, interrupt, and subagent permission rules.
Deep Agents LocalShellBackend Tutorial Real Files and Host Shell Execution
Dev.to · Syeed Talha 🤖 AI Agents & Automation ⚡ AI Lesson 1mo ago
Deep Agents LocalShellBackend Tutorial Real Files and Host Shell Execution
AI agents become much more useful when they can do more than generate text. For example, an agent...
Understanding FilesystemBackend in LangChain's Deep Agents
Dev.to · Syeed Talha 🤖 AI Agents & Automation ⚡ AI Lesson 1mo ago
Understanding FilesystemBackend in LangChain's Deep Agents
In a previous example, we used StateBackend, where files belonged to a specific LangGraph...
Understanding StateBackend in LangChain's Deep Agents
Dev.to · Syeed Talha 🤖 AI Agents & Automation ⚡ AI Lesson 1mo ago
Understanding StateBackend in LangChain's Deep Agents
When building an AI agent, you may want it to create a file in one conversation turn and use that...
Understanding Interpreters in LangChain Deep Agents
Dev.to · Syeed Talha 🧠 Large Language Models ⚡ AI Lesson 1mo ago
Understanding Interpreters in LangChain Deep Agents
If you've built even a basic agent, you know the rhythm. Model wants to do something, it calls a...
Understanding Middleware in Deep Agents (With Runnable Examples)
Dev.to · Syeed Talha 🤖 AI Agents & Automation ⚡ AI Lesson 1mo ago
Understanding Middleware in Deep Agents (With Runnable Examples)
If you've built even a simple AI agent, you've probably noticed that the "agent loop" itself is...
Model Context Protocol (MCP) for AI Agents: Why It Matters and What Changes Without It
Dev.to · Syeed Talha 🤖 AI Agents & Automation ⚡ AI Lesson 1mo ago
Model Context Protocol (MCP) for AI Agents: Why It Matters and What Changes Without It
AI agents are becoming more capable than simple chatbots. An agent can search the web, read files,...
Hybrid RAG in LangChain
Dev.to · Syeed Talha 🧠 Large Language Models ⚡ AI Lesson 1mo ago
Hybrid RAG in LangChain
The two RAG approaches we've covered so far both have a silent assumption baked in — that the first...
Agentic RAG in LangChain
Dev.to · Syeed Talha 🧠 Large Language Models ⚡ AI Lesson 1mo ago
Agentic RAG in LangChain
In the previous post, we built a 2-step RAG system where retrieval always happens — no matter what...
Understanding "Router" in LangChain(Sending Queries to the Right Specialist)
Dev.to · Syeed Talha 🤖 AI Agents & Automation ⚡ AI Lesson 2mo ago
Understanding "Router" in LangChain(Sending Queries to the Right Specialist)
In the last two posts, we looked at patterns where a single agent changes its own behavior — either...
Understanding "Skills" in LangChain: Loading Expertise On-Demand
Dev.to · Syeed Talha 🧠 Large Language Models ⚡ AI Lesson 2mo ago
Understanding "Skills" in LangChain: Loading Expertise On-Demand
Here's a problem every agent builder eventually runs into: your assistant needs to be good at a lot...
How to Inject Hidden Runtime Context into AI Agent Tools (LangChain + LangGraph)
Dev.to · Syeed Talha 🤖 AI Agents & Automation ⚡ AI Lesson 3mo ago
How to Inject Hidden Runtime Context into AI Agent Tools (LangChain + LangGraph)
When you build a multi-tenant AI agent — one that serves multiple users across multiple companies —...
How to Build a Human-in-the-Loop AI Agent with LangChain & LangGraph
Dev.to · Syeed Talha 🧠 Large Language Models ⚡ AI Lesson 3mo ago
How to Build a Human-in-the-Loop AI Agent with LangChain & LangGraph
AI agents are powerful — but sometimes too powerful. What if your agent is about to send an email on...
Running Nvidia Nemotron on LangChain via OpenRouter
Dev.to · Syeed Talha 🧠 Large Language Models ⚡ AI Lesson 4mo ago
Running Nvidia Nemotron on LangChain via OpenRouter
Nvidia's Nemotron models are powerful, free-to-use AI models available through OpenRouter. In this...
Using Groq API with OpenAI Agents SDK
Dev.to · Syeed Talha 🤖 AI Agents & Automation ⚡ AI Lesson 4mo ago
Using Groq API with OpenAI Agents SDK
If you have tried using the OpenAI Agents SDK with Groq and ran into confusing import errors or...
Multithreading in Rust (Beginner Guide )
Dev.to · Syeed Talha 🔧 Backend Engineering ⚡ AI Lesson 4mo ago
Multithreading in Rust (Beginner Guide )
When beginners first hear the word “multithreading”, it often sounds scary and complicated. But the...
Understanding the match Keyword in Rust with Examples
Dev.to · Syeed Talha 💻 AI-Assisted Coding ⚡ AI Lesson 4mo ago
Understanding the match Keyword in Rust with Examples
If you've ever written a long if/else chain and thought "there must be a cleaner way" — match is...
JWT Auth Middleware in Axum 0.8 — A Beginner's Guide
Dev.to · Syeed Talha 🔧 Backend Engineering ⚡ AI Lesson 4mo ago
JWT Auth Middleware in Axum 0.8 — A Beginner's Guide
If you've ever built a web API, you've probably asked yourself: "How do I make sure only the right...
Axum Middleware Explained for Absolute Beginners (With Full Code)
Dev.to · Syeed Talha 🔧 Backend Engineering ⚡ AI Lesson 4mo ago
Axum Middleware Explained for Absolute Beginners (With Full Code)
Middleware in Axum often looks scary—not because it’s hard, but because the code syntax feels...