6 comments

  • khalic1 hour ago
    I strongly recommend the authors rewrite the readme by hand. It’s kind of a snif test for how much care someone put into this project.
    • rexpop1 minute ago
      &gt; Avoid generic tangents.<p>&gt; Please don&#x27;t post shallow dismissals<p>&gt; Please don&#x27;t complain about tangential annoyances—e.g. article or website formats, name collisions, or back-button breakage.<p>See: Hacker News Guidelines
    • ravenstine27 minutes ago
      Really? I mean, yeah, it&#x27;s probably written by an LLM, but it&#x27;s hardly the worst that I&#x27;ve seen. Looks way more straight forward than the modern README featuring a ton of badges, emojis, confusing out-of-context screenshots, &quot;trust me bro&quot; installation instructions, vague elevator pitches, &quot;used by netflix, nasa, disney, good morning america, alex jones, the church of scientology&quot;, and other verbiage to create the illusion that the author won&#x27;t immediately get bored and abandon their glorified dissertation piece. They all scream &quot;give me your github stars&quot; whereas this one doesn&#x27;t. But I still get what you mean when it comes to the particular &#x27;isms.
    • devinpadron1 hour ago
      Agree. The LLM&#x27;isms are offputting.
    • VCFundedGenYer31 minutes ago
      Throwing my support for this. Do not use LLMs to write things humans should write.
  • Centigonal1 hour ago
    This is a cool project, and the idea of using LLMs to selectively extract features from open source projects is an interesting concept.<p>The only thing I take issue with is the phrase &quot;LiteLLM Without the Bloat.&quot; A lot of the features that have been removed (like cost tracking, streaming, caching) are... kind of the core value proposition of LiteLLM for many of their users.
    • OutOfHere1 hour ago
      Fine, but then LiteLLM doesn&#x27;t quite live up to its name, does it? With all those features, there is nothing &quot;lite&quot; about it. It is essential for a project to live up to its name.<p>Imagine Sqlite adding heavy features from Postgresql.
      • sv12331 minutes ago
        But imagine Sqlite not supporting joins or window functions... sure they are useful but look how many LOC it adds! Who is the arbiter of what Lite actually means?
  • clickety_clack18 minutes ago
    One of the 2 dependencies, httpx, isn&#x27;t really maintained anymore. Pydantic picked it up as httpx2: <a href="https:&#x2F;&#x2F;pydantic.dev&#x2F;docs&#x2F;httpx2" rel="nofollow">https:&#x2F;&#x2F;pydantic.dev&#x2F;docs&#x2F;httpx2</a>
  • freshtake50 minutes ago
    First off, cool project! It&#x27;s always great to see derivatives that question the efficiency of the established product.<p>I think the main thing the readme is missing is the core benefits. Reducing LOC and dependencies is cool, but it would be great to understand if this provides some additional benefits like lower latency or memory requirements.
  • LeBit42 minutes ago
    How does it compare to Bifrost?
    • josephh34 minutes ago
      I&#x27;m always confused by LLM proxies that claim to support tool calling. Even for Bifrost that claims to be doing it, at least when I was checking it out, I found out that while it injects the list of MCP tools that&#x27;s available on the proxy-side, it doesn&#x27;t actually make the call on client&#x27;s behalf, and clients get confused by it (response returns MCP call request whose tool doesn&#x27;t exist on the client-side).
    • robertclaus32 minutes ago
      LiteLLM is basically Bifrost in the Python ecosystem.