• maiweb v0.1.0
  • ★
  • Feedback

Tech With Tim

active · last success 2026-08-04 13:57

Visit site ↗ · Feed ↗

  • Tech With Tim youtube.com channel programming tutorial video youtube 2026-07-31 12:00

    ↗

    How do AI agents actually use tools like web search? The model can't magically go online, it can only predict text. So when it wants to search, it outputs a structured message that looks like code, saying it wants to use the search tool. The code running the model (the agent...

    ▶ Watch on YouTube Opens in a new tab
    How do AI agents actually use tools like web search? The model can't magically go online, it can only predict text. So when it wants to search, it outputs a structured message that looks like code, saying it wants to use the search tool. The code running the model (the agent harness) sees that, runs the tool, gets the result, and hands it back to the model to process. That handoff (model decides, harness executes) is the whole way AI agents work at scale. #techwithtim #ai #aiengineer
    • Scaling real-time AI agents with session-aware load balancing Google Developers Blog
    • Building scalable AI agents with modular prompt transpilation Google Developers Blog
    • Measuring the Tendency of AI Agents to Go Rogue Schneier on Security
    • Scaling real-time AI agents with session-aware load balancing Google Developers Blog
    • Building scalable AI agents with modular prompt transpilation Google Developers Blog
    • Stanford CS329A Self-Improving AI Agents | Part 4 | Learning from Feedback with Tools/Code stanfordonline
    • Stanford CS329A Self-Improving AI Agents | Part 1 | Course Overview stanfordonline
    • Stanford CS329A Self-Improving AI Agents | Part 2 | Test-Time Compute Scaling stanfordonline
    • Stanford CS329A Self-Improving AI Agents | Part 3 | Robust Verification stanfordonline
    • Stanford CS329A Self-Improving AI Agents | Part 6 | Train Time Scaling/Scaling RL stanfordonline
    • Stanford CS329A Self-Improving AI Agents | Part 7 | Self-Improvement and Deep Research Agents stanfordonline
    • Stanford CS329A Self-Improving AI Agents | Part 5 | Planning and Multi-Step Reasoning stanfordonline
    • Stanford CS329A Self-Improving AI Agents | Part 9 | Future Research Areas stanfordonline
    • Stanford CS329A Self-Improving AI Agents | Part 8 | Agentic Evaluations and Long Horizon Tasks stanfordonline
    • AI Agents: Narrow AI vs. LLMs - Which is BEST for YOU? #shorts How to Get an Analytics Job
    • Building AI Agents With Microsoft WorkIQ Krish Naik
    • Building Ai agents With Microsoft Foundry- Build ,Govern AI Apps And Agents at Scale Krish Naik
    • AI Agents Explained Tina Huang
    • From tokenmaxxing to tokenomics for your AI agents Google Cloud Tech
    • AI Agents: The Models Are Ready. The Systems Aren't with Scott Askinosie Open Data Science
    • AI Agents: The Models Are Ready. The Systems Aren't with Scott Askinosie Open Data Science
    • Framer AI Agents with Fable 5 are Sick! DesignCourse
    • OpenAI AI Agents Hacking Incident Gets Worse - Sam Altman is Dangerous Eli the Computer Guy
    • Google DeepMind on AI Agents, Coding & The Future of Developers MTECHVIRAL
    • How AI Agents Remember Long Term Vector Databases + RAG Tech With Tim
    • How Do AI Agents Remember It's Not What You Think Tech With Tim
  • Tech With Tim youtube.com channel programming tutorial video youtube 2026-08-01 12:00

    ↗

    Do AI models actually have memory? No. On their own they store nothing, so ask a follow-up and the model forgets what you said unless it's inside the context. So how does an agent stay coherent across multiple steps? You feed the whole conversation back in. Every single turn,...

    ▶ Watch on YouTube Opens in a new tab
    Do AI models actually have memory? No. On their own they store nothing, so ask a follow-up and the model forgets what you said unless it's inside the context. So how does an agent stay coherent across multiple steps? You feed the whole conversation back in. Every single turn, the entire history gets sent into the context window again. The model isn't remembering; it's rereading everything that happened, every time. #techwithtim #ai #aiengineer
    • Scaling real-time AI agents with session-aware load balancing Google Developers Blog
    • Building scalable AI agents with modular prompt transpilation Google Developers Blog
    • Measuring the Tendency of AI Agents to Go Rogue Schneier on Security
    • Scaling real-time AI agents with session-aware load balancing Google Developers Blog
    • Building scalable AI agents with modular prompt transpilation Google Developers Blog
    • Stanford CS329A Self-Improving AI Agents | Part 4 | Learning from Feedback with Tools/Code stanfordonline
    • Stanford CS329A Self-Improving AI Agents | Part 1 | Course Overview stanfordonline
    • Stanford CS329A Self-Improving AI Agents | Part 2 | Test-Time Compute Scaling stanfordonline
    • Stanford CS329A Self-Improving AI Agents | Part 3 | Robust Verification stanfordonline
    • Stanford CS329A Self-Improving AI Agents | Part 6 | Train Time Scaling/Scaling RL stanfordonline
    • Stanford CS329A Self-Improving AI Agents | Part 7 | Self-Improvement and Deep Research Agents stanfordonline
    • Stanford CS329A Self-Improving AI Agents | Part 5 | Planning and Multi-Step Reasoning stanfordonline
    • Stanford CS329A Self-Improving AI Agents | Part 9 | Future Research Areas stanfordonline
    • Stanford CS329A Self-Improving AI Agents | Part 8 | Agentic Evaluations and Long Horizon Tasks stanfordonline
    • AI Agents: Narrow AI vs. LLMs - Which is BEST for YOU? #shorts How to Get an Analytics Job
    • Building AI Agents With Microsoft WorkIQ Krish Naik
    • Building Ai agents With Microsoft Foundry- Build ,Govern AI Apps And Agents at Scale Krish Naik
    • AI Agents Explained Tina Huang
    • From tokenmaxxing to tokenomics for your AI agents Google Cloud Tech
    • AI Agents: The Models Are Ready. The Systems Aren't with Scott Askinosie Open Data Science
    • AI Agents: The Models Are Ready. The Systems Aren't with Scott Askinosie Open Data Science
    • Framer AI Agents with Fable 5 are Sick! DesignCourse
    • OpenAI AI Agents Hacking Incident Gets Worse - Sam Altman is Dangerous Eli the Computer Guy
    • Google DeepMind on AI Agents, Coding & The Future of Developers MTECHVIRAL
    • How AI Agents Remember Long Term Vector Databases + RAG Tech With Tim
    • How AI Agents Use Tools The Harness Explained Tech With Tim
  • Tech With Tim youtube.com channel programming tutorial video youtube 2026-08-02 12:00

    ↗

    How do AI agents get long-term memory or access to your documents? A vector database. The short version: you convert your data into embeddings (numerical representations of meaning), store them, then give the agent a search tool so it pulls only the relevant information for...

    ▶ Watch on YouTube Opens in a new tab
    How do AI agents get long-term memory or access to your documents? A vector database. The short version: you convert your data into embeddings (numerical representations of meaning), store them, then give the agent a search tool so it pulls only the relevant information for whatever you're asking. This pattern is called RAG (retrieval augmented generation), and it's how agents answer questions about documents and remember long-term facts even when the context window is full of the current conversation. #techwithtim #ai #aiengineer
    • Scaling real-time AI agents with session-aware load balancing Google Developers Blog
    • Building scalable AI agents with modular prompt transpilation Google Developers Blog
    • Measuring the Tendency of AI Agents to Go Rogue Schneier on Security
    • Scaling real-time AI agents with session-aware load balancing Google Developers Blog
    • Building scalable AI agents with modular prompt transpilation Google Developers Blog
    • Stanford CS329A Self-Improving AI Agents | Part 4 | Learning from Feedback with Tools/Code stanfordonline
    • Stanford CS329A Self-Improving AI Agents | Part 1 | Course Overview stanfordonline
    • Stanford CS329A Self-Improving AI Agents | Part 2 | Test-Time Compute Scaling stanfordonline
    • Stanford CS329A Self-Improving AI Agents | Part 3 | Robust Verification stanfordonline
    • Stanford CS329A Self-Improving AI Agents | Part 6 | Train Time Scaling/Scaling RL stanfordonline
    • Stanford CS329A Self-Improving AI Agents | Part 7 | Self-Improvement and Deep Research Agents stanfordonline
    • Stanford CS329A Self-Improving AI Agents | Part 5 | Planning and Multi-Step Reasoning stanfordonline
    • Stanford CS329A Self-Improving AI Agents | Part 9 | Future Research Areas stanfordonline
    • Stanford CS329A Self-Improving AI Agents | Part 8 | Agentic Evaluations and Long Horizon Tasks stanfordonline
    • AI Agents: Narrow AI vs. LLMs - Which is BEST for YOU? #shorts How to Get an Analytics Job
    • Building AI Agents With Microsoft WorkIQ Krish Naik
    • Building Ai agents With Microsoft Foundry- Build ,Govern AI Apps And Agents at Scale Krish Naik
    • AI Agents Explained Tina Huang
    • From tokenmaxxing to tokenomics for your AI agents Google Cloud Tech
    • AI Agents: The Models Are Ready. The Systems Aren't with Scott Askinosie Open Data Science
    • AI Agents: The Models Are Ready. The Systems Aren't with Scott Askinosie Open Data Science
    • Framer AI Agents with Fable 5 are Sick! DesignCourse
    • OpenAI AI Agents Hacking Incident Gets Worse - Sam Altman is Dangerous Eli the Computer Guy
    • Google DeepMind on AI Agents, Coding & The Future of Developers MTECHVIRAL
    • How Do AI Agents Remember It's Not What You Think Tech With Tim
    • How AI Agents Use Tools The Harness Explained Tech With Tim
  • Tech With Tim youtube.com channel programming tutorial video youtube 2026-08-04 12:00

    ↗

    This agent worked while I slept. Literally week one of what we teach inside AI Agent Builders, free. Link in the description and pinned comment.

    ▶ Watch on YouTube Opens in a new tab
    This agent worked while I slept. Literally week one of what we teach inside AI Agent Builders, free. Link in the description and pinned comment.
    • Towards an AI for Africa Aeon
    • Everyone asks me what tech stack I’d recommend for building an AI startup. Kevin Naughton Jr.
    • I Made an AI Invent a Real Product. Then Alibaba.com Manufactured It Siraj Raval
    • An AI Promised to Make Me $1,000 in 24 Hours (Accio Work) Siraj Raval
    • Before Fine-Tuning an AI Model, You Need This First AngelSix
    • Did an AI Really Hack Hugging Face? LiveOverflow
  • End of feed
Maibook — your private personalized AI community
  • rcanand.com
  • mlaillc.com
  • @rcanand (X)
  • LinkedIn
  • Feedback
  • Credits