Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

feat: Spanner Implementation for Vector Store #10

Merged
merged 23 commits into from
Feb 22, 2024
Merged
Show file tree
Hide file tree
Changes from 7 commits
Commits
Show all changes
23 commits
Select commit Hold shift + click to select a range
7970599
feat: Adding Vector Store Implementation for Spanner
gauravpurohit06 Feb 9, 2024
d4127f0
feat: Validating Types, Columns at the time of VectorStore initializa…
gauravpurohit06 Feb 12, 2024
1b034f5
feat: Delete Vector embeddings through documents.
gauravpurohit06 Feb 12, 2024
a3dfef3
style: format and lint
gauravpurohit06 Feb 13, 2024
e354491
feat: Adding init file to export VectorStore
gauravpurohit06 Feb 13, 2024
2ec847f
feat: Adding delete to dynamically generate SQL for each row.
gauravpurohit06 Feb 13, 2024
1116659
feat: Adding full support for staleness with multiple options like re…
gauravpurohit06 Feb 13, 2024
391dd5b
feat: Addressing review comments and adding data class for indexes.
gauravpurohit06 Feb 16, 2024
075563a
feat: Adding support for secondary indexes.
gauravpurohit06 Feb 16, 2024
70c5018
feat: exporting secondary indexes.
gauravpurohit06 Feb 16, 2024
53b3983
Merge branch 'main' into langchain-vector-store
averikitsch Feb 16, 2024
91bb1ae
style: lint
gauravpurohit06 Feb 21, 2024
82d8014
Merge branch 'main' into langchain-vector-store
gauravpurohit06 Feb 21, 2024
80ab791
feat: Initiating client with user agent.
gauravpurohit06 Feb 21, 2024
929de81
feat: Addressing review comments.
gauravpurohit06 Feb 21, 2024
6aa9761
style: lint
gauravpurohit06 Feb 21, 2024
8fa2dbe
style: lint
gauravpurohit06 Feb 21, 2024
e303ddc
style: lint
gauravpurohit06 Feb 21, 2024
c828930
test: Vector Store Implementation Integration Tests (#16)
gauravpurohit06 Feb 22, 2024
60835f4
replacing - with :
gauravpurohit06 Feb 22, 2024
4c40d0f
Merge branch 'main' into langchain-vector-store
gauravpurohit06 Feb 22, 2024
f737bbb
style: lint
gauravpurohit06 Feb 22, 2024
24f4230
minor changes.
gauravpurohit06 Feb 22, 2024
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 4 additions & 0 deletions src/langchain_google_spanner/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -11,3 +11,7 @@
# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
# See the License for the specific language governing permissions and
# limitations under the License.

from langchain_google_spanner.vector_store import SpannerVectorStore

__all__ = ["SpannerVectorStore"]
Loading
Loading