Duh, a farm

Joined August 2025
here's my pitch: CLIs for DSPy use and optimize any coding agent with the power of DSPy. would appreciate any feedback on this idea from the @DSPyOSS peeps and especially @lateinteraction @MaximeRivest @a1zhang @LakshyAAAgrawal (links below)
6
5
60
To evaluate DRAMA-Bot and existing AI agents, we built DRAMA-Bench, a benchmark with 200 real-world analytical tasks derived from public reports and datasets. Tasks span claim verification and question answering over open-domain data. 6/8
1
1
1
We introduce DRAMA as a unified pipeline that integrates data collection, transformation, and analysis to support real-world, end-to-end data science workflows. 4/8
1
1
1
What would a passive monitor mult along with wired keyboard/mouse agent harness buy you
Farm retweeted
Your computer is a dataflow machine trying very hard to fit itself into a PDP-11 shaped box in order to make C compilers happy.
Awesome LLM Apps is about to cross 75,000 stars ๐Ÿคฏ If you are learning or building AI Agents, RAG, LLM apps - it is a free resource just for you. Open-source and community-driven is the way to go. GitHub: github.com/Shubhamsaboo/awesโ€ฆ
18
86
497
Thank you for your vote. When you learn Chinese focus on the words, yes sir thank you sir. Make sure you say it fast and with a bow.
2
2
9
Thanks for asking. I think the most important thing is to understand everything you possibly can about AI and robotics. Donโ€™t just know it academically live in it. I donโ€™t wanna be harsh, but frankly, I donโ€™t know of any profession that wonโ€™t be touched by what I know is coming. And as Iโ€™m making the point of this post, the WEST does not get its act together and fast and stop playing political games of team agendas. All I just said, may not matter other than learning to speak Mandarin Chinese and especially focus on saying the words yes sir, right away, sir.
4
7
1
84
We just released our complete guide to Context Engineering. (These 6 components are the future of production AI apps) Every developer hits the same wall when building with Large Language Models: the model is brilliant but fundamentally disconnected. It can't access your private documents, has no memory of past conversations, and is limited by its context window. The solution isn't better prompts. It's ๐—–๐—ผ๐—ป๐˜๐—ฒ๐˜…๐˜ ๐—˜๐—ป๐—ด๐—ถ๐—ป๐—ฒ๐—ฒ๐—ฟ๐—ถ๐—ป๐—ด - the discipline of architecting systems that feed LLMs the right information in the right way at the right time. Our new ebook is the blueprint for building production-ready AI applications through 6 core components: 1๏ธโƒฃ ๐—”๐—ด๐—ฒ๐—ป๐˜๐˜€: The decision-making brain that orchestrates information flow and adapts strategies dynamically 2๏ธโƒฃ ๐—ค๐˜‚๐—ฒ๐—ฟ๐˜† ๐—”๐˜‚๐—ด๐—บ๐—ฒ๐—ป๐˜๐—ฎ๐˜๐—ถ๐—ผ๐—ป: Techniques for transforming messy user requests into precise, machine-readable intent through rewriting, expansion, and decomposition 3๏ธโƒฃ ๐—ฅ๐—ฒ๐˜๐—ฟ๐—ถ๐—ฒ๐˜ƒ๐—ฎ๐—น: Strategies for chunking and retrieving the perfect piece of information from your knowledge base (semantic chunking, late chunking, hierarchical approaches) 4๏ธโƒฃ ๐—ฃ๐—ฟ๐—ผ๐—บ๐—ฝ๐˜๐—ถ๐—ป๐—ด ๐—ง๐—ฒ๐—ฐ๐—ต๐—ป๐—ถ๐—พ๐˜‚๐—ฒ๐˜€: From Chain of Thought to ReAct frameworks - how to guide model reasoning effectively 5๏ธโƒฃ ๐— ๐—ฒ๐—บ๐—ผ๐—ฟ๐˜†: Architecting short-term and long-term memory systems that give your application a sense of history and the ability to learn 6๏ธโƒฃ ๐—ง๐—ผ๐—ผ๐—น๐˜€: Connecting LLMs to the outside world through function calling, the Model Context Protocol (MCP), and composable architectures We're not just teaching you to prompt a model - we're showing you how to architect the entire context system around it. This is what is going to take AI from demo status to actual useful production applications. Each section includes practical examples, implementation guidance, and real-world frameworks you can use today. Download it here: weaviate.io/ebooks/the-conteโ€ฆ
Farm retweeted
Using LangCache for Building Agents. And no, it's not from LangChain. Itโ€™s from Redis, built for production-scale memory and recall. LangChainโ€™s in-built caching mostly works on exact text matches. Redis LangCache, in contrast, uses semantic caching; it recalls based on meaning, not identical strings. Hereโ€™s how it works under the hood: >A user sends a prompt to your AI app. >Your app sends the prompt to LangCache via: POST /v1/caches/{cacheId}/entries/search >It calls an embedding model to generate a vector for the prompt. >It searches the cache for a semantically similar entry using those embeddings. >If a match is found (cache hit): LangCache returns the cached response instantly. >If no match is found (cache miss): Your app calls the LLM, gets a new response, then stores it back via: POST /v1/caches/{cacheId}/entries >LangCache saves the new embedding and response for future reuse. How It Differs from LangChain Caching: >LangChainโ€™s built-in caches (like RedisCache or InMemoryCache) work only on exact string matches. >RedisSemanticCache supports embeddings, but itโ€™s self-hosted and limited in scale. >Redis LangCache is a fully managed semantic caching service designed for production workloads. Why it matters : >Faster response times >Reduced API costs >No infrastructure management >Language-agnostic (via REST API) When to use it : >AI agents, RAG systems, & chatbots >Repetitive or similar query handling >Production-grade reliability >Auto-optimized embeddings >Detailed cache monitoring
2:37 < {....} 10k diffuse middle >> direct
you know a color by the context it keeps?
We donโ€™t directly perceive the color of objects in the world. Instead, our brains infer color based on local context. [Link below.]
2
1
18
The Holographic Principle: Why Deep Learning Works
GANs but for prompt optimizers, has it been tried?
5
2
9
Hexdocs now offers @TypeSense-powered documentation search across all packages and versions, link below. TL;DR: * Run `mix hexdocs.search` to open a search tailored to your project's dependencies * Coding agents can use tidewave.ai's MCP to search across your deps docs * Docs for Phoenix/Ecto/etc can provide cross-dependency search, improving onboarding
9
45
6
260
This looks useful. fly.io/blog/gossip-glomers/
Happy Friday! I spent some time solving @flydotio's "Gossip Glomers" distributed systems challenges in #ElixirLang: github.com/Nezteb/gossip_gloโ€ฆ The code needs some cleanup, but all of the challenge tests pass! #MyElixirStatus
peeps sleeping on Elixir/Phoenix meanwhile, enlightened junior practitioners are vibe coding real time full stack Phoenix apps that are categorically superior to your node/ts 10,000 dependency alternatives, fewer bugs, fewer LOC, faster to completion.
Also a bit different with the (presumably) durable step by step flow? I want durable stateful actors which re-init and do whatever per usual OTP stuff. You could use a state machine on top, or build a workflowy thing. I really think a durable genserver/agent is all you need to accomplish what they top-bill "framework for building apps and AI agents that can pause, resume, and maintain state.". Because all the message sending and primitives of the BEAM, throw ReqLLM/Judo/whatever on top of a durable gensever and you have all this already, without an entire framework, compiler, and what I assume is single vendor?
2
4
1
94
Farm retweeted
FOMO is real ๐Ÿ˜‚
2
7
86
No sleep until you can keep agents running for 7 hours a day, every day
1
Sometimes you don't defend, you just go attack and hold the opponent's shit hostage until they come to the table and give you your shit back.
1
3
30