mirror of
https://github.com/langflow-ai/langflow.git
synced 2026-07-24 05:39:16 +08:00
* version-1.9.0-docs * [autofix.ci] apply automated fixes * [autofix.ci] apply automated fixes (attempt 2/3) --------- Co-authored-by: autofix-ci[bot] <114827586+autofix-ci[bot]@users.noreply.github.com>
8 lines
871 B
Plaintext
8 lines
871 B
Plaintext
Because Langflow is based on LangChain, vector store components use an instance of [LangChain vector store](https://docs.langchain.com/oss/python/integrations/vectorstores) to drive the underlying read and write functions.
|
|
These instances are provider-specific and configured according to the component's parameters, such as the connection string, index name, and schema.
|
|
|
|
In component code, this is often instantiated as `vector_store`, but some vector store components use a different name, such as the provider name.
|
|
|
|
Some LangChain classes don't expose all possible options as component parameters.
|
|
Depending on the provider, these options might use default values or allow modification through environment variables, if they are supported in Langflow.
|
|
For information about specific options, see the LangChain API reference and vector store provider's documentation. |