-
Notifications
You must be signed in to change notification settings - Fork 11
New issue
Have a question about this project? # for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “#”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? # to your account
docs: fix typo with Embedder service #269
docs: fix typo with Embedder service #269
Conversation
6db3e12
to
6659849
Compare
README.md
Outdated
@@ -350,23 +350,23 @@ $eventDispatcher->addListener(ToolCallsExecuted::class, function (ToolCallsExecu | |||
LLM Chain supports document embedding and similarity search using vector stores like ChromaDB, Azure AI Search, MongoDB | |||
Atlas Search, or Pinecone. | |||
|
|||
For populating a vector store, LLM Chain provides the service `DocumentEmbedder`, which requires an instance of an | |||
For populating a vector store, LLM Chain provides the service `EmbeddingProvider`, which requires an instance of an |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
this is the actual typo, right?
For populating a vector store, LLM Chain provides the service `EmbeddingProvider`, which requires an instance of an | |
For populating a vector store, LLM Chain provides the service `Embedder`, which requires an instance of an |
The renaming from DocumentEmbedder
to Embedder
was intended and part of #140
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Yes , I reverted naming changes , I let just fix for the README file
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
please decouple fixing the readme (valid and good catch) and renaming the Embedder
(not wanted)
c015069
to
916bd2d
Compare
916bd2d
to
dc3672a
Compare
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Thanks, good catch! 👍
Hello ,
This PR is a suggestion to change the name of embedding providers variables and classes .
If you accept my suggestion , the PR to adopt this into the bundle is almost ready .