commitgpt icon indicating copy to clipboard operation
commitgpt copied to clipboard

This is a chat model and not supported in the v1/completions endpoint. Did you mean to use v1/chat/completions?'

Open TheKnarf opened this issue 1 year ago • 0 comments

With config:

{
  "model": "gpt-3.5-turbo",
  "temperature": 0.5,
  "maxTokens": 2048
}

I get the following error message:

  data: {
    error: {
      message: 'This is a chat model and not supported in the v1/completions endpoint. Did you mean to use v1/chat/completions?',
      type: 'invalid_request_error',
      param: 'model',
      code: null
    }
  }

TheKnarf avatar Feb 12 '24 11:02 TheKnarf