Add RemoteContext Python bindings for HTTP client#95
Merged
Conversation
449f727 to
b5279da
Compare
Expose lance-context-client's RemoteContextStore to Python via PyO3, enabling Python code to talk to a remote lance-context-server over HTTP. - Add lance-context-api and lance-context-client deps to python/Cargo.toml - Implement RemoteContext pyclass wrapping RemoteContextStore - Add async Python wrapper mirroring AsyncContext pattern - Export RemoteContext from lance_context package - Fix test_embeddings mock to match current _inner.add() signature Co-Authored-By: Beinan Wang <beinanwang@microsoft.com>
b5279da to
4a779e4
Compare
Co-Authored-By: Beinan Wang <beinanwang@microsoft.com>
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
Summary
lance-context-client'sRemoteContextStoreto Python via PyO3, enabling Python code to talk to a remotelance-context-serverover HTTPRemoteContextwrapper class mirroring theAsyncContextpatterntest_embeddings.pyChanges
python/Cargo.toml: Addlance-context-apiandlance-context-clientpath dependenciespython/src/lib.rs: ImplementRemoteContextpyclass with allContextStoreApimethodspython/python/lance_context/api.py: Add asyncRemoteContextwrapper classpython/python/lance_context/__init__.py: ExportRemoteContextpython/tests/test_embeddings.py: Fix_DummyInner.add()signature to includestate_metadataUsage
Test plan
maturin develop --releasebuilds successfullyRemoteContextis exported fromlance_contextpackagelance-context-server🤖 Generated with Claude Code