File tree 5 files changed +30
-5
lines changed
5 files changed +30
-5
lines changed Original file line number Diff line number Diff line change 1
1
[
2
2
{
3
- "name" : " 0.3.5 (stable)" ,
4
- "version" : " 0.3.5 " ,
3
+ "name" : " 0.3.6 (stable)" ,
4
+ "version" : " 0.3.6 " ,
5
5
"url" : " /" ,
6
6
"preferred" : true
7
7
},
8
+ {
9
+ "name" : " 0.3.5" ,
10
+ "version" : " 0.3.5" ,
11
+ "url" : " /0.3.5/"
12
+ },
8
13
{
9
14
"name" : " 0.3.4" ,
10
15
"version" : " 0.3.4" ,
Original file line number Diff line number Diff line change 24
24
"name" : " stdout" ,
25
25
"output_type" : " stream" ,
26
26
"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 "
28
28
]
29
29
}
30
30
],
Original file line number Diff line number Diff line change 1
1
[tool .poetry ]
2
2
name = " redisvl"
3
- version = " 0.3.5 "
3
+ version = " 0.3.6 "
4
4
description = " Python client library and CLI for using Redis as a vector database"
5
5
authors = [
" Redis Inc. <[email protected] >" ]
6
6
license = " MIT"
Original file line number Diff line number Diff line change @@ -314,6 +314,16 @@ def from_existing(
314
314
redis_url : Optional [str ] = None ,
315
315
** kwargs ,
316
316
):
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
+ """
317
327
# Handle redis instance
318
328
if redis_url :
319
329
redis_client = RedisConnectionFactory .connect (
@@ -844,6 +854,16 @@ async def from_existing(
844
854
redis_url : Optional [str ] = None ,
845
855
** kwargs ,
846
856
):
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
+ """
847
867
if redis_url :
848
868
redis_client = RedisConnectionFactory .connect (
849
869
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