sashabaranov / go-openai

OpenAI ChatGPT, GPT-3, GPT-4, DALL·E, Whisper API wrapper for Go
Apache License 2.0
9.17k stars 1.41k forks source link

Missing pagination parameters for list assistants beta API #572

Open liron-l opened 11 months ago

liron-l commented 11 months ago

Describe the bug Missing pagination parameters for list assistants beta API:

first_id
last_id
has_more

To Reproduce

curl "https://api.openai.com/v1/assistants?order=desc&limit=20" \
  -H "Content-Type: application/json" \
  -H "Authorization: Bearer $OPENAI_API_KEY" \
  -H "OpenAI-Beta: assistants=v1"
{
  "object": "list",
  "data": [],
  "first_id": null,
  "last_id": null,
  "has_more": false
}
albertpurnama commented 11 months ago

I think we can close this issue since the PR is already merged @liron-l