ai-for-java / openai4j

Java client library for OpenAI API
Apache License 2.0
85 stars 34 forks source link

List models #14

Open the-gigi opened 10 months ago

the-gigi commented 10 months ago

Is your feature request related to a problem? Please describe.

It looks like there is no way to list the models.

See https://platform.openai.com/docs/api-reference/models

Describe the solution you'd like I would like a listModels() method that returns all the models.

Describe alternatives you've considered I can get it myself using any HTTP client, but it breaks the experience of working with a Java library that wraps an API.

The other alternative is of course to use another library :-)

Additional context

btw, the terminology of openai4j, which uses Model to describe its domain objects: ChatCompletionModel, ImageCompletionModel, etc is confusing when dealing with language models. Ideally , there shouldn't be overloading of the term Model.