Implementing technology, the right way. Simplifying technology for all and mentoring Startups

Joined August 2009
18 Photos and videos
Humane Technologies retweeted
If you want to understand #AI beyond the hype, this is the room to be in!
1
3
2
22
Humane Technologies retweeted
Judging by my tl there is a growing gap in understanding of AI capability. The first issue I think is around recency and tier of use. I think a lot of people tried the free tier of ChatGPT somewhere last year and allowed it to inform their views on AI a little too much. This is a group of reactions laughing at various quirks of the models, hallucinations, etc. Yes I also saw the viral videos of OpenAI's Advanced Voice mode fumbling simple queries like "should I drive or walk to the carwash". The thing is that these free and old/deprecated models don't reflect the capability in the latest round of state of the art agentic models of this year, especially OpenAI Codex and Claude Code. But that brings me to the second issue. Even if people paid $200/month to use the state of the art models, a lot of the capabilities are relatively "peaky" in highly technical areas. Typical queries around search, writing, advice, etc. are *not* the domain that has made the most noticeable and dramatic strides in capability. Partly, this is due to the technical details of reinforcement learning and its use of verifiable rewards. But partly, it's also because these use cases are not sufficiently prioritized by the companies in their hillclimbing because they don't lead to as much $$$ value. The goldmines are elsewhere, and the focus comes along. So that brings me to the second group of people, who *both* 1) pay for and use the state of the art frontier agentic models (OpenAI Codex / Claude Code) and 2) do so professionally in technical domains like programming, math and research. This group of people is subject to the highest amount of "AI Psychosis" because the recent improvements in these domains as of this year have been nothing short of staggering. When you hand a computer terminal to one of these models, you can now watch them melt programming problems that you'd normally expect to take days/weeks of work. It's this second group of people that assigns a much greater gravity to the capabilities, their slope, and various cyber-related repercussions. TLDR the people in these two groups are speaking past each other. It really is simultaneously the case that OpenAI's free and I think slightly orphaned (?) "Advanced Voice Mode" will fumble the dumbest questions in your Instagram's reels and *at the same time*, OpenAI's highest-tier and paid Codex model will go off for 1 hour to coherently restructure an entire code base, or find and exploit vulnerabilities in computer systems. This part really works and has made dramatic strides because 2 properties: 1) these domains offer explicit reward functions that are verifiable meaning they are easily amenable to reinforcement learning training (e.g. unit tests passed yes or no, in contrast to writing, which is much harder to explicitly judge), but also 2) they are a lot more valuable in b2b settings, meaning that the biggest fraction of the team is focused on improving them. So here we are.
The degree to which you are awed by AI is perfectly correlated with how much you use AI to code.
1,197
2,528
20,878
4,491,509
If you want to understand #AI beyond the hype, this is the room to be in!
1
3
2
22
This will likely lead us to #AGI !
We're missing (at least one) major paradigm for LLM learning. Not sure what to call it, possibly it has a name - system prompt learning? Pretraining is for knowledge. Finetuning (SL/RL) is for habitual behavior. Both of these involve a change in parameters but a lot of human learning feels more like a change in system prompt. You encounter a problem, figure something out, then "remember" something in fairly explicit terms for the next time. E.g. "It seems when I encounter this and that kind of a problem, I should try this and that kind of an approach/solution". It feels more like taking notes for yourself, i.e. something like the "Memory" feature but not to store per-user random facts, but general/global problem solving knowledge and strategies. LLMs are quite literally like the guy in Memento, except we haven't given them their scratchpad yet. Note that this paradigm is also significantly more powerful and data efficient because a knowledge-guided "review" stage is a significantly higher dimensional feedback channel than a reward scaler. I was prompted to jot down this shower of thoughts after reading through Claude's system prompt, which currently seems to be around 17,000 words, specifying not just basic behavior style/preferences (e.g. refuse various requests related to song lyrics) but also a large amount of general problem solving strategies, e.g.: "If Claude is asked to count words, letters, and characters, it thinks step by step before answering the person. It explicitly counts the words, letters, or characters by assigning a number to each. It only answers the person once it has performed this explicit counting step." This is to help Claude solve 'r' in strawberry etc. Imo this is not the kind of problem solving knowledge that should be baked into weights via Reinforcement Learning, or least not immediately/exclusively. And it certainly shouldn't come from human engineers writing system prompts by hand. It should come from System Prompt learning, which resembles RL in the setup, with the exception of the learning algorithm (edits vs gradient descent). A large section of the LLM system prompt could be written via system prompt learning, it would look a bit like the LLM writing a book for itself on how to solve problems. If this works it would be a new/powerful learning paradigm. With a lot of details left to figure out (how do the edits work? can/should you learn the edit system? how do you gradually move knowledge from the explicit system text to habitual weights, as humans seem to do? etc.).
82
Humane Technologies retweeted
I got access to ManusAI and it’s mind blowing good. I do not get paid for promotion. I just tried preview access and it outperformed OpenAI’s DeepReseach by a lot! Mind blowing x.com/jenzhuscott/status/189…

94
231
2,650
400,708
Humane Technologies retweeted
Has anyone benchmarked how much these AI tools like Perplexity, Grok or ChatGPT with reasoning mode (and also web search) would score in a JEE Advanced? If someone’s interested in carrying out a rigorous evaluation, would be happy to support with API credits.
203
69
2,292
224,853
Humane Technologies retweeted
8 Mar 2025
The Model Context Protocol (MCP) is not just "another API lookalike." If you think, "Bro, these two ideas are the same," it means you still don't get it. Let's start with a traditional API: An API exposes its functionality using a set of fixed and predefined endpoints. For example, /products, /orders, /invoices. If you want to add new capabilities to an API, you must create a new endpoint or modify an existing one. Any client that requires this new capability will also need modifications to accommodate the changes. That issue alone is a colossal nightmare, but there's more. Let's say you need to change the number of parameters required for one endpoint. You can't make this change without breaking every client that uses your API! This problem brought us "versioning" in APIs, and anyone who's built one knows how painful this is to maintain. Documentation is another issue. If you are building a client to consume an API, you need to find its documentation, which is separate from the API itself (and sometimes nonexistent.) MCP works very differently: First, an MCP server will expose its capabilities as "tools" with semantic descriptions. This is important! Every tool is self-describing and includes information about what the tool does, the meaning of each parameter, expected outputs, and constraints and limitations. You don't need separate documentation because the interface itself is that documentation! One of my favorite parts is when you need to make changes: Let's say you change the number of parameters required by one of the tools in your server. Contrary to the API world, with MCP, you won't break any clients using your server. They will adapt dynamically to the changes! If you add a new tool, you don't need to modify the clients either. They will discover the tool automatically and start using it when appropriate! But this is just the beginning of the fun: You can set your tools so they are available based on context. For example, an MCP server can expose a tool to send messages only to those clients who have logged in first. There's a ton more, but I don't think I need to keep beating this dead horse. AI MCP > AI API *micdrop*
160
300
2,709
574,876
Excellent list of #AI tools every developer must learn
4 Mar 2025
Best AI tools for different use cases. Best IDEs 1st: Windsurf (better Sonnet 3.7 integration) 2nd: Cursor (a bit unstable lately) 3rd: Cline (Powerful VScode Extension) Best for Landing pages 1st: Lovable (better UI design, modern styling) 2nd: Bolt (great at one-shotting a landing page) 3rd: Softgen (great at screenshot to code) Best for Micro SaaS 1st: Bolt (frontend & backend done fast) 2nd: Replit Agent (great for coding quick MVPs) Best for Complex SaaS 1st: Cursor (great new cursor agent & mcp integrations) 2nd: Windsurf (easy to navigate, best context awareness) 3rd: Cline (great memories feature & mcp integrations) Best for Project Coding Documentation 1st: CodeGuide.dev (works with all coding models and AI tools) 2nd: GPT o1 model (limited messages but great output) Best Web Search Tools: 1st: Perplexity (Deep Research is fast and in-depth) 2nd: Grok 3 (Fast, cheap and great output quality) 3rd: ChatGPT (Expensive but output reports are good) Best Design AI tools: 1st: UIzard (design UI screens/mockups with AI) 2nd: 21st dev (copy pre-designed components wit 1-click) New Emerging tools: 1. AIDE IDE (new IDE like Cursor) 2. Wrapifai (great for coding mini tools) 3. Webdraw (draw and get a coded app) 4. Tempo labs (best UX, good for micro SaaS) 5. Create xyz (new update is great - text to app platform) 6. Databutton (nice UI and different approach) 7. Base44 (best for coding dashboard apps) 8. Aider (great terminal based CLI tool) 9. Rork (new tool for mobile apps) Did I miss any good one?
32
Humane Technologies retweeted
26 Feb 2025
New Alexa! Powered by an LLM and actually able to function as an agent to do things for you
41
112
1,181
214,082
Humane Technologies retweeted
5 Dec 2024
This is my Figma to SwiftUI code workflow I couldn't find a good way to turn my Figma designs to Xcode so I built a plugin. It took roughly a day to create with Claude AI. A few more days to add additional features like Save file, Fast forward, Preview options, advanced settings, a ton of testing and of course shipping/feedback. We're at a point where we can built our own tools to complete a workflow.
24
64
760
51,790
Humane Technologies retweeted
23 Jul 2024
We’ve also updated our license to allow developers to use the outputs from Llama models — including 405B — to improve other models for the first time. We’re excited about how this will enable new advancements in the field through synthetic data generation and model distillation workflows, capabilities that have never been achieved at this scale in open source.
15
153
1,167
310,737
That's a huge boost for open-source #opensource #ai
23 Jul 2024
Starting today, open source is leading the way. Introducing Llama 3.1: Our most capable models yet. Today we’re releasing a collection of new Llama 3.1 models including our long awaited 405B. These models deliver improved reasoning capabilities, a larger 128K token context window and improved support for 8 languages among other improvements. Llama 3.1 405B rivals leading closed source models on state-of-the-art capabilities across a range of tasks in general knowledge, steerability, math, tool use and multilingual translation. The models are available to download now directly from Meta or @huggingface. With today’s release the ecosystem is also ready to go with 25 partners rolling out our latest models — including @awscloud, @nvidia, @databricks, @groqinc, @dell, @azure and @googlecloud ready on day one. More details in the full announcement ➡️ go.fb.me/tpuhb6 Download Llama 3.1 models ➡️ go.fb.me/vq04tr With these releases we’re setting the stage for unprecedented new opportunities and we can’t wait to see the innovation our newest models will unlock across all levels of the AI community.
1
67
Humane Technologies retweeted
23 Jul 2024
Starting today, open source is leading the way. Introducing Llama 3.1: Our most capable models yet. Today we’re releasing a collection of new Llama 3.1 models including our long awaited 405B. These models deliver improved reasoning capabilities, a larger 128K token context window and improved support for 8 languages among other improvements. Llama 3.1 405B rivals leading closed source models on state-of-the-art capabilities across a range of tasks in general knowledge, steerability, math, tool use and multilingual translation. The models are available to download now directly from Meta or @huggingface. With today’s release the ecosystem is also ready to go with 25 partners rolling out our latest models — including @awscloud, @nvidia, @databricks, @groqinc, @dell, @azure and @googlecloud ready on day one. More details in the full announcement ➡️ go.fb.me/tpuhb6 Download Llama 3.1 models ➡️ go.fb.me/vq04tr With these releases we’re setting the stage for unprecedented new opportunities and we can’t wait to see the innovation our newest models will unlock across all levels of the AI community.
259
1,383
5,514
1,268,336
Great resources for anyone wanting to start learning CUDA, thanks to @mallocmyheart for sharing
1
21
Humane Technologies retweeted
⚡ Can't believe this worked so well. From a SketchUp basic render to a super high resolution "AI render" in 7 minutes. Using the 3 Magnific spells together: 🎭 Style Transfer 🔆 Relight 🪄 Upscale These are the steps I followed so you can do it too 🧵👇
31
83
781
168,726
Humane Technologies retweeted
2/ DispatchAI AI agent 911 dispatchers that immediately respond to crisis calls, measure caller anxiety/sentiment with @hume_ai, and send emergency responders on site AI agents for crisis response 🎖️ AI for Good Award 🥇 @intel Prize 1st place 🏆 Grand prize winner
12
34
446
83,809