Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Original file line number Diff line number Diff line change
Expand Up @@ -15,8 +15,6 @@ public class OpenAICustomizations extends Customization {
public void customize(LibraryCustomization customization, Logger logger) {
// remove unused class (no reference to them, after partial-update)
removeMultipartFormDataFiles(customization, logger);
customizeEmbeddingEncodingFormatClass(customization, logger);
customizeEmbeddingsOptions(customization, logger);
customizeCompletionsOptions(customization, logger);
customizeChatCompletionsOptions(customization, logger);
}
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@
/**
* Represents the available formats for embeddings data on responses.
*/
class EmbeddingEncodingFormat extends ExpandableStringEnum<EmbeddingEncodingFormat> {
public class EmbeddingEncodingFormat extends ExpandableStringEnum<EmbeddingEncodingFormat> {

/**
* Specifies that responses should provide arrays of floats for each embedding.
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -190,7 +190,7 @@ public EmbeddingsOptions setDimensions(Integer dimensions) {
* @return the encodingFormat value.
*/
@Generated
EmbeddingEncodingFormat getEncodingFormat() {
public EmbeddingEncodingFormat getEncodingFormat() {
return this.encodingFormat;
}

Expand All @@ -201,7 +201,7 @@ EmbeddingEncodingFormat getEncodingFormat() {
* @return the EmbeddingsOptions object itself.
*/
@Generated
EmbeddingsOptions setEncodingFormat(EmbeddingEncodingFormat encodingFormat) {
public EmbeddingsOptions setEncodingFormat(EmbeddingEncodingFormat encodingFormat) {
this.encodingFormat = encodingFormat;
return this;
}
Expand Down
Loading