Skip to content

Commit efda34b

Browse files
Release 0.3.6 (#240)
1 parent 4ab6493 commit efda34b

File tree

5 files changed

+30
-5
lines changed

5 files changed

+30
-5
lines changed

docs/_static/version_names.json

+7-2
Original file line numberDiff line numberDiff line change
@@ -1,10 +1,15 @@
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",

docs/overview/cli.ipynb

+1-1
Original file line numberDiff line numberDiff line change
@@ -24,7 +24,7 @@
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
],

pyproject.toml

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[tool.poetry]
22
name = "redisvl"
3-
version = "0.3.5"
3+
version = "0.3.6"
44
description = "Python client library and CLI for using Redis as a vector database"
55
authors = ["Redis Inc. <[email protected]>"]
66
license = "MIT"

redisvl/index/index.py

+20
Original file line numberDiff line numberDiff 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

redisvl/version.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
__version__ = "0.3.5"
1+
__version__ = "0.3.6"

0 commit comments

Comments
 (0)