Skip to content
Merged
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 @@ -108,11 +108,6 @@ public class OllamaOptions implements ChatOptions, EmbeddingOptions {
*/
@JsonProperty("use_mlock") private Boolean useMLock;

/**
* ???
*/
@JsonProperty("embedding_only") private Boolean embeddingOnly;

/**
* ???
*/
Expand Down Expand Up @@ -319,11 +314,6 @@ public OllamaOptions withUseMLock(Boolean useMLock) {
return this;
}

public OllamaOptions withEmbeddingOnly(Boolean embeddingOnly) {
this.embeddingOnly = embeddingOnly;
return this;
}

public OllamaOptions withRopeFrequencyBase(Float ropeFrequencyBase) {
this.ropeFrequencyBase = ropeFrequencyBase;
return this;
Expand Down Expand Up @@ -520,14 +510,6 @@ public void setUseMLock(Boolean useMLock) {
this.useMLock = useMLock;
}

public Boolean getEmbeddingOnly() {
return embeddingOnly;
}

public void setEmbeddingOnly(Boolean embeddingOnly) {
this.embeddingOnly = embeddingOnly;
}

public Float getRopeFrequencyBase() {
return ropeFrequencyBase;
}
Expand Down