When will it be available via API

#27
by alexcardo - opened

Why this model is not available via the DeepSeek API platform?

Is on https://llm.vin for free

I want to try it via an API call, not via chat interface. I was unable to find any API keys after registration. And I also have a balance on my DeepSeek account. I'd rather use it via the official API. But looks like this feature won't be available in the foreseeable future.

llm.vin has a API, https://docs.llm.vin (no API key required)

llm.vin has a API, https://docs.llm.vin (no API key required)

Correct me if I'm dumb, it doesn't work, even with examples provided in the official documentation. As for the API keys (if I still want them), I was unable to find this menu item in the interface.

alex@M1 ~ % curl "https://api.llm.vin/v1/chat/compilations"
-H "Content-Type: application/json"
-d '{
"model": "grok-3-mini",
"messages": [
{
"role": "user",
"content": "Write a one-sentence bedtime story about a unicorn."
}
]
}'

Error
Cannot POST /v1/chat/compilations
alex@M1 ~ %

No matter, which model I use, I see the same error.

By the way, it's suspicious to be true for free..., especially, when it comes to Grok (proprietary model)

It was a typo in the documentation and is being fixed.

curl "https://api.llm.vin/v1/chat/completions" \
  -H "Content-Type: application/json" \
  -d '{
    "model": "grok-3-mini",
    "messages": [
      {
        "role": "user",
        "content": "Write a one-sentence bedtime story about a unicorn."
      }
    ]
  }'

It was a typo in the documentation and is being fixed.

curl "https://api.llm.vin/v1/chat/completions" \
  -H "Content-Type: application/json" \
  -d '{
    "model": "grok-3-mini",
    "messages": [
      {
        "role": "user",
        "content": "Write a one-sentence bedtime story about a unicorn."
      }
    ]
  }'

OMG, it really works! Thank you! Are you involved with this project?

Yes I am, glad to see its working now!

Sign up or log in to comment