Commit Graph

5 Commits

Author SHA1 Message Date
Guillaume Dussault
41037783bc fix: when no Assistant Tools are specified, an empty list should be sent (#669) 2024-02-26 12:48:53 +04:00
Charlie Revett
18465723f7 Add missing struct properties. (#579) 2023-11-15 20:25:18 +04:00
Liron Levin
464b85b6d7 Pagination fields are missing from assistants list beta API (#571)
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
}
2023-11-15 20:22:39 +04:00
Simone Vellei
a2d2bf6851 Fix Refactor assistant api (#545)
* fix: refactor assistant API

* fix

* trigger build

* fix: use AssistantDeleteResponse
2023-11-08 13:20:20 +04:00
Simone Vellei
3063e676bf Feat Implement assistants API (#535)
* chore: implement assistants API

* fix

* fix

* chore: add tests

* fix tests

* fix linting
2023-11-07 19:20:59 +04:00