openai-openapi icon indicating copy to clipboard operation
openai-openapi copied to clipboard

OpenAPI specification for the OpenAI API

Results 141 openai-openapi issues
Sort by recently updated
recently updated
newest added

`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...

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: ![Screenshot from 2024-09-19 10-35-09](https://github.com/user-attachments/assets/c2262747-23ee-4843-bee0-7719d015dd1d) Added the missing parameters on PR #325 to fix this...