wejick / gchain

Composable LLM Application framework inspired by langchain
Apache License 2.0
12 stars 2 forks source link

Vectorstore search behavior #1

Open wejick opened 1 year ago

wejick commented 1 year ago

Today vector store search function will still do vector based search to the database. Instead of having vector parameter, it has string based parameter which will be converted to vector later.

Is it better for search to do a nonvector search instead if applicable? do we need an extra option for this? what will be the default behavior?

How about hybrid search?