Remix.run Logo
lackoftactics 3 hours ago

GoModel. I see some red flags in the docs/benchmarks, but I could be wrong in my judgement here.

What I noticed: the website shows a diagram of the litellm SDK communicating with the gateway proxy of GoModel, poor design of benchmarks, the scope of the project in readme vs. depth.

I don't have professional experience in GoLang, so will not comment on quality of code.

There are some genuinely good things about this project and the effort here, but with solid position of Bifrost sitting at a version above 1.0.0 and so many other initiatives in this space, it's a tough market.

santiago-pl an hour ago | parent [-]

The LiteLLM SDK is intentionally on the website. You can "talk" to GoModel with it because both projects use an OpenAI-compatible API under the hood.

You can use it like this:

  from litellm import completion
  print(completion(
      model="openai/gpt-4.1-nano",
      api_base="http://localhost:8080/v1",
      api_key="your-gomodel-key",
      messages=[{"role": "user", "content": "hi"}],
  ).choices[0].message.content)
lackoftactics 43 minutes ago | parent [-]

Thank you