File tree Expand file tree Collapse file tree 5 files changed +30
-5
lines changed Expand file tree Collapse file tree 5 files changed +30
-5
lines changed Original file line number Diff line number Diff line change 11[
22 {
3- "name" : " 0.3.5 (stable)" ,
4- "version" : " 0.3.5 " ,
3+ "name" : " 0.3.6 (stable)" ,
4+ "version" : " 0.3.6 " ,
55 "url" : " /" ,
66 "preferred" : true
77 },
8+ {
9+ "name" : " 0.3.5" ,
10+ "version" : " 0.3.5" ,
11+ "url" : " /0.3.5/"
12+ },
813 {
914 "name" : " 0.3.4" ,
1015 "version" : " 0.3.4" ,
Original file line number Diff line number Diff line change 2424 "name" : " stdout" ,
2525 "output_type" : " stream" ,
2626 "text" : [
27- " \u001b [32m15:46:57 \u001b [0m \u001b [34m[RedisVL]\u001b [0m \u001b [1;30mINFO\u001b [0m RedisVL version 0.3.5 \n "
27+ " \u001b [32m11:14:08 \u001b [0m \u001b [34m[RedisVL]\u001b [0m \u001b [1;30mINFO\u001b [0m RedisVL version 0.3.6 \n "
2828 ]
2929 }
3030 ],
Original file line number Diff line number Diff line change 11[tool .poetry ]
22name = " redisvl"
3- version = " 0.3.5 "
3+ version = " 0.3.6 "
44description = " Python client library and CLI for using Redis as a vector database"
55authors = [" Redis Inc. <applied.ai@redis.com>" ]
66license = " MIT"
Original file line number Diff line number Diff line change @@ -314,6 +314,16 @@ def from_existing(
314314 redis_url : Optional [str ] = None ,
315315 ** kwargs ,
316316 ):
317+ """
318+ Initialize from an existing search index in Redis by index name.
319+
320+ Args:
321+ name (str): Name of the search index in Redis.
322+ redis_client(Optional[redis.Redis]): An
323+ instantiated redis client.
324+ redis_url (Optional[str]): The URL of the Redis server to
325+ connect to.
326+ """
317327 # Handle redis instance
318328 if redis_url :
319329 redis_client = RedisConnectionFactory .connect (
@@ -844,6 +854,16 @@ async def from_existing(
844854 redis_url : Optional [str ] = None ,
845855 ** kwargs ,
846856 ):
857+ """
858+ Initialize from an existing search index in Redis by index name.
859+
860+ Args:
861+ name (str): Name of the search index in Redis.
862+ redis_client(Optional[redis.Redis]): An
863+ instantiated redis client.
864+ redis_url (Optional[str]): The URL of the Redis server to
865+ connect to.
866+ """
847867 if redis_url :
848868 redis_client = RedisConnectionFactory .connect (
849869 redis_url = redis_url , use_async = True , ** kwargs
Original file line number Diff line number Diff line change 1- __version__ = "0.3.5 "
1+ __version__ = "0.3.6 "
You can’t perform that action at this time.
0 commit comments