deepseek-free-api icon indicating copy to clipboard operation
deepseek-free-api copied to clipboard

The information returned by the service differs from that returned by DeepSeek

Open tjlcast opened this issue 1 month ago • 1 comments

Hello

When I requested the completion interface provided by the deepseek-free-api, I encountered the following bad case.

The information returned by the service differs from that returned by DeepSeek, as if individual characters may fail to be parsed.

A specific curl body below:

{
  "model": "deepseek-chat",
  "stream": false,
  "messages": [
    {
      "role": "system",
      "content": "You are a helpful assistant."
    },
    {
      "role": "user",
      "content": "Hello! please give a sql about TOP10 product. Only resposne sql"
    }
  ]
}

deepseek-free-api returns image

deepseek-api returns image

I think the blank from LIMIT 10 is missing in deepseek-free-api

tjlcast avatar May 13 '24 03:05 tjlcast