Show HN: Git for LLMs – a context management interface
Hacker News (score: 11)Description
During our master’s we continually found the same pain points cropping up when using LLMs. The linear nature of typical LLMs interfaces - like ChatGPT and Claude - made it really easy to get lost without any easy way to visualise or navigate your project.
Worst of all, none of them are well suited for long term projects. We found ourselves spending days using the same chat, only for it to eventually break. Transferring context from one chat to another is also cumbersome. We decided to build something more intuitive to the ways humans think.
We started with two simple ideas. Enabling chat branching for exploring tangents, and an interactive tree diagram to allow for easy visualisation and navigation of your project.
Twigg has developed into an interface for context management - like “Git for LLMs”. We believe the input to a model - or the context - is fundamental to its performance. To extract the maximum potential of an LLM, we believe the users need complete control over exactly what context is provided to the model, which you can do using simple features like cut, copy and delete to manipulate your tree.
Through Twigg, you can access a variety of LLMs from all the major providers, like ChatGPT, Gemini, Claude, and Grok. Aside from a standard tiered subscription model (free, plus, pro), we also offer a Bring Your Own Key (BYOK) service, where you can plug and play with your own API keys.
Our target audience are technical users who use LLMs for large projects on a regular basis. If this sounds like you, please try out Twigg, you can sign up for free at https://twigg.ai/. We would love to get your feedback!
More from Hacker
Bare metal programming with RISC-V guide (2023)
Bare metal programming with RISC-V guide (2023)
Fly's Sprites.dev addresses dev environment sandboxes and API sandboxes together
Fly's Sprites.dev addresses dev environment sandboxes and API sandboxes together
Show HN: FP-pack – Functional pipelines in TypeScript without monads
Show HN: FP-pack – Functional pipelines in TypeScript without monads Hi HN,<p>I built fp-pack, a small TypeScript functional utility library focused on pipe-first composition.<p>The goal is to keep pipelines simple and readable, while still supporting early exits and side effects — without introducing monads like Option or Either.<p>Most code uses plain pipe/pipeAsync. For the few cases that need early termination, fp-pack provides a SideEffect-based pipeline that short-circuits safely.<p>I also wrote an “AI agent skills” document to help LLMs generate consistent fp-pack-style code.<p>Feedback, criticism, or questions are very welcome.
Show HN: HN Sentiment API – I ranked tech CEOs by how much you hate them
Show HN: HN Sentiment API – I ranked tech CEOs by how much you hate them I built an API that extracts entities from Hacker News comments and classifies sentiment towards them as positive, negative, or neutral. It also classifies overall comment sentiment and assigns each entity a label (person, location, date, technology, organization, other).<p>505k+ comments, Oct 31 - Present.<p>Here's the leaderboard:<p>LOVED:<p>- Steve Jobs: 44% positive, 7% negative<p>- Linus Torvalds: 43% positive, 5% negative<p>- Gabe Newell: 34% positive, 8% negative<p>MID:<p>- Bill Gates: 22% positive, 8% negative<p>- Tim Cook: 15% positive, 30% negative<p>- Bezos: 12% positive, 18% negative<p>HATED:<p>- Zuckerberg: 4% positive, 35% negative<p>- Sam Altman: 8% positive, 38% negative<p>- Musk: 5% positive, 45% negative<p>Try it yourself:<p># Who does HN talk about the most?<p>curl "<a href="https://api.hnpulse.com/entities?label=person&sort=mentions" rel="nofollow">https://api.hnpulse.com/entities?label=person&sort=mentions</a>"<p># What are people saying about remote work?<p>curl "<a href="https://api.hnpulse.com/comments?entity=remote" rel="nofollow">https://api.hnpulse.com/comments?entity=remote</a> work&limit=3"<p># Is OpenAI's reputation getting worse?<p>curl "<a href="https://api.hnpulse.com/trends?entity=openai&bucket=day" rel="nofollow">https://api.hnpulse.com/trends?entity=openai&bucket=day</a>"<p># What technology gets mentioned alongside SF?<p>curl "<a href="https://api.hnpulse.com/entities?co-occur=SF&label=technology&sort=mentions" rel="nofollow">https://api.hnpulse.com/entities?co-occur=SF&label=technolog...</a>"<p>Stack: Go, PostgreSQL, GPT-4o mini for entity extraction<p>Docs: <a href="https://docs.hnpulse.com" rel="nofollow">https://docs.hnpulse.com</a> API: <a href="https://api.hnpulse.com" rel="nofollow">https://api.hnpulse.com</a>
No other tools from this source yet.