AI Dynamics

Global AI News Aggregator

About

TOOLS

  • Perplexity Launches AI Tax Preparation Tool, Pressures INTU and HRB
    Perplexity Launches AI Tax Preparation Tool, Pressures INTU and HRB

    Perplexity just launched Computer for Taxes, a tool that can help users draft federal tax returns, review prepared filings, and build tax workflows. Another sign AI is moving deeper into tax prep as $INTU is down 36% this year and $HRB is down 26%. Perplexity (@perplexity_ai) Perplexity Computer can now help prepare your federal tax return. Select “Navigate my taxes” on Computer to give it a shot. — https://nitter.net/perplexity_ai/status/2039740898830073889#m

    → View original post on X — @aravsrinivas, 2026-04-03 00:21 UTC

  • Outcome-first prompting changes AI results forever
    Outcome-first prompting changes AI results forever

    Most people will scroll past this article. The ones who read it will permanently change how they prompt every AI tool they use. Outcome-first prompting is the single shift that separates people getting generic answers from people getting finished deliverables. Same models.

    → View original post on X — @godofprompt

  • Running Gemma 4 with audio on Mac locally

    Anyone figured out a recipe to run Gemma 4 E2B or E4B against audio files locally on a Mac yet? Omar Sanseviero (@osanseviero) The 2 small ones also support audio understanding! Including ASR, speech to translated text, and more — https://nitter.net/osanseviero/status/2039789969154183548#m

    → View original post on X — @simonw, 2026-04-03 00:00 UTC

  • Pika Showcases Impressive Real-Time Video Chat Capability

    This is simply amazing demonstration of Pika's real time video chat. Appreciate it!

    → View original post on X — @pika_labs

  • Google Open-Sources Gemma 4 with Advanced Reasoning and Efficiency
    Google Open-Sources Gemma 4 with Advanced Reasoning and Efficiency

    Google just open-sourced Gemma 4. Unprecedented performance for advanced reasoning and agentic workflows, and big leap in efficiency on a parameter basis. Use it now in KerasHub. I recommend the JAX backend – best performance!

    → View original post on X — @learnopencv, 2026-04-02 23:19 UTC

  • AI Agents Are a Waste of Time

    AI Agents is a waste of time. AI Agents = LLM + Data + Tools + Web Codex / Claude Code = the same thing (CLI Agents = good at reading files and coding). Just use that. Best agent = markdown file and scripts running through the file structure. That’s it.

    → View original post on X — @godofprompt

  • Personal Knowledge Base for AI Agents: Research Paper Curation and Visualization

    Building a personal knowledge base for my agents is increasingly where I spend my time these days. Like @karpathy, I also use Obsidian for my MD vaults. What's different in my approach is that I curate research papers on a daily basis and have actually tuned a Skill for months to find high-signal, relevant papers. I was reviewing and curating papers manually for some time, but now it's all automated as it has gotten so good at capturing what I consider the best of the best. There are so many papers these days, so this is a big deal. You all get to benefit from that with the papers I feature in my timeline and on @dair_ai. The papers are indexed using @tobi qmd cli tool (all of it in markdown files along with useful metadata). So good for semantic search and surfacing insights, unlike anything out there. I am a visual person, so I then started to experiment with how to leverage this personal knowledge base of research papers inside my new interactive artifact generator (mcp tools inside my agent orchestrator system). The result is what you see in the clip. 100s of papers with all sorts of insights visualized. I keep track of research papers daily, so believe me when I tell you that this system is absolutely insane at surfacing insights. This is the result of months of tinkering on how to index research and leverage agent automations for wikification and robust documentation. But this is just the beginning. The visual artifact (which is interactive too) can be changed dynamically as I please. I can prompt my agent to throw any data at it. I can add different views to the data. Different interactions. I feel like this is the most personalized research system I have ever built and used, and it's not even close. The knowledge that the agents are able to surface from this basic setup is already extremely useful as I experiment with new agentic engineering concepts. I feel like this knowledge layer and the higher-level ones I am working on will allow me to maximize other automation tools like autoresearch. The research is only as good as the research questions. And the research questions are only as good as the insights the agents have access to. Where I am spending time now is on how to make this more actionable. I am obsessed about the search problem here. The automations, autoresearch, ralph research loop (I built one months ago) are easier to build but are only as good as what you feed them. Work in progress. More updates soon. Back to building. Andrej Karpathy (@karpathy) LLM Knowledge Bases Something I'm finding very useful recently: using LLMs to build personal knowledge bases for various topics of research interest. In this way, a large fraction of my recent token throughput is going less into manipulating code, and more into manipulating knowledge (stored as markdown and images). The latest LLMs are quite good at it. So: Data ingest: I index source documents (articles, papers, repos, datasets, images, etc.) into a raw/ directory, then I use an LLM to incrementally "compile" a wiki, which is just a collection of .md files in a directory structure. The wiki includes summaries of all the data in raw/, backlinks, and then it categorizes data into concepts, writes articles for them, and links them all. To convert web articles into .md files I like to use the Obsidian Web Clipper extension, and then I also use a hotkey to download all the related images to local so that my LLM can easily reference them. IDE: I use Obsidian as the IDE "frontend" where I can view the raw data, the the compiled wiki, and the derived visualizations. Important to note that the LLM writes and maintains all of the data of the wiki, I rarely touch it directly. I've played with a few Obsidian plugins to render and view data in other ways (e.g. Marp for slides). Q&A: Where things get interesting is that once your wiki is big enough (e.g. mine on some recent research is ~100 articles and ~400K words), you can ask your LLM agent all kinds of complex questions against the wiki, and it will go off, research the answers, etc. I thought I had to reach for fancy RAG, but the LLM has been pretty good about auto-maintaining index files and brief summaries of all the documents and it reads all the important related data fairly easily at this ~small scale. Output: Instead of getting answers in text/terminal, I like to have it render markdown files for me, or slide shows (Marp format), or matplotlib images, all of which I then view again in Obsidian. You can imagine many other visual output formats depending on the query. Often, I end up "filing" the outputs back into the wiki to enhance it for further queries. So my own explorations and queries always "add up" in the knowledge base. Linting: I've run some LLM "health checks" over the wiki to e.g. find inconsistent data, impute missing data (with web searchers), find interesting connections for new article candidates, etc., to incrementally clean up the wiki and enhance its overall data integrity. The LLMs are quite good at suggesting further questions to ask and look into. Extra tools: I find myself developing additional tools to process the data, e.g. I vibe coded a small and naive search engine over the wiki, which I both use directly (in a web ui), but more often I want to hand it off to an LLM via CLI as a tool for larger queries. Further explorations: As the repo grows, the natural desire is to also think about synthetic data generation + finetuning to have your LLM "know" the data in its weights instead of just context windows. TLDR: raw data from a given number of sources is collected, then compiled by an LLM into a .md wiki, then operated on by various CLIs by the LLM to do Q&A and to incrementally enhance the wiki, and all of it viewable in Obsidian. You rarely ever write or edit the wiki manually, it's the domain of the LLM. I think there is room here for an incredible new product instead of a hacky collection of scripts. — https://nitter.net/karpathy/status/2039805659525644595#m

    → View original post on X — @dair_ai, 2026-04-02 23:15 UTC

  • Block Launches Mesh-LLM, a Decentralized Peer-to-Peer AI System
    Block Launches Mesh-LLM, a Decentralized Peer-to-Peer AI System

    Block just open-sourced mesh-llm, a peer-to-peer system that lets anyone pool spare GPU compute to run large open-source AI models without relying on any cloud provider. If a model fits on your machine, it runs locally at full speed. If it doesn't, the system automatically splits it across multiple machines on the network. Dense models get split by layers. Mixture-of-experts models like DeepSeek and Qwen3 get split by experts. Zero configuration required. Discovery happens over Nostr. Nodes find each other through relays, score by region and VRAM, and self-organize. No central server coordinates anything. Weights are read from local files, never sent over the network. Dead nodes get replaced in 60 seconds. It exposes a standard OpenAI-compatible API on localhost, meaning any existing AI tool can plug in without modification. Block is building infrastructure for AI that doesn't route through OpenAI, Google, or Anthropic. Frontier-class open models running across a mesh of commodity hardware, discovered via Nostr, with no cloud dependency. That's the direction AI needs to go. [Translated from EN to English]

    → View original post on X — @whiteafrican, 2026-04-02 23:14 UTC

  • LangChain adds specific reviewer assignment to annotation queues

    we just added the ability to assign specific reviewers to an annotation queue. as building agents becomes more and more automated, human feedback being part of the loop will be as critical as ever.

    → View original post on X — @langchain, 2026-04-02 23:12 UTC

  • Knowledge Base System with Interactive Tools for Podcast Research

    Same, I have a similar setup. A mix of Obsidian, Cursor (for md), and vibe-coded web terminals as front-end. Since I do a podcast, the number/diversity of research interests is very large. But the knowledge-base approach has been working great. For answers, I often have it generate dynamic html (with js) that allows me to sort/filter data and to tinker with visualizations interactively. Another useful thing is I have the system generate a temporary focused mini-knowledge-base for a particular topic that I then load into an LLM for voice-mode interaction on a long 7-10 mile run. So it becomes an interactive podcast while I run, where I ask it questions and listen to the answers to learn more. Anyway, heading out for a run now, thanks for the write-up 👊

    → View original post on X — @lexfridman, 2026-04-02 23:06 UTC