<rss version="2.0" xmlns:dc="http://purl.org/dc/elements/1.1/" xmlns:atom="http://www.w3.org/2005/Atom"><channel><title>Hacker News: ichiwells</title><link>https://news.ycombinator.com/user?id=ichiwells</link><description>Hacker News RSS</description><docs>https://hnrss.org/</docs><generator>hnrss v2.1.1</generator><lastBuildDate>Thu, 23 Apr 2026 10:55:56 +0000</lastBuildDate><atom:link href="https://hnrss.org/user?id=ichiwells" rel="self" type="application/rss+xml"></atom:link><item><title><![CDATA[New comment by ichiwells in "The unreasonable effectiveness of an LLM agent loop with tool use"]]></title><description><![CDATA[
<p>Thank you so much for sharing this!<p>We are using ruby to build a powerful AI toolset in the construction space, and we love how simple all of the SaaS parts are and not reinventing the wheel, but the ruby LLM SDK ecosystem is a bit lagging, so we've written a lot of our own low-level tools.<p>(btw we are also hiring rubyists <a href="https://news.ycombinator.com/item?id=43865448">https://news.ycombinator.com/item?id=43865448</a>)</p>
]]></description><pubDate>Fri, 16 May 2025 18:06:57 +0000</pubDate><link>https://news.ycombinator.com/item?id=44008262</link><dc:creator>ichiwells</dc:creator><comments>https://news.ycombinator.com/item?id=44008262</comments><guid isPermaLink="false">https://news.ycombinator.com/item?id=44008262</guid></item><item><title><![CDATA[New comment by ichiwells in "Ask HN: Who is hiring? (May 2025)"]]></title><description><![CDATA[
<p>Ichi | Remote (US) | Full-Time | Senior Software Engineer, Full Stack | LLM-powered construction code compliance<p>Ichi is building an AI-powered professional toolset to transform construction permitting and code compliance. We're helping municipalities, plan examiners, architects, and construction professionals streamline the permitting process to reduce bottlenecks—ultimately accelerating construction timelines in an $11T global industry.<p>We're a small team (you == employee #6) backed by Costanoa Ventures looking for a high-ownership Senior Software Engineer (8+ years exp) who can build from scratch and deeply cares about product quality. You'll design and implement product features that integrate intuitive UX and powerful multi-modal (and multi-model) LLM pipelines, working directly with users to refine our approach.<p>Tech stack: Ruby, Rails, Python, React, TypeScript, GraphQL, Postgres, AWS.<p>Must have: Full stack experience, product intuition, and interest in LLMs.<p>CS degree or equivalent preferred; we work on hard problems and first-principles thinking and attention to detail are essential.<p>Our name "Ichi" (Japanese for "city", and "one") reflects our mission to improve the physical spaces around us through never-before-possible technology and bridging a fundamental information asymmetry.<p>Apply: <a href="https://www.ichiplan.com/senior-software-engineer" rel="nofollow">https://www.ichiplan.com/senior-software-engineer</a></p>
]]></description><pubDate>Fri, 02 May 2025 02:06:53 +0000</pubDate><link>https://news.ycombinator.com/item?id=43865448</link><dc:creator>ichiwells</dc:creator><comments>https://news.ycombinator.com/item?id=43865448</comments><guid isPermaLink="false">https://news.ycombinator.com/item?id=43865448</guid></item><item><title><![CDATA[New comment by ichiwells in "Apple's AI isn't a letdown. AI is the letdown"]]></title><description><![CDATA[
<p>One of apple’s biggest missed with “AI” in my opinion, is not building a universal search.<p>For all the hype LLM generation gets, I think the rise of LLM-backed “semantic” embedding search does not get enough attention. It’s used in RAG (which inherits the hallucinatory problems), but seems underutilized elsewhere.<p>The worst (and coincidentally/paradoxically I use the most) searches I’ve seen is Gmail and Dropbox, both of which cannot find emails or files that I know exist, even if using the exact email subject and file name keywords.<p>Apple could arguably solve this with a universal search SDK, and I’d value this far more than yet-another-summarize-this-paragraph tool.</p>
]]></description><pubDate>Sat, 29 Mar 2025 22:00:53 +0000</pubDate><link>https://news.ycombinator.com/item?id=43519111</link><dc:creator>ichiwells</dc:creator><comments>https://news.ycombinator.com/item?id=43519111</comments><guid isPermaLink="false">https://news.ycombinator.com/item?id=43519111</guid></item><item><title><![CDATA[New comment by ichiwells in "RubyLLM: A delightful Ruby way to work with AI"]]></title><description><![CDATA[
<p>I would actually start with the Rails Guides docs, they’re very good and running the given commands should actually work:<p><a href="https://guides.rubyonrails.org/getting_started.htm" rel="nofollow">https://guides.rubyonrails.org/getting_started.htm</a><p>Just have a toy app you want to build in mind</p>
]]></description><pubDate>Sat, 15 Mar 2025 15:34:36 +0000</pubDate><link>https://news.ycombinator.com/item?id=43373172</link><dc:creator>ichiwells</dc:creator><comments>https://news.ycombinator.com/item?id=43373172</comments><guid isPermaLink="false">https://news.ycombinator.com/item?id=43373172</guid></item><item><title><![CDATA[New comment by ichiwells in "RubyLLM: A delightful Ruby way to work with AI"]]></title><description><![CDATA[
<p>I run engineering for a venture backed AI-first startup and we use Ruby/Rails.<p>For us, it made sense to leverage one of the best domain modeling and ORM frameworks out there. Most of our inference is http calls to foundational models, but we can still fine tune and host models on GPUs using Python.<p>Inference matters, but part of building an effective user platform are the same old SaaS problems we’ve had before, and Rails just works. Inbound and outbound email done in a day. Turning an OCR’d title from ALL CAPS into Title Case is one method call and not a whole custom algorithm, etc.<p>A lot of people seem to think Ruby is slow for some reason but it’s as fast as Python, and with falcon as fast as node for async behavior. Safe to say the application language taking 0.03 seconds instead of 0.003 seconds when you have to wait 3 seconds for first token is absolutely not the bottleneck with LLM heavy workflows, anyway.<p>And yes, metaprogramming is a powerful tool with which you can easily shoot yourself in the foot. We culturally just don’t write any code that’s not greppable so don’t use method_missing kinds of things unless it’s in a robust gem like active record. Pretty trivial problem to solve really.<p>PS - We’re hiring, if that philosophy aligns with you!</p>
]]></description><pubDate>Sat, 15 Mar 2025 14:34:22 +0000</pubDate><link>https://news.ycombinator.com/item?id=43372800</link><dc:creator>ichiwells</dc:creator><comments>https://news.ycombinator.com/item?id=43372800</comments><guid isPermaLink="false">https://news.ycombinator.com/item?id=43372800</guid></item><item><title><![CDATA[New comment by ichiwells in "Long Read: Lessons from Building Semantic Search for GitHub and Why I Failed"]]></title><description><![CDATA[
<p>> Finally, building HNSW indices in Postgres is still extremely slow (even with parallel index builds), so it is difficult to experiment with index hyperparameters at scale<p>For anyone coming across this without much experience here, for building these indexes in pgvector it makes a massive difference to increase your maintenance memory above the default. Either as a separate db like whakim mentioned, or for specific maintenance periods depending on your use case.<p>```
SHOW maintenance_work_mem;
SET maintenance_work_mem = X;
```<p>In one of our semantic search use cases, we control the ingestion of the searchable content (laws, basically) so we can control when and how we choose to index it. And then I've set up classic relational db indexing (in addition to vector indexing) for our quite predictable query patterns.<p>For us that means our actual semantic db query takes about 10ms.<p>Starting from 10s of millions of entries, filtered to ~50k (jurisdictionally, in our case) relevant ones and then performing vector similarity search with topK/limit.<p>Built into our ORM and zero round-trip latency to Pinecone or syncing issues.<p>EDIT: I imagine whakim has more experience than me and YMMV, just sharing lesson learned. Even with higher maintenance mem the index building is super slow for HNSW</p>
]]></description><pubDate>Sun, 09 Mar 2025 13:53:29 +0000</pubDate><link>https://news.ycombinator.com/item?id=43309074</link><dc:creator>ichiwells</dc:creator><comments>https://news.ycombinator.com/item?id=43309074</comments><guid isPermaLink="false">https://news.ycombinator.com/item?id=43309074</guid></item></channel></rss>