openai-openapi
openai-openapi copied to clipboard
OpenAPI specification for the OpenAI API
`ListThreadsResponse` is not referenced anywhere. Also there is no `listThreads` operation. I wonder why.
The `model` property in `ModifyAssistantRequest` is a string with no enum values. That's an inconsistency in the API. So I just copied over the `model` property in `CreateAssistantRequest`. The best...
This PR updates `summary` field names to `description` in info objects. The OpenAPI specification indeed [specifies](https://spec.openapis.org/oas/v3.1.0#fixed-fields-0): Field Name | Type | Description -- | -- | -- summary | string...
When trying to generate a C# client via [Kiota](https://learn.microsoft.com/en-us/openapi/kiota/overview) I had many warnings about missing [discriminators](https://spec.openapis.org/oas/latest.html#discriminator-object). Given that it's part of the OpenAPI specification, I just added them to the...
When creating a vector store, the [name is not required](https://platform.openai.com/docs/api-reference/vector-stores/create). However, the `VectorStoreObject` does not support a `null` name. The server does support nullable names. If you don't provide a...
Designed to address (at least in part) issue #302
Hi, I am sending requests to a llama-server by using the openai api. I also wrote the code in pytorch without a server to compare the results. I noticed that...
removed unnecessary in param name "include[]"
## Description When trying to generate code with [oapi-codegen](https://github.com/oapi-codegen/oapi-codegen) we meet with errors like the following:  Added the missing parameters on PR #325 to fix this...