Skip to content

Commit

Permalink
Remove langchain- from embedding provider programmatic IDs (#304)
Browse files Browse the repository at this point in the history
  • Loading branch information
Paul-Cornell authored Oct 25, 2024
1 parent fb5b3b6 commit d52ae12
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion snippets/destination_connectors/postgresql.v2.py.mdx
Original file line number Diff line number Diff line change
Expand Up @@ -53,7 +53,7 @@ if __name__ == "__main__":
}
),
chunker_config=ChunkerConfig(chunking_strategy="by_title"),
embedder_config=EmbedderConfig(embedding_provider="langchain-huggingface"),
embedder_config=EmbedderConfig(embedding_provider="huggingface"),
destination_connection_config=PostgresConnectionConfig(
access_config=PostgresAccessConfig(password=os.getenv("PGPASSWORD")),
host=os.getenv("PGHOST"),
Expand Down
2 changes: 1 addition & 1 deletion snippets/destination_connectors/sqlite.v2.py.mdx
Original file line number Diff line number Diff line change
Expand Up @@ -53,7 +53,7 @@ if __name__ == "__main__":
}
),
chunker_config=ChunkerConfig(chunking_strategy="by_title"),
embedder_config=EmbedderConfig(embedding_provider="langchain-huggingface"),
embedder_config=EmbedderConfig(embedding_provider="huggingface"),
destination_connection_config=SQLiteConnectionConfig(
access_config=SQLiteAccessConfig(),
database_path=os.getenv("SQLITE_DB_PATH")
Expand Down

0 comments on commit d52ae12

Please sign in to comment.