Skip to content

Commit

Permalink
chore(ollama): Export OllamaEmbeddingsParams interface (#7574)
Browse files Browse the repository at this point in the history
  • Loading branch information
gurisko authored Jan 25, 2025
1 parent 88c75e9 commit 86fa0d5
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion libs/langchain-ollama/src/embeddings.ts
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@ import { OllamaCamelCaseOptions } from "./types.js";
* Interface for OllamaEmbeddings parameters. Extends EmbeddingsParams and
* defines additional parameters specific to the OllamaEmbeddings class.
*/
interface OllamaEmbeddingsParams extends EmbeddingsParams {
export interface OllamaEmbeddingsParams extends EmbeddingsParams {
/**
* The Ollama model to use for embeddings.
* @default "mxbai-embed-large"
Expand Down

0 comments on commit 86fa0d5

Please sign in to comment.